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

23288 строки
557 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. }
  353. function getSpeciesInfo(speciesList) {
  354. let result = new Set();
  355. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  356. result.add(entry)
  357. });
  358. console.log(speciesList, result)
  359. return Array.from(result);
  360. };
  361. function getSpeciesInfoHelper(species) {
  362. if (!speciesData[species]) {
  363. console.warn(species + " doesn't exist");
  364. return [];
  365. }
  366. if (speciesData[species].parents) {
  367. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  368. } else {
  369. return [species];
  370. }
  371. }
  372. characterMakers.push(() => makeCharacter(
  373. {
  374. name: "Fen",
  375. species: ["crux"],
  376. description: {
  377. title: "Bio",
  378. text: "Very furry. Sheds on everything."
  379. },
  380. tags: [
  381. "anthro"
  382. ]
  383. },
  384. {
  385. back: {
  386. height: math.unit(2.2428, "meter"),
  387. weight: math.unit(124.738, "kg"),
  388. name: "Back",
  389. image: {
  390. source: "./media/characters/fen/back.svg",
  391. extra: 1025 / 935,
  392. bottom: 0.01
  393. },
  394. info: {
  395. description: {
  396. mode: "append",
  397. text: "\n\nHe is not currently looking at you."
  398. }
  399. }
  400. },
  401. full: {
  402. height: math.unit(1.34, "meter"),
  403. weight: math.unit(225, "kg"),
  404. name: "Full",
  405. image: {
  406. source: "./media/characters/fen/full.svg"
  407. },
  408. info: {
  409. description: {
  410. mode: "append",
  411. text: "\n\nMunch."
  412. }
  413. }
  414. },
  415. kneeling: {
  416. height: math.unit(5.4, "feet"),
  417. weight: math.unit(124.738, "kg"),
  418. name: "Kneeling",
  419. image: {
  420. source: "./media/characters/fen/kneeling.svg",
  421. extra: 563 / 507
  422. }
  423. },
  424. goo: {
  425. height: math.unit(2.8, "feet"),
  426. weight: math.unit(125, "kg"),
  427. capacity: math.unit(1, "people"),
  428. name: "Goo",
  429. image: {
  430. source: "./media/characters/fen/goo.svg",
  431. bottom: 116/613
  432. }
  433. },
  434. lounging: {
  435. height: math.unit(6.5, "feet"),
  436. weight: math.unit(125, "kg"),
  437. name: "Lounging",
  438. image: {
  439. source: "./media/characters/fen/lounging.svg"
  440. }
  441. },
  442. },
  443. [
  444. {
  445. name: "Normal",
  446. height: math.unit(2.2428, "meter")
  447. },
  448. {
  449. name: "Big",
  450. height: math.unit(12, "feet")
  451. },
  452. {
  453. name: "Minimacro",
  454. height: math.unit(40, "feet"),
  455. default: true,
  456. info: {
  457. description: {
  458. mode: "append",
  459. text: "\n\nTOO DAMN BIG"
  460. }
  461. }
  462. },
  463. {
  464. name: "Macro",
  465. height: math.unit(100, "feet"),
  466. info: {
  467. description: {
  468. mode: "append",
  469. text: "\n\nTOO DAMN BIG"
  470. }
  471. }
  472. },
  473. {
  474. name: "Macro+",
  475. height: math.unit(300, "feet")
  476. },
  477. {
  478. name: "Megamacro",
  479. height: math.unit(2, "miles")
  480. }
  481. ]
  482. ))
  483. characterMakers.push(() => makeCharacter(
  484. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  485. {
  486. front: {
  487. height: math.unit(183, "cm"),
  488. weight: math.unit(80, "kg"),
  489. name: "Front",
  490. image: {
  491. source: "./media/characters/sofia-fluttertail/front.svg",
  492. bottom: 0.01,
  493. extra: 2154 / 2081
  494. }
  495. },
  496. frontAlt: {
  497. height: math.unit(183, "cm"),
  498. weight: math.unit(80, "kg"),
  499. name: "Front (alt)",
  500. image: {
  501. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  502. }
  503. },
  504. back: {
  505. height: math.unit(183, "cm"),
  506. weight: math.unit(80, "kg"),
  507. name: "Back",
  508. image: {
  509. source: "./media/characters/sofia-fluttertail/back.svg"
  510. }
  511. },
  512. kneeling: {
  513. height: math.unit(125, "cm"),
  514. weight: math.unit(80, "kg"),
  515. name: "Kneeling",
  516. image: {
  517. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  518. extra: 1033/977,
  519. bottom: 23.7/1057
  520. }
  521. },
  522. maw: {
  523. height: math.unit(183 / 5, "cm"),
  524. name: "Maw",
  525. image: {
  526. source: "./media/characters/sofia-fluttertail/maw.svg"
  527. }
  528. },
  529. mawcloseup: {
  530. height: math.unit(183 / 5 * 0.41, "cm"),
  531. name: "Maw (Closeup)",
  532. image: {
  533. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  534. }
  535. },
  536. },
  537. [
  538. {
  539. name: "Normal",
  540. height: math.unit(1.83, "meter")
  541. },
  542. {
  543. name: "Size Thief",
  544. height: math.unit(18, "feet")
  545. },
  546. {
  547. name: "50 Foot Collie",
  548. height: math.unit(50, "feet")
  549. },
  550. {
  551. name: "Macro",
  552. height: math.unit(96, "feet"),
  553. default: true
  554. },
  555. {
  556. name: "Megamerger",
  557. height: math.unit(650, "feet")
  558. },
  559. ]
  560. ))
  561. characterMakers.push(() => makeCharacter(
  562. { name: "March", species: ["dragon"], tags: ["anthro"] },
  563. {
  564. front: {
  565. height: math.unit(7, "feet"),
  566. weight: math.unit(100, "kg"),
  567. name: "Front",
  568. image: {
  569. source: "./media/characters/march/front.svg",
  570. extra: 1,
  571. bottom: 0.015
  572. }
  573. },
  574. foot: {
  575. height: math.unit(0.9, "feet"),
  576. name: "Foot",
  577. image: {
  578. source: "./media/characters/march/foot.svg"
  579. }
  580. },
  581. },
  582. [
  583. {
  584. name: "Normal",
  585. height: math.unit(7.9, "feet")
  586. },
  587. {
  588. name: "Macro",
  589. height: math.unit(220, "meters")
  590. },
  591. {
  592. name: "Megamacro",
  593. height: math.unit(2.98, "km"),
  594. default: true
  595. },
  596. {
  597. name: "Gigamacro",
  598. height: math.unit(15963, "km")
  599. },
  600. {
  601. name: "Teramacro",
  602. height: math.unit(2980000000, "km")
  603. },
  604. {
  605. name: "Examacro",
  606. height: math.unit(250, "parsecs")
  607. },
  608. ]
  609. ))
  610. characterMakers.push(() => makeCharacter(
  611. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  612. {
  613. front: {
  614. height: math.unit(6, "feet"),
  615. weight: math.unit(60, "kg"),
  616. name: "Front",
  617. image: {
  618. source: "./media/characters/noir/front.svg",
  619. extra: 1,
  620. bottom: 0.032
  621. }
  622. },
  623. },
  624. [
  625. {
  626. name: "Normal",
  627. height: math.unit(6.6, "feet")
  628. },
  629. {
  630. name: "Macro",
  631. height: math.unit(500, "feet")
  632. },
  633. {
  634. name: "Megamacro",
  635. height: math.unit(2.5, "km"),
  636. default: true
  637. },
  638. {
  639. name: "Gigamacro",
  640. height: math.unit(22500, "km")
  641. },
  642. {
  643. name: "Teramacro",
  644. height: math.unit(2500000000, "km")
  645. },
  646. {
  647. name: "Examacro",
  648. height: math.unit(200, "parsecs")
  649. },
  650. ]
  651. ))
  652. characterMakers.push(() => makeCharacter(
  653. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  654. {
  655. front: {
  656. height: math.unit(7, "feet"),
  657. weight: math.unit(100, "kg"),
  658. name: "Front",
  659. image: {
  660. source: "./media/characters/okuri/front.svg",
  661. extra: 1,
  662. bottom: 0.037
  663. }
  664. },
  665. back: {
  666. height: math.unit(7, "feet"),
  667. weight: math.unit(100, "kg"),
  668. name: "Back",
  669. image: {
  670. source: "./media/characters/okuri/back.svg",
  671. extra: 1,
  672. bottom: 0.007
  673. }
  674. },
  675. },
  676. [
  677. {
  678. name: "Megamacro",
  679. height: math.unit(100, "miles"),
  680. default: true
  681. },
  682. ]
  683. ))
  684. characterMakers.push(() => makeCharacter(
  685. { name: "Manny", species: ["pokemon"], tags: ["anthro"] },
  686. {
  687. front: {
  688. height: math.unit(7, "feet"),
  689. weight: math.unit(100, "kg"),
  690. name: "Front",
  691. image: {
  692. source: "./media/characters/manny/front.svg",
  693. extra: 1,
  694. bottom: 0.06
  695. }
  696. },
  697. back: {
  698. height: math.unit(7, "feet"),
  699. weight: math.unit(100, "kg"),
  700. name: "Back",
  701. image: {
  702. source: "./media/characters/manny/back.svg",
  703. extra: 1,
  704. bottom: 0.014
  705. }
  706. },
  707. },
  708. [
  709. {
  710. name: "Normal",
  711. height: math.unit(7, "feet"),
  712. },
  713. {
  714. name: "Macro",
  715. height: math.unit(78, "feet"),
  716. default: true
  717. },
  718. {
  719. name: "Macro+",
  720. height: math.unit(300, "meters")
  721. },
  722. {
  723. name: "Macro++",
  724. height: math.unit(2400, "meters")
  725. },
  726. {
  727. name: "Megamacro",
  728. height: math.unit(5167, "meters")
  729. },
  730. {
  731. name: "Gigamacro",
  732. height: math.unit(41769, "miles")
  733. },
  734. ]
  735. ))
  736. characterMakers.push(() => makeCharacter(
  737. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  738. {
  739. front: {
  740. height: math.unit(7, "feet"),
  741. weight: math.unit(100, "kg"),
  742. name: "Front",
  743. image: {
  744. source: "./media/characters/adake/front-1.svg"
  745. }
  746. },
  747. frontAlt: {
  748. height: math.unit(7, "feet"),
  749. weight: math.unit(100, "kg"),
  750. name: "Front (Alt)",
  751. image: {
  752. source: "./media/characters/adake/front-2.svg",
  753. extra: 1,
  754. bottom: 0.01
  755. }
  756. },
  757. back: {
  758. height: math.unit(7, "feet"),
  759. weight: math.unit(100, "kg"),
  760. name: "Back",
  761. image: {
  762. source: "./media/characters/adake/back.svg",
  763. }
  764. },
  765. kneel: {
  766. height: math.unit(5.385, "feet"),
  767. weight: math.unit(100, "kg"),
  768. name: "Kneeling",
  769. image: {
  770. source: "./media/characters/adake/kneel.svg",
  771. bottom: 0.052
  772. }
  773. },
  774. },
  775. [
  776. {
  777. name: "Normal",
  778. height: math.unit(7, "feet"),
  779. },
  780. {
  781. name: "Macro",
  782. height: math.unit(78, "feet"),
  783. default: true
  784. },
  785. {
  786. name: "Macro+",
  787. height: math.unit(300, "meters")
  788. },
  789. {
  790. name: "Macro++",
  791. height: math.unit(2400, "meters")
  792. },
  793. {
  794. name: "Megamacro",
  795. height: math.unit(5167, "meters")
  796. },
  797. {
  798. name: "Gigamacro",
  799. height: math.unit(41769, "miles")
  800. },
  801. ]
  802. ))
  803. characterMakers.push(() => makeCharacter(
  804. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  805. {
  806. front: {
  807. height: math.unit(1.65, "meters"),
  808. weight: math.unit(50, "kg"),
  809. name: "Front",
  810. image: {
  811. source: "./media/characters/elijah/front.svg",
  812. extra: 858/830,
  813. bottom: 95.5/953.8559
  814. }
  815. },
  816. back: {
  817. height: math.unit(1.65, "meters"),
  818. weight: math.unit(50, "kg"),
  819. name: "Back",
  820. image: {
  821. source: "./media/characters/elijah/back.svg",
  822. extra: 895/850,
  823. bottom: 5.3/897.956
  824. }
  825. },
  826. frontNsfw: {
  827. height: math.unit(1.65, "meters"),
  828. weight: math.unit(50, "kg"),
  829. name: "Front (NSFW)",
  830. image: {
  831. source: "./media/characters/elijah/front-nsfw.svg",
  832. extra: 858/830,
  833. bottom: 95.5/953.8559
  834. }
  835. },
  836. backNsfw: {
  837. height: math.unit(1.65, "meters"),
  838. weight: math.unit(50, "kg"),
  839. name: "Back (NSFW)",
  840. image: {
  841. source: "./media/characters/elijah/back-nsfw.svg",
  842. extra: 895/850,
  843. bottom: 5.3/897.956
  844. }
  845. },
  846. dick: {
  847. height: math.unit(1, "feet"),
  848. name: "Dick",
  849. image: {
  850. source: "./media/characters/elijah/dick.svg"
  851. }
  852. },
  853. beakOpen: {
  854. height: math.unit(1.25, "feet"),
  855. name: "Beak (Open)",
  856. image: {
  857. source: "./media/characters/elijah/beak-open.svg"
  858. }
  859. },
  860. beakShut: {
  861. height: math.unit(1.25, "feet"),
  862. name: "Beak (Shut)",
  863. image: {
  864. source: "./media/characters/elijah/beak-shut.svg"
  865. }
  866. },
  867. footFlexing: {
  868. height: math.unit(1.61, "feet"),
  869. name: "Foot (Flexing)",
  870. image: {
  871. source: "./media/characters/elijah/foot-flexing.svg"
  872. }
  873. },
  874. footStepping: {
  875. height: math.unit(1.44, "feet"),
  876. name: "Foot (Stepping)",
  877. image: {
  878. source: "./media/characters/elijah/foot-stepping.svg"
  879. }
  880. },
  881. plantigradeLeg: {
  882. height: math.unit(2.34, "feet"),
  883. name: "Plantigrade Leg",
  884. image: {
  885. source: "./media/characters/elijah/plantigrade-leg.svg"
  886. }
  887. },
  888. plantigradeFootLeft: {
  889. height: math.unit(0.9, "feet"),
  890. name: "Plantigrade Foot (Left)",
  891. image: {
  892. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  893. }
  894. },
  895. plantigradeFootRight: {
  896. height: math.unit(0.9, "feet"),
  897. name: "Plantigrade Foot (Right)",
  898. image: {
  899. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  900. }
  901. },
  902. },
  903. [
  904. {
  905. name: "Normal",
  906. height: math.unit(1.65, "meters")
  907. },
  908. {
  909. name: "Macro",
  910. height: math.unit(55, "meters"),
  911. default: true
  912. },
  913. {
  914. name: "Macro+",
  915. height: math.unit(105, "meters")
  916. },
  917. ]
  918. ))
  919. characterMakers.push(() => makeCharacter(
  920. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  921. {
  922. front: {
  923. height: math.unit(11, "feet"),
  924. weight: math.unit(80, "kg"),
  925. name: "Front",
  926. image: {
  927. source: "./media/characters/rai/front.svg",
  928. extra: 1,
  929. bottom: 0.03
  930. }
  931. },
  932. side: {
  933. height: math.unit(11, "feet"),
  934. weight: math.unit(80, "kg"),
  935. name: "Side",
  936. image: {
  937. source: "./media/characters/rai/side.svg"
  938. }
  939. },
  940. back: {
  941. height: math.unit(11, "feet"),
  942. weight: math.unit(80, "lb"),
  943. name: "Back",
  944. image: {
  945. source: "./media/characters/rai/back.svg",
  946. extra: 1,
  947. bottom: 0.01
  948. }
  949. },
  950. feral: {
  951. height: math.unit(11, "feet"),
  952. weight: math.unit(800, "lb"),
  953. name: "Feral",
  954. image: {
  955. source: "./media/characters/rai/feral.svg",
  956. extra: 1050 / 659,
  957. bottom: 0.07
  958. }
  959. },
  960. dragon: {
  961. height: math.unit(23, "feet"),
  962. weight: math.unit(50000, "lb"),
  963. name: "Dragon",
  964. image: {
  965. source: "./media/characters/rai/dragon.svg",
  966. extra: 2498/2030,
  967. bottom: 85.2/2584
  968. }
  969. },
  970. maw: {
  971. height: math.unit(6 / 3.81416, "feet"),
  972. name: "Maw",
  973. image: {
  974. source: "./media/characters/rai/maw.svg"
  975. }
  976. },
  977. },
  978. [
  979. {
  980. name: "Normal",
  981. height: math.unit(11, "feet")
  982. },
  983. {
  984. name: "Macro",
  985. height: math.unit(302, "feet"),
  986. default: true
  987. },
  988. ]
  989. ))
  990. characterMakers.push(() => makeCharacter(
  991. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  992. {
  993. front: {
  994. height: math.unit(7, "feet"),
  995. weight: math.unit(80, "kg"),
  996. name: "Front",
  997. image: {
  998. source: "./media/characters/jazzy/front.svg",
  999. extra: 1,
  1000. bottom: 0.01
  1001. }
  1002. },
  1003. back: {
  1004. height: math.unit(7, "feet"),
  1005. weight: math.unit(80, "kg"),
  1006. name: "Back",
  1007. image: {
  1008. source: "./media/characters/jazzy/back.svg",
  1009. extra: 1,
  1010. bottom: 0.01
  1011. }
  1012. },
  1013. },
  1014. [
  1015. {
  1016. name: "Macro",
  1017. height: math.unit(216, "feet"),
  1018. default: true
  1019. },
  1020. ]
  1021. ))
  1022. characterMakers.push(() => makeCharacter(
  1023. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1024. {
  1025. front: {
  1026. height: math.unit(7, "feet"),
  1027. weight: math.unit(80, "kg"),
  1028. name: "Front",
  1029. image: {
  1030. source: "./media/characters/flamm/front.svg",
  1031. extra: 1794 / 1677,
  1032. bottom: 31.7 / 1828.5
  1033. }
  1034. },
  1035. },
  1036. [
  1037. {
  1038. name: "Normal",
  1039. height: math.unit(9.5, "feet")
  1040. },
  1041. {
  1042. name: "Macro",
  1043. height: math.unit(200, "feet"),
  1044. default: true
  1045. },
  1046. ]
  1047. ))
  1048. characterMakers.push(() => makeCharacter(
  1049. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1050. {
  1051. front: {
  1052. height: math.unit(7, "feet"),
  1053. weight: math.unit(80, "kg"),
  1054. name: "Front",
  1055. image: {
  1056. source: "./media/characters/zephiro/front.svg",
  1057. extra: 2309 / 2162,
  1058. bottom: 0.069
  1059. }
  1060. },
  1061. side: {
  1062. height: math.unit(7, "feet"),
  1063. weight: math.unit(80, "kg"),
  1064. name: "Side",
  1065. image: {
  1066. source: "./media/characters/zephiro/side.svg",
  1067. extra: 2403 / 2279,
  1068. bottom: 0.015
  1069. }
  1070. },
  1071. back: {
  1072. height: math.unit(7, "feet"),
  1073. weight: math.unit(80, "kg"),
  1074. name: "Back",
  1075. image: {
  1076. source: "./media/characters/zephiro/back.svg",
  1077. extra: 2373 / 2244,
  1078. bottom: 0.013
  1079. }
  1080. },
  1081. },
  1082. [
  1083. {
  1084. name: "Micro",
  1085. height: math.unit(3, "inches")
  1086. },
  1087. {
  1088. name: "Normal",
  1089. height: math.unit(5 + 3 / 12, "feet"),
  1090. default: true
  1091. },
  1092. {
  1093. name: "Macro",
  1094. height: math.unit(118, "feet")
  1095. },
  1096. ]
  1097. ))
  1098. characterMakers.push(() => makeCharacter(
  1099. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1100. {
  1101. front: {
  1102. height: math.unit(5, "feet"),
  1103. weight: math.unit(90, "kg"),
  1104. name: "Front",
  1105. image: {
  1106. source: "./media/characters/fory/front.svg",
  1107. extra: 2862 / 2674,
  1108. bottom: 180 / 3043.8
  1109. }
  1110. },
  1111. back: {
  1112. height: math.unit(5, "feet"),
  1113. weight: math.unit(90, "kg"),
  1114. name: "Back",
  1115. image: {
  1116. source: "./media/characters/fory/back.svg",
  1117. extra: 2962 / 2791,
  1118. bottom: 106 / 3071.8
  1119. }
  1120. },
  1121. foot: {
  1122. height: math.unit(2.14, "feet"),
  1123. name: "Foot",
  1124. image: {
  1125. source: "./media/characters/fory/foot.svg"
  1126. }
  1127. },
  1128. },
  1129. [
  1130. {
  1131. name: "Normal",
  1132. height: math.unit(5, "feet")
  1133. },
  1134. {
  1135. name: "Macro",
  1136. height: math.unit(50, "feet"),
  1137. default: true
  1138. },
  1139. {
  1140. name: "Megamacro",
  1141. height: math.unit(10, "miles")
  1142. },
  1143. {
  1144. name: "Gigamacro",
  1145. height: math.unit(5, "earths")
  1146. },
  1147. ]
  1148. ))
  1149. characterMakers.push(() => makeCharacter(
  1150. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1151. {
  1152. front: {
  1153. height: math.unit(7, "feet"),
  1154. weight: math.unit(90, "kg"),
  1155. name: "Front",
  1156. image: {
  1157. source: "./media/characters/kurrikage/front.svg",
  1158. extra: 1,
  1159. bottom: 0.035
  1160. }
  1161. },
  1162. back: {
  1163. height: math.unit(7, "feet"),
  1164. weight: math.unit(90, "lb"),
  1165. name: "Back",
  1166. image: {
  1167. source: "./media/characters/kurrikage/back.svg"
  1168. }
  1169. },
  1170. paw: {
  1171. height: math.unit(1.5, "feet"),
  1172. name: "Paw",
  1173. image: {
  1174. source: "./media/characters/kurrikage/paw.svg"
  1175. }
  1176. },
  1177. staff: {
  1178. height: math.unit(6.7, "feet"),
  1179. name: "Staff",
  1180. image: {
  1181. source: "./media/characters/kurrikage/staff.svg"
  1182. }
  1183. },
  1184. peek: {
  1185. height: math.unit(1.05, "feet"),
  1186. name: "Peeking",
  1187. image: {
  1188. source: "./media/characters/kurrikage/peek.svg",
  1189. bottom: 0.08
  1190. }
  1191. },
  1192. },
  1193. [
  1194. {
  1195. name: "Normal",
  1196. height: math.unit(12, "feet"),
  1197. default: true
  1198. },
  1199. {
  1200. name: "Big",
  1201. height: math.unit(20, "feet")
  1202. },
  1203. {
  1204. name: "Macro",
  1205. height: math.unit(500, "feet")
  1206. },
  1207. {
  1208. name: "Megamacro",
  1209. height: math.unit(20, "miles")
  1210. },
  1211. ]
  1212. ))
  1213. characterMakers.push(() => makeCharacter(
  1214. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1215. {
  1216. front: {
  1217. height: math.unit(6, "feet"),
  1218. weight: math.unit(75, "kg"),
  1219. name: "Front",
  1220. image: {
  1221. source: "./media/characters/shingo/front.svg",
  1222. extra: 3511 / 3338,
  1223. bottom: 0.005
  1224. }
  1225. },
  1226. },
  1227. [
  1228. {
  1229. name: "Micro",
  1230. height: math.unit(4, "inches")
  1231. },
  1232. {
  1233. name: "Normal",
  1234. height: math.unit(6, "feet"),
  1235. default: true
  1236. },
  1237. {
  1238. name: "Macro",
  1239. height: math.unit(108, "feet")
  1240. }
  1241. ]
  1242. ))
  1243. characterMakers.push(() => makeCharacter(
  1244. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1245. {
  1246. side: {
  1247. height: math.unit(6, "feet"),
  1248. weight: math.unit(75, "kg"),
  1249. name: "Side",
  1250. image: {
  1251. source: "./media/characters/aigey/side.svg"
  1252. }
  1253. },
  1254. },
  1255. [
  1256. {
  1257. name: "Macro",
  1258. height: math.unit(200, "feet"),
  1259. default: true
  1260. },
  1261. {
  1262. name: "Megamacro",
  1263. height: math.unit(100, "miles")
  1264. },
  1265. ]
  1266. )
  1267. )
  1268. characterMakers.push(() => makeCharacter(
  1269. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1270. {
  1271. front: {
  1272. height: math.unit(5 + 5 / 12, "feet"),
  1273. weight: math.unit(75, "kg"),
  1274. name: "Front",
  1275. image: {
  1276. source: "./media/characters/natasha/front.svg",
  1277. extra: 859/824,
  1278. bottom: 23/879.6
  1279. }
  1280. },
  1281. frontNsfw: {
  1282. height: math.unit(5 + 5 / 12, "feet"),
  1283. weight: math.unit(75, "kg"),
  1284. name: "Front (NSFW)",
  1285. image: {
  1286. source: "./media/characters/natasha/front-nsfw.svg",
  1287. extra: 859/824,
  1288. bottom: 23/879.6
  1289. }
  1290. },
  1291. frontErect: {
  1292. height: math.unit(5 + 5 / 12, "feet"),
  1293. weight: math.unit(75, "kg"),
  1294. name: "Front (Erect)",
  1295. image: {
  1296. source: "./media/characters/natasha/front-erect.svg",
  1297. extra: 859/824,
  1298. bottom: 23/879.6
  1299. }
  1300. },
  1301. back: {
  1302. height: math.unit(5 + 5 / 12, "feet"),
  1303. weight: math.unit(75, "kg"),
  1304. name: "Back",
  1305. image: {
  1306. source: "./media/characters/natasha/back.svg",
  1307. extra: 887.9/852.6,
  1308. bottom: 9.7/896.4
  1309. }
  1310. },
  1311. backAlt: {
  1312. height: math.unit(5 + 5 / 12, "feet"),
  1313. weight: math.unit(75, "kg"),
  1314. name: "Back (Alt)",
  1315. image: {
  1316. source: "./media/characters/natasha/back-alt.svg",
  1317. extra: 1236.7/1192,
  1318. bottom: 22.3/1258.2
  1319. }
  1320. },
  1321. dick: {
  1322. height: math.unit(1.772, "feet"),
  1323. name: "Dick",
  1324. image: {
  1325. source: "./media/characters/natasha/dick.svg"
  1326. }
  1327. },
  1328. },
  1329. [
  1330. {
  1331. name: "Normal",
  1332. height: math.unit(5 + 5 / 12, "feet")
  1333. },
  1334. {
  1335. name: "Large",
  1336. height: math.unit(12, "feet")
  1337. },
  1338. {
  1339. name: "Macro",
  1340. height: math.unit(100, "feet"),
  1341. default: true
  1342. },
  1343. {
  1344. name: "Macro+",
  1345. height: math.unit(260, "feet")
  1346. },
  1347. {
  1348. name: "Macro++",
  1349. height: math.unit(1, "mile")
  1350. },
  1351. ]
  1352. ))
  1353. characterMakers.push(() => makeCharacter(
  1354. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1355. {
  1356. front: {
  1357. height: math.unit(6, "feet"),
  1358. weight: math.unit(75, "kg"),
  1359. name: "Front",
  1360. image: {
  1361. source: "./media/characters/malik/front.svg"
  1362. }
  1363. },
  1364. side: {
  1365. height: math.unit(6, "feet"),
  1366. weight: math.unit(75, "kg"),
  1367. name: "Side",
  1368. image: {
  1369. source: "./media/characters/malik/side.svg",
  1370. extra: 1.1539
  1371. }
  1372. },
  1373. back: {
  1374. height: math.unit(6, "feet"),
  1375. weight: math.unit(75, "kg"),
  1376. name: "Back",
  1377. image: {
  1378. source: "./media/characters/malik/back.svg"
  1379. }
  1380. },
  1381. },
  1382. [
  1383. {
  1384. name: "Macro",
  1385. height: math.unit(156, "feet"),
  1386. default: true
  1387. },
  1388. {
  1389. name: "Macro+",
  1390. height: math.unit(1188, "feet")
  1391. },
  1392. ]
  1393. ))
  1394. characterMakers.push(() => makeCharacter(
  1395. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1396. {
  1397. front: {
  1398. height: math.unit(6, "feet"),
  1399. weight: math.unit(75, "kg"),
  1400. name: "Front",
  1401. image: {
  1402. source: "./media/characters/sefer/front.svg"
  1403. }
  1404. },
  1405. back: {
  1406. height: math.unit(6, "feet"),
  1407. weight: math.unit(75, "kg"),
  1408. name: "Back",
  1409. image: {
  1410. source: "./media/characters/sefer/back.svg"
  1411. }
  1412. },
  1413. },
  1414. [
  1415. {
  1416. name: "Normal",
  1417. height: math.unit(6, "feet"),
  1418. default: true
  1419. },
  1420. ]
  1421. ))
  1422. characterMakers.push(() => makeCharacter(
  1423. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1424. {
  1425. body: {
  1426. height: math.unit(2.2428, "meter"),
  1427. weight: math.unit(124.738, "kg"),
  1428. name: "Body",
  1429. image: {
  1430. extra: 1225 / 1050,
  1431. source: "./media/characters/north/front.svg"
  1432. }
  1433. }
  1434. },
  1435. [
  1436. {
  1437. name: "Micro",
  1438. height: math.unit(4, "inches")
  1439. },
  1440. {
  1441. name: "Macro",
  1442. height: math.unit(63, "meters")
  1443. },
  1444. {
  1445. name: "Megamacro",
  1446. height: math.unit(101, "miles"),
  1447. default: true
  1448. }
  1449. ]
  1450. ))
  1451. characterMakers.push(() => makeCharacter(
  1452. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1453. {
  1454. angled: {
  1455. height: math.unit(4, "meter"),
  1456. weight: math.unit(150, "kg"),
  1457. name: "Angled",
  1458. image: {
  1459. source: "./media/characters/talan/angled-sfw.svg",
  1460. bottom: 29 / 3734
  1461. }
  1462. },
  1463. angledNsfw: {
  1464. height: math.unit(4, "meter"),
  1465. weight: math.unit(150, "kg"),
  1466. name: "Angled (NSFW)",
  1467. image: {
  1468. source: "./media/characters/talan/angled-nsfw.svg",
  1469. bottom: 29 / 3734
  1470. }
  1471. },
  1472. frontNsfw: {
  1473. height: math.unit(4, "meter"),
  1474. weight: math.unit(150, "kg"),
  1475. name: "Front (NSFW)",
  1476. image: {
  1477. source: "./media/characters/talan/front-nsfw.svg",
  1478. bottom: 29 / 3734
  1479. }
  1480. },
  1481. sideNsfw: {
  1482. height: math.unit(4, "meter"),
  1483. weight: math.unit(150, "kg"),
  1484. name: "Side (NSFW)",
  1485. image: {
  1486. source: "./media/characters/talan/side-nsfw.svg",
  1487. bottom: 29 / 3734
  1488. }
  1489. },
  1490. back: {
  1491. height: math.unit(4, "meter"),
  1492. weight: math.unit(150, "kg"),
  1493. name: "Back",
  1494. image: {
  1495. source: "./media/characters/talan/back.svg"
  1496. }
  1497. },
  1498. dickBottom: {
  1499. height: math.unit(0.621, "meter"),
  1500. name: "Dick (Bottom)",
  1501. image: {
  1502. source: "./media/characters/talan/dick-bottom.svg"
  1503. }
  1504. },
  1505. dickTop: {
  1506. height: math.unit(0.621, "meter"),
  1507. name: "Dick (Top)",
  1508. image: {
  1509. source: "./media/characters/talan/dick-top.svg"
  1510. }
  1511. },
  1512. dickSide: {
  1513. height: math.unit(0.305, "meter"),
  1514. name: "Dick (Side)",
  1515. image: {
  1516. source: "./media/characters/talan/dick-side.svg"
  1517. }
  1518. },
  1519. dickFront: {
  1520. height: math.unit(0.305, "meter"),
  1521. name: "Dick (Front)",
  1522. image: {
  1523. source: "./media/characters/talan/dick-front.svg"
  1524. }
  1525. },
  1526. },
  1527. [
  1528. {
  1529. name: "Normal",
  1530. height: math.unit(4, "meters")
  1531. },
  1532. {
  1533. name: "Macro",
  1534. height: math.unit(100, "meters")
  1535. },
  1536. {
  1537. name: "Megamacro",
  1538. height: math.unit(2, "miles"),
  1539. default: true
  1540. },
  1541. {
  1542. name: "Gigamacro",
  1543. height: math.unit(5000, "miles")
  1544. },
  1545. {
  1546. name: "Teramacro",
  1547. height: math.unit(100, "parsecs")
  1548. }
  1549. ]
  1550. ))
  1551. characterMakers.push(() => makeCharacter(
  1552. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1553. {
  1554. front: {
  1555. height: math.unit(2, "meter"),
  1556. weight: math.unit(90, "kg"),
  1557. name: "Front",
  1558. image: {
  1559. source: "./media/characters/gael'rathus/front.svg"
  1560. }
  1561. },
  1562. frontAlt: {
  1563. height: math.unit(2, "meter"),
  1564. weight: math.unit(90, "kg"),
  1565. name: "Front (alt)",
  1566. image: {
  1567. source: "./media/characters/gael'rathus/front-alt.svg"
  1568. }
  1569. },
  1570. frontAlt2: {
  1571. height: math.unit(2, "meter"),
  1572. weight: math.unit(90, "kg"),
  1573. name: "Front (alt 2)",
  1574. image: {
  1575. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1576. }
  1577. }
  1578. },
  1579. [
  1580. {
  1581. name: "Normal",
  1582. height: math.unit(9, "feet"),
  1583. default: true
  1584. },
  1585. {
  1586. name: "Large",
  1587. height: math.unit(25, "feet")
  1588. },
  1589. {
  1590. name: "Macro",
  1591. height: math.unit(0.25, "miles")
  1592. },
  1593. {
  1594. name: "Megamacro",
  1595. height: math.unit(10, "miles")
  1596. }
  1597. ]
  1598. ))
  1599. characterMakers.push(() => makeCharacter(
  1600. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1601. {
  1602. side: {
  1603. height: math.unit(2, "meter"),
  1604. weight: math.unit(140, "kg"),
  1605. name: "Side",
  1606. image: {
  1607. source: "./media/characters/sosha/side.svg",
  1608. bottom: 0.042
  1609. }
  1610. },
  1611. },
  1612. [
  1613. {
  1614. name: "Normal",
  1615. height: math.unit(12, "feet"),
  1616. default: true
  1617. }
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1622. {
  1623. side: {
  1624. height: math.unit(5 + 5 / 12, "feet"),
  1625. weight: math.unit(170, "kg"),
  1626. name: "Side",
  1627. image: {
  1628. source: "./media/characters/runnola/side.svg",
  1629. extra: 741 / 448,
  1630. bottom: 0.05
  1631. }
  1632. },
  1633. },
  1634. [
  1635. {
  1636. name: "Small",
  1637. height: math.unit(3, "feet")
  1638. },
  1639. {
  1640. name: "Normal",
  1641. height: math.unit(5 + 5 / 12, "feet"),
  1642. default: true
  1643. },
  1644. {
  1645. name: "Big",
  1646. height: math.unit(10, "feet")
  1647. },
  1648. ]
  1649. ))
  1650. characterMakers.push(() => makeCharacter(
  1651. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1652. {
  1653. front: {
  1654. height: math.unit(2, "meter"),
  1655. weight: math.unit(50, "kg"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/kurribird/front.svg",
  1659. bottom: 0.015
  1660. }
  1661. },
  1662. frontAlt: {
  1663. height: math.unit(1.5, "meter"),
  1664. weight: math.unit(50, "kg"),
  1665. name: "Front (Alt)",
  1666. image: {
  1667. source: "./media/characters/kurribird/front-alt.svg",
  1668. extra: 1.45
  1669. }
  1670. },
  1671. },
  1672. [
  1673. {
  1674. name: "Normal",
  1675. height: math.unit(7, "feet")
  1676. },
  1677. {
  1678. name: "Big",
  1679. height: math.unit(12, "feet"),
  1680. default: true
  1681. },
  1682. {
  1683. name: "Macro",
  1684. height: math.unit(1500, "feet")
  1685. },
  1686. {
  1687. name: "Megamacro",
  1688. height: math.unit(2, "miles")
  1689. }
  1690. ]
  1691. ))
  1692. characterMakers.push(() => makeCharacter(
  1693. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1694. {
  1695. front: {
  1696. height: math.unit(2, "meter"),
  1697. weight: math.unit(80, "kg"),
  1698. name: "Front",
  1699. image: {
  1700. source: "./media/characters/elbial/front.svg",
  1701. extra: 1643 / 1556,
  1702. bottom: 60.2 / 1696
  1703. }
  1704. },
  1705. side: {
  1706. height: math.unit(2, "meter"),
  1707. weight: math.unit(80, "kg"),
  1708. name: "Side",
  1709. image: {
  1710. source: "./media/characters/elbial/side.svg",
  1711. extra: 1630 / 1565,
  1712. bottom: 71.5 / 1697
  1713. }
  1714. },
  1715. back: {
  1716. height: math.unit(2, "meter"),
  1717. weight: math.unit(80, "kg"),
  1718. name: "Back",
  1719. image: {
  1720. source: "./media/characters/elbial/back.svg",
  1721. extra: 1668 / 1595,
  1722. bottom: 5.6 / 1672
  1723. }
  1724. },
  1725. frontDressed: {
  1726. height: math.unit(2, "meter"),
  1727. weight: math.unit(80, "kg"),
  1728. name: "Front (Dressed)",
  1729. image: {
  1730. source: "./media/characters/elbial/front-dressed.svg",
  1731. extra: 1653 / 1584,
  1732. bottom: 57 / 1708
  1733. }
  1734. },
  1735. genitals: {
  1736. height: math.unit(2 / 3.367, "meter"),
  1737. name: "Genitals",
  1738. image: {
  1739. source: "./media/characters/elbial/genitals.svg"
  1740. }
  1741. },
  1742. },
  1743. [
  1744. {
  1745. name: "Large",
  1746. height: math.unit(100, "feet")
  1747. },
  1748. {
  1749. name: "Macro",
  1750. height: math.unit(500, "feet"),
  1751. default: true
  1752. },
  1753. {
  1754. name: "Megamacro",
  1755. height: math.unit(10, "miles")
  1756. },
  1757. {
  1758. name: "Gigamacro",
  1759. height: math.unit(25000, "miles")
  1760. },
  1761. {
  1762. name: "Full-Size",
  1763. height: math.unit(8000000, "gigaparsecs")
  1764. }
  1765. ]
  1766. ))
  1767. characterMakers.push(() => makeCharacter(
  1768. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  1769. {
  1770. front: {
  1771. height: math.unit(2, "meter"),
  1772. weight: math.unit(60, "kg"),
  1773. name: "Front",
  1774. image: {
  1775. source: "./media/characters/noah/front.svg"
  1776. }
  1777. },
  1778. talons: {
  1779. height: math.unit(0.315, "meter"),
  1780. name: "Talons",
  1781. image: {
  1782. source: "./media/characters/noah/talons.svg"
  1783. }
  1784. }
  1785. },
  1786. [
  1787. {
  1788. name: "Large",
  1789. height: math.unit(50, "feet")
  1790. },
  1791. {
  1792. name: "Macro",
  1793. height: math.unit(750, "feet"),
  1794. default: true
  1795. },
  1796. {
  1797. name: "Megamacro",
  1798. height: math.unit(50, "miles")
  1799. },
  1800. {
  1801. name: "Gigamacro",
  1802. height: math.unit(100000, "miles")
  1803. },
  1804. {
  1805. name: "Full-Size",
  1806. height: math.unit(3000000000, "miles")
  1807. }
  1808. ]
  1809. ))
  1810. characterMakers.push(() => makeCharacter(
  1811. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  1812. {
  1813. front: {
  1814. height: math.unit(2, "meter"),
  1815. weight: math.unit(80, "kg"),
  1816. name: "Front",
  1817. image: {
  1818. source: "./media/characters/natalya/front.svg"
  1819. }
  1820. },
  1821. back: {
  1822. height: math.unit(2, "meter"),
  1823. weight: math.unit(80, "kg"),
  1824. name: "Back",
  1825. image: {
  1826. source: "./media/characters/natalya/back.svg"
  1827. }
  1828. }
  1829. },
  1830. [
  1831. {
  1832. name: "Normal",
  1833. height: math.unit(150, "feet"),
  1834. default: true
  1835. },
  1836. {
  1837. name: "Megamacro",
  1838. height: math.unit(5, "miles")
  1839. },
  1840. {
  1841. name: "Full-Size",
  1842. height: math.unit(600, "kiloparsecs")
  1843. }
  1844. ]
  1845. ))
  1846. characterMakers.push(() => makeCharacter(
  1847. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  1848. {
  1849. front: {
  1850. height: math.unit(2, "meter"),
  1851. weight: math.unit(50, "kg"),
  1852. name: "Front",
  1853. image: {
  1854. source: "./media/characters/erestrebah/front.svg",
  1855. extra: 208 / 193,
  1856. bottom: 0.055
  1857. }
  1858. },
  1859. back: {
  1860. height: math.unit(2, "meter"),
  1861. weight: math.unit(50, "kg"),
  1862. name: "Back",
  1863. image: {
  1864. source: "./media/characters/erestrebah/back.svg",
  1865. extra: 1.3
  1866. }
  1867. }
  1868. },
  1869. [
  1870. {
  1871. name: "Normal",
  1872. height: math.unit(10, "feet")
  1873. },
  1874. {
  1875. name: "Large",
  1876. height: math.unit(50, "feet"),
  1877. default: true
  1878. },
  1879. {
  1880. name: "Macro",
  1881. height: math.unit(300, "feet")
  1882. },
  1883. {
  1884. name: "Macro+",
  1885. height: math.unit(750, "feet")
  1886. },
  1887. {
  1888. name: "Megamacro",
  1889. height: math.unit(3, "miles")
  1890. }
  1891. ]
  1892. ))
  1893. characterMakers.push(() => makeCharacter(
  1894. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  1895. {
  1896. front: {
  1897. height: math.unit(2, "meter"),
  1898. weight: math.unit(80, "kg"),
  1899. name: "Front",
  1900. image: {
  1901. source: "./media/characters/jennifer/front.svg",
  1902. bottom: 0.11,
  1903. extra: 1.16
  1904. }
  1905. },
  1906. frontAlt: {
  1907. height: math.unit(2, "meter"),
  1908. weight: math.unit(80, "kg"),
  1909. name: "Front (Alt)",
  1910. image: {
  1911. source: "./media/characters/jennifer/front-alt.svg"
  1912. }
  1913. }
  1914. },
  1915. [
  1916. {
  1917. name: "Canon Height",
  1918. height: math.unit(120, "feet"),
  1919. default: true
  1920. },
  1921. {
  1922. name: "Macro+",
  1923. height: math.unit(300, "feet")
  1924. },
  1925. {
  1926. name: "Megamacro",
  1927. height: math.unit(20000, "feet")
  1928. }
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(2, "meter"),
  1936. weight: math.unit(50, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/kalista/front.svg",
  1940. extra: 1947 / 1700,
  1941. bottom: 76.6/1412.98
  1942. }
  1943. },
  1944. back: {
  1945. height: math.unit(2, "meter"),
  1946. weight: math.unit(50, "kg"),
  1947. name: "Back",
  1948. image: {
  1949. source: "./media/characters/kalista/back.svg",
  1950. extra: 1366 / 1156,
  1951. bottom: 33.9/1362.78
  1952. }
  1953. }
  1954. },
  1955. [
  1956. {
  1957. name: "Uncomfortably Small",
  1958. height: math.unit(10, "feet")
  1959. },
  1960. {
  1961. name: "Small",
  1962. height: math.unit(30, "feet")
  1963. },
  1964. {
  1965. name: "Macro",
  1966. height: math.unit(100, "feet"),
  1967. default: true
  1968. },
  1969. {
  1970. name: "Macro+",
  1971. height: math.unit(2000, "feet")
  1972. },
  1973. {
  1974. name: "True Form",
  1975. height: math.unit(8924, "miles")
  1976. }
  1977. ]
  1978. ))
  1979. characterMakers.push(() => makeCharacter(
  1980. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  1981. {
  1982. front: {
  1983. height: math.unit(2, "meter"),
  1984. weight: math.unit(120, "kg"),
  1985. name: "Front",
  1986. image: {
  1987. source: "./media/characters/ggv/front.svg"
  1988. }
  1989. },
  1990. side: {
  1991. height: math.unit(2, "meter"),
  1992. weight: math.unit(120, "kg"),
  1993. name: "Side",
  1994. image: {
  1995. source: "./media/characters/ggv/side.svg"
  1996. }
  1997. }
  1998. },
  1999. [
  2000. {
  2001. name: "Extremely Puny",
  2002. height: math.unit(9 + 5 / 12, "feet")
  2003. },
  2004. {
  2005. name: "Horribly Small",
  2006. height: math.unit(47.7, "miles"),
  2007. default: true
  2008. },
  2009. {
  2010. name: "Reasonably Sized",
  2011. height: math.unit(25000, "parsecs")
  2012. },
  2013. {
  2014. name: "Slightly Uncompressed",
  2015. height: math.unit(7.77e31, "parsecs")
  2016. },
  2017. {
  2018. name: "Omniversal",
  2019. height: math.unit(1e300, "meters")
  2020. },
  2021. ]
  2022. ))
  2023. characterMakers.push(() => makeCharacter(
  2024. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2025. {
  2026. front: {
  2027. height: math.unit(2, "meter"),
  2028. weight: math.unit(75, "lb"),
  2029. name: "Front",
  2030. image: {
  2031. source: "./media/characters/napalm/front.svg"
  2032. }
  2033. },
  2034. back: {
  2035. height: math.unit(2, "meter"),
  2036. weight: math.unit(75, "lb"),
  2037. name: "Back",
  2038. image: {
  2039. source: "./media/characters/napalm/back.svg"
  2040. }
  2041. }
  2042. },
  2043. [
  2044. {
  2045. name: "Standard",
  2046. height: math.unit(55, "feet"),
  2047. default: true
  2048. }
  2049. ]
  2050. ))
  2051. characterMakers.push(() => makeCharacter(
  2052. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2053. {
  2054. front: {
  2055. height: math.unit(7 + 5 / 6, "feet"),
  2056. weight: math.unit(325, "lb"),
  2057. name: "Front",
  2058. image: {
  2059. source: "./media/characters/asana/front.svg",
  2060. extra: 1128 / 1068
  2061. }
  2062. },
  2063. back: {
  2064. height: math.unit(7 + 5 / 6, "feet"),
  2065. weight: math.unit(325, "lb"),
  2066. name: "Back",
  2067. image: {
  2068. source: "./media/characters/asana/back.svg",
  2069. extra: 1128 / 1068
  2070. }
  2071. },
  2072. },
  2073. [
  2074. {
  2075. name: "Standard",
  2076. height: math.unit(7 + 5 / 6, "feet"),
  2077. default: true
  2078. },
  2079. {
  2080. name: "Large",
  2081. height: math.unit(10, "meters")
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(2500, "meters")
  2086. },
  2087. {
  2088. name: "Megamacro",
  2089. height: math.unit(5e6, "meters")
  2090. },
  2091. {
  2092. name: "Examacro",
  2093. height: math.unit(5e12, "lightyears")
  2094. },
  2095. {
  2096. name: "Max Size",
  2097. height: math.unit(1e31, "lightyears")
  2098. }
  2099. ]
  2100. ))
  2101. characterMakers.push(() => makeCharacter(
  2102. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2103. {
  2104. front: {
  2105. height: math.unit(2, "meter"),
  2106. weight: math.unit(60, "kg"),
  2107. name: "Front",
  2108. image: {
  2109. source: "./media/characters/ebony/front.svg",
  2110. bottom: 0.03,
  2111. extra: 1045 / 810 + 0.03
  2112. }
  2113. },
  2114. side: {
  2115. height: math.unit(2, "meter"),
  2116. weight: math.unit(60, "kg"),
  2117. name: "Side",
  2118. image: {
  2119. source: "./media/characters/ebony/side.svg",
  2120. bottom: 0.03,
  2121. extra: 1045 / 810 + 0.03
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(2, "meter"),
  2126. weight: math.unit(60, "kg"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/ebony/back.svg",
  2130. bottom: 0.01,
  2131. extra: 1045 / 810 + 0.01
  2132. }
  2133. },
  2134. },
  2135. [
  2136. // TODO check why I did this lol
  2137. {
  2138. name: "Standard",
  2139. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2140. default: true
  2141. },
  2142. {
  2143. name: "Macro",
  2144. height: math.unit(200, "feet")
  2145. },
  2146. {
  2147. name: "Gigamacro",
  2148. height: math.unit(13000, "km")
  2149. }
  2150. ]
  2151. ))
  2152. characterMakers.push(() => makeCharacter(
  2153. { name: "Mountain" },
  2154. {
  2155. front: {
  2156. height: math.unit(6, "feet"),
  2157. weight: math.unit(175, "lb"),
  2158. name: "Front",
  2159. image: {
  2160. source: "./media/characters/mountain/front.svg"
  2161. }
  2162. },
  2163. back: {
  2164. height: math.unit(6, "feet"),
  2165. weight: math.unit(175, "lb"),
  2166. name: "Back",
  2167. image: {
  2168. source: "./media/characters/mountain/back.svg"
  2169. }
  2170. },
  2171. },
  2172. [
  2173. {
  2174. name: "Large",
  2175. height: math.unit(20, "meters")
  2176. },
  2177. {
  2178. name: "Macro",
  2179. height: math.unit(300, "meters")
  2180. },
  2181. {
  2182. name: "Gigamacro",
  2183. height: math.unit(10000, "km"),
  2184. default: true
  2185. },
  2186. {
  2187. name: "Examacro",
  2188. height: math.unit(10e9, "lightyears")
  2189. }
  2190. ]
  2191. ))
  2192. characterMakers.push(() => makeCharacter(
  2193. { name: "Rick" },
  2194. {
  2195. front: {
  2196. height: math.unit(8, "feet"),
  2197. weight: math.unit(500, "lb"),
  2198. name: "Front",
  2199. image: {
  2200. source: "./media/characters/rick/front.svg"
  2201. }
  2202. }
  2203. },
  2204. [
  2205. {
  2206. name: "Normal",
  2207. height: math.unit(8, "feet"),
  2208. default: true
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(5, "km")
  2213. }
  2214. ]
  2215. ))
  2216. characterMakers.push(() => makeCharacter(
  2217. { name: "Ona" },
  2218. {
  2219. front: {
  2220. height: math.unit(8, "feet"),
  2221. weight: math.unit(120, "lb"),
  2222. name: "Front",
  2223. image: {
  2224. source: "./media/characters/ona/front.svg"
  2225. }
  2226. },
  2227. frontAlt: {
  2228. height: math.unit(8, "feet"),
  2229. weight: math.unit(120, "lb"),
  2230. name: "Front (Alt)",
  2231. image: {
  2232. source: "./media/characters/ona/front-alt.svg"
  2233. }
  2234. },
  2235. back: {
  2236. height: math.unit(8, "feet"),
  2237. weight: math.unit(120, "lb"),
  2238. name: "Back",
  2239. image: {
  2240. source: "./media/characters/ona/back.svg"
  2241. }
  2242. },
  2243. foot: {
  2244. height: math.unit(1.1, "feet"),
  2245. name: "Foot",
  2246. image: {
  2247. source: "./media/characters/ona/foot.svg"
  2248. }
  2249. }
  2250. },
  2251. [
  2252. {
  2253. name: "Megamacro",
  2254. height: math.unit(70, "km"),
  2255. default: true
  2256. },
  2257. {
  2258. name: "Gigamacro",
  2259. height: math.unit(681818, "miles")
  2260. },
  2261. {
  2262. name: "Examacro",
  2263. height: math.unit(3800000, "lightyears")
  2264. },
  2265. ]
  2266. ))
  2267. characterMakers.push(() => makeCharacter(
  2268. { name: "Mech" },
  2269. {
  2270. front: {
  2271. height: math.unit(12, "feet"),
  2272. weight: math.unit(3000, "lb"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/mech/front.svg",
  2276. bottom: 0.025,
  2277. }
  2278. },
  2279. back: {
  2280. height: math.unit(12, "feet"),
  2281. weight: math.unit(3000, "lb"),
  2282. name: "Back",
  2283. image: {
  2284. source: "./media/characters/mech/back.svg",
  2285. bottom: 0.03,
  2286. }
  2287. }
  2288. },
  2289. [
  2290. {
  2291. name: "Normal",
  2292. height: math.unit(12, "feet")
  2293. },
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(300, "feet"),
  2297. default: true
  2298. },
  2299. {
  2300. name: "Macro+",
  2301. height: math.unit(1500, "feet")
  2302. },
  2303. ]
  2304. ))
  2305. characterMakers.push(() => makeCharacter(
  2306. { name: "Gregory" },
  2307. {
  2308. front: {
  2309. height: math.unit(1.3, "meter"),
  2310. weight: math.unit(30, "kg"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/gregory/front.svg",
  2314. }
  2315. }
  2316. },
  2317. [
  2318. {
  2319. name: "Normal",
  2320. height: math.unit(1.3, "meter"),
  2321. default: true
  2322. },
  2323. {
  2324. name: "Macro",
  2325. height: math.unit(20, "meter")
  2326. }
  2327. ]
  2328. ))
  2329. characterMakers.push(() => makeCharacter(
  2330. { name: "Elory" },
  2331. {
  2332. front: {
  2333. height: math.unit(2.8, "meter"),
  2334. weight: math.unit(200, "kg"),
  2335. name: "Front",
  2336. image: {
  2337. source: "./media/characters/elory/front.svg",
  2338. }
  2339. }
  2340. },
  2341. [
  2342. {
  2343. name: "Normal",
  2344. height: math.unit(2.8, "meter"),
  2345. default: true
  2346. },
  2347. {
  2348. name: "Macro",
  2349. height: math.unit(38, "meter")
  2350. }
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Angelpatamon" },
  2355. {
  2356. front: {
  2357. height: math.unit(470, "feet"),
  2358. weight: math.unit(924, "tons"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/angelpatamon/front.svg",
  2362. }
  2363. }
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(470, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Deity Size I",
  2373. height: math.unit(28651.2, "km")
  2374. },
  2375. {
  2376. name: "Deity Size II",
  2377. height: math.unit(171907.2, "km")
  2378. }
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Cryae" },
  2383. {
  2384. side: {
  2385. height: math.unit(7.2, "meter"),
  2386. weight: math.unit(8.2, "tons"),
  2387. name: "Side",
  2388. image: {
  2389. source: "./media/characters/cryae/side.svg",
  2390. extra: 3500 / 1500
  2391. }
  2392. }
  2393. },
  2394. [
  2395. {
  2396. name: "Normal",
  2397. height: math.unit(7.2, "meter"),
  2398. default: true
  2399. }
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Xera" },
  2404. {
  2405. front: {
  2406. height: math.unit(6, "feet"),
  2407. weight: math.unit(175, "lb"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/xera/front.svg",
  2411. extra: 2300 / 2061
  2412. }
  2413. },
  2414. side: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(175, "lb"),
  2417. name: "Side",
  2418. image: {
  2419. source: "./media/characters/xera/side.svg",
  2420. extra: 2300 / 2061
  2421. }
  2422. },
  2423. back: {
  2424. height: math.unit(6, "feet"),
  2425. weight: math.unit(175, "lb"),
  2426. name: "Back",
  2427. image: {
  2428. source: "./media/characters/xera/back.svg"
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Small",
  2435. height: math.unit(10, "feet")
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(500, "meters"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(10, "km")
  2445. },
  2446. {
  2447. name: "Gigamacro",
  2448. height: math.unit(25000, "km")
  2449. },
  2450. {
  2451. name: "Teramacro",
  2452. height: math.unit(3e6, "km")
  2453. }
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Nebula" },
  2458. {
  2459. front: {
  2460. height: math.unit(6, "feet"),
  2461. weight: math.unit(175, "lb"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/nebula/front.svg",
  2465. extra: 2600 / 2450
  2466. }
  2467. }
  2468. },
  2469. [
  2470. {
  2471. name: "Small",
  2472. height: math.unit(4.5, "meters")
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(1500, "meters"),
  2477. default: true
  2478. },
  2479. {
  2480. name: "Megamacro",
  2481. height: math.unit(150, "km")
  2482. },
  2483. {
  2484. name: "Gigamacro",
  2485. height: math.unit(27000, "km")
  2486. }
  2487. ]
  2488. ))
  2489. characterMakers.push(() => makeCharacter(
  2490. { name: "Abysgar" },
  2491. {
  2492. front: {
  2493. height: math.unit(6, "feet"),
  2494. weight: math.unit(225, "lb"),
  2495. name: "Front",
  2496. image: {
  2497. source: "./media/characters/abysgar/front.svg"
  2498. }
  2499. }
  2500. },
  2501. [
  2502. {
  2503. name: "Small",
  2504. height: math.unit(4.5, "meters")
  2505. },
  2506. {
  2507. name: "Macro",
  2508. height: math.unit(1250, "meters"),
  2509. default: true
  2510. },
  2511. {
  2512. name: "Megamacro",
  2513. height: math.unit(125, "km")
  2514. },
  2515. {
  2516. name: "Gigamacro",
  2517. height: math.unit(26000, "km")
  2518. }
  2519. ]
  2520. ))
  2521. characterMakers.push(() => makeCharacter(
  2522. { name: "Yakuz" },
  2523. {
  2524. front: {
  2525. height: math.unit(6, "feet"),
  2526. weight: math.unit(180, "lb"),
  2527. name: "Front",
  2528. image: {
  2529. source: "./media/characters/yakuz/front.svg"
  2530. }
  2531. }
  2532. },
  2533. [
  2534. {
  2535. name: "Small",
  2536. height: math.unit(5, "meters")
  2537. },
  2538. {
  2539. name: "Macro",
  2540. height: math.unit(1500, "meters"),
  2541. default: true
  2542. },
  2543. {
  2544. name: "Megamacro",
  2545. height: math.unit(200, "km")
  2546. },
  2547. {
  2548. name: "Gigamacro",
  2549. height: math.unit(100000, "km")
  2550. }
  2551. ]
  2552. ))
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "Mirova" },
  2555. {
  2556. front: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(175, "lb"),
  2559. name: "Front",
  2560. image: {
  2561. source: "./media/characters/mirova/front.svg"
  2562. }
  2563. }
  2564. },
  2565. [
  2566. {
  2567. name: "Small",
  2568. height: math.unit(5, "meters")
  2569. },
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(900, "meters"),
  2573. default: true
  2574. },
  2575. {
  2576. name: "Megamacro",
  2577. height: math.unit(135, "km")
  2578. },
  2579. {
  2580. name: "Gigamacro",
  2581. height: math.unit(20000, "km")
  2582. }
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Asana (Mech)" },
  2587. {
  2588. side: {
  2589. height: math.unit(28.35, "feet"),
  2590. weight: math.unit(99.75, "tons"),
  2591. name: "Side",
  2592. image: {
  2593. source: "./media/characters/asana-mech/side.svg"
  2594. }
  2595. }
  2596. },
  2597. [
  2598. {
  2599. name: "Normal",
  2600. height: math.unit(28.35, "feet"),
  2601. default: true
  2602. },
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(2500, "feet")
  2606. },
  2607. {
  2608. name: "Megamacro",
  2609. height: math.unit(25, "miles")
  2610. },
  2611. {
  2612. name: "Examacro",
  2613. height: math.unit(6e8, "lightyears")
  2614. },
  2615. ]
  2616. ))
  2617. characterMakers.push(() => makeCharacter(
  2618. { name: "Ashtrek" },
  2619. {
  2620. front: {
  2621. height: math.unit(2, "meters"),
  2622. weight: math.unit(70, "kg"),
  2623. name: "Front",
  2624. image: {
  2625. source: "./media/characters/ashtrek/front.svg",
  2626. extra: 560 / 524,
  2627. bottom: 0.01
  2628. }
  2629. },
  2630. frontArmor: {
  2631. height: math.unit(2, "meters"),
  2632. weight: math.unit(76, "kg"),
  2633. name: "Front (Armor)",
  2634. image: {
  2635. source: "./media/characters/ashtrek/front-armor.svg",
  2636. extra: 561 / 527,
  2637. bottom: 0.01
  2638. }
  2639. },
  2640. side: {
  2641. height: math.unit(2, "meters"),
  2642. weight: math.unit(70, "kg"),
  2643. name: "Side",
  2644. image: {
  2645. source: "./media/characters/ashtrek/side.svg",
  2646. extra: 1717 / 1609,
  2647. bottom: 0.005
  2648. }
  2649. },
  2650. back: {
  2651. height: math.unit(2, "meters"),
  2652. weight: math.unit(70, "kg"),
  2653. name: "Back",
  2654. image: {
  2655. source: "./media/characters/ashtrek/back.svg",
  2656. extra: 1570 / 1501
  2657. }
  2658. },
  2659. },
  2660. [
  2661. {
  2662. name: "DEFCON 5",
  2663. height: math.unit(5, "meters")
  2664. },
  2665. {
  2666. name: "DEFCON 4",
  2667. height: math.unit(500, "meters"),
  2668. default: true
  2669. },
  2670. {
  2671. name: "DEFCON 3",
  2672. height: math.unit(5, "km")
  2673. },
  2674. {
  2675. name: "DEFCON 2",
  2676. height: math.unit(500, "km")
  2677. },
  2678. {
  2679. name: "DEFCON 1",
  2680. height: math.unit(500000, "km")
  2681. },
  2682. {
  2683. name: "DEFCON 0",
  2684. height: math.unit(3, "gigaparsecs")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Gale" },
  2690. {
  2691. front: {
  2692. height: math.unit(2, "meters"),
  2693. weight: math.unit(76, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/gale/front.svg"
  2697. }
  2698. },
  2699. frontAlt1: {
  2700. height: math.unit(2, "meters"),
  2701. weight: math.unit(76, "kg"),
  2702. name: "Front (Alt 1)",
  2703. image: {
  2704. source: "./media/characters/gale/front-alt-1.svg"
  2705. }
  2706. },
  2707. frontAlt2: {
  2708. height: math.unit(2, "meters"),
  2709. weight: math.unit(76, "kg"),
  2710. name: "Front (Alt 2)",
  2711. image: {
  2712. source: "./media/characters/gale/front-alt-2.svg"
  2713. }
  2714. },
  2715. },
  2716. [
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(7, "feet")
  2720. },
  2721. {
  2722. name: "Macro",
  2723. height: math.unit(150, "feet"),
  2724. default: true
  2725. },
  2726. {
  2727. name: "Macro+",
  2728. height: math.unit(300, "feet")
  2729. },
  2730. ]
  2731. ))
  2732. characterMakers.push(() => makeCharacter(
  2733. { name: "Draylen" },
  2734. {
  2735. front: {
  2736. height: math.unit(2, "meters"),
  2737. weight: math.unit(76, "kg"),
  2738. name: "Front",
  2739. image: {
  2740. source: "./media/characters/draylen/front.svg"
  2741. }
  2742. }
  2743. },
  2744. [
  2745. {
  2746. name: "Macro",
  2747. height: math.unit(150, "feet"),
  2748. default: true
  2749. }
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Chez" },
  2754. {
  2755. front: {
  2756. height: math.unit(7 + 9 / 12, "feet"),
  2757. weight: math.unit(379, "lbs"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/chez/front.svg"
  2761. }
  2762. },
  2763. side: {
  2764. height: math.unit(7 + 9 / 12, "feet"),
  2765. weight: math.unit(379, "lbs"),
  2766. name: "Side",
  2767. image: {
  2768. source: "./media/characters/chez/side.svg"
  2769. }
  2770. }
  2771. },
  2772. [
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(7 + 9 / 12, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "God King",
  2780. height: math.unit(9750000, "meters")
  2781. }
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Kaylum" },
  2786. {
  2787. front: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(275, "lbs"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/kaylum/front.svg",
  2793. bottom: 0.01,
  2794. extra: 1166 / 1031
  2795. }
  2796. },
  2797. frontWingless: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(275, "lbs"),
  2800. name: "Front (Wingless)",
  2801. image: {
  2802. source: "./media/characters/kaylum/front-wingless.svg",
  2803. bottom: 0.01,
  2804. extra: 1117 / 1031
  2805. }
  2806. }
  2807. },
  2808. [
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(3.05, "meters")
  2812. },
  2813. {
  2814. name: "Master",
  2815. height: math.unit(5.5, "meters")
  2816. },
  2817. {
  2818. name: "Rampage",
  2819. height: math.unit(19, "meters")
  2820. },
  2821. {
  2822. name: "Macro Lite",
  2823. height: math.unit(37, "meters")
  2824. },
  2825. {
  2826. name: "Hyper Predator",
  2827. height: math.unit(61, "meters")
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(138, "meters"),
  2832. default: true
  2833. }
  2834. ]
  2835. ))
  2836. characterMakers.push(() => makeCharacter(
  2837. { name: "Geta" },
  2838. {
  2839. front: {
  2840. height: math.unit(6, "feet"),
  2841. weight: math.unit(150, "lbs"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/geta/front.svg"
  2845. }
  2846. }
  2847. },
  2848. [
  2849. {
  2850. name: "Micro",
  2851. height: math.unit(3, "inches"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Normal",
  2856. height: math.unit(5 + 5 / 12, "feet")
  2857. }
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Tyrnn" },
  2862. {
  2863. front: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(300, "lbs"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/tyrnn/front.svg"
  2869. }
  2870. }
  2871. },
  2872. [
  2873. {
  2874. name: "Main Height",
  2875. height: math.unit(355, "feet"),
  2876. default: true
  2877. },
  2878. {
  2879. name: "Fave. Height",
  2880. height: math.unit(2400, "feet")
  2881. }
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Apple" },
  2886. {
  2887. front: {
  2888. height: math.unit(6, "feet"),
  2889. weight: math.unit(300, "lbs"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/appledectomy/front.svg"
  2893. }
  2894. }
  2895. },
  2896. [
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(2500, "feet")
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(50, "miles"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Gigamacro",
  2908. height: math.unit(5000, "miles")
  2909. },
  2910. {
  2911. name: "Teramacro",
  2912. height: math.unit(250000, "miles")
  2913. },
  2914. ]
  2915. ))
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Vulpes" },
  2918. {
  2919. front: {
  2920. height: math.unit(6, "feet"),
  2921. weight: math.unit(200, "lbs"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/vulpes/front.svg",
  2925. extra: 573 / 543,
  2926. bottom: 0.033
  2927. }
  2928. },
  2929. side: {
  2930. height: math.unit(6, "feet"),
  2931. weight: math.unit(200, "lbs"),
  2932. name: "Side",
  2933. image: {
  2934. source: "./media/characters/vulpes/side.svg",
  2935. extra: 573 / 543,
  2936. bottom: 0.01
  2937. }
  2938. },
  2939. back: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(200, "lbs"),
  2942. name: "Back",
  2943. image: {
  2944. source: "./media/characters/vulpes/back.svg",
  2945. extra: 573 / 543,
  2946. }
  2947. },
  2948. feet: {
  2949. height: math.unit(1.276, "feet"),
  2950. name: "Feet",
  2951. image: {
  2952. source: "./media/characters/vulpes/feet.svg"
  2953. }
  2954. },
  2955. maw: {
  2956. height: math.unit(1.18, "feet"),
  2957. name: "Maw",
  2958. image: {
  2959. source: "./media/characters/vulpes/maw.svg"
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Micro",
  2966. height: math.unit(2, "inches")
  2967. },
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(6.3, "feet")
  2971. },
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(850, "feet")
  2975. },
  2976. {
  2977. name: "Megamacro",
  2978. height: math.unit(7500, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Gigamacro",
  2983. height: math.unit(570000, "miles")
  2984. }
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Rain Fallen" },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(210, "lbs"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/rain-fallen/front.svg"
  2996. }
  2997. },
  2998. side: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(210, "lbs"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/rain-fallen/side.svg"
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(6, "feet"),
  3008. weight: math.unit(210, "lbs"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/rain-fallen/back.svg"
  3012. }
  3013. },
  3014. feral: {
  3015. height: math.unit(9, "feet"),
  3016. weight: math.unit(700, "lbs"),
  3017. name: "Feral",
  3018. image: {
  3019. source: "./media/characters/rain-fallen/feral.svg"
  3020. }
  3021. },
  3022. },
  3023. [
  3024. {
  3025. name: "Normal",
  3026. height: math.unit(5, "meter")
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(150, "meter"),
  3031. default: true
  3032. },
  3033. {
  3034. name: "Megamacro",
  3035. height: math.unit(278e6, "meter")
  3036. },
  3037. {
  3038. name: "Gigamacro",
  3039. height: math.unit(2e9, "meter")
  3040. },
  3041. {
  3042. name: "Teramacro",
  3043. height: math.unit(8e12, "meter")
  3044. },
  3045. {
  3046. name: "Devourer",
  3047. height: math.unit(14, "zettameters")
  3048. },
  3049. {
  3050. name: "Scarlet King",
  3051. height: math.unit(18, "yottameters")
  3052. },
  3053. {
  3054. name: "Void",
  3055. height: math.unit(6.66e66, "yottameters")
  3056. }
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Zaakira" },
  3061. {
  3062. standing: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(180, "lbs"),
  3065. name: "Standing",
  3066. image: {
  3067. source: "./media/characters/zaakira/standing.svg"
  3068. }
  3069. },
  3070. laying: {
  3071. height: math.unit(3, "feet"),
  3072. weight: math.unit(180, "lbs"),
  3073. name: "Laying",
  3074. image: {
  3075. source: "./media/characters/zaakira/laying.svg"
  3076. }
  3077. },
  3078. },
  3079. [
  3080. {
  3081. name: "Normal",
  3082. height: math.unit(12, "feet")
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(279, "feet"),
  3087. default: true
  3088. }
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "Sigvald" },
  3093. {
  3094. front: {
  3095. height: math.unit(6, "feet"),
  3096. weight: math.unit(250, "lbs"),
  3097. name: "Front",
  3098. image: {
  3099. source: "./media/characters/sigvald/front.svg",
  3100. extra: 1000 / 850
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(250, "lbs"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/sigvald/back.svg"
  3109. }
  3110. },
  3111. },
  3112. [
  3113. {
  3114. name: "Normal",
  3115. height: math.unit(8, "feet")
  3116. },
  3117. {
  3118. name: "Large",
  3119. height: math.unit(12, "feet")
  3120. },
  3121. {
  3122. name: "Larger",
  3123. height: math.unit(20, "feet")
  3124. },
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(150, "feet")
  3128. },
  3129. {
  3130. name: "Macro+",
  3131. height: math.unit(200, "feet"),
  3132. default: true
  3133. },
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Scott" },
  3138. {
  3139. side: {
  3140. height: math.unit(12, "feet"),
  3141. weight: math.unit(2000, "kg"),
  3142. name: "Side",
  3143. image: {
  3144. source: "./media/characters/scott/side.svg",
  3145. extra: 754/724,
  3146. bottom: 0.069
  3147. }
  3148. },
  3149. upright: {
  3150. height: math.unit(12, "feet"),
  3151. weight: math.unit(2000, "kg"),
  3152. name: "Upright",
  3153. image: {
  3154. source: "./media/characters/scott/upright.svg",
  3155. extra: 3881/3722,
  3156. bottom: 0.05
  3157. }
  3158. },
  3159. },
  3160. [
  3161. {
  3162. name: "Normal",
  3163. height: math.unit(12, "feet"),
  3164. default: true
  3165. },
  3166. ]
  3167. ))
  3168. characterMakers.push(() => makeCharacter(
  3169. { name: "Tobias" },
  3170. {
  3171. side: {
  3172. height: math.unit(8, "meters"),
  3173. weight: math.unit(84755, "lbs"),
  3174. name: "Side",
  3175. image: {
  3176. source: "./media/characters/tobias/side.svg",
  3177. extra: 1474 / 1096,
  3178. bottom: 38.9 / 1513.1235
  3179. }
  3180. },
  3181. },
  3182. [
  3183. {
  3184. name: "Normal",
  3185. height: math.unit(8, "meters"),
  3186. default: true
  3187. },
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Kieran" },
  3192. {
  3193. front: {
  3194. height: math.unit(5.5, "feet"),
  3195. weight: math.unit(400, "lbs"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/kieran/front.svg",
  3199. extra: 2694/2364,
  3200. bottom: 217/2908
  3201. }
  3202. },
  3203. side: {
  3204. height: math.unit(5.5, "feet"),
  3205. weight: math.unit(400, "lbs"),
  3206. name: "Side",
  3207. image: {
  3208. source: "./media/characters/kieran/side.svg",
  3209. extra: 875/777,
  3210. bottom: 84.6/959
  3211. }
  3212. },
  3213. },
  3214. [
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(5.5, "feet"),
  3218. default: true
  3219. },
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Sanya" },
  3224. {
  3225. side: {
  3226. height: math.unit(2, "meters"),
  3227. weight: math.unit(70, "kg"),
  3228. name: "Side",
  3229. image: {
  3230. source: "./media/characters/sanya/side.svg",
  3231. bottom: 0.02,
  3232. extra: 1.02
  3233. }
  3234. },
  3235. },
  3236. [
  3237. {
  3238. name: "Small",
  3239. height: math.unit(2, "meters")
  3240. },
  3241. {
  3242. name: "Normal",
  3243. height: math.unit(3, "meters")
  3244. },
  3245. {
  3246. name: "Macro",
  3247. height: math.unit(16, "meters"),
  3248. default: true
  3249. },
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Miranda" },
  3254. {
  3255. side: {
  3256. height: math.unit(2, "meters"),
  3257. weight: math.unit(120, "kg"),
  3258. name: "Front",
  3259. image: {
  3260. source: "./media/characters/miranda/front.svg",
  3261. extra: 10.6 / 10
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(10, "feet"),
  3269. default: true
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "James" },
  3275. {
  3276. side: {
  3277. height: math.unit(2, "meters"),
  3278. weight: math.unit(100, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/james/front.svg",
  3282. extra: 10 / 8.5
  3283. }
  3284. },
  3285. },
  3286. [
  3287. {
  3288. name: "Normal",
  3289. height: math.unit(8.5, "feet"),
  3290. default: true
  3291. }
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Heather" },
  3296. {
  3297. side: {
  3298. height: math.unit(9.5, "feet"),
  3299. weight: math.unit(2500, "lbs"),
  3300. name: "Side",
  3301. image: {
  3302. source: "./media/characters/heather/side.svg"
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(9.5, "feet"),
  3310. default: true
  3311. }
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "Lukas" },
  3316. {
  3317. side: {
  3318. height: math.unit(6.5, "feet"),
  3319. weight: math.unit(400, "lbs"),
  3320. name: "Side",
  3321. image: {
  3322. source: "./media/characters/lukas/side.svg",
  3323. extra: 7.25 / 6.5
  3324. }
  3325. },
  3326. },
  3327. [
  3328. {
  3329. name: "Normal",
  3330. height: math.unit(6.5, "feet"),
  3331. default: true
  3332. }
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Louise" },
  3337. {
  3338. side: {
  3339. height: math.unit(5, "feet"),
  3340. weight: math.unit(3000, "lbs"),
  3341. name: "Side",
  3342. image: {
  3343. source: "./media/characters/louise/side.svg"
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(5, "feet"),
  3351. default: true
  3352. }
  3353. ]
  3354. ))
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Ramona" },
  3357. {
  3358. side: {
  3359. height: math.unit(6, "feet"),
  3360. weight: math.unit(150, "lbs"),
  3361. name: "Side",
  3362. image: {
  3363. source: "./media/characters/ramona/side.svg"
  3364. }
  3365. },
  3366. },
  3367. [
  3368. {
  3369. name: "Normal",
  3370. height: math.unit(5.3, "meters"),
  3371. default: true
  3372. },
  3373. {
  3374. name: "Macro",
  3375. height: math.unit(20, "stories")
  3376. },
  3377. {
  3378. name: "Macro+",
  3379. height: math.unit(50, "stories")
  3380. },
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Deerpuff" },
  3385. {
  3386. standing: {
  3387. height: math.unit(5.75, "feet"),
  3388. weight: math.unit(160, "lbs"),
  3389. name: "Standing",
  3390. image: {
  3391. source: "./media/characters/deerpuff/standing.svg",
  3392. extra: 682 / 624
  3393. }
  3394. },
  3395. sitting: {
  3396. height: math.unit(5.75 / 1.79, "feet"),
  3397. weight: math.unit(160, "lbs"),
  3398. name: "Sitting",
  3399. image: {
  3400. source: "./media/characters/deerpuff/sitting.svg",
  3401. bottom: 44 / 400,
  3402. extra: 1
  3403. }
  3404. },
  3405. taurLaying: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(400, "lbs"),
  3408. name: "Taur (Laying)",
  3409. image: {
  3410. source: "./media/characters/deerpuff/taur-laying.svg"
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Puffball",
  3417. height: math.unit(6, "inches")
  3418. },
  3419. {
  3420. name: "Normalpuff",
  3421. height: math.unit(5.75, "feet")
  3422. },
  3423. {
  3424. name: "Macropuff",
  3425. height: math.unit(1500, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Megapuff",
  3430. height: math.unit(500, "miles")
  3431. },
  3432. {
  3433. name: "Gigapuff",
  3434. height: math.unit(250000, "miles")
  3435. },
  3436. {
  3437. name: "Omegapuff",
  3438. height: math.unit(1000, "lightyears")
  3439. },
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Vivian" },
  3444. {
  3445. stomping: {
  3446. height: math.unit(6, "feet"),
  3447. weight: math.unit(170, "lbs"),
  3448. name: "Stomping",
  3449. image: {
  3450. source: "./media/characters/vivian/stomping.svg"
  3451. }
  3452. },
  3453. sitting: {
  3454. height: math.unit(6 / 1.75, "feet"),
  3455. weight: math.unit(170, "lbs"),
  3456. name: "Sitting",
  3457. image: {
  3458. source: "./media/characters/vivian/sitting.svg",
  3459. bottom: 1 / 6.4,
  3460. extra: 1,
  3461. }
  3462. },
  3463. },
  3464. [
  3465. {
  3466. name: "Normal",
  3467. height: math.unit(7, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(10, "stories")
  3473. },
  3474. {
  3475. name: "Macro+",
  3476. height: math.unit(30, "stories")
  3477. },
  3478. {
  3479. name: "Megamacro",
  3480. height: math.unit(10, "miles")
  3481. },
  3482. {
  3483. name: "Megamacro+",
  3484. height: math.unit(2750000, "meters")
  3485. },
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Prince" },
  3490. {
  3491. front: {
  3492. height: math.unit(6, "feet"),
  3493. weight: math.unit(160, "lbs"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/prince/front.svg",
  3497. extra: 3400 / 3000
  3498. }
  3499. },
  3500. jumping: {
  3501. height: math.unit(6, "feet"),
  3502. weight: math.unit(160, "lbs"),
  3503. name: "Jumping",
  3504. image: {
  3505. source: "./media/characters/prince/jump.svg",
  3506. extra: 2555 / 2134
  3507. }
  3508. },
  3509. },
  3510. [
  3511. {
  3512. name: "Normal",
  3513. height: math.unit(7.75, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Not cute",
  3518. height: math.unit(17, "feet")
  3519. },
  3520. {
  3521. name: "I said NOT",
  3522. height: math.unit(91, "feet")
  3523. },
  3524. {
  3525. name: "Please stop",
  3526. height: math.unit(560, "feet")
  3527. },
  3528. {
  3529. name: "What have you done",
  3530. height: math.unit(2200, "feet")
  3531. },
  3532. {
  3533. name: "Deer God",
  3534. height: math.unit(3.6, "miles")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Psymon" },
  3540. {
  3541. standing: {
  3542. height: math.unit(6, "feet"),
  3543. weight: math.unit(300, "lbs"),
  3544. name: "Standing",
  3545. image: {
  3546. source: "./media/characters/psymon/standing.svg",
  3547. extra: 1888 / 1810,
  3548. bottom: 0.05
  3549. }
  3550. },
  3551. slithering: {
  3552. height: math.unit(6, "feet"),
  3553. weight: math.unit(300, "lbs"),
  3554. name: "Slithering",
  3555. image: {
  3556. source: "./media/characters/psymon/slithering.svg",
  3557. extra: 1330 / 1224
  3558. }
  3559. },
  3560. slitheringAlt: {
  3561. height: math.unit(6, "feet"),
  3562. weight: math.unit(300, "lbs"),
  3563. name: "Slithering (Alt)",
  3564. image: {
  3565. source: "./media/characters/psymon/slithering-alt.svg",
  3566. extra: 1330 / 1224
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Normal",
  3573. height: math.unit(11.25, "feet"),
  3574. default: true
  3575. },
  3576. {
  3577. name: "Large",
  3578. height: math.unit(27, "feet")
  3579. },
  3580. {
  3581. name: "Giant",
  3582. height: math.unit(87, "feet")
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(365, "feet")
  3587. },
  3588. {
  3589. name: "Megamacro",
  3590. height: math.unit(3, "miles")
  3591. },
  3592. {
  3593. name: "World Serpent",
  3594. height: math.unit(8000, "miles")
  3595. },
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Daimos" },
  3600. {
  3601. front: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(180, "lbs"),
  3604. name: "Front",
  3605. image: {
  3606. source: "./media/characters/daimos/front.svg",
  3607. extra: 4160 / 3897,
  3608. bottom: 0.021
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(8, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Big Dog",
  3620. height: math.unit(22, "feet")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(127, "feet")
  3625. },
  3626. {
  3627. name: "Megamacro",
  3628. height: math.unit(3600, "feet")
  3629. },
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "Blake" },
  3634. {
  3635. side: {
  3636. height: math.unit(6, "feet"),
  3637. weight: math.unit(180, "lbs"),
  3638. name: "Side",
  3639. image: {
  3640. source: "./media/characters/blake/side.svg",
  3641. extra: 1212 / 1120,
  3642. bottom: 0.05
  3643. }
  3644. },
  3645. crouched: {
  3646. height: math.unit(6 * 0.57, "feet"),
  3647. weight: math.unit(180, "lbs"),
  3648. name: "Crouched",
  3649. image: {
  3650. source: "./media/characters/blake/crouched.svg",
  3651. extra: 840 / 587,
  3652. bottom: 0.04
  3653. }
  3654. },
  3655. bent: {
  3656. height: math.unit(6 * 0.75, "feet"),
  3657. weight: math.unit(180, "lbs"),
  3658. name: "Bent",
  3659. image: {
  3660. source: "./media/characters/blake/bent.svg",
  3661. extra: 592 / 544,
  3662. bottom: 0.035
  3663. }
  3664. },
  3665. },
  3666. [
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(8 + 1 / 6, "feet"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Big Backside",
  3674. height: math.unit(37, "feet")
  3675. },
  3676. {
  3677. name: "Subway Shredder",
  3678. height: math.unit(72, "feet")
  3679. },
  3680. {
  3681. name: "City Carver",
  3682. height: math.unit(1675, "feet")
  3683. },
  3684. {
  3685. name: "Tectonic Tweaker",
  3686. height: math.unit(2300, "miles")
  3687. },
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Guisetto" },
  3692. {
  3693. front: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(180, "lbs"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/guisetto/front.svg",
  3699. extra: 856 / 817,
  3700. bottom: 0.06
  3701. }
  3702. },
  3703. airborne: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(180, "lbs"),
  3706. name: "Airborne",
  3707. image: {
  3708. source: "./media/characters/guisetto/airborne.svg",
  3709. extra: 584 / 525
  3710. }
  3711. },
  3712. },
  3713. [
  3714. {
  3715. name: "Normal",
  3716. height: math.unit(10 + 11 / 12, "feet"),
  3717. default: true
  3718. },
  3719. {
  3720. name: "Large",
  3721. height: math.unit(35, "feet")
  3722. },
  3723. {
  3724. name: "Macro",
  3725. height: math.unit(475, "feet")
  3726. },
  3727. ]
  3728. ))
  3729. characterMakers.push(() => makeCharacter(
  3730. { name: "Luxor" },
  3731. {
  3732. front: {
  3733. height: math.unit(6, "feet"),
  3734. weight: math.unit(180, "lbs"),
  3735. name: "Front",
  3736. image: {
  3737. source: "./media/characters/luxor/front.svg",
  3738. extra: 2940 / 2152
  3739. }
  3740. },
  3741. back: {
  3742. height: math.unit(6, "feet"),
  3743. weight: math.unit(180, "lbs"),
  3744. name: "Back",
  3745. image: {
  3746. source: "./media/characters/luxor/back.svg",
  3747. extra: 1083 / 960
  3748. }
  3749. },
  3750. },
  3751. [
  3752. {
  3753. name: "Normal",
  3754. height: math.unit(5 + 5 / 6, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Lamp",
  3759. height: math.unit(50, "feet")
  3760. },
  3761. {
  3762. name: "Lämp",
  3763. height: math.unit(300, "feet")
  3764. },
  3765. {
  3766. name: "The sun is a lamp",
  3767. height: math.unit(250000, "miles")
  3768. },
  3769. ]
  3770. ))
  3771. characterMakers.push(() => makeCharacter(
  3772. { name: "Huoyan" },
  3773. {
  3774. front: {
  3775. height: math.unit(6, "feet"),
  3776. weight: math.unit(50, "lbs"),
  3777. name: "Front",
  3778. image: {
  3779. source: "./media/characters/huoyan/front.svg"
  3780. }
  3781. },
  3782. side: {
  3783. height: math.unit(6, "feet"),
  3784. weight: math.unit(180, "lbs"),
  3785. name: "Side",
  3786. image: {
  3787. source: "./media/characters/huoyan/side.svg"
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Chef",
  3794. height: math.unit(9, "feet")
  3795. },
  3796. {
  3797. name: "Normal",
  3798. height: math.unit(65, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(780, "feet")
  3804. },
  3805. {
  3806. name: "Flaming Mountain",
  3807. height: math.unit(4.8, "miles")
  3808. },
  3809. {
  3810. name: "Celestial",
  3811. height: math.unit(765000, "miles")
  3812. },
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Tails" },
  3817. {
  3818. front: {
  3819. height: math.unit(5 + 3 / 4, "feet"),
  3820. weight: math.unit(120, "lbs"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/tails/front.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(5 + 3 / 4, "feet"),
  3831. default: true
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Rainy" },
  3837. {
  3838. front: {
  3839. height: math.unit(4, "feet"),
  3840. weight: math.unit(50, "lbs"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/rainy/front.svg"
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(800, "feet"),
  3851. default: true
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Rainier" },
  3857. {
  3858. front: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(150, "lbs"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/rainier/front.svg"
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Micro",
  3870. height: math.unit(2, "mm"),
  3871. default: true
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Andy" },
  3877. {
  3878. front: {
  3879. height: math.unit(6, "feet"),
  3880. weight: math.unit(180, "lbs"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/andy/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(8, "feet"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(1000, "feet")
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(5, "miles")
  3900. },
  3901. {
  3902. name: "Gigamacro",
  3903. height: math.unit(5000, "miles")
  3904. },
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Cimmaron" },
  3909. {
  3910. front: {
  3911. height: math.unit(6, "feet"),
  3912. weight: math.unit(210, "lbs"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/cimmaron/front-sfw.svg",
  3916. extra: 701 / 676,
  3917. bottom: 0.046
  3918. }
  3919. },
  3920. back: {
  3921. height: math.unit(6, "feet"),
  3922. weight: math.unit(210, "lbs"),
  3923. name: "Back",
  3924. image: {
  3925. source: "./media/characters/cimmaron/back-sfw.svg",
  3926. extra: 701 / 676,
  3927. bottom: 0.046
  3928. }
  3929. },
  3930. frontNsfw: {
  3931. height: math.unit(6, "feet"),
  3932. weight: math.unit(210, "lbs"),
  3933. name: "Front (NSFW)",
  3934. image: {
  3935. source: "./media/characters/cimmaron/front-nsfw.svg",
  3936. extra: 701 / 676,
  3937. bottom: 0.046
  3938. }
  3939. },
  3940. backNsfw: {
  3941. height: math.unit(6, "feet"),
  3942. weight: math.unit(210, "lbs"),
  3943. name: "Back (NSFW)",
  3944. image: {
  3945. source: "./media/characters/cimmaron/back-nsfw.svg",
  3946. extra: 701 / 676,
  3947. bottom: 0.046
  3948. }
  3949. },
  3950. dick: {
  3951. height: math.unit(1.714, "feet"),
  3952. name: "Dick",
  3953. image: {
  3954. source: "./media/characters/cimmaron/dick.svg"
  3955. }
  3956. },
  3957. },
  3958. [
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(6, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro Mayor",
  3966. height: math.unit(350, "meters")
  3967. },
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Akari Kaen" },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(200, "lbs"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/akari/front.svg",
  3979. extra: 962 / 901,
  3980. bottom: 0.04
  3981. }
  3982. }
  3983. },
  3984. [
  3985. {
  3986. name: "Micro",
  3987. height: math.unit(5, "inches"),
  3988. default: true
  3989. },
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(7, "feet")
  3993. },
  3994. ]
  3995. ))
  3996. characterMakers.push(() => makeCharacter(
  3997. { name: "Cynosura" },
  3998. {
  3999. front: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(140, "lbs"),
  4002. name: "Front",
  4003. image: {
  4004. source: "./media/characters/cynosura/front.svg",
  4005. extra: 896 / 847
  4006. }
  4007. },
  4008. back: {
  4009. height: math.unit(6, "feet"),
  4010. weight: math.unit(140, "lbs"),
  4011. name: "Back",
  4012. image: {
  4013. source: "./media/characters/cynosura/back.svg",
  4014. extra: 1365 / 1250
  4015. }
  4016. },
  4017. },
  4018. [
  4019. {
  4020. name: "Micro",
  4021. height: math.unit(4, "inches")
  4022. },
  4023. {
  4024. name: "Normal",
  4025. height: math.unit(5.75, "feet"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Tall",
  4030. height: math.unit(10, "feet")
  4031. },
  4032. {
  4033. name: "Big",
  4034. height: math.unit(20, "feet")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(50, "feet")
  4039. },
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Gin" },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(170, "lbs"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/gin/front.svg",
  4051. extra: 1.053,
  4052. bottom: 0.025
  4053. }
  4054. },
  4055. foot: {
  4056. height: math.unit(6 / 4.25, "feet"),
  4057. name: "Foot",
  4058. image: {
  4059. source: "./media/characters/gin/foot.svg"
  4060. }
  4061. },
  4062. sole: {
  4063. height: math.unit(6 / 4.40, "feet"),
  4064. name: "Sole",
  4065. image: {
  4066. source: "./media/characters/gin/sole.svg"
  4067. }
  4068. },
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(13 + 2/12, "feet")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(1500, "feet")
  4078. },
  4079. {
  4080. name: "Megamacro",
  4081. height: math.unit(200, "miles"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Gigamacro",
  4086. height: math.unit(500, "megameters")
  4087. },
  4088. {
  4089. name: "Teramacro",
  4090. height: math.unit(15, "lightyears")
  4091. }
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "Guy" },
  4096. {
  4097. front: {
  4098. height: math.unit(6 + 1 / 6, "feet"),
  4099. weight: math.unit(178, "lbs"),
  4100. name: "Front",
  4101. image: {
  4102. source: "./media/characters/guy/front.svg"
  4103. }
  4104. }
  4105. },
  4106. [
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(6 + 1 / 6, "feet"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Large",
  4114. height: math.unit(25 + 7 / 12, "feet")
  4115. },
  4116. {
  4117. name: "Macro",
  4118. height: math.unit(60 + 9 / 12, "feet")
  4119. },
  4120. {
  4121. name: "Macro+",
  4122. height: math.unit(246, "feet")
  4123. },
  4124. {
  4125. name: "Macro++",
  4126. height: math.unit(878, "feet")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Tiberius" },
  4132. {
  4133. front: {
  4134. height: math.unit(9, "feet"),
  4135. weight: math.unit(800, "lbs"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/tiberius/front.svg",
  4139. extra: 2295 / 2071
  4140. }
  4141. },
  4142. back: {
  4143. height: math.unit(9, "feet"),
  4144. weight: math.unit(800, "lbs"),
  4145. name: "Back",
  4146. image: {
  4147. source: "./media/characters/tiberius/back.svg",
  4148. extra: 2373 / 2160
  4149. }
  4150. },
  4151. },
  4152. [
  4153. {
  4154. name: "Normal",
  4155. height: math.unit(9, "feet"),
  4156. default: true
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Surgo" },
  4162. {
  4163. front: {
  4164. height: math.unit(6, "feet"),
  4165. weight: math.unit(600, "lbs"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/surgo/front.svg",
  4169. extra: 3591 / 2227
  4170. }
  4171. },
  4172. back: {
  4173. height: math.unit(6, "feet"),
  4174. weight: math.unit(600, "lbs"),
  4175. name: "Back",
  4176. image: {
  4177. source: "./media/characters/surgo/back.svg",
  4178. extra: 3557 / 2228
  4179. }
  4180. },
  4181. laying: {
  4182. height: math.unit(6 * 0.85, "feet"),
  4183. weight: math.unit(600, "lbs"),
  4184. name: "Laying",
  4185. image: {
  4186. source: "./media/characters/surgo/laying.svg"
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(6, "feet"),
  4194. default: true
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Cibus" },
  4200. {
  4201. side: {
  4202. height: math.unit(6, "feet"),
  4203. weight: math.unit(150, "lbs"),
  4204. name: "Side",
  4205. image: {
  4206. source: "./media/characters/cibus/side.svg",
  4207. extra: 800 / 400
  4208. }
  4209. },
  4210. },
  4211. [
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(6, "feet"),
  4215. default: true
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Nibbles" },
  4221. {
  4222. front: {
  4223. height: math.unit(6, "feet"),
  4224. weight: math.unit(240, "lbs"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/nibbles/front.svg"
  4228. }
  4229. },
  4230. side: {
  4231. height: math.unit(6, "feet"),
  4232. weight: math.unit(240, "lbs"),
  4233. name: "Side",
  4234. image: {
  4235. source: "./media/characters/nibbles/side.svg"
  4236. }
  4237. },
  4238. },
  4239. [
  4240. {
  4241. name: "Normal",
  4242. height: math.unit(9, "feet"),
  4243. default: true
  4244. }
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Rikky" },
  4249. {
  4250. side: {
  4251. height: math.unit(5 + 1 / 6, "feet"),
  4252. weight: math.unit(130, "lbs"),
  4253. name: "Side",
  4254. image: {
  4255. source: "./media/characters/rikky/side.svg"
  4256. }
  4257. },
  4258. },
  4259. [
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(5 + 1 / 6, "feet")
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(152, "feet"),
  4267. default: true
  4268. },
  4269. {
  4270. name: "Megamacro",
  4271. height: math.unit(7, "miles")
  4272. }
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Malfressa" },
  4277. {
  4278. side: {
  4279. height: math.unit(370, "cm"),
  4280. weight: math.unit(350, "lbs"),
  4281. name: "Side",
  4282. image: {
  4283. source: "./media/characters/malfressa/side.svg"
  4284. }
  4285. },
  4286. walking: {
  4287. height: math.unit(370, "cm"),
  4288. weight: math.unit(350, "lbs"),
  4289. name: "Walking",
  4290. image: {
  4291. source: "./media/characters/malfressa/walking.svg"
  4292. }
  4293. },
  4294. feral: {
  4295. height: math.unit(2500, "cm"),
  4296. weight: math.unit(100000, "lbs"),
  4297. name: "Feral",
  4298. image: {
  4299. source: "./media/characters/malfressa/feral.svg",
  4300. extra: 2108 / 837,
  4301. bottom: 0.02
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(370, "cm")
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(300, "meters"),
  4313. default: true
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Jaro" },
  4319. {
  4320. front: {
  4321. height: math.unit(6, "feet"),
  4322. weight: math.unit(60, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/jaro/front.svg"
  4326. }
  4327. },
  4328. back: {
  4329. height: math.unit(6, "feet"),
  4330. weight: math.unit(60, "kg"),
  4331. name: "Back",
  4332. image: {
  4333. source: "./media/characters/jaro/back.svg"
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Micro",
  4340. height: math.unit(7, "inches")
  4341. },
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(5.5, "feet"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Minimacro",
  4349. height: math.unit(20, "feet")
  4350. },
  4351. {
  4352. name: "Macro",
  4353. height: math.unit(200, "meters")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Rogue" },
  4359. {
  4360. front: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(195, "lb"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/rogue/front.svg"
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Macro",
  4372. height: math.unit(90, "feet"),
  4373. default: true
  4374. },
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Piper" },
  4379. {
  4380. front: {
  4381. height: math.unit(5 + 8 / 12, "feet"),
  4382. weight: math.unit(140, "lb"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/piper/front.svg",
  4386. extra: 3928 / 3681
  4387. }
  4388. },
  4389. },
  4390. [
  4391. {
  4392. name: "Micro",
  4393. height: math.unit(2, "inches")
  4394. },
  4395. {
  4396. name: "Normal",
  4397. height: math.unit(5 + 8 / 12, "feet")
  4398. },
  4399. {
  4400. name: "Macro",
  4401. height: math.unit(250, "feet"),
  4402. default: true
  4403. },
  4404. {
  4405. name: "Megamacro",
  4406. height: math.unit(7, "miles")
  4407. },
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Gemini" },
  4412. {
  4413. front: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(220, "lb"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/gemini/front.svg"
  4419. }
  4420. },
  4421. back: {
  4422. height: math.unit(6, "feet"),
  4423. weight: math.unit(220, "lb"),
  4424. name: "Back",
  4425. image: {
  4426. source: "./media/characters/gemini/back.svg"
  4427. }
  4428. },
  4429. kneeling: {
  4430. height: math.unit(6 / 1.5, "feet"),
  4431. weight: math.unit(220, "lb"),
  4432. name: "Kneeling",
  4433. image: {
  4434. source: "./media/characters/gemini/kneeling.svg",
  4435. bottom: 0.02
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Macro",
  4442. height: math.unit(300, "meters"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Megamacro",
  4447. height: math.unit(6900, "meters")
  4448. },
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Alicia" },
  4453. {
  4454. anthro: {
  4455. height: math.unit(2.35, "meters"),
  4456. weight: math.unit(73, "kg"),
  4457. name: "Anthro",
  4458. image: {
  4459. source: "./media/characters/alicia/anthro.svg"
  4460. }
  4461. },
  4462. feral: {
  4463. height: math.unit(1.69, "meters"),
  4464. weight: math.unit(73, "kg"),
  4465. name: "Feral",
  4466. image: {
  4467. source: "./media/characters/alicia/feral.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(2.35, "meters")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(60, "meters"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(10000, "kilometers")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Archy" },
  4489. {
  4490. front: {
  4491. height: math.unit(7, "feet"),
  4492. weight: math.unit(250, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/archy/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Micro",
  4502. height: math.unit(1, "inch")
  4503. },
  4504. {
  4505. name: "Shorty",
  4506. height: math.unit(5, "feet")
  4507. },
  4508. {
  4509. name: "Normal",
  4510. height: math.unit(7, "feet")
  4511. },
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(600, "meters"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "Megamacro",
  4519. height: math.unit(1, "mile")
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Berri" },
  4525. {
  4526. front: {
  4527. height: math.unit(1.65, "meters"),
  4528. weight: math.unit(74, "kg"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/berri/front.svg"
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(1.65, "meters")
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(60, "m"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Megamacro",
  4547. height: math.unit(9.213, "km")
  4548. },
  4549. {
  4550. name: "Planet Eater",
  4551. height: math.unit(489, "megameters")
  4552. },
  4553. {
  4554. name: "Teramacro",
  4555. height: math.unit(2471635000000, "meters")
  4556. },
  4557. {
  4558. name: "Examacro",
  4559. height: math.unit(8.0624e+26, "meters")
  4560. }
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Lexi" },
  4565. {
  4566. front: {
  4567. height: math.unit(1.72, "meters"),
  4568. weight: math.unit(68, "kg"),
  4569. name: "Front",
  4570. image: {
  4571. source: "./media/characters/lexi/front.svg"
  4572. }
  4573. }
  4574. },
  4575. [
  4576. {
  4577. name: "Very Smol",
  4578. height: math.unit(10, "mm")
  4579. },
  4580. {
  4581. name: "Micro",
  4582. height: math.unit(6.8, "cm"),
  4583. default: true
  4584. },
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(1.72, "m")
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Martin" },
  4593. {
  4594. front: {
  4595. height: math.unit(1.69, "meters"),
  4596. weight: math.unit(68, "kg"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/martin/front.svg",
  4600. extra: 596 / 581
  4601. }
  4602. }
  4603. },
  4604. [
  4605. {
  4606. name: "Micro",
  4607. height: math.unit(6.85, "cm"),
  4608. default: true
  4609. },
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(1.69, "m")
  4613. }
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Juno" },
  4618. {
  4619. front: {
  4620. height: math.unit(1.69, "meters"),
  4621. weight: math.unit(68, "kg"),
  4622. name: "Front",
  4623. image: {
  4624. source: "./media/characters/juno/front.svg"
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Micro",
  4631. height: math.unit(7, "cm")
  4632. },
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(1.89, "m")
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(353, "meters"),
  4640. default: true
  4641. }
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Samantha" },
  4646. {
  4647. front: {
  4648. height: math.unit(1.93, "meters"),
  4649. weight: math.unit(83, "kg"),
  4650. name: "Front",
  4651. image: {
  4652. source: "./media/characters/samantha/front.svg"
  4653. }
  4654. },
  4655. frontClothed: {
  4656. height: math.unit(1.93, "meters"),
  4657. weight: math.unit(83, "kg"),
  4658. name: "Front (Clothed)",
  4659. image: {
  4660. source: "./media/characters/samantha/front-clothed.svg"
  4661. }
  4662. },
  4663. back: {
  4664. height: math.unit(1.93, "meters"),
  4665. weight: math.unit(83, "kg"),
  4666. name: "Back",
  4667. image: {
  4668. source: "./media/characters/samantha/back.svg"
  4669. }
  4670. },
  4671. },
  4672. [
  4673. {
  4674. name: "Normal",
  4675. height: math.unit(1.93, "m")
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(74, "meters"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Macro+",
  4684. height: math.unit(223, "meters"),
  4685. },
  4686. {
  4687. name: "Megamacro",
  4688. height: math.unit(8381, "meters"),
  4689. },
  4690. {
  4691. name: "Megamacro+",
  4692. height: math.unit(12000, "kilometers")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Dr. Clay" },
  4698. {
  4699. front: {
  4700. height: math.unit(1.92, "meters"),
  4701. weight: math.unit(80, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/dr-clay/front.svg"
  4705. }
  4706. },
  4707. frontClothed: {
  4708. height: math.unit(1.92, "meters"),
  4709. weight: math.unit(80, "kg"),
  4710. name: "Front (Clothed)",
  4711. image: {
  4712. source: "./media/characters/dr-clay/front-clothed.svg"
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(1.92, "m")
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(214, "meters"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Macro+",
  4728. height: math.unit(12.237, "meters"),
  4729. },
  4730. {
  4731. name: "Megamacro",
  4732. height: math.unit(557, "megameters"),
  4733. },
  4734. {
  4735. name: "Unimaginable",
  4736. height: math.unit(120e9, "lightyears")
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Wyvrn Ripsnarl" },
  4742. {
  4743. front: {
  4744. height: math.unit(2, "meters"),
  4745. weight: math.unit(80, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Teramacro",
  4755. height: math.unit(500000, "lightyears"),
  4756. default: true
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Vemus" },
  4762. {
  4763. front: {
  4764. height: math.unit(2, "meters"),
  4765. weight: math.unit(150, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/vemus/front.svg",
  4769. extra: 2384 / 2084,
  4770. bottom: 0.0123
  4771. }
  4772. }
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(3.75, "meters"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Big",
  4782. height: math.unit(8, "meters")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(100, "meters")
  4787. },
  4788. {
  4789. name: "Macro+",
  4790. height: math.unit(1500, "meters")
  4791. },
  4792. {
  4793. name: "Stellar",
  4794. height: math.unit(14e8, "meters")
  4795. },
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Beherit" },
  4800. {
  4801. front: {
  4802. height: math.unit(2, "meters"),
  4803. weight: math.unit(70, "kg"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/beherit/front.svg",
  4807. extra: 1408 / 1242
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(6, "feet")
  4815. },
  4816. {
  4817. name: "Lorg",
  4818. height: math.unit(25, "feet"),
  4819. default: true
  4820. },
  4821. {
  4822. name: "Lorger",
  4823. height: math.unit(75, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(200, "meters")
  4828. },
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Everett" },
  4833. {
  4834. front: {
  4835. height: math.unit(2, "meters"),
  4836. weight: math.unit(150, "kg"),
  4837. name: "Front",
  4838. image: {
  4839. source: "./media/characters/everett/front.svg",
  4840. extra: 2038 / 1737,
  4841. bottom: 0.03
  4842. }
  4843. },
  4844. paw: {
  4845. height: math.unit(2 / 3.6, "meters"),
  4846. name: "Paw",
  4847. image: {
  4848. source: "./media/characters/everett/paw.svg"
  4849. }
  4850. },
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(15, "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Lorg",
  4860. height: math.unit(70, "feet"),
  4861. default: true
  4862. },
  4863. {
  4864. name: "Lorger",
  4865. height: math.unit(250, "feet")
  4866. },
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(500, "meters")
  4870. },
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Rose Lion" },
  4875. {
  4876. front: {
  4877. height: math.unit(2, "meters"),
  4878. weight: math.unit(86, "kg"),
  4879. name: "Front",
  4880. image: {
  4881. source: "./media/characters/rose-lion/front.svg"
  4882. }
  4883. },
  4884. bent: {
  4885. height: math.unit(2 / 1.4288, "meters"),
  4886. weight: math.unit(86, "kg"),
  4887. name: "Bent",
  4888. image: {
  4889. source: "./media/characters/rose-lion/bent.svg"
  4890. }
  4891. }
  4892. },
  4893. [
  4894. {
  4895. name: "Mini-Micro",
  4896. height: math.unit(1, "cm")
  4897. },
  4898. {
  4899. name: "Micro",
  4900. height: math.unit(3.5, "inches"),
  4901. default: true
  4902. },
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(6 + 1 / 6, "feet")
  4906. },
  4907. {
  4908. name: "Mini-Macro",
  4909. height: math.unit(9 + 10 / 12, "feet")
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Regal" },
  4915. {
  4916. front: {
  4917. height: math.unit(2, "meters"),
  4918. weight: math.unit(350, "lbs"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/regal/front.svg"
  4922. }
  4923. },
  4924. back: {
  4925. height: math.unit(2, "meters"),
  4926. weight: math.unit(350, "lbs"),
  4927. name: "Back",
  4928. image: {
  4929. source: "./media/characters/regal/back.svg"
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(350, "feet"),
  4937. default: true
  4938. }
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Opal" },
  4943. {
  4944. front: {
  4945. height: math.unit(4 + 11 / 12, "feet"),
  4946. weight: math.unit(100, "lbs"),
  4947. name: "Front",
  4948. image: {
  4949. source: "./media/characters/opal/front.svg"
  4950. }
  4951. },
  4952. frontAlt: {
  4953. height: math.unit(4 + 11 / 12, "feet"),
  4954. weight: math.unit(100, "lbs"),
  4955. name: "Front (Alt)",
  4956. image: {
  4957. source: "./media/characters/opal/front-alt.svg"
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Small",
  4964. height: math.unit(4 + 11 / 12, "feet")
  4965. },
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(20, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Macro",
  4973. height: math.unit(120, "feet")
  4974. },
  4975. {
  4976. name: "Megamacro",
  4977. height: math.unit(80, "miles")
  4978. },
  4979. {
  4980. name: "True Size",
  4981. height: math.unit(100000, "lightyears")
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Vector Wuff" },
  4987. {
  4988. front: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(200, "lbs"),
  4991. name: "Front",
  4992. image: {
  4993. source: "./media/characters/vector-wuff/front.svg"
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(2.8, "meters")
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(450, "meters"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Megamacro",
  5009. height: math.unit(15, "kilometers")
  5010. }
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Dannik" },
  5015. {
  5016. front: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(256, "lbs"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/dannik/front.svg"
  5022. }
  5023. }
  5024. },
  5025. [
  5026. {
  5027. name: "Macro",
  5028. height: math.unit(69.57, "meters"),
  5029. default: true
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Azura Saharah" },
  5035. {
  5036. front: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(120, "lbs"),
  5039. name: "Front",
  5040. image: {
  5041. source: "./media/characters/azura-saharah/front.svg"
  5042. }
  5043. },
  5044. back: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(120, "lbs"),
  5047. name: "Back",
  5048. image: {
  5049. source: "./media/characters/azura-saharah/back.svg"
  5050. }
  5051. },
  5052. },
  5053. [
  5054. {
  5055. name: "Macro",
  5056. height: math.unit(100, "feet"),
  5057. default: true
  5058. },
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Kennedy" },
  5063. {
  5064. side: {
  5065. height: math.unit(5 + 4 / 12, "feet"),
  5066. weight: math.unit(163, "lbs"),
  5067. name: "Side",
  5068. image: {
  5069. source: "./media/characters/kennedy/side.svg"
  5070. }
  5071. }
  5072. },
  5073. [
  5074. {
  5075. name: "Standard Doggo",
  5076. height: math.unit(5 + 4 / 12, "feet")
  5077. },
  5078. {
  5079. name: "Big Doggo",
  5080. height: math.unit(25 + 3 / 12, "feet"),
  5081. default: true
  5082. },
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "Odi Lunar" },
  5087. {
  5088. front: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(90, "lbs"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/odi-lunar/front.svg"
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Micro",
  5100. height: math.unit(3, "inches"),
  5101. default: true
  5102. },
  5103. {
  5104. name: "Normal",
  5105. height: math.unit(5.5, "feet")
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Mandake" },
  5111. {
  5112. back: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(220, "lbs"),
  5115. name: "Back",
  5116. image: {
  5117. source: "./media/characters/mandake/back.svg"
  5118. }
  5119. }
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(7, "feet"),
  5125. default: true
  5126. },
  5127. {
  5128. name: "Macro",
  5129. height: math.unit(78, "feet")
  5130. },
  5131. {
  5132. name: "Macro+",
  5133. height: math.unit(300, "meters")
  5134. },
  5135. {
  5136. name: "Macro++",
  5137. height: math.unit(2400, "feet")
  5138. },
  5139. {
  5140. name: "Megamacro",
  5141. height: math.unit(5167, "meters")
  5142. },
  5143. {
  5144. name: "Gigamacro",
  5145. height: math.unit(41769, "miles")
  5146. },
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Yozey" },
  5151. {
  5152. front: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(120, "lbs"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/yozey/front.svg"
  5158. }
  5159. },
  5160. frontAlt: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(120, "lbs"),
  5163. name: "Front (Alt)",
  5164. image: {
  5165. source: "./media/characters/yozey/front-alt.svg"
  5166. }
  5167. },
  5168. side: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(120, "lbs"),
  5171. name: "Side",
  5172. image: {
  5173. source: "./media/characters/yozey/side.svg"
  5174. }
  5175. },
  5176. },
  5177. [
  5178. {
  5179. name: "Micro",
  5180. height: math.unit(3, "inches"),
  5181. default: true
  5182. },
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(6, "feet")
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Valeska Voss" },
  5191. {
  5192. front: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(103, "lbs"),
  5195. name: "Front",
  5196. image: {
  5197. source: "./media/characters/valeska-voss/front.svg"
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Mini-Sized Sub",
  5204. height: math.unit(3.1, "inches")
  5205. },
  5206. {
  5207. name: "Mid-Sized Sub",
  5208. height: math.unit(6.2, "inches")
  5209. },
  5210. {
  5211. name: "Full-Sized Sub",
  5212. height: math.unit(9.3, "inches")
  5213. },
  5214. {
  5215. name: "Normal",
  5216. height: math.unit(5 + 2 / 12, "foot"),
  5217. default: true
  5218. },
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Gene Zeta" },
  5223. {
  5224. front: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(160, "lbs"),
  5227. name: "Front",
  5228. image: {
  5229. source: "./media/characters/gene-zeta/front.svg",
  5230. bottom: 0.03,
  5231. extra: 1
  5232. }
  5233. }
  5234. },
  5235. [
  5236. {
  5237. name: "Normal",
  5238. height: math.unit(6.25, "foot"),
  5239. default: true
  5240. },
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Razinox" },
  5245. {
  5246. front: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(350, "lbs"),
  5249. name: "Front",
  5250. image: {
  5251. source: "./media/characters/razinox/front.svg",
  5252. extra: 1686 / 1548,
  5253. bottom: 28.2/1868
  5254. }
  5255. },
  5256. back: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(350, "lbs"),
  5259. name: "Back",
  5260. image: {
  5261. source: "./media/characters/razinox/back.svg",
  5262. extra: 1660 / 1590,
  5263. bottom: 15/1665
  5264. }
  5265. },
  5266. },
  5267. [
  5268. {
  5269. name: "Normal",
  5270. height: math.unit(10 + 8 / 12, "foot")
  5271. },
  5272. {
  5273. name: "Minimacro",
  5274. height: math.unit(15, "foot")
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(60, "foot"),
  5279. default: true
  5280. },
  5281. {
  5282. name: "Megamacro",
  5283. height: math.unit(5, "miles")
  5284. },
  5285. {
  5286. name: "Gigamacro",
  5287. height: math.unit(6000, "miles")
  5288. },
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Cobalt" },
  5293. {
  5294. front: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(150, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/cobalt/front.svg"
  5300. }
  5301. }
  5302. },
  5303. [
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(8 + 1 / 12, "foot")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(111, "foot"),
  5311. default: true
  5312. },
  5313. {
  5314. name: "Supracosmic",
  5315. height: math.unit(1e42, "feet")
  5316. },
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Amanda" },
  5321. {
  5322. front: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(140, "lbs"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/amanda/front.svg"
  5328. }
  5329. }
  5330. },
  5331. [
  5332. {
  5333. name: "Micro",
  5334. height: math.unit(5, "inches"),
  5335. default: true
  5336. },
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Teal" },
  5341. {
  5342. front: {
  5343. height: math.unit(5.59, "feet"),
  5344. weight: math.unit(250, "lbs"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/teal/front.svg"
  5348. }
  5349. },
  5350. frontAlt: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(250, "lbs"),
  5353. name: "Front (Alt)",
  5354. image: {
  5355. source: "./media/characters/teal/front-alt.svg",
  5356. bottom: 0.04,
  5357. extra: 1
  5358. }
  5359. },
  5360. },
  5361. [
  5362. {
  5363. name: "Normal",
  5364. height: math.unit(12, "feet"),
  5365. default: true
  5366. },
  5367. {
  5368. name: "Macro",
  5369. height: math.unit(300, "feet")
  5370. },
  5371. ]
  5372. ))
  5373. characterMakers.push(() => makeCharacter(
  5374. { name: "Ravin Amulet" },
  5375. {
  5376. frontCat: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(180, "lbs"),
  5379. name: "Front (Cat)",
  5380. image: {
  5381. source: "./media/characters/ravin-amulet/front-cat.svg"
  5382. }
  5383. },
  5384. frontCatAlt: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(180, "lbs"),
  5387. name: "Front (Alt, Cat)",
  5388. image: {
  5389. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5390. }
  5391. },
  5392. frontWerewolf: {
  5393. height: math.unit(6 * 1.2, "feet"),
  5394. weight: math.unit(225, "lbs"),
  5395. name: "Front (Werewolf)",
  5396. image: {
  5397. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5398. }
  5399. },
  5400. backWerewolf: {
  5401. height: math.unit(6 * 1.2, "feet"),
  5402. weight: math.unit(225, "lbs"),
  5403. name: "Back (Werewolf)",
  5404. image: {
  5405. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Nano",
  5412. height: math.unit(1, "micrometer")
  5413. },
  5414. {
  5415. name: "Micro",
  5416. height: math.unit(1, "inch")
  5417. },
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(6, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(60, "feet")
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Fluoresce" },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(165, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/fluoresce/front.svg"
  5438. }
  5439. }
  5440. },
  5441. [
  5442. {
  5443. name: "Micro",
  5444. height: math.unit(6, "cm")
  5445. },
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(5 + 7 / 12, "feet"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Macro",
  5453. height: math.unit(56, "feet")
  5454. },
  5455. {
  5456. name: "Megamacro",
  5457. height: math.unit(1.9, "miles")
  5458. },
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Aurora" },
  5463. {
  5464. front: {
  5465. height: math.unit(9 + 6 / 12, "feet"),
  5466. weight: math.unit(523, "lbs"),
  5467. name: "Side",
  5468. image: {
  5469. source: "./media/characters/aurora/side.svg"
  5470. }
  5471. }
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(9 + 6 / 12, "feet")
  5477. },
  5478. {
  5479. name: "Macro",
  5480. height: math.unit(96, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Macro+",
  5485. height: math.unit(243, "feet")
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Ranek" },
  5491. {
  5492. front: {
  5493. height: math.unit(194, "cm"),
  5494. weight: math.unit(90, "kg"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/ranek/front.svg"
  5498. }
  5499. },
  5500. side: {
  5501. height: math.unit(194, "cm"),
  5502. weight: math.unit(90, "kg"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/ranek/side.svg"
  5506. }
  5507. },
  5508. back: {
  5509. height: math.unit(194, "cm"),
  5510. weight: math.unit(90, "kg"),
  5511. name: "Back",
  5512. image: {
  5513. source: "./media/characters/ranek/back.svg"
  5514. }
  5515. },
  5516. feral: {
  5517. height: math.unit(30, "cm"),
  5518. weight: math.unit(1.6, "lbs"),
  5519. name: "Feral",
  5520. image: {
  5521. source: "./media/characters/ranek/feral.svg"
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(194, "cm"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Macro",
  5533. height: math.unit(100, "meters")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Andrew Cooper" },
  5539. {
  5540. front: {
  5541. height: math.unit(5 + 6 / 12, "feet"),
  5542. weight: math.unit(153, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/andrew-cooper/front.svg"
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Nano",
  5552. height: math.unit(1, "mm")
  5553. },
  5554. {
  5555. name: "Micro",
  5556. height: math.unit(2, "inches")
  5557. },
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(5 + 6 / 12, "feet"),
  5561. default: true
  5562. }
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Akane Sato" },
  5567. {
  5568. front: {
  5569. height: math.unit(6, "feet"),
  5570. weight: math.unit(180, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/akane-sato/front.svg",
  5574. extra: 1219 / 1140
  5575. }
  5576. },
  5577. back: {
  5578. height: math.unit(6, "feet"),
  5579. weight: math.unit(180, "lbs"),
  5580. name: "Back",
  5581. image: {
  5582. source: "./media/characters/akane-sato/back.svg",
  5583. extra: 1219 / 1170
  5584. }
  5585. },
  5586. },
  5587. [
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(2.5, "meters")
  5591. },
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(250, "meters"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(25, "km")
  5600. },
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Rook" },
  5605. {
  5606. front: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(65, "kg"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/rook/front.svg",
  5612. extra: 960/950
  5613. }
  5614. }
  5615. },
  5616. [
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(8.8, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(88, "feet"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(8, "miles")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Prodigy" },
  5634. {
  5635. front: {
  5636. height: math.unit(12 + 2 / 12, "feet"),
  5637. weight: math.unit(808, "lbs"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/prodigy/front.svg"
  5641. }
  5642. }
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(12 + 2 / 12, "feet"),
  5648. default: true
  5649. },
  5650. {
  5651. name: "Macro",
  5652. height: math.unit(143, "feet")
  5653. },
  5654. {
  5655. name: "Macro+",
  5656. height: math.unit(400, "feet")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Daniel" },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(225, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/daniel/front.svg"
  5669. }
  5670. },
  5671. leaning: {
  5672. height: math.unit(6, "feet"),
  5673. weight: math.unit(225, "lbs"),
  5674. name: "Leaning",
  5675. image: {
  5676. source: "./media/characters/daniel/leaning.svg"
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(1000, "feet"),
  5684. default: true
  5685. },
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Chiros" },
  5690. {
  5691. front: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(88, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/chiros/front.svg",
  5697. extra: 306 / 226
  5698. }
  5699. },
  5700. side: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(88, "lbs"),
  5703. name: "Side",
  5704. image: {
  5705. source: "./media/characters/chiros/side.svg",
  5706. extra: 306 / 226
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(6, "cm"),
  5714. default: true
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Selka" },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(100, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/selka/front.svg",
  5727. extra: 947 / 887
  5728. }
  5729. }
  5730. },
  5731. [
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(5, "cm"),
  5735. default: true
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Verin" },
  5741. {
  5742. front: {
  5743. height: math.unit(8 + 3 / 12, "feet"),
  5744. weight: math.unit(424, "lbs"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/verin/front.svg",
  5748. extra: 1845 / 1550
  5749. }
  5750. },
  5751. frontArmored: {
  5752. height: math.unit(8 + 3 / 12, "feet"),
  5753. weight: math.unit(424, "lbs"),
  5754. name: "Front (Armored)",
  5755. image: {
  5756. source: "./media/characters/verin/front-armor.svg",
  5757. extra: 1845 / 1550,
  5758. bottom: 0.01
  5759. }
  5760. },
  5761. back: {
  5762. height: math.unit(8 + 3 / 12, "feet"),
  5763. weight: math.unit(424, "lbs"),
  5764. name: "Back",
  5765. image: {
  5766. source: "./media/characters/verin/back.svg",
  5767. bottom: 0.1,
  5768. extra: 1
  5769. }
  5770. },
  5771. foot: {
  5772. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5773. name: "Foot",
  5774. image: {
  5775. source: "./media/characters/verin/foot.svg"
  5776. }
  5777. },
  5778. },
  5779. [
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(8 + 3 / 12, "feet")
  5783. },
  5784. {
  5785. name: "Minimacro",
  5786. height: math.unit(21, "feet"),
  5787. default: true
  5788. },
  5789. {
  5790. name: "Macro",
  5791. height: math.unit(626, "feet")
  5792. },
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Sovrim Terraquian" },
  5797. {
  5798. front: {
  5799. height: math.unit(2.718, "meters"),
  5800. weight: math.unit(150, "lbs"),
  5801. name: "Front",
  5802. image: {
  5803. source: "./media/characters/sovrim-terraquian/front.svg"
  5804. }
  5805. },
  5806. back: {
  5807. height: math.unit(2.718, "meters"),
  5808. weight: math.unit(150, "lbs"),
  5809. name: "Back",
  5810. image: {
  5811. source: "./media/characters/sovrim-terraquian/back.svg"
  5812. }
  5813. }
  5814. },
  5815. [
  5816. {
  5817. name: "Micro",
  5818. height: math.unit(2, "inches")
  5819. },
  5820. {
  5821. name: "Small",
  5822. height: math.unit(1, "meter")
  5823. },
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(Math.E, "meters"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Macro",
  5831. height: math.unit(20, "meters")
  5832. },
  5833. {
  5834. name: "Macro+",
  5835. height: math.unit(400, "meters")
  5836. },
  5837. ]
  5838. ))
  5839. characterMakers.push(() => makeCharacter(
  5840. { name: "Reece Silvermane" },
  5841. {
  5842. front: {
  5843. height: math.unit(7, "feet"),
  5844. weight: math.unit(489, "lbs"),
  5845. name: "Front",
  5846. image: {
  5847. source: "./media/characters/reece-silvermane/front.svg",
  5848. bottom: 0.02,
  5849. extra: 1
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(1.5, "miles"),
  5857. default: true
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Kane" },
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(78, "kg"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/kane/front.svg",
  5870. extra: 978 / 899
  5871. }
  5872. },
  5873. },
  5874. [
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(2.1, "m"),
  5878. },
  5879. {
  5880. name: "Macro",
  5881. height: math.unit(1, "km"),
  5882. default: true
  5883. },
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Tegon" },
  5888. {
  5889. front: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(200, "kg"),
  5892. name: "Front",
  5893. image: {
  5894. source: "./media/characters/tegon/front.svg",
  5895. bottom: 0.01,
  5896. extra: 1
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Micro",
  5903. height: math.unit(1, "inch")
  5904. },
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(6 + 3 / 12, "feet"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Macro",
  5912. height: math.unit(300, "feet")
  5913. },
  5914. {
  5915. name: "Megamacro",
  5916. height: math.unit(69, "miles")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Arcturax" },
  5922. {
  5923. side: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(2304, "lbs"),
  5926. name: "Side",
  5927. image: {
  5928. source: "./media/characters/arcturax/side.svg",
  5929. extra: 790 / 376,
  5930. bottom: 0.01
  5931. }
  5932. },
  5933. },
  5934. [
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(2, "inch")
  5938. },
  5939. {
  5940. name: "Normal",
  5941. height: math.unit(6, "feet")
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(39, "feet"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Megamacro",
  5950. height: math.unit(7, "miles")
  5951. },
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Sentri" },
  5956. {
  5957. front: {
  5958. height: math.unit(6, "feet"),
  5959. weight: math.unit(50, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/sentri/front.svg",
  5963. extra: 1750 / 1570,
  5964. bottom: 0.025
  5965. }
  5966. },
  5967. frontAlt: {
  5968. height: math.unit(6, "feet"),
  5969. weight: math.unit(50, "lbs"),
  5970. name: "Front (Alt)",
  5971. image: {
  5972. source: "./media/characters/sentri/front-alt.svg",
  5973. extra: 1750 / 1570,
  5974. bottom: 0.025
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Normal",
  5981. height: math.unit(15, "feet"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(2500, "feet")
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Corvin" },
  5992. {
  5993. front: {
  5994. height: math.unit(5 + 8 / 12, "feet"),
  5995. weight: math.unit(130, "lbs"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/corvin/front.svg",
  5999. extra: 1803 / 1629
  6000. }
  6001. },
  6002. frontShirt: {
  6003. height: math.unit(5 + 8 / 12, "feet"),
  6004. weight: math.unit(130, "lbs"),
  6005. name: "Front (Shirt)",
  6006. image: {
  6007. source: "./media/characters/corvin/front-shirt.svg",
  6008. extra: 1803 / 1629
  6009. }
  6010. },
  6011. frontPoncho: {
  6012. height: math.unit(5 + 8 / 12, "feet"),
  6013. weight: math.unit(130, "lbs"),
  6014. name: "Front (Poncho)",
  6015. image: {
  6016. source: "./media/characters/corvin/front-poncho.svg",
  6017. extra: 1803 / 1629
  6018. }
  6019. },
  6020. side: {
  6021. height: math.unit(5 + 8 / 12, "feet"),
  6022. weight: math.unit(130, "lbs"),
  6023. name: "Side",
  6024. image: {
  6025. source: "./media/characters/corvin/side.svg",
  6026. extra: 1012 / 945
  6027. }
  6028. },
  6029. back: {
  6030. height: math.unit(5 + 8 / 12, "feet"),
  6031. weight: math.unit(130, "lbs"),
  6032. name: "Back",
  6033. image: {
  6034. source: "./media/characters/corvin/back.svg",
  6035. extra: 1803 / 1629
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Micro",
  6042. height: math.unit(3, "inches")
  6043. },
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(5 + 8 / 12, "feet")
  6047. },
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(300, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Megamacro",
  6055. height: math.unit(500, "miles")
  6056. }
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Q" },
  6061. {
  6062. front: {
  6063. height: math.unit(6, "feet"),
  6064. weight: math.unit(135, "lbs"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/q/front.svg",
  6068. extra: 854 / 752,
  6069. bottom: 0.005
  6070. }
  6071. },
  6072. back: {
  6073. height: math.unit(6, "feet"),
  6074. weight: math.unit(130, "lbs"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/q/back.svg",
  6078. extra: 854 / 752
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Macro",
  6085. height: math.unit(90, "feet"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Extra Macro",
  6090. height: math.unit(300, "feet"),
  6091. },
  6092. {
  6093. name: "BIG WALF",
  6094. height: math.unit(750, "feet"),
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Carley" },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(150, "lbs"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/carley/front.svg",
  6107. extra: 3927 / 3540,
  6108. bottom: 0.03
  6109. }
  6110. }
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(6 + 3 / 12, "feet")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(185, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Megamacro",
  6124. height: math.unit(8, "miles"),
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Citrine" },
  6130. {
  6131. front: {
  6132. height: math.unit(3, "feet"),
  6133. weight: math.unit(28, "lbs"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/citrine/front.svg"
  6137. }
  6138. }
  6139. },
  6140. [
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(3, "feet"),
  6144. default: true
  6145. }
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Aura Starwind" },
  6150. {
  6151. front: {
  6152. height: math.unit(14, "feet"),
  6153. weight: math.unit(1450, "kg"),
  6154. capacity: math.unit(15, "people"),
  6155. name: "Front",
  6156. image: {
  6157. source: "./media/characters/aura-starwind/front.svg",
  6158. extra: 1455 / 1335
  6159. }
  6160. },
  6161. side: {
  6162. height: math.unit(14, "feet"),
  6163. weight: math.unit(1450, "kg"),
  6164. capacity: math.unit(15, "people"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/aura-starwind/side.svg",
  6168. extra: 1654 / 1497
  6169. }
  6170. },
  6171. taur: {
  6172. height: math.unit(18, "feet"),
  6173. weight: math.unit(5500, "kg"),
  6174. capacity: math.unit(50, "people"),
  6175. name: "Taur",
  6176. image: {
  6177. source: "./media/characters/aura-starwind/taur.svg",
  6178. extra: 1760 / 1650
  6179. }
  6180. },
  6181. feral: {
  6182. height: math.unit(46, "feet"),
  6183. weight: math.unit(25000, "kg"),
  6184. capacity: math.unit(120, "people"),
  6185. name: "Feral",
  6186. image: {
  6187. source: "./media/characters/aura-starwind/feral.svg"
  6188. }
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(14, "feet"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(50, "meters")
  6200. },
  6201. {
  6202. name: "Megamacro",
  6203. height: math.unit(5000, "meters")
  6204. },
  6205. {
  6206. name: "Gigamacro",
  6207. height: math.unit(100000, "kilometers")
  6208. },
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Rivet" },
  6213. {
  6214. front: {
  6215. height: math.unit(2 + 7 / 12, "feet"),
  6216. weight: math.unit(32, "lbs"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/rivet/front.svg",
  6220. extra: 1716 / 1658,
  6221. bottom: 0.03
  6222. }
  6223. },
  6224. foot: {
  6225. height: math.unit(0.551, "feet"),
  6226. name: "Rivet's Foot",
  6227. image: {
  6228. source: "./media/characters/rivet/foot.svg"
  6229. },
  6230. rename: true
  6231. }
  6232. },
  6233. [
  6234. {
  6235. name: "Micro",
  6236. height: math.unit(1.5, "inches"),
  6237. },
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(2 + 7 / 12, "feet"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Macro",
  6245. height: math.unit(85, "feet")
  6246. },
  6247. {
  6248. name: "Megamacro",
  6249. height: math.unit(2.2, "km")
  6250. }
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Coffee" },
  6255. {
  6256. front: {
  6257. height: math.unit(5 + 9 / 12, "feet"),
  6258. weight: math.unit(150, "lbs"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/coffee/front.svg",
  6262. extra: 3666 / 3032,
  6263. bottom: 0.04
  6264. }
  6265. },
  6266. foot: {
  6267. height: math.unit(1.29, "feet"),
  6268. name: "Foot",
  6269. image: {
  6270. source: "./media/characters/coffee/foot.svg"
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(2, "inches"),
  6278. },
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(5 + 9 / 12, "feet"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(800, "feet")
  6287. },
  6288. {
  6289. name: "Megamacro",
  6290. height: math.unit(25, "miles")
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Chari-Gal" },
  6296. {
  6297. front: {
  6298. height: math.unit(6, "feet"),
  6299. weight: math.unit(200, "lbs"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/chari-gal/front.svg",
  6303. extra: 1568 / 1385,
  6304. bottom: 0.047
  6305. }
  6306. },
  6307. gigantamax: {
  6308. height: math.unit(6 * 16, "feet"),
  6309. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6310. name: "Gigantamax",
  6311. image: {
  6312. source: "./media/characters/chari-gal/gigantamax.svg",
  6313. extra: 1124 / 888,
  6314. bottom: 0.03
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(5 + 7 / 12, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(200, "feet"),
  6326. default: true
  6327. }
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Nova" },
  6332. {
  6333. front: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(150, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/nova/front.svg",
  6339. extra: 5000 / 4722,
  6340. bottom: 0.02
  6341. }
  6342. }
  6343. },
  6344. [
  6345. {
  6346. name: "Micro-",
  6347. height: math.unit(0.8, "inches")
  6348. },
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(2, "inches"),
  6352. default: true
  6353. },
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Argent" },
  6358. {
  6359. front: {
  6360. height: math.unit(3 + 1 / 12, "feet"),
  6361. weight: math.unit(21.7, "lbs"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/argent/front.svg",
  6365. extra: 1565 / 1416,
  6366. bottom: 0.01
  6367. }
  6368. }
  6369. },
  6370. [
  6371. {
  6372. name: "Micro",
  6373. height: math.unit(2, "inches")
  6374. },
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(3 + 1 / 12, "feet"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(120, "feet")
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Mira al-Cul" },
  6388. {
  6389. lamp: {
  6390. height: math.unit(7 * 1559 / 989, "feet"),
  6391. name: "Magic Lamp",
  6392. image: {
  6393. source: "./media/characters/mira-al-cul/lamp.svg",
  6394. extra: 1617 / 1559
  6395. }
  6396. },
  6397. front: {
  6398. height: math.unit(7, "feet"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/mira-al-cul/front.svg",
  6402. extra: 1044 / 990
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Heavily Restricted",
  6409. height: math.unit(7 * 1559 / 989, "feet")
  6410. },
  6411. {
  6412. name: "Freshly Freed",
  6413. height: math.unit(50 * 1559 / 989, "feet")
  6414. },
  6415. {
  6416. name: "World Encompassing",
  6417. height: math.unit(10000 * 1559 / 989, "miles")
  6418. },
  6419. {
  6420. name: "Galactic",
  6421. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6422. },
  6423. {
  6424. name: "Palmed Universe",
  6425. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6426. default: true
  6427. },
  6428. {
  6429. name: "Multiversal Matriarch",
  6430. height: math.unit(8.87e10, "yottameters")
  6431. },
  6432. {
  6433. name: "Void Mother",
  6434. height: math.unit(3.14e110, "yottaparsecs")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Kuro-shi Uchū" },
  6440. {
  6441. front: {
  6442. height: math.unit(17 + 1 / 12, "feet"),
  6443. weight: math.unit(476.2 * 5, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/kuro-shi-uchū/front.svg",
  6447. extra: 2329 / 1835,
  6448. bottom: 0.02
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Micro",
  6455. height: math.unit(2, "inches")
  6456. },
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(12, "meters")
  6460. },
  6461. {
  6462. name: "Planetary",
  6463. height: math.unit(0.00929, "AU"),
  6464. default: true
  6465. },
  6466. {
  6467. name: "Universal",
  6468. height: math.unit(20, "gigaparsecs")
  6469. },
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Katherine" },
  6474. {
  6475. front: {
  6476. height: math.unit(5 + 2 / 12, "feet"),
  6477. weight: math.unit(120, "lbs"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/katherine/front.svg",
  6481. extra: 2075 / 1969
  6482. }
  6483. },
  6484. dress: {
  6485. height: math.unit(5 + 2 / 12, "feet"),
  6486. weight: math.unit(120, "lbs"),
  6487. name: "Dress",
  6488. image: {
  6489. source: "./media/characters/katherine/dress.svg",
  6490. extra: 2258 / 2064
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Micro",
  6497. height: math.unit(1, "inches"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(5 + 2 / 12, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(100, "meters")
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(80, "miles")
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Yevis" },
  6516. {
  6517. front: {
  6518. height: math.unit(7 + 8 / 12, "feet"),
  6519. weight: math.unit(250, "lbs"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/yevis/front.svg",
  6523. extra: 1938 / 1755
  6524. }
  6525. }
  6526. },
  6527. [
  6528. {
  6529. name: "Mortal",
  6530. height: math.unit(7 + 8 / 12, "feet")
  6531. },
  6532. {
  6533. name: "Battle",
  6534. height: math.unit(25 + 11 / 12, "feet")
  6535. },
  6536. {
  6537. name: "Wrath",
  6538. height: math.unit(1654 + 11 / 12, "feet")
  6539. },
  6540. {
  6541. name: "Planet Destroyer",
  6542. height: math.unit(12000, "miles")
  6543. },
  6544. {
  6545. name: "Galaxy Conqueror",
  6546. height: math.unit(1.45, "zettameters"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Universal War",
  6551. height: math.unit(184, "gigaparsecs")
  6552. },
  6553. {
  6554. name: "Eternity War",
  6555. height: math.unit(1.98e55, "yottaparsecs")
  6556. },
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Xavier" },
  6561. {
  6562. front: {
  6563. height: math.unit(5 + 8 / 12, "feet"),
  6564. weight: math.unit(63, "kg"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/xavier/front.svg",
  6568. extra: 944 / 883
  6569. }
  6570. },
  6571. frontStretch: {
  6572. height: math.unit(5 + 8 / 12, "feet"),
  6573. weight: math.unit(63, "kg"),
  6574. name: "Stretching",
  6575. image: {
  6576. source: "./media/characters/xavier/front-stretch.svg",
  6577. extra: 962 / 820
  6578. }
  6579. },
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(5 + 8 / 12, "feet")
  6585. },
  6586. {
  6587. name: "Macro",
  6588. height: math.unit(100, "meters"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "McLargeHuge",
  6593. height: math.unit(10, "miles")
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Joshii" },
  6599. {
  6600. front: {
  6601. height: math.unit(5 + 5 / 12, "feet"),
  6602. weight: math.unit(150, "lb"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/joshii/front.svg"
  6606. }
  6607. },
  6608. foot: {
  6609. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6610. name: "Foot",
  6611. image: {
  6612. source: "./media/characters/joshii/foot.svg"
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Micro",
  6619. height: math.unit(2, "inches")
  6620. },
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(5 + 5 / 12, "feet"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(785, "feet")
  6629. },
  6630. {
  6631. name: "Megamacro",
  6632. height: math.unit(24.5, "miles")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Goddess Elizabeth" },
  6638. {
  6639. front: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(150, "lb"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/goddess-elizabeth/front.svg",
  6645. extra: 1800 / 1525,
  6646. bottom: 0.005
  6647. }
  6648. },
  6649. foot: {
  6650. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6651. name: "Foot",
  6652. image: {
  6653. source: "./media/characters/goddess-elizabeth/foot.svg"
  6654. }
  6655. },
  6656. mouth: {
  6657. height: math.unit(6, "feet"),
  6658. name: "Mouth",
  6659. image: {
  6660. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Micro",
  6667. height: math.unit(12, "feet")
  6668. },
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(80, "miles"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(15000, "parsecs")
  6677. },
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Kara" },
  6682. {
  6683. front: {
  6684. height: math.unit(5 + 9 / 12, "feet"),
  6685. weight: math.unit(144, "lb"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/kara/front.svg"
  6689. }
  6690. },
  6691. feet: {
  6692. height: math.unit(6 / 6.765, "feet"),
  6693. name: "Kara's Feet",
  6694. rename: true,
  6695. image: {
  6696. source: "./media/characters/kara/feet.svg"
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(5 + 9 / 12, "feet")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(174, "feet"),
  6708. default: true
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Tyrone" },
  6714. {
  6715. front: {
  6716. height: math.unit(18, "feet"),
  6717. weight: math.unit(4050, "lb"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/tyrone/front.svg",
  6721. extra: 2520 / 2402,
  6722. bottom: 0.025
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(18, "feet"),
  6730. default: true
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(300, "feet")
  6735. },
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Danny" },
  6740. {
  6741. front: {
  6742. height: math.unit(7 + 8 / 12, "feet"),
  6743. weight: math.unit(120, "lb"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/danny/front.svg",
  6747. extra: 1490 / 1350
  6748. }
  6749. },
  6750. back: {
  6751. height: math.unit(7 + 8 / 12, "feet"),
  6752. weight: math.unit(120, "lb"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/danny/back.svg",
  6756. extra: 1490 / 1350
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(7 + 8 / 12, "feet"),
  6764. default: true
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Mallow" },
  6770. {
  6771. front: {
  6772. height: math.unit(3.5, "inches"),
  6773. weight: math.unit(19, "grams"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/mallow/front.svg",
  6777. extra: 471 / 431
  6778. }
  6779. },
  6780. back: {
  6781. height: math.unit(3.5, "inches"),
  6782. weight: math.unit(19, "grams"),
  6783. name: "Back",
  6784. image: {
  6785. source: "./media/characters/mallow/back.svg",
  6786. extra: 471 / 431
  6787. }
  6788. },
  6789. },
  6790. [
  6791. {
  6792. name: "Normal",
  6793. height: math.unit(3.5, "inches"),
  6794. default: true
  6795. },
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Starry Aqua" },
  6800. {
  6801. front: {
  6802. height: math.unit(9, "feet"),
  6803. weight: math.unit(230, "kg"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/starry-aqua/front.svg"
  6807. }
  6808. },
  6809. back: {
  6810. height: math.unit(9, "feet"),
  6811. weight: math.unit(230, "kg"),
  6812. name: "Back",
  6813. image: {
  6814. source: "./media/characters/starry-aqua/back.svg"
  6815. }
  6816. },
  6817. hand: {
  6818. height: math.unit(9 * 0.1168, "feet"),
  6819. name: "Hand",
  6820. image: {
  6821. source: "./media/characters/starry-aqua/hand.svg"
  6822. }
  6823. },
  6824. foot: {
  6825. height: math.unit(9 * 0.18, "feet"),
  6826. name: "Foot",
  6827. image: {
  6828. source: "./media/characters/starry-aqua/foot.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(3, "inches")
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(9, "feet")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(300, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Megamacro",
  6848. height: math.unit(3200, "feet")
  6849. }
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Luka" },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(230, "lb"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/luka/front.svg",
  6861. extra: 1,
  6862. bottom: 0.025
  6863. }
  6864. },
  6865. },
  6866. [
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(12 + 8 / 12, "feet"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Minimacro",
  6874. height: math.unit(20, "feet")
  6875. },
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(250, "feet")
  6879. },
  6880. {
  6881. name: "Megamacro",
  6882. height: math.unit(5, "miles")
  6883. },
  6884. {
  6885. name: "Gigamacro",
  6886. height: math.unit(8000, "miles")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Natalie Nightring" },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(150, "lb"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/natalie-nightring/front.svg",
  6899. extra: 1,
  6900. bottom: 0.06
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "Uh Oh",
  6907. height: math.unit(0.1, "mm")
  6908. },
  6909. {
  6910. name: "Small",
  6911. height: math.unit(3, "inches")
  6912. },
  6913. {
  6914. name: "Human Scale",
  6915. height: math.unit(6, "feet")
  6916. },
  6917. {
  6918. name: "Librarian",
  6919. height: math.unit(50, "feet"),
  6920. default: true
  6921. },
  6922. {
  6923. name: "Immense",
  6924. height: math.unit(200, "miles")
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Danni Rosie" },
  6930. {
  6931. front: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(180, "lbs"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/danni-rosie/front.svg",
  6937. extra: 1260 / 1128,
  6938. bottom: 0.022
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "Micro",
  6945. height: math.unit(2, "inches"),
  6946. default: true
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Samantha Kruse" },
  6952. {
  6953. front: {
  6954. height: math.unit(5 + 9 / 12, "feet"),
  6955. weight: math.unit(220, "lb"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/samantha-kruse/front.svg",
  6959. extra: (985 / 935),
  6960. bottom: 0.03
  6961. }
  6962. },
  6963. frontUndressed: {
  6964. height: math.unit(5 + 9 / 12, "feet"),
  6965. weight: math.unit(220, "lb"),
  6966. name: "Front (Undressed)",
  6967. image: {
  6968. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6969. extra: (973 / 923),
  6970. bottom: 0.025
  6971. }
  6972. },
  6973. fat: {
  6974. height: math.unit(5 + 9 / 12, "feet"),
  6975. weight: math.unit(900, "lb"),
  6976. name: "Front (Fat)",
  6977. image: {
  6978. source: "./media/characters/samantha-kruse/fat.svg",
  6979. extra: 2688 / 2561
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(5 + 9 / 12, "feet"),
  6987. default: true
  6988. }
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Amelia Rosie" },
  6993. {
  6994. back: {
  6995. height: math.unit(5 + 4 / 12, "feet"),
  6996. weight: math.unit(4963, "lb"),
  6997. name: "Back",
  6998. image: {
  6999. source: "./media/characters/amelia-rosie/back.svg",
  7000. extra: 1113 / 963,
  7001. bottom: 0.01
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Level 0",
  7008. height: math.unit(5 + 4 / 12, "feet")
  7009. },
  7010. {
  7011. name: "Level 1",
  7012. height: math.unit(164597, "feet"),
  7013. default: true
  7014. },
  7015. {
  7016. name: "Level 2",
  7017. height: math.unit(956243, "miles")
  7018. },
  7019. {
  7020. name: "Level 3",
  7021. height: math.unit(29421709423, "miles")
  7022. },
  7023. {
  7024. name: "Level 4",
  7025. height: math.unit(154, "lightyears")
  7026. },
  7027. {
  7028. name: "Level 5",
  7029. height: math.unit(4738272, "lightyears")
  7030. },
  7031. {
  7032. name: "Level 6",
  7033. height: math.unit(145787152896, "lightyears")
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Rook Kitara" },
  7039. {
  7040. front: {
  7041. height: math.unit(5 + 11 / 12, "feet"),
  7042. weight: math.unit(65, "kg"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/rook-kitara/front.svg",
  7046. extra: 1347 / 1274,
  7047. bottom: 0.005
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Totally Unfair",
  7054. height: math.unit(1.8, "mm")
  7055. },
  7056. {
  7057. name: "Lap Rookie",
  7058. height: math.unit(1.4, "feet")
  7059. },
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(5 + 11 / 12, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "How Did This Happen",
  7067. height: math.unit(80, "miles")
  7068. }
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Pisces" },
  7073. {
  7074. front: {
  7075. height: math.unit(7, "feet"),
  7076. weight: math.unit(300, "lb"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/pisces/front.svg",
  7080. extra: 2255 / 2115,
  7081. bottom: 0.03
  7082. }
  7083. },
  7084. back: {
  7085. height: math.unit(7, "feet"),
  7086. weight: math.unit(300, "lb"),
  7087. name: "Back",
  7088. image: {
  7089. source: "./media/characters/pisces/back.svg",
  7090. extra: 2146 / 2055,
  7091. bottom: 0.04
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(7, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Swimming Pool",
  7103. height: math.unit(12.2, "meters")
  7104. },
  7105. {
  7106. name: "Olympic Swimming Pool",
  7107. height: math.unit(56.3, "meters")
  7108. },
  7109. {
  7110. name: "Lake Superior",
  7111. height: math.unit(93900, "meters")
  7112. },
  7113. {
  7114. name: "Mediterranean Sea",
  7115. height: math.unit(644457, "meters")
  7116. },
  7117. {
  7118. name: "World's Oceans",
  7119. height: math.unit(4567491, "meters")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Zelas" },
  7125. {
  7126. front: {
  7127. height: math.unit(2.3, "meters"),
  7128. weight: math.unit(120, "kg"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/zelas/front.svg"
  7132. }
  7133. },
  7134. side: {
  7135. height: math.unit(2.3, "meters"),
  7136. weight: math.unit(120, "kg"),
  7137. name: "Side",
  7138. image: {
  7139. source: "./media/characters/zelas/side.svg"
  7140. }
  7141. },
  7142. back: {
  7143. height: math.unit(2.3, "meters"),
  7144. weight: math.unit(120, "kg"),
  7145. name: "Back",
  7146. image: {
  7147. source: "./media/characters/zelas/back.svg"
  7148. }
  7149. },
  7150. foot: {
  7151. height: math.unit(1.116, "feet"),
  7152. name: "Foot",
  7153. image: {
  7154. source: "./media/characters/zelas/foot.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(2.3, "meters")
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(30, "meters"),
  7166. default: true
  7167. },
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Talbot" },
  7172. {
  7173. front: {
  7174. height: math.unit(1, "inch"),
  7175. weight: math.unit(0.21, "grams"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/talbot/front.svg",
  7179. extra: 594 / 544
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Micro",
  7186. height: math.unit(1, "inch"),
  7187. default: true
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Fliss" },
  7193. {
  7194. front: {
  7195. height: math.unit(3 + 3 / 12, "feet"),
  7196. weight: math.unit(51.8, "lb"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/fliss/front.svg",
  7200. extra: 840 / 640
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Teeny Tiny",
  7207. height: math.unit(1, "mm")
  7208. },
  7209. {
  7210. name: "Small",
  7211. height: math.unit(1, "inch"),
  7212. default: true
  7213. },
  7214. {
  7215. name: "Standard Sylveon",
  7216. height: math.unit(3 + 3 / 12, "feet")
  7217. },
  7218. {
  7219. name: "Large Nuisance",
  7220. height: math.unit(33, "feet")
  7221. },
  7222. {
  7223. name: "City Filler",
  7224. height: math.unit(3000, "feet")
  7225. },
  7226. {
  7227. name: "New Horizon",
  7228. height: math.unit(6000, "miles")
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Fleta" },
  7234. {
  7235. front: {
  7236. height: math.unit(5, "cm"),
  7237. weight: math.unit(1.94, "g"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/fleta/front.svg",
  7241. extra: 835 / 803
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(5, "cm"),
  7246. weight: math.unit(1.94, "g"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/fleta/back.svg",
  7250. extra: 835 / 803
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Micro",
  7257. height: math.unit(5, "cm"),
  7258. default: true
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Dominic" },
  7264. {
  7265. front: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(225, "lb"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/dominic/front.svg",
  7271. extra: 1770 / 1620,
  7272. bottom: 0.025
  7273. }
  7274. },
  7275. back: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(225, "lb"),
  7278. name: "Back",
  7279. image: {
  7280. source: "./media/characters/dominic/back.svg",
  7281. extra: 1745 / 1620,
  7282. bottom: 0.065
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Nano",
  7289. height: math.unit(0.1, "mm")
  7290. },
  7291. {
  7292. name: "Micro-",
  7293. height: math.unit(1, "mm")
  7294. },
  7295. {
  7296. name: "Micro",
  7297. height: math.unit(4, "inches")
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(6 + 4 / 12, "feet"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(115, "feet")
  7307. },
  7308. {
  7309. name: "Macro+",
  7310. height: math.unit(955, "feet")
  7311. },
  7312. {
  7313. name: "Megamacro",
  7314. height: math.unit(8990, "feet")
  7315. },
  7316. {
  7317. name: "Gigmacro",
  7318. height: math.unit(9310, "miles")
  7319. },
  7320. {
  7321. name: "Teramacro",
  7322. height: math.unit(1567005010, "miles")
  7323. },
  7324. {
  7325. name: "Examacro",
  7326. height: math.unit(1425, "parsecs")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Major Colonel" },
  7332. {
  7333. front: {
  7334. height: math.unit(400, "feet"),
  7335. weight: math.unit(44444444, "lb"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/major-colonel/front.svg"
  7339. }
  7340. },
  7341. back: {
  7342. height: math.unit(400, "feet"),
  7343. weight: math.unit(44444444, "lb"),
  7344. name: "Back",
  7345. image: {
  7346. source: "./media/characters/major-colonel/back.svg"
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Macro",
  7353. height: math.unit(400, "feet"),
  7354. default: true
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Axel Lycan" },
  7360. {
  7361. front: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(120, "lb"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/axel-lycan/front.svg",
  7367. extra: 1,
  7368. bottom: 0.08
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(1, "km"),
  7376. default: true
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Vanrel (Hyena)" },
  7382. {
  7383. front: {
  7384. height: math.unit(5 + 9 / 12, "feet"),
  7385. weight: math.unit(175, "lb"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/vanrel-hyena/front.svg",
  7389. extra: 1086 / 1010,
  7390. bottom: 0.04
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(5 + 9 / 12, "feet"),
  7398. default: true
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Abbott Absol" },
  7404. {
  7405. front: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(103, "lb"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/abbott-absol/front.svg",
  7411. extra: 2010 / 1842
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Megamicro",
  7418. height: math.unit(0.1, "mm")
  7419. },
  7420. {
  7421. name: "Micro",
  7422. height: math.unit(1, "inch")
  7423. },
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(6, "feet"),
  7427. default: true
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Hector" },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(264, "lb"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/hector/front.svg",
  7440. extra: 2280 / 2130,
  7441. bottom: 0.07
  7442. }
  7443. },
  7444. },
  7445. [
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(12.25, "foot"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(160, "feet")
  7454. },
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Sal" },
  7459. {
  7460. front: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(150, "lb"),
  7463. name: "Front",
  7464. image: {
  7465. source: "./media/characters/sal/front.svg",
  7466. extra: 1846 / 1699,
  7467. bottom: 0.04
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Megamacro",
  7474. height: math.unit(10, "miles"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Ranger" },
  7481. {
  7482. front: {
  7483. height: math.unit(3, "meters"),
  7484. weight: math.unit(450, "kg"),
  7485. name: "front",
  7486. image: {
  7487. source: "./media/characters/ranger/front.svg",
  7488. extra: 2401 / 2243,
  7489. bottom: 0.05
  7490. }
  7491. },
  7492. },
  7493. [
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(3, "meters"),
  7497. default: true
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Theresa" },
  7503. {
  7504. front: {
  7505. height: math.unit(14, "feet"),
  7506. weight: math.unit(800, "kg"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/theresa/front.svg",
  7510. extra: 3575 / 3346,
  7511. bottom: 0.03
  7512. }
  7513. },
  7514. },
  7515. [
  7516. {
  7517. name: "Normal",
  7518. height: math.unit(14, "feet"),
  7519. default: true
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Ine" },
  7525. {
  7526. front: {
  7527. height: math.unit(6, "feet"),
  7528. weight: math.unit(3, "kg"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/ine/front.svg",
  7532. extra: 678 / 539,
  7533. bottom: 0.023
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(2.265, "feet"),
  7541. default: true
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Vial" },
  7547. {
  7548. front: {
  7549. height: math.unit(5, "feet"),
  7550. weight: math.unit(30, "kg"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/vial/front.svg",
  7554. extra: 1365 / 1277,
  7555. bottom: 0.04
  7556. }
  7557. },
  7558. },
  7559. [
  7560. {
  7561. name: "Normal",
  7562. height: math.unit(5, "feet"),
  7563. default: true
  7564. },
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Rovoska" },
  7569. {
  7570. side: {
  7571. height: math.unit(3.4, "meters"),
  7572. weight: math.unit(1000, "lb"),
  7573. name: "Side",
  7574. image: {
  7575. source: "./media/characters/rovoska/side.svg",
  7576. extra: 4403 / 1515
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(3.4, "meters"),
  7584. default: true
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Gunner Rotthbauer" },
  7590. {
  7591. front: {
  7592. height: math.unit(8, "feet"),
  7593. weight: math.unit(315, "lb"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/gunner-rotthbauer/front.svg"
  7597. }
  7598. },
  7599. back: {
  7600. height: math.unit(8, "feet"),
  7601. weight: math.unit(315, "lb"),
  7602. name: "Back",
  7603. image: {
  7604. source: "./media/characters/gunner-rotthbauer/back.svg"
  7605. }
  7606. },
  7607. },
  7608. [
  7609. {
  7610. name: "Micro",
  7611. height: math.unit(3.5, "inches")
  7612. },
  7613. {
  7614. name: "Normal",
  7615. height: math.unit(8, "feet"),
  7616. default: true
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(250, "feet")
  7621. },
  7622. {
  7623. name: "Megamacro",
  7624. height: math.unit(1, "AU")
  7625. },
  7626. ]
  7627. ))
  7628. characterMakers.push(() => makeCharacter(
  7629. { name: "Allatia" },
  7630. {
  7631. front: {
  7632. height: math.unit(5 + 5 / 12, "feet"),
  7633. weight: math.unit(140, "lb"),
  7634. name: "Front",
  7635. image: {
  7636. source: "./media/characters/allatia/front.svg",
  7637. extra: 1227 / 1180,
  7638. bottom: 0.027
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(5 + 5 / 12, "feet")
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(250, "feet"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(8, "miles")
  7655. }
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Tene" },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(120, "lb"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/tene/front.svg",
  7667. extra: 1728 / 1578,
  7668. bottom: 0.022
  7669. }
  7670. },
  7671. stomping: {
  7672. height: math.unit(2.025, "meters"),
  7673. weight: math.unit(120, "lb"),
  7674. name: "Stomping",
  7675. image: {
  7676. source: "./media/characters/tene/stomping.svg",
  7677. extra: 938 / 873,
  7678. bottom: 0.01
  7679. }
  7680. },
  7681. sitting: {
  7682. height: math.unit(1, "meter"),
  7683. weight: math.unit(120, "lb"),
  7684. name: "Sitting",
  7685. image: {
  7686. source: "./media/characters/tene/sitting.svg",
  7687. extra: 437 / 415,
  7688. bottom: 0.1
  7689. }
  7690. },
  7691. feral: {
  7692. height: math.unit(3.9, "feet"),
  7693. weight: math.unit(250, "lb"),
  7694. name: "Feral",
  7695. image: {
  7696. source: "./media/characters/tene/feral.svg",
  7697. extra: 717 / 458,
  7698. bottom: 0.179
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(6, "feet")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(300, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(5, "miles")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Evander" },
  7720. {
  7721. side: {
  7722. height: math.unit(6, "feet"),
  7723. name: "Side",
  7724. image: {
  7725. source: "./media/characters/evander/side.svg",
  7726. extra: 877 / 477
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(0.83, "meters"),
  7734. default: true
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7740. {
  7741. front: {
  7742. height: math.unit(12, "feet"),
  7743. weight: math.unit(1000, "lb"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7747. extra: 1762 / 1611
  7748. }
  7749. },
  7750. back: {
  7751. height: math.unit(12, "feet"),
  7752. weight: math.unit(1000, "lb"),
  7753. name: "Back",
  7754. image: {
  7755. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7756. extra: 1762 / 1611
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(12, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Kaiju",
  7768. height: math.unit(150, "feet")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Zero Alurus" },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(150, "lb"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/zero-alurus/front.svg"
  7781. }
  7782. },
  7783. back: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(150, "lb"),
  7786. name: "Back",
  7787. image: {
  7788. source: "./media/characters/zero-alurus/back.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(5 + 10 / 12, "feet")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(60, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro+",
  7804. height: math.unit(450, "feet")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Mega Shi" },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(200, "lb"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/mega-shi/front.svg",
  7817. extra: 1279 / 1250,
  7818. bottom: 0.02
  7819. }
  7820. },
  7821. back: {
  7822. height: math.unit(6, "feet"),
  7823. weight: math.unit(200, "lb"),
  7824. name: "Back",
  7825. image: {
  7826. source: "./media/characters/mega-shi/back.svg",
  7827. extra: 1279 / 1250,
  7828. bottom: 0.02
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(16 + 6 / 12, "feet")
  7836. },
  7837. {
  7838. name: "Third Dimension",
  7839. height: math.unit(40, "meters")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(660, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(10, "miles")
  7849. },
  7850. {
  7851. name: "Planetary Launch",
  7852. height: math.unit(500, "miles")
  7853. },
  7854. {
  7855. name: "Interstellar",
  7856. height: math.unit(1e9, "miles")
  7857. },
  7858. {
  7859. name: "Leaving the Universe",
  7860. height: math.unit(1, "gigaparsec")
  7861. },
  7862. {
  7863. name: "Travelling Universes",
  7864. height: math.unit(30e15, "parsecs")
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Odyssey" },
  7870. {
  7871. front: {
  7872. height: math.unit(6, "feet"),
  7873. weight: math.unit(150, "lb"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/odyssey/front.svg",
  7877. extra: 1782 / 1582,
  7878. bottom: 0.01
  7879. }
  7880. },
  7881. side: {
  7882. height: math.unit(5.7, "feet"),
  7883. weight: math.unit(140, "lb"),
  7884. name: "Side",
  7885. image: {
  7886. source: "./media/characters/odyssey/side.svg",
  7887. extra: 6462 / 5700
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(5 + 4 / 12, "feet")
  7895. },
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(1, "km")
  7899. },
  7900. {
  7901. name: "Megamacro",
  7902. height: math.unit(3000, "km")
  7903. },
  7904. {
  7905. name: "Gigamacro",
  7906. height: math.unit(1, "AU"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Omniversal",
  7911. height: math.unit(100e14, "lightyears")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Mekuto" },
  7917. {
  7918. front: {
  7919. height: math.unit(6, "feet"),
  7920. weight: math.unit(300, "lb"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/mekuto/front.svg",
  7924. extra: 921 / 832,
  7925. bottom: 0.03
  7926. }
  7927. },
  7928. hand: {
  7929. height: math.unit(6 / 10.24, "feet"),
  7930. name: "Hand",
  7931. image: {
  7932. source: "./media/characters/mekuto/hand.svg"
  7933. }
  7934. },
  7935. foot: {
  7936. height: math.unit(6 / 5.05, "feet"),
  7937. name: "Foot",
  7938. image: {
  7939. source: "./media/characters/mekuto/foot.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Minimicro",
  7946. height: math.unit(0.2, "inches")
  7947. },
  7948. {
  7949. name: "Micro",
  7950. height: math.unit(1.5, "inches")
  7951. },
  7952. {
  7953. name: "Normal",
  7954. height: math.unit(5 + 11 / 12, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Minimacro",
  7959. height: math.unit(17 + 9 / 12, "feet")
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(177.5, "feet")
  7964. },
  7965. {
  7966. name: "Megamacro",
  7967. height: math.unit(152, "miles")
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Dafydd Tomos" },
  7973. {
  7974. front: {
  7975. height: math.unit(6.5, "inches"),
  7976. weight: math.unit(13, "oz"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/dafydd-tomos/front.svg",
  7980. extra: 2990 / 2603,
  7981. bottom: 0.03
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Micro",
  7988. height: math.unit(6.5, "inches"),
  7989. default: true
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Splinter" },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(150, "lb"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/splinter/front.svg",
  8002. extra: 2990 / 2882,
  8003. bottom: 0.04
  8004. }
  8005. },
  8006. back: {
  8007. height: math.unit(6, "feet"),
  8008. weight: math.unit(150, "lb"),
  8009. name: "Back",
  8010. image: {
  8011. source: "./media/characters/splinter/back.svg",
  8012. extra: 2990 / 2882,
  8013. bottom: 0.04
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(6, "feet")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(230, "meters"),
  8025. default: true
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "SnowGabumon" },
  8031. {
  8032. front: {
  8033. height: math.unit(4 + 10 / 12, "feet"),
  8034. weight: math.unit(480, "lb"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/snow-gabumon/front.svg",
  8038. extra: 1140 / 963,
  8039. bottom: 0.058
  8040. }
  8041. },
  8042. back: {
  8043. height: math.unit(4 + 10 / 12, "feet"),
  8044. weight: math.unit(480, "lb"),
  8045. name: "Back",
  8046. image: {
  8047. source: "./media/characters/snow-gabumon/back.svg",
  8048. extra: 1115 / 962,
  8049. bottom: 0.041
  8050. }
  8051. },
  8052. frontUndresed: {
  8053. height: math.unit(4 + 10 / 12, "feet"),
  8054. weight: math.unit(480, "lb"),
  8055. name: "Front (Undressed)",
  8056. image: {
  8057. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8058. extra: 1061 / 960,
  8059. bottom: 0.045
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Micro",
  8066. height: math.unit(1, "inch")
  8067. },
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(4 + 10 / 12, "feet"),
  8071. default: true
  8072. },
  8073. {
  8074. name: "Macro",
  8075. height: math.unit(200, "feet")
  8076. },
  8077. {
  8078. name: "Megamacro",
  8079. height: math.unit(120, "miles")
  8080. },
  8081. {
  8082. name: "Gigamacro",
  8083. height: math.unit(9800, "miles")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Moody" },
  8089. {
  8090. front: {
  8091. height: math.unit(1.7, "meters"),
  8092. weight: math.unit(140, "lb"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/moody/front.svg",
  8096. extra: 3226 / 3007,
  8097. bottom: 0.087
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Micro",
  8104. height: math.unit(1, "mm")
  8105. },
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(1.7, "meters"),
  8109. default: true
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(80, "meters")
  8114. },
  8115. {
  8116. name: "Macro+",
  8117. height: math.unit(500, "meters")
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Zyas" },
  8123. {
  8124. front: {
  8125. height: math.unit(6, "feet"),
  8126. weight: math.unit(150, "lb"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/zyas/front.svg",
  8130. extra: 1180 / 1120,
  8131. bottom: 0.045
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(10, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Macro",
  8143. height: math.unit(500, "feet")
  8144. },
  8145. {
  8146. name: "Megamacro",
  8147. height: math.unit(5, "miles")
  8148. },
  8149. {
  8150. name: "Teramacro",
  8151. height: math.unit(150000, "miles")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Cuon" },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(150, "lb"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/cuon/front.svg",
  8164. extra: 1390 / 1320,
  8165. bottom: 0.008
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Micro",
  8172. height: math.unit(3, "inches")
  8173. },
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(18 + 9 / 12, "feet"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(360, "feet")
  8182. },
  8183. {
  8184. name: "Megamacro",
  8185. height: math.unit(360, "miles")
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Nyanuxk" },
  8191. {
  8192. front: {
  8193. height: math.unit(2.4, "meters"),
  8194. weight: math.unit(70, "kg"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/nyanuxk/front.svg",
  8198. extra: 1172 / 1084,
  8199. bottom: 0.065
  8200. }
  8201. },
  8202. side: {
  8203. height: math.unit(2.4, "meters"),
  8204. weight: math.unit(70, "kg"),
  8205. name: "Side",
  8206. image: {
  8207. source: "./media/characters/nyanuxk/side.svg",
  8208. extra: 1190 / 1132,
  8209. bottom: 0.007
  8210. }
  8211. },
  8212. back: {
  8213. height: math.unit(2.4, "meters"),
  8214. weight: math.unit(70, "kg"),
  8215. name: "Back",
  8216. image: {
  8217. source: "./media/characters/nyanuxk/back.svg",
  8218. extra: 1200 / 1141,
  8219. bottom: 0.015
  8220. }
  8221. },
  8222. foot: {
  8223. height: math.unit(0.52, "meters"),
  8224. name: "Foot",
  8225. image: {
  8226. source: "./media/characters/nyanuxk/foot.svg"
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Micro",
  8233. height: math.unit(2, "cm")
  8234. },
  8235. {
  8236. name: "Normal",
  8237. height: math.unit(2.4, "meters"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Smaller Macro",
  8242. height: math.unit(120, "meters")
  8243. },
  8244. {
  8245. name: "Bigger Macro",
  8246. height: math.unit(1.2, "km")
  8247. },
  8248. {
  8249. name: "Megamacro",
  8250. height: math.unit(15, "kilometers")
  8251. },
  8252. {
  8253. name: "Gigamacro",
  8254. height: math.unit(2000, "km")
  8255. },
  8256. {
  8257. name: "Teramacro",
  8258. height: math.unit(500000, "km")
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Ailbhe" },
  8264. {
  8265. side: {
  8266. height: math.unit(6, "feet"),
  8267. name: "Side",
  8268. image: {
  8269. source: "./media/characters/ailbhe/side.svg",
  8270. extra: 757 / 464,
  8271. bottom: 0.041
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(1.07, "meters"),
  8279. default: true
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Zevulfius" },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(120, "kg"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/zevulfius/front.svg",
  8292. extra: 965 / 903
  8293. }
  8294. },
  8295. side: {
  8296. height: math.unit(6, "feet"),
  8297. weight: math.unit(120, "kg"),
  8298. name: "Side",
  8299. image: {
  8300. source: "./media/characters/zevulfius/side.svg",
  8301. extra: 939 / 900
  8302. }
  8303. },
  8304. back: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(120, "kg"),
  8307. name: "Back",
  8308. image: {
  8309. source: "./media/characters/zevulfius/back.svg",
  8310. extra: 918 / 854,
  8311. bottom: 0.005
  8312. }
  8313. },
  8314. foot: {
  8315. height: math.unit(6 / 3.72, "feet"),
  8316. name: "Foot",
  8317. image: {
  8318. source: "./media/characters/zevulfius/foot.svg"
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Macro",
  8325. height: math.unit(750, "meters")
  8326. },
  8327. {
  8328. name: "Megamacro",
  8329. height: math.unit(20, "km"),
  8330. default: true
  8331. },
  8332. {
  8333. name: "Gigamacro",
  8334. height: math.unit(2000, "km")
  8335. },
  8336. {
  8337. name: "Teramacro",
  8338. height: math.unit(250000, "km")
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Rikes" },
  8344. {
  8345. front: {
  8346. height: math.unit(100, "feet"),
  8347. weight: math.unit(350, "kg"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/rikes/front.svg",
  8351. extra: 1565 / 1483,
  8352. bottom: 0.017
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(100, "feet"),
  8360. default: true
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Adam Silver-Mane" },
  8366. {
  8367. anthro: {
  8368. height: math.unit(8, "feet"),
  8369. weight: math.unit(120, "kg"),
  8370. name: "Anthro",
  8371. image: {
  8372. source: "./media/characters/adam-silver-mane/anthro.svg",
  8373. extra: 5743 / 5339,
  8374. bottom: 0.07
  8375. }
  8376. },
  8377. taur: {
  8378. height: math.unit(16, "feet"),
  8379. weight: math.unit(1500, "kg"),
  8380. name: "Taur",
  8381. image: {
  8382. source: "./media/characters/adam-silver-mane/taur.svg",
  8383. extra: 1713 / 1571,
  8384. bottom: 0.01
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(8, "feet")
  8392. },
  8393. {
  8394. name: "Minimacro",
  8395. height: math.unit(80, "feet")
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(800, "feet"),
  8400. default: true
  8401. },
  8402. {
  8403. name: "Megamacro",
  8404. height: math.unit(8000, "feet")
  8405. },
  8406. {
  8407. name: "Gigamacro",
  8408. height: math.unit(800, "miles")
  8409. },
  8410. {
  8411. name: "Teramacro",
  8412. height: math.unit(80000, "miles")
  8413. },
  8414. {
  8415. name: "Celestial",
  8416. height: math.unit(8e6, "miles")
  8417. },
  8418. {
  8419. name: "Star Dragon",
  8420. height: math.unit(800000, "parsecs")
  8421. },
  8422. {
  8423. name: "Godly",
  8424. height: math.unit(800, "teraparsecs")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Ky'owin" },
  8430. {
  8431. front: {
  8432. height: math.unit(6, "feet"),
  8433. weight: math.unit(150, "lb"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/ky'owin/front.svg",
  8437. extra: 3888 / 3068,
  8438. bottom: 0.015
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(6 + 8 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Large",
  8449. height: math.unit(68, "feet")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(132, "feet")
  8454. },
  8455. {
  8456. name: "Macro+",
  8457. height: math.unit(340, "feet")
  8458. },
  8459. {
  8460. name: "Macro++",
  8461. height: math.unit(680, "feet"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Megamacro",
  8466. height: math.unit(1, "mile")
  8467. },
  8468. {
  8469. name: "Megamacro+",
  8470. height: math.unit(10, "miles")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Mal" },
  8476. {
  8477. front: {
  8478. height: math.unit(4, "feet"),
  8479. weight: math.unit(50, "lb"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/mal/front.svg",
  8483. extra: 785 / 724,
  8484. bottom: 0.07
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Micro",
  8491. height: math.unit(4, "inches")
  8492. },
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(4, "feet"),
  8496. default: true
  8497. },
  8498. {
  8499. name: "Macro",
  8500. height: math.unit(200, "feet")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Jordan Deware" },
  8506. {
  8507. front: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(150, "lb"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/jordan-deware/front.svg",
  8513. extra: 1191 / 1012
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Nano",
  8520. height: math.unit(0.01, "mm")
  8521. },
  8522. {
  8523. name: "Minimicro",
  8524. height: math.unit(1, "mm")
  8525. },
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(0.5, "inches")
  8529. },
  8530. {
  8531. name: "Normal",
  8532. height: math.unit(4, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Minimacro",
  8537. height: math.unit(40, "meters")
  8538. },
  8539. {
  8540. name: "Small Macro",
  8541. height: math.unit(400, "meters")
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(4, "miles")
  8546. },
  8547. {
  8548. name: "Megamacro",
  8549. height: math.unit(40, "miles")
  8550. },
  8551. {
  8552. name: "Megamacro+",
  8553. height: math.unit(400, "miles")
  8554. },
  8555. {
  8556. name: "Gigamacro",
  8557. height: math.unit(400000, "miles")
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Kimiko" },
  8563. {
  8564. side: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(150, "lb"),
  8567. name: "Side",
  8568. image: {
  8569. source: "./media/characters/kimiko/side.svg",
  8570. extra: 600 / 358
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(15, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(220, "feet")
  8583. },
  8584. {
  8585. name: "Macro+",
  8586. height: math.unit(1450, "feet")
  8587. },
  8588. {
  8589. name: "Megamacro",
  8590. height: math.unit(11500, "feet")
  8591. },
  8592. {
  8593. name: "Gigamacro",
  8594. height: math.unit(9500, "miles")
  8595. },
  8596. {
  8597. name: "Teramacro",
  8598. height: math.unit(2208005005, "miles")
  8599. },
  8600. {
  8601. name: "Examacro",
  8602. height: math.unit(2750, "parsecs")
  8603. },
  8604. {
  8605. name: "Zettamacro",
  8606. height: math.unit(101500, "parsecs")
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Andrew Sleepy" },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(70, "kg"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/andrew-sleepy/front.svg"
  8619. }
  8620. },
  8621. side: {
  8622. height: math.unit(6, "feet"),
  8623. weight: math.unit(70, "kg"),
  8624. name: "Side",
  8625. image: {
  8626. source: "./media/characters/andrew-sleepy/side.svg"
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(1, "mm"),
  8634. default: true
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Judio" },
  8640. {
  8641. front: {
  8642. height: math.unit(6, "feet"),
  8643. weight: math.unit(150, "lb"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/judio/front.svg",
  8647. extra: 1258 / 1110
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(5 + 6 / 12, "feet")
  8655. },
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(1000, "feet"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Megamacro",
  8663. height: math.unit(10, "miles")
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Nomaxice" },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(68, "kg"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/nomaxice/front.svg",
  8676. extra: 1498 / 1073,
  8677. bottom: 0.075
  8678. }
  8679. },
  8680. foot: {
  8681. height: math.unit(1.1, "feet"),
  8682. name: "Foot",
  8683. image: {
  8684. source: "./media/characters/nomaxice/foot.svg"
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Micro",
  8691. height: math.unit(8, "cm")
  8692. },
  8693. {
  8694. name: "Norm",
  8695. height: math.unit(1.82, "m")
  8696. },
  8697. {
  8698. name: "Norm+",
  8699. height: math.unit(8.8, "feet")
  8700. },
  8701. {
  8702. name: "Big",
  8703. height: math.unit(8, "meters"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(18, "meters")
  8709. },
  8710. {
  8711. name: "Macro+",
  8712. height: math.unit(88, "meters")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Dydros" },
  8718. {
  8719. front: {
  8720. height: math.unit(12, "feet"),
  8721. weight: math.unit(1.5, "tons"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/dydros/front.svg",
  8725. extra: 863 / 800,
  8726. bottom: 0.015
  8727. }
  8728. },
  8729. back: {
  8730. height: math.unit(12, "feet"),
  8731. weight: math.unit(1.5, "tons"),
  8732. name: "Back",
  8733. image: {
  8734. source: "./media/characters/dydros/back.svg",
  8735. extra: 900 / 843,
  8736. bottom: 0.005
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(12, "feet"),
  8744. default: true
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Riggi" },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(100, "kg"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/riggi/front.svg",
  8757. extra: 5787 / 5303
  8758. }
  8759. },
  8760. hyper: {
  8761. height: math.unit(6 * 5 / 3, "feet"),
  8762. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8763. name: "Hyper",
  8764. image: {
  8765. source: "./media/characters/riggi/hyper.svg",
  8766. extra: 3595 / 3485
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Small Macro",
  8773. height: math.unit(50, "feet")
  8774. },
  8775. {
  8776. name: "Default",
  8777. height: math.unit(200, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Loom",
  8782. height: math.unit(10000, "feet")
  8783. },
  8784. {
  8785. name: "Cruising Altitude",
  8786. height: math.unit(30000, "feet")
  8787. },
  8788. {
  8789. name: "Megamacro",
  8790. height: math.unit(100, "miles")
  8791. },
  8792. {
  8793. name: "Continent Sized",
  8794. height: math.unit(2800, "miles")
  8795. },
  8796. {
  8797. name: "Earth Sized",
  8798. height: math.unit(8000, "miles")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Alexi" },
  8804. {
  8805. front: {
  8806. height: math.unit(6, "feet"),
  8807. weight: math.unit(250, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/alexi/front.svg",
  8811. extra: 3483 / 3291,
  8812. bottom: 0.04
  8813. }
  8814. },
  8815. back: {
  8816. height: math.unit(6, "feet"),
  8817. weight: math.unit(250, "lb"),
  8818. name: "Back",
  8819. image: {
  8820. source: "./media/characters/alexi/back.svg",
  8821. extra: 3533 / 3356,
  8822. bottom: 0.021
  8823. }
  8824. },
  8825. frontTransforming: {
  8826. height: math.unit(8.58, "feet"),
  8827. weight: math.unit(1300, "lb"),
  8828. name: "Transforming",
  8829. image: {
  8830. source: "./media/characters/alexi/front-transforming.svg",
  8831. extra: 437 / 409,
  8832. bottom: 19/458.66
  8833. }
  8834. },
  8835. frontTransformed: {
  8836. height: math.unit(12.5, "feet"),
  8837. weight: math.unit(4000, "lb"),
  8838. name: "Transformed",
  8839. image: {
  8840. source: "./media/characters/alexi/front-transformed.svg",
  8841. extra: 639 / 614,
  8842. bottom: 30.55/671
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(3, "meters"),
  8850. default: true
  8851. },
  8852. {
  8853. name: "Minimacro",
  8854. height: math.unit(30, "meters")
  8855. },
  8856. {
  8857. name: "Macro",
  8858. height: math.unit(500, "meters")
  8859. },
  8860. {
  8861. name: "Megamacro",
  8862. height: math.unit(9000, "km")
  8863. },
  8864. {
  8865. name: "Teramacro",
  8866. height: math.unit(384000, "km")
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Kayroo" },
  8872. {
  8873. front: {
  8874. height: math.unit(6, "feet"),
  8875. weight: math.unit(150, "lb"),
  8876. name: "Front",
  8877. image: {
  8878. source: "./media/characters/kayroo/front.svg",
  8879. extra: 1153 / 1038,
  8880. bottom: 0.06
  8881. }
  8882. },
  8883. foot: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(150, "lb"),
  8886. name: "Foot",
  8887. image: {
  8888. source: "./media/characters/kayroo/foot.svg"
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(8, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Minimacro",
  8900. height: math.unit(250, "feet")
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(2800, "feet")
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(5200, "feet")
  8909. },
  8910. {
  8911. name: "Gigamacro",
  8912. height: math.unit(27000, "feet")
  8913. },
  8914. {
  8915. name: "Omega",
  8916. height: math.unit(45000, "feet")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Rhys" },
  8922. {
  8923. front: {
  8924. height: math.unit(18, "feet"),
  8925. weight: math.unit(5800, "lb"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/rhys/front.svg",
  8929. extra: 3386 / 3090,
  8930. bottom: 0.07
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(18, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Working Size",
  8942. height: math.unit(200, "feet")
  8943. },
  8944. {
  8945. name: "Demolition Size",
  8946. height: math.unit(2000, "feet")
  8947. },
  8948. {
  8949. name: "Maximum Licensed Size",
  8950. height: math.unit(5, "miles")
  8951. },
  8952. {
  8953. name: "Maximum Observed Size",
  8954. height: math.unit(10, "yottameters")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Toto" },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(250, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/toto/front.svg",
  8967. extra: 527 / 479,
  8968. bottom: 0.05
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Micro",
  8975. height: math.unit(3, "feet")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(10, "feet")
  8980. },
  8981. {
  8982. name: "Macro",
  8983. height: math.unit(150, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Megamacro",
  8988. height: math.unit(1200, "feet")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "King" },
  8994. {
  8995. back: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(150, "lb"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/king/back.svg"
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Micro",
  9007. height: math.unit(2, "inches")
  9008. },
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(8, "feet")
  9012. },
  9013. {
  9014. name: "Macro",
  9015. height: math.unit(200, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Megamacro",
  9020. height: math.unit(50, "miles")
  9021. },
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Cordite" },
  9026. {
  9027. anthro: {
  9028. height: math.unit(6 + 5 / 12, "feet"),
  9029. weight: math.unit(280, "lb"),
  9030. name: "Anthro",
  9031. image: {
  9032. source: "./media/characters/cordite/anthro.svg",
  9033. extra: 1986 / 1905,
  9034. bottom: 0.025
  9035. }
  9036. },
  9037. feral: {
  9038. height: math.unit(2, "feet"),
  9039. weight: math.unit(90, "lb"),
  9040. name: "Feral",
  9041. image: {
  9042. source: "./media/characters/cordite/feral.svg",
  9043. extra: 1260 / 755,
  9044. bottom: 0.05
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(6 + 5 / 12, "feet"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Pianostrong" },
  9058. {
  9059. front: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(150, "lb"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/pianostrong/front.svg",
  9065. extra: 6577 / 6254,
  9066. bottom: 0.02
  9067. }
  9068. },
  9069. side: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(150, "lb"),
  9072. name: "Side",
  9073. image: {
  9074. source: "./media/characters/pianostrong/side.svg",
  9075. extra: 6106 / 5730
  9076. }
  9077. },
  9078. back: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(150, "lb"),
  9081. name: "Back",
  9082. image: {
  9083. source: "./media/characters/pianostrong/back.svg",
  9084. extra: 6085 / 5733,
  9085. bottom: 0.01
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(100, "feet")
  9093. },
  9094. {
  9095. name: "Macro+",
  9096. height: math.unit(300, "feet"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Macro++",
  9101. height: math.unit(1000, "feet")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Kona" },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(150, "lb"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/kona/front.svg",
  9114. extra: 2960 / 2629,
  9115. bottom: 0.005
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(11 + 8 / 12, "feet")
  9123. },
  9124. {
  9125. name: "Macro",
  9126. height: math.unit(850, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Macro+",
  9131. height: math.unit(1.5, "km"),
  9132. default: true
  9133. },
  9134. {
  9135. name: "Megamacro",
  9136. height: math.unit(80, "miles")
  9137. },
  9138. {
  9139. name: "Gigamacro",
  9140. height: math.unit(3500, "miles")
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Levi" },
  9146. {
  9147. side: {
  9148. height: math.unit(1.9, "meters"),
  9149. weight: math.unit(326, "kg"),
  9150. name: "Side",
  9151. image: {
  9152. source: "./media/characters/levi/side.svg",
  9153. extra: 1704 / 1334,
  9154. bottom: 0.02
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(1.9, "meters"),
  9162. default: true
  9163. },
  9164. {
  9165. name: "Macro",
  9166. height: math.unit(20, "meters")
  9167. },
  9168. {
  9169. name: "Macro+",
  9170. height: math.unit(200, "meters")
  9171. },
  9172. {
  9173. name: "Megamacro",
  9174. height: math.unit(2, "km")
  9175. },
  9176. {
  9177. name: "Megamacro+",
  9178. height: math.unit(20, "km")
  9179. },
  9180. {
  9181. name: "Gigamacro",
  9182. height: math.unit(2500, "km")
  9183. },
  9184. {
  9185. name: "Gigamacro+",
  9186. height: math.unit(120000, "km")
  9187. },
  9188. {
  9189. name: "Teramacro",
  9190. height: math.unit(7.77e6, "km")
  9191. },
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "BMC" },
  9196. {
  9197. front: {
  9198. height: math.unit(6 + 4 / 12, "feet"),
  9199. weight: math.unit(188, "lb"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/bmc/front.svg",
  9203. extra: 1067 / 1022,
  9204. bottom: 0.047
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Human-sized",
  9211. height: math.unit(6 + 4 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Small",
  9215. height: math.unit(250, "feet")
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(1250, "feet"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Good Day",
  9224. height: math.unit(88, "miles")
  9225. },
  9226. {
  9227. name: "Largest Measured Size",
  9228. height: math.unit(11.2e6, "lightyears")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Sven the Kaiju" },
  9234. {
  9235. front: {
  9236. height: math.unit(20, "feet"),
  9237. weight: math.unit(2016, "kg"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/sven-the-kaiju/front.svg",
  9241. extra: 1479 / 1449,
  9242. bottom: 0.05
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Fairy",
  9249. height: math.unit(6, "inches")
  9250. },
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(20, "feet"),
  9254. default: true
  9255. },
  9256. {
  9257. name: "Rampage",
  9258. height: math.unit(200, "feet")
  9259. },
  9260. {
  9261. name: "Archfey Forest Guardian",
  9262. height: math.unit(1, "mile")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Marik" },
  9268. {
  9269. front: {
  9270. height: math.unit(4, "meters"),
  9271. weight: math.unit(2, "tons"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/marik/front.svg",
  9275. extra: 1057 / 1003,
  9276. bottom: 0.08
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Normal",
  9283. height: math.unit(4, "meters"),
  9284. default: true
  9285. },
  9286. {
  9287. name: "Macro",
  9288. height: math.unit(20, "meters")
  9289. },
  9290. {
  9291. name: "Megamacro",
  9292. height: math.unit(50, "km")
  9293. },
  9294. {
  9295. name: "Gigamacro",
  9296. height: math.unit(100, "km")
  9297. },
  9298. {
  9299. name: "Alpha Macro",
  9300. height: math.unit(7.88e7, "yottameters")
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Mel" },
  9306. {
  9307. front: {
  9308. height: math.unit(6, "feet"),
  9309. weight: math.unit(110, "lb"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/mel/front.svg",
  9313. extra: 736 / 617,
  9314. bottom: 0.017
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Pico",
  9321. height: math.unit(3, "pm")
  9322. },
  9323. {
  9324. name: "Nano",
  9325. height: math.unit(3, "nm")
  9326. },
  9327. {
  9328. name: "Micro",
  9329. height: math.unit(0.3, "mm"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Micro+",
  9334. height: math.unit(3, "mm")
  9335. },
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(5 + 10.5 / 12, "feet")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Lykonous" },
  9344. {
  9345. kaiju: {
  9346. height: math.unit(1.75, "meters"),
  9347. weight: math.unit(55, "kg"),
  9348. name: "Kaiju",
  9349. image: {
  9350. source: "./media/characters/lykonous/kaiju.svg",
  9351. extra: 1055 / 946,
  9352. bottom: 0.135
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Normal",
  9359. height: math.unit(2.5, "meters"),
  9360. default: true
  9361. },
  9362. {
  9363. name: "Kaiju Dragon",
  9364. height: math.unit(60, "meters")
  9365. },
  9366. {
  9367. name: "Mega Kaiju",
  9368. height: math.unit(120, "km")
  9369. },
  9370. {
  9371. name: "Giga Kaiju",
  9372. height: math.unit(200, "megameters")
  9373. },
  9374. {
  9375. name: "Terra Kaiju",
  9376. height: math.unit(400, "gigameters")
  9377. },
  9378. {
  9379. name: "Kaiju Dragon God",
  9380. height: math.unit(13000, "exaparsecs")
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Blü" },
  9386. {
  9387. front: {
  9388. height: math.unit(6, "feet"),
  9389. weight: math.unit(150, "lb"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/blü/front.svg",
  9393. extra: 1883 / 1564,
  9394. bottom: 0.031
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(13, "feet"),
  9402. default: true
  9403. },
  9404. {
  9405. name: "Big Boi",
  9406. height: math.unit(150, "meters")
  9407. },
  9408. {
  9409. name: "Mini Stomper",
  9410. height: math.unit(300, "meters")
  9411. },
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(1000, "meters")
  9415. },
  9416. {
  9417. name: "Megamacro",
  9418. height: math.unit(11000, "meters")
  9419. },
  9420. {
  9421. name: "Gigamacro",
  9422. height: math.unit(11000, "km")
  9423. },
  9424. {
  9425. name: "Teramacro",
  9426. height: math.unit(420000, "km")
  9427. },
  9428. {
  9429. name: "Examacro",
  9430. height: math.unit(120, "parsecs")
  9431. },
  9432. {
  9433. name: "God Tho",
  9434. height: math.unit(98000000000, "parsecs")
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Scales" },
  9440. {
  9441. taurFront: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(200, "lb"),
  9444. name: "Taur (Front)",
  9445. image: {
  9446. source: "./media/characters/scales/taur-front.svg",
  9447. extra: 1,
  9448. bottom: 0.05
  9449. }
  9450. },
  9451. taurBack: {
  9452. height: math.unit(6, "feet"),
  9453. weight: math.unit(200, "lb"),
  9454. name: "Taur (Back)",
  9455. image: {
  9456. source: "./media/characters/scales/taur-back.svg",
  9457. extra: 1,
  9458. bottom: 0.08
  9459. }
  9460. },
  9461. anthro: {
  9462. height: math.unit(6 * 7 / 12, "feet"),
  9463. weight: math.unit(100, "lb"),
  9464. name: "Anthro",
  9465. image: {
  9466. source: "./media/characters/scales/anthro.svg",
  9467. extra: 1,
  9468. bottom: 0.06
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(12, "feet"),
  9476. default: true
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Koragos" },
  9482. {
  9483. front: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(150, "lb"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/koragos/front.svg",
  9489. extra: 841 / 794,
  9490. bottom: 0.035
  9491. }
  9492. },
  9493. back: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Back",
  9497. image: {
  9498. source: "./media/characters/koragos/back.svg",
  9499. extra: 841 / 810,
  9500. bottom: 0.022
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Normal",
  9507. height: math.unit(6 + 11 / 12, "feet"),
  9508. default: true
  9509. },
  9510. {
  9511. name: "Macro",
  9512. height: math.unit(490, "feet")
  9513. },
  9514. {
  9515. name: "Megamacro",
  9516. height: math.unit(10, "miles")
  9517. },
  9518. {
  9519. name: "Gigamacro",
  9520. height: math.unit(50, "miles")
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Xylrem" },
  9526. {
  9527. front: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(250, "lb"),
  9530. name: "Front",
  9531. image: {
  9532. source: "./media/characters/xylrem/front.svg",
  9533. extra: 3323 / 3050,
  9534. bottom: 0.065
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(4, "feet")
  9542. },
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(16, "feet"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(2720, "feet")
  9551. },
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(25000, "miles")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Ikideru" },
  9560. {
  9561. front: {
  9562. height: math.unit(8, "feet"),
  9563. weight: math.unit(250, "kg"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/ikideru/front.svg",
  9567. extra: 930 / 870,
  9568. bottom: 0.087
  9569. }
  9570. },
  9571. back: {
  9572. height: math.unit(8, "feet"),
  9573. weight: math.unit(250, "kg"),
  9574. name: "Back",
  9575. image: {
  9576. source: "./media/characters/ikideru/back.svg",
  9577. extra: 919 / 852,
  9578. bottom: 0.055
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Rare",
  9585. height: math.unit(8, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Playful Loom",
  9590. height: math.unit(80, "feet")
  9591. },
  9592. {
  9593. name: "City Leaner",
  9594. height: math.unit(230, "feet")
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(2500, "feet")
  9599. },
  9600. {
  9601. name: "Gigamacro",
  9602. height: math.unit(26400, "feet")
  9603. },
  9604. {
  9605. name: "Tectonic Shifter",
  9606. height: math.unit(1.7, "megameters")
  9607. },
  9608. {
  9609. name: "Planet Carer",
  9610. height: math.unit(21, "megameters")
  9611. },
  9612. {
  9613. name: "God",
  9614. height: math.unit(11157.22, "parsecs")
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Neo" },
  9620. {
  9621. front: {
  9622. height: math.unit(6, "feet"),
  9623. weight: math.unit(120, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/neo/front.svg"
  9627. }
  9628. },
  9629. },
  9630. [
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(2, "inches"),
  9634. default: true
  9635. },
  9636. {
  9637. name: "Human Size",
  9638. height: math.unit(5 + 8 / 12, "feet")
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Chauncey (Chantz)" },
  9644. {
  9645. front: {
  9646. height: math.unit(13 + 10 / 12, "feet"),
  9647. weight: math.unit(5320, "lb"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/chauncey-chantz/front.svg",
  9651. extra: 1587 / 1435,
  9652. bottom: 0.02
  9653. }
  9654. },
  9655. },
  9656. [
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(13 + 10 / 12, "feet"),
  9660. default: true
  9661. },
  9662. {
  9663. name: "Macro",
  9664. height: math.unit(45, "feet")
  9665. },
  9666. {
  9667. name: "Megamacro",
  9668. height: math.unit(250, "miles")
  9669. },
  9670. {
  9671. name: "Planetary",
  9672. height: math.unit(10000, "miles")
  9673. },
  9674. {
  9675. name: "Galactic",
  9676. height: math.unit(40000, "parsecs")
  9677. },
  9678. {
  9679. name: "Universal",
  9680. height: math.unit(1, "yottameter")
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Epifox" },
  9686. {
  9687. front: {
  9688. height: math.unit(6, "feet"),
  9689. weight: math.unit(150, "lb"),
  9690. name: "Front",
  9691. image: {
  9692. source: "./media/characters/epifox/front.svg",
  9693. extra: 1,
  9694. bottom: 0.075
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Micro",
  9701. height: math.unit(6, "inches")
  9702. },
  9703. {
  9704. name: "Normal",
  9705. height: math.unit(12, "feet"),
  9706. default: true
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(3810, "feet")
  9711. },
  9712. {
  9713. name: "Megamacro",
  9714. height: math.unit(500, "miles")
  9715. },
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Colin T." },
  9720. {
  9721. front: {
  9722. height: math.unit(1.8796, "m"),
  9723. weight: math.unit(230, "lb"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/colin-t/front.svg",
  9727. extra: 1272 / 1193,
  9728. bottom: 0.07
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Micro",
  9735. height: math.unit(0.571, "meters")
  9736. },
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(1.8796, "meters"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Tall",
  9744. height: math.unit(4, "meters")
  9745. },
  9746. {
  9747. name: "Macro",
  9748. height: math.unit(67.241, "meters")
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(371.856, "meters")
  9753. },
  9754. {
  9755. name: "Planetary",
  9756. height: math.unit(12631.5689, "km")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Matvei" },
  9762. {
  9763. front: {
  9764. height: math.unit(1.85, "meters"),
  9765. weight: math.unit(80, "kg"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/matvei/front.svg",
  9769. extra: 614 / 594,
  9770. bottom: 0.01
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(1.85, "meters"),
  9778. default: true
  9779. },
  9780. ]
  9781. ))
  9782. characterMakers.push(() => makeCharacter(
  9783. { name: "Quincy" },
  9784. {
  9785. front: {
  9786. height: math.unit(5 + 9 / 12, "feet"),
  9787. weight: math.unit(70, "lb"),
  9788. name: "Front",
  9789. image: {
  9790. source: "./media/characters/quincy/front.svg",
  9791. extra: 3041 / 2751
  9792. }
  9793. },
  9794. back: {
  9795. height: math.unit(5 + 9 / 12, "feet"),
  9796. weight: math.unit(70, "lb"),
  9797. name: "Back",
  9798. image: {
  9799. source: "./media/characters/quincy/back.svg",
  9800. extra: 3041 / 2751
  9801. }
  9802. },
  9803. flying: {
  9804. height: math.unit(5 + 4 / 12, "feet"),
  9805. weight: math.unit(70, "lb"),
  9806. name: "Flying",
  9807. image: {
  9808. source: "./media/characters/quincy/flying.svg",
  9809. extra: 1044 / 930
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(3, "cm")
  9817. },
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(5 + 9 / 12, "feet")
  9821. },
  9822. {
  9823. name: "Macro",
  9824. height: math.unit(200, "meters"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Megamacro",
  9829. height: math.unit(1000, "meters")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Vanrel" },
  9835. {
  9836. front: {
  9837. height: math.unit(4 + 7 / 12, "feet"),
  9838. weight: math.unit(150, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/vanrel/front.svg",
  9842. extra: 1,
  9843. bottom: 0.02
  9844. }
  9845. },
  9846. elemental: {
  9847. height: math.unit(3, "feet"),
  9848. weight: math.unit(150, "lb"),
  9849. name: "Elemental",
  9850. image: {
  9851. source: "./media/characters/vanrel/elemental.svg",
  9852. extra: 192.3/162.8,
  9853. bottom: 1.79/194.17
  9854. }
  9855. },
  9856. side: {
  9857. height: math.unit(4 + 7 / 12, "feet"),
  9858. weight: math.unit(150, "lb"),
  9859. name: "Side",
  9860. image: {
  9861. source: "./media/characters/vanrel/side.svg",
  9862. extra: 1,
  9863. bottom: 0.025
  9864. }
  9865. },
  9866. tome: {
  9867. height: math.unit(1.35, "feet"),
  9868. weight: math.unit(10, "lb"),
  9869. name: "Vanrel's Tome",
  9870. rename: true,
  9871. image: {
  9872. source: "./media/characters/vanrel/tome.svg"
  9873. }
  9874. },
  9875. beans: {
  9876. height: math.unit(0.89, "feet"),
  9877. name: "Beans",
  9878. image: {
  9879. source: "./media/characters/vanrel/beans.svg"
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(4 + 7 / 12, "feet"),
  9887. default: true
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Kuiper Vanrel" },
  9893. {
  9894. front: {
  9895. height: math.unit(7 + 5 / 12, "feet"),
  9896. weight: math.unit(150, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/kuiper-vanrel/front.svg",
  9900. extra: 1118 / 1068,
  9901. bottom: 0.09
  9902. }
  9903. },
  9904. foot: {
  9905. height: math.unit(0.55, "meters"),
  9906. name: "Foot",
  9907. image: {
  9908. source: "./media/characters/kuiper-vanrel/foot.svg",
  9909. }
  9910. },
  9911. battle: {
  9912. height: math.unit(6.824, "feet"),
  9913. weight: math.unit(150, "lb"),
  9914. name: "Battle",
  9915. image: {
  9916. source: "./media/characters/kuiper-vanrel/battle.svg",
  9917. extra: 1466/1327,
  9918. bottom: 29/1492.5
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(7 + 5 / 12, "feet"),
  9926. default: true
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Keset Vanrel" },
  9932. {
  9933. front: {
  9934. height: math.unit(8 + 5 / 12, "feet"),
  9935. weight: math.unit(150, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/keset-vanrel/front.svg",
  9939. extra: 1150 / 1084,
  9940. bottom: 0.05
  9941. }
  9942. },
  9943. hand: {
  9944. height: math.unit(0.6, "meters"),
  9945. name: "Hand",
  9946. image: {
  9947. source: "./media/characters/keset-vanrel/hand.svg"
  9948. }
  9949. },
  9950. foot: {
  9951. height: math.unit(0.94978, "meters"),
  9952. name: "Foot",
  9953. image: {
  9954. source: "./media/characters/keset-vanrel/foot.svg"
  9955. }
  9956. },
  9957. battle: {
  9958. height: math.unit(7.408, "feet"),
  9959. weight: math.unit(150, "lb"),
  9960. name: "Battle",
  9961. image: {
  9962. source: "./media/characters/keset-vanrel/battle.svg",
  9963. extra: 1890/1386,
  9964. bottom: 73.28/1970
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Normal",
  9971. height: math.unit(8 + 5 / 12, "feet"),
  9972. default: true
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Neos" },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(150, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/neos/front.svg",
  9985. extra: 1696 / 992,
  9986. bottom: 0.14
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(54, "cm"),
  9994. default: true
  9995. },
  9996. {
  9997. name: "Macro",
  9998. height: math.unit(100, "m")
  9999. },
  10000. {
  10001. name: "Megamacro",
  10002. height: math.unit(10, "km")
  10003. },
  10004. {
  10005. name: "Megamacro+",
  10006. height: math.unit(100, "km")
  10007. },
  10008. {
  10009. name: "Gigamacro",
  10010. height: math.unit(100, "Mm")
  10011. },
  10012. {
  10013. name: "Teramacro",
  10014. height: math.unit(100, "Gm")
  10015. },
  10016. {
  10017. name: "Examacro",
  10018. height: math.unit(100, "Em")
  10019. },
  10020. {
  10021. name: "Godly",
  10022. height: math.unit(10000, "Ym")
  10023. },
  10024. {
  10025. name: "Beyond Godly",
  10026. height: math.unit(10000000, "Ym")
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Sammy Mouse" },
  10032. {
  10033. feminine: {
  10034. height: math.unit(5, "feet"),
  10035. weight: math.unit(100, "lb"),
  10036. name: "Feminine",
  10037. image: {
  10038. source: "./media/characters/sammy-mouse/feminine.svg",
  10039. extra: 2526 / 2425,
  10040. bottom: 0.123
  10041. }
  10042. },
  10043. masculine: {
  10044. height: math.unit(5, "feet"),
  10045. weight: math.unit(100, "lb"),
  10046. name: "Masculine",
  10047. image: {
  10048. source: "./media/characters/sammy-mouse/masculine.svg",
  10049. extra: 2526 / 2425,
  10050. bottom: 0.123
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Micro",
  10057. height: math.unit(5, "inches")
  10058. },
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(5, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Macro",
  10066. height: math.unit(60, "feet")
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Kole" },
  10072. {
  10073. front: {
  10074. height: math.unit(4, "feet"),
  10075. weight: math.unit(50, "lb"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/kole/front.svg",
  10079. extra: 1423 / 1303,
  10080. bottom: 0.025
  10081. }
  10082. },
  10083. back: {
  10084. height: math.unit(4, "feet"),
  10085. weight: math.unit(50, "lb"),
  10086. name: "Back",
  10087. image: {
  10088. source: "./media/characters/kole/back.svg",
  10089. extra: 1426 / 1280,
  10090. bottom: 0.02
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(4, "feet"),
  10098. default: true
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Rufran" },
  10104. {
  10105. front: {
  10106. height: math.unit(2 + 6 / 12, "feet"),
  10107. weight: math.unit(20, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/rufran/front.svg",
  10111. extra: 2041 / 1839,
  10112. bottom: 0.055
  10113. }
  10114. },
  10115. back: {
  10116. height: math.unit(2 + 6 / 12, "feet"),
  10117. weight: math.unit(20, "lb"),
  10118. name: "Back",
  10119. image: {
  10120. source: "./media/characters/rufran/back.svg",
  10121. extra: 2054 / 1839,
  10122. bottom: 0.01
  10123. }
  10124. },
  10125. hand: {
  10126. height: math.unit(0.2166, "meters"),
  10127. name: "Hand",
  10128. image: {
  10129. source: "./media/characters/rufran/hand.svg"
  10130. }
  10131. },
  10132. foot: {
  10133. height: math.unit(0.185, "meters"),
  10134. name: "Foot",
  10135. image: {
  10136. source: "./media/characters/rufran/foot.svg"
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Micro",
  10143. height: math.unit(1, "inch")
  10144. },
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(2 + 6 / 12, "feet"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Big",
  10152. height: math.unit(60, "feet")
  10153. },
  10154. {
  10155. name: "Macro",
  10156. height: math.unit(325, "feet")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Chip" },
  10162. {
  10163. front: {
  10164. height: math.unit(0.3, "meters"),
  10165. weight: math.unit(3.5, "kg"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/chip/front.svg",
  10169. extra: 748 / 674
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Micro",
  10176. height: math.unit(1, "inch"),
  10177. default: true
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Torvid" },
  10183. {
  10184. side: {
  10185. height: math.unit(2.3, "meters"),
  10186. weight: math.unit(3500, "lb"),
  10187. name: "Side",
  10188. image: {
  10189. source: "./media/characters/torvid/side.svg",
  10190. extra: 1972 / 722,
  10191. bottom: 0.035
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(2.3, "meters"),
  10199. default: true
  10200. },
  10201. ]
  10202. ))
  10203. characterMakers.push(() => makeCharacter(
  10204. { name: "Susan" },
  10205. {
  10206. front: {
  10207. height: math.unit(2, "meters"),
  10208. weight: math.unit(150.5, "kg"),
  10209. name: "Front",
  10210. image: {
  10211. source: "./media/characters/susan/front.svg",
  10212. extra: 693 / 635,
  10213. bottom: 0.05
  10214. }
  10215. },
  10216. },
  10217. [
  10218. {
  10219. name: "Megamacro",
  10220. height: math.unit(505, "miles"),
  10221. default: true
  10222. },
  10223. ]
  10224. ))
  10225. characterMakers.push(() => makeCharacter(
  10226. { name: "Raindrops" },
  10227. {
  10228. front: {
  10229. height: math.unit(6, "feet"),
  10230. weight: math.unit(150, "lb"),
  10231. name: "Front",
  10232. image: {
  10233. source: "./media/characters/raindrops/front.svg",
  10234. extra: 2655 / 2461,
  10235. bottom: 0.02
  10236. }
  10237. },
  10238. back: {
  10239. height: math.unit(6, "feet"),
  10240. weight: math.unit(150, "lb"),
  10241. name: "Back",
  10242. image: {
  10243. source: "./media/characters/raindrops/back.svg",
  10244. extra: 2574 / 2400,
  10245. bottom: 0.03
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(6, "inches")
  10253. },
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(6 + 2 / 12, "feet")
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(131, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(15, "miles")
  10266. },
  10267. {
  10268. name: "Gigamacro",
  10269. height: math.unit(4000, "miles")
  10270. },
  10271. {
  10272. name: "Teramacro",
  10273. height: math.unit(315000, "miles")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Tezwa" },
  10279. {
  10280. front: {
  10281. height: math.unit(2.794, "meters"),
  10282. weight: math.unit(325, "kg"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/tezwa/front.svg",
  10286. extra: 2083 / 1906,
  10287. bottom: 0.031
  10288. }
  10289. },
  10290. foot: {
  10291. height: math.unit(0.687, "meters"),
  10292. name: "Foot",
  10293. image: {
  10294. source: "./media/characters/tezwa/foot.svg"
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(9 + 2 / 12, "feet"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Typhus" },
  10308. {
  10309. front: {
  10310. height: math.unit(58, "feet"),
  10311. weight: math.unit(89000, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/typhus/front.svg",
  10315. extra: 816 / 800,
  10316. bottom: 0.065
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(58, "feet"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Lyra Von Wulf" },
  10330. {
  10331. front: {
  10332. height: math.unit(12, "feet"),
  10333. weight: math.unit(6, "tonnes"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/lyra-von-wulf/front.svg",
  10337. extra: 1,
  10338. bottom: 0.10
  10339. }
  10340. },
  10341. frontMecha: {
  10342. height: math.unit(12, "feet"),
  10343. weight: math.unit(12, "tonnes"),
  10344. name: "Front (Mecha)",
  10345. image: {
  10346. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10347. extra: 1,
  10348. bottom: 0.042
  10349. }
  10350. },
  10351. maw: {
  10352. height: math.unit(2.2, "feet"),
  10353. name: "Maw",
  10354. image: {
  10355. source: "./media/characters/lyra-von-wulf/maw.svg"
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(12, "feet"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Classic",
  10367. height: math.unit(50, "feet")
  10368. },
  10369. {
  10370. name: "Macro",
  10371. height: math.unit(500, "feet")
  10372. },
  10373. {
  10374. name: "Megamacro",
  10375. height: math.unit(1, "mile")
  10376. },
  10377. {
  10378. name: "Gigamacro",
  10379. height: math.unit(400, "miles")
  10380. },
  10381. {
  10382. name: "Teramacro",
  10383. height: math.unit(22000, "miles")
  10384. },
  10385. {
  10386. name: "Solarmacro",
  10387. height: math.unit(8600000, "miles")
  10388. },
  10389. {
  10390. name: "Galactic",
  10391. height: math.unit(1057000, "lightyears")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Dixon" },
  10397. {
  10398. front: {
  10399. height: math.unit(6 + 10 / 12, "feet"),
  10400. weight: math.unit(150, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/dixon/front.svg",
  10404. extra: 3361 / 3209,
  10405. bottom: 0.01
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(6 + 10 / 12, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Big",
  10417. height: math.unit(12, "meters")
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(500, "meters")
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(2, "km")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Kauko" },
  10431. {
  10432. front: {
  10433. height: math.unit(185, "cm"),
  10434. weight: math.unit(68, "kg"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/kauko/front.svg",
  10438. extra: 1455 / 1421,
  10439. bottom: 0.03
  10440. }
  10441. },
  10442. back: {
  10443. height: math.unit(185, "cm"),
  10444. weight: math.unit(68, "kg"),
  10445. name: "Back",
  10446. image: {
  10447. source: "./media/characters/kauko/back.svg",
  10448. extra: 1455 / 1421,
  10449. bottom: 0.004
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Normal",
  10456. height: math.unit(185, "cm"),
  10457. default: true
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Varg" },
  10463. {
  10464. front: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "kg"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/varg/front.svg",
  10470. extra: 1108 / 1018,
  10471. bottom: 0.0375
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(5, "meters")
  10479. },
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(200, "meters")
  10483. },
  10484. {
  10485. name: "Megamacro",
  10486. height: math.unit(20, "kilometers")
  10487. },
  10488. {
  10489. name: "True Size",
  10490. height: math.unit(211, "km"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Gigamacro",
  10495. height: math.unit(1000, "km")
  10496. },
  10497. {
  10498. name: "Gigamacro+",
  10499. height: math.unit(8000, "km")
  10500. },
  10501. {
  10502. name: "Teramacro",
  10503. height: math.unit(1000000, "km")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Dayza" },
  10509. {
  10510. front: {
  10511. height: math.unit(7 + 7 / 12, "feet"),
  10512. weight: math.unit(267, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/dayza/front.svg",
  10516. extra: 1262 / 1200,
  10517. bottom: 0.035
  10518. }
  10519. },
  10520. side: {
  10521. height: math.unit(7 + 7 / 12, "feet"),
  10522. weight: math.unit(267, "lb"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/dayza/side.svg",
  10526. extra: 1295 / 1245,
  10527. bottom: 0.05
  10528. }
  10529. },
  10530. back: {
  10531. height: math.unit(7 + 7 / 12, "feet"),
  10532. weight: math.unit(267, "lb"),
  10533. name: "Back",
  10534. image: {
  10535. source: "./media/characters/dayza/back.svg",
  10536. extra: 1241 / 1170
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(7 + 7 / 12, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(155, "feet")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Xanthos" },
  10554. {
  10555. front: {
  10556. height: math.unit(6 + 5 / 12, "feet"),
  10557. weight: math.unit(160, "lb"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/xanthos/front.svg",
  10561. extra: 1,
  10562. bottom: 0.04
  10563. }
  10564. },
  10565. back: {
  10566. height: math.unit(6 + 5 / 12, "feet"),
  10567. weight: math.unit(160, "lb"),
  10568. name: "Back",
  10569. image: {
  10570. source: "./media/characters/xanthos/back.svg",
  10571. extra: 1,
  10572. bottom: 0.03
  10573. }
  10574. },
  10575. hand: {
  10576. height: math.unit(0.928, "feet"),
  10577. name: "Hand",
  10578. image: {
  10579. source: "./media/characters/xanthos/hand.svg"
  10580. }
  10581. },
  10582. foot: {
  10583. height: math.unit(1.286, "feet"),
  10584. name: "Foot",
  10585. image: {
  10586. source: "./media/characters/xanthos/foot.svg"
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(6 + 5 / 12, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Normal+",
  10598. height: math.unit(6, "meters")
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(40, "feet")
  10603. },
  10604. {
  10605. name: "Macro+",
  10606. height: math.unit(200, "meters")
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(20, "km")
  10611. },
  10612. {
  10613. name: "Megamacro+",
  10614. height: math.unit(100, "km")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Grynn" },
  10620. {
  10621. front: {
  10622. height: math.unit(6 + 3 / 12, "feet"),
  10623. weight: math.unit(215, "lb"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/grynn/front.svg",
  10627. extra: 4627 / 4209,
  10628. bottom: 0.047
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Micro",
  10635. height: math.unit(6, "inches")
  10636. },
  10637. {
  10638. name: "Normal",
  10639. height: math.unit(6 + 3 / 12, "feet"),
  10640. default: true
  10641. },
  10642. {
  10643. name: "Big",
  10644. height: math.unit(104, "feet")
  10645. },
  10646. {
  10647. name: "Macro",
  10648. height: math.unit(944, "feet")
  10649. },
  10650. {
  10651. name: "Macro+",
  10652. height: math.unit(9480, "feet")
  10653. },
  10654. {
  10655. name: "Megamacro",
  10656. height: math.unit(78752, "feet")
  10657. },
  10658. {
  10659. name: "Megamacro+",
  10660. height: math.unit(630128, "feet")
  10661. },
  10662. {
  10663. name: "Megamacro++",
  10664. height: math.unit(3150695, "feet")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Mocha Aura" },
  10670. {
  10671. front: {
  10672. height: math.unit(7 + 5 / 12, "feet"),
  10673. weight: math.unit(450, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/mocha-aura/front.svg",
  10677. extra: 1907 / 1817,
  10678. bottom: 0.04
  10679. }
  10680. },
  10681. back: {
  10682. height: math.unit(7 + 5 / 12, "feet"),
  10683. weight: math.unit(450, "lb"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/mocha-aura/back.svg",
  10687. extra: 1900 / 1825,
  10688. bottom: 0.045
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Nano",
  10695. height: math.unit(1, "nm")
  10696. },
  10697. {
  10698. name: "Megamicro",
  10699. height: math.unit(1, "mm")
  10700. },
  10701. {
  10702. name: "Micro",
  10703. height: math.unit(3, "inches")
  10704. },
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(7 + 5 / 12, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(30, "feet")
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(3500, "feet")
  10717. },
  10718. {
  10719. name: "Teramacro",
  10720. height: math.unit(500000, "miles")
  10721. },
  10722. {
  10723. name: "Petamacro",
  10724. height: math.unit(50000000000000000, "parsecs")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Ilisha Devya" },
  10730. {
  10731. front: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(150, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/ilisha-devya/front.svg",
  10737. extra: 1,
  10738. bottom: 0.175
  10739. }
  10740. },
  10741. back: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Back",
  10745. image: {
  10746. source: "./media/characters/ilisha-devya/back.svg",
  10747. extra: 1,
  10748. bottom: 0.015
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(500, "feet"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(10, "miles")
  10761. },
  10762. {
  10763. name: "Gigamacro",
  10764. height: math.unit(100000, "miles")
  10765. },
  10766. {
  10767. name: "Examacro",
  10768. height: math.unit(1e9, "lightyears")
  10769. },
  10770. {
  10771. name: "Omniversal",
  10772. height: math.unit(1e33, "lightyears")
  10773. },
  10774. {
  10775. name: "Beyond Infinite",
  10776. height: math.unit(1e100, "lightyears")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Mira" },
  10782. {
  10783. Side: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(150, "lb"),
  10786. name: "Side",
  10787. image: {
  10788. source: "./media/characters/mira/side.svg",
  10789. extra: 900 / 799,
  10790. bottom: 0.02
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Human Size",
  10797. height: math.unit(6, "feet")
  10798. },
  10799. {
  10800. name: "Macro",
  10801. height: math.unit(100, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(10, "miles")
  10807. },
  10808. {
  10809. name: "Gigamacro",
  10810. height: math.unit(25000, "miles")
  10811. },
  10812. {
  10813. name: "Teramacro",
  10814. height: math.unit(300, "AU")
  10815. },
  10816. {
  10817. name: "Full Size",
  10818. height: math.unit(4.5e10, "lightyears")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Holly" },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(150, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/holly/front.svg",
  10831. extra: 639 / 606
  10832. }
  10833. },
  10834. back: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(150, "lb"),
  10837. name: "Back",
  10838. image: {
  10839. source: "./media/characters/holly/back.svg",
  10840. extra: 623 / 598
  10841. }
  10842. },
  10843. frontWorking: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(150, "lb"),
  10846. name: "Front (Working)",
  10847. image: {
  10848. source: "./media/characters/holly/front-working.svg",
  10849. extra: 607 / 577,
  10850. bottom: 0.048
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Normal",
  10857. height: math.unit(12 + 3 / 12, "feet"),
  10858. default: true
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Porter" },
  10864. {
  10865. front: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/porter/front.svg",
  10871. extra: 1,
  10872. bottom: 0.01
  10873. }
  10874. },
  10875. frontRobes: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(150, "lb"),
  10878. name: "Front (Robes)",
  10879. image: {
  10880. source: "./media/characters/porter/front-robes.svg",
  10881. extra: 1.01,
  10882. bottom: 0.01
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(11 + 9 / 12, "feet"),
  10890. default: true
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Lucy" },
  10896. {
  10897. legendary: {
  10898. height: math.unit(6, "feet"),
  10899. weight: math.unit(150, "lb"),
  10900. name: "Legendary",
  10901. image: {
  10902. source: "./media/characters/lucy/legendary.svg",
  10903. extra: 1355 / 1100,
  10904. bottom: 0.045
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Legendary",
  10911. height: math.unit(86882 * 2, "miles"),
  10912. default: true
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Drusilla" },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(150, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/drusilla/front.svg",
  10925. extra: 678 / 635,
  10926. bottom: 0.03
  10927. }
  10928. },
  10929. back: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(150, "lb"),
  10932. name: "Back",
  10933. image: {
  10934. source: "./media/characters/drusilla/back.svg",
  10935. extra: 678 / 635,
  10936. bottom: 0.005
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(100, "feet")
  10944. },
  10945. {
  10946. name: "Canon Height",
  10947. height: math.unit(2000, "feet"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Renard Thatch" },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(180, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/renard-thatch/front.svg",
  10961. extra: 2411 / 2275,
  10962. bottom: 0.01
  10963. }
  10964. },
  10965. frontPosing: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(180, "lb"),
  10968. name: "Front (Posing)",
  10969. image: {
  10970. source: "./media/characters/renard-thatch/front-posing.svg",
  10971. extra: 2381 / 2261,
  10972. bottom: 0.01
  10973. }
  10974. },
  10975. back: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(180, "lb"),
  10978. name: "Back",
  10979. image: {
  10980. source: "./media/characters/renard-thatch/back.svg",
  10981. extra: 2428 / 2288
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(3, "inches")
  10989. },
  10990. {
  10991. name: "Default",
  10992. height: math.unit(6, "feet"),
  10993. default: true
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(75, "feet")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Sekvra" },
  11003. {
  11004. front: {
  11005. height: math.unit(1450, "feet"),
  11006. weight: math.unit(1.21e6, "tons"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/sekvra/front.svg",
  11010. extra: 1,
  11011. bottom: 0.03
  11012. }
  11013. },
  11014. frontClothed: {
  11015. height: math.unit(1450, "feet"),
  11016. weight: math.unit(1.21e6, "tons"),
  11017. name: "Front (Clothed)",
  11018. image: {
  11019. source: "./media/characters/sekvra/front-clothed.svg",
  11020. extra: 1,
  11021. bottom: 0.03
  11022. }
  11023. },
  11024. side: {
  11025. height: math.unit(1450, "feet"),
  11026. weight: math.unit(1.21e6, "tons"),
  11027. name: "Side",
  11028. image: {
  11029. source: "./media/characters/sekvra/side.svg",
  11030. extra: 1,
  11031. bottom: 0.025
  11032. }
  11033. },
  11034. back: {
  11035. height: math.unit(1450, "feet"),
  11036. weight: math.unit(1.21e6, "tons"),
  11037. name: "Back",
  11038. image: {
  11039. source: "./media/characters/sekvra/back.svg",
  11040. extra: 1,
  11041. bottom: 0.005
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(1450, "feet"),
  11049. default: true
  11050. },
  11051. {
  11052. name: "Megamacro",
  11053. height: math.unit(15000, "feet")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Carmine" },
  11059. {
  11060. front: {
  11061. height: math.unit(6, "feet"),
  11062. weight: math.unit(150, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/carmine/front.svg",
  11066. extra: 1,
  11067. bottom: 0.035
  11068. }
  11069. },
  11070. frontArmor: {
  11071. height: math.unit(6, "feet"),
  11072. weight: math.unit(150, "lb"),
  11073. name: "Front (Armor)",
  11074. image: {
  11075. source: "./media/characters/carmine/front-armor.svg",
  11076. extra: 1,
  11077. bottom: 0.035
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Large",
  11084. height: math.unit(1, "mile")
  11085. },
  11086. {
  11087. name: "Huge",
  11088. height: math.unit(40, "miles"),
  11089. default: true
  11090. },
  11091. {
  11092. name: "Colossal",
  11093. height: math.unit(2500, "miles")
  11094. },
  11095. ]
  11096. ))
  11097. characterMakers.push(() => makeCharacter(
  11098. { name: "Elyssia" },
  11099. {
  11100. front: {
  11101. height: math.unit(6, "feet"),
  11102. weight: math.unit(150, "lb"),
  11103. name: "Front",
  11104. image: {
  11105. source: "./media/characters/elyssia/front.svg",
  11106. extra: 2201 / 2035,
  11107. bottom: 0.05
  11108. }
  11109. },
  11110. frontClothed: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(150, "lb"),
  11113. name: "Front (Clothed)",
  11114. image: {
  11115. source: "./media/characters/elyssia/front-clothed.svg",
  11116. extra: 2201 / 2035,
  11117. bottom: 0.05
  11118. }
  11119. },
  11120. back: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(150, "lb"),
  11123. name: "Back",
  11124. image: {
  11125. source: "./media/characters/elyssia/back.svg",
  11126. extra: 2201 / 2035,
  11127. bottom: 0.013
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Smaller",
  11134. height: math.unit(150, "feet")
  11135. },
  11136. {
  11137. name: "Standard",
  11138. height: math.unit(1400, "feet"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Distracted",
  11143. height: math.unit(15000, "feet")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Geno Maxwell" },
  11149. {
  11150. front: {
  11151. height: math.unit(7 + 4 / 12, "feet"),
  11152. weight: math.unit(500, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/geno-maxwell/front.svg",
  11156. extra: 2207 / 2040,
  11157. bottom: 0.015
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Micro",
  11164. height: math.unit(3, "inches")
  11165. },
  11166. {
  11167. name: "Normal",
  11168. height: math.unit(7 + 4 / 12, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Macro",
  11173. height: math.unit(220, "feet")
  11174. },
  11175. {
  11176. name: "Megamacro",
  11177. height: math.unit(11, "miles")
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Regena Maxwell" },
  11183. {
  11184. front: {
  11185. height: math.unit(7 + 4 / 12, "feet"),
  11186. weight: math.unit(500, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/regena-maxwell/front.svg",
  11190. extra: 3115 / 2770,
  11191. bottom: 0.02
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Normal",
  11198. height: math.unit(7 + 4 / 12, "feet"),
  11199. default: true
  11200. },
  11201. {
  11202. name: "Macro",
  11203. height: math.unit(220, "feet")
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(11, "miles")
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "XGlidingDragonX" },
  11213. {
  11214. front: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Front",
  11218. image: {
  11219. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11220. extra: 860 / 690,
  11221. bottom: 0.03
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(1.7, "meters"),
  11229. default: true
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Quilly" },
  11235. {
  11236. front: {
  11237. height: math.unit(6, "feet"),
  11238. weight: math.unit(150, "lb"),
  11239. name: "Front",
  11240. image: {
  11241. source: "./media/characters/quilly/front.svg",
  11242. extra: 890 / 776
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Gigamacro",
  11249. height: math.unit(404090, "miles"),
  11250. default: true
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "Tempest" },
  11256. {
  11257. front: {
  11258. height: math.unit(7 + 8 / 12, "feet"),
  11259. weight: math.unit(350, "lb"),
  11260. name: "Front",
  11261. image: {
  11262. source: "./media/characters/tempest/front.svg",
  11263. extra: 1175 / 1086,
  11264. bottom: 0.02
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(7 + 8 / 12, "feet"),
  11272. default: true
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Rodger" },
  11278. {
  11279. side: {
  11280. height: math.unit(4 + 5 / 12, "feet"),
  11281. weight: math.unit(80, "lb"),
  11282. name: "Side",
  11283. image: {
  11284. source: "./media/characters/rodger/side.svg",
  11285. extra: 1235 / 1118
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Micro",
  11292. height: math.unit(1, "inch")
  11293. },
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(4 + 5 / 12, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(120, "feet")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Danyel" },
  11307. {
  11308. front: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/danyel/front.svg",
  11314. extra: 1185 / 1123,
  11315. bottom: 0.05
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Shrunken",
  11322. height: math.unit(0.5, "mm")
  11323. },
  11324. {
  11325. name: "Micro",
  11326. height: math.unit(1, "mm"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Upsized",
  11331. height: math.unit(5 + 5 / 12, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Vivian Bijoux" },
  11337. {
  11338. front: {
  11339. height: math.unit(5 + 6 / 12, "feet"),
  11340. weight: math.unit(200, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/vivian-bijoux/front.svg",
  11344. extra: 1,
  11345. bottom: 0.072
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(5 + 6 / 12, "feet"),
  11353. default: true
  11354. },
  11355. {
  11356. name: "Bad Dream",
  11357. height: math.unit(500, "feet")
  11358. },
  11359. {
  11360. name: "Nightmare",
  11361. height: math.unit(500, "miles")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Zeta" },
  11367. {
  11368. front: {
  11369. height: math.unit(6 + 1 / 12, "feet"),
  11370. weight: math.unit(260, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/zeta/front.svg",
  11374. extra: 1968 / 1889,
  11375. bottom: 0.06
  11376. }
  11377. },
  11378. back: {
  11379. height: math.unit(6 + 1 / 12, "feet"),
  11380. weight: math.unit(260, "lb"),
  11381. name: "Back",
  11382. image: {
  11383. source: "./media/characters/zeta/back.svg",
  11384. extra: 1944 / 1858,
  11385. bottom: 0.03
  11386. }
  11387. },
  11388. hand: {
  11389. height: math.unit(1.112, "feet"),
  11390. name: "Hand",
  11391. image: {
  11392. source: "./media/characters/zeta/hand.svg"
  11393. }
  11394. },
  11395. foot: {
  11396. height: math.unit(1.48, "feet"),
  11397. name: "Foot",
  11398. image: {
  11399. source: "./media/characters/zeta/foot.svg"
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Micro",
  11406. height: math.unit(6, "inches")
  11407. },
  11408. {
  11409. name: "Normal",
  11410. height: math.unit(6 + 1 / 12, "feet"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(20, "feet")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Jamie Larsen" },
  11421. {
  11422. front: {
  11423. height: math.unit(6, "feet"),
  11424. weight: math.unit(150, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/jamie-larsen/front.svg",
  11428. extra: 962 / 933,
  11429. bottom: 0.02
  11430. }
  11431. },
  11432. back: {
  11433. height: math.unit(6, "feet"),
  11434. weight: math.unit(150, "lb"),
  11435. name: "Back",
  11436. image: {
  11437. source: "./media/characters/jamie-larsen/back.svg",
  11438. extra: 997 / 946
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(28 + 7 / 12, "feet"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Macro+",
  11450. height: math.unit(180, "feet")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(10, "miles")
  11455. },
  11456. {
  11457. name: "Gigamacro",
  11458. height: math.unit(200000, "miles")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Vance" },
  11464. {
  11465. front: {
  11466. height: math.unit(6, "feet"),
  11467. weight: math.unit(120, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/vance/front.svg",
  11471. extra: 1980 / 1890,
  11472. bottom: 0.09
  11473. }
  11474. },
  11475. back: {
  11476. height: math.unit(6, "feet"),
  11477. weight: math.unit(120, "lb"),
  11478. name: "Back",
  11479. image: {
  11480. source: "./media/characters/vance/back.svg",
  11481. extra: 2081 / 1994,
  11482. bottom: 0.014
  11483. }
  11484. },
  11485. hand: {
  11486. height: math.unit(0.88, "feet"),
  11487. name: "Hand",
  11488. image: {
  11489. source: "./media/characters/vance/hand.svg"
  11490. }
  11491. },
  11492. foot: {
  11493. height: math.unit(0.64, "feet"),
  11494. name: "Foot",
  11495. image: {
  11496. source: "./media/characters/vance/foot.svg"
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Small",
  11503. height: math.unit(90, "feet"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Macro",
  11508. height: math.unit(100, "meters")
  11509. },
  11510. {
  11511. name: "Megamacro",
  11512. height: math.unit(15, "miles")
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "Xochitl" },
  11518. {
  11519. front: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(180, "lb"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/xochitl/front.svg",
  11525. extra: 2297 / 2261,
  11526. bottom: 0.065
  11527. }
  11528. },
  11529. back: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(180, "lb"),
  11532. name: "Back",
  11533. image: {
  11534. source: "./media/characters/xochitl/back.svg",
  11535. extra: 2386 / 2354,
  11536. bottom: 0.01
  11537. }
  11538. },
  11539. foot: {
  11540. height: math.unit(6 / 5 * 1.15, "feet"),
  11541. weight: math.unit(150, "lb"),
  11542. name: "Foot",
  11543. image: {
  11544. source: "./media/characters/xochitl/foot.svg"
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Macro",
  11551. height: math.unit(80, "feet")
  11552. },
  11553. {
  11554. name: "Macro+",
  11555. height: math.unit(400, "feet"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Gigamacro",
  11560. height: math.unit(80000, "miles")
  11561. },
  11562. {
  11563. name: "Gigamacro+",
  11564. height: math.unit(400000, "miles")
  11565. },
  11566. {
  11567. name: "Teramacro",
  11568. height: math.unit(300, "AU")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Vincent" },
  11574. {
  11575. front: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(150, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/vincent/front.svg",
  11581. extra: 1130 / 1080,
  11582. bottom: 0.055
  11583. }
  11584. },
  11585. beak: {
  11586. height: math.unit(6 * 0.1, "feet"),
  11587. name: "Beak",
  11588. image: {
  11589. source: "./media/characters/vincent/beak.svg"
  11590. }
  11591. },
  11592. hand: {
  11593. height: math.unit(6 * 0.85, "feet"),
  11594. weight: math.unit(150, "lb"),
  11595. name: "Hand",
  11596. image: {
  11597. source: "./media/characters/vincent/hand.svg"
  11598. }
  11599. },
  11600. foot: {
  11601. height: math.unit(6 * 0.19, "feet"),
  11602. weight: math.unit(150, "lb"),
  11603. name: "Foot",
  11604. image: {
  11605. source: "./media/characters/vincent/foot.svg"
  11606. }
  11607. },
  11608. },
  11609. [
  11610. {
  11611. name: "Base",
  11612. height: math.unit(6 + 5 / 12, "feet"),
  11613. default: true
  11614. },
  11615. {
  11616. name: "Macro",
  11617. height: math.unit(300, "feet")
  11618. },
  11619. {
  11620. name: "Megamacro",
  11621. height: math.unit(2, "miles")
  11622. },
  11623. {
  11624. name: "Gigamacro",
  11625. height: math.unit(1000, "miles")
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Jay" },
  11631. {
  11632. front: {
  11633. height: math.unit(6 + 2 / 12, "feet"),
  11634. weight: math.unit(265, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/jay/front.svg",
  11638. extra: 1510 / 1430,
  11639. bottom: 0.042
  11640. }
  11641. },
  11642. back: {
  11643. height: math.unit(6 + 2 / 12, "feet"),
  11644. weight: math.unit(265, "lb"),
  11645. name: "Back",
  11646. image: {
  11647. source: "./media/characters/jay/back.svg",
  11648. extra: 1510 / 1430,
  11649. bottom: 0.025
  11650. }
  11651. },
  11652. clothed: {
  11653. height: math.unit(6 + 2 / 12, "feet"),
  11654. weight: math.unit(265, "lb"),
  11655. name: "Front (Clothed)",
  11656. image: {
  11657. source: "./media/characters/jay/clothed.svg",
  11658. extra: 744 / 699,
  11659. bottom: 0.043
  11660. }
  11661. },
  11662. head: {
  11663. height: math.unit(1.772, "feet"),
  11664. name: "Head",
  11665. image: {
  11666. source: "./media/characters/jay/head.svg"
  11667. }
  11668. },
  11669. sizeRay: {
  11670. height: math.unit(1.331, "feet"),
  11671. name: "Size Ray",
  11672. image: {
  11673. source: "./media/characters/jay/size-ray.svg"
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Micro",
  11680. height: math.unit(1, "inch")
  11681. },
  11682. {
  11683. name: "Normal",
  11684. height: math.unit(6 + 2 / 12, "feet"),
  11685. default: true
  11686. },
  11687. {
  11688. name: "Macro",
  11689. height: math.unit(1, "mile")
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(100, "miles")
  11694. },
  11695. ]
  11696. ))
  11697. characterMakers.push(() => makeCharacter(
  11698. { name: "Coatl" },
  11699. {
  11700. front: {
  11701. height: math.unit(2, "meters"),
  11702. weight: math.unit(500, "kg"),
  11703. name: "Front",
  11704. image: {
  11705. source: "./media/characters/coatl/front.svg",
  11706. extra: 3948 / 3500,
  11707. bottom: 0.082
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Normal",
  11714. height: math.unit(4, "meters")
  11715. },
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(100, "meters"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Macro+",
  11723. height: math.unit(300, "meters")
  11724. },
  11725. {
  11726. name: "Megamacro",
  11727. height: math.unit(3, "gigameters")
  11728. },
  11729. {
  11730. name: "Megamacro+",
  11731. height: math.unit(300, "terameters")
  11732. },
  11733. {
  11734. name: "Megamacro++",
  11735. height: math.unit(3, "lightyears")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Shiroryu" },
  11741. {
  11742. front: {
  11743. height: math.unit(6, "feet"),
  11744. weight: math.unit(50, "kg"),
  11745. name: "front",
  11746. image: {
  11747. source: "./media/characters/shiroryu/front.svg",
  11748. extra: 1990 / 1935
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Mortal Mingling",
  11755. height: math.unit(3, "meters")
  11756. },
  11757. {
  11758. name: "Kaiju-ish",
  11759. height: math.unit(250, "meters")
  11760. },
  11761. {
  11762. name: "Somewhat Godly",
  11763. height: math.unit(400, "km"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Planetary",
  11768. height: math.unit(300, "megameters")
  11769. },
  11770. {
  11771. name: "Galaxy-dwarfing",
  11772. height: math.unit(450, "kiloparsecs")
  11773. },
  11774. {
  11775. name: "Universe Eater",
  11776. height: math.unit(150, "gigaparsecs")
  11777. },
  11778. {
  11779. name: "Almost Immeasurable",
  11780. height: math.unit(1.3e266, "yottaparsecs")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Umeko" },
  11786. {
  11787. front: {
  11788. height: math.unit(6, "feet"),
  11789. weight: math.unit(150, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/umeko/front.svg",
  11793. extra: 1,
  11794. bottom: 0.019
  11795. }
  11796. },
  11797. frontArmored: {
  11798. height: math.unit(6, "feet"),
  11799. weight: math.unit(150, "lb"),
  11800. name: "Front (Armored)",
  11801. image: {
  11802. source: "./media/characters/umeko/front-armored.svg",
  11803. extra: 1,
  11804. bottom: 0.021
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(220, "feet"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Guardian Dragon",
  11816. height: math.unit(50, "miles")
  11817. },
  11818. {
  11819. name: "Cosmic",
  11820. height: math.unit(800000, "miles")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Cassidy" },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/cassidy/front.svg",
  11833. extra: 1,
  11834. bottom: 0.043
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Canon Height",
  11841. height: math.unit(120, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Macro+",
  11846. height: math.unit(400, "feet")
  11847. },
  11848. {
  11849. name: "Macro++",
  11850. height: math.unit(4000, "feet")
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(3, "miles")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Isaac" },
  11860. {
  11861. front: {
  11862. height: math.unit(6, "feet"),
  11863. weight: math.unit(150, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/isaac/front.svg",
  11867. extra: 896 / 815,
  11868. bottom: 0.11
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Human Size",
  11875. height: math.unit(8, "feet"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(400, "feet")
  11881. },
  11882. {
  11883. name: "Megamacro",
  11884. height: math.unit(50, "miles")
  11885. },
  11886. {
  11887. name: "Canon Height",
  11888. height: math.unit(200, "AU")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Sleekit" },
  11894. {
  11895. front: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(72, "kg"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/sleekit/front.svg",
  11901. extra: 4693 / 4487,
  11902. bottom: 0.012
  11903. }
  11904. },
  11905. },
  11906. [
  11907. {
  11908. name: "Minimum Height",
  11909. height: math.unit(10, "meters")
  11910. },
  11911. {
  11912. name: "Smaller",
  11913. height: math.unit(25, "meters")
  11914. },
  11915. {
  11916. name: "Larger",
  11917. height: math.unit(38, "meters"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Maximum height",
  11922. height: math.unit(100, "meters")
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Nillia" },
  11928. {
  11929. front: {
  11930. height: math.unit(6, "feet"),
  11931. weight: math.unit(150, "lb"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/nillia/front.svg",
  11935. extra: 2195 / 2037,
  11936. bottom: 0.005
  11937. }
  11938. },
  11939. back: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(150, "lb"),
  11942. name: "Back",
  11943. image: {
  11944. source: "./media/characters/nillia/back.svg",
  11945. extra: 2195 / 2037,
  11946. bottom: 0.005
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Canon Height",
  11953. height: math.unit(489, "feet"),
  11954. default: true
  11955. }
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Mesmyriza" },
  11960. {
  11961. front: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(150, "lb"),
  11964. name: "Front",
  11965. image: {
  11966. source: "./media/characters/mesmyriza/front.svg",
  11967. extra: 2067 / 1784,
  11968. bottom: 0.035
  11969. }
  11970. },
  11971. foot: {
  11972. height: math.unit(6 / (250 / 35), "feet"),
  11973. name: "Foot",
  11974. image: {
  11975. source: "./media/characters/mesmyriza/foot.svg"
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(457, "meters"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(8, "megameters")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Saudade" },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(250, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/saudade/front.svg",
  12000. extra: 1172 / 1139,
  12001. bottom: 0.035
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Micro",
  12008. height: math.unit(3, "inches")
  12009. },
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(6, "feet"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Macro",
  12017. height: math.unit(50, "feet")
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(2800, "feet")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Keireer" },
  12027. {
  12028. front: {
  12029. height: math.unit(5 + 4 / 12, "feet"),
  12030. weight: math.unit(100, "lb"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/keireer/front.svg",
  12034. extra: 716 / 666,
  12035. bottom: 0.05
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(5 + 4 / 12, "feet"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Mirja" },
  12049. {
  12050. front: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(90, "kg"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/mirja/front.svg",
  12056. extra: 1789 / 1683,
  12057. bottom: 0.05
  12058. }
  12059. },
  12060. frontDressed: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(90, "lb"),
  12063. name: "Front (Dressed)",
  12064. image: {
  12065. source: "./media/characters/mirja/front-dressed.svg",
  12066. extra: 1789 / 1683,
  12067. bottom: 0.05
  12068. }
  12069. },
  12070. back: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(90, "lb"),
  12073. name: "Back",
  12074. image: {
  12075. source: "./media/characters/mirja/back.svg",
  12076. extra: 953 / 917,
  12077. bottom: 0.017
  12078. }
  12079. },
  12080. },
  12081. [
  12082. {
  12083. name: "\"Incognito\"",
  12084. height: math.unit(3, "meters")
  12085. },
  12086. {
  12087. name: "Strolling Size",
  12088. height: math.unit(15, "km")
  12089. },
  12090. {
  12091. name: "Larger Strolling Size",
  12092. height: math.unit(400, "km")
  12093. },
  12094. {
  12095. name: "Preferred Size",
  12096. height: math.unit(5000, "km")
  12097. },
  12098. {
  12099. name: "True Size",
  12100. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12101. default: true
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Nightraver" },
  12107. {
  12108. front: {
  12109. height: math.unit(15, "feet"),
  12110. weight: math.unit(880, "kg"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/nightraver/front.svg",
  12114. extra: 2444 / 2160,
  12115. bottom: 0.027
  12116. }
  12117. },
  12118. back: {
  12119. height: math.unit(15, "feet"),
  12120. weight: math.unit(880, "kg"),
  12121. name: "Back",
  12122. image: {
  12123. source: "./media/characters/nightraver/back.svg",
  12124. extra: 2309 / 2180,
  12125. bottom: 0.005
  12126. }
  12127. },
  12128. sole: {
  12129. height: math.unit(2.878, "feet"),
  12130. name: "Sole",
  12131. image: {
  12132. source: "./media/characters/nightraver/sole.svg"
  12133. }
  12134. },
  12135. foot: {
  12136. height: math.unit(2.285, "feet"),
  12137. name: "Foot",
  12138. image: {
  12139. source: "./media/characters/nightraver/foot.svg"
  12140. }
  12141. },
  12142. maw: {
  12143. height: math.unit(2.67, "feet"),
  12144. name: "Maw",
  12145. image: {
  12146. source: "./media/characters/nightraver/maw.svg"
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Micro",
  12153. height: math.unit(1, "cm")
  12154. },
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(15, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Macro",
  12162. height: math.unit(300, "feet")
  12163. },
  12164. {
  12165. name: "Megamacro",
  12166. height: math.unit(300, "miles")
  12167. },
  12168. {
  12169. name: "Gigamacro",
  12170. height: math.unit(10000, "miles")
  12171. },
  12172. ]
  12173. ))
  12174. characterMakers.push(() => makeCharacter(
  12175. { name: "Arc" },
  12176. {
  12177. side: {
  12178. height: math.unit(2, "inches"),
  12179. weight: math.unit(5, "grams"),
  12180. name: "Side",
  12181. image: {
  12182. source: "./media/characters/arc/side.svg"
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Micro",
  12189. height: math.unit(2, "inches"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Nebula Shahar" },
  12196. {
  12197. front: {
  12198. height: math.unit(1.1938, "meters"),
  12199. weight: math.unit(54, "kg"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/nebula-shahar/front.svg",
  12203. extra: 1642 / 1436,
  12204. bottom: 0.06
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Megamicro",
  12211. height: math.unit(0.3, "mm")
  12212. },
  12213. {
  12214. name: "Micro",
  12215. height: math.unit(3, "cm")
  12216. },
  12217. {
  12218. name: "Normal",
  12219. height: math.unit(138, "cm"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(30, "m")
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Shayla" },
  12230. {
  12231. front: {
  12232. height: math.unit(5.24, "feet"),
  12233. weight: math.unit(150, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/shayla/front.svg",
  12237. extra: 1512 / 1414,
  12238. bottom: 0.01
  12239. }
  12240. },
  12241. back: {
  12242. height: math.unit(5.24, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Back",
  12245. image: {
  12246. source: "./media/characters/shayla/back.svg",
  12247. extra: 1512 / 1414
  12248. }
  12249. },
  12250. hand: {
  12251. height: math.unit(0.7781496062992126, "feet"),
  12252. name: "Hand",
  12253. image: {
  12254. source: "./media/characters/shayla/hand.svg"
  12255. }
  12256. },
  12257. foot: {
  12258. height: math.unit(1.4206036745406823, "feet"),
  12259. name: "Foot",
  12260. image: {
  12261. source: "./media/characters/shayla/foot.svg"
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Micro",
  12268. height: math.unit(0.32, "feet")
  12269. },
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(5.24, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Macro",
  12277. height: math.unit(492.12, "feet")
  12278. },
  12279. {
  12280. name: "Megamacro",
  12281. height: math.unit(186.41, "miles")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Pia Jr." },
  12287. {
  12288. front: {
  12289. height: math.unit(2.2, "m"),
  12290. weight: math.unit(120, "kg"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/pia-jr/front.svg",
  12294. extra: 1000 / 970,
  12295. bottom: 0.035
  12296. }
  12297. },
  12298. hand: {
  12299. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12300. name: "Hand",
  12301. image: {
  12302. source: "./media/characters/pia-jr/hand.svg"
  12303. }
  12304. },
  12305. paw: {
  12306. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12307. name: "Paw",
  12308. image: {
  12309. source: "./media/characters/pia-jr/paw.svg"
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Micro",
  12316. height: math.unit(1.2, "cm")
  12317. },
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(2.2, "m"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Macro",
  12325. height: math.unit(180, "m")
  12326. },
  12327. {
  12328. name: "Megamacro",
  12329. height: math.unit(420, "km")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Pia Sr." },
  12335. {
  12336. front: {
  12337. height: math.unit(2, "m"),
  12338. weight: math.unit(115, "kg"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/pia-sr/front.svg",
  12342. extra: 760 / 730,
  12343. bottom: 0.015
  12344. }
  12345. },
  12346. back: {
  12347. height: math.unit(2, "m"),
  12348. weight: math.unit(115, "kg"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/pia-sr/back.svg",
  12352. extra: 760 / 730,
  12353. bottom: 0.01
  12354. }
  12355. },
  12356. hand: {
  12357. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12358. name: "Hand",
  12359. image: {
  12360. source: "./media/characters/pia-sr/hand.svg"
  12361. }
  12362. },
  12363. foot: {
  12364. height: math.unit(1.83, "feet"),
  12365. name: "Foot",
  12366. image: {
  12367. source: "./media/characters/pia-sr/foot.svg"
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(88, "mm")
  12375. },
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(2, "m"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro",
  12383. height: math.unit(200, "m")
  12384. },
  12385. {
  12386. name: "Megamacro",
  12387. height: math.unit(420, "km")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "KIBIBYTE" },
  12393. {
  12394. front: {
  12395. height: math.unit(8 + 2 / 12, "feet"),
  12396. weight: math.unit(300, "lb"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/kibibyte/front.svg",
  12400. extra: 2221 / 2098,
  12401. bottom: 0.04
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(8 + 2 / 12, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Socialable Macro",
  12413. height: math.unit(50, "feet")
  12414. },
  12415. {
  12416. name: "Macro",
  12417. height: math.unit(300, "feet")
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(500, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Felix" },
  12427. {
  12428. front: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(150, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/felix/front.svg",
  12434. extra: 762 / 722,
  12435. bottom: 0.02
  12436. }
  12437. },
  12438. frontClothed: {
  12439. height: math.unit(6, "feet"),
  12440. weight: math.unit(150, "lb"),
  12441. name: "Front (Clothed)",
  12442. image: {
  12443. source: "./media/characters/felix/front-clothed.svg",
  12444. extra: 762 / 722,
  12445. bottom: 0.02
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Normal",
  12452. height: math.unit(6 + 8 / 12, "feet"),
  12453. default: true
  12454. },
  12455. {
  12456. name: "Macro",
  12457. height: math.unit(2600, "feet")
  12458. },
  12459. {
  12460. name: "Megamacro",
  12461. height: math.unit(450, "miles")
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Tobo" },
  12467. {
  12468. front: {
  12469. height: math.unit(6 + 1 / 12, "feet"),
  12470. weight: math.unit(250, "lb"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/tobo/front.svg",
  12474. extra: 608 / 586,
  12475. bottom: 0.023
  12476. }
  12477. },
  12478. back: {
  12479. height: math.unit(6 + 1 / 12, "feet"),
  12480. weight: math.unit(250, "lb"),
  12481. name: "Back",
  12482. image: {
  12483. source: "./media/characters/tobo/back.svg",
  12484. extra: 608 / 586
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Nano",
  12491. height: math.unit(2, "nm")
  12492. },
  12493. {
  12494. name: "Megamicro",
  12495. height: math.unit(0.1, "mm")
  12496. },
  12497. {
  12498. name: "Micro",
  12499. height: math.unit(1, "inch"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Human-sized",
  12504. height: math.unit(6 + 1 / 12, "feet")
  12505. },
  12506. {
  12507. name: "Macro",
  12508. height: math.unit(250, "feet")
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(75, "miles")
  12513. },
  12514. {
  12515. name: "Texas-sized",
  12516. height: math.unit(750, "miles")
  12517. },
  12518. {
  12519. name: "Teramacro",
  12520. height: math.unit(50000, "miles")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Danny Kapowsky" },
  12526. {
  12527. front: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(269, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/danny-kapowsky/front.svg",
  12533. extra: 766 / 736,
  12534. bottom: 0.044
  12535. }
  12536. },
  12537. back: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(269, "lb"),
  12540. name: "Back",
  12541. image: {
  12542. source: "./media/characters/danny-kapowsky/back.svg",
  12543. extra: 797 / 760,
  12544. bottom: 0.025
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Macro",
  12551. height: math.unit(150, "feet"),
  12552. default: true
  12553. },
  12554. {
  12555. name: "Macro+",
  12556. height: math.unit(200, "feet")
  12557. },
  12558. {
  12559. name: "Macro++",
  12560. height: math.unit(300, "feet")
  12561. },
  12562. {
  12563. name: "Macro+++",
  12564. height: math.unit(400, "feet")
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Finn" },
  12570. {
  12571. side: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(170, "lb"),
  12574. name: "Side",
  12575. image: {
  12576. source: "./media/characters/finn/side.svg",
  12577. extra: 1953 / 1807,
  12578. bottom: 0.057
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(14445, "feet"),
  12586. default: true
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Roy" },
  12592. {
  12593. front: {
  12594. height: math.unit(5 + 6 / 12, "feet"),
  12595. weight: math.unit(125, "lb"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/roy/front.svg",
  12599. extra: 1,
  12600. bottom: 0.11
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Micro",
  12607. height: math.unit(3, "inches"),
  12608. default: true
  12609. },
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(5 + 6 / 12, "feet")
  12613. },
  12614. {
  12615. name: "Lesser Macro",
  12616. height: math.unit(60, "feet")
  12617. },
  12618. {
  12619. name: "Greater Macro",
  12620. height: math.unit(120, "feet")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Aevsivs" },
  12626. {
  12627. front: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(100, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/aevsivs/front.svg",
  12633. extra: 1,
  12634. bottom: 0.03
  12635. }
  12636. },
  12637. back: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(100, "lb"),
  12640. name: "Back",
  12641. image: {
  12642. source: "./media/characters/aevsivs/back.svg"
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Micro",
  12649. height: math.unit(2, "inches"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(5, "feet")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Hildegard" },
  12660. {
  12661. front: {
  12662. height: math.unit(5 + 7 / 12, "feet"),
  12663. weight: math.unit(159, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/hildegard/front.svg",
  12667. extra: 312 / 286,
  12668. bottom: 0.005
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(5 + 7 / 12, "feet"),
  12676. default: true
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Bernard & Wilder" },
  12682. {
  12683. bernard: {
  12684. height: math.unit(2 + 7 / 12, "feet"),
  12685. weight: math.unit(66, "lb"),
  12686. name: "Bernard",
  12687. rename: true,
  12688. image: {
  12689. source: "./media/characters/bernard-wilder/bernard.svg",
  12690. extra: 192 / 128,
  12691. bottom: 0.05
  12692. }
  12693. },
  12694. wilder: {
  12695. height: math.unit(5 + 8 / 12, "feet"),
  12696. weight: math.unit(143, "lb"),
  12697. name: "Wilder",
  12698. rename: true,
  12699. image: {
  12700. source: "./media/characters/bernard-wilder/wilder.svg",
  12701. extra: 361 / 312,
  12702. bottom: 0.02
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(2 + 7 / 12, "feet"),
  12710. default: true
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Hearth" },
  12716. {
  12717. anthro: {
  12718. height: math.unit(6 + 1 / 12, "feet"),
  12719. weight: math.unit(155, "lb"),
  12720. name: "Anthro",
  12721. image: {
  12722. source: "./media/characters/hearth/anthro.svg",
  12723. extra: 260 / 250,
  12724. bottom: 0.02
  12725. }
  12726. },
  12727. feral: {
  12728. height: math.unit(3.78, "feet"),
  12729. weight: math.unit(35, "kg"),
  12730. name: "Feral",
  12731. image: {
  12732. source: "./media/characters/hearth/feral.svg",
  12733. extra: 153 / 135,
  12734. bottom: 0.03
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(6 + 1 / 12, "feet"),
  12742. default: true
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Ingrid" },
  12748. {
  12749. front: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(182, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/ingrid/front.svg",
  12755. extra: 294 / 268,
  12756. bottom: 0.027
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(6, "feet"),
  12764. default: true
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Malgam" },
  12770. {
  12771. eevee: {
  12772. height: math.unit(2 + 10 / 12, "feet"),
  12773. weight: math.unit(86, "lb"),
  12774. name: "Malgam",
  12775. image: {
  12776. source: "./media/characters/malgam/eevee.svg",
  12777. extra: 218 / 180,
  12778. bottom: 0.2
  12779. }
  12780. },
  12781. sylveon: {
  12782. height: math.unit(4, "feet"),
  12783. weight: math.unit(101, "lb"),
  12784. name: "Future Malgam",
  12785. rename: true,
  12786. image: {
  12787. source: "./media/characters/malgam/sylveon.svg",
  12788. extra: 371 / 325,
  12789. bottom: 0.015
  12790. }
  12791. },
  12792. gigantamax: {
  12793. height: math.unit(50, "feet"),
  12794. name: "Gigantamax Malgam",
  12795. rename: true,
  12796. image: {
  12797. source: "./media/characters/malgam/gigantamax.svg"
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Normal",
  12804. height: math.unit(2 + 10 / 12, "feet"),
  12805. default: true
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Fleur" },
  12811. {
  12812. front: {
  12813. height: math.unit(5 + 11 / 12, "feet"),
  12814. weight: math.unit(188, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/fleur/front.svg",
  12818. extra: 309 / 283,
  12819. bottom: 0.007
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(5 + 11 / 12, "feet"),
  12827. default: true
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Jude" },
  12833. {
  12834. front: {
  12835. height: math.unit(5 + 4 / 12, "feet"),
  12836. weight: math.unit(122, "lb"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/jude/front.svg",
  12840. extra: 288 / 273,
  12841. bottom: 0.03
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(5 + 4 / 12, "feet"),
  12849. default: true
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Seara" },
  12855. {
  12856. front: {
  12857. height: math.unit(5 + 11 / 12, "feet"),
  12858. weight: math.unit(190, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/seara/front.svg",
  12862. extra: 1,
  12863. bottom: 0.05
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(5 + 11 / 12, "feet"),
  12871. default: true
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Caspian" },
  12877. {
  12878. front: {
  12879. height: math.unit(16 + 5 / 12, "feet"),
  12880. weight: math.unit(524, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/caspian/front.svg",
  12884. extra: 1,
  12885. bottom: 0.04
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(16 + 5 / 12, "feet"),
  12893. default: true
  12894. },
  12895. ]
  12896. ))
  12897. characterMakers.push(() => makeCharacter(
  12898. { name: "Mika" },
  12899. {
  12900. front: {
  12901. height: math.unit(5 + 7 / 12, "feet"),
  12902. weight: math.unit(170, "lb"),
  12903. name: "Front",
  12904. image: {
  12905. source: "./media/characters/mika/front.svg",
  12906. extra: 1,
  12907. bottom: 0.016
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(5 + 7 / 12, "feet"),
  12915. default: true
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Sol" },
  12921. {
  12922. front: {
  12923. height: math.unit(6 + 2 / 12, "feet"),
  12924. weight: math.unit(268, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/sol/front.svg",
  12928. extra: 247 / 231,
  12929. bottom: 0.05
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(6 + 2 / 12, "feet"),
  12937. default: true
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Umiko" },
  12943. {
  12944. buizel: {
  12945. height: math.unit(2 + 5 / 12, "feet"),
  12946. weight: math.unit(87, "lb"),
  12947. name: "Buizel",
  12948. image: {
  12949. source: "./media/characters/umiko/buizel.svg",
  12950. extra: 172 / 157,
  12951. bottom: 0.01
  12952. }
  12953. },
  12954. floatzel: {
  12955. height: math.unit(5 + 9 / 12, "feet"),
  12956. weight: math.unit(250, "lb"),
  12957. name: "Floatzel",
  12958. image: {
  12959. source: "./media/characters/umiko/floatzel.svg",
  12960. extra: 262 / 248
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(2 + 5 / 12, "feet"),
  12968. default: true
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Iliac" },
  12974. {
  12975. front: {
  12976. height: math.unit(6 + 2 / 12, "feet"),
  12977. weight: math.unit(146, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/iliac/front.svg",
  12981. extra: 389 / 365,
  12982. bottom: 0.035
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(6 + 2 / 12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Topaz" },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(170, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/topaz/front.svg",
  13003. extra: 317 / 303,
  13004. bottom: 0.055
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(6, "feet"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Gabriel" },
  13018. {
  13019. front: {
  13020. height: math.unit(5 + 11 / 12, "feet"),
  13021. weight: math.unit(144, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/gabriel/front.svg",
  13025. extra: 285 / 262,
  13026. bottom: 0.004
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(5 + 11 / 12, "feet"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Tempest (Suicune)" },
  13040. {
  13041. side: {
  13042. height: math.unit(6 + 5 / 12, "feet"),
  13043. weight: math.unit(300, "lb"),
  13044. name: "Side",
  13045. image: {
  13046. source: "./media/characters/tempest-suicune/side.svg",
  13047. extra: 195 / 154,
  13048. bottom: 0.04
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(6 + 5 / 12, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Vulcan" },
  13062. {
  13063. front: {
  13064. height: math.unit(7 + 2 / 12, "feet"),
  13065. weight: math.unit(322, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/vulcan/front.svg",
  13069. extra: 154 / 147,
  13070. bottom: 0.04
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(7 + 2 / 12, "feet"),
  13078. default: true
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Gault" },
  13084. {
  13085. front: {
  13086. height: math.unit(5 + 10 / 12, "feet"),
  13087. weight: math.unit(264, "lb"),
  13088. name: "Front",
  13089. image: {
  13090. source: "./media/characters/gault/front.svg",
  13091. extra: 161 / 140,
  13092. bottom: 0.028
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(5 + 10 / 12, "feet"),
  13100. default: true
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Shard" },
  13106. {
  13107. front: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(150, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/shard/front.svg",
  13113. extra: 273 / 238,
  13114. bottom: 0.02
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(3 + 6 / 12, "feet"),
  13122. default: true
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Ashe" },
  13128. {
  13129. front: {
  13130. height: math.unit(5 + 11 / 12, "feet"),
  13131. weight: math.unit(146, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/ashe/front.svg",
  13135. extra: 400 / 373,
  13136. bottom: 0.01
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(5 + 11 / 12, "feet"),
  13144. default: true
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Beatrix" },
  13150. {
  13151. front: {
  13152. height: math.unit(5 + 5 / 12, "feet"),
  13153. weight: math.unit(135, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/beatrix/front.svg",
  13157. extra: 392 / 379,
  13158. bottom: 0.01
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(6, "feet"),
  13166. default: true
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Ignatius" },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/ignatius/front.svg",
  13179. extra: 245 / 222,
  13180. bottom: 0.01
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(5 + 5 / 12, "feet"),
  13188. default: true
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Mei Li" },
  13194. {
  13195. front: {
  13196. height: math.unit(6 + 2 / 12, "feet"),
  13197. weight: math.unit(138, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/mei-li/front.svg",
  13201. extra: 237 / 229,
  13202. bottom: 0.03
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(6 + 2 / 12, "feet"),
  13210. default: true
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Puru" },
  13216. {
  13217. front: {
  13218. height: math.unit(2 + 4 / 12, "feet"),
  13219. weight: math.unit(62, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/puru/front.svg",
  13223. extra: 206 / 149,
  13224. bottom: 0.06
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Normal",
  13231. height: math.unit(2 + 4 / 12, "feet"),
  13232. default: true
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Kee" },
  13238. {
  13239. taur: {
  13240. height: math.unit(11, "feet"),
  13241. weight: math.unit(500, "lb"),
  13242. name: "Taur",
  13243. image: {
  13244. source: "./media/characters/kee/taur.svg",
  13245. extra: 1,
  13246. bottom: 0.04
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Normal",
  13253. height: math.unit(11, "feet"),
  13254. default: true
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Cobalt (Dracha)" },
  13260. {
  13261. anthro: {
  13262. height: math.unit(7, "feet"),
  13263. weight: math.unit(190, "lb"),
  13264. name: "Anthro",
  13265. image: {
  13266. source: "./media/characters/cobalt-dracha/anthro.svg",
  13267. extra: 231 / 225,
  13268. bottom: 0.04
  13269. }
  13270. },
  13271. feral: {
  13272. height: math.unit(9 + 7 / 12, "feet"),
  13273. weight: math.unit(294, "lb"),
  13274. name: "Feral",
  13275. image: {
  13276. source: "./media/characters/cobalt-dracha/feral.svg",
  13277. extra: 692 / 633,
  13278. bottom: 0.05
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(7, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Java" },
  13292. {
  13293. fallen: {
  13294. height: math.unit(11 + 8 / 12, "feet"),
  13295. weight: math.unit(485, "lb"),
  13296. name: "Java (Fallen)",
  13297. rename: true,
  13298. image: {
  13299. source: "./media/characters/java/fallen.svg",
  13300. extra: 226 / 208,
  13301. bottom: 0.005
  13302. }
  13303. },
  13304. godkin: {
  13305. height: math.unit(10 + 6 / 12, "feet"),
  13306. weight: math.unit(328, "lb"),
  13307. name: "Java (Godkin)",
  13308. rename: true,
  13309. image: {
  13310. source: "./media/characters/java/godkin.svg",
  13311. extra: 270 / 262,
  13312. bottom: 0.02
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(11 + 8 / 12, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Skoll" },
  13326. {
  13327. front: {
  13328. height: math.unit(7 + 8 / 12, "feet"),
  13329. weight: math.unit(320, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/skoll/front.svg",
  13333. extra: 232 / 220,
  13334. bottom: 0.02
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(7 + 8 / 12, "feet"),
  13342. default: true
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Purna" },
  13348. {
  13349. front: {
  13350. height: math.unit(5 + 9 / 12, "feet"),
  13351. weight: math.unit(170, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/purna/front.svg",
  13355. extra: 239 / 229,
  13356. bottom: 0.01
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(5 + 9 / 12, "feet"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Kuva" },
  13370. {
  13371. front: {
  13372. height: math.unit(5 + 9 / 12, "feet"),
  13373. weight: math.unit(142, "lb"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/kuva/front.svg",
  13377. extra: 281 / 271,
  13378. bottom: 0.006
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Normal",
  13385. height: math.unit(5 + 9 / 12, "feet"),
  13386. default: true
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Embra" },
  13392. {
  13393. anthro: {
  13394. height: math.unit(9 + 2 / 12, "feet"),
  13395. weight: math.unit(270, "lb"),
  13396. name: "Anthro",
  13397. image: {
  13398. source: "./media/characters/embra/anthro.svg",
  13399. extra: 200 / 187,
  13400. bottom: 0.02
  13401. }
  13402. },
  13403. feral: {
  13404. height: math.unit(18 + 8 / 12, "feet"),
  13405. weight: math.unit(576, "lb"),
  13406. name: "Feral",
  13407. image: {
  13408. source: "./media/characters/embra/feral.svg",
  13409. extra: 152 / 137,
  13410. bottom: 0.037
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Normal",
  13417. height: math.unit(9 + 2 / 12, "feet"),
  13418. default: true
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Grottos" },
  13424. {
  13425. anthro: {
  13426. height: math.unit(10 + 9 / 12, "feet"),
  13427. weight: math.unit(224, "lb"),
  13428. name: "Anthro",
  13429. image: {
  13430. source: "./media/characters/grottos/anthro.svg",
  13431. extra: 350 / 332,
  13432. bottom: 0.045
  13433. }
  13434. },
  13435. feral: {
  13436. height: math.unit(20 + 7 / 12, "feet"),
  13437. weight: math.unit(629, "lb"),
  13438. name: "Feral",
  13439. image: {
  13440. source: "./media/characters/grottos/feral.svg",
  13441. extra: 207 / 190,
  13442. bottom: 0.05
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(10 + 9 / 12, "feet"),
  13450. default: true
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Frifna" },
  13456. {
  13457. anthro: {
  13458. height: math.unit(9 + 6 / 12, "feet"),
  13459. weight: math.unit(298, "lb"),
  13460. name: "Anthro",
  13461. image: {
  13462. source: "./media/characters/frifna/anthro.svg",
  13463. extra: 282 / 269,
  13464. bottom: 0.015
  13465. }
  13466. },
  13467. feral: {
  13468. height: math.unit(16 + 2 / 12, "feet"),
  13469. weight: math.unit(624, "lb"),
  13470. name: "Feral",
  13471. image: {
  13472. source: "./media/characters/frifna/feral.svg"
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(9 + 6 / 12, "feet"),
  13480. default: true
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Elise" },
  13486. {
  13487. front: {
  13488. height: math.unit(6 + 2 / 12, "feet"),
  13489. weight: math.unit(168, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/elise/front.svg",
  13493. extra: 276 / 271
  13494. }
  13495. },
  13496. },
  13497. [
  13498. {
  13499. name: "Normal",
  13500. height: math.unit(6 + 2 / 12, "feet"),
  13501. default: true
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Glade" },
  13507. {
  13508. front: {
  13509. height: math.unit(5 + 10 / 12, "feet"),
  13510. weight: math.unit(210, "lb"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/glade/front.svg",
  13514. extra: 258 / 247,
  13515. bottom: 0.008
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(5 + 10 / 12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Rina" },
  13529. {
  13530. front: {
  13531. height: math.unit(5 + 10 / 12, "feet"),
  13532. weight: math.unit(129, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/rina/front.svg",
  13536. extra: 266 / 255,
  13537. bottom: 0.005
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Normal",
  13544. height: math.unit(5 + 10 / 12, "feet"),
  13545. default: true
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Veronica" },
  13551. {
  13552. front: {
  13553. height: math.unit(6 + 1 / 12, "feet"),
  13554. weight: math.unit(192, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/veronica/front.svg",
  13558. extra: 319 / 309,
  13559. bottom: 0.005
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(6 + 1 / 12, "feet"),
  13567. default: true
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Braxton" },
  13573. {
  13574. front: {
  13575. height: math.unit(9 + 3 / 12, "feet"),
  13576. weight: math.unit(1100, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/braxton/front.svg",
  13580. extra: 1057 / 984,
  13581. bottom: 0.05
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(9 + 3 / 12, "feet")
  13589. },
  13590. {
  13591. name: "Giant",
  13592. height: math.unit(300, "feet"),
  13593. default: true
  13594. },
  13595. {
  13596. name: "Macro",
  13597. height: math.unit(700, "feet")
  13598. },
  13599. {
  13600. name: "Megamacro",
  13601. height: math.unit(6000, "feet")
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Blue Feyonics" },
  13607. {
  13608. front: {
  13609. height: math.unit(6 + 7 / 12, "feet"),
  13610. weight: math.unit(150, "lb"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/blue-feyonics/front.svg",
  13614. extra: 1403 / 1306,
  13615. bottom: 0.047
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Normal",
  13622. height: math.unit(6 + 7 / 12, "feet"),
  13623. default: true
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Maxwell" },
  13629. {
  13630. front: {
  13631. height: math.unit(1.8, "meters"),
  13632. weight: math.unit(60, "kg"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/maxwell/front.svg",
  13636. extra: 2060 / 1873
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(1, "mm")
  13644. },
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(1.8, "meter"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(30, "meters")
  13653. },
  13654. {
  13655. name: "Megamacro",
  13656. height: math.unit(10, "km")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Jack" },
  13662. {
  13663. front: {
  13664. height: math.unit(6, "feet"),
  13665. weight: math.unit(150, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/jack/front.svg",
  13669. extra: 1754 / 1640,
  13670. bottom: 0.01
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(80000, "feet"),
  13678. default: true
  13679. },
  13680. {
  13681. name: "Max size",
  13682. height: math.unit(10, "lightyears")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Cafat" },
  13688. {
  13689. upright: {
  13690. height: math.unit(7, "feet"),
  13691. weight: math.unit(170, "lb"),
  13692. name: "Upright",
  13693. image: {
  13694. source: "./media/characters/cafat/upright.svg",
  13695. bottom: 0.01
  13696. }
  13697. },
  13698. uprightFull: {
  13699. height: math.unit(7, "feet"),
  13700. weight: math.unit(170, "lb"),
  13701. name: "Upright (Full)",
  13702. image: {
  13703. source: "./media/characters/cafat/upright-full.svg",
  13704. bottom: 0.01
  13705. }
  13706. },
  13707. side: {
  13708. height: math.unit(5, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Side",
  13711. image: {
  13712. source: "./media/characters/cafat/side.svg"
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Small",
  13719. height: math.unit(7, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Large",
  13724. height: math.unit(15.5, "feet")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Verin Raharra" },
  13730. {
  13731. front: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(150, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/verin-raharra/front.svg",
  13737. extra: 5019 / 4835,
  13738. bottom: 0.023
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(7 + 5 / 12, "feet"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Upsized",
  13750. height: math.unit(20, "feet")
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Nakata" },
  13756. {
  13757. front: {
  13758. height: math.unit(7, "feet"),
  13759. weight: math.unit(230, "lb"),
  13760. name: "Front",
  13761. image: {
  13762. source: "./media/characters/nakata/front.svg",
  13763. extra: 1.005,
  13764. bottom: 0.01
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Normal",
  13771. height: math.unit(7, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Big",
  13776. height: math.unit(14, "feet")
  13777. },
  13778. {
  13779. name: "Macro",
  13780. height: math.unit(400, "feet")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Lily" },
  13786. {
  13787. front: {
  13788. height: math.unit(4.91, "feet"),
  13789. weight: math.unit(100, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/lily/front.svg",
  13793. extra: 1585 / 1415,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(4.91, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Sheila" },
  13808. {
  13809. laying: {
  13810. height: math.unit(4 + 4 / 12, "feet"),
  13811. weight: math.unit(600, "lb"),
  13812. name: "Laying",
  13813. image: {
  13814. source: "./media/characters/sheila/laying.svg",
  13815. extra: 1333 / 1265,
  13816. bottom: 0.16
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(4 + 4 / 12, "feet"),
  13824. default: true
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Sax" },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(190, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/sax/front.svg",
  13837. extra: 1187 / 973,
  13838. bottom: 0.042
  13839. }
  13840. },
  13841. },
  13842. [
  13843. {
  13844. name: "Micro",
  13845. height: math.unit(4, "inches"),
  13846. default: true
  13847. },
  13848. ]
  13849. ))
  13850. characterMakers.push(() => makeCharacter(
  13851. { name: "Pandora" },
  13852. {
  13853. front: {
  13854. height: math.unit(6, "feet"),
  13855. weight: math.unit(150, "lb"),
  13856. name: "Front",
  13857. image: {
  13858. source: "./media/characters/pandora/front.svg",
  13859. extra: 2720 / 2556,
  13860. bottom: 0.015
  13861. }
  13862. },
  13863. back: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(150, "lb"),
  13866. name: "Back",
  13867. image: {
  13868. source: "./media/characters/pandora/back.svg",
  13869. extra: 2720 / 2556,
  13870. bottom: 0.01
  13871. }
  13872. },
  13873. beans: {
  13874. height: math.unit(6 / 8, "feet"),
  13875. name: "Beans",
  13876. image: {
  13877. source: "./media/characters/pandora/beans.svg"
  13878. }
  13879. },
  13880. skirt: {
  13881. height: math.unit(6, "feet"),
  13882. weight: math.unit(150, "lb"),
  13883. name: "Skirt",
  13884. image: {
  13885. source: "./media/characters/pandora/skirt.svg",
  13886. extra: 1622 / 1525,
  13887. bottom: 0.015
  13888. }
  13889. },
  13890. hoodie: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(150, "lb"),
  13893. name: "Hoodie",
  13894. image: {
  13895. source: "./media/characters/pandora/hoodie.svg",
  13896. extra: 1622 / 1525,
  13897. bottom: 0.015
  13898. }
  13899. },
  13900. casual: {
  13901. height: math.unit(6, "feet"),
  13902. weight: math.unit(150, "lb"),
  13903. name: "Casual",
  13904. image: {
  13905. source: "./media/characters/pandora/casual.svg",
  13906. extra: 1622 / 1525,
  13907. bottom: 0.015
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Normal",
  13914. height: math.unit(6, "feet")
  13915. },
  13916. {
  13917. name: "Big Steppy",
  13918. height: math.unit(1, "km"),
  13919. default: true
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Venio Darcony" },
  13925. {
  13926. side: {
  13927. height: math.unit(10, "feet"),
  13928. weight: math.unit(800, "kg"),
  13929. name: "Side",
  13930. image: {
  13931. source: "./media/characters/venio-darcony/side.svg",
  13932. extra: 1373 / 1003,
  13933. bottom: 0.037
  13934. }
  13935. },
  13936. front: {
  13937. height: math.unit(19, "feet"),
  13938. weight: math.unit(800, "kg"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/venio-darcony/front.svg"
  13942. }
  13943. },
  13944. back: {
  13945. height: math.unit(19, "feet"),
  13946. weight: math.unit(800, "kg"),
  13947. name: "Back",
  13948. image: {
  13949. source: "./media/characters/venio-darcony/back.svg"
  13950. }
  13951. },
  13952. sideNsfw: {
  13953. height: math.unit(10, "feet"),
  13954. weight: math.unit(800, "kg"),
  13955. name: "Side (NSFW)",
  13956. image: {
  13957. source: "./media/characters/venio-darcony/side-nsfw.svg",
  13958. extra: 1373 / 1003,
  13959. bottom: 0.037
  13960. }
  13961. },
  13962. frontNsfw: {
  13963. height: math.unit(19, "feet"),
  13964. weight: math.unit(800, "kg"),
  13965. name: "Front (NSFW)",
  13966. image: {
  13967. source: "./media/characters/venio-darcony/front-nsfw.svg"
  13968. }
  13969. },
  13970. backNsfw: {
  13971. height: math.unit(19, "feet"),
  13972. weight: math.unit(800, "kg"),
  13973. name: "Back (NSFW)",
  13974. image: {
  13975. source: "./media/characters/venio-darcony/back-nsfw.svg"
  13976. }
  13977. },
  13978. sideArmored: {
  13979. height: math.unit(10, "feet"),
  13980. weight: math.unit(800, "kg"),
  13981. name: "Side (Armored)",
  13982. image: {
  13983. source: "./media/characters/venio-darcony/side-armored.svg",
  13984. extra: 1373 / 1003,
  13985. bottom: 0.037
  13986. }
  13987. },
  13988. frontArmored: {
  13989. height: math.unit(19, "feet"),
  13990. weight: math.unit(900, "kg"),
  13991. name: "Front (Armored)",
  13992. image: {
  13993. source: "./media/characters/venio-darcony/front-armored.svg"
  13994. }
  13995. },
  13996. backArmored: {
  13997. height: math.unit(19, "feet"),
  13998. weight: math.unit(900, "kg"),
  13999. name: "Back (Armored)",
  14000. image: {
  14001. source: "./media/characters/venio-darcony/back-armored.svg"
  14002. }
  14003. },
  14004. sword: {
  14005. height: math.unit(10, "feet"),
  14006. weight: math.unit(50, "lb"),
  14007. name: "Sword",
  14008. image: {
  14009. source: "./media/characters/venio-darcony/sword.svg"
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Normal",
  14016. height: math.unit(10, "feet")
  14017. },
  14018. {
  14019. name: "Macro",
  14020. height: math.unit(130, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro+",
  14025. height: math.unit(240, "feet")
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Veski" },
  14031. {
  14032. front: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/veski/front.svg",
  14038. extra: 1299 / 1225,
  14039. bottom: 0.04
  14040. }
  14041. },
  14042. back: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Back",
  14046. image: {
  14047. source: "./media/characters/veski/back.svg",
  14048. extra: 1299 / 1225,
  14049. bottom: 0.008
  14050. }
  14051. },
  14052. maw: {
  14053. height: math.unit(1.5 * 1.21, "feet"),
  14054. name: "Maw",
  14055. image: {
  14056. source: "./media/characters/veski/maw.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(2, "km"),
  14064. default: true
  14065. },
  14066. ]
  14067. ))
  14068. characterMakers.push(() => makeCharacter(
  14069. { name: "Isabelle" },
  14070. {
  14071. front: {
  14072. height: math.unit(5 + 7 / 12, "feet"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/isabelle/front.svg",
  14076. extra: 2130 / 1976,
  14077. bottom: 0.05
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Supermicro",
  14084. height: math.unit(10, "micrometers")
  14085. },
  14086. {
  14087. name: "Micro",
  14088. height: math.unit(1, "inch")
  14089. },
  14090. {
  14091. name: "Tiny",
  14092. height: math.unit(5, "inches")
  14093. },
  14094. {
  14095. name: "Standard",
  14096. height: math.unit(5 + 7 / 12, "inches")
  14097. },
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(80, "meters"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Megamacro",
  14105. height: math.unit(250, "meters")
  14106. },
  14107. {
  14108. name: "Gigamacro",
  14109. height: math.unit(5, "km")
  14110. },
  14111. {
  14112. name: "Cosmic",
  14113. height: math.unit(2.5e6, "miles")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Hanzo" },
  14119. {
  14120. front: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/hanzo/front.svg",
  14126. extra: 374 / 344,
  14127. bottom: 0.02
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(8, "feet"),
  14135. default: true
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Anna" },
  14141. {
  14142. front: {
  14143. height: math.unit(7, "feet"),
  14144. weight: math.unit(130, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/anna/front.svg",
  14148. extra: 169 / 145,
  14149. bottom: 0.06
  14150. }
  14151. },
  14152. full: {
  14153. height: math.unit(4.96, "feet"),
  14154. weight: math.unit(220, "lb"),
  14155. name: "Full",
  14156. image: {
  14157. source: "./media/characters/anna/full.svg",
  14158. extra: 138 / 114,
  14159. bottom: 0.15
  14160. }
  14161. },
  14162. tongue: {
  14163. height: math.unit(2.53, "feet"),
  14164. name: "Tongue",
  14165. image: {
  14166. source: "./media/characters/anna/tongue.svg"
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(7, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Ian Corvid" },
  14180. {
  14181. front: {
  14182. height: math.unit(7, "feet"),
  14183. weight: math.unit(150, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/ian-corvid/front.svg",
  14187. extra: 150 / 142,
  14188. bottom: 0.02
  14189. }
  14190. },
  14191. back: {
  14192. height: math.unit(7, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Back",
  14195. image: {
  14196. source: "./media/characters/ian-corvid/back.svg",
  14197. extra: 150 / 143,
  14198. bottom: 0.01
  14199. }
  14200. },
  14201. stomping: {
  14202. height: math.unit(7, "feet"),
  14203. weight: math.unit(150, "lb"),
  14204. name: "Stomping",
  14205. image: {
  14206. source: "./media/characters/ian-corvid/stomping.svg",
  14207. extra: 76 / 72
  14208. }
  14209. },
  14210. sitting: {
  14211. height: math.unit(7 / 1.8, "feet"),
  14212. weight: math.unit(150, "lb"),
  14213. name: "Sitting",
  14214. image: {
  14215. source: "./media/characters/ian-corvid/sitting.svg",
  14216. extra: 1400 / 1269,
  14217. bottom: 0.15
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Tiny Microw",
  14224. height: math.unit(1, "inch")
  14225. },
  14226. {
  14227. name: "Microw",
  14228. height: math.unit(6, "inches")
  14229. },
  14230. {
  14231. name: "Crow",
  14232. height: math.unit(7 + 1 / 12, "feet"),
  14233. default: true
  14234. },
  14235. {
  14236. name: "Macrow",
  14237. height: math.unit(176, "feet")
  14238. },
  14239. ]
  14240. ))
  14241. characterMakers.push(() => makeCharacter(
  14242. { name: "Natalie Kellon" },
  14243. {
  14244. front: {
  14245. height: math.unit(5 + 7 / 12, "feet"),
  14246. weight: math.unit(147, "lb"),
  14247. name: "Front",
  14248. image: {
  14249. source: "./media/characters/natalie-kellon/front.svg",
  14250. extra: 1214 / 1141,
  14251. bottom: 0.02
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Micro",
  14258. height: math.unit(1 / 16, "inch")
  14259. },
  14260. {
  14261. name: "Tiny",
  14262. height: math.unit(4, "inches")
  14263. },
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(5 + 7 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Amazon",
  14271. height: math.unit(12, "feet")
  14272. },
  14273. {
  14274. name: "Giantess",
  14275. height: math.unit(160, "meters")
  14276. },
  14277. {
  14278. name: "Titaness",
  14279. height: math.unit(800, "meters")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Alluria" },
  14285. {
  14286. front: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(150, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/alluria/front.svg",
  14292. extra: 806 / 738,
  14293. bottom: 0.01
  14294. }
  14295. },
  14296. side: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(150, "lb"),
  14299. name: "Side",
  14300. image: {
  14301. source: "./media/characters/alluria/side.svg",
  14302. extra: 800 / 750,
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/alluria/back.svg",
  14311. extra: 806 / 738,
  14312. }
  14313. },
  14314. frontMaid: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(150, "lb"),
  14317. name: "Front (Maid)",
  14318. image: {
  14319. source: "./media/characters/alluria/front-maid.svg",
  14320. extra: 806 / 738,
  14321. bottom: 0.01
  14322. }
  14323. },
  14324. sideMaid: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(150, "lb"),
  14327. name: "Side (Maid)",
  14328. image: {
  14329. source: "./media/characters/alluria/side-maid.svg",
  14330. extra: 800 / 750,
  14331. bottom: 0.005
  14332. }
  14333. },
  14334. backMaid: {
  14335. height: math.unit(6, "feet"),
  14336. weight: math.unit(150, "lb"),
  14337. name: "Back (Maid)",
  14338. image: {
  14339. source: "./media/characters/alluria/back-maid.svg",
  14340. extra: 806 / 738,
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Micro",
  14347. height: math.unit(6, "inches"),
  14348. default: true
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Kyle" },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/kyle/front.svg",
  14361. extra: 1069 / 962,
  14362. bottom: 77.228 / 1727.45
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(150, "feet"),
  14370. default: true
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Duncan" },
  14376. {
  14377. front: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(300, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/duncan/front.svg",
  14383. extra: 1650 / 1482,
  14384. bottom: 0.05
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(100, "feet"),
  14392. default: true
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Memory" },
  14398. {
  14399. front: {
  14400. height: math.unit(5 + 4 / 12, "feet"),
  14401. weight: math.unit(220, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/memory/front.svg",
  14405. extra: 3641 / 3545,
  14406. bottom: 0.03
  14407. }
  14408. },
  14409. back: {
  14410. height: math.unit(5 + 4 / 12, "feet"),
  14411. weight: math.unit(220, "lb"),
  14412. name: "Back",
  14413. image: {
  14414. source: "./media/characters/memory/back.svg",
  14415. extra: 3641 / 3545,
  14416. bottom: 0.025
  14417. }
  14418. },
  14419. frontSkirt: {
  14420. height: math.unit(5 + 4 / 12, "feet"),
  14421. weight: math.unit(220, "lb"),
  14422. name: "Front (Skirt)",
  14423. image: {
  14424. source: "./media/characters/memory/front-skirt.svg",
  14425. extra: 3641 / 3545,
  14426. bottom: 0.03
  14427. }
  14428. },
  14429. frontDress: {
  14430. height: math.unit(5 + 4 / 12, "feet"),
  14431. weight: math.unit(220, "lb"),
  14432. name: "Front (Dress)",
  14433. image: {
  14434. source: "./media/characters/memory/front-dress.svg",
  14435. extra: 3641 / 3545,
  14436. bottom: 0.03
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Micro",
  14443. height: math.unit(6, "inches"),
  14444. default: true
  14445. },
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(5 + 4 / 12, "feet")
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Luno" },
  14454. {
  14455. front: {
  14456. height: math.unit(4 + 11 / 12, "feet"),
  14457. weight: math.unit(100, "lb"),
  14458. name: "Front",
  14459. image: {
  14460. source: "./media/characters/luno/front.svg",
  14461. extra: 1535 / 1487,
  14462. bottom: 0.03
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Micro",
  14469. height: math.unit(3, "inches")
  14470. },
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(4 + 11 / 12, "feet"),
  14474. default: true
  14475. },
  14476. {
  14477. name: "Macro",
  14478. height: math.unit(300, "feet")
  14479. },
  14480. {
  14481. name: "Megamacro",
  14482. height: math.unit(700, "miles")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Jamesy" },
  14488. {
  14489. front: {
  14490. height: math.unit(6 + 2 / 12, "feet"),
  14491. weight: math.unit(170, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/jamesy/front.svg",
  14495. extra: 440 / 382,
  14496. bottom: 0.005
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(3, "inches")
  14504. },
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(6 + 2 / 12, "feet"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(300, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(700, "miles")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Mark" },
  14522. {
  14523. front: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(160, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/mark/front.svg",
  14529. extra: 3300 / 3100,
  14530. bottom: 136.42 / 3440.47
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Macro",
  14537. height: math.unit(120, "meters")
  14538. },
  14539. {
  14540. name: "Bigger Macro",
  14541. height: math.unit(350, "meters")
  14542. },
  14543. {
  14544. name: "Megamacro",
  14545. height: math.unit(8, "km"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Continental",
  14550. height: math.unit(4550, "km")
  14551. },
  14552. {
  14553. name: "Planetary",
  14554. height: math.unit(65000, "km")
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Mac" },
  14560. {
  14561. front: {
  14562. height: math.unit(6, "feet"),
  14563. weight: math.unit(400, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/mac/front.svg",
  14567. extra: 1048 / 987.7,
  14568. bottom: 60 / 1107.6,
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Macro",
  14575. height: math.unit(500, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Bari" },
  14582. {
  14583. front: {
  14584. height: math.unit(5 + 2 / 12, "feet"),
  14585. weight: math.unit(190, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/bari/front.svg",
  14589. extra: 3156 / 2880,
  14590. bottom: 0.03
  14591. }
  14592. },
  14593. back: {
  14594. height: math.unit(5 + 2 / 12, "feet"),
  14595. weight: math.unit(190, "lb"),
  14596. name: "Back",
  14597. image: {
  14598. source: "./media/characters/bari/back.svg",
  14599. extra: 3260 / 2834,
  14600. bottom: 0.025
  14601. }
  14602. },
  14603. frontPlush: {
  14604. height: math.unit(5 + 2 / 12, "feet"),
  14605. weight: math.unit(190, "lb"),
  14606. name: "Front (Plush)",
  14607. image: {
  14608. source: "./media/characters/bari/front-plush.svg",
  14609. extra: 1112 / 1061,
  14610. bottom: 0.002
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Micro",
  14617. height: math.unit(3, "inches")
  14618. },
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(5 + 2 / 12, "feet"),
  14622. default: true
  14623. },
  14624. {
  14625. name: "Macro",
  14626. height: math.unit(20, "feet")
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Hunter Misha Raven" },
  14632. {
  14633. front: {
  14634. height: math.unit(6 + 1 / 12, "feet"),
  14635. weight: math.unit(275, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/hunter-misha-raven/front.svg"
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Mortal",
  14645. height: math.unit(6 + 1 / 12, "feet")
  14646. },
  14647. {
  14648. name: "Divine",
  14649. height: math.unit(1.12134e34, "parsecs"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Max Calore" },
  14656. {
  14657. front: {
  14658. height: math.unit(6 + 3 / 12, "feet"),
  14659. weight: math.unit(220, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/max-calore/front.svg",
  14663. extra: 1700 / 1648,
  14664. bottom: 0.01
  14665. }
  14666. },
  14667. back: {
  14668. height: math.unit(6 + 3 / 12, "feet"),
  14669. weight: math.unit(220, "lb"),
  14670. name: "Back",
  14671. image: {
  14672. source: "./media/characters/max-calore/back.svg",
  14673. extra: 1700 / 1648,
  14674. bottom: 0.01
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(6 + 3 / 12, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Aspen" },
  14688. {
  14689. side: {
  14690. height: math.unit(2 + 8 / 12, "feet"),
  14691. weight: math.unit(99, "lb"),
  14692. name: "Side",
  14693. image: {
  14694. source: "./media/characters/aspen/side.svg",
  14695. extra: 152 / 138,
  14696. bottom: 0.032
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(2 + 8 / 12, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Sheila (Feral Wolf)" },
  14710. {
  14711. side: {
  14712. height: math.unit(3 + 2 / 12, "feet"),
  14713. weight: math.unit(224, "lb"),
  14714. name: "Side",
  14715. image: {
  14716. source: "./media/characters/sheila-feral-wolf/side.svg",
  14717. extra: 179 / 166,
  14718. bottom: 0.03
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(3 + 2 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Michelle" },
  14732. {
  14733. side: {
  14734. height: math.unit(1 + 9 / 12, "feet"),
  14735. weight: math.unit(38, "lb"),
  14736. name: "Side",
  14737. image: {
  14738. source: "./media/characters/michelle/side.svg",
  14739. extra: 147 / 136.7,
  14740. bottom: 0.03
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(1 + 9 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Nino" },
  14754. {
  14755. front: {
  14756. height: math.unit(1 + 1 / 12, "feet"),
  14757. weight: math.unit(18, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/nino/front.svg"
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(1 + 1 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Viola" },
  14774. {
  14775. front: {
  14776. height: math.unit(1, "feet"),
  14777. weight: math.unit(16, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/viola/front.svg"
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(1, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Atlas" },
  14794. {
  14795. front: {
  14796. height: math.unit(6 + 5 / 12, "feet"),
  14797. weight: math.unit(580, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/atlas/front.svg",
  14801. extra: 298.5 / 290,
  14802. bottom: 0.015
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(6 + 5 / 12, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Davy" },
  14816. {
  14817. side: {
  14818. height: math.unit(1 + 10 / 12, "feet"),
  14819. weight: math.unit(25, "lb"),
  14820. name: "Side",
  14821. image: {
  14822. source: "./media/characters/davy/side.svg",
  14823. extra: 200 / 170,
  14824. bottom: 0.01
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(1 + 10 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Fiona" },
  14838. {
  14839. side: {
  14840. height: math.unit(4 + 8 / 12, "feet"),
  14841. weight: math.unit(166, "lb"),
  14842. name: "Side",
  14843. image: {
  14844. source: "./media/characters/fiona/side.svg",
  14845. extra: 232 / 220,
  14846. bottom: 0.03
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(4 + 8 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Lyla" },
  14860. {
  14861. front: {
  14862. height: math.unit(2, "feet"),
  14863. weight: math.unit(62, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/lyla/front.svg",
  14867. bottom: 0.1
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Normal",
  14874. height: math.unit(2, "feet"),
  14875. default: true
  14876. },
  14877. ]
  14878. ))
  14879. characterMakers.push(() => makeCharacter(
  14880. { name: "Perseus" },
  14881. {
  14882. side: {
  14883. height: math.unit(1.8, "feet"),
  14884. weight: math.unit(44, "lb"),
  14885. name: "Side",
  14886. image: {
  14887. source: "./media/characters/perseus/side.svg",
  14888. bottom: 0.21
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(1.8, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Remus" },
  14902. {
  14903. side: {
  14904. height: math.unit(4 + 2 / 12, "feet"),
  14905. weight: math.unit(20, "lb"),
  14906. name: "Side",
  14907. image: {
  14908. source: "./media/characters/remus/side.svg"
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(4 + 2 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Raf" },
  14922. {
  14923. front: {
  14924. height: math.unit(4 + 11 / 12, "feet"),
  14925. weight: math.unit(114, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/raf/front.svg",
  14929. bottom: 0.01
  14930. }
  14931. },
  14932. side: {
  14933. height: math.unit(4 + 11 / 12, "feet"),
  14934. weight: math.unit(114, "lb"),
  14935. name: "Side",
  14936. image: {
  14937. source: "./media/characters/raf/side.svg",
  14938. bottom: 0.005
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Micro",
  14945. height: math.unit(2, "inches")
  14946. },
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(4 + 11 / 12, "feet"),
  14950. default: true
  14951. },
  14952. {
  14953. name: "Macro",
  14954. height: math.unit(70, "feet")
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Liam Einarr" },
  14960. {
  14961. front: {
  14962. height: math.unit(1.5, "meters"),
  14963. weight: math.unit(68, "kg"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/liam-einarr/front.svg",
  14967. extra: 2822 / 2666
  14968. }
  14969. },
  14970. back: {
  14971. height: math.unit(1.5, "meters"),
  14972. weight: math.unit(68, "kg"),
  14973. name: "Back",
  14974. image: {
  14975. source: "./media/characters/liam-einarr/back.svg",
  14976. extra: 2822 / 2666,
  14977. bottom: 0.015
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(1.5, "meters"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(150, "meters")
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(35, "km")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Linda" },
  14999. {
  15000. front: {
  15001. height: math.unit(6, "feet"),
  15002. weight: math.unit(75, "kg"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/linda/front.svg",
  15006. extra: 930 / 874,
  15007. bottom: 0.004
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(6, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Caylex" },
  15021. {
  15022. front: {
  15023. height: math.unit(6 + 8 / 12, "feet"),
  15024. weight: math.unit(220, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/caylex/front.svg",
  15028. extra: 821 / 772,
  15029. bottom: 0.07
  15030. }
  15031. },
  15032. back: {
  15033. height: math.unit(6 + 8 / 12, "feet"),
  15034. weight: math.unit(220, "lb"),
  15035. name: "Back",
  15036. image: {
  15037. source: "./media/characters/caylex/back.svg",
  15038. extra: 821 / 772,
  15039. bottom: 0.022
  15040. }
  15041. },
  15042. hand: {
  15043. height: math.unit(1.25, "feet"),
  15044. name: "Hand",
  15045. image: {
  15046. source: "./media/characters/caylex/hand.svg"
  15047. }
  15048. },
  15049. foot: {
  15050. height: math.unit(1.6, "feet"),
  15051. name: "Foot",
  15052. image: {
  15053. source: "./media/characters/caylex/foot.svg"
  15054. }
  15055. },
  15056. armored: {
  15057. height: math.unit(6 + 8 / 12, "feet"),
  15058. weight: math.unit(250, "lb"),
  15059. name: "Armored",
  15060. image: {
  15061. source: "./media/characters/caylex/armored.svg",
  15062. extra: 1420 / 1310,
  15063. bottom: 0.045
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(6 + 8 / 12, "feet"),
  15071. default: true
  15072. },
  15073. {
  15074. name: "Normal+",
  15075. height: math.unit(12, "feet")
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Alana" },
  15081. {
  15082. front: {
  15083. height: math.unit(7 + 6 / 12, "feet"),
  15084. weight: math.unit(288, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/alana/front.svg",
  15088. extra: 679 / 653,
  15089. bottom: 22.5 / 701
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Normal",
  15096. height: math.unit(7 + 6 / 12, "feet")
  15097. },
  15098. {
  15099. name: "Large",
  15100. height: math.unit(50, "feet")
  15101. },
  15102. {
  15103. name: "Macro",
  15104. height: math.unit(100, "feet"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Macro+",
  15109. height: math.unit(200, "feet")
  15110. },
  15111. ]
  15112. ))
  15113. characterMakers.push(() => makeCharacter(
  15114. { name: "Hasani" },
  15115. {
  15116. front: {
  15117. height: math.unit(6 + 1 / 12, "feet"),
  15118. weight: math.unit(210, "lb"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/hasani/front.svg",
  15122. extra: 244 / 232,
  15123. bottom: 0.01
  15124. }
  15125. },
  15126. back: {
  15127. height: math.unit(6 + 1 / 12, "feet"),
  15128. weight: math.unit(210, "lb"),
  15129. name: "Back",
  15130. image: {
  15131. source: "./media/characters/hasani/back.svg",
  15132. extra: 244 / 232,
  15133. bottom: 0.01
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(6 + 1 / 12, "feet")
  15141. },
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(175, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Nita" },
  15151. {
  15152. front: {
  15153. height: math.unit(1.82, "meters"),
  15154. weight: math.unit(140, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/nita/front.svg",
  15158. extra: 2473 / 2363,
  15159. bottom: 0.01
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(1.82, "m")
  15167. },
  15168. {
  15169. name: "Macro",
  15170. height: math.unit(300, "m")
  15171. },
  15172. {
  15173. name: "Mistake Canon",
  15174. height: math.unit(0.5, "miles"),
  15175. default: true
  15176. },
  15177. {
  15178. name: "Big Mistake",
  15179. height: math.unit(13, "miles")
  15180. },
  15181. {
  15182. name: "Playing God",
  15183. height: math.unit(2450, "miles")
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Shiriko" },
  15189. {
  15190. front: {
  15191. height: math.unit(4, "feet"),
  15192. weight: math.unit(120, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/shiriko/front.svg",
  15196. extra: 195 / 188
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(4, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Deja" },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. name: "front",
  15214. image: {
  15215. source: "./media/characters/deja/front.svg",
  15216. extra: 926 / 840,
  15217. bottom: 0.07
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Planck Length",
  15224. height: math.unit(1.6e-35, "meters")
  15225. },
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(30.48, "meters"),
  15229. default: true
  15230. },
  15231. {
  15232. name: "Universal",
  15233. height: math.unit(8.8e26, "meters")
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Anima" },
  15239. {
  15240. side: {
  15241. height: math.unit(8, "feet"),
  15242. weight: math.unit(6300, "lb"),
  15243. name: "Side",
  15244. image: {
  15245. source: "./media/characters/anima/side.svg",
  15246. bottom: 0.035
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(8, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Bianca" },
  15260. {
  15261. front: {
  15262. height: math.unit(8, "feet"),
  15263. weight: math.unit(350, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/bianca/front.svg",
  15267. extra: 234 / 225,
  15268. bottom: 0.03
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(8, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Adinia" },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/adinia/front.svg",
  15289. extra: 1845 / 1672,
  15290. bottom: 0.02
  15291. }
  15292. },
  15293. back: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Back",
  15297. image: {
  15298. source: "./media/characters/adinia/back.svg",
  15299. extra: 1845 / 1672,
  15300. bottom: 0.002
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(11 + 5 / 12, "feet"),
  15308. default: true
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Lykasa" },
  15314. {
  15315. front: {
  15316. height: math.unit(3, "meters"),
  15317. weight: math.unit(200, "kg"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/lykasa/front.svg",
  15321. extra: 1076 / 976,
  15322. bottom: 0.06
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(3, "meters")
  15330. },
  15331. {
  15332. name: "Kaiju",
  15333. height: math.unit(120, "meters"),
  15334. default: true
  15335. },
  15336. {
  15337. name: "Mega Kaiju",
  15338. height: math.unit(240, "km")
  15339. },
  15340. {
  15341. name: "Giga Kaiju",
  15342. height: math.unit(400, "megameters")
  15343. },
  15344. {
  15345. name: "Tera Kaiju",
  15346. height: math.unit(800, "gigameters")
  15347. },
  15348. {
  15349. name: "Kaiju Dragon Goddess",
  15350. height: math.unit(26, "zettaparsecs")
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Malfaren" },
  15356. {
  15357. side: {
  15358. height: math.unit(283 / 124 * 6, "feet"),
  15359. weight: math.unit(35000, "lb"),
  15360. name: "Side",
  15361. image: {
  15362. source: "./media/characters/malfaren/side.svg",
  15363. extra: 2500 / 1010,
  15364. bottom: 0.01
  15365. }
  15366. },
  15367. front: {
  15368. height: math.unit(22.36, "feet"),
  15369. weight: math.unit(35000, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/malfaren/front.svg",
  15373. extra: 1631 / 1476,
  15374. bottom: 0.01
  15375. }
  15376. },
  15377. maw: {
  15378. height: math.unit(6.9, "feet"),
  15379. name: "Maw",
  15380. image: {
  15381. source: "./media/characters/malfaren/maw.svg"
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Big",
  15388. height: math.unit(283 / 162 * 6, "feet"),
  15389. },
  15390. {
  15391. name: "Bigger",
  15392. height: math.unit(283 / 124 * 6, "feet")
  15393. },
  15394. {
  15395. name: "Massive",
  15396. height: math.unit(283 / 92 * 6, "feet"),
  15397. default: true
  15398. },
  15399. {
  15400. name: "👀💦",
  15401. height: math.unit(283 / 73 * 6, "feet"),
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Kernel" },
  15407. {
  15408. front: {
  15409. height: math.unit(1.7, "m"),
  15410. weight: math.unit(70, "kg"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/kernel/front.svg",
  15414. extra: 222 / 210,
  15415. bottom: 0.007
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Nano",
  15422. height: math.unit(17, "micrometers")
  15423. },
  15424. {
  15425. name: "Micro",
  15426. height: math.unit(1.7, "mm")
  15427. },
  15428. {
  15429. name: "Small",
  15430. height: math.unit(1.7, "cm")
  15431. },
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(1.7, "m"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Jayne Folest" },
  15441. {
  15442. front: {
  15443. height: math.unit(1.75, "meters"),
  15444. weight: math.unit(65, "kg"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/jayne-folest/front.svg",
  15448. extra: 2115 / 2007,
  15449. bottom: 0.02
  15450. }
  15451. },
  15452. back: {
  15453. height: math.unit(1.75, "meters"),
  15454. weight: math.unit(65, "kg"),
  15455. name: "Back",
  15456. image: {
  15457. source: "./media/characters/jayne-folest/back.svg",
  15458. extra: 2115 / 2007,
  15459. bottom: 0.005
  15460. }
  15461. },
  15462. frontClothed: {
  15463. height: math.unit(1.75, "meters"),
  15464. weight: math.unit(65, "kg"),
  15465. name: "Front (Clothed)",
  15466. image: {
  15467. source: "./media/characters/jayne-folest/front-clothed.svg",
  15468. extra: 2115 / 2007,
  15469. bottom: 0.035
  15470. }
  15471. },
  15472. hand: {
  15473. height: math.unit(1 / 1.260, "feet"),
  15474. name: "Hand",
  15475. image: {
  15476. source: "./media/characters/jayne-folest/hand.svg"
  15477. }
  15478. },
  15479. foot: {
  15480. height: math.unit(1 / 0.918, "feet"),
  15481. name: "Foot",
  15482. image: {
  15483. source: "./media/characters/jayne-folest/foot.svg"
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Micro",
  15490. height: math.unit(4, "cm")
  15491. },
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(1.75, "meters")
  15495. },
  15496. {
  15497. name: "Macro",
  15498. height: math.unit(47.5, "meters"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Algier" },
  15505. {
  15506. front: {
  15507. height: math.unit(180, "cm"),
  15508. weight: math.unit(70, "kg"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/algier/front.svg",
  15512. extra: 596 / 572,
  15513. bottom: 0.04
  15514. }
  15515. },
  15516. back: {
  15517. height: math.unit(180, "cm"),
  15518. weight: math.unit(70, "kg"),
  15519. name: "Back",
  15520. image: {
  15521. source: "./media/characters/algier/back.svg",
  15522. extra: 596 / 572,
  15523. bottom: 0.025
  15524. }
  15525. },
  15526. frontdressed: {
  15527. height: math.unit(180, "cm"),
  15528. weight: math.unit(150, "kg"),
  15529. name: "Front-dressed",
  15530. image: {
  15531. source: "./media/characters/algier/front-dressed.svg",
  15532. extra: 596 / 572,
  15533. bottom: 0.038
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Micro",
  15540. height: math.unit(5, "cm")
  15541. },
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(180, "cm"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Macro",
  15549. height: math.unit(64, "m")
  15550. },
  15551. ]
  15552. ))
  15553. characterMakers.push(() => makeCharacter(
  15554. { name: "Pretzel" },
  15555. {
  15556. upright: {
  15557. height: math.unit(7, "feet"),
  15558. weight: math.unit(300, "lb"),
  15559. name: "Upright",
  15560. image: {
  15561. source: "./media/characters/pretzel/upright.svg",
  15562. extra: 534 / 522,
  15563. bottom: 0.065
  15564. }
  15565. },
  15566. sprawling: {
  15567. height: math.unit(3.75, "feet"),
  15568. weight: math.unit(300, "lb"),
  15569. name: "Sprawling",
  15570. image: {
  15571. source: "./media/characters/pretzel/sprawling.svg",
  15572. extra: 314 / 281,
  15573. bottom: 0.1
  15574. }
  15575. },
  15576. tongue: {
  15577. height: math.unit(2, "feet"),
  15578. name: "Tongue",
  15579. image: {
  15580. source: "./media/characters/pretzel/tongue.svg"
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(7, "feet"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Oversized",
  15592. height: math.unit(15, "feet")
  15593. },
  15594. {
  15595. name: "Huge",
  15596. height: math.unit(30, "feet")
  15597. },
  15598. {
  15599. name: "Macro",
  15600. height: math.unit(250, "feet")
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Roxi" },
  15606. {
  15607. sideFront: {
  15608. height: math.unit(5 + 2 / 12, "feet"),
  15609. weight: math.unit(120, "lb"),
  15610. name: "Front Side",
  15611. image: {
  15612. source: "./media/characters/roxi/side-front.svg",
  15613. extra: 2924 / 2717,
  15614. bottom: 0.08
  15615. }
  15616. },
  15617. sideBack: {
  15618. height: math.unit(5 + 2 / 12, "feet"),
  15619. weight: math.unit(120, "lb"),
  15620. name: "Back Side",
  15621. image: {
  15622. source: "./media/characters/roxi/side-back.svg",
  15623. extra: 2904 / 2693,
  15624. bottom: 0.06
  15625. }
  15626. },
  15627. front: {
  15628. height: math.unit(5 + 2 / 12, "feet"),
  15629. weight: math.unit(120, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/roxi/front.svg",
  15633. extra: 2028 / 1907,
  15634. bottom: 0.01
  15635. }
  15636. },
  15637. frontAlt: {
  15638. height: math.unit(5 + 2 / 12, "feet"),
  15639. weight: math.unit(120, "lb"),
  15640. name: "Front (Alt)",
  15641. image: {
  15642. source: "./media/characters/roxi/front-alt.svg",
  15643. extra: 1828 / 1798,
  15644. bottom: 0.01
  15645. }
  15646. },
  15647. sitting: {
  15648. height: math.unit(2.8, "feet"),
  15649. weight: math.unit(120, "lb"),
  15650. name: "Sitting",
  15651. image: {
  15652. source: "./media/characters/roxi/sitting.svg",
  15653. extra: 2660 / 2462,
  15654. bottom: 0.1
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(5 + 2 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Shadow" },
  15668. {
  15669. side: {
  15670. height: math.unit(55, "feet"),
  15671. weight: math.unit(153, "tons"),
  15672. name: "Side",
  15673. image: {
  15674. source: "./media/characters/shadow/side.svg",
  15675. extra: 701 / 628,
  15676. bottom: 0.02
  15677. }
  15678. },
  15679. flying: {
  15680. height: math.unit(145, "feet"),
  15681. weight: math.unit(153, "tons"),
  15682. name: "Flying",
  15683. image: {
  15684. source: "./media/characters/shadow/flying.svg"
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(55, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Marcie" },
  15698. {
  15699. front: {
  15700. height: math.unit(6, "feet"),
  15701. weight: math.unit(200, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/marcie/front.svg",
  15705. extra: 960 / 876,
  15706. bottom: 58 / 1017.87
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Macro",
  15713. height: math.unit(1, "mile"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Kachina" },
  15720. {
  15721. front: {
  15722. height: math.unit(7, "feet"),
  15723. weight: math.unit(200, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/kachina/front.svg",
  15727. extra: 1290.68 / 1119,
  15728. bottom: 36.5 / 1327.18
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(7, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Kash" },
  15742. {
  15743. looking: {
  15744. height: math.unit(2, "meters"),
  15745. weight: math.unit(300, "kg"),
  15746. name: "Looking",
  15747. image: {
  15748. source: "./media/characters/kash/looking.svg",
  15749. extra: 474 / 344,
  15750. bottom: 0.03
  15751. }
  15752. },
  15753. side: {
  15754. height: math.unit(2, "meters"),
  15755. weight: math.unit(300, "kg"),
  15756. name: "Side",
  15757. image: {
  15758. source: "./media/characters/kash/side.svg",
  15759. extra: 302 / 251,
  15760. bottom: 0.03
  15761. }
  15762. },
  15763. front: {
  15764. height: math.unit(2, "meters"),
  15765. weight: math.unit(300, "kg"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/kash/front.svg",
  15769. extra: 495 / 360,
  15770. bottom: 0.015
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(2, "meters"),
  15778. default: true
  15779. },
  15780. {
  15781. name: "Big",
  15782. height: math.unit(3, "meters")
  15783. },
  15784. {
  15785. name: "Large",
  15786. height: math.unit(5, "meters")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Lalim" },
  15792. {
  15793. feeding: {
  15794. height: math.unit(6.7, "feet"),
  15795. weight: math.unit(350, "lb"),
  15796. name: "Feeding",
  15797. image: {
  15798. source: "./media/characters/lalim/feeding.svg",
  15799. }
  15800. },
  15801. },
  15802. [
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(6.7, "feet"),
  15806. default: true
  15807. },
  15808. ]
  15809. ))
  15810. characterMakers.push(() => makeCharacter(
  15811. { name: "De'Vout" },
  15812. {
  15813. front: {
  15814. height: math.unit(9.5, "feet"),
  15815. weight: math.unit(600, "lb"),
  15816. name: "Front",
  15817. image: {
  15818. source: "./media/characters/de'vout/front.svg",
  15819. extra: 1443 / 1328,
  15820. bottom: 0.025
  15821. }
  15822. },
  15823. back: {
  15824. height: math.unit(9.5, "feet"),
  15825. weight: math.unit(600, "lb"),
  15826. name: "Back",
  15827. image: {
  15828. source: "./media/characters/de'vout/back.svg",
  15829. extra: 1443 / 1328
  15830. }
  15831. },
  15832. frontDressed: {
  15833. height: math.unit(9.5, "feet"),
  15834. weight: math.unit(600, "lb"),
  15835. name: "Front (Dressed",
  15836. image: {
  15837. source: "./media/characters/de'vout/front-dressed.svg",
  15838. extra: 1443 / 1328,
  15839. bottom: 0.025
  15840. }
  15841. },
  15842. backDressed: {
  15843. height: math.unit(9.5, "feet"),
  15844. weight: math.unit(600, "lb"),
  15845. name: "Back (Dressed",
  15846. image: {
  15847. source: "./media/characters/de'vout/back-dressed.svg",
  15848. extra: 1443 / 1328
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(9.5, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Talana" },
  15862. {
  15863. front: {
  15864. height: math.unit(8, "feet"),
  15865. weight: math.unit(225, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/talana/front.svg",
  15869. extra: 1410 / 1300,
  15870. bottom: 0.015
  15871. }
  15872. },
  15873. frontDressed: {
  15874. height: math.unit(8, "feet"),
  15875. weight: math.unit(225, "lb"),
  15876. name: "Front (Dressed",
  15877. image: {
  15878. source: "./media/characters/talana/front-dressed.svg",
  15879. extra: 1410 / 1300,
  15880. bottom: 0.015
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(8, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Xeauvok" },
  15894. {
  15895. side: {
  15896. height: math.unit(7.2, "feet"),
  15897. weight: math.unit(150, "lb"),
  15898. name: "Side",
  15899. image: {
  15900. source: "./media/characters/xeauvok/side.svg",
  15901. extra: 1975 / 1523,
  15902. bottom: 0.07
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(7.2, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Zara" },
  15916. {
  15917. side: {
  15918. height: math.unit(10, "feet"),
  15919. weight: math.unit(900, "kg"),
  15920. name: "Side",
  15921. image: {
  15922. source: "./media/characters/zara/side.svg",
  15923. extra: 504 / 498
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(10, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Richard (Dragon)" },
  15937. {
  15938. side: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(150, "lb"),
  15941. name: "Side",
  15942. image: {
  15943. source: "./media/characters/richard-dragon/side.svg",
  15944. extra: 845 / 340,
  15945. bottom: 0.017
  15946. }
  15947. },
  15948. maw: {
  15949. height: math.unit(2.97, "feet"),
  15950. name: "Maw",
  15951. image: {
  15952. source: "./media/characters/richard-dragon/maw.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Richard (Smeargle)" },
  15961. {
  15962. front: {
  15963. height: math.unit(4, "feet"),
  15964. weight: math.unit(100, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/richard-smeargle/front.svg",
  15968. extra: 2952 / 2820,
  15969. bottom: 0.028
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(4, "feet"),
  15977. default: true
  15978. },
  15979. {
  15980. name: "Dynamax",
  15981. height: math.unit(20, "meters")
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Klay" },
  15987. {
  15988. front: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(110, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/klay/front.svg",
  15994. extra: 962 / 883,
  15995. bottom: 0.04
  15996. }
  15997. },
  15998. back: {
  15999. height: math.unit(6, "feet"),
  16000. weight: math.unit(110, "lb"),
  16001. name: "Back",
  16002. image: {
  16003. source: "./media/characters/klay/back.svg",
  16004. extra: 962 / 883
  16005. }
  16006. },
  16007. beans: {
  16008. height: math.unit(1.15, "feet"),
  16009. name: "Beans",
  16010. image: {
  16011. source: "./media/characters/klay/beans.svg"
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Micro",
  16018. height: math.unit(6, "inches")
  16019. },
  16020. {
  16021. name: "Mini",
  16022. height: math.unit(3, "feet")
  16023. },
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(6, "feet"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Big",
  16031. height: math.unit(25, "feet")
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(100, "feet")
  16036. },
  16037. {
  16038. name: "Megamacro",
  16039. height: math.unit(400, "feet")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Marcus" },
  16045. {
  16046. front: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(160, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/marcus/front.svg",
  16052. extra: 734 / 676,
  16053. bottom: 0.03
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Little",
  16060. height: math.unit(6, "feet")
  16061. },
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(110, "feet"),
  16065. default: true
  16066. },
  16067. {
  16068. name: "Macro",
  16069. height: math.unit(250, "feet")
  16070. },
  16071. {
  16072. name: "Megamacro",
  16073. height: math.unit(1000, "feet")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Claude DelRoute" },
  16079. {
  16080. front: {
  16081. height: math.unit(7, "feet"),
  16082. weight: math.unit(275, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/claude-delroute/front.svg",
  16086. extra: 230 / 214,
  16087. bottom: 0.007
  16088. }
  16089. },
  16090. side: {
  16091. height: math.unit(7, "feet"),
  16092. weight: math.unit(275, "lb"),
  16093. name: "Side",
  16094. image: {
  16095. source: "./media/characters/claude-delroute/side.svg",
  16096. extra: 222 / 214,
  16097. bottom: 0.01
  16098. }
  16099. },
  16100. back: {
  16101. height: math.unit(7, "feet"),
  16102. weight: math.unit(275, "lb"),
  16103. name: "Back",
  16104. image: {
  16105. source: "./media/characters/claude-delroute/back.svg",
  16106. extra: 230 / 214,
  16107. bottom: 0.015
  16108. }
  16109. },
  16110. maw: {
  16111. height: math.unit(0.6407, "meters"),
  16112. name: "Maw",
  16113. image: {
  16114. source: "./media/characters/claude-delroute/maw.svg"
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(7, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Lorge",
  16126. height: math.unit(20, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Dragonien" },
  16132. {
  16133. front: {
  16134. height: math.unit(8 + 4 / 12, "feet"),
  16135. weight: math.unit(600, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/dragonien/front.svg",
  16139. extra: 100 / 94,
  16140. bottom: 3.3 / 103.3445
  16141. }
  16142. },
  16143. back: {
  16144. height: math.unit(8 + 4 / 12, "feet"),
  16145. weight: math.unit(600, "lb"),
  16146. name: "Back",
  16147. image: {
  16148. source: "./media/characters/dragonien/back.svg",
  16149. extra: 776 / 746,
  16150. bottom: 6.4 / 782.0616
  16151. }
  16152. },
  16153. foot: {
  16154. height: math.unit(1.54, "feet"),
  16155. name: "Foot",
  16156. image: {
  16157. source: "./media/characters/dragonien/foot.svg",
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(8 + 4 / 12, "feet"),
  16165. default: true
  16166. },
  16167. {
  16168. name: "Macro",
  16169. height: math.unit(200, "feet")
  16170. },
  16171. {
  16172. name: "Megamacro",
  16173. height: math.unit(1, "mile")
  16174. },
  16175. {
  16176. name: "Gigamacro",
  16177. height: math.unit(1000, "miles")
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Desta" },
  16183. {
  16184. front: {
  16185. height: math.unit(5 + 2 / 12, "feet"),
  16186. weight: math.unit(110, "lb"),
  16187. name: "Front",
  16188. image: {
  16189. source: "./media/characters/desta/front.svg",
  16190. extra: 1482 / 1417
  16191. }
  16192. },
  16193. side: {
  16194. height: math.unit(5 + 2 / 12, "feet"),
  16195. weight: math.unit(110, "lb"),
  16196. name: "Side",
  16197. image: {
  16198. source: "./media/characters/desta/side.svg",
  16199. extra: 2579 / 2491,
  16200. bottom: 0.053
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(6, "inches")
  16208. },
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(5 + 2 / 12, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(62, "feet")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(1800, "feet")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Storm Alystar" },
  16226. {
  16227. front: {
  16228. height: math.unit(10, "feet"),
  16229. weight: math.unit(700, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/storm-alystar/front.svg",
  16233. extra: 2112 / 1898,
  16234. bottom: 0.034
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Micro",
  16241. height: math.unit(3.5, "inches")
  16242. },
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(10, "feet"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Macro",
  16250. height: math.unit(400, "feet")
  16251. },
  16252. {
  16253. name: "Deific",
  16254. height: math.unit(60, "miles")
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Ilia" },
  16260. {
  16261. front: {
  16262. height: math.unit(2.35, "meters"),
  16263. weight: math.unit(119, "kg"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/ilia/front.svg",
  16267. extra: 1285 / 1255,
  16268. bottom: 0.06
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(2.35, "meters")
  16276. },
  16277. {
  16278. name: "Macro",
  16279. height: math.unit(140, "meters"),
  16280. default: true
  16281. },
  16282. {
  16283. name: "Megamacro",
  16284. height: math.unit(100, "miles")
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "KingDead" },
  16290. {
  16291. front: {
  16292. height: math.unit(6 + 5 / 12, "feet"),
  16293. weight: math.unit(190, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/kingdead/front.svg",
  16297. extra: 1228 / 1177
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Micro",
  16304. height: math.unit(7, "inches")
  16305. },
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(6 + 5 / 12, "feet")
  16309. },
  16310. {
  16311. name: "Macro",
  16312. height: math.unit(150, "feet"),
  16313. default: true
  16314. },
  16315. {
  16316. name: "Megamacro",
  16317. height: math.unit(200, "miles")
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Kyrehx" },
  16323. {
  16324. front: {
  16325. height: math.unit(8, "feet"),
  16326. weight: math.unit(600, "lb"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/kyrehx/front.svg",
  16330. extra: 1195 / 1095,
  16331. bottom: 0.034
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Micro",
  16338. height: math.unit(2, "inches")
  16339. },
  16340. {
  16341. name: "Normal",
  16342. height: math.unit(8, "feet"),
  16343. default: true
  16344. },
  16345. {
  16346. name: "Macro",
  16347. height: math.unit(255, "feet")
  16348. },
  16349. ]
  16350. ))
  16351. characterMakers.push(() => makeCharacter(
  16352. { name: "Xang" },
  16353. {
  16354. front: {
  16355. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16356. weight: math.unit(184, "lb"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/xang/front.svg",
  16360. extra: 845 / 755
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Macro",
  16372. height: math.unit(0.935 * 146, "feet")
  16373. },
  16374. {
  16375. name: "Megamacro",
  16376. height: math.unit(0.935 * 3, "miles")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Doc Weardno" },
  16382. {
  16383. frontDressed: {
  16384. height: math.unit(5 + 7 / 12, "feet"),
  16385. weight: math.unit(140, "lb"),
  16386. name: "Front (Dressed)",
  16387. image: {
  16388. source: "./media/characters/doc-weardno/front-dressed.svg",
  16389. extra: 263 / 234
  16390. }
  16391. },
  16392. backDressed: {
  16393. height: math.unit(5 + 7 / 12, "feet"),
  16394. weight: math.unit(140, "lb"),
  16395. name: "Back (Dressed)",
  16396. image: {
  16397. source: "./media/characters/doc-weardno/back-dressed.svg",
  16398. extra: 266 / 238
  16399. }
  16400. },
  16401. front: {
  16402. height: math.unit(5 + 7 / 12, "feet"),
  16403. weight: math.unit(140, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/doc-weardno/front.svg",
  16407. extra: 254 / 233
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Micro",
  16414. height: math.unit(3, "inches")
  16415. },
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(5 + 7 / 12, "feet"),
  16419. default: true
  16420. },
  16421. {
  16422. name: "Macro",
  16423. height: math.unit(25, "feet")
  16424. },
  16425. {
  16426. name: "Megamacro",
  16427. height: math.unit(2, "miles")
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Seth Whilst" },
  16433. {
  16434. front: {
  16435. height: math.unit(6 + 2 / 12, "feet"),
  16436. weight: math.unit(153, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/seth-whilst/front.svg",
  16440. bottom: 0.07
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Micro",
  16447. height: math.unit(5, "inches")
  16448. },
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(6 + 2 / 12, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Pocket Jabari" },
  16458. {
  16459. front: {
  16460. height: math.unit(3, "inches"),
  16461. weight: math.unit(8, "grams"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/pocket-jabari/front.svg",
  16465. extra: 1024 / 974,
  16466. bottom: 0.039
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Minimicro",
  16473. height: math.unit(8, "mm")
  16474. },
  16475. {
  16476. name: "Micro",
  16477. height: math.unit(3, "inches"),
  16478. default: true
  16479. },
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(3, "feet")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Sapphy" },
  16488. {
  16489. front: {
  16490. height: math.unit(15, "feet"),
  16491. weight: math.unit(3280, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/sapphy/front.svg",
  16495. extra: 671 / 577,
  16496. bottom: 0.085
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(15, "feet"),
  16501. weight: math.unit(3280, "lb"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/sapphy/back.svg",
  16505. extra: 631 / 607,
  16506. bottom: 0.045
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(15, "feet")
  16514. },
  16515. {
  16516. name: "Casual Macro",
  16517. height: math.unit(120, "feet")
  16518. },
  16519. {
  16520. name: "Macro",
  16521. height: math.unit(2150, "feet"),
  16522. default: true
  16523. },
  16524. {
  16525. name: "Megamacro",
  16526. height: math.unit(8, "miles")
  16527. },
  16528. {
  16529. name: "Galaxy Mom",
  16530. height: math.unit(6, "megalightyears")
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Kiro" },
  16536. {
  16537. front: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(170, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/kiro/front.svg",
  16543. extra: 1064 / 1012,
  16544. bottom: 0.052
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Micro",
  16551. height: math.unit(6, "inches")
  16552. },
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(6, "feet"),
  16556. default: true
  16557. },
  16558. {
  16559. name: "Macro",
  16560. height: math.unit(72, "feet")
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Irishfox" },
  16566. {
  16567. front: {
  16568. height: math.unit(5 + 9 / 12, "feet"),
  16569. weight: math.unit(175, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/irishfox/front.svg",
  16573. extra: 1912 / 1680,
  16574. bottom: 0.02
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Nano",
  16581. height: math.unit(1, "mm")
  16582. },
  16583. {
  16584. name: "Micro",
  16585. height: math.unit(2, "inches")
  16586. },
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(5 + 9 / 12, "feet"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Macro",
  16594. height: math.unit(45, "feet")
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Aronai Sieyes" },
  16600. {
  16601. front: {
  16602. height: math.unit(6 + 1 / 12, "feet"),
  16603. weight: math.unit(150, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/aronai-sieyes/front.svg",
  16607. extra: 1556 / 1480,
  16608. bottom: 0.015
  16609. }
  16610. },
  16611. side: {
  16612. height: math.unit(6 + 1 / 12, "feet"),
  16613. weight: math.unit(150, "lb"),
  16614. name: "Side",
  16615. image: {
  16616. source: "./media/characters/aronai-sieyes/side.svg",
  16617. extra: 1433 / 1390,
  16618. bottom: 0.0393
  16619. }
  16620. },
  16621. back: {
  16622. height: math.unit(6 + 1 / 12, "feet"),
  16623. weight: math.unit(150, "lb"),
  16624. name: "Back",
  16625. image: {
  16626. source: "./media/characters/aronai-sieyes/back.svg",
  16627. extra: 1544 / 1494,
  16628. bottom: 0.02
  16629. }
  16630. },
  16631. frontClothed: {
  16632. height: math.unit(6 + 1 / 12, "feet"),
  16633. weight: math.unit(150, "lb"),
  16634. name: "Front (Clothed)",
  16635. image: {
  16636. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16637. extra: 1582 / 1527
  16638. }
  16639. },
  16640. feral: {
  16641. height: math.unit(18, "feet"),
  16642. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16643. name: "Feral",
  16644. image: {
  16645. source: "./media/characters/aronai-sieyes/feral.svg",
  16646. extra: 1530 / 1240,
  16647. bottom: 0.035
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Micro",
  16654. height: math.unit(2, "inches")
  16655. },
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(6 + 1 / 12, "feet"),
  16659. default: true
  16660. }
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Xuna" },
  16665. {
  16666. front: {
  16667. height: math.unit(12, "feet"),
  16668. weight: math.unit(410, "kg"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/xuna/front.svg",
  16672. extra: 2184 / 1980
  16673. }
  16674. },
  16675. side: {
  16676. height: math.unit(12, "feet"),
  16677. weight: math.unit(410, "kg"),
  16678. name: "Side",
  16679. image: {
  16680. source: "./media/characters/xuna/side.svg",
  16681. extra: 2184 / 1980
  16682. }
  16683. },
  16684. back: {
  16685. height: math.unit(12, "feet"),
  16686. weight: math.unit(410, "kg"),
  16687. name: "Back",
  16688. image: {
  16689. source: "./media/characters/xuna/back.svg",
  16690. extra: 2184 / 1980
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Nano glow",
  16697. height: math.unit(10, "nm")
  16698. },
  16699. {
  16700. name: "Micro floof",
  16701. height: math.unit(0.3, "m")
  16702. },
  16703. {
  16704. name: "Huggable softy boi",
  16705. height: math.unit(3.6576, "m"),
  16706. default: true
  16707. },
  16708. {
  16709. name: "Admirable floof",
  16710. height: math.unit(80, "meters")
  16711. },
  16712. {
  16713. name: "Gentle macro",
  16714. height: math.unit(300, "meters")
  16715. },
  16716. {
  16717. name: "Very careful floof",
  16718. height: math.unit(3200, "meters")
  16719. },
  16720. {
  16721. name: "The mega floof",
  16722. height: math.unit(36000, "meters")
  16723. },
  16724. {
  16725. name: "Giga-fur-Wicker",
  16726. height: math.unit(4800000, "meters")
  16727. },
  16728. {
  16729. name: "Licky world",
  16730. height: math.unit(20000000, "meters")
  16731. },
  16732. {
  16733. name: "Floofy cyan sun",
  16734. height: math.unit(1500000000, "meters")
  16735. },
  16736. {
  16737. name: "Milky Wicker",
  16738. height: math.unit(1000000000000000000000, "meters")
  16739. },
  16740. {
  16741. name: "The observing Wicker",
  16742. height: math.unit(999999999999999999999999999, "meters")
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Arokha Sieyes" },
  16748. {
  16749. front: {
  16750. height: math.unit(5 + 9 / 12, "feet"),
  16751. weight: math.unit(150, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/arokha-sieyes/front.svg",
  16755. extra: 1425 / 1284,
  16756. bottom: 0.05
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(5 + 9 / 12, "feet")
  16764. },
  16765. {
  16766. name: "Macro",
  16767. height: math.unit(30, "meters"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Arokh Sieyes" },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(180, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/arokh-sieyes/front.svg",
  16781. extra: 1830 / 1769,
  16782. bottom: 0.01
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Normal",
  16789. height: math.unit(6, "feet")
  16790. },
  16791. {
  16792. name: "Macro",
  16793. height: math.unit(30, "meters"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Goldeneye" },
  16800. {
  16801. side: {
  16802. height: math.unit(13 + 1 / 12, "feet"),
  16803. weight: math.unit(8.5, "tonnes"),
  16804. name: "Side",
  16805. image: {
  16806. source: "./media/characters/goldeneye/side.svg",
  16807. extra: 1182 / 778,
  16808. bottom: 0.067
  16809. }
  16810. },
  16811. paw: {
  16812. height: math.unit(3.4, "feet"),
  16813. name: "Paw",
  16814. image: {
  16815. source: "./media/characters/goldeneye/paw.svg"
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(13 + 1 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Leonardo Lycheborne" },
  16829. {
  16830. front: {
  16831. height: math.unit(6 + 1 / 12, "feet"),
  16832. weight: math.unit(210, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/leonardo-lycheborne/front.svg",
  16836. extra: 390 / 365,
  16837. bottom: 0.032
  16838. }
  16839. },
  16840. side: {
  16841. height: math.unit(6 + 1 / 12, "feet"),
  16842. weight: math.unit(210, "lb"),
  16843. name: "Side",
  16844. image: {
  16845. source: "./media/characters/leonardo-lycheborne/side.svg",
  16846. extra: 390 / 365,
  16847. bottom: 0.005
  16848. }
  16849. },
  16850. back: {
  16851. height: math.unit(6 + 1 / 12, "feet"),
  16852. weight: math.unit(210, "lb"),
  16853. name: "Back",
  16854. image: {
  16855. source: "./media/characters/leonardo-lycheborne/back.svg",
  16856. extra: 392 / 366,
  16857. bottom: 0.01
  16858. }
  16859. },
  16860. hand: {
  16861. height: math.unit(1.08, "feet"),
  16862. name: "Hand",
  16863. image: {
  16864. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16865. }
  16866. },
  16867. foot: {
  16868. height: math.unit(1.32, "feet"),
  16869. name: "Foot",
  16870. image: {
  16871. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16872. }
  16873. },
  16874. were: {
  16875. height: math.unit(20, "feet"),
  16876. weight: math.unit(7800, "lb"),
  16877. name: "Were",
  16878. image: {
  16879. source: "./media/characters/leonardo-lycheborne/were.svg",
  16880. extra: 308 / 294,
  16881. bottom: 0.048
  16882. }
  16883. },
  16884. feral: {
  16885. height: math.unit(7.5, "feet"),
  16886. weight: math.unit(600, "lb"),
  16887. name: "Feral",
  16888. image: {
  16889. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16890. extra: 210 / 186,
  16891. bottom: 0.108
  16892. }
  16893. },
  16894. taur: {
  16895. height: math.unit(11, "feet"),
  16896. weight: math.unit(3300, "lb"),
  16897. name: "Taur",
  16898. image: {
  16899. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16900. extra: 320 / 303,
  16901. bottom: 0.025
  16902. }
  16903. },
  16904. barghest: {
  16905. height: math.unit(11, "feet"),
  16906. weight: math.unit(1300, "lb"),
  16907. name: "Barghest",
  16908. image: {
  16909. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16910. extra: 323 / 302,
  16911. bottom: 0.027
  16912. }
  16913. },
  16914. dick: {
  16915. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16916. name: "Dick",
  16917. image: {
  16918. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16919. }
  16920. },
  16921. dickWere: {
  16922. height: math.unit((20) / 3.8, "feet"),
  16923. name: "Dick (Were)",
  16924. image: {
  16925. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(6 + 1 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Jet" },
  16939. {
  16940. front: {
  16941. height: math.unit(10, "feet"),
  16942. weight: math.unit(350, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/jet/front.svg",
  16946. extra: 2050 / 1980,
  16947. bottom: 0.013
  16948. }
  16949. },
  16950. back: {
  16951. height: math.unit(10, "feet"),
  16952. weight: math.unit(350, "lb"),
  16953. name: "Back",
  16954. image: {
  16955. source: "./media/characters/jet/back.svg",
  16956. extra: 2050 / 1980,
  16957. bottom: 0.013
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Micro",
  16964. height: math.unit(6, "inches")
  16965. },
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(10, "feet"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Macro",
  16973. height: math.unit(100, "feet")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Tanarath" },
  16979. {
  16980. front: {
  16981. height: math.unit(15, "feet"),
  16982. weight: math.unit(2800, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/tanarath/front.svg",
  16986. extra: 2392 / 2220,
  16987. bottom: 0.03
  16988. }
  16989. },
  16990. back: {
  16991. height: math.unit(15, "feet"),
  16992. weight: math.unit(2800, "lb"),
  16993. name: "Back",
  16994. image: {
  16995. source: "./media/characters/tanarath/back.svg",
  16996. extra: 2392 / 2220,
  16997. bottom: 0.03
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(15, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Patty CattyBatty" },
  17011. {
  17012. front: {
  17013. height: math.unit(7 + 1 / 12, "feet"),
  17014. weight: math.unit(175, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/patty-cattybatty/front.svg",
  17018. extra: 908 / 874,
  17019. bottom: 0.025
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Micro",
  17026. height: math.unit(1, "inch")
  17027. },
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(7 + 1 / 12, "feet")
  17031. },
  17032. {
  17033. name: "Mini Macro",
  17034. height: math.unit(155, "feet")
  17035. },
  17036. {
  17037. name: "Macro",
  17038. height: math.unit(1077, "feet")
  17039. },
  17040. {
  17041. name: "Mega Macro",
  17042. height: math.unit(47650, "feet"),
  17043. default: true
  17044. },
  17045. {
  17046. name: "Giga Macro",
  17047. height: math.unit(440, "miles")
  17048. },
  17049. {
  17050. name: "Tera Macro",
  17051. height: math.unit(8700, "miles")
  17052. },
  17053. {
  17054. name: "Planetary Macro",
  17055. height: math.unit(32700, "miles")
  17056. },
  17057. {
  17058. name: "Solar Macro",
  17059. height: math.unit(550000, "miles")
  17060. },
  17061. {
  17062. name: "Celestial Macro",
  17063. height: math.unit(2.5, "AU")
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Cappu" },
  17069. {
  17070. front: {
  17071. height: math.unit(4 + 5 / 12, "feet"),
  17072. weight: math.unit(90, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/cappu/front.svg",
  17076. extra: 1247 / 1152,
  17077. bottom: 0.012
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(4 + 5 / 12, "feet"),
  17085. default: true
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Sebi" },
  17091. {
  17092. frontDressed: {
  17093. height: math.unit(70, "cm"),
  17094. weight: math.unit(6, "kg"),
  17095. name: "Front (Dressed)",
  17096. image: {
  17097. source: "./media/characters/sebi/front-dressed.svg",
  17098. extra: 713.5 / 686.5,
  17099. bottom: 0.003
  17100. }
  17101. },
  17102. front: {
  17103. height: math.unit(70, "cm"),
  17104. weight: math.unit(5, "kg"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/sebi/front.svg",
  17108. extra: 713.5 / 686.5,
  17109. bottom: 0.003
  17110. }
  17111. }
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(70, "cm"),
  17117. default: true
  17118. },
  17119. {
  17120. name: "Macro",
  17121. height: math.unit(8, "meters")
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Typhek" },
  17127. {
  17128. front: {
  17129. height: math.unit(6, "feet"),
  17130. weight: math.unit(150, "lb"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/typhek/front.svg",
  17134. extra: 1948 / 1929,
  17135. bottom: 0.025
  17136. }
  17137. },
  17138. side: {
  17139. height: math.unit(6, "feet"),
  17140. weight: math.unit(150, "lb"),
  17141. name: "Side",
  17142. image: {
  17143. source: "./media/characters/typhek/side.svg",
  17144. extra: 2034 / 2010,
  17145. bottom: 0.003
  17146. }
  17147. },
  17148. back: {
  17149. height: math.unit(6, "feet"),
  17150. weight: math.unit(150, "lb"),
  17151. name: "Back",
  17152. image: {
  17153. source: "./media/characters/typhek/back.svg",
  17154. extra: 2005 / 1978,
  17155. bottom: 0.004
  17156. }
  17157. },
  17158. palm: {
  17159. height: math.unit(1.2, "feet"),
  17160. name: "Palm",
  17161. image: {
  17162. source: "./media/characters/typhek/palm.svg"
  17163. }
  17164. },
  17165. fist: {
  17166. height: math.unit(1.1, "feet"),
  17167. name: "Fist",
  17168. image: {
  17169. source: "./media/characters/typhek/fist.svg"
  17170. }
  17171. },
  17172. foot: {
  17173. height: math.unit(1.57, "feet"),
  17174. name: "Foot",
  17175. image: {
  17176. source: "./media/characters/typhek/foot.svg"
  17177. }
  17178. },
  17179. sole: {
  17180. height: math.unit(2.05, "feet"),
  17181. name: "Sole",
  17182. image: {
  17183. source: "./media/characters/typhek/sole.svg"
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Macro",
  17190. height: math.unit(40, "stories"),
  17191. default: true
  17192. },
  17193. {
  17194. name: "Megamacro",
  17195. height: math.unit(1, "mile")
  17196. },
  17197. {
  17198. name: "Gigamacro",
  17199. height: math.unit(4000, "solarradii")
  17200. },
  17201. {
  17202. name: "Universal",
  17203. height: math.unit(1.1, "universes")
  17204. }
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Kassy" },
  17209. {
  17210. side: {
  17211. height: math.unit(5 + 7 / 12, "feet"),
  17212. weight: math.unit(150, "lb"),
  17213. name: "Side",
  17214. image: {
  17215. source: "./media/characters/kassy/side.svg",
  17216. extra: 1280 / 1225,
  17217. bottom: 0.002
  17218. }
  17219. },
  17220. front: {
  17221. height: math.unit(5 + 7 / 12, "feet"),
  17222. weight: math.unit(150, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/kassy/front.svg",
  17226. extra: 1280 / 1225,
  17227. bottom: 0.025
  17228. }
  17229. },
  17230. back: {
  17231. height: math.unit(5 + 7 / 12, "feet"),
  17232. weight: math.unit(150, "lb"),
  17233. name: "Back",
  17234. image: {
  17235. source: "./media/characters/kassy/back.svg",
  17236. extra: 1280 / 1225,
  17237. bottom: 0.002
  17238. }
  17239. },
  17240. foot: {
  17241. height: math.unit(1.266, "feet"),
  17242. name: "Foot",
  17243. image: {
  17244. source: "./media/characters/kassy/foot.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(5 + 7 / 12, "feet")
  17252. },
  17253. {
  17254. name: "Macro",
  17255. height: math.unit(137, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Megamacro",
  17260. height: math.unit(1, "mile")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Neil" },
  17266. {
  17267. front: {
  17268. height: math.unit(6 + 1 / 12, "feet"),
  17269. weight: math.unit(200, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/neil/front.svg",
  17273. extra: 1326 / 1250,
  17274. bottom: 0.023
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(6 + 1 / 12, "feet"),
  17282. default: true
  17283. },
  17284. {
  17285. name: "Macro",
  17286. height: math.unit(200, "feet")
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Atticus" },
  17292. {
  17293. front: {
  17294. height: math.unit(5 + 9 / 12, "feet"),
  17295. weight: math.unit(190, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/atticus/front.svg",
  17299. extra: 2934 / 2785,
  17300. bottom: 0.025
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(5 + 9 / 12, "feet"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Macro",
  17312. height: math.unit(180, "feet")
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Milo" },
  17318. {
  17319. side: {
  17320. height: math.unit(9, "feet"),
  17321. weight: math.unit(650, "lb"),
  17322. name: "Side",
  17323. image: {
  17324. source: "./media/characters/milo/side.svg",
  17325. extra: 2644 / 2310,
  17326. bottom: 0.032
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(9, "feet"),
  17334. default: true
  17335. },
  17336. {
  17337. name: "Macro",
  17338. height: math.unit(300, "feet")
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Ijzer" },
  17344. {
  17345. side: {
  17346. height: math.unit(8, "meters"),
  17347. weight: math.unit(90000, "kg"),
  17348. name: "Side",
  17349. image: {
  17350. source: "./media/characters/ijzer/side.svg",
  17351. extra: 2756 / 1600,
  17352. bottom: 0.01
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Small",
  17359. height: math.unit(3, "meters")
  17360. },
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(8, "meters"),
  17364. default: true
  17365. },
  17366. {
  17367. name: "Normal+",
  17368. height: math.unit(10, "meters")
  17369. },
  17370. {
  17371. name: "Bigger",
  17372. height: math.unit(24, "meters")
  17373. },
  17374. {
  17375. name: "Huge",
  17376. height: math.unit(80, "meters")
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Luca Cervicum" },
  17382. {
  17383. front: {
  17384. height: math.unit(6 + 2 / 12, "feet"),
  17385. weight: math.unit(153, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/luca-cervicum/front.svg",
  17389. extra: 370 / 327,
  17390. bottom: 0.015
  17391. }
  17392. },
  17393. back: {
  17394. height: math.unit(6 + 2 / 12, "feet"),
  17395. weight: math.unit(153, "lb"),
  17396. name: "Back",
  17397. image: {
  17398. source: "./media/characters/luca-cervicum/back.svg",
  17399. extra: 367 / 333,
  17400. bottom: 0.005
  17401. }
  17402. },
  17403. frontGear: {
  17404. height: math.unit(6 + 2 / 12, "feet"),
  17405. weight: math.unit(173, "lb"),
  17406. name: "Front (Gear)",
  17407. image: {
  17408. source: "./media/characters/luca-cervicum/front-gear.svg",
  17409. extra: 377 / 333,
  17410. bottom: 0.006
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(6 + 2 / 12, "feet"),
  17418. default: true
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Oliver" },
  17424. {
  17425. front: {
  17426. height: math.unit(6 + 1 / 12, "feet"),
  17427. weight: math.unit(304, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/oliver/front.svg",
  17431. extra: 157 / 143,
  17432. bottom: 0.08
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(6 + 1 / 12, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Shane" },
  17446. {
  17447. front: {
  17448. height: math.unit(5 + 7 / 12, "feet"),
  17449. weight: math.unit(140, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/shane/front.svg",
  17453. extra: 304 / 289,
  17454. bottom: 0.005
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(5 + 7 / 12, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Shin" },
  17468. {
  17469. front: {
  17470. height: math.unit(5 + 9 / 12, "feet"),
  17471. weight: math.unit(178, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/shin/front.svg",
  17475. extra: 159 / 151,
  17476. bottom: 0.015
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(5 + 9 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Xerxes" },
  17490. {
  17491. front: {
  17492. height: math.unit(5 + 10 / 12, "feet"),
  17493. weight: math.unit(168, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/xerxes/front.svg",
  17497. extra: 282 / 260,
  17498. bottom: 0.045
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(5 + 10 / 12, "feet"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Chaska" },
  17512. {
  17513. front: {
  17514. height: math.unit(6 + 7 / 12, "feet"),
  17515. weight: math.unit(208, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/chaska/front.svg",
  17519. extra: 332 / 319,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(6 + 7 / 12, "feet"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Enuk" },
  17534. {
  17535. front: {
  17536. height: math.unit(5 + 8 / 12, "feet"),
  17537. weight: math.unit(208, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/enuk/front.svg",
  17541. extra: 437 / 406,
  17542. bottom: 0.02
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(5 + 8 / 12, "feet"),
  17550. default: true
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Bruun" },
  17556. {
  17557. front: {
  17558. height: math.unit(5 + 10 / 12, "feet"),
  17559. weight: math.unit(252, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/bruun/front.svg",
  17563. extra: 197 / 187,
  17564. bottom: 0.012
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(5 + 10 / 12, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Alexeev" },
  17578. {
  17579. front: {
  17580. height: math.unit(6 + 10 / 12, "feet"),
  17581. weight: math.unit(255, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/alexeev/front.svg",
  17585. extra: 213 / 200,
  17586. bottom: 0.05
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(6 + 10 / 12, "feet"),
  17594. default: true
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Evelyn" },
  17600. {
  17601. front: {
  17602. height: math.unit(2 + 8 / 12, "feet"),
  17603. weight: math.unit(22, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/evelyn/front.svg",
  17607. extra: 208 / 180
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(2 + 8 / 12, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Inca" },
  17621. {
  17622. front: {
  17623. height: math.unit(5 + 9 / 12, "feet"),
  17624. weight: math.unit(139, "lb"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/inca/front.svg",
  17628. extra: 294 / 291,
  17629. bottom: 0.03
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(5 + 9 / 12, "feet"),
  17637. default: true
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Magdalene" },
  17643. {
  17644. front: {
  17645. height: math.unit(5 + 1 / 12, "feet"),
  17646. weight: math.unit(84, "lb"),
  17647. name: "Front",
  17648. image: {
  17649. source: "./media/characters/magdalene/front.svg",
  17650. extra: 293 / 273
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(5 + 1 / 12, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Mera" },
  17664. {
  17665. front: {
  17666. height: math.unit(6 + 3 / 12, "feet"),
  17667. weight: math.unit(185, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/mera/front.svg",
  17671. extra: 291 / 277,
  17672. bottom: 0.03
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(6 + 3 / 12, "feet"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Ceres" },
  17686. {
  17687. front: {
  17688. height: math.unit(6 + 7 / 12, "feet"),
  17689. weight: math.unit(160, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/ceres/front.svg",
  17693. extra: 1023 / 950,
  17694. bottom: 0.027
  17695. }
  17696. },
  17697. back: {
  17698. height: math.unit(6 + 7 / 12, "feet"),
  17699. weight: math.unit(160, "lb"),
  17700. name: "Back",
  17701. image: {
  17702. source: "./media/characters/ceres/back.svg",
  17703. extra: 1023 / 950
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(6 + 7 / 12, "feet"),
  17711. default: true
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Kris" },
  17717. {
  17718. front: {
  17719. height: math.unit(5 + 10 / 12, "feet"),
  17720. weight: math.unit(150, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/kris/front.svg",
  17724. extra: 885 / 803,
  17725. bottom: 0.03
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(5 + 10 / 12, "feet"),
  17733. default: true
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Taluthus" },
  17739. {
  17740. front: {
  17741. height: math.unit(7, "feet"),
  17742. weight: math.unit(120, "kg"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/taluthus/front.svg",
  17746. extra: 903 / 833,
  17747. bottom: 0.015
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(7, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Macro",
  17759. height: math.unit(300, "feet")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Dawn" },
  17765. {
  17766. front: {
  17767. height: math.unit(5 + 9 / 12, "feet"),
  17768. weight: math.unit(145, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/dawn/front.svg",
  17772. extra: 2094 / 2016,
  17773. bottom: 0.025
  17774. }
  17775. },
  17776. back: {
  17777. height: math.unit(5 + 9 / 12, "feet"),
  17778. weight: math.unit(160, "lb"),
  17779. name: "Back",
  17780. image: {
  17781. source: "./media/characters/dawn/back.svg",
  17782. extra: 2112 / 2080,
  17783. bottom: 0.005
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(6 + 7 / 12, "feet"),
  17791. default: true
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Arador" },
  17797. {
  17798. anthro: {
  17799. height: math.unit(8 + 3 / 12, "feet"),
  17800. weight: math.unit(450, "lb"),
  17801. name: "Anthro",
  17802. image: {
  17803. source: "./media/characters/arador/anthro.svg",
  17804. extra: 1835 / 1718,
  17805. bottom: 0.025
  17806. }
  17807. },
  17808. feral: {
  17809. height: math.unit(4, "feet"),
  17810. weight: math.unit(200, "lb"),
  17811. name: "Feral",
  17812. image: {
  17813. source: "./media/characters/arador/feral.svg",
  17814. extra: 1683 / 1514,
  17815. bottom: 0.07
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(8 + 3 / 12, "feet")
  17823. },
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(82.5, "feet"),
  17827. default: true
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Dharsi" },
  17833. {
  17834. front: {
  17835. height: math.unit(5 + 10 / 12, "feet"),
  17836. weight: math.unit(125, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/dharsi/front.svg",
  17840. extra: 716 / 630,
  17841. bottom: 0.035
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Nano",
  17848. height: math.unit(100, "nm")
  17849. },
  17850. {
  17851. name: "Micro",
  17852. height: math.unit(2, "inches")
  17853. },
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(5 + 10 / 12, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Macro",
  17861. height: math.unit(1000, "feet")
  17862. },
  17863. {
  17864. name: "Megamacro",
  17865. height: math.unit(10, "miles")
  17866. },
  17867. {
  17868. name: "Gigamacro",
  17869. height: math.unit(3000, "miles")
  17870. },
  17871. {
  17872. name: "Teramacro",
  17873. height: math.unit(500000, "miles")
  17874. },
  17875. {
  17876. name: "Teramacro+",
  17877. height: math.unit(30, "galaxies")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Deathy" },
  17883. {
  17884. front: {
  17885. height: math.unit(6, "feet"),
  17886. weight: math.unit(150, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/deathy/front.svg",
  17890. extra: 1552 / 1463,
  17891. bottom: 0.025
  17892. }
  17893. },
  17894. side: {
  17895. height: math.unit(6, "feet"),
  17896. weight: math.unit(150, "lb"),
  17897. name: "Side",
  17898. image: {
  17899. source: "./media/characters/deathy/side.svg",
  17900. extra: 1604 / 1455,
  17901. bottom: 0.025
  17902. }
  17903. },
  17904. back: {
  17905. height: math.unit(6, "feet"),
  17906. weight: math.unit(150, "lb"),
  17907. name: "Back",
  17908. image: {
  17909. source: "./media/characters/deathy/back.svg",
  17910. extra: 1580 / 1463,
  17911. bottom: 0.005
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Micro",
  17918. height: math.unit(5, "millimeters")
  17919. },
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(6 + 5 / 12, "feet"),
  17923. default: true
  17924. },
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Juniper" },
  17929. {
  17930. front: {
  17931. height: math.unit(16, "feet"),
  17932. weight: math.unit(4000, "lb"),
  17933. name: "Front",
  17934. image: {
  17935. source: "./media/characters/juniper/front.svg",
  17936. bottom: 0.04
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(16, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Hipster" },
  17950. {
  17951. front: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/hipster/front.svg",
  17957. extra: 1312 / 1209,
  17958. bottom: 0.025
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(6, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/hipster/back.svg",
  17967. extra: 1281 / 1196,
  17968. bottom: 0.01
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Micro",
  17975. height: math.unit(1, "mm")
  17976. },
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(4, "inches"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Macro",
  17984. height: math.unit(500, "feet")
  17985. },
  17986. {
  17987. name: "Megamacro",
  17988. height: math.unit(1000, "miles")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Tendirmuldr" },
  17994. {
  17995. front: {
  17996. height: math.unit(6, "feet"),
  17997. weight: math.unit(150, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/tendirmuldr/front.svg",
  18001. extra: 1878 / 1772,
  18002. bottom: 0.015
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Megamacro",
  18009. height: math.unit(1500, "miles"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Mort" },
  18016. {
  18017. front: {
  18018. height: math.unit(14, "feet"),
  18019. weight: math.unit(12000, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/mort/front.svg",
  18023. extra: 365 / 318,
  18024. bottom: 0.01
  18025. }
  18026. },
  18027. side: {
  18028. height: math.unit(14, "feet"),
  18029. weight: math.unit(12000, "lb"),
  18030. name: "Side",
  18031. image: {
  18032. source: "./media/characters/mort/side.svg",
  18033. extra: 365 / 318,
  18034. bottom: 0.052
  18035. },
  18036. default: true
  18037. },
  18038. back: {
  18039. height: math.unit(14, "feet"),
  18040. weight: math.unit(12000, "lb"),
  18041. name: "Back",
  18042. image: {
  18043. source: "./media/characters/mort/back.svg",
  18044. extra: 371 / 332,
  18045. bottom: 0.18
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(14, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Lycoa" },
  18059. {
  18060. front: {
  18061. height: math.unit(8, "feet"),
  18062. weight: math.unit(1, "ton"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/lycoa/front.svg",
  18066. extra: 1875 / 1789,
  18067. bottom: 0.022
  18068. }
  18069. },
  18070. back: {
  18071. height: math.unit(8, "feet"),
  18072. weight: math.unit(1, "ton"),
  18073. name: "Back",
  18074. image: {
  18075. source: "./media/characters/lycoa/back.svg",
  18076. extra: 1835 / 1781,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(8, "feet"),
  18085. default: true
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(30, "feet")
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Naldara" },
  18095. {
  18096. front: {
  18097. height: math.unit(4 + 2 / 12, "feet"),
  18098. weight: math.unit(70, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/naldara/front.svg",
  18102. extra: 841 / 720,
  18103. bottom: 0.04
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(4 + 2 / 12, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Briar" },
  18117. {
  18118. front: {
  18119. height: math.unit(13 + 7 / 12, "feet"),
  18120. weight: math.unit(1500, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/briar/front.svg",
  18124. extra: 626 / 596,
  18125. bottom: 0.08
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(13 + 7 / 12, "feet"),
  18133. default: true
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Vanguard" },
  18139. {
  18140. side: {
  18141. height: math.unit(10, "feet"),
  18142. weight: math.unit(500, "lb"),
  18143. name: "Side",
  18144. image: {
  18145. source: "./media/characters/vanguard/side.svg",
  18146. extra: 502 / 425,
  18147. bottom: 0.087
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(10, "feet"),
  18155. default: true
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Artemis" },
  18161. {
  18162. front: {
  18163. height: math.unit(7.5, "feet"),
  18164. weight: math.unit(2, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/artemis/front.svg",
  18168. extra: 1192 / 1075,
  18169. bottom: 0.07
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(7.5, "feet"),
  18177. default: true
  18178. },
  18179. {
  18180. name: "Enlarged",
  18181. height: math.unit(12, "feet")
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Kira" },
  18187. {
  18188. front: {
  18189. height: math.unit(5 + 3 / 12, "feet"),
  18190. weight: math.unit(160, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/kira/front.svg",
  18194. extra: 906 / 786,
  18195. bottom: 0.01
  18196. }
  18197. },
  18198. back: {
  18199. height: math.unit(5 + 3 / 12, "feet"),
  18200. weight: math.unit(160, "lb"),
  18201. name: "Back",
  18202. image: {
  18203. source: "./media/characters/kira/back.svg",
  18204. extra: 882 / 757,
  18205. bottom: 0.005
  18206. }
  18207. },
  18208. frontDressed: {
  18209. height: math.unit(5 + 3 / 12, "feet"),
  18210. weight: math.unit(160, "lb"),
  18211. name: "Front (Dressed)",
  18212. image: {
  18213. source: "./media/characters/kira/front-dressed.svg",
  18214. extra: 906 / 786,
  18215. bottom: 0.01
  18216. }
  18217. },
  18218. beans: {
  18219. height: math.unit(0.92, "feet"),
  18220. name: "Beans",
  18221. image: {
  18222. source: "./media/characters/kira/beans.svg"
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(5 + 3 / 12, "feet"),
  18230. default: true
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Scramble" },
  18236. {
  18237. front: {
  18238. height: math.unit(5 + 4 / 12, "feet"),
  18239. weight: math.unit(145, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/scramble/front.svg",
  18243. extra: 763 / 727,
  18244. bottom: 0.05
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(5 + 4 / 12, "feet"),
  18249. weight: math.unit(145, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/scramble/back.svg",
  18253. extra: 826 / 737,
  18254. bottom: 0.002
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(5 + 4 / 12, "feet"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Biscuit" },
  18268. {
  18269. side: {
  18270. height: math.unit(6 + 2 / 12, "feet"),
  18271. weight: math.unit(190, "lb"),
  18272. name: "Side",
  18273. image: {
  18274. source: "./media/characters/biscuit/side.svg",
  18275. extra: 858 / 791,
  18276. bottom: 0.044
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(6 + 2 / 12, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Poffin" },
  18290. {
  18291. front: {
  18292. height: math.unit(5 + 2 / 12, "feet"),
  18293. weight: math.unit(120, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/poffin/front.svg",
  18297. extra: 786 / 680,
  18298. bottom: 0.005
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(5 + 2 / 12, "feet"),
  18306. default: true
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Dhari" },
  18312. {
  18313. front: {
  18314. height: math.unit(6 + 3 / 12, "feet"),
  18315. weight: math.unit(519, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/dhari/front.svg",
  18319. extra: 1048 / 946,
  18320. bottom: 0.015
  18321. }
  18322. },
  18323. back: {
  18324. height: math.unit(6 + 3 / 12, "feet"),
  18325. weight: math.unit(519, "lb"),
  18326. name: "Back",
  18327. image: {
  18328. source: "./media/characters/dhari/back.svg",
  18329. extra: 1048 / 931,
  18330. bottom: 0.005
  18331. }
  18332. },
  18333. frontDressed: {
  18334. height: math.unit(6 + 3 / 12, "feet"),
  18335. weight: math.unit(519, "lb"),
  18336. name: "Front (Dressed)",
  18337. image: {
  18338. source: "./media/characters/dhari/front-dressed.svg",
  18339. extra: 1713 / 1546,
  18340. bottom: 0.02
  18341. }
  18342. },
  18343. backDressed: {
  18344. height: math.unit(6 + 3 / 12, "feet"),
  18345. weight: math.unit(519, "lb"),
  18346. name: "Back (Dressed)",
  18347. image: {
  18348. source: "./media/characters/dhari/back-dressed.svg",
  18349. extra: 1699 / 1537,
  18350. bottom: 0.01
  18351. }
  18352. },
  18353. maw: {
  18354. height: math.unit(0.95, "feet"),
  18355. name: "Maw",
  18356. image: {
  18357. source: "./media/characters/dhari/maw.svg"
  18358. }
  18359. },
  18360. wereFront: {
  18361. height: math.unit(12 + 8 / 12, "feet"),
  18362. weight: math.unit(4000, "lb"),
  18363. name: "Front (Were)",
  18364. image: {
  18365. source: "./media/characters/dhari/were-front.svg",
  18366. extra: 1065 / 969,
  18367. bottom: 0.015
  18368. }
  18369. },
  18370. wereBack: {
  18371. height: math.unit(12 + 8 / 12, "feet"),
  18372. weight: math.unit(4000, "lb"),
  18373. name: "Back (Were)",
  18374. image: {
  18375. source: "./media/characters/dhari/were-back.svg",
  18376. extra: 1065 / 969,
  18377. bottom: 0.012
  18378. }
  18379. },
  18380. wereMaw: {
  18381. height: math.unit(0.625, "meters"),
  18382. name: "Maw (Were)",
  18383. image: {
  18384. source: "./media/characters/dhari/were-maw.svg"
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(6 + 3 / 12, "feet"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Rena Dyne" },
  18398. {
  18399. anthro: {
  18400. height: math.unit(5 + 7 / 12, "feet"),
  18401. weight: math.unit(175, "lb"),
  18402. name: "Anthro",
  18403. image: {
  18404. source: "./media/characters/rena-dyne/anthro.svg",
  18405. extra: 1849 / 1785,
  18406. bottom: 0.005
  18407. }
  18408. },
  18409. taur: {
  18410. height: math.unit(15 + 6 / 12, "feet"),
  18411. weight: math.unit(8000, "lb"),
  18412. name: "Taur",
  18413. image: {
  18414. source: "./media/characters/rena-dyne/taur.svg",
  18415. extra: 2315 / 2234,
  18416. bottom: 0.033
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(5 + 7 / 12, "feet"),
  18424. default: true
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Weremeep" },
  18430. {
  18431. front: {
  18432. height: math.unit(8, "feet"),
  18433. weight: math.unit(600, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/weremeep/front.svg",
  18437. extra: 967 / 862,
  18438. bottom: 0.01
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(8, "feet"),
  18446. default: true
  18447. },
  18448. {
  18449. name: "Lorg",
  18450. height: math.unit(12, "feet")
  18451. },
  18452. {
  18453. name: "Oh Lawd She Comin'",
  18454. height: math.unit(20, "feet")
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Reza" },
  18460. {
  18461. front: {
  18462. height: math.unit(4, "feet"),
  18463. weight: math.unit(90, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/reza/front.svg",
  18467. extra: 1183 / 1111,
  18468. bottom: 0.017
  18469. }
  18470. },
  18471. back: {
  18472. height: math.unit(4, "feet"),
  18473. weight: math.unit(90, "lb"),
  18474. name: "Back",
  18475. image: {
  18476. source: "./media/characters/reza/back.svg",
  18477. extra: 1183 / 1111,
  18478. bottom: 0.01
  18479. }
  18480. },
  18481. drake: {
  18482. height: math.unit(30, "feet"),
  18483. weight: math.unit(246960, "lb"),
  18484. name: "Drake",
  18485. image: {
  18486. source: "./media/characters/reza/drake.svg",
  18487. extra: 2350/2024,
  18488. bottom: 60.7/2403
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(4, "feet"),
  18496. default: true
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Athea" },
  18502. {
  18503. side: {
  18504. height: math.unit(15, "feet"),
  18505. weight: math.unit(14, "tons"),
  18506. name: "Side",
  18507. image: {
  18508. source: "./media/characters/athea/side.svg",
  18509. extra: 960 / 540,
  18510. bottom: 0.003
  18511. }
  18512. },
  18513. sitting: {
  18514. height: math.unit(6 * 2.85, "feet"),
  18515. weight: math.unit(14, "tons"),
  18516. name: "Sitting",
  18517. image: {
  18518. source: "./media/characters/athea/sitting.svg",
  18519. extra: 621 / 581,
  18520. bottom: 0.075
  18521. }
  18522. },
  18523. maw: {
  18524. height: math.unit(7.59498031496063, "feet"),
  18525. name: "Maw",
  18526. image: {
  18527. source: "./media/characters/athea/maw.svg"
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Lap Cat",
  18534. height: math.unit(2.5, "feet")
  18535. },
  18536. {
  18537. name: "Minimacro",
  18538. height: math.unit(15, "feet"),
  18539. default: true
  18540. },
  18541. {
  18542. name: "Macro",
  18543. height: math.unit(120, "feet")
  18544. },
  18545. {
  18546. name: "Macro+",
  18547. height: math.unit(640, "feet")
  18548. },
  18549. {
  18550. name: "Colossus",
  18551. height: math.unit(2.2, "miles")
  18552. },
  18553. ]
  18554. ))
  18555. characterMakers.push(() => makeCharacter(
  18556. { name: "Seroko" },
  18557. {
  18558. front: {
  18559. height: math.unit(8 + 8 / 12, "feet"),
  18560. weight: math.unit(130, "kg"),
  18561. name: "Front",
  18562. image: {
  18563. source: "./media/characters/seroko/front.svg",
  18564. extra: 1385 / 1280,
  18565. bottom: 0.025
  18566. }
  18567. },
  18568. back: {
  18569. height: math.unit(8 + 8 / 12, "feet"),
  18570. weight: math.unit(130, "kg"),
  18571. name: "Back",
  18572. image: {
  18573. source: "./media/characters/seroko/back.svg",
  18574. extra: 1369 / 1238,
  18575. bottom: 0.018
  18576. }
  18577. },
  18578. frontDressed: {
  18579. height: math.unit(8 + 8 / 12, "feet"),
  18580. weight: math.unit(130, "kg"),
  18581. name: "Front (Dressed)",
  18582. image: {
  18583. source: "./media/characters/seroko/front-dressed.svg",
  18584. extra: 1366 / 1275,
  18585. bottom: 0.03
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(8 + 8 / 12, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Quatzi" },
  18599. {
  18600. front: {
  18601. height: math.unit(5.5, "feet"),
  18602. weight: math.unit(160, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/quatzi/front.svg",
  18606. extra: 2346 / 2242,
  18607. bottom: 0.015
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(5.5, "feet"),
  18615. default: true
  18616. },
  18617. {
  18618. name: "Big",
  18619. height: math.unit(7.7, "feet")
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Sen" },
  18625. {
  18626. front: {
  18627. height: math.unit(5 + 11 / 12, "feet"),
  18628. weight: math.unit(180, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/sen/front.svg",
  18632. extra: 1321 / 1254,
  18633. bottom: 0.015
  18634. }
  18635. },
  18636. side: {
  18637. height: math.unit(5 + 11 / 12, "feet"),
  18638. weight: math.unit(180, "lb"),
  18639. name: "Side",
  18640. image: {
  18641. source: "./media/characters/sen/side.svg",
  18642. extra: 1321 / 1254,
  18643. bottom: 0.007
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(5 + 11 / 12, "feet"),
  18648. weight: math.unit(180, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/sen/back.svg",
  18652. extra: 1321 / 1254
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(5 + 11 / 12, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Fruity" },
  18666. {
  18667. front: {
  18668. height: math.unit(166.6, "cm"),
  18669. weight: math.unit(66.6, "kg"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/fruity/front.svg",
  18673. extra: 1510 / 1386,
  18674. bottom: 0.04
  18675. }
  18676. },
  18677. back: {
  18678. height: math.unit(166.6, "cm"),
  18679. weight: math.unit(66.6, "lb"),
  18680. name: "Back",
  18681. image: {
  18682. source: "./media/characters/fruity/back.svg",
  18683. extra: 1563 / 1435,
  18684. bottom: 0.005
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(166.6, "cm"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Demonic",
  18696. height: math.unit(166.6, "feet")
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Zost" },
  18702. {
  18703. side: {
  18704. height: math.unit(10, "feet"),
  18705. weight: math.unit(500, "lb"),
  18706. name: "Side",
  18707. image: {
  18708. source: "./media/characters/zost/side.svg",
  18709. extra: 966 / 880,
  18710. bottom: 0.075
  18711. }
  18712. },
  18713. mawFront: {
  18714. height: math.unit(1.08, "meters"),
  18715. name: "Maw (Front)",
  18716. image: {
  18717. source: "./media/characters/zost/maw-front.svg"
  18718. }
  18719. },
  18720. mawSide: {
  18721. height: math.unit(2.66, "feet"),
  18722. name: "Maw (Side)",
  18723. image: {
  18724. source: "./media/characters/zost/maw-side.svg"
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(10, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Luci" },
  18738. {
  18739. front: {
  18740. height: math.unit(5 + 4 / 12, "feet"),
  18741. weight: math.unit(120, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/luci/front.svg",
  18745. extra: 1985 / 1884,
  18746. bottom: 0.04
  18747. }
  18748. },
  18749. back: {
  18750. height: math.unit(5 + 4 / 12, "feet"),
  18751. weight: math.unit(120, "lb"),
  18752. name: "Back",
  18753. image: {
  18754. source: "./media/characters/luci/back.svg",
  18755. extra: 1892 / 1791,
  18756. bottom: 0.002
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(5 + 4 / 12, "feet"),
  18764. default: true
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "2th" },
  18770. {
  18771. front: {
  18772. height: math.unit(1500, "feet"),
  18773. weight: math.unit(3.8e6, "tons"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/2th/front.svg",
  18777. extra: 3489 / 3350,
  18778. bottom: 0.1
  18779. }
  18780. },
  18781. foot: {
  18782. height: math.unit(461, "feet"),
  18783. name: "Foot",
  18784. image: {
  18785. source: "./media/characters/2th/foot.svg"
  18786. }
  18787. },
  18788. },
  18789. [
  18790. {
  18791. name: "\"Micro\"",
  18792. height: math.unit(15 + 7 / 12, "feet")
  18793. },
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(1500, "feet"),
  18797. default: true
  18798. },
  18799. {
  18800. name: "Macro",
  18801. height: math.unit(5000, "feet")
  18802. },
  18803. {
  18804. name: "Megamacro",
  18805. height: math.unit(15, "miles")
  18806. },
  18807. {
  18808. name: "Gigamacro",
  18809. height: math.unit(4000, "miles")
  18810. },
  18811. {
  18812. name: "Galactic",
  18813. height: math.unit(50, "AU")
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Amethyst" },
  18819. {
  18820. front: {
  18821. height: math.unit(5 + 6 / 12, "feet"),
  18822. weight: math.unit(220, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/amethyst/front.svg",
  18826. extra: 2078 / 2040,
  18827. bottom: 0.045
  18828. }
  18829. },
  18830. back: {
  18831. height: math.unit(5 + 6 / 12, "feet"),
  18832. weight: math.unit(220, "lb"),
  18833. name: "Back",
  18834. image: {
  18835. source: "./media/characters/amethyst/back.svg",
  18836. extra: 2021 / 1989,
  18837. bottom: 0.02
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(5 + 6 / 12, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Yumi Akiyama" },
  18851. {
  18852. front: {
  18853. height: math.unit(4 + 11 / 12, "feet"),
  18854. weight: math.unit(120, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/yumi-akiyama/front.svg",
  18858. extra: 1327 / 1235,
  18859. bottom: 0.02
  18860. }
  18861. },
  18862. back: {
  18863. height: math.unit(4 + 11 / 12, "feet"),
  18864. weight: math.unit(120, "lb"),
  18865. name: "Back",
  18866. image: {
  18867. source: "./media/characters/yumi-akiyama/back.svg",
  18868. extra: 1287 / 1245,
  18869. bottom: 0.002
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Galactic",
  18876. height: math.unit(50, "galaxies"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Universal",
  18881. height: math.unit(100, "universes")
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Rifter Yrmori" },
  18887. {
  18888. front: {
  18889. height: math.unit(8, "feet"),
  18890. weight: math.unit(500, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/rifter-yrmori/front.svg",
  18894. extra: 1180 / 1125,
  18895. bottom: 0.02
  18896. }
  18897. },
  18898. back: {
  18899. height: math.unit(8, "feet"),
  18900. weight: math.unit(500, "lb"),
  18901. name: "Back",
  18902. image: {
  18903. source: "./media/characters/rifter-yrmori/back.svg",
  18904. extra: 1190 / 1145,
  18905. bottom: 0.001
  18906. }
  18907. },
  18908. wings: {
  18909. height: math.unit(7.75, "feet"),
  18910. weight: math.unit(500, "lb"),
  18911. name: "Wings",
  18912. image: {
  18913. source: "./media/characters/rifter-yrmori/wings.svg",
  18914. extra: 1357 / 1285
  18915. }
  18916. },
  18917. maw: {
  18918. height: math.unit(0.8, "feet"),
  18919. name: "Maw",
  18920. image: {
  18921. source: "./media/characters/rifter-yrmori/maw.svg"
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Normal",
  18928. height: math.unit(8, "feet"),
  18929. default: true
  18930. },
  18931. {
  18932. name: "Macro",
  18933. height: math.unit(42, "meters")
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Tahajin" },
  18939. {
  18940. were: {
  18941. height: math.unit(25 + 6 / 12, "feet"),
  18942. weight: math.unit(10000, "lb"),
  18943. name: "Were",
  18944. image: {
  18945. source: "./media/characters/tahajin/were.svg",
  18946. extra: 801 / 770,
  18947. bottom: 0.042
  18948. }
  18949. },
  18950. aquatic: {
  18951. height: math.unit(6 + 4 / 12, "feet"),
  18952. weight: math.unit(160, "lb"),
  18953. name: "Aquatic",
  18954. image: {
  18955. source: "./media/characters/tahajin/aquatic.svg",
  18956. extra: 572 / 542,
  18957. bottom: 0.04
  18958. }
  18959. },
  18960. chow: {
  18961. height: math.unit(8 + 11 / 12, "feet"),
  18962. weight: math.unit(450, "lb"),
  18963. name: "Chow",
  18964. image: {
  18965. source: "./media/characters/tahajin/chow.svg",
  18966. extra: 660 / 640,
  18967. bottom: 0.015
  18968. }
  18969. },
  18970. demiNaga: {
  18971. height: math.unit(6 + 8 / 12, "feet"),
  18972. weight: math.unit(300, "lb"),
  18973. name: "Demi Naga",
  18974. image: {
  18975. source: "./media/characters/tahajin/demi-naga.svg",
  18976. extra: 643 / 615,
  18977. bottom: 0.1
  18978. }
  18979. },
  18980. data: {
  18981. height: math.unit(5, "inches"),
  18982. weight: math.unit(0.1, "lb"),
  18983. name: "Data",
  18984. image: {
  18985. source: "./media/characters/tahajin/data.svg"
  18986. }
  18987. },
  18988. fluu: {
  18989. height: math.unit(5 + 7 / 12, "feet"),
  18990. weight: math.unit(140, "lb"),
  18991. name: "Fluu",
  18992. image: {
  18993. source: "./media/characters/tahajin/fluu.svg",
  18994. extra: 628 / 592,
  18995. bottom: 0.02
  18996. }
  18997. },
  18998. starWarrior: {
  18999. height: math.unit(4 + 5 / 12, "feet"),
  19000. weight: math.unit(50, "lb"),
  19001. name: "Star Warrior",
  19002. image: {
  19003. source: "./media/characters/tahajin/star-warrior.svg"
  19004. }
  19005. },
  19006. },
  19007. [
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(25 + 6 / 12, "feet"),
  19011. default: true
  19012. },
  19013. ]
  19014. ))
  19015. characterMakers.push(() => makeCharacter(
  19016. { name: "Gabira" },
  19017. {
  19018. front: {
  19019. height: math.unit(8, "feet"),
  19020. weight: math.unit(350, "lb"),
  19021. name: "Front",
  19022. image: {
  19023. source: "./media/characters/gabira/front.svg",
  19024. extra: 608 / 580,
  19025. bottom: 0.03
  19026. }
  19027. },
  19028. back: {
  19029. height: math.unit(8, "feet"),
  19030. weight: math.unit(350, "lb"),
  19031. name: "Back",
  19032. image: {
  19033. source: "./media/characters/gabira/back.svg",
  19034. extra: 608 / 580,
  19035. bottom: 0.03
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(8, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Sasha Katraine" },
  19049. {
  19050. front: {
  19051. height: math.unit(5 + 3 / 12, "feet"),
  19052. weight: math.unit(137, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/sasha-katraine/front.svg",
  19056. bottom: 0.045
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Micro",
  19063. height: math.unit(5, "inches")
  19064. },
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(5 + 3 / 12, "feet"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Der" },
  19074. {
  19075. side: {
  19076. height: math.unit(4, "inches"),
  19077. weight: math.unit(200, "grams"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/der/side.svg",
  19081. extra: 719 / 400,
  19082. bottom: 30.6 / 749.9187
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Micro",
  19089. height: math.unit(4, "inches"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Fixerdragon" },
  19096. {
  19097. side: {
  19098. height: math.unit(30, "meters"),
  19099. weight: math.unit(700, "tonnes"),
  19100. name: "Side",
  19101. image: {
  19102. source: "./media/characters/fixerdragon/side.svg",
  19103. extra: (1293.0514 - 116.03) / 1106.86,
  19104. bottom: 116.03 / 1293.0514
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Planck",
  19111. height: math.unit(1.6e-35, "meters")
  19112. },
  19113. {
  19114. name: "Micro",
  19115. height: math.unit(0.4, "meters")
  19116. },
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(30, "meters"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Megamacro",
  19124. height: math.unit(1.2, "megameters")
  19125. },
  19126. {
  19127. name: "Teramacro",
  19128. height: math.unit(130, "terameters")
  19129. },
  19130. {
  19131. name: "Yottamacro",
  19132. height: math.unit(6200, "yottameters")
  19133. },
  19134. ]
  19135. ));
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Kite" },
  19138. {
  19139. front: {
  19140. height: math.unit(8, "feet"),
  19141. weight: math.unit(250, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/kite/front.svg",
  19145. extra: 2796 / 2659,
  19146. bottom: 0.002
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(8, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(360, "feet")
  19159. },
  19160. {
  19161. name: "Megamacro",
  19162. height: math.unit(1500, "feet")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Poojawa Vynar" },
  19168. {
  19169. front: {
  19170. height: math.unit(5 + 10 / 12, "feet"),
  19171. weight: math.unit(150, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/poojawa-vynar/front.svg",
  19175. extra: (1506.1547 - 55) / 1356.6,
  19176. bottom: 55 / 1506.1547
  19177. }
  19178. },
  19179. frontTailless: {
  19180. height: math.unit(5 + 10 / 12, "feet"),
  19181. weight: math.unit(150, "lb"),
  19182. name: "Front (Tailless)",
  19183. image: {
  19184. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19185. extra: (1506.1547 - 55) / 1356.6,
  19186. bottom: 55 / 1506.1547
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(5 + 10 / 12, "feet"),
  19194. default: true
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Violette" },
  19200. {
  19201. front: {
  19202. height: math.unit(293, "meters"),
  19203. weight: math.unit(70400, "tons"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/violette/front.svg",
  19207. extra: 1227 / 1180,
  19208. bottom: 0.005
  19209. }
  19210. },
  19211. back: {
  19212. height: math.unit(293, "meters"),
  19213. weight: math.unit(70400, "tons"),
  19214. name: "Back",
  19215. image: {
  19216. source: "./media/characters/violette/back.svg",
  19217. extra: 1227 / 1180,
  19218. bottom: 0.005
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Macro",
  19225. height: math.unit(293, "meters"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Alessandra" },
  19232. {
  19233. front: {
  19234. height: math.unit(1050, "feet"),
  19235. weight: math.unit(200000, "tons"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/alessandra/front.svg",
  19239. extra: 960 / 912,
  19240. bottom: 0.06
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(1050, "feet")
  19248. },
  19249. {
  19250. name: "Macro+",
  19251. height: math.unit(900, "meters"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(5, "feet"),
  19261. weight: math.unit(187, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/person/front.svg",
  19265. extra: 3087 / 2945,
  19266. bottom: 91 / 3181
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Micro",
  19273. height: math.unit(3, "inches")
  19274. },
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(5, "feet"),
  19278. default: true
  19279. },
  19280. {
  19281. name: "Macro",
  19282. height: math.unit(90, "feet")
  19283. },
  19284. {
  19285. name: "Max Size",
  19286. height: math.unit(280, "feet")
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Ty" },
  19292. {
  19293. front: {
  19294. height: math.unit(4.5, "meters"),
  19295. weight: math.unit(3200, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/ty/front.svg",
  19299. extra: 1038 / 960,
  19300. bottom: 31.156 / 1068
  19301. }
  19302. },
  19303. back: {
  19304. height: math.unit(4.5, "meters"),
  19305. weight: math.unit(3200, "lb"),
  19306. name: "Back",
  19307. image: {
  19308. source: "./media/characters/ty/back.svg",
  19309. extra: 1044 / 966,
  19310. bottom: 7.48 / 1049
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(4.5, "meters"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Rocky" },
  19324. {
  19325. front: {
  19326. height: math.unit(5 + 4 / 12, "feet"),
  19327. weight: math.unit(115, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/rocky/front.svg",
  19331. extra: 1012 / 975,
  19332. bottom: 54 / 1066
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(5 + 4 / 12, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Ruin" },
  19346. {
  19347. upright: {
  19348. height: math.unit(6, "meters"),
  19349. weight: math.unit(4000, "kg"),
  19350. name: "Upright",
  19351. image: {
  19352. source: "./media/characters/ruin/upright.svg",
  19353. extra: 668 / 661,
  19354. bottom: 42 / 799.8396
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(6, "meters"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Robin" },
  19368. {
  19369. front: {
  19370. height: math.unit(5, "feet"),
  19371. weight: math.unit(106, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/robin/front.svg",
  19375. extra: 862 / 799,
  19376. bottom: 42.4 / 914.8856
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(5, "feet"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Saian" },
  19390. {
  19391. side: {
  19392. height: math.unit(3, "feet"),
  19393. weight: math.unit(225, "lb"),
  19394. name: "Side",
  19395. image: {
  19396. source: "./media/characters/saian/side.svg",
  19397. extra: 566 / 356,
  19398. bottom: 79.7 / 643
  19399. }
  19400. },
  19401. maw: {
  19402. height: math.unit(2.85, "feet"),
  19403. name: "Maw",
  19404. image: {
  19405. source: "./media/characters/saian/maw.svg"
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(3, "feet"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Equus Silvermane" },
  19419. {
  19420. side: {
  19421. height: math.unit(8, "feet"),
  19422. weight: math.unit(300, "lb"),
  19423. name: "Side",
  19424. image: {
  19425. source: "./media/characters/equus-silvermane/side.svg",
  19426. extra: 2176 / 2050,
  19427. bottom: 65.7 / 2245
  19428. }
  19429. },
  19430. front: {
  19431. height: math.unit(8, "feet"),
  19432. weight: math.unit(300, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/equus-silvermane/front.svg",
  19436. extra: 4633 / 4400,
  19437. bottom: 71.3 / 4706.915
  19438. }
  19439. },
  19440. sideStepping: {
  19441. height: math.unit(8, "feet"),
  19442. weight: math.unit(300, "lb"),
  19443. name: "Side (Stepping)",
  19444. image: {
  19445. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19446. extra: 1968 / 1860,
  19447. bottom: 16.4 / 1989
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(8, "feet")
  19455. },
  19456. {
  19457. name: "Minimacro",
  19458. height: math.unit(75, "feet"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Macro",
  19463. height: math.unit(150, "feet")
  19464. },
  19465. {
  19466. name: "Macro+",
  19467. height: math.unit(1000, "feet")
  19468. },
  19469. {
  19470. name: "Megamacro",
  19471. height: math.unit(1, "mile")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Windar" },
  19477. {
  19478. side: {
  19479. height: math.unit(20, "feet"),
  19480. weight: math.unit(30000, "kg"),
  19481. name: "Side",
  19482. image: {
  19483. source: "./media/characters/windar/side.svg",
  19484. extra: 1491 / 1248,
  19485. bottom: 82.56 / 1568
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(20, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Melody" },
  19499. {
  19500. side: {
  19501. height: math.unit(15.66, "feet"),
  19502. weight: math.unit(150, "lb"),
  19503. name: "Side",
  19504. image: {
  19505. source: "./media/characters/melody/side.svg",
  19506. extra: 1097 / 944,
  19507. bottom: 11.8 / 1109
  19508. }
  19509. },
  19510. sideOutfit: {
  19511. height: math.unit(15.66, "feet"),
  19512. weight: math.unit(150, "lb"),
  19513. name: "Side (Outfit)",
  19514. image: {
  19515. source: "./media/characters/melody/side-outfit.svg",
  19516. extra: 1097 / 944,
  19517. bottom: 11.8 / 1109
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(15.66, "feet"),
  19525. default: true
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Windera" },
  19531. {
  19532. front: {
  19533. height: math.unit(8, "feet"),
  19534. weight: math.unit(325, "lb"),
  19535. name: "Front",
  19536. image: {
  19537. source: "./media/characters/windera/front.svg",
  19538. extra: 3180 / 2845,
  19539. bottom: 178 / 3365
  19540. }
  19541. },
  19542. },
  19543. [
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(8, "feet"),
  19547. default: true
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Sonear" },
  19553. {
  19554. front: {
  19555. height: math.unit(28.75, "feet"),
  19556. weight: math.unit(2000, "kg"),
  19557. name: "Front",
  19558. image: {
  19559. source: "./media/characters/sonear/front.svg",
  19560. extra: 1041.1 / 964.9,
  19561. bottom: 53.7 / 1096.6
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Normal",
  19568. height: math.unit(28.75, "feet"),
  19569. default: true
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Kanara" },
  19575. {
  19576. side: {
  19577. height: math.unit(25.5, "feet"),
  19578. weight: math.unit(23000, "kg"),
  19579. name: "Side",
  19580. image: {
  19581. source: "./media/characters/kanara/side.svg"
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(25.5, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Ereus" },
  19595. {
  19596. side: {
  19597. height: math.unit(10, "feet"),
  19598. weight: math.unit(1000, "kg"),
  19599. name: "Side",
  19600. image: {
  19601. source: "./media/characters/ereus/side.svg",
  19602. extra: 1157 / 959,
  19603. bottom: 153 / 1312.5
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(10, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "E-ter" },
  19617. {
  19618. side: {
  19619. height: math.unit(4.5, "feet"),
  19620. weight: math.unit(500, "lb"),
  19621. name: "Side",
  19622. image: {
  19623. source: "./media/characters/e-ter/side.svg",
  19624. extra: 1550 / 1248,
  19625. bottom: 146 / 1694
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(4.5, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Yamie" },
  19639. {
  19640. side: {
  19641. height: math.unit(9.7, "feet"),
  19642. weight: math.unit(4000, "kg"),
  19643. name: "Side",
  19644. image: {
  19645. source: "./media/characters/yamie/side.svg"
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Normal",
  19652. height: math.unit(9.7, "feet"),
  19653. default: true
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Anders" },
  19659. {
  19660. front: {
  19661. height: math.unit(50, "feet"),
  19662. weight: math.unit(50000, "kg"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/anders/front.svg",
  19666. extra: 570 / 539,
  19667. bottom: 14.7 / 586.7
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Large",
  19674. height: math.unit(50, "feet")
  19675. },
  19676. {
  19677. name: "Macro",
  19678. height: math.unit(2000, "feet"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Megamacro",
  19683. height: math.unit(12, "miles")
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Reban" },
  19689. {
  19690. front: {
  19691. height: math.unit(7 + 2 / 12, "feet"),
  19692. weight: math.unit(300, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/reban/front.svg",
  19696. extra: 516 / 487,
  19697. bottom: 42.82 / 558.356
  19698. }
  19699. },
  19700. dick: {
  19701. height: math.unit(7 / 5, "feet"),
  19702. name: "Dick",
  19703. image: {
  19704. source: "./media/characters/reban/dick.svg"
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Natural Height",
  19711. height: math.unit(7 + 2 / 12, "feet")
  19712. },
  19713. {
  19714. name: "Macro",
  19715. height: math.unit(500, "feet"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Canon Height",
  19720. height: math.unit(50, "AU")
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Terrance Keayes" },
  19726. {
  19727. front: {
  19728. height: math.unit(6, "feet"),
  19729. weight: math.unit(150, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/terrance-keayes/front.svg",
  19733. extra: 1.005,
  19734. bottom: 151 / 1615
  19735. }
  19736. },
  19737. side: {
  19738. height: math.unit(6, "feet"),
  19739. weight: math.unit(150, "lb"),
  19740. name: "Side",
  19741. image: {
  19742. source: "./media/characters/terrance-keayes/side.svg",
  19743. extra: 1.005,
  19744. bottom: 129.4 / 1544
  19745. }
  19746. },
  19747. back: {
  19748. height: math.unit(6, "feet"),
  19749. weight: math.unit(150, "lb"),
  19750. name: "Back",
  19751. image: {
  19752. source: "./media/characters/terrance-keayes/back.svg",
  19753. extra: 1.005,
  19754. bottom: 58.4 / 1557.3
  19755. }
  19756. },
  19757. dick: {
  19758. height: math.unit(6 * 0.208, "feet"),
  19759. name: "Dick",
  19760. image: {
  19761. source: "./media/characters/terrance-keayes/dick.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Canon Height",
  19768. height: math.unit(35, "miles"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Ofelia" },
  19775. {
  19776. front: {
  19777. height: math.unit(6, "feet"),
  19778. weight: math.unit(150, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/ofelia/front.svg",
  19782. extra: 546 / 541,
  19783. bottom: 39 / 583
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(6, "feet"),
  19788. weight: math.unit(150, "lb"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/ofelia/back.svg",
  19792. extra: 564 / 559.5,
  19793. bottom: 8.69 / 573.02
  19794. }
  19795. },
  19796. maw: {
  19797. height: math.unit(1, "feet"),
  19798. name: "Maw",
  19799. image: {
  19800. source: "./media/characters/ofelia/maw.svg"
  19801. }
  19802. },
  19803. foot: {
  19804. height: math.unit(1.949, "feet"),
  19805. name: "Foot",
  19806. image: {
  19807. source: "./media/characters/ofelia/foot.svg"
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Canon Height",
  19814. height: math.unit(2000, "miles"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Samuel" },
  19821. {
  19822. front: {
  19823. height: math.unit(6, "feet"),
  19824. weight: math.unit(150, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/samuel/front.svg",
  19828. extra: 265 / 258,
  19829. bottom: 2 / 266.1566
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Macro",
  19836. height: math.unit(100, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Full Size",
  19841. height: math.unit(1000, "miles")
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Beishir Kiel" },
  19847. {
  19848. front: {
  19849. height: math.unit(6, "feet"),
  19850. weight: math.unit(300, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/beishir-kiel/front.svg",
  19854. extra: 569 / 547,
  19855. bottom: 41.9 / 609
  19856. }
  19857. },
  19858. maw: {
  19859. height: math.unit(6 * 0.202, "feet"),
  19860. name: "Maw",
  19861. image: {
  19862. source: "./media/characters/beishir-kiel/maw.svg"
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Macro",
  19869. height: math.unit(300, "feet"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Logan Grey" },
  19876. {
  19877. front: {
  19878. height: math.unit(5 + 8 / 12, "feet"),
  19879. weight: math.unit(120, "lb"),
  19880. name: "Front",
  19881. image: {
  19882. source: "./media/characters/logan-grey/front.svg",
  19883. extra: 2539 / 2393,
  19884. bottom: 97.6 / 2636.37
  19885. }
  19886. },
  19887. frontAlt: {
  19888. height: math.unit(5 + 8 / 12, "feet"),
  19889. weight: math.unit(120, "lb"),
  19890. name: "Front (Alt)",
  19891. image: {
  19892. source: "./media/characters/logan-grey/front-alt.svg",
  19893. extra: 958 / 893,
  19894. bottom: 15 / 970.768
  19895. }
  19896. },
  19897. back: {
  19898. height: math.unit(5 + 8 / 12, "feet"),
  19899. weight: math.unit(120, "lb"),
  19900. name: "Back",
  19901. image: {
  19902. source: "./media/characters/logan-grey/back.svg",
  19903. extra: 958 / 893,
  19904. bottom: 2.1881 / 970.9788
  19905. }
  19906. },
  19907. dick: {
  19908. height: math.unit(1.437, "feet"),
  19909. name: "Dick",
  19910. image: {
  19911. source: "./media/characters/logan-grey/dick.svg"
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(5 + 8 / 12, "feet")
  19919. },
  19920. {
  19921. name: "The 500 Foot Femboy",
  19922. height: math.unit(500, "feet"),
  19923. default: true
  19924. },
  19925. {
  19926. name: "Megmacro",
  19927. height: math.unit(20, "miles")
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Draganta" },
  19933. {
  19934. front: {
  19935. height: math.unit(8 + 2 / 12, "feet"),
  19936. weight: math.unit(275, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/draganta/front.svg",
  19940. extra: 1177 / 1135,
  19941. bottom: 33.46 / 1212.1
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(8 + 6 / 12, "feet"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(150, "feet")
  19954. },
  19955. {
  19956. name: "Megamacro",
  19957. height: math.unit(1000, "miles")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(1.72, "m"),
  19966. weight: math.unit(80, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/voski/front.svg",
  19970. extra: 2076.22 / 2022.4,
  19971. bottom: 102.7 / 2177.3866
  19972. }
  19973. },
  19974. frontNsfw: {
  19975. height: math.unit(1.72, "m"),
  19976. weight: math.unit(80, "lb"),
  19977. name: "Front (NSFW)",
  19978. image: {
  19979. source: "./media/characters/voski/front-nsfw.svg",
  19980. extra: 2076.22 / 2022.4,
  19981. bottom: 102.7 / 2177.3866
  19982. }
  19983. },
  19984. back: {
  19985. height: math.unit(1.72, "m"),
  19986. weight: math.unit(80, "lb"),
  19987. name: "Back",
  19988. image: {
  19989. source: "./media/characters/voski/back.svg",
  19990. extra: 2104 / 2051,
  19991. bottom: 10.45 / 2113.63
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(1.72, "m")
  19999. },
  20000. {
  20001. name: "Macro",
  20002. height: math.unit(55, "m"),
  20003. default: true
  20004. },
  20005. {
  20006. name: "Macro+",
  20007. height: math.unit(300, "m")
  20008. },
  20009. {
  20010. name: "Macro++",
  20011. height: math.unit(700, "m")
  20012. },
  20013. {
  20014. name: "Macro+++",
  20015. height: math.unit(4500, "m")
  20016. },
  20017. {
  20018. name: "Macro++++",
  20019. height: math.unit(45, "km")
  20020. },
  20021. {
  20022. name: "Macro+++++",
  20023. height: math.unit(1220, "km")
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Icowom Lee" },
  20029. {
  20030. front: {
  20031. height: math.unit(2.3, "m"),
  20032. weight: math.unit(304, "kg"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/icowom-lee/front.svg",
  20036. extra: 3076 / 2933,
  20037. bottom: 51.4 / 3125.1889
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(2.3, "meters"),
  20045. default: true
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(94, "meters"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(22, "meters"),
  20059. weight: math.unit(21000, "kg"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/shock-diamond/front.svg",
  20063. extra: 2204 / 2053,
  20064. bottom: 65 / 2239.47
  20065. }
  20066. },
  20067. frontNude: {
  20068. height: math.unit(22, "meters"),
  20069. weight: math.unit(21000, "kg"),
  20070. name: "Front (Nude)",
  20071. image: {
  20072. source: "./media/characters/shock-diamond/front-nude.svg",
  20073. extra: 2514 / 2285,
  20074. bottom: 13 / 2527.56
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(3, "meters")
  20082. },
  20083. {
  20084. name: "Macro",
  20085. height: math.unit(22, "meters"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Rory" },
  20092. {
  20093. front: {
  20094. height: math.unit(5 + 4 / 12, "feet"),
  20095. weight: math.unit(120, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/rory/front.svg",
  20099. extra: 589 / 556,
  20100. bottom: 45.7 / 635.76
  20101. }
  20102. },
  20103. frontNude: {
  20104. height: math.unit(5 + 4 / 12, "feet"),
  20105. weight: math.unit(120, "lb"),
  20106. name: "Front (Nude)",
  20107. image: {
  20108. source: "./media/characters/rory/front-nude.svg",
  20109. extra: 589 / 556,
  20110. bottom: 45.7 / 635.76
  20111. }
  20112. },
  20113. side: {
  20114. height: math.unit(5 + 4 / 12, "feet"),
  20115. weight: math.unit(120, "lb"),
  20116. name: "Side",
  20117. image: {
  20118. source: "./media/characters/rory/side.svg",
  20119. extra: 597 / 564,
  20120. bottom: 55 / 653
  20121. }
  20122. },
  20123. back: {
  20124. height: math.unit(5 + 4 / 12, "feet"),
  20125. weight: math.unit(120, "lb"),
  20126. name: "Back",
  20127. image: {
  20128. source: "./media/characters/rory/back.svg",
  20129. extra: 620 / 585,
  20130. bottom: 8.86 / 630.43
  20131. }
  20132. },
  20133. dick: {
  20134. height: math.unit(0.86, "feet"),
  20135. name: "Dick",
  20136. image: {
  20137. source: "./media/characters/rory/dick.svg"
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(5 + 4 / 12, "feet"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Macro",
  20149. height: math.unit(100, "feet")
  20150. },
  20151. {
  20152. name: "Macro+",
  20153. height: math.unit(140, "feet")
  20154. },
  20155. {
  20156. name: "Macro++",
  20157. height: math.unit(300, "feet")
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Sprisk" },
  20163. {
  20164. front: {
  20165. height: math.unit(5 + 9 / 12, "feet"),
  20166. weight: math.unit(190, "lb"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/sprisk/front.svg",
  20170. extra: 1225 / 1180,
  20171. bottom: 42.7 / 1266.4
  20172. }
  20173. },
  20174. frontNsfw: {
  20175. height: math.unit(5 + 9 / 12, "feet"),
  20176. weight: math.unit(190, "lb"),
  20177. name: "Front (NSFW)",
  20178. image: {
  20179. source: "./media/characters/sprisk/front-nsfw.svg",
  20180. extra: 1225 / 1180,
  20181. bottom: 42.7 / 1266.4
  20182. }
  20183. },
  20184. back: {
  20185. height: math.unit(5 + 9 / 12, "feet"),
  20186. weight: math.unit(190, "lb"),
  20187. name: "Back",
  20188. image: {
  20189. source: "./media/characters/sprisk/back.svg",
  20190. extra: 1247 / 1200,
  20191. bottom: 5.6 / 1253.04
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Tiny",
  20198. height: math.unit(2, "inches")
  20199. },
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(5 + 9 / 12, "feet"),
  20203. default: true
  20204. },
  20205. {
  20206. name: "Mini Macro",
  20207. height: math.unit(18, "feet")
  20208. },
  20209. {
  20210. name: "Macro",
  20211. height: math.unit(100, "feet")
  20212. },
  20213. {
  20214. name: "MACRO",
  20215. height: math.unit(50, "miles")
  20216. },
  20217. {
  20218. name: "M A C R O",
  20219. height: math.unit(300, "miles")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Bunsen" },
  20225. {
  20226. side: {
  20227. height: math.unit(15.6, "meters"),
  20228. weight: math.unit(700000, "kg"),
  20229. name: "Side",
  20230. image: {
  20231. source: "./media/characters/bunsen/side.svg",
  20232. extra: 1644 / 358
  20233. }
  20234. },
  20235. foot: {
  20236. height: math.unit(1.611 * 1644 / 358, "meter"),
  20237. name: "Foot",
  20238. image: {
  20239. source: "./media/characters/bunsen/foot.svg"
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Small",
  20246. height: math.unit(10, "feet")
  20247. },
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(15.6, "meters"),
  20251. default: true
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Sesh" },
  20257. {
  20258. front: {
  20259. height: math.unit(4 + 11 / 12, "feet"),
  20260. weight: math.unit(140, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/sesh/front.svg",
  20264. extra: 3420 / 3231,
  20265. bottom: 72 / 3949.5
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(4 + 11 / 12, "feet")
  20273. },
  20274. {
  20275. name: "Grown",
  20276. height: math.unit(15, "feet"),
  20277. default: true
  20278. },
  20279. {
  20280. name: "Macro",
  20281. height: math.unit(1500, "feet")
  20282. },
  20283. {
  20284. name: "Megamacro",
  20285. height: math.unit(30, "miles")
  20286. },
  20287. {
  20288. name: "Continental",
  20289. height: math.unit(3000, "miles")
  20290. },
  20291. {
  20292. name: "Gravity Mass",
  20293. height: math.unit(300000, "miles")
  20294. },
  20295. {
  20296. name: "Planet Buster",
  20297. height: math.unit(30000000, "miles")
  20298. },
  20299. {
  20300. name: "Big",
  20301. height: math.unit(3000000000, "miles")
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Pepper" },
  20307. {
  20308. front: {
  20309. height: math.unit(9, "feet"),
  20310. weight: math.unit(350, "lb"),
  20311. name: "Front",
  20312. image: {
  20313. source: "./media/characters/pepper/front.svg",
  20314. extra: 1448/1312,
  20315. bottom: 9.4/1457.88
  20316. }
  20317. },
  20318. back: {
  20319. height: math.unit(9, "feet"),
  20320. weight: math.unit(350, "lb"),
  20321. name: "Back",
  20322. image: {
  20323. source: "./media/characters/pepper/back.svg",
  20324. extra: 1423/1300,
  20325. bottom: 4.6/1429
  20326. }
  20327. },
  20328. maw: {
  20329. height: math.unit(0.932, "feet"),
  20330. name: "Maw",
  20331. image: {
  20332. source: "./media/characters/pepper/maw.svg"
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(9, "feet"),
  20340. default: true
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Maelstrom" },
  20346. {
  20347. front: {
  20348. height: math.unit(6, "feet"),
  20349. weight: math.unit(150, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/maelstrom/front.svg",
  20353. extra: 2100/1883,
  20354. bottom: 94/2196.7
  20355. }
  20356. },
  20357. },
  20358. [
  20359. {
  20360. name: "Less Kaiju",
  20361. height: math.unit(200, "feet")
  20362. },
  20363. {
  20364. name: "Kaiju",
  20365. height: math.unit(400, "feet"),
  20366. default: true
  20367. },
  20368. {
  20369. name: "Kaiju-er",
  20370. height: math.unit(600, "feet")
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Lexir" },
  20376. {
  20377. front: {
  20378. height: math.unit(6 + 5/12, "feet"),
  20379. weight: math.unit(180, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/lexir/front.svg",
  20383. extra: 180/172,
  20384. bottom: 12/192
  20385. }
  20386. },
  20387. back: {
  20388. height: math.unit(6 + 5/12, "feet"),
  20389. weight: math.unit(180, "lb"),
  20390. name: "Back",
  20391. image: {
  20392. source: "./media/characters/lexir/back.svg",
  20393. extra: 183.84/175.5,
  20394. bottom: 3.1/187
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Very Smal",
  20401. height: math.unit(1, "nm")
  20402. },
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(6 + 5/12, "feet"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Macro",
  20410. height: math.unit(1, "mile")
  20411. },
  20412. {
  20413. name: "Megamacro",
  20414. height: math.unit(50, "miles")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Maksio" },
  20420. {
  20421. front: {
  20422. height: math.unit(1.5, "meters"),
  20423. weight: math.unit(100, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/maksio/front.svg",
  20427. extra: 1549/1531,
  20428. bottom: 123.7/1674.5429
  20429. }
  20430. },
  20431. back: {
  20432. height: math.unit(1.5, "meters"),
  20433. weight: math.unit(100, "lb"),
  20434. name: "Back",
  20435. image: {
  20436. source: "./media/characters/maksio/back.svg",
  20437. extra: 1541/1509,
  20438. bottom: 97/1639
  20439. }
  20440. },
  20441. hand: {
  20442. height: math.unit(0.621, "feet"),
  20443. name: "Hand",
  20444. image: {
  20445. source: "./media/characters/maksio/hand.svg"
  20446. }
  20447. },
  20448. foot: {
  20449. height: math.unit(1.611, "feet"),
  20450. name: "Foot",
  20451. image: {
  20452. source: "./media/characters/maksio/foot.svg"
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Shrunken",
  20459. height: math.unit(10, "cm")
  20460. },
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(150, "cm"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Erza Bear" },
  20470. {
  20471. front: {
  20472. height: math.unit(100, "feet"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/erza-bear/front.svg",
  20476. extra: 2449/2390,
  20477. bottom: 46/2494
  20478. }
  20479. },
  20480. back: {
  20481. height: math.unit(100, "feet"),
  20482. name: "Back",
  20483. image: {
  20484. source: "./media/characters/erza-bear/back.svg",
  20485. extra: 2489/2430,
  20486. bottom: 85.4/2480
  20487. }
  20488. },
  20489. tail: {
  20490. height: math.unit(42, "feet"),
  20491. name: "Tail",
  20492. image: {
  20493. source: "./media/characters/erza-bear/tail.svg"
  20494. }
  20495. },
  20496. tongue: {
  20497. height: math.unit(8, "feet"),
  20498. name: "Tongue",
  20499. image: {
  20500. source: "./media/characters/erza-bear/tongue.svg"
  20501. }
  20502. },
  20503. dick: {
  20504. height: math.unit(10.5, "feet"),
  20505. name: "Dick",
  20506. image: {
  20507. source: "./media/characters/erza-bear/dick.svg"
  20508. }
  20509. },
  20510. dickVertical: {
  20511. height: math.unit(16.9, "feet"),
  20512. name: "Dick (Vertical)",
  20513. image: {
  20514. source: "./media/characters/erza-bear/dick-vertical.svg"
  20515. }
  20516. },
  20517. },
  20518. [
  20519. {
  20520. name: "Macro",
  20521. height: math.unit(100, "feet"),
  20522. default: true
  20523. },
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20528. {
  20529. front: {
  20530. height: math.unit(172, "cm"),
  20531. weight: math.unit(73, "kg"),
  20532. name: "Front",
  20533. image: {
  20534. source: "./media/characters/violet-flor/front.svg",
  20535. extra: 1530/1442,
  20536. bottom: 61.9/1588.8
  20537. }
  20538. },
  20539. back: {
  20540. height: math.unit(180, "cm"),
  20541. weight: math.unit(73, "kg"),
  20542. name: "Back",
  20543. image: {
  20544. source: "./media/characters/violet-flor/back.svg",
  20545. extra: 1692/1630,
  20546. bottom: 20/1712
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(172, "cm"),
  20554. default: true
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20560. {
  20561. front: {
  20562. height: math.unit(6, "feet"),
  20563. weight: math.unit(220, "lb"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/lynn-rhea/front.svg",
  20567. extra: 310/273
  20568. }
  20569. },
  20570. back: {
  20571. height: math.unit(6, "feet"),
  20572. weight: math.unit(220, "lb"),
  20573. name: "Back",
  20574. image: {
  20575. source: "./media/characters/lynn-rhea/back.svg",
  20576. extra: 310/273
  20577. }
  20578. },
  20579. dicks: {
  20580. height: math.unit(0.9, "feet"),
  20581. name: "Dicks",
  20582. image: {
  20583. source: "./media/characters/lynn-rhea/dicks.svg"
  20584. }
  20585. },
  20586. slit: {
  20587. height: math.unit(0.4, "feet"),
  20588. name: "Slit",
  20589. image: {
  20590. source: "./media/characters/lynn-rhea/slit.svg"
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Micro",
  20597. height: math.unit(1, "inch")
  20598. },
  20599. {
  20600. name: "Macro",
  20601. height: math.unit(60, "feet"),
  20602. default: true
  20603. },
  20604. {
  20605. name: "Megamacro",
  20606. height: math.unit(2, "miles")
  20607. },
  20608. {
  20609. name: "Gigamacro",
  20610. height: math.unit(3, "earths")
  20611. },
  20612. {
  20613. name: "Galactic",
  20614. height: math.unit(0.8, "galaxies")
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Valathos" },
  20620. {
  20621. front: {
  20622. height: math.unit(1600, "feet"),
  20623. weight: math.unit(85758785169, "kg"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/valathos/front.svg",
  20627. extra: 1451/1339
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Macro",
  20634. height: math.unit(1600, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Azula" },
  20641. {
  20642. front: {
  20643. height: math.unit(7 + 5/12, "feet"),
  20644. weight: math.unit(300, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/azula/front.svg",
  20648. extra: 3208/2880,
  20649. bottom: 80.2/3277
  20650. }
  20651. },
  20652. back: {
  20653. height: math.unit(7 + 5/12, "feet"),
  20654. weight: math.unit(300, "lb"),
  20655. name: "Back",
  20656. image: {
  20657. source: "./media/characters/azula/back.svg",
  20658. extra: 3169/2822,
  20659. bottom: 150.6/3321
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(7 + 5/12, "feet"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Big",
  20671. height: math.unit(20, "feet")
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Rupert" },
  20677. {
  20678. front: {
  20679. height: math.unit(5 + 1/12, "feet"),
  20680. weight: math.unit(110, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/rupert/front.svg",
  20684. extra: 1549/1495,
  20685. bottom: 54.2/1604.4
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(5 + 1/12, "feet"),
  20693. default: true
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Sheera Castellar" },
  20699. {
  20700. front: {
  20701. height: math.unit(8 + 4/12, "feet"),
  20702. weight: math.unit(350, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/sheera-castellar/front.svg",
  20706. extra: 1957/1894,
  20707. bottom: 26.97/1975.017
  20708. }
  20709. },
  20710. side: {
  20711. height: math.unit(8 + 4/12, "feet"),
  20712. weight: math.unit(350, "lb"),
  20713. name: "Side",
  20714. image: {
  20715. source: "./media/characters/sheera-castellar/side.svg",
  20716. extra: 1957/1894
  20717. }
  20718. },
  20719. back: {
  20720. height: math.unit(8 + 4/12, "feet"),
  20721. weight: math.unit(350, "lb"),
  20722. name: "Back",
  20723. image: {
  20724. source: "./media/characters/sheera-castellar/back.svg",
  20725. extra: 1957/1894
  20726. }
  20727. },
  20728. angled: {
  20729. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20730. weight: math.unit(350, "lb"),
  20731. name: "Angled",
  20732. image: {
  20733. source: "./media/characters/sheera-castellar/angled.svg",
  20734. extra: 1807/1707,
  20735. bottom: 68/1875
  20736. }
  20737. },
  20738. genitals: {
  20739. height: math.unit(2.2, "feet"),
  20740. name: "Genitals",
  20741. image: {
  20742. source: "./media/characters/sheera-castellar/genitals.svg"
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(8 + 4/12, "feet")
  20750. },
  20751. {
  20752. name: "Macro",
  20753. height: math.unit(150, "feet"),
  20754. default: true
  20755. },
  20756. {
  20757. name: "Macro+",
  20758. height: math.unit(800, "feet")
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(6, "feet"),
  20767. weight: math.unit(150, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/jaipur/front.svg",
  20771. extra: 3860/3731,
  20772. bottom: 287/4140
  20773. }
  20774. },
  20775. back: {
  20776. height: math.unit(6, "feet"),
  20777. weight: math.unit(150, "lb"),
  20778. name: "Back",
  20779. image: {
  20780. source: "./media/characters/jaipur/back.svg",
  20781. extra: 4060/3930,
  20782. bottom: 151/4200
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(1.85, "meters"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Macro",
  20794. height: math.unit(150, "meters")
  20795. },
  20796. {
  20797. name: "Macro+",
  20798. height: math.unit(0.5, "miles")
  20799. },
  20800. {
  20801. name: "Macro++",
  20802. height: math.unit(2.5, "miles")
  20803. },
  20804. {
  20805. name: "Macro+++",
  20806. height: math.unit(12, "miles")
  20807. },
  20808. {
  20809. name: "Macro++++",
  20810. height: math.unit(120, "miles")
  20811. },
  20812. {
  20813. name: "Macro+++++",
  20814. height: math.unit(1200, "miles")
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Sheila (Wolf)" },
  20820. {
  20821. front: {
  20822. height: math.unit(6, "feet"),
  20823. weight: math.unit(150, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/sheila-wolf/front.svg",
  20827. extra: 1931/1808,
  20828. bottom: 29.5/1960
  20829. }
  20830. },
  20831. dick: {
  20832. height: math.unit(1.464, "feet"),
  20833. name: "Dick",
  20834. image: {
  20835. source: "./media/characters/sheila-wolf/dick.svg"
  20836. }
  20837. },
  20838. muzzle: {
  20839. height: math.unit(0.513, "feet"),
  20840. name: "Muzzle",
  20841. image: {
  20842. source: "./media/characters/sheila-wolf/muzzle.svg"
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Macro",
  20849. height: math.unit(70, "feet"),
  20850. default: true
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(32, "meters"),
  20859. weight: math.unit(300000, "kg"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/almor/front.svg",
  20863. extra: 1408/1322,
  20864. bottom: 94.6/1506.5
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Macro",
  20871. height: math.unit(32, "meters"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Silver" },
  20878. {
  20879. front: {
  20880. height: math.unit(7, "feet"),
  20881. weight: math.unit(200, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/silver/front.svg",
  20885. extra: 472.1/450.5,
  20886. bottom: 26.5/499.424
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(7, "feet"),
  20894. default: true
  20895. },
  20896. {
  20897. name: "Macro",
  20898. height: math.unit(800, "feet")
  20899. },
  20900. {
  20901. name: "Megamacro",
  20902. height: math.unit(250, "miles")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Pliskin" },
  20908. {
  20909. front: {
  20910. height: math.unit(6, "feet"),
  20911. weight: math.unit(150, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/pliskin/front.svg",
  20915. extra: 1469/1359,
  20916. bottom: 70/1540
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Micro",
  20923. height: math.unit(3, "inches")
  20924. },
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(5 + 11/12, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Macro",
  20932. height: math.unit(120, "feet")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Sammy" },
  20938. {
  20939. front: {
  20940. height: math.unit(6, "feet"),
  20941. weight: math.unit(150, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/sammy/front.svg",
  20945. extra: 1193/1089,
  20946. bottom: 30.5/1226
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Macro",
  20953. height: math.unit(1700, "feet"),
  20954. default: true
  20955. },
  20956. {
  20957. name: "Examacro",
  20958. height: math.unit(2.5e9, "lightyears")
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(21, "meters"),
  20967. weight: math.unit(12, "tonnes"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/kuru/front.svg",
  20971. extra: 4301/3785,
  20972. bottom: 371.3/4691
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Macro",
  20979. height: math.unit(21, "meters"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(23, "meters"),
  20989. weight: math.unit(12.2, "tonnes"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/rakka/front.svg",
  20993. extra: 4670/4169,
  20994. bottom: 301/4968.7
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(23, "meters"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Rhys (Feline)" },
  21008. {
  21009. front: {
  21010. height: math.unit(6, "feet"),
  21011. weight: math.unit(150, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/rhys-feline/front.svg",
  21015. extra: 2488/2308,
  21016. bottom: 35.67/2519.19
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Really Small",
  21023. height: math.unit(1, "nm")
  21024. },
  21025. {
  21026. name: "Micro",
  21027. height: math.unit(4, "inches")
  21028. },
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(4 + 10/12, "feet"),
  21032. default: true
  21033. },
  21034. {
  21035. name: "Macro",
  21036. height: math.unit(100, "feet")
  21037. },
  21038. {
  21039. name: "Megamacto",
  21040. height: math.unit(50, "miles")
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21046. {
  21047. side: {
  21048. height: math.unit(30, "feet"),
  21049. weight: math.unit(35000, "kg"),
  21050. name: "Side",
  21051. image: {
  21052. source: "./media/characters/alydar/side.svg",
  21053. extra: 234/222,
  21054. bottom: 6.5/241
  21055. }
  21056. },
  21057. front: {
  21058. height: math.unit(30, "feet"),
  21059. weight: math.unit(35000, "kg"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/alydar/front.svg",
  21063. extra: 223.37/210.2,
  21064. bottom: 22.3/246.76
  21065. }
  21066. },
  21067. top: {
  21068. height: math.unit(64.54, "feet"),
  21069. weight: math.unit(35000, "kg"),
  21070. name: "Top",
  21071. image: {
  21072. source: "./media/characters/alydar/top.svg"
  21073. }
  21074. },
  21075. anthro: {
  21076. height: math.unit(30, "feet"),
  21077. weight: math.unit(9000, "kg"),
  21078. name: "Anthro",
  21079. image: {
  21080. source: "./media/characters/alydar/anthro.svg",
  21081. extra: 432/421,
  21082. bottom: 7.18/440
  21083. }
  21084. },
  21085. maw: {
  21086. height: math.unit(11.693, "feet"),
  21087. name: "Maw",
  21088. image: {
  21089. source: "./media/characters/alydar/maw.svg"
  21090. }
  21091. },
  21092. head: {
  21093. height: math.unit(11.693, "feet"),
  21094. name: "Head",
  21095. image: {
  21096. source: "./media/characters/alydar/head.svg"
  21097. }
  21098. },
  21099. headAlt: {
  21100. height: math.unit(12.861, "feet"),
  21101. name: "Head (Alt)",
  21102. image: {
  21103. source: "./media/characters/alydar/head-alt.svg"
  21104. }
  21105. },
  21106. wing: {
  21107. height: math.unit(20.712, "feet"),
  21108. name: "Wing",
  21109. image: {
  21110. source: "./media/characters/alydar/wing.svg"
  21111. }
  21112. },
  21113. wingFeather: {
  21114. height: math.unit(9.662, "feet"),
  21115. name: "Wing Feather",
  21116. image: {
  21117. source: "./media/characters/alydar/wing-feather.svg"
  21118. }
  21119. },
  21120. countourFeather: {
  21121. height: math.unit(4.154, "feet"),
  21122. name: "Contour Feather",
  21123. image: {
  21124. source: "./media/characters/alydar/contour-feather.svg"
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Diplomatic",
  21131. height: math.unit(13, "feet"),
  21132. default: true
  21133. },
  21134. {
  21135. name: "Small",
  21136. height: math.unit(30, "feet")
  21137. },
  21138. {
  21139. name: "Normal",
  21140. height: math.unit(95, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Large",
  21145. height: math.unit(285, "feet")
  21146. },
  21147. {
  21148. name: "Incomprehensible",
  21149. height: math.unit(450, "megameters")
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Selicia" },
  21155. {
  21156. side: {
  21157. height: math.unit(11, "feet"),
  21158. weight: math.unit(1750, "kg"),
  21159. name: "Side",
  21160. image: {
  21161. source: "./media/characters/selicia/side.svg",
  21162. extra: 440/396,
  21163. bottom: 24.8/465.979
  21164. }
  21165. },
  21166. maw: {
  21167. height: math.unit(4.665, "feet"),
  21168. name: "Maw",
  21169. image: {
  21170. source: "./media/characters/selicia/maw.svg"
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(11, "feet"),
  21178. default: true
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Layla" },
  21184. {
  21185. side: {
  21186. height: math.unit(2 + 6 /12, "feet"),
  21187. weight: math.unit(30, "lb"),
  21188. name: "Side",
  21189. image: {
  21190. source: "./media/characters/layla/side.svg",
  21191. extra: 244/188,
  21192. bottom: 18.2/262.1
  21193. }
  21194. },
  21195. back: {
  21196. height: math.unit(2 + 6 /12, "feet"),
  21197. weight: math.unit(30, "lb"),
  21198. name: "Back",
  21199. image: {
  21200. source: "./media/characters/layla/back.svg",
  21201. extra: 308/241.5,
  21202. bottom: 8.9/316.8
  21203. }
  21204. },
  21205. cumming: {
  21206. height: math.unit(2 + 6 /12, "feet"),
  21207. weight: math.unit(30, "lb"),
  21208. name: "Cumming",
  21209. image: {
  21210. source: "./media/characters/layla/cumming.svg",
  21211. extra: 342/279,
  21212. bottom: 595/938
  21213. }
  21214. },
  21215. dickFlaccid: {
  21216. height: math.unit(2.595, "feet"),
  21217. name: "Flaccid Genitals",
  21218. image: {
  21219. source: "./media/characters/layla/dick-flaccid.svg"
  21220. }
  21221. },
  21222. dickErect: {
  21223. height: math.unit(2.359, "feet"),
  21224. name: "Erect Genitals",
  21225. image: {
  21226. source: "./media/characters/layla/dick-erect.svg"
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Micro",
  21233. height: math.unit(1, "inch")
  21234. },
  21235. {
  21236. name: "Small",
  21237. height: math.unit(1, "foot")
  21238. },
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(2 + 6/12, "feet"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Macro",
  21246. height: math.unit(200, "feet")
  21247. },
  21248. {
  21249. name: "Megamacro",
  21250. height: math.unit(1000, "miles")
  21251. },
  21252. {
  21253. name: "Planetary",
  21254. height: math.unit(8000, "miles")
  21255. },
  21256. {
  21257. name: "True Layla",
  21258. height: math.unit(200000*7, "multiverses")
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Knox" },
  21264. {
  21265. back: {
  21266. height: math.unit(10.5, "feet"),
  21267. weight: math.unit(800, "lb"),
  21268. name: "Back",
  21269. image: {
  21270. source: "./media/characters/knox/back.svg",
  21271. extra: 1486/1089,
  21272. bottom: 107/1601.4
  21273. }
  21274. },
  21275. side: {
  21276. height: math.unit(10.5, "feet"),
  21277. weight: math.unit(800, "lb"),
  21278. name: "Side",
  21279. image: {
  21280. source: "./media/characters/knox/side.svg",
  21281. extra: 244/218,
  21282. bottom: 14/260
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Compact",
  21289. height: math.unit(10.5, "feet"),
  21290. default: true
  21291. },
  21292. {
  21293. name: "Dynamax",
  21294. height: math.unit(210, "feet")
  21295. },
  21296. {
  21297. name: "Full Macro",
  21298. height: math.unit(850, "feet")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Shin (Pikachu)" },
  21304. {
  21305. front: {
  21306. height: math.unit(6, "feet"),
  21307. weight: math.unit(152, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/shin-pikachu/front.svg",
  21311. extra: 1574/1480,
  21312. bottom: 53.3/1626
  21313. }
  21314. },
  21315. hand: {
  21316. height: math.unit(1.055, "feet"),
  21317. name: "Hand",
  21318. image: {
  21319. source: "./media/characters/shin-pikachu/hand.svg"
  21320. }
  21321. },
  21322. foot: {
  21323. height: math.unit(1.1, "feet"),
  21324. name: "Foot",
  21325. image: {
  21326. source: "./media/characters/shin-pikachu/foot.svg"
  21327. }
  21328. },
  21329. collar: {
  21330. height: math.unit(0.386, "feet"),
  21331. name: "Collar",
  21332. image: {
  21333. source: "./media/characters/shin-pikachu/collar.svg"
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Smallest",
  21340. height: math.unit(0.5, "inches")
  21341. },
  21342. {
  21343. name: "Micro",
  21344. height: math.unit(6, "inches")
  21345. },
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(6, "feet"),
  21349. default: true
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(150, "feet")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Kayda" },
  21359. {
  21360. front: {
  21361. height: math.unit(28, "feet"),
  21362. weight: math.unit(10500, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/kayda/front.svg",
  21366. extra: 1536/1428,
  21367. bottom: 68.7/1603
  21368. }
  21369. },
  21370. back: {
  21371. height: math.unit(28, "feet"),
  21372. weight: math.unit(10500, "lb"),
  21373. name: "Back",
  21374. image: {
  21375. source: "./media/characters/kayda/back.svg",
  21376. extra: 1557/1464,
  21377. bottom: 39.5/1597.49
  21378. }
  21379. },
  21380. dick: {
  21381. height: math.unit(3.858, "feet"),
  21382. name: "Dick",
  21383. image: {
  21384. source: "./media/characters/kayda/dick.svg"
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(28, "feet"),
  21392. default: true
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(10 + 11/12, "feet"),
  21401. weight: math.unit(1400, "lb"),
  21402. name: "Front",
  21403. image: {
  21404. source: "./media/characters/brian/front.svg",
  21405. extra: 737/692,
  21406. bottom: 55.4/785
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Normal",
  21413. height: math.unit(10 + 11/12, "feet"),
  21414. default: true
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 8/12, "feet"),
  21423. weight: math.unit(140, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/khemri/front.svg",
  21427. extra: 4780/4059,
  21428. bottom: 80.1/4859.25
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Micro",
  21435. height: math.unit(6, "inches")
  21436. },
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(5 + 8/12, "feet"),
  21440. default: true
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Felix Braveheart" },
  21446. {
  21447. front: {
  21448. height: math.unit(13, "feet"),
  21449. weight: math.unit(1700, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/felix-braveheart/front.svg",
  21453. extra: 1222/1157,
  21454. bottom: 53.2/1280
  21455. }
  21456. },
  21457. back: {
  21458. height: math.unit(13, "feet"),
  21459. weight: math.unit(1700, "lb"),
  21460. name: "Back",
  21461. image: {
  21462. source: "./media/characters/felix-braveheart/back.svg",
  21463. extra: 1277/1203,
  21464. bottom: 50.2/1327
  21465. }
  21466. },
  21467. feral: {
  21468. height: math.unit(6, "feet"),
  21469. weight: math.unit(400, "lb"),
  21470. name: "Feral",
  21471. image: {
  21472. source: "./media/characters/felix-braveheart/feral.svg",
  21473. extra: 682/625,
  21474. bottom: 6.9/688
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(13, "feet"),
  21482. default: true
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Shadow Blade" },
  21488. {
  21489. side: {
  21490. height: math.unit(5 + 11/12, "feet"),
  21491. weight: math.unit(1400, "lb"),
  21492. name: "Side",
  21493. image: {
  21494. source: "./media/characters/shadow-blade/side.svg",
  21495. extra: 1726/1267,
  21496. bottom: 58.4/1785
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(5 + 11/12, "feet"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Karla Halldor" },
  21510. {
  21511. front: {
  21512. height: math.unit(1 + 6/12, "feet"),
  21513. weight: math.unit(25, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/karla-halldor/front.svg",
  21517. extra: 1459/1383,
  21518. bottom: 12/1472
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(1 + 6/12, "feet"),
  21526. default: true
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Ariam" },
  21532. {
  21533. front: {
  21534. height: math.unit(6 + 2/12, "feet"),
  21535. weight: math.unit(160, "lb"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/ariam/front.svg",
  21539. extra: 714/617,
  21540. bottom: 23.4/737,
  21541. }
  21542. },
  21543. squatting: {
  21544. height: math.unit(4.1, "feet"),
  21545. weight: math.unit(160, "lb"),
  21546. name: "Squatting",
  21547. image: {
  21548. source: "./media/characters/ariam/squatting.svg",
  21549. extra: 2617/2112,
  21550. bottom: 61.2/2681,
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(6 + 2/12, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Normal+",
  21562. height: math.unit(4, "meters")
  21563. },
  21564. {
  21565. name: "Macro",
  21566. height: math.unit(50, "meters")
  21567. },
  21568. {
  21569. name: "Macro+",
  21570. height: math.unit(100, "meters")
  21571. },
  21572. {
  21573. name: "Megamacro",
  21574. height: math.unit(20, "km")
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Qodri Class-of-'Fortwelve-Six" },
  21580. {
  21581. front: {
  21582. height: math.unit(1.67, "meters"),
  21583. weight: math.unit(140, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21587. extra: 438/410,
  21588. bottom: 0.75/439
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Shrunken",
  21595. height: math.unit(7.6, "cm")
  21596. },
  21597. {
  21598. name: "Human Scale",
  21599. height: math.unit(1.67, "meters")
  21600. },
  21601. {
  21602. name: "Wolxi Scale",
  21603. height: math.unit(36.7, "meters"),
  21604. default: true
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Izue Two-Mothers" },
  21610. {
  21611. front: {
  21612. height: math.unit(1.73, "meters"),
  21613. weight: math.unit(240, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/izue-two-mothers/front.svg",
  21617. extra: 469/437,
  21618. bottom: 1.24/470.6
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Shrunken",
  21625. height: math.unit(7.86, "cm")
  21626. },
  21627. {
  21628. name: "Human Scale",
  21629. height: math.unit(1.73, "meters")
  21630. },
  21631. {
  21632. name: "Wolxi Scale",
  21633. height: math.unit(38, "meters"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Teeku Love-Shack" },
  21640. {
  21641. front: {
  21642. height: math.unit(1.55, "meters"),
  21643. weight: math.unit(120, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/teeku-love-shack/front.svg",
  21647. extra: 387/362,
  21648. bottom: 1.51/388
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Shrunken",
  21655. height: math.unit(7, "cm")
  21656. },
  21657. {
  21658. name: "Human Scale",
  21659. height: math.unit(1.55, "meters")
  21660. },
  21661. {
  21662. name: "Wolxi Scale",
  21663. height: math.unit(34.1, "meters"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Dejma the Red" },
  21670. {
  21671. front: {
  21672. height: math.unit(1.83, "meters"),
  21673. weight: math.unit(135, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/dejma-the-red/front.svg",
  21677. extra: 480/458,
  21678. bottom: 1.8/482
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Shrunken",
  21685. height: math.unit(8.3, "cm")
  21686. },
  21687. {
  21688. name: "Human Scale",
  21689. height: math.unit(1.83, "meters")
  21690. },
  21691. {
  21692. name: "Wolxi Scale",
  21693. height: math.unit(40, "meters"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Aki" },
  21700. {
  21701. front: {
  21702. height: math.unit(1.78, "meters"),
  21703. weight: math.unit(65, "kg"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/aki/front.svg",
  21707. extra: 452/415
  21708. }
  21709. },
  21710. frontNsfw: {
  21711. height: math.unit(1.78, "meters"),
  21712. weight: math.unit(65, "kg"),
  21713. name: "Front (NSFW)",
  21714. image: {
  21715. source: "./media/characters/aki/front-nsfw.svg",
  21716. extra: 452/415
  21717. }
  21718. },
  21719. back: {
  21720. height: math.unit(1.78, "meters"),
  21721. weight: math.unit(65, "kg"),
  21722. name: "Back",
  21723. image: {
  21724. source: "./media/characters/aki/back.svg",
  21725. extra: 452/415
  21726. }
  21727. },
  21728. rump: {
  21729. height: math.unit(2.05, "feet"),
  21730. name: "Rump",
  21731. image: {
  21732. source: "./media/characters/aki/rump.svg"
  21733. }
  21734. },
  21735. dick: {
  21736. height: math.unit(0.95, "feet"),
  21737. name: "Dick",
  21738. image: {
  21739. source: "./media/characters/aki/dick.svg"
  21740. }
  21741. },
  21742. },
  21743. [
  21744. {
  21745. name: "Micro",
  21746. height: math.unit(15, "cm")
  21747. },
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(178, "cm"),
  21751. default: true
  21752. },
  21753. {
  21754. name: "Macro",
  21755. height: math.unit(214, "m")
  21756. },
  21757. {
  21758. name: "Macro+",
  21759. height: math.unit(534, "m")
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Ari" },
  21765. {
  21766. front: {
  21767. height: math.unit(5 + 5/12, "feet"),
  21768. weight: math.unit(120, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/ari/front.svg",
  21772. extra: 714.5/682,
  21773. bottom: 8/722.5
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(5 + 5/12, "feet")
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(100, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Megamacro",
  21789. height: math.unit(100, "miles")
  21790. },
  21791. {
  21792. name: "Gigamacro",
  21793. height: math.unit(80000, "miles")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Bolt" },
  21799. {
  21800. side: {
  21801. height: math.unit(9, "feet"),
  21802. weight: math.unit(400, "kg"),
  21803. name: "Side",
  21804. image: {
  21805. source: "./media/characters/bolt/side.svg",
  21806. extra: 1126/896,
  21807. bottom: 60/1187.3,
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Micro",
  21814. height: math.unit(5, "inches")
  21815. },
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(9, "feet"),
  21819. default: true
  21820. },
  21821. {
  21822. name: "Macro",
  21823. height: math.unit(700, "feet")
  21824. },
  21825. {
  21826. name: "Max Size",
  21827. height: math.unit(1.52e22, "yottameters")
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(4.53, "meters"),
  21836. weight: math.unit(3, "tons"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/draekon-sylviar/front.svg",
  21840. extra: 1228/1068,
  21841. bottom: 41/1270
  21842. }
  21843. },
  21844. tail: {
  21845. height: math.unit(1.772, "meter"),
  21846. name: "Tail",
  21847. image: {
  21848. source: "./media/characters/draekon-sylviar/tail.svg"
  21849. }
  21850. },
  21851. head: {
  21852. height: math.unit(1.331, "meter"),
  21853. name: "Head",
  21854. image: {
  21855. source: "./media/characters/draekon-sylviar/head.svg"
  21856. }
  21857. },
  21858. hand: {
  21859. height: math.unit(0.564, "meter"),
  21860. name: "Hand",
  21861. image: {
  21862. source: "./media/characters/draekon-sylviar/hand.svg"
  21863. }
  21864. },
  21865. foot: {
  21866. height: math.unit(0.621, "meter"),
  21867. name: "Foot",
  21868. image: {
  21869. source: "./media/characters/draekon-sylviar/foot.svg",
  21870. bottom: 32/324
  21871. }
  21872. },
  21873. dick: {
  21874. height: math.unit(61, "cm"),
  21875. name: "Dick",
  21876. image: {
  21877. source: "./media/characters/draekon-sylviar/dick.svg"
  21878. }
  21879. },
  21880. dickseparated: {
  21881. height: math.unit(61, "cm"),
  21882. name: "Dick-separated",
  21883. image: {
  21884. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Small",
  21891. height: math.unit(4.53/2, "meters"),
  21892. default: true
  21893. },
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(4.53, "meters"),
  21897. default: true
  21898. },
  21899. {
  21900. name: "Large",
  21901. height: math.unit(4.53*2, "meters"),
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(6 + 2/12, "feet"),
  21910. weight: math.unit(180, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/brawler/front.svg",
  21914. extra: 3301/3027,
  21915. bottom: 138/3439
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(6 + 2/12, "feet"),
  21923. default: true
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(11, "feet"),
  21932. weight: math.unit(1000, "lb"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/alex/front.svg",
  21936. bottom: 44.5/620
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Micro",
  21943. height: math.unit(5, "inches")
  21944. },
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(11, "feet"),
  21948. default: true
  21949. },
  21950. {
  21951. name: "Macro",
  21952. height: math.unit(9.5e9, "feet")
  21953. },
  21954. {
  21955. name: "Max Size",
  21956. height: math.unit(1.4e283, "yottameters")
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Zenari" },
  21962. {
  21963. female: {
  21964. height: math.unit(29.9, "m"),
  21965. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21966. name: "Female",
  21967. image: {
  21968. source: "./media/characters/zenari/female.svg",
  21969. extra: 3281.6/3217,
  21970. bottom: 72.2/3353
  21971. }
  21972. },
  21973. male: {
  21974. height: math.unit(27.7, "m"),
  21975. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21976. name: "Male",
  21977. image: {
  21978. source: "./media/characters/zenari/male.svg",
  21979. extra: 3008/2991,
  21980. bottom: 54.6/3069
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Macro",
  21987. height: math.unit(29.7, "meters"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Mactarian" },
  21994. {
  21995. female: {
  21996. height: math.unit(23.8, "m"),
  21997. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21998. name: "Female",
  21999. image: {
  22000. source: "./media/characters/mactarian/female.svg",
  22001. extra: 2662/2569,
  22002. bottom: 73/2736
  22003. }
  22004. },
  22005. male: {
  22006. height: math.unit(23.8, "m"),
  22007. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22008. name: "Male",
  22009. image: {
  22010. source: "./media/characters/mactarian/male.svg",
  22011. extra: 2673/2600,
  22012. bottom: 76/2750
  22013. }
  22014. },
  22015. },
  22016. [
  22017. {
  22018. name: "Macro",
  22019. height: math.unit(23.8, "meters"),
  22020. default: true
  22021. },
  22022. ]
  22023. ))
  22024. characterMakers.push(() => makeCharacter(
  22025. { name: "Umok" },
  22026. {
  22027. female: {
  22028. height: math.unit(19.3, "m"),
  22029. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22030. name: "Female",
  22031. image: {
  22032. source: "./media/characters/umok/female.svg",
  22033. extra: 2186/2078,
  22034. bottom: 87/2277
  22035. }
  22036. },
  22037. male: {
  22038. height: math.unit(19.5, "m"),
  22039. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22040. name: "Male",
  22041. image: {
  22042. source: "./media/characters/umok/male.svg",
  22043. extra: 2233/2140,
  22044. bottom: 24.4/2258
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(19.3, "meters"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Joraxian" },
  22058. {
  22059. female: {
  22060. height: math.unit(26.15, "m"),
  22061. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22062. name: "Female",
  22063. image: {
  22064. source: "./media/characters/joraxian/female.svg",
  22065. extra: 2943/2831,
  22066. bottom: 27/2972
  22067. }
  22068. },
  22069. male: {
  22070. height: math.unit(25.4, "m"),
  22071. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22072. name: "Male",
  22073. image: {
  22074. source: "./media/characters/joraxian/male.svg",
  22075. extra: 2835/2741,
  22076. bottom: 27/2862
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Macro",
  22083. height: math.unit(26.15, "meters"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Sthara" },
  22090. {
  22091. female: {
  22092. height: math.unit(21.6, "m"),
  22093. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22094. name: "Female",
  22095. image: {
  22096. source: "./media/characters/sthara/female.svg",
  22097. extra: 2516/2347,
  22098. bottom: 21.5/2537
  22099. }
  22100. },
  22101. male: {
  22102. height: math.unit(24, "m"),
  22103. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22104. name: "Male",
  22105. image: {
  22106. source: "./media/characters/sthara/male.svg",
  22107. extra: 2732/2607,
  22108. bottom: 23/2732
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Macro",
  22115. height: math.unit(21.6, "meters"),
  22116. default: true
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Luka Bryzant" },
  22122. {
  22123. front: {
  22124. height: math.unit(6 + 4/12, "feet"),
  22125. weight: math.unit(175, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/luka-bryzant/front.svg",
  22129. extra: 311/289,
  22130. bottom: 4/315
  22131. }
  22132. },
  22133. back: {
  22134. height: math.unit(6 + 4/12, "feet"),
  22135. weight: math.unit(175, "lb"),
  22136. name: "Back",
  22137. image: {
  22138. source: "./media/characters/luka-bryzant/back.svg",
  22139. extra: 311/289,
  22140. bottom: 3.8/313.7
  22141. }
  22142. },
  22143. },
  22144. [
  22145. {
  22146. name: "Micro",
  22147. height: math.unit(10, "inches")
  22148. },
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(6 + 4/12, "feet"),
  22152. default: true
  22153. },
  22154. {
  22155. name: "Large",
  22156. height: math.unit(12, "feet")
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Aman Aquila" },
  22162. {
  22163. front: {
  22164. height: math.unit(5 + 7/12, "feet"),
  22165. weight: math.unit(185, "lb"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/aman-aquila/front.svg",
  22169. extra: 1013/976,
  22170. bottom: 45.6/1057
  22171. }
  22172. },
  22173. side: {
  22174. height: math.unit(5 + 7/12, "feet"),
  22175. weight: math.unit(185, "lb"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/aman-aquila/side.svg",
  22179. extra: 1054/1011,
  22180. bottom: 15/1070
  22181. }
  22182. },
  22183. back: {
  22184. height: math.unit(5 + 7/12, "feet"),
  22185. weight: math.unit(185, "lb"),
  22186. name: "Back",
  22187. image: {
  22188. source: "./media/characters/aman-aquila/back.svg",
  22189. extra: 1026/970,
  22190. bottom: 12/1039
  22191. }
  22192. },
  22193. head: {
  22194. height: math.unit(1.211, "feet"),
  22195. name: "Head",
  22196. image: {
  22197. source: "./media/characters/aman-aquila/head.svg",
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Minimicro",
  22204. height: math.unit(0.057, "inches")
  22205. },
  22206. {
  22207. name: "Micro",
  22208. height: math.unit(7, "inches")
  22209. },
  22210. {
  22211. name: "Mini",
  22212. height: math.unit(3 + 7/12, "feet")
  22213. },
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(5 + 7/12, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(157 + 7/12, "feet")
  22222. },
  22223. {
  22224. name: "Megamacro",
  22225. height: math.unit(1557 + 7/12, "feet")
  22226. },
  22227. {
  22228. name: "Gigamacro",
  22229. height: math.unit(15557 + 7/12, "feet")
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(3 + 2/12, "inches"),
  22238. weight: math.unit(0.3, "ounces"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/hiphae/front.svg",
  22242. extra: 1931/1683,
  22243. bottom: 24/1955
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(3 + 1/2, "inches"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(5 + 10/12, "feet"),
  22260. weight: math.unit(165, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/nicky/front.svg",
  22264. extra: 3144/2886,
  22265. bottom: 45.6/3192
  22266. }
  22267. },
  22268. back: {
  22269. height: math.unit(5 + 10/12, "feet"),
  22270. weight: math.unit(165, "lb"),
  22271. name: "Back",
  22272. image: {
  22273. source: "./media/characters/nicky/back.svg",
  22274. extra: 3055/2804,
  22275. bottom: 28.4/3087
  22276. }
  22277. },
  22278. frontclothed: {
  22279. height: math.unit(5 + 10/12, "feet"),
  22280. weight: math.unit(165, "lb"),
  22281. name: "Front-clothed",
  22282. image: {
  22283. source: "./media/characters/nicky/front-clothed.svg",
  22284. extra: 3184.9/2926.9,
  22285. bottom: 86.5/3239.9
  22286. }
  22287. },
  22288. foot: {
  22289. height: math.unit(1.16, "feet"),
  22290. name: "Foot",
  22291. image: {
  22292. source: "./media/characters/nicky/foot.svg"
  22293. }
  22294. },
  22295. feet: {
  22296. height: math.unit(1.34, "feet"),
  22297. name: "Feet",
  22298. image: {
  22299. source: "./media/characters/nicky/feet.svg"
  22300. }
  22301. },
  22302. maw: {
  22303. height: math.unit(0.9, "feet"),
  22304. name: "Maw",
  22305. image: {
  22306. source: "./media/characters/nicky/maw.svg"
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(5 + 10/12, "feet"),
  22314. default: true
  22315. },
  22316. {
  22317. name: "Macro",
  22318. height: math.unit(60, "feet")
  22319. },
  22320. {
  22321. name: "Megamacro",
  22322. height: math.unit(1, "mile")
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Blair" },
  22328. {
  22329. side: {
  22330. height: math.unit(10, "feet"),
  22331. weight: math.unit(600, "lb"),
  22332. name: "Side",
  22333. image: {
  22334. source: "./media/characters/blair/side.svg",
  22335. bottom: 16.6/475,
  22336. extra: 458/431
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Micro",
  22343. height: math.unit(8, "inches")
  22344. },
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(10, "feet"),
  22348. default: true
  22349. },
  22350. {
  22351. name: "Macro",
  22352. height: math.unit(180, "feet")
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Fisher" },
  22358. {
  22359. front: {
  22360. height: math.unit(5 + 4/12, "feet"),
  22361. weight: math.unit(125, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/fisher/front.svg",
  22365. extra: 444/390,
  22366. bottom: 2/444.8
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Micro",
  22373. height: math.unit(4, "inches")
  22374. },
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(5 + 4/12, "feet"),
  22378. default: true
  22379. },
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(100, "feet")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Gliss" },
  22388. {
  22389. front: {
  22390. height: math.unit(6.71, "feet"),
  22391. weight: math.unit(200, "lb"),
  22392. capacity: math.unit(1000000, "people"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/gliss/front.svg",
  22396. extra: 2347/2231,
  22397. bottom: 113/2462
  22398. }
  22399. },
  22400. hammerspaceSize: {
  22401. height: math.unit(6.71*717, "feet"),
  22402. weight: math.unit(200, "lb"),
  22403. capacity: math.unit(1000000, "people"),
  22404. name: "Hammerspace Size",
  22405. image: {
  22406. source: "./media/characters/gliss/front.svg",
  22407. extra: 2347/2231,
  22408. bottom: 113/2462
  22409. }
  22410. },
  22411. },
  22412. [
  22413. {
  22414. name: "Normal",
  22415. height: math.unit(6.71, "feet"),
  22416. default: true
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Dune Anderson" },
  22422. {
  22423. side: {
  22424. height: math.unit(1.44, "m"),
  22425. weight: math.unit(80, "kg"),
  22426. name: "Side",
  22427. image: {
  22428. source: "./media/characters/dune-anderson/side.svg",
  22429. bottom: 49/1426
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Wolf-sized",
  22436. height: math.unit(1.44, "meters")
  22437. },
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(5.05, "meters"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Big",
  22445. height: math.unit(14.4, "meters")
  22446. },
  22447. {
  22448. name: "Huge",
  22449. height: math.unit(144, "meters")
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Hind" },
  22455. {
  22456. front: {
  22457. height: math.unit(7, "feet"),
  22458. weight: math.unit(425, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/hind/front.svg",
  22462. extra: 2091/1860,
  22463. bottom: 129/2220
  22464. }
  22465. },
  22466. back: {
  22467. height: math.unit(7, "feet"),
  22468. weight: math.unit(425, "lb"),
  22469. name: "Back",
  22470. image: {
  22471. source: "./media/characters/hind/back.svg",
  22472. extra: 2091/1860,
  22473. bottom: 24.6/2309
  22474. }
  22475. },
  22476. tail: {
  22477. height: math.unit(2.8, "feet"),
  22478. name: "Tail",
  22479. image: {
  22480. source: "./media/characters/hind/tail.svg"
  22481. }
  22482. },
  22483. head: {
  22484. height: math.unit(2.55, "feet"),
  22485. name: "Head",
  22486. image: {
  22487. source: "./media/characters/hind/head.svg"
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "XS",
  22494. height: math.unit(0.7, "feet")
  22495. },
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(7, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "XL",
  22503. height: math.unit(70, "feet")
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Dylan (Skaven)" },
  22509. {
  22510. front: {
  22511. height: math.unit(6, "feet"),
  22512. weight: math.unit(150, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/dylan-skaven/front.svg",
  22516. extra: 2318/2063,
  22517. bottom: 93.4/2410
  22518. }
  22519. },
  22520. },
  22521. [
  22522. {
  22523. name: "Nano",
  22524. height: math.unit(1, "mm")
  22525. },
  22526. {
  22527. name: "Micro",
  22528. height: math.unit(1, "cm")
  22529. },
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(2.1, "meters"),
  22533. default: true
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(7 + 5/12, "feet"),
  22542. weight: math.unit(357, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/solex-draconov/front.svg",
  22546. extra: 1993/1865,
  22547. bottom: 117/2111
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Natural Height",
  22554. height: math.unit(7 + 5/12, "feet"),
  22555. default: true
  22556. },
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(350, "feet")
  22560. },
  22561. {
  22562. name: "Macro+",
  22563. height: math.unit(1000, "feet")
  22564. },
  22565. {
  22566. name: "Megamacro",
  22567. height: math.unit(20, "km")
  22568. },
  22569. {
  22570. name: "Megamacro+",
  22571. height: math.unit(1000, "km")
  22572. },
  22573. {
  22574. name: "Gigamacro",
  22575. height: math.unit(2.5, "Gm")
  22576. },
  22577. {
  22578. name: "Teramacro",
  22579. height: math.unit(15, "Tm")
  22580. },
  22581. {
  22582. name: "Galactic",
  22583. height: math.unit(30, "Zm")
  22584. },
  22585. {
  22586. name: "Universal",
  22587. height: math.unit(21000, "Ym")
  22588. },
  22589. {
  22590. name: "Omniversal",
  22591. height: math.unit(9.861e50, "Ym")
  22592. },
  22593. {
  22594. name: "Existential",
  22595. height: math.unit(1e300, "meters")
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Mandarax" },
  22601. {
  22602. side: {
  22603. height: math.unit(25, "feet"),
  22604. weight: math.unit(90000, "lb"),
  22605. name: "Side",
  22606. image: {
  22607. source: "./media/characters/mandarax/side.svg",
  22608. extra: 614/332,
  22609. bottom: 55/630
  22610. }
  22611. },
  22612. head: {
  22613. height: math.unit(11.4, "feet"),
  22614. name: "Head",
  22615. image: {
  22616. source: "./media/characters/mandarax/head.svg"
  22617. }
  22618. },
  22619. belly: {
  22620. height: math.unit(33, "feet"),
  22621. name: "Belly",
  22622. capacity: math.unit(500, "people"),
  22623. image: {
  22624. source: "./media/characters/mandarax/belly.svg"
  22625. }
  22626. },
  22627. dick: {
  22628. height: math.unit(8.46, "feet"),
  22629. name: "Dick",
  22630. image: {
  22631. source: "./media/characters/mandarax/dick.svg"
  22632. }
  22633. },
  22634. top: {
  22635. height: math.unit(28, "meters"),
  22636. name: "Top",
  22637. image: {
  22638. source: "./media/characters/mandarax/top.svg"
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(25, "feet"),
  22646. default: true
  22647. },
  22648. ]
  22649. ))
  22650. //characters
  22651. function makeCharacters() {
  22652. const results = [];
  22653. characterMakers.forEach(character => {
  22654. results.push(character());
  22655. });
  22656. return results;
  22657. }