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

23010 lines
552 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. canine: {
  44. name: "Canine",
  45. parents: [
  46. "mammal"
  47. ]
  48. },
  49. crux: {
  50. name: "Crux",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. mammal: {
  56. name: "Mammal",
  57. parents: [
  58. "animal"
  59. ]
  60. },
  61. "rough-collie": {
  62. name: "Rough Collie",
  63. parents: [
  64. "canine"
  65. ]
  66. },
  67. dragon: {
  68. name: "Dragon",
  69. parents: [
  70. "reptile"
  71. ]
  72. },
  73. reptile: {
  74. name: "Reptile",
  75. parents: [
  76. "animal"
  77. ]
  78. }
  79. }
  80. function getSpeciesInfo(speciesList) {
  81. let result = new Set();
  82. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  83. result.add(entry)
  84. });
  85. return Array.from(result);
  86. };
  87. function getSpeciesInfoHelper(species) {
  88. if (!speciesData[species]) {
  89. console.warn(species + " doesn't exist");
  90. return [];
  91. }
  92. if (speciesData[species].parents) {
  93. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  94. } else {
  95. return [species];
  96. }
  97. }
  98. characterMakers.push(() => makeCharacter(
  99. {
  100. name: "Fen",
  101. species: ["crux"],
  102. description: {
  103. title: "Bio",
  104. text: "Very furry. Sheds on everything."
  105. },
  106. tags: [
  107. "anthro"
  108. ]
  109. },
  110. {
  111. back: {
  112. height: math.unit(2.2428, "meter"),
  113. weight: math.unit(124.738, "kg"),
  114. name: "Back",
  115. image: {
  116. source: "./media/characters/fen/back.svg",
  117. extra: 1025 / 935,
  118. bottom: 0.01
  119. },
  120. info: {
  121. description: {
  122. mode: "append",
  123. text: "\n\nHe is not currently looking at you."
  124. }
  125. }
  126. },
  127. full: {
  128. height: math.unit(1.34, "meter"),
  129. weight: math.unit(225, "kg"),
  130. name: "Full",
  131. image: {
  132. source: "./media/characters/fen/full.svg"
  133. },
  134. info: {
  135. description: {
  136. mode: "append",
  137. text: "\n\nMunch."
  138. }
  139. }
  140. },
  141. kneeling: {
  142. height: math.unit(5.4, "feet"),
  143. weight: math.unit(124.738, "kg"),
  144. name: "Kneeling",
  145. image: {
  146. source: "./media/characters/fen/kneeling.svg",
  147. extra: 563 / 507
  148. }
  149. },
  150. goo: {
  151. height: math.unit(2.8, "feet"),
  152. weight: math.unit(125, "kg"),
  153. capacity: math.unit(1, "people"),
  154. name: "Goo",
  155. image: {
  156. source: "./media/characters/fen/goo.svg",
  157. bottom: 116/613
  158. }
  159. },
  160. lounging: {
  161. height: math.unit(6.5, "feet"),
  162. weight: math.unit(125, "kg"),
  163. name: "Lounging",
  164. image: {
  165. source: "./media/characters/fen/lounging.svg"
  166. }
  167. },
  168. },
  169. [
  170. {
  171. name: "Normal",
  172. height: math.unit(2.2428, "meter")
  173. },
  174. {
  175. name: "Big",
  176. height: math.unit(12, "feet")
  177. },
  178. {
  179. name: "Minimacro",
  180. height: math.unit(40, "feet"),
  181. default: true,
  182. info: {
  183. description: {
  184. mode: "append",
  185. text: "\n\nTOO DAMN BIG"
  186. }
  187. }
  188. },
  189. {
  190. name: "Macro",
  191. height: math.unit(100, "feet"),
  192. info: {
  193. description: {
  194. mode: "append",
  195. text: "\n\nTOO DAMN BIG"
  196. }
  197. }
  198. },
  199. {
  200. name: "Macro+",
  201. height: math.unit(300, "feet")
  202. },
  203. {
  204. name: "Megamacro",
  205. height: math.unit(2, "miles")
  206. }
  207. ]
  208. ))
  209. characterMakers.push(() => makeCharacter(
  210. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  211. {
  212. front: {
  213. height: math.unit(183, "cm"),
  214. weight: math.unit(80, "kg"),
  215. name: "Front",
  216. image: {
  217. source: "./media/characters/sofia-fluttertail/front.svg",
  218. bottom: 0.01,
  219. extra: 2154 / 2081
  220. }
  221. },
  222. frontAlt: {
  223. height: math.unit(183, "cm"),
  224. weight: math.unit(80, "kg"),
  225. name: "Front (alt)",
  226. image: {
  227. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  228. }
  229. },
  230. back: {
  231. height: math.unit(183, "cm"),
  232. weight: math.unit(80, "kg"),
  233. name: "Back",
  234. image: {
  235. source: "./media/characters/sofia-fluttertail/back.svg"
  236. }
  237. },
  238. kneeling: {
  239. height: math.unit(125, "cm"),
  240. weight: math.unit(80, "kg"),
  241. name: "Kneeling",
  242. image: {
  243. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  244. extra: 1033/977,
  245. bottom: 23.7/1057
  246. }
  247. },
  248. maw: {
  249. height: math.unit(183 / 5, "cm"),
  250. name: "Maw",
  251. image: {
  252. source: "./media/characters/sofia-fluttertail/maw.svg"
  253. }
  254. },
  255. mawcloseup: {
  256. height: math.unit(183 / 5 * 0.41, "cm"),
  257. name: "Maw (Closeup)",
  258. image: {
  259. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  260. }
  261. },
  262. },
  263. [
  264. {
  265. name: "Normal",
  266. height: math.unit(1.83, "meter")
  267. },
  268. {
  269. name: "Size Thief",
  270. height: math.unit(18, "feet")
  271. },
  272. {
  273. name: "50 Foot Collie",
  274. height: math.unit(50, "feet")
  275. },
  276. {
  277. name: "Macro",
  278. height: math.unit(96, "feet"),
  279. default: true
  280. },
  281. {
  282. name: "Megamerger",
  283. height: math.unit(650, "feet")
  284. },
  285. ]
  286. ))
  287. characterMakers.push(() => makeCharacter(
  288. { name: "March", species: ["dragon"], tags: ["anthro"] },
  289. {
  290. front: {
  291. height: math.unit(7, "feet"),
  292. weight: math.unit(100, "kg"),
  293. name: "Front",
  294. image: {
  295. source: "./media/characters/march/front.svg",
  296. extra: 1,
  297. bottom: 0.015
  298. }
  299. },
  300. foot: {
  301. height: math.unit(0.9, "feet"),
  302. name: "Foot",
  303. image: {
  304. source: "./media/characters/march/foot.svg"
  305. }
  306. },
  307. },
  308. [
  309. {
  310. name: "Normal",
  311. height: math.unit(7.9, "feet")
  312. },
  313. {
  314. name: "Macro",
  315. height: math.unit(220, "meters")
  316. },
  317. {
  318. name: "Megamacro",
  319. height: math.unit(2.98, "km"),
  320. default: true
  321. },
  322. {
  323. name: "Gigamacro",
  324. height: math.unit(15963, "km")
  325. },
  326. {
  327. name: "Teramacro",
  328. height: math.unit(2980000000, "km")
  329. },
  330. {
  331. name: "Examacro",
  332. height: math.unit(250, "parsecs")
  333. },
  334. ]
  335. ))
  336. characterMakers.push(() => makeCharacter(
  337. { name: "Noir", species: ["Woodpecker"], tags: ["anthro"] },
  338. {
  339. front: {
  340. height: math.unit(6, "feet"),
  341. weight: math.unit(60, "kg"),
  342. name: "Front",
  343. image: {
  344. source: "./media/characters/noir/front.svg",
  345. extra: 1,
  346. bottom: 0.032
  347. }
  348. },
  349. },
  350. [
  351. {
  352. name: "Normal",
  353. height: math.unit(6.6, "feet")
  354. },
  355. {
  356. name: "Macro",
  357. height: math.unit(500, "feet")
  358. },
  359. {
  360. name: "Megamacro",
  361. height: math.unit(2.5, "km"),
  362. default: true
  363. },
  364. {
  365. name: "Gigamacro",
  366. height: math.unit(22500, "km")
  367. },
  368. {
  369. name: "Teramacro",
  370. height: math.unit(2500000000, "km")
  371. },
  372. {
  373. name: "Examacro",
  374. height: math.unit(200, "parsecs")
  375. },
  376. ]
  377. ))
  378. characterMakers.push(() => makeCharacter(
  379. { name: "Okuri", species: ["Kitsune"], tags: ["anthro"] },
  380. {
  381. front: {
  382. height: math.unit(7, "feet"),
  383. weight: math.unit(100, "kg"),
  384. name: "Front",
  385. image: {
  386. source: "./media/characters/okuri/front.svg",
  387. extra: 1,
  388. bottom: 0.037
  389. }
  390. },
  391. back: {
  392. height: math.unit(7, "feet"),
  393. weight: math.unit(100, "kg"),
  394. name: "Back",
  395. image: {
  396. source: "./media/characters/okuri/back.svg",
  397. extra: 1,
  398. bottom: 0.007
  399. }
  400. },
  401. },
  402. [
  403. {
  404. name: "Megamacro",
  405. height: math.unit(100, "miles"),
  406. default: true
  407. },
  408. ]
  409. ))
  410. characterMakers.push(() => makeCharacter(
  411. { name: "Manny", species: ["Pokemon"], tags: ["anthro"] },
  412. {
  413. front: {
  414. height: math.unit(7, "feet"),
  415. weight: math.unit(100, "kg"),
  416. name: "Front",
  417. image: {
  418. source: "./media/characters/manny/front.svg",
  419. extra: 1,
  420. bottom: 0.06
  421. }
  422. },
  423. back: {
  424. height: math.unit(7, "feet"),
  425. weight: math.unit(100, "kg"),
  426. name: "Back",
  427. image: {
  428. source: "./media/characters/manny/back.svg",
  429. extra: 1,
  430. bottom: 0.014
  431. }
  432. },
  433. },
  434. [
  435. {
  436. name: "Normal",
  437. height: math.unit(7, "feet"),
  438. },
  439. {
  440. name: "Macro",
  441. height: math.unit(78, "feet"),
  442. default: true
  443. },
  444. {
  445. name: "Macro+",
  446. height: math.unit(300, "meters")
  447. },
  448. {
  449. name: "Macro++",
  450. height: math.unit(2400, "meters")
  451. },
  452. {
  453. name: "Megamacro",
  454. height: math.unit(5167, "meters")
  455. },
  456. {
  457. name: "Gigamacro",
  458. height: math.unit(41769, "miles")
  459. },
  460. ]
  461. ))
  462. characterMakers.push(() => makeCharacter(
  463. { name: "Adake", species: ["Feline", "Tiger"], tags: ["anthro"] },
  464. {
  465. front: {
  466. height: math.unit(7, "feet"),
  467. weight: math.unit(100, "kg"),
  468. name: "Front",
  469. image: {
  470. source: "./media/characters/adake/front-1.svg"
  471. }
  472. },
  473. frontAlt: {
  474. height: math.unit(7, "feet"),
  475. weight: math.unit(100, "kg"),
  476. name: "Front (Alt)",
  477. image: {
  478. source: "./media/characters/adake/front-2.svg",
  479. extra: 1,
  480. bottom: 0.01
  481. }
  482. },
  483. back: {
  484. height: math.unit(7, "feet"),
  485. weight: math.unit(100, "kg"),
  486. name: "Back",
  487. image: {
  488. source: "./media/characters/adake/back.svg",
  489. }
  490. },
  491. kneel: {
  492. height: math.unit(5.385, "feet"),
  493. weight: math.unit(100, "kg"),
  494. name: "Kneeling",
  495. image: {
  496. source: "./media/characters/adake/kneel.svg",
  497. bottom: 0.052
  498. }
  499. },
  500. },
  501. [
  502. {
  503. name: "Normal",
  504. height: math.unit(7, "feet"),
  505. },
  506. {
  507. name: "Macro",
  508. height: math.unit(78, "feet"),
  509. default: true
  510. },
  511. {
  512. name: "Macro+",
  513. height: math.unit(300, "meters")
  514. },
  515. {
  516. name: "Macro++",
  517. height: math.unit(2400, "meters")
  518. },
  519. {
  520. name: "Megamacro",
  521. height: math.unit(5167, "meters")
  522. },
  523. {
  524. name: "Gigamacro",
  525. height: math.unit(41769, "miles")
  526. },
  527. ]
  528. ))
  529. characterMakers.push(() => makeCharacter(
  530. { name: "Elijah", species: ["Blue Jay", "Avian"], tags: ["anthro"] },
  531. {
  532. front: {
  533. height: math.unit(1.65, "meters"),
  534. weight: math.unit(50, "kg"),
  535. name: "Front",
  536. image: {
  537. source: "./media/characters/elijah/front.svg",
  538. extra: 858/830,
  539. bottom: 95.5/953.8559
  540. }
  541. },
  542. back: {
  543. height: math.unit(1.65, "meters"),
  544. weight: math.unit(50, "kg"),
  545. name: "Back",
  546. image: {
  547. source: "./media/characters/elijah/back.svg",
  548. extra: 895/850,
  549. bottom: 5.3/897.956
  550. }
  551. },
  552. frontNsfw: {
  553. height: math.unit(1.65, "meters"),
  554. weight: math.unit(50, "kg"),
  555. name: "Front (NSFW)",
  556. image: {
  557. source: "./media/characters/elijah/front-nsfw.svg",
  558. extra: 858/830,
  559. bottom: 95.5/953.8559
  560. }
  561. },
  562. backNsfw: {
  563. height: math.unit(1.65, "meters"),
  564. weight: math.unit(50, "kg"),
  565. name: "Back (NSFW)",
  566. image: {
  567. source: "./media/characters/elijah/back-nsfw.svg",
  568. extra: 895/850,
  569. bottom: 5.3/897.956
  570. }
  571. },
  572. dick: {
  573. height: math.unit(1, "feet"),
  574. name: "Dick",
  575. image: {
  576. source: "./media/characters/elijah/dick.svg"
  577. }
  578. },
  579. beakOpen: {
  580. height: math.unit(1.25, "feet"),
  581. name: "Beak (Open)",
  582. image: {
  583. source: "./media/characters/elijah/beak-open.svg"
  584. }
  585. },
  586. beakShut: {
  587. height: math.unit(1.25, "feet"),
  588. name: "Beak (Shut)",
  589. image: {
  590. source: "./media/characters/elijah/beak-shut.svg"
  591. }
  592. },
  593. footFlexing: {
  594. height: math.unit(1.61, "feet"),
  595. name: "Foot (Flexing)",
  596. image: {
  597. source: "./media/characters/elijah/foot-flexing.svg"
  598. }
  599. },
  600. footStepping: {
  601. height: math.unit(1.44, "feet"),
  602. name: "Foot (Stepping)",
  603. image: {
  604. source: "./media/characters/elijah/foot-stepping.svg"
  605. }
  606. },
  607. plantigradeLeg: {
  608. height: math.unit(2.34, "feet"),
  609. name: "Plantigrade Leg",
  610. image: {
  611. source: "./media/characters/elijah/plantigrade-leg.svg"
  612. }
  613. },
  614. plantigradeFootLeft: {
  615. height: math.unit(0.9, "feet"),
  616. name: "Plantigrade Foot (Left)",
  617. image: {
  618. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  619. }
  620. },
  621. plantigradeFootRight: {
  622. height: math.unit(0.9, "feet"),
  623. name: "Plantigrade Foot (Right)",
  624. image: {
  625. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  626. }
  627. },
  628. },
  629. [
  630. {
  631. name: "Normal",
  632. height: math.unit(1.65, "meters")
  633. },
  634. {
  635. name: "Macro",
  636. height: math.unit(55, "meters"),
  637. default: true
  638. },
  639. {
  640. name: "Macro+",
  641. height: math.unit(105, "meters")
  642. },
  643. ]
  644. ))
  645. characterMakers.push(() => makeCharacter(
  646. { name: "Rai" },
  647. {
  648. front: {
  649. height: math.unit(11, "feet"),
  650. weight: math.unit(80, "kg"),
  651. name: "Front",
  652. image: {
  653. source: "./media/characters/rai/front.svg",
  654. extra: 1,
  655. bottom: 0.03
  656. }
  657. },
  658. side: {
  659. height: math.unit(11, "feet"),
  660. weight: math.unit(80, "kg"),
  661. name: "Side",
  662. image: {
  663. source: "./media/characters/rai/side.svg"
  664. }
  665. },
  666. back: {
  667. height: math.unit(11, "feet"),
  668. weight: math.unit(80, "lb"),
  669. name: "Back",
  670. image: {
  671. source: "./media/characters/rai/back.svg",
  672. extra: 1,
  673. bottom: 0.01
  674. }
  675. },
  676. feral: {
  677. height: math.unit(11, "feet"),
  678. weight: math.unit(800, "lb"),
  679. name: "Feral",
  680. image: {
  681. source: "./media/characters/rai/feral.svg",
  682. extra: 1050 / 659,
  683. bottom: 0.07
  684. }
  685. },
  686. dragon: {
  687. height: math.unit(23, "feet"),
  688. weight: math.unit(50000, "lb"),
  689. name: "Dragon",
  690. image: {
  691. source: "./media/characters/rai/dragon.svg",
  692. extra: 2498/2030,
  693. bottom: 85.2/2584
  694. }
  695. },
  696. maw: {
  697. height: math.unit(6 / 3.81416, "feet"),
  698. name: "Maw",
  699. image: {
  700. source: "./media/characters/rai/maw.svg"
  701. }
  702. },
  703. },
  704. [
  705. {
  706. name: "Normal",
  707. height: math.unit(11, "feet")
  708. },
  709. {
  710. name: "Macro",
  711. height: math.unit(302, "feet"),
  712. default: true
  713. },
  714. ]
  715. ))
  716. characterMakers.push(() => makeCharacter(
  717. { name: "Jazzy" },
  718. {
  719. front: {
  720. height: math.unit(7, "feet"),
  721. weight: math.unit(80, "kg"),
  722. name: "Front",
  723. image: {
  724. source: "./media/characters/jazzy/front.svg",
  725. extra: 1,
  726. bottom: 0.01
  727. }
  728. },
  729. back: {
  730. height: math.unit(7, "feet"),
  731. weight: math.unit(80, "kg"),
  732. name: "Back",
  733. image: {
  734. source: "./media/characters/jazzy/back.svg",
  735. extra: 1,
  736. bottom: 0.01
  737. }
  738. },
  739. },
  740. [
  741. {
  742. name: "Macro",
  743. height: math.unit(216, "feet"),
  744. default: true
  745. },
  746. ]
  747. ))
  748. characterMakers.push(() => makeCharacter(
  749. { name: "Flamm" },
  750. {
  751. front: {
  752. height: math.unit(7, "feet"),
  753. weight: math.unit(80, "kg"),
  754. name: "Front",
  755. image: {
  756. source: "./media/characters/flamm/front.svg",
  757. extra: 1794 / 1677,
  758. bottom: 31.7 / 1828.5
  759. }
  760. },
  761. },
  762. [
  763. {
  764. name: "Normal",
  765. height: math.unit(9.5, "feet")
  766. },
  767. {
  768. name: "Macro",
  769. height: math.unit(200, "feet"),
  770. default: true
  771. },
  772. ]
  773. ))
  774. characterMakers.push(() => makeCharacter(
  775. { name: "Zephiro" },
  776. {
  777. front: {
  778. height: math.unit(7, "feet"),
  779. weight: math.unit(80, "kg"),
  780. name: "Front",
  781. image: {
  782. source: "./media/characters/zephiro/front.svg",
  783. extra: 2309 / 2162,
  784. bottom: 0.069
  785. }
  786. },
  787. side: {
  788. height: math.unit(7, "feet"),
  789. weight: math.unit(80, "kg"),
  790. name: "Side",
  791. image: {
  792. source: "./media/characters/zephiro/side.svg",
  793. extra: 2403 / 2279,
  794. bottom: 0.015
  795. }
  796. },
  797. back: {
  798. height: math.unit(7, "feet"),
  799. weight: math.unit(80, "kg"),
  800. name: "Back",
  801. image: {
  802. source: "./media/characters/zephiro/back.svg",
  803. extra: 2373 / 2244,
  804. bottom: 0.013
  805. }
  806. },
  807. },
  808. [
  809. {
  810. name: "Micro",
  811. height: math.unit(3, "inches")
  812. },
  813. {
  814. name: "Normal",
  815. height: math.unit(5 + 3 / 12, "feet"),
  816. default: true
  817. },
  818. {
  819. name: "Macro",
  820. height: math.unit(118, "feet")
  821. },
  822. ]
  823. ))
  824. characterMakers.push(() => makeCharacter(
  825. { name: "Fory" },
  826. {
  827. front: {
  828. height: math.unit(5, "feet"),
  829. weight: math.unit(90, "kg"),
  830. name: "Front",
  831. image: {
  832. source: "./media/characters/fory/front.svg",
  833. extra: 2862 / 2674,
  834. bottom: 180 / 3043.8
  835. }
  836. },
  837. back: {
  838. height: math.unit(5, "feet"),
  839. weight: math.unit(90, "kg"),
  840. name: "Back",
  841. image: {
  842. source: "./media/characters/fory/back.svg",
  843. extra: 2962 / 2791,
  844. bottom: 106 / 3071.8
  845. }
  846. },
  847. foot: {
  848. height: math.unit(2.14, "feet"),
  849. name: "Foot",
  850. image: {
  851. source: "./media/characters/fory/foot.svg"
  852. }
  853. },
  854. },
  855. [
  856. {
  857. name: "Normal",
  858. height: math.unit(5, "feet")
  859. },
  860. {
  861. name: "Macro",
  862. height: math.unit(50, "feet"),
  863. default: true
  864. },
  865. {
  866. name: "Megamacro",
  867. height: math.unit(10, "miles")
  868. },
  869. {
  870. name: "Gigamacro",
  871. height: math.unit(5, "earths")
  872. },
  873. ]
  874. ))
  875. characterMakers.push(() => makeCharacter(
  876. { name: "Kurrikage" },
  877. {
  878. front: {
  879. height: math.unit(7, "feet"),
  880. weight: math.unit(90, "kg"),
  881. name: "Front",
  882. image: {
  883. source: "./media/characters/kurrikage/front.svg",
  884. extra: 1,
  885. bottom: 0.035
  886. }
  887. },
  888. back: {
  889. height: math.unit(7, "feet"),
  890. weight: math.unit(90, "lb"),
  891. name: "Back",
  892. image: {
  893. source: "./media/characters/kurrikage/back.svg"
  894. }
  895. },
  896. paw: {
  897. height: math.unit(1.5, "feet"),
  898. name: "Paw",
  899. image: {
  900. source: "./media/characters/kurrikage/paw.svg"
  901. }
  902. },
  903. staff: {
  904. height: math.unit(6.7, "feet"),
  905. name: "Staff",
  906. image: {
  907. source: "./media/characters/kurrikage/staff.svg"
  908. }
  909. },
  910. peek: {
  911. height: math.unit(1.05, "feet"),
  912. name: "Peeking",
  913. image: {
  914. source: "./media/characters/kurrikage/peek.svg",
  915. bottom: 0.08
  916. }
  917. },
  918. },
  919. [
  920. {
  921. name: "Normal",
  922. height: math.unit(12, "feet"),
  923. default: true
  924. },
  925. {
  926. name: "Big",
  927. height: math.unit(20, "feet")
  928. },
  929. {
  930. name: "Macro",
  931. height: math.unit(500, "feet")
  932. },
  933. {
  934. name: "Megamacro",
  935. height: math.unit(20, "miles")
  936. },
  937. ]
  938. ))
  939. characterMakers.push(() => makeCharacter(
  940. { name: "Shingo" },
  941. {
  942. front: {
  943. height: math.unit(6, "feet"),
  944. weight: math.unit(75, "kg"),
  945. name: "Front",
  946. image: {
  947. source: "./media/characters/shingo/front.svg",
  948. extra: 3511 / 3338,
  949. bottom: 0.005
  950. }
  951. },
  952. },
  953. [
  954. {
  955. name: "Micro",
  956. height: math.unit(4, "inches")
  957. },
  958. {
  959. name: "Normal",
  960. height: math.unit(6, "feet"),
  961. default: true
  962. },
  963. {
  964. name: "Macro",
  965. height: math.unit(108, "feet")
  966. }
  967. ]
  968. ))
  969. characterMakers.push(() => makeCharacter(
  970. { name: "Aigey" },
  971. {
  972. side: {
  973. height: math.unit(6, "feet"),
  974. weight: math.unit(75, "kg"),
  975. name: "Side",
  976. image: {
  977. source: "./media/characters/aigey/side.svg"
  978. }
  979. },
  980. },
  981. [
  982. {
  983. name: "Macro",
  984. height: math.unit(200, "feet"),
  985. default: true
  986. },
  987. {
  988. name: "Megamacro",
  989. height: math.unit(100, "miles")
  990. },
  991. ]
  992. )
  993. )
  994. characterMakers.push(() => makeCharacter(
  995. { name: "Natasha" },
  996. {
  997. front: {
  998. height: math.unit(5 + 5 / 12, "feet"),
  999. weight: math.unit(75, "kg"),
  1000. name: "Front",
  1001. image: {
  1002. source: "./media/characters/natasha/front.svg",
  1003. extra: 859/824,
  1004. bottom: 23/879.6
  1005. }
  1006. },
  1007. frontNsfw: {
  1008. height: math.unit(5 + 5 / 12, "feet"),
  1009. weight: math.unit(75, "kg"),
  1010. name: "Front (NSFW)",
  1011. image: {
  1012. source: "./media/characters/natasha/front-nsfw.svg",
  1013. extra: 859/824,
  1014. bottom: 23/879.6
  1015. }
  1016. },
  1017. frontErect: {
  1018. height: math.unit(5 + 5 / 12, "feet"),
  1019. weight: math.unit(75, "kg"),
  1020. name: "Front (Erect)",
  1021. image: {
  1022. source: "./media/characters/natasha/front-erect.svg",
  1023. extra: 859/824,
  1024. bottom: 23/879.6
  1025. }
  1026. },
  1027. back: {
  1028. height: math.unit(5 + 5 / 12, "feet"),
  1029. weight: math.unit(75, "kg"),
  1030. name: "Back",
  1031. image: {
  1032. source: "./media/characters/natasha/back.svg",
  1033. extra: 887.9/852.6,
  1034. bottom: 9.7/896.4
  1035. }
  1036. },
  1037. backAlt: {
  1038. height: math.unit(5 + 5 / 12, "feet"),
  1039. weight: math.unit(75, "kg"),
  1040. name: "Back (Alt)",
  1041. image: {
  1042. source: "./media/characters/natasha/back-alt.svg",
  1043. extra: 1236.7/1192,
  1044. bottom: 22.3/1258.2
  1045. }
  1046. },
  1047. dick: {
  1048. height: math.unit(1.772, "feet"),
  1049. name: "Dick",
  1050. image: {
  1051. source: "./media/characters/natasha/dick.svg"
  1052. }
  1053. },
  1054. },
  1055. [
  1056. {
  1057. name: "Normal",
  1058. height: math.unit(5 + 5 / 12, "feet")
  1059. },
  1060. {
  1061. name: "Large",
  1062. height: math.unit(12, "feet")
  1063. },
  1064. {
  1065. name: "Macro",
  1066. height: math.unit(100, "feet"),
  1067. default: true
  1068. },
  1069. {
  1070. name: "Macro+",
  1071. height: math.unit(260, "feet")
  1072. },
  1073. {
  1074. name: "Macro++",
  1075. height: math.unit(1, "mile")
  1076. },
  1077. ]
  1078. ))
  1079. characterMakers.push(() => makeCharacter(
  1080. { name: "Malik" },
  1081. {
  1082. front: {
  1083. height: math.unit(6, "feet"),
  1084. weight: math.unit(75, "kg"),
  1085. name: "Front",
  1086. image: {
  1087. source: "./media/characters/malik/front.svg"
  1088. }
  1089. },
  1090. side: {
  1091. height: math.unit(6, "feet"),
  1092. weight: math.unit(75, "kg"),
  1093. name: "Side",
  1094. image: {
  1095. source: "./media/characters/malik/side.svg",
  1096. extra: 1.1539
  1097. }
  1098. },
  1099. back: {
  1100. height: math.unit(6, "feet"),
  1101. weight: math.unit(75, "kg"),
  1102. name: "Back",
  1103. image: {
  1104. source: "./media/characters/malik/back.svg"
  1105. }
  1106. },
  1107. },
  1108. [
  1109. {
  1110. name: "Macro",
  1111. height: math.unit(156, "feet"),
  1112. default: true
  1113. },
  1114. {
  1115. name: "Macro+",
  1116. height: math.unit(1188, "feet")
  1117. },
  1118. ]
  1119. ))
  1120. characterMakers.push(() => makeCharacter(
  1121. { name: "Sefer" },
  1122. {
  1123. front: {
  1124. height: math.unit(6, "feet"),
  1125. weight: math.unit(75, "kg"),
  1126. name: "Front",
  1127. image: {
  1128. source: "./media/characters/sefer/front.svg"
  1129. }
  1130. },
  1131. back: {
  1132. height: math.unit(6, "feet"),
  1133. weight: math.unit(75, "kg"),
  1134. name: "Back",
  1135. image: {
  1136. source: "./media/characters/sefer/back.svg"
  1137. }
  1138. },
  1139. },
  1140. [
  1141. {
  1142. name: "Normal",
  1143. height: math.unit(6, "feet"),
  1144. default: true
  1145. },
  1146. ]
  1147. ))
  1148. characterMakers.push(() => makeCharacter(
  1149. { name: "North" },
  1150. {
  1151. body: {
  1152. height: math.unit(2.2428, "meter"),
  1153. weight: math.unit(124.738, "kg"),
  1154. name: "Body",
  1155. image: {
  1156. extra: 1225 / 1050,
  1157. source: "./media/characters/north/front.svg"
  1158. }
  1159. }
  1160. },
  1161. [
  1162. {
  1163. name: "Micro",
  1164. height: math.unit(4, "inches")
  1165. },
  1166. {
  1167. name: "Macro",
  1168. height: math.unit(63, "meters")
  1169. },
  1170. {
  1171. name: "Megamacro",
  1172. height: math.unit(101, "miles"),
  1173. default: true
  1174. }
  1175. ]
  1176. ))
  1177. characterMakers.push(() => makeCharacter(
  1178. { name: "Talan" },
  1179. {
  1180. angled: {
  1181. height: math.unit(4, "meter"),
  1182. weight: math.unit(150, "kg"),
  1183. name: "Angled",
  1184. image: {
  1185. source: "./media/characters/talan/angled-sfw.svg",
  1186. bottom: 29 / 3734
  1187. }
  1188. },
  1189. angledNsfw: {
  1190. height: math.unit(4, "meter"),
  1191. weight: math.unit(150, "kg"),
  1192. name: "Angled (NSFW)",
  1193. image: {
  1194. source: "./media/characters/talan/angled-nsfw.svg",
  1195. bottom: 29 / 3734
  1196. }
  1197. },
  1198. frontNsfw: {
  1199. height: math.unit(4, "meter"),
  1200. weight: math.unit(150, "kg"),
  1201. name: "Front (NSFW)",
  1202. image: {
  1203. source: "./media/characters/talan/front-nsfw.svg",
  1204. bottom: 29 / 3734
  1205. }
  1206. },
  1207. sideNsfw: {
  1208. height: math.unit(4, "meter"),
  1209. weight: math.unit(150, "kg"),
  1210. name: "Side (NSFW)",
  1211. image: {
  1212. source: "./media/characters/talan/side-nsfw.svg",
  1213. bottom: 29 / 3734
  1214. }
  1215. },
  1216. back: {
  1217. height: math.unit(4, "meter"),
  1218. weight: math.unit(150, "kg"),
  1219. name: "Back",
  1220. image: {
  1221. source: "./media/characters/talan/back.svg"
  1222. }
  1223. },
  1224. dickBottom: {
  1225. height: math.unit(0.621, "meter"),
  1226. name: "Dick (Bottom)",
  1227. image: {
  1228. source: "./media/characters/talan/dick-bottom.svg"
  1229. }
  1230. },
  1231. dickTop: {
  1232. height: math.unit(0.621, "meter"),
  1233. name: "Dick (Top)",
  1234. image: {
  1235. source: "./media/characters/talan/dick-top.svg"
  1236. }
  1237. },
  1238. dickSide: {
  1239. height: math.unit(0.305, "meter"),
  1240. name: "Dick (Side)",
  1241. image: {
  1242. source: "./media/characters/talan/dick-side.svg"
  1243. }
  1244. },
  1245. dickFront: {
  1246. height: math.unit(0.305, "meter"),
  1247. name: "Dick (Front)",
  1248. image: {
  1249. source: "./media/characters/talan/dick-front.svg"
  1250. }
  1251. },
  1252. },
  1253. [
  1254. {
  1255. name: "Normal",
  1256. height: math.unit(4, "meters")
  1257. },
  1258. {
  1259. name: "Macro",
  1260. height: math.unit(100, "meters")
  1261. },
  1262. {
  1263. name: "Megamacro",
  1264. height: math.unit(2, "miles"),
  1265. default: true
  1266. },
  1267. {
  1268. name: "Gigamacro",
  1269. height: math.unit(5000, "miles")
  1270. },
  1271. {
  1272. name: "Teramacro",
  1273. height: math.unit(100, "parsecs")
  1274. }
  1275. ]
  1276. ))
  1277. characterMakers.push(() => makeCharacter(
  1278. { name: "Gael'Rathus" },
  1279. {
  1280. front: {
  1281. height: math.unit(2, "meter"),
  1282. weight: math.unit(90, "kg"),
  1283. name: "Front",
  1284. image: {
  1285. source: "./media/characters/gael'rathus/front.svg"
  1286. }
  1287. },
  1288. frontAlt: {
  1289. height: math.unit(2, "meter"),
  1290. weight: math.unit(90, "kg"),
  1291. name: "Front (alt)",
  1292. image: {
  1293. source: "./media/characters/gael'rathus/front-alt.svg"
  1294. }
  1295. },
  1296. frontAlt2: {
  1297. height: math.unit(2, "meter"),
  1298. weight: math.unit(90, "kg"),
  1299. name: "Front (alt 2)",
  1300. image: {
  1301. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1302. }
  1303. }
  1304. },
  1305. [
  1306. {
  1307. name: "Normal",
  1308. height: math.unit(9, "feet"),
  1309. default: true
  1310. },
  1311. {
  1312. name: "Large",
  1313. height: math.unit(25, "feet")
  1314. },
  1315. {
  1316. name: "Macro",
  1317. height: math.unit(0.25, "miles")
  1318. },
  1319. {
  1320. name: "Megamacro",
  1321. height: math.unit(10, "miles")
  1322. }
  1323. ]
  1324. ))
  1325. characterMakers.push(() => makeCharacter(
  1326. { name: "Sosha" },
  1327. {
  1328. side: {
  1329. height: math.unit(2, "meter"),
  1330. weight: math.unit(140, "kg"),
  1331. name: "Side",
  1332. image: {
  1333. source: "./media/characters/sosha/side.svg",
  1334. bottom: 0.042
  1335. }
  1336. },
  1337. },
  1338. [
  1339. {
  1340. name: "Normal",
  1341. height: math.unit(12, "feet"),
  1342. default: true
  1343. }
  1344. ]
  1345. ))
  1346. characterMakers.push(() => makeCharacter(
  1347. { name: "RuNNoLa" },
  1348. {
  1349. side: {
  1350. height: math.unit(5 + 5 / 12, "feet"),
  1351. weight: math.unit(170, "kg"),
  1352. name: "Side",
  1353. image: {
  1354. source: "./media/characters/runnola/side.svg",
  1355. extra: 741 / 448,
  1356. bottom: 0.05
  1357. }
  1358. },
  1359. },
  1360. [
  1361. {
  1362. name: "Small",
  1363. height: math.unit(3, "feet")
  1364. },
  1365. {
  1366. name: "Normal",
  1367. height: math.unit(5 + 5 / 12, "feet"),
  1368. default: true
  1369. },
  1370. {
  1371. name: "Big",
  1372. height: math.unit(10, "feet")
  1373. },
  1374. ]
  1375. ))
  1376. characterMakers.push(() => makeCharacter(
  1377. { name: "Kurribird" },
  1378. {
  1379. front: {
  1380. height: math.unit(2, "meter"),
  1381. weight: math.unit(50, "kg"),
  1382. name: "Front",
  1383. image: {
  1384. source: "./media/characters/kurribird/front.svg",
  1385. bottom: 0.015
  1386. }
  1387. },
  1388. frontAlt: {
  1389. height: math.unit(1.5, "meter"),
  1390. weight: math.unit(50, "kg"),
  1391. name: "Front (Alt)",
  1392. image: {
  1393. source: "./media/characters/kurribird/front-alt.svg",
  1394. extra: 1.45
  1395. }
  1396. },
  1397. },
  1398. [
  1399. {
  1400. name: "Normal",
  1401. height: math.unit(7, "feet")
  1402. },
  1403. {
  1404. name: "Big",
  1405. height: math.unit(12, "feet"),
  1406. default: true
  1407. },
  1408. {
  1409. name: "Macro",
  1410. height: math.unit(1500, "feet")
  1411. },
  1412. {
  1413. name: "Megamacro",
  1414. height: math.unit(2, "miles")
  1415. }
  1416. ]
  1417. ))
  1418. characterMakers.push(() => makeCharacter(
  1419. { name: "Elbial" },
  1420. {
  1421. front: {
  1422. height: math.unit(2, "meter"),
  1423. weight: math.unit(80, "kg"),
  1424. name: "Front",
  1425. image: {
  1426. source: "./media/characters/elbial/front.svg",
  1427. extra: 1643 / 1556,
  1428. bottom: 60.2 / 1696
  1429. }
  1430. },
  1431. side: {
  1432. height: math.unit(2, "meter"),
  1433. weight: math.unit(80, "kg"),
  1434. name: "Side",
  1435. image: {
  1436. source: "./media/characters/elbial/side.svg",
  1437. extra: 1630 / 1565,
  1438. bottom: 71.5 / 1697
  1439. }
  1440. },
  1441. back: {
  1442. height: math.unit(2, "meter"),
  1443. weight: math.unit(80, "kg"),
  1444. name: "Back",
  1445. image: {
  1446. source: "./media/characters/elbial/back.svg",
  1447. extra: 1668 / 1595,
  1448. bottom: 5.6 / 1672
  1449. }
  1450. },
  1451. frontDressed: {
  1452. height: math.unit(2, "meter"),
  1453. weight: math.unit(80, "kg"),
  1454. name: "Front (Dressed)",
  1455. image: {
  1456. source: "./media/characters/elbial/front-dressed.svg",
  1457. extra: 1653 / 1584,
  1458. bottom: 57 / 1708
  1459. }
  1460. },
  1461. genitals: {
  1462. height: math.unit(2 / 3.367, "meter"),
  1463. name: "Genitals",
  1464. image: {
  1465. source: "./media/characters/elbial/genitals.svg"
  1466. }
  1467. },
  1468. },
  1469. [
  1470. {
  1471. name: "Large",
  1472. height: math.unit(100, "feet")
  1473. },
  1474. {
  1475. name: "Macro",
  1476. height: math.unit(500, "feet"),
  1477. default: true
  1478. },
  1479. {
  1480. name: "Megamacro",
  1481. height: math.unit(10, "miles")
  1482. },
  1483. {
  1484. name: "Gigamacro",
  1485. height: math.unit(25000, "miles")
  1486. },
  1487. {
  1488. name: "Full-Size",
  1489. height: math.unit(8000000, "gigaparsecs")
  1490. }
  1491. ]
  1492. ))
  1493. characterMakers.push(() => makeCharacter(
  1494. { name: "Noah" },
  1495. {
  1496. front: {
  1497. height: math.unit(2, "meter"),
  1498. weight: math.unit(60, "kg"),
  1499. name: "Front",
  1500. image: {
  1501. source: "./media/characters/noah/front.svg"
  1502. }
  1503. },
  1504. talons: {
  1505. height: math.unit(0.315, "meter"),
  1506. name: "Talons",
  1507. image: {
  1508. source: "./media/characters/noah/talons.svg"
  1509. }
  1510. }
  1511. },
  1512. [
  1513. {
  1514. name: "Large",
  1515. height: math.unit(50, "feet")
  1516. },
  1517. {
  1518. name: "Macro",
  1519. height: math.unit(750, "feet"),
  1520. default: true
  1521. },
  1522. {
  1523. name: "Megamacro",
  1524. height: math.unit(50, "miles")
  1525. },
  1526. {
  1527. name: "Gigamacro",
  1528. height: math.unit(100000, "miles")
  1529. },
  1530. {
  1531. name: "Full-Size",
  1532. height: math.unit(3000000000, "miles")
  1533. }
  1534. ]
  1535. ))
  1536. characterMakers.push(() => makeCharacter(
  1537. { name: "Natalya" },
  1538. {
  1539. front: {
  1540. height: math.unit(2, "meter"),
  1541. weight: math.unit(80, "kg"),
  1542. name: "Front",
  1543. image: {
  1544. source: "./media/characters/natalya/front.svg"
  1545. }
  1546. },
  1547. back: {
  1548. height: math.unit(2, "meter"),
  1549. weight: math.unit(80, "kg"),
  1550. name: "Back",
  1551. image: {
  1552. source: "./media/characters/natalya/back.svg"
  1553. }
  1554. }
  1555. },
  1556. [
  1557. {
  1558. name: "Normal",
  1559. height: math.unit(150, "feet"),
  1560. default: true
  1561. },
  1562. {
  1563. name: "Megamacro",
  1564. height: math.unit(5, "miles")
  1565. },
  1566. {
  1567. name: "Full-Size",
  1568. height: math.unit(600, "kiloparsecs")
  1569. }
  1570. ]
  1571. ))
  1572. characterMakers.push(() => makeCharacter(
  1573. { name: "Erestrebah" },
  1574. {
  1575. front: {
  1576. height: math.unit(2, "meter"),
  1577. weight: math.unit(50, "kg"),
  1578. name: "Front",
  1579. image: {
  1580. source: "./media/characters/erestrebah/front.svg",
  1581. extra: 208 / 193,
  1582. bottom: 0.055
  1583. }
  1584. },
  1585. back: {
  1586. height: math.unit(2, "meter"),
  1587. weight: math.unit(50, "kg"),
  1588. name: "Back",
  1589. image: {
  1590. source: "./media/characters/erestrebah/back.svg",
  1591. extra: 1.3
  1592. }
  1593. }
  1594. },
  1595. [
  1596. {
  1597. name: "Normal",
  1598. height: math.unit(10, "feet")
  1599. },
  1600. {
  1601. name: "Large",
  1602. height: math.unit(50, "feet"),
  1603. default: true
  1604. },
  1605. {
  1606. name: "Macro",
  1607. height: math.unit(300, "feet")
  1608. },
  1609. {
  1610. name: "Macro+",
  1611. height: math.unit(750, "feet")
  1612. },
  1613. {
  1614. name: "Megamacro",
  1615. height: math.unit(3, "miles")
  1616. }
  1617. ]
  1618. ))
  1619. characterMakers.push(() => makeCharacter(
  1620. { name: "Jennifer" },
  1621. {
  1622. front: {
  1623. height: math.unit(2, "meter"),
  1624. weight: math.unit(80, "kg"),
  1625. name: "Front",
  1626. image: {
  1627. source: "./media/characters/jennifer/front.svg",
  1628. bottom: 0.11,
  1629. extra: 1.16
  1630. }
  1631. },
  1632. frontAlt: {
  1633. height: math.unit(2, "meter"),
  1634. weight: math.unit(80, "kg"),
  1635. name: "Front (Alt)",
  1636. image: {
  1637. source: "./media/characters/jennifer/front-alt.svg"
  1638. }
  1639. }
  1640. },
  1641. [
  1642. {
  1643. name: "Canon Height",
  1644. height: math.unit(120, "feet"),
  1645. default: true
  1646. },
  1647. {
  1648. name: "Macro+",
  1649. height: math.unit(300, "feet")
  1650. },
  1651. {
  1652. name: "Megamacro",
  1653. height: math.unit(20000, "feet")
  1654. }
  1655. ]
  1656. ))
  1657. characterMakers.push(() => makeCharacter(
  1658. { name: "Kalista" },
  1659. {
  1660. front: {
  1661. height: math.unit(2, "meter"),
  1662. weight: math.unit(50, "kg"),
  1663. name: "Front",
  1664. image: {
  1665. source: "./media/characters/kalista/front.svg",
  1666. extra: 1947 / 1700,
  1667. bottom: 76.6/1412.98
  1668. }
  1669. },
  1670. back: {
  1671. height: math.unit(2, "meter"),
  1672. weight: math.unit(50, "kg"),
  1673. name: "Back",
  1674. image: {
  1675. source: "./media/characters/kalista/back.svg",
  1676. extra: 1366 / 1156,
  1677. bottom: 33.9/1362.78
  1678. }
  1679. }
  1680. },
  1681. [
  1682. {
  1683. name: "Uncomfortably Small",
  1684. height: math.unit(10, "feet")
  1685. },
  1686. {
  1687. name: "Small",
  1688. height: math.unit(30, "feet")
  1689. },
  1690. {
  1691. name: "Macro",
  1692. height: math.unit(100, "feet"),
  1693. default: true
  1694. },
  1695. {
  1696. name: "Macro+",
  1697. height: math.unit(2000, "feet")
  1698. },
  1699. {
  1700. name: "True Form",
  1701. height: math.unit(8924, "miles")
  1702. }
  1703. ]
  1704. ))
  1705. characterMakers.push(() => makeCharacter(
  1706. { name: "GiantGrowingVixen" },
  1707. {
  1708. front: {
  1709. height: math.unit(2, "meter"),
  1710. weight: math.unit(120, "kg"),
  1711. name: "Front",
  1712. image: {
  1713. source: "./media/characters/ggv/front.svg"
  1714. }
  1715. },
  1716. side: {
  1717. height: math.unit(2, "meter"),
  1718. weight: math.unit(120, "kg"),
  1719. name: "Side",
  1720. image: {
  1721. source: "./media/characters/ggv/side.svg"
  1722. }
  1723. }
  1724. },
  1725. [
  1726. {
  1727. name: "Extremely Puny",
  1728. height: math.unit(9 + 5 / 12, "feet")
  1729. },
  1730. {
  1731. name: "Horribly Small",
  1732. height: math.unit(47.7, "miles"),
  1733. default: true
  1734. },
  1735. {
  1736. name: "Reasonably Sized",
  1737. height: math.unit(25000, "parsecs")
  1738. },
  1739. {
  1740. name: "Slightly Uncompressed",
  1741. height: math.unit(7.77e31, "parsecs")
  1742. },
  1743. {
  1744. name: "Omniversal",
  1745. height: math.unit(1e300, "meters")
  1746. },
  1747. ]
  1748. ))
  1749. characterMakers.push(() => makeCharacter(
  1750. { name: "Napalm" },
  1751. {
  1752. front: {
  1753. height: math.unit(2, "meter"),
  1754. weight: math.unit(75, "lb"),
  1755. name: "Front",
  1756. image: {
  1757. source: "./media/characters/napalm/front.svg"
  1758. }
  1759. },
  1760. back: {
  1761. height: math.unit(2, "meter"),
  1762. weight: math.unit(75, "lb"),
  1763. name: "Back",
  1764. image: {
  1765. source: "./media/characters/napalm/back.svg"
  1766. }
  1767. }
  1768. },
  1769. [
  1770. {
  1771. name: "Standard",
  1772. height: math.unit(55, "feet"),
  1773. default: true
  1774. }
  1775. ]
  1776. ))
  1777. characterMakers.push(() => makeCharacter(
  1778. { name: "Asana" },
  1779. {
  1780. front: {
  1781. height: math.unit(7 + 5 / 6, "feet"),
  1782. weight: math.unit(325, "lb"),
  1783. name: "Front",
  1784. image: {
  1785. source: "./media/characters/asana/front.svg",
  1786. extra: 1128 / 1068
  1787. }
  1788. },
  1789. back: {
  1790. height: math.unit(7 + 5 / 6, "feet"),
  1791. weight: math.unit(325, "lb"),
  1792. name: "Back",
  1793. image: {
  1794. source: "./media/characters/asana/back.svg",
  1795. extra: 1128 / 1068
  1796. }
  1797. },
  1798. },
  1799. [
  1800. {
  1801. name: "Standard",
  1802. height: math.unit(7 + 5 / 6, "feet"),
  1803. default: true
  1804. },
  1805. {
  1806. name: "Large",
  1807. height: math.unit(10, "meters")
  1808. },
  1809. {
  1810. name: "Macro",
  1811. height: math.unit(2500, "meters")
  1812. },
  1813. {
  1814. name: "Megamacro",
  1815. height: math.unit(5e6, "meters")
  1816. },
  1817. {
  1818. name: "Examacro",
  1819. height: math.unit(5e12, "lightyears")
  1820. },
  1821. {
  1822. name: "Max Size",
  1823. height: math.unit(1e31, "lightyears")
  1824. }
  1825. ]
  1826. ))
  1827. characterMakers.push(() => makeCharacter(
  1828. { name: "Ebony" },
  1829. {
  1830. front: {
  1831. height: math.unit(2, "meter"),
  1832. weight: math.unit(60, "kg"),
  1833. name: "Front",
  1834. image: {
  1835. source: "./media/characters/ebony/front.svg",
  1836. bottom: 0.03,
  1837. extra: 1045 / 810 + 0.03
  1838. }
  1839. },
  1840. side: {
  1841. height: math.unit(2, "meter"),
  1842. weight: math.unit(60, "kg"),
  1843. name: "Side",
  1844. image: {
  1845. source: "./media/characters/ebony/side.svg",
  1846. bottom: 0.03,
  1847. extra: 1045 / 810 + 0.03
  1848. }
  1849. },
  1850. back: {
  1851. height: math.unit(2, "meter"),
  1852. weight: math.unit(60, "kg"),
  1853. name: "Back",
  1854. image: {
  1855. source: "./media/characters/ebony/back.svg",
  1856. bottom: 0.01,
  1857. extra: 1045 / 810 + 0.01
  1858. }
  1859. },
  1860. },
  1861. [
  1862. // TODO check why I did this lol
  1863. {
  1864. name: "Standard",
  1865. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1866. default: true
  1867. },
  1868. {
  1869. name: "Macro",
  1870. height: math.unit(200, "feet")
  1871. },
  1872. {
  1873. name: "Gigamacro",
  1874. height: math.unit(13000, "km")
  1875. }
  1876. ]
  1877. ))
  1878. characterMakers.push(() => makeCharacter(
  1879. { name: "Mountain" },
  1880. {
  1881. front: {
  1882. height: math.unit(6, "feet"),
  1883. weight: math.unit(175, "lb"),
  1884. name: "Front",
  1885. image: {
  1886. source: "./media/characters/mountain/front.svg"
  1887. }
  1888. },
  1889. back: {
  1890. height: math.unit(6, "feet"),
  1891. weight: math.unit(175, "lb"),
  1892. name: "Back",
  1893. image: {
  1894. source: "./media/characters/mountain/back.svg"
  1895. }
  1896. },
  1897. },
  1898. [
  1899. {
  1900. name: "Large",
  1901. height: math.unit(20, "meters")
  1902. },
  1903. {
  1904. name: "Macro",
  1905. height: math.unit(300, "meters")
  1906. },
  1907. {
  1908. name: "Gigamacro",
  1909. height: math.unit(10000, "km"),
  1910. default: true
  1911. },
  1912. {
  1913. name: "Examacro",
  1914. height: math.unit(10e9, "lightyears")
  1915. }
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Rick" },
  1920. {
  1921. front: {
  1922. height: math.unit(8, "feet"),
  1923. weight: math.unit(500, "lb"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/rick/front.svg"
  1927. }
  1928. }
  1929. },
  1930. [
  1931. {
  1932. name: "Normal",
  1933. height: math.unit(8, "feet"),
  1934. default: true
  1935. },
  1936. {
  1937. name: "Macro",
  1938. height: math.unit(5, "km")
  1939. }
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Ona" },
  1944. {
  1945. front: {
  1946. height: math.unit(8, "feet"),
  1947. weight: math.unit(120, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/ona/front.svg"
  1951. }
  1952. },
  1953. frontAlt: {
  1954. height: math.unit(8, "feet"),
  1955. weight: math.unit(120, "lb"),
  1956. name: "Front (Alt)",
  1957. image: {
  1958. source: "./media/characters/ona/front-alt.svg"
  1959. }
  1960. },
  1961. back: {
  1962. height: math.unit(8, "feet"),
  1963. weight: math.unit(120, "lb"),
  1964. name: "Back",
  1965. image: {
  1966. source: "./media/characters/ona/back.svg"
  1967. }
  1968. },
  1969. foot: {
  1970. height: math.unit(1.1, "feet"),
  1971. name: "Foot",
  1972. image: {
  1973. source: "./media/characters/ona/foot.svg"
  1974. }
  1975. }
  1976. },
  1977. [
  1978. {
  1979. name: "Megamacro",
  1980. height: math.unit(70, "km"),
  1981. default: true
  1982. },
  1983. {
  1984. name: "Gigamacro",
  1985. height: math.unit(681818, "miles")
  1986. },
  1987. {
  1988. name: "Examacro",
  1989. height: math.unit(3800000, "lightyears")
  1990. },
  1991. ]
  1992. ))
  1993. characterMakers.push(() => makeCharacter(
  1994. { name: "Mech" },
  1995. {
  1996. front: {
  1997. height: math.unit(12, "feet"),
  1998. weight: math.unit(3000, "lb"),
  1999. name: "Front",
  2000. image: {
  2001. source: "./media/characters/mech/front.svg",
  2002. bottom: 0.025,
  2003. }
  2004. },
  2005. back: {
  2006. height: math.unit(12, "feet"),
  2007. weight: math.unit(3000, "lb"),
  2008. name: "Back",
  2009. image: {
  2010. source: "./media/characters/mech/back.svg",
  2011. bottom: 0.03,
  2012. }
  2013. }
  2014. },
  2015. [
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(12, "feet")
  2019. },
  2020. {
  2021. name: "Macro",
  2022. height: math.unit(300, "feet"),
  2023. default: true
  2024. },
  2025. {
  2026. name: "Macro+",
  2027. height: math.unit(1500, "feet")
  2028. },
  2029. ]
  2030. ))
  2031. characterMakers.push(() => makeCharacter(
  2032. { name: "Gregory" },
  2033. {
  2034. front: {
  2035. height: math.unit(1.3, "meter"),
  2036. weight: math.unit(30, "kg"),
  2037. name: "Front",
  2038. image: {
  2039. source: "./media/characters/gregory/front.svg",
  2040. }
  2041. }
  2042. },
  2043. [
  2044. {
  2045. name: "Normal",
  2046. height: math.unit(1.3, "meter"),
  2047. default: true
  2048. },
  2049. {
  2050. name: "Macro",
  2051. height: math.unit(20, "meter")
  2052. }
  2053. ]
  2054. ))
  2055. characterMakers.push(() => makeCharacter(
  2056. { name: "Elory" },
  2057. {
  2058. front: {
  2059. height: math.unit(2.8, "meter"),
  2060. weight: math.unit(200, "kg"),
  2061. name: "Front",
  2062. image: {
  2063. source: "./media/characters/elory/front.svg",
  2064. }
  2065. }
  2066. },
  2067. [
  2068. {
  2069. name: "Normal",
  2070. height: math.unit(2.8, "meter"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Macro",
  2075. height: math.unit(38, "meter")
  2076. }
  2077. ]
  2078. ))
  2079. characterMakers.push(() => makeCharacter(
  2080. { name: "Angelpatamon" },
  2081. {
  2082. front: {
  2083. height: math.unit(470, "feet"),
  2084. weight: math.unit(924, "tons"),
  2085. name: "Front",
  2086. image: {
  2087. source: "./media/characters/angelpatamon/front.svg",
  2088. }
  2089. }
  2090. },
  2091. [
  2092. {
  2093. name: "Normal",
  2094. height: math.unit(470, "feet"),
  2095. default: true
  2096. },
  2097. {
  2098. name: "Deity Size I",
  2099. height: math.unit(28651.2, "km")
  2100. },
  2101. {
  2102. name: "Deity Size II",
  2103. height: math.unit(171907.2, "km")
  2104. }
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Cryae" },
  2109. {
  2110. side: {
  2111. height: math.unit(7.2, "meter"),
  2112. weight: math.unit(8.2, "tons"),
  2113. name: "Side",
  2114. image: {
  2115. source: "./media/characters/cryae/side.svg",
  2116. extra: 3500 / 1500
  2117. }
  2118. }
  2119. },
  2120. [
  2121. {
  2122. name: "Normal",
  2123. height: math.unit(7.2, "meter"),
  2124. default: true
  2125. }
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Xera" },
  2130. {
  2131. front: {
  2132. height: math.unit(6, "feet"),
  2133. weight: math.unit(175, "lb"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/xera/front.svg",
  2137. extra: 2300 / 2061
  2138. }
  2139. },
  2140. side: {
  2141. height: math.unit(6, "feet"),
  2142. weight: math.unit(175, "lb"),
  2143. name: "Side",
  2144. image: {
  2145. source: "./media/characters/xera/side.svg",
  2146. extra: 2300 / 2061
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(6, "feet"),
  2151. weight: math.unit(175, "lb"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/xera/back.svg"
  2155. }
  2156. },
  2157. },
  2158. [
  2159. {
  2160. name: "Small",
  2161. height: math.unit(10, "feet")
  2162. },
  2163. {
  2164. name: "Macro",
  2165. height: math.unit(500, "meters"),
  2166. default: true
  2167. },
  2168. {
  2169. name: "Macro+",
  2170. height: math.unit(10, "km")
  2171. },
  2172. {
  2173. name: "Gigamacro",
  2174. height: math.unit(25000, "km")
  2175. },
  2176. {
  2177. name: "Teramacro",
  2178. height: math.unit(3e6, "km")
  2179. }
  2180. ]
  2181. ))
  2182. characterMakers.push(() => makeCharacter(
  2183. { name: "Nebula" },
  2184. {
  2185. front: {
  2186. height: math.unit(6, "feet"),
  2187. weight: math.unit(175, "lb"),
  2188. name: "Front",
  2189. image: {
  2190. source: "./media/characters/nebula/front.svg",
  2191. extra: 2600 / 2450
  2192. }
  2193. }
  2194. },
  2195. [
  2196. {
  2197. name: "Small",
  2198. height: math.unit(4.5, "meters")
  2199. },
  2200. {
  2201. name: "Macro",
  2202. height: math.unit(1500, "meters"),
  2203. default: true
  2204. },
  2205. {
  2206. name: "Megamacro",
  2207. height: math.unit(150, "km")
  2208. },
  2209. {
  2210. name: "Gigamacro",
  2211. height: math.unit(27000, "km")
  2212. }
  2213. ]
  2214. ))
  2215. characterMakers.push(() => makeCharacter(
  2216. { name: "Abysgar" },
  2217. {
  2218. front: {
  2219. height: math.unit(6, "feet"),
  2220. weight: math.unit(225, "lb"),
  2221. name: "Front",
  2222. image: {
  2223. source: "./media/characters/abysgar/front.svg"
  2224. }
  2225. }
  2226. },
  2227. [
  2228. {
  2229. name: "Small",
  2230. height: math.unit(4.5, "meters")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(1250, "meters"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Megamacro",
  2239. height: math.unit(125, "km")
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(26000, "km")
  2244. }
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Yakuz" },
  2249. {
  2250. front: {
  2251. height: math.unit(6, "feet"),
  2252. weight: math.unit(180, "lb"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/yakuz/front.svg"
  2256. }
  2257. }
  2258. },
  2259. [
  2260. {
  2261. name: "Small",
  2262. height: math.unit(5, "meters")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(1500, "meters"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Megamacro",
  2271. height: math.unit(200, "km")
  2272. },
  2273. {
  2274. name: "Gigamacro",
  2275. height: math.unit(100000, "km")
  2276. }
  2277. ]
  2278. ))
  2279. characterMakers.push(() => makeCharacter(
  2280. { name: "Mirova" },
  2281. {
  2282. front: {
  2283. height: math.unit(6, "feet"),
  2284. weight: math.unit(175, "lb"),
  2285. name: "Front",
  2286. image: {
  2287. source: "./media/characters/mirova/front.svg"
  2288. }
  2289. }
  2290. },
  2291. [
  2292. {
  2293. name: "Small",
  2294. height: math.unit(5, "meters")
  2295. },
  2296. {
  2297. name: "Macro",
  2298. height: math.unit(900, "meters"),
  2299. default: true
  2300. },
  2301. {
  2302. name: "Megamacro",
  2303. height: math.unit(135, "km")
  2304. },
  2305. {
  2306. name: "Gigamacro",
  2307. height: math.unit(20000, "km")
  2308. }
  2309. ]
  2310. ))
  2311. characterMakers.push(() => makeCharacter(
  2312. { name: "Asana (Mech)" },
  2313. {
  2314. side: {
  2315. height: math.unit(28.35, "feet"),
  2316. weight: math.unit(99.75, "tons"),
  2317. name: "Side",
  2318. image: {
  2319. source: "./media/characters/asana-mech/side.svg"
  2320. }
  2321. }
  2322. },
  2323. [
  2324. {
  2325. name: "Normal",
  2326. height: math.unit(28.35, "feet"),
  2327. default: true
  2328. },
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(2500, "feet")
  2332. },
  2333. {
  2334. name: "Megamacro",
  2335. height: math.unit(25, "miles")
  2336. },
  2337. {
  2338. name: "Examacro",
  2339. height: math.unit(6e8, "lightyears")
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Ashtrek" },
  2345. {
  2346. front: {
  2347. height: math.unit(2, "meters"),
  2348. weight: math.unit(70, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/ashtrek/front.svg",
  2352. extra: 560 / 524,
  2353. bottom: 0.01
  2354. }
  2355. },
  2356. frontArmor: {
  2357. height: math.unit(2, "meters"),
  2358. weight: math.unit(76, "kg"),
  2359. name: "Front (Armor)",
  2360. image: {
  2361. source: "./media/characters/ashtrek/front-armor.svg",
  2362. extra: 561 / 527,
  2363. bottom: 0.01
  2364. }
  2365. },
  2366. side: {
  2367. height: math.unit(2, "meters"),
  2368. weight: math.unit(70, "kg"),
  2369. name: "Side",
  2370. image: {
  2371. source: "./media/characters/ashtrek/side.svg",
  2372. extra: 1717 / 1609,
  2373. bottom: 0.005
  2374. }
  2375. },
  2376. back: {
  2377. height: math.unit(2, "meters"),
  2378. weight: math.unit(70, "kg"),
  2379. name: "Back",
  2380. image: {
  2381. source: "./media/characters/ashtrek/back.svg",
  2382. extra: 1570 / 1501
  2383. }
  2384. },
  2385. },
  2386. [
  2387. {
  2388. name: "DEFCON 5",
  2389. height: math.unit(5, "meters")
  2390. },
  2391. {
  2392. name: "DEFCON 4",
  2393. height: math.unit(500, "meters"),
  2394. default: true
  2395. },
  2396. {
  2397. name: "DEFCON 3",
  2398. height: math.unit(5, "km")
  2399. },
  2400. {
  2401. name: "DEFCON 2",
  2402. height: math.unit(500, "km")
  2403. },
  2404. {
  2405. name: "DEFCON 1",
  2406. height: math.unit(500000, "km")
  2407. },
  2408. {
  2409. name: "DEFCON 0",
  2410. height: math.unit(3, "gigaparsecs")
  2411. },
  2412. ]
  2413. ))
  2414. characterMakers.push(() => makeCharacter(
  2415. { name: "Gale" },
  2416. {
  2417. front: {
  2418. height: math.unit(2, "meters"),
  2419. weight: math.unit(76, "kg"),
  2420. name: "Front",
  2421. image: {
  2422. source: "./media/characters/gale/front.svg"
  2423. }
  2424. },
  2425. frontAlt1: {
  2426. height: math.unit(2, "meters"),
  2427. weight: math.unit(76, "kg"),
  2428. name: "Front (Alt 1)",
  2429. image: {
  2430. source: "./media/characters/gale/front-alt-1.svg"
  2431. }
  2432. },
  2433. frontAlt2: {
  2434. height: math.unit(2, "meters"),
  2435. weight: math.unit(76, "kg"),
  2436. name: "Front (Alt 2)",
  2437. image: {
  2438. source: "./media/characters/gale/front-alt-2.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7, "feet")
  2446. },
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(150, "feet"),
  2450. default: true
  2451. },
  2452. {
  2453. name: "Macro+",
  2454. height: math.unit(300, "feet")
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Draylen" },
  2460. {
  2461. front: {
  2462. height: math.unit(2, "meters"),
  2463. weight: math.unit(76, "kg"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/draylen/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(150, "feet"),
  2474. default: true
  2475. }
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Chez" },
  2480. {
  2481. front: {
  2482. height: math.unit(7 + 9 / 12, "feet"),
  2483. weight: math.unit(379, "lbs"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/chez/front.svg"
  2487. }
  2488. },
  2489. side: {
  2490. height: math.unit(7 + 9 / 12, "feet"),
  2491. weight: math.unit(379, "lbs"),
  2492. name: "Side",
  2493. image: {
  2494. source: "./media/characters/chez/side.svg"
  2495. }
  2496. }
  2497. },
  2498. [
  2499. {
  2500. name: "Normal",
  2501. height: math.unit(7 + 9 / 12, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "God King",
  2506. height: math.unit(9750000, "meters")
  2507. }
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Kaylum" },
  2512. {
  2513. front: {
  2514. height: math.unit(6, "feet"),
  2515. weight: math.unit(275, "lbs"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/kaylum/front.svg",
  2519. bottom: 0.01,
  2520. extra: 1166 / 1031
  2521. }
  2522. },
  2523. frontWingless: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(275, "lbs"),
  2526. name: "Front (Wingless)",
  2527. image: {
  2528. source: "./media/characters/kaylum/front-wingless.svg",
  2529. bottom: 0.01,
  2530. extra: 1117 / 1031
  2531. }
  2532. }
  2533. },
  2534. [
  2535. {
  2536. name: "Normal",
  2537. height: math.unit(3.05, "meters")
  2538. },
  2539. {
  2540. name: "Master",
  2541. height: math.unit(5.5, "meters")
  2542. },
  2543. {
  2544. name: "Rampage",
  2545. height: math.unit(19, "meters")
  2546. },
  2547. {
  2548. name: "Macro Lite",
  2549. height: math.unit(37, "meters")
  2550. },
  2551. {
  2552. name: "Hyper Predator",
  2553. height: math.unit(61, "meters")
  2554. },
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(138, "meters"),
  2558. default: true
  2559. }
  2560. ]
  2561. ))
  2562. characterMakers.push(() => makeCharacter(
  2563. { name: "Geta" },
  2564. {
  2565. front: {
  2566. height: math.unit(6, "feet"),
  2567. weight: math.unit(150, "lbs"),
  2568. name: "Front",
  2569. image: {
  2570. source: "./media/characters/geta/front.svg"
  2571. }
  2572. }
  2573. },
  2574. [
  2575. {
  2576. name: "Micro",
  2577. height: math.unit(3, "inches"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Normal",
  2582. height: math.unit(5 + 5 / 12, "feet")
  2583. }
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Tyrnn" },
  2588. {
  2589. front: {
  2590. height: math.unit(6, "feet"),
  2591. weight: math.unit(300, "lbs"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/tyrnn/front.svg"
  2595. }
  2596. }
  2597. },
  2598. [
  2599. {
  2600. name: "Main Height",
  2601. height: math.unit(355, "feet"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Fave. Height",
  2606. height: math.unit(2400, "feet")
  2607. }
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Apple" },
  2612. {
  2613. front: {
  2614. height: math.unit(6, "feet"),
  2615. weight: math.unit(300, "lbs"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/appledectomy/front.svg"
  2619. }
  2620. }
  2621. },
  2622. [
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(2500, "feet")
  2626. },
  2627. {
  2628. name: "Megamacro",
  2629. height: math.unit(50, "miles"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Gigamacro",
  2634. height: math.unit(5000, "miles")
  2635. },
  2636. {
  2637. name: "Teramacro",
  2638. height: math.unit(250000, "miles")
  2639. },
  2640. ]
  2641. ))
  2642. characterMakers.push(() => makeCharacter(
  2643. { name: "Vulpes" },
  2644. {
  2645. front: {
  2646. height: math.unit(6, "feet"),
  2647. weight: math.unit(200, "lbs"),
  2648. name: "Front",
  2649. image: {
  2650. source: "./media/characters/vulpes/front.svg",
  2651. extra: 573 / 543,
  2652. bottom: 0.033
  2653. }
  2654. },
  2655. side: {
  2656. height: math.unit(6, "feet"),
  2657. weight: math.unit(200, "lbs"),
  2658. name: "Side",
  2659. image: {
  2660. source: "./media/characters/vulpes/side.svg",
  2661. extra: 573 / 543,
  2662. bottom: 0.01
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(200, "lbs"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/vulpes/back.svg",
  2671. extra: 573 / 543,
  2672. }
  2673. },
  2674. feet: {
  2675. height: math.unit(1.276, "feet"),
  2676. name: "Feet",
  2677. image: {
  2678. source: "./media/characters/vulpes/feet.svg"
  2679. }
  2680. },
  2681. maw: {
  2682. height: math.unit(1.18, "feet"),
  2683. name: "Maw",
  2684. image: {
  2685. source: "./media/characters/vulpes/maw.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Micro",
  2692. height: math.unit(2, "inches")
  2693. },
  2694. {
  2695. name: "Normal",
  2696. height: math.unit(6.3, "feet")
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(850, "feet")
  2701. },
  2702. {
  2703. name: "Megamacro",
  2704. height: math.unit(7500, "feet"),
  2705. default: true
  2706. },
  2707. {
  2708. name: "Gigamacro",
  2709. height: math.unit(570000, "miles")
  2710. }
  2711. ]
  2712. ))
  2713. characterMakers.push(() => makeCharacter(
  2714. { name: "Rain Fallen" },
  2715. {
  2716. front: {
  2717. height: math.unit(6, "feet"),
  2718. weight: math.unit(210, "lbs"),
  2719. name: "Front",
  2720. image: {
  2721. source: "./media/characters/rain-fallen/front.svg"
  2722. }
  2723. },
  2724. side: {
  2725. height: math.unit(6, "feet"),
  2726. weight: math.unit(210, "lbs"),
  2727. name: "Side",
  2728. image: {
  2729. source: "./media/characters/rain-fallen/side.svg"
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(6, "feet"),
  2734. weight: math.unit(210, "lbs"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/rain-fallen/back.svg"
  2738. }
  2739. },
  2740. feral: {
  2741. height: math.unit(9, "feet"),
  2742. weight: math.unit(700, "lbs"),
  2743. name: "Feral",
  2744. image: {
  2745. source: "./media/characters/rain-fallen/feral.svg"
  2746. }
  2747. },
  2748. },
  2749. [
  2750. {
  2751. name: "Normal",
  2752. height: math.unit(5, "meter")
  2753. },
  2754. {
  2755. name: "Macro",
  2756. height: math.unit(150, "meter"),
  2757. default: true
  2758. },
  2759. {
  2760. name: "Megamacro",
  2761. height: math.unit(278e6, "meter")
  2762. },
  2763. {
  2764. name: "Gigamacro",
  2765. height: math.unit(2e9, "meter")
  2766. },
  2767. {
  2768. name: "Teramacro",
  2769. height: math.unit(8e12, "meter")
  2770. },
  2771. {
  2772. name: "Devourer",
  2773. height: math.unit(14, "zettameters")
  2774. },
  2775. {
  2776. name: "Scarlet King",
  2777. height: math.unit(18, "yottameters")
  2778. },
  2779. {
  2780. name: "Void",
  2781. height: math.unit(6.66e66, "yottameters")
  2782. }
  2783. ]
  2784. ))
  2785. characterMakers.push(() => makeCharacter(
  2786. { name: "Zaakira" },
  2787. {
  2788. standing: {
  2789. height: math.unit(6, "feet"),
  2790. weight: math.unit(180, "lbs"),
  2791. name: "Standing",
  2792. image: {
  2793. source: "./media/characters/zaakira/standing.svg"
  2794. }
  2795. },
  2796. laying: {
  2797. height: math.unit(3, "feet"),
  2798. weight: math.unit(180, "lbs"),
  2799. name: "Laying",
  2800. image: {
  2801. source: "./media/characters/zaakira/laying.svg"
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(12, "feet")
  2809. },
  2810. {
  2811. name: "Macro",
  2812. height: math.unit(279, "feet"),
  2813. default: true
  2814. }
  2815. ]
  2816. ))
  2817. characterMakers.push(() => makeCharacter(
  2818. { name: "Sigvald" },
  2819. {
  2820. front: {
  2821. height: math.unit(6, "feet"),
  2822. weight: math.unit(250, "lbs"),
  2823. name: "Front",
  2824. image: {
  2825. source: "./media/characters/sigvald/front.svg",
  2826. extra: 1000 / 850
  2827. }
  2828. },
  2829. back: {
  2830. height: math.unit(6, "feet"),
  2831. weight: math.unit(250, "lbs"),
  2832. name: "Back",
  2833. image: {
  2834. source: "./media/characters/sigvald/back.svg"
  2835. }
  2836. },
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(8, "feet")
  2842. },
  2843. {
  2844. name: "Large",
  2845. height: math.unit(12, "feet")
  2846. },
  2847. {
  2848. name: "Larger",
  2849. height: math.unit(20, "feet")
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(150, "feet")
  2854. },
  2855. {
  2856. name: "Macro+",
  2857. height: math.unit(200, "feet"),
  2858. default: true
  2859. },
  2860. ]
  2861. ))
  2862. characterMakers.push(() => makeCharacter(
  2863. { name: "Scott" },
  2864. {
  2865. side: {
  2866. height: math.unit(12, "feet"),
  2867. weight: math.unit(2000, "kg"),
  2868. name: "Side",
  2869. image: {
  2870. source: "./media/characters/scott/side.svg",
  2871. extra: 754/724,
  2872. bottom: 0.069
  2873. }
  2874. },
  2875. upright: {
  2876. height: math.unit(12, "feet"),
  2877. weight: math.unit(2000, "kg"),
  2878. name: "Upright",
  2879. image: {
  2880. source: "./media/characters/scott/upright.svg",
  2881. extra: 3881/3722,
  2882. bottom: 0.05
  2883. }
  2884. },
  2885. },
  2886. [
  2887. {
  2888. name: "Normal",
  2889. height: math.unit(12, "feet"),
  2890. default: true
  2891. },
  2892. ]
  2893. ))
  2894. characterMakers.push(() => makeCharacter(
  2895. { name: "Tobias" },
  2896. {
  2897. side: {
  2898. height: math.unit(8, "meters"),
  2899. weight: math.unit(84755, "lbs"),
  2900. name: "Side",
  2901. image: {
  2902. source: "./media/characters/tobias/side.svg",
  2903. extra: 1474 / 1096,
  2904. bottom: 38.9 / 1513.1235
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Normal",
  2911. height: math.unit(8, "meters"),
  2912. default: true
  2913. },
  2914. ]
  2915. ))
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Kieran" },
  2918. {
  2919. front: {
  2920. height: math.unit(5.5, "feet"),
  2921. weight: math.unit(400, "lbs"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/kieran/front.svg",
  2925. extra: 2694/2364,
  2926. bottom: 217/2908
  2927. }
  2928. },
  2929. side: {
  2930. height: math.unit(5.5, "feet"),
  2931. weight: math.unit(400, "lbs"),
  2932. name: "Side",
  2933. image: {
  2934. source: "./media/characters/kieran/side.svg",
  2935. extra: 875/777,
  2936. bottom: 84.6/959
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Normal",
  2943. height: math.unit(5.5, "feet"),
  2944. default: true
  2945. },
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Sanya" },
  2950. {
  2951. side: {
  2952. height: math.unit(2, "meters"),
  2953. weight: math.unit(70, "kg"),
  2954. name: "Side",
  2955. image: {
  2956. source: "./media/characters/sanya/side.svg",
  2957. bottom: 0.02,
  2958. extra: 1.02
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Small",
  2965. height: math.unit(2, "meters")
  2966. },
  2967. {
  2968. name: "Normal",
  2969. height: math.unit(3, "meters")
  2970. },
  2971. {
  2972. name: "Macro",
  2973. height: math.unit(16, "meters"),
  2974. default: true
  2975. },
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Miranda" },
  2980. {
  2981. side: {
  2982. height: math.unit(2, "meters"),
  2983. weight: math.unit(120, "kg"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/miranda/front.svg",
  2987. extra: 10.6 / 10
  2988. }
  2989. },
  2990. },
  2991. [
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(10, "feet"),
  2995. default: true
  2996. }
  2997. ]
  2998. ))
  2999. characterMakers.push(() => makeCharacter(
  3000. { name: "James" },
  3001. {
  3002. side: {
  3003. height: math.unit(2, "meters"),
  3004. weight: math.unit(100, "kg"),
  3005. name: "Front",
  3006. image: {
  3007. source: "./media/characters/james/front.svg",
  3008. extra: 10 / 8.5
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(8.5, "feet"),
  3016. default: true
  3017. }
  3018. ]
  3019. ))
  3020. characterMakers.push(() => makeCharacter(
  3021. { name: "Heather" },
  3022. {
  3023. side: {
  3024. height: math.unit(9.5, "feet"),
  3025. weight: math.unit(2500, "lbs"),
  3026. name: "Side",
  3027. image: {
  3028. source: "./media/characters/heather/side.svg"
  3029. }
  3030. },
  3031. },
  3032. [
  3033. {
  3034. name: "Normal",
  3035. height: math.unit(9.5, "feet"),
  3036. default: true
  3037. }
  3038. ]
  3039. ))
  3040. characterMakers.push(() => makeCharacter(
  3041. { name: "Lukas" },
  3042. {
  3043. side: {
  3044. height: math.unit(6.5, "feet"),
  3045. weight: math.unit(400, "lbs"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/lukas/side.svg",
  3049. extra: 7.25 / 6.5
  3050. }
  3051. },
  3052. },
  3053. [
  3054. {
  3055. name: "Normal",
  3056. height: math.unit(6.5, "feet"),
  3057. default: true
  3058. }
  3059. ]
  3060. ))
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Louise" },
  3063. {
  3064. side: {
  3065. height: math.unit(5, "feet"),
  3066. weight: math.unit(3000, "lbs"),
  3067. name: "Side",
  3068. image: {
  3069. source: "./media/characters/louise/side.svg"
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Normal",
  3076. height: math.unit(5, "feet"),
  3077. default: true
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "Ramona" },
  3083. {
  3084. side: {
  3085. height: math.unit(6, "feet"),
  3086. weight: math.unit(150, "lbs"),
  3087. name: "Side",
  3088. image: {
  3089. source: "./media/characters/ramona/side.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5.3, "meters"),
  3097. default: true
  3098. },
  3099. {
  3100. name: "Macro",
  3101. height: math.unit(20, "stories")
  3102. },
  3103. {
  3104. name: "Macro+",
  3105. height: math.unit(50, "stories")
  3106. },
  3107. ]
  3108. ))
  3109. characterMakers.push(() => makeCharacter(
  3110. { name: "Deerpuff" },
  3111. {
  3112. standing: {
  3113. height: math.unit(5.75, "feet"),
  3114. weight: math.unit(160, "lbs"),
  3115. name: "Standing",
  3116. image: {
  3117. source: "./media/characters/deerpuff/standing.svg",
  3118. extra: 682 / 624
  3119. }
  3120. },
  3121. sitting: {
  3122. height: math.unit(5.75 / 1.79, "feet"),
  3123. weight: math.unit(160, "lbs"),
  3124. name: "Sitting",
  3125. image: {
  3126. source: "./media/characters/deerpuff/sitting.svg",
  3127. bottom: 44 / 400,
  3128. extra: 1
  3129. }
  3130. },
  3131. taurLaying: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(400, "lbs"),
  3134. name: "Taur (Laying)",
  3135. image: {
  3136. source: "./media/characters/deerpuff/taur-laying.svg"
  3137. }
  3138. },
  3139. },
  3140. [
  3141. {
  3142. name: "Puffball",
  3143. height: math.unit(6, "inches")
  3144. },
  3145. {
  3146. name: "Normalpuff",
  3147. height: math.unit(5.75, "feet")
  3148. },
  3149. {
  3150. name: "Macropuff",
  3151. height: math.unit(1500, "feet"),
  3152. default: true
  3153. },
  3154. {
  3155. name: "Megapuff",
  3156. height: math.unit(500, "miles")
  3157. },
  3158. {
  3159. name: "Gigapuff",
  3160. height: math.unit(250000, "miles")
  3161. },
  3162. {
  3163. name: "Omegapuff",
  3164. height: math.unit(1000, "lightyears")
  3165. },
  3166. ]
  3167. ))
  3168. characterMakers.push(() => makeCharacter(
  3169. { name: "Vivian" },
  3170. {
  3171. stomping: {
  3172. height: math.unit(6, "feet"),
  3173. weight: math.unit(170, "lbs"),
  3174. name: "Stomping",
  3175. image: {
  3176. source: "./media/characters/vivian/stomping.svg"
  3177. }
  3178. },
  3179. sitting: {
  3180. height: math.unit(6 / 1.75, "feet"),
  3181. weight: math.unit(170, "lbs"),
  3182. name: "Sitting",
  3183. image: {
  3184. source: "./media/characters/vivian/sitting.svg",
  3185. bottom: 1 / 6.4,
  3186. extra: 1,
  3187. }
  3188. },
  3189. },
  3190. [
  3191. {
  3192. name: "Normal",
  3193. height: math.unit(7, "feet"),
  3194. default: true
  3195. },
  3196. {
  3197. name: "Macro",
  3198. height: math.unit(10, "stories")
  3199. },
  3200. {
  3201. name: "Macro+",
  3202. height: math.unit(30, "stories")
  3203. },
  3204. {
  3205. name: "Megamacro",
  3206. height: math.unit(10, "miles")
  3207. },
  3208. {
  3209. name: "Megamacro+",
  3210. height: math.unit(2750000, "meters")
  3211. },
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Prince" },
  3216. {
  3217. front: {
  3218. height: math.unit(6, "feet"),
  3219. weight: math.unit(160, "lbs"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/prince/front.svg",
  3223. extra: 3400 / 3000
  3224. }
  3225. },
  3226. jumping: {
  3227. height: math.unit(6, "feet"),
  3228. weight: math.unit(160, "lbs"),
  3229. name: "Jumping",
  3230. image: {
  3231. source: "./media/characters/prince/jump.svg",
  3232. extra: 2555 / 2134
  3233. }
  3234. },
  3235. },
  3236. [
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(7.75, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Not cute",
  3244. height: math.unit(17, "feet")
  3245. },
  3246. {
  3247. name: "I said NOT",
  3248. height: math.unit(91, "feet")
  3249. },
  3250. {
  3251. name: "Please stop",
  3252. height: math.unit(560, "feet")
  3253. },
  3254. {
  3255. name: "What have you done",
  3256. height: math.unit(2200, "feet")
  3257. },
  3258. {
  3259. name: "Deer God",
  3260. height: math.unit(3.6, "miles")
  3261. },
  3262. ]
  3263. ))
  3264. characterMakers.push(() => makeCharacter(
  3265. { name: "Psymon" },
  3266. {
  3267. standing: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(300, "lbs"),
  3270. name: "Standing",
  3271. image: {
  3272. source: "./media/characters/psymon/standing.svg",
  3273. extra: 1888 / 1810,
  3274. bottom: 0.05
  3275. }
  3276. },
  3277. slithering: {
  3278. height: math.unit(6, "feet"),
  3279. weight: math.unit(300, "lbs"),
  3280. name: "Slithering",
  3281. image: {
  3282. source: "./media/characters/psymon/slithering.svg",
  3283. extra: 1330 / 1224
  3284. }
  3285. },
  3286. slitheringAlt: {
  3287. height: math.unit(6, "feet"),
  3288. weight: math.unit(300, "lbs"),
  3289. name: "Slithering (Alt)",
  3290. image: {
  3291. source: "./media/characters/psymon/slithering-alt.svg",
  3292. extra: 1330 / 1224
  3293. }
  3294. },
  3295. },
  3296. [
  3297. {
  3298. name: "Normal",
  3299. height: math.unit(11.25, "feet"),
  3300. default: true
  3301. },
  3302. {
  3303. name: "Large",
  3304. height: math.unit(27, "feet")
  3305. },
  3306. {
  3307. name: "Giant",
  3308. height: math.unit(87, "feet")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(365, "feet")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(3, "miles")
  3317. },
  3318. {
  3319. name: "World Serpent",
  3320. height: math.unit(8000, "miles")
  3321. },
  3322. ]
  3323. ))
  3324. characterMakers.push(() => makeCharacter(
  3325. { name: "Daimos" },
  3326. {
  3327. front: {
  3328. height: math.unit(6, "feet"),
  3329. weight: math.unit(180, "lbs"),
  3330. name: "Front",
  3331. image: {
  3332. source: "./media/characters/daimos/front.svg",
  3333. extra: 4160 / 3897,
  3334. bottom: 0.021
  3335. }
  3336. }
  3337. },
  3338. [
  3339. {
  3340. name: "Normal",
  3341. height: math.unit(8, "feet"),
  3342. default: true
  3343. },
  3344. {
  3345. name: "Big Dog",
  3346. height: math.unit(22, "feet")
  3347. },
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(127, "feet")
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(3600, "feet")
  3355. },
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Blake" },
  3360. {
  3361. side: {
  3362. height: math.unit(6, "feet"),
  3363. weight: math.unit(180, "lbs"),
  3364. name: "Side",
  3365. image: {
  3366. source: "./media/characters/blake/side.svg",
  3367. extra: 1212 / 1120,
  3368. bottom: 0.05
  3369. }
  3370. },
  3371. crouched: {
  3372. height: math.unit(6 * 0.57, "feet"),
  3373. weight: math.unit(180, "lbs"),
  3374. name: "Crouched",
  3375. image: {
  3376. source: "./media/characters/blake/crouched.svg",
  3377. extra: 840 / 587,
  3378. bottom: 0.04
  3379. }
  3380. },
  3381. bent: {
  3382. height: math.unit(6 * 0.75, "feet"),
  3383. weight: math.unit(180, "lbs"),
  3384. name: "Bent",
  3385. image: {
  3386. source: "./media/characters/blake/bent.svg",
  3387. extra: 592 / 544,
  3388. bottom: 0.035
  3389. }
  3390. },
  3391. },
  3392. [
  3393. {
  3394. name: "Normal",
  3395. height: math.unit(8 + 1 / 6, "feet"),
  3396. default: true
  3397. },
  3398. {
  3399. name: "Big Backside",
  3400. height: math.unit(37, "feet")
  3401. },
  3402. {
  3403. name: "Subway Shredder",
  3404. height: math.unit(72, "feet")
  3405. },
  3406. {
  3407. name: "City Carver",
  3408. height: math.unit(1675, "feet")
  3409. },
  3410. {
  3411. name: "Tectonic Tweaker",
  3412. height: math.unit(2300, "miles")
  3413. },
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Guisetto" },
  3418. {
  3419. front: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(180, "lbs"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/guisetto/front.svg",
  3425. extra: 856 / 817,
  3426. bottom: 0.06
  3427. }
  3428. },
  3429. airborne: {
  3430. height: math.unit(6, "feet"),
  3431. weight: math.unit(180, "lbs"),
  3432. name: "Airborne",
  3433. image: {
  3434. source: "./media/characters/guisetto/airborne.svg",
  3435. extra: 584 / 525
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Normal",
  3442. height: math.unit(10 + 11 / 12, "feet"),
  3443. default: true
  3444. },
  3445. {
  3446. name: "Large",
  3447. height: math.unit(35, "feet")
  3448. },
  3449. {
  3450. name: "Macro",
  3451. height: math.unit(475, "feet")
  3452. },
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Luxor" },
  3457. {
  3458. front: {
  3459. height: math.unit(6, "feet"),
  3460. weight: math.unit(180, "lbs"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/luxor/front.svg",
  3464. extra: 2940 / 2152
  3465. }
  3466. },
  3467. back: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(180, "lbs"),
  3470. name: "Back",
  3471. image: {
  3472. source: "./media/characters/luxor/back.svg",
  3473. extra: 1083 / 960
  3474. }
  3475. },
  3476. },
  3477. [
  3478. {
  3479. name: "Normal",
  3480. height: math.unit(5 + 5 / 6, "feet"),
  3481. default: true
  3482. },
  3483. {
  3484. name: "Lamp",
  3485. height: math.unit(50, "feet")
  3486. },
  3487. {
  3488. name: "Lämp",
  3489. height: math.unit(300, "feet")
  3490. },
  3491. {
  3492. name: "The sun is a lamp",
  3493. height: math.unit(250000, "miles")
  3494. },
  3495. ]
  3496. ))
  3497. characterMakers.push(() => makeCharacter(
  3498. { name: "Huoyan" },
  3499. {
  3500. front: {
  3501. height: math.unit(6, "feet"),
  3502. weight: math.unit(50, "lbs"),
  3503. name: "Front",
  3504. image: {
  3505. source: "./media/characters/huoyan/front.svg"
  3506. }
  3507. },
  3508. side: {
  3509. height: math.unit(6, "feet"),
  3510. weight: math.unit(180, "lbs"),
  3511. name: "Side",
  3512. image: {
  3513. source: "./media/characters/huoyan/side.svg"
  3514. }
  3515. },
  3516. },
  3517. [
  3518. {
  3519. name: "Chef",
  3520. height: math.unit(9, "feet")
  3521. },
  3522. {
  3523. name: "Normal",
  3524. height: math.unit(65, "feet"),
  3525. default: true
  3526. },
  3527. {
  3528. name: "Macro",
  3529. height: math.unit(780, "feet")
  3530. },
  3531. {
  3532. name: "Flaming Mountain",
  3533. height: math.unit(4.8, "miles")
  3534. },
  3535. {
  3536. name: "Celestial",
  3537. height: math.unit(765000, "miles")
  3538. },
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "Tails" },
  3543. {
  3544. front: {
  3545. height: math.unit(5 + 3 / 4, "feet"),
  3546. weight: math.unit(120, "lbs"),
  3547. name: "Front",
  3548. image: {
  3549. source: "./media/characters/tails/front.svg"
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Normal",
  3556. height: math.unit(5 + 3 / 4, "feet"),
  3557. default: true
  3558. }
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "Rainy" },
  3563. {
  3564. front: {
  3565. height: math.unit(4, "feet"),
  3566. weight: math.unit(50, "lbs"),
  3567. name: "Front",
  3568. image: {
  3569. source: "./media/characters/rainy/front.svg"
  3570. }
  3571. }
  3572. },
  3573. [
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(800, "feet"),
  3577. default: true
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Rainier" },
  3583. {
  3584. front: {
  3585. height: math.unit(6, "feet"),
  3586. weight: math.unit(150, "lbs"),
  3587. name: "Front",
  3588. image: {
  3589. source: "./media/characters/rainier/front.svg"
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Micro",
  3596. height: math.unit(2, "mm"),
  3597. default: true
  3598. }
  3599. ]
  3600. ))
  3601. characterMakers.push(() => makeCharacter(
  3602. { name: "Andy" },
  3603. {
  3604. front: {
  3605. height: math.unit(6, "feet"),
  3606. weight: math.unit(180, "lbs"),
  3607. name: "Front",
  3608. image: {
  3609. source: "./media/characters/andy/front.svg"
  3610. }
  3611. }
  3612. },
  3613. [
  3614. {
  3615. name: "Normal",
  3616. height: math.unit(8, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Macro",
  3621. height: math.unit(1000, "feet")
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(5, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(5000, "miles")
  3630. },
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Cimmaron" },
  3635. {
  3636. front: {
  3637. height: math.unit(6, "feet"),
  3638. weight: math.unit(210, "lbs"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/cimmaron/front-sfw.svg",
  3642. extra: 701 / 676,
  3643. bottom: 0.046
  3644. }
  3645. },
  3646. back: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(210, "lbs"),
  3649. name: "Back",
  3650. image: {
  3651. source: "./media/characters/cimmaron/back-sfw.svg",
  3652. extra: 701 / 676,
  3653. bottom: 0.046
  3654. }
  3655. },
  3656. frontNsfw: {
  3657. height: math.unit(6, "feet"),
  3658. weight: math.unit(210, "lbs"),
  3659. name: "Front (NSFW)",
  3660. image: {
  3661. source: "./media/characters/cimmaron/front-nsfw.svg",
  3662. extra: 701 / 676,
  3663. bottom: 0.046
  3664. }
  3665. },
  3666. backNsfw: {
  3667. height: math.unit(6, "feet"),
  3668. weight: math.unit(210, "lbs"),
  3669. name: "Back (NSFW)",
  3670. image: {
  3671. source: "./media/characters/cimmaron/back-nsfw.svg",
  3672. extra: 701 / 676,
  3673. bottom: 0.046
  3674. }
  3675. },
  3676. dick: {
  3677. height: math.unit(1.714, "feet"),
  3678. name: "Dick",
  3679. image: {
  3680. source: "./media/characters/cimmaron/dick.svg"
  3681. }
  3682. },
  3683. },
  3684. [
  3685. {
  3686. name: "Normal",
  3687. height: math.unit(6, "feet"),
  3688. default: true
  3689. },
  3690. {
  3691. name: "Macro Mayor",
  3692. height: math.unit(350, "meters")
  3693. },
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Akari Kaen" },
  3698. {
  3699. front: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(200, "lbs"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/akari/front.svg",
  3705. extra: 962 / 901,
  3706. bottom: 0.04
  3707. }
  3708. }
  3709. },
  3710. [
  3711. {
  3712. name: "Micro",
  3713. height: math.unit(5, "inches"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Normal",
  3718. height: math.unit(7, "feet")
  3719. },
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Cynosura" },
  3724. {
  3725. front: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(140, "lbs"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/cynosura/front.svg",
  3731. extra: 896 / 847
  3732. }
  3733. },
  3734. back: {
  3735. height: math.unit(6, "feet"),
  3736. weight: math.unit(140, "lbs"),
  3737. name: "Back",
  3738. image: {
  3739. source: "./media/characters/cynosura/back.svg",
  3740. extra: 1365 / 1250
  3741. }
  3742. },
  3743. },
  3744. [
  3745. {
  3746. name: "Micro",
  3747. height: math.unit(4, "inches")
  3748. },
  3749. {
  3750. name: "Normal",
  3751. height: math.unit(5.75, "feet"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Tall",
  3756. height: math.unit(10, "feet")
  3757. },
  3758. {
  3759. name: "Big",
  3760. height: math.unit(20, "feet")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(50, "feet")
  3765. },
  3766. ]
  3767. ))
  3768. characterMakers.push(() => makeCharacter(
  3769. { name: "Gin" },
  3770. {
  3771. front: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(170, "lbs"),
  3774. name: "Front",
  3775. image: {
  3776. source: "./media/characters/gin/front.svg",
  3777. extra: 1.053,
  3778. bottom: 0.025
  3779. }
  3780. },
  3781. foot: {
  3782. height: math.unit(6 / 4.25, "feet"),
  3783. name: "Foot",
  3784. image: {
  3785. source: "./media/characters/gin/foot.svg"
  3786. }
  3787. },
  3788. sole: {
  3789. height: math.unit(6 / 4.40, "feet"),
  3790. name: "Sole",
  3791. image: {
  3792. source: "./media/characters/gin/sole.svg"
  3793. }
  3794. },
  3795. },
  3796. [
  3797. {
  3798. name: "Normal",
  3799. height: math.unit(13 + 2/12, "feet")
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(1500, "feet")
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(200, "miles"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Gigamacro",
  3812. height: math.unit(500, "megameters")
  3813. },
  3814. {
  3815. name: "Teramacro",
  3816. height: math.unit(15, "lightyears")
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Guy" },
  3822. {
  3823. front: {
  3824. height: math.unit(6 + 1 / 6, "feet"),
  3825. weight: math.unit(178, "lbs"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/guy/front.svg"
  3829. }
  3830. }
  3831. },
  3832. [
  3833. {
  3834. name: "Normal",
  3835. height: math.unit(6 + 1 / 6, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Large",
  3840. height: math.unit(25 + 7 / 12, "feet")
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(60 + 9 / 12, "feet")
  3845. },
  3846. {
  3847. name: "Macro+",
  3848. height: math.unit(246, "feet")
  3849. },
  3850. {
  3851. name: "Macro++",
  3852. height: math.unit(878, "feet")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Tiberius" },
  3858. {
  3859. front: {
  3860. height: math.unit(9, "feet"),
  3861. weight: math.unit(800, "lbs"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/tiberius/front.svg",
  3865. extra: 2295 / 2071
  3866. }
  3867. },
  3868. back: {
  3869. height: math.unit(9, "feet"),
  3870. weight: math.unit(800, "lbs"),
  3871. name: "Back",
  3872. image: {
  3873. source: "./media/characters/tiberius/back.svg",
  3874. extra: 2373 / 2160
  3875. }
  3876. },
  3877. },
  3878. [
  3879. {
  3880. name: "Normal",
  3881. height: math.unit(9, "feet"),
  3882. default: true
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Surgo" },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(600, "lbs"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/surgo/front.svg",
  3895. extra: 3591 / 2227
  3896. }
  3897. },
  3898. back: {
  3899. height: math.unit(6, "feet"),
  3900. weight: math.unit(600, "lbs"),
  3901. name: "Back",
  3902. image: {
  3903. source: "./media/characters/surgo/back.svg",
  3904. extra: 3557 / 2228
  3905. }
  3906. },
  3907. laying: {
  3908. height: math.unit(6 * 0.85, "feet"),
  3909. weight: math.unit(600, "lbs"),
  3910. name: "Laying",
  3911. image: {
  3912. source: "./media/characters/surgo/laying.svg"
  3913. }
  3914. },
  3915. },
  3916. [
  3917. {
  3918. name: "Normal",
  3919. height: math.unit(6, "feet"),
  3920. default: true
  3921. }
  3922. ]
  3923. ))
  3924. characterMakers.push(() => makeCharacter(
  3925. { name: "Cibus" },
  3926. {
  3927. side: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(150, "lbs"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/cibus/side.svg",
  3933. extra: 800 / 400
  3934. }
  3935. },
  3936. },
  3937. [
  3938. {
  3939. name: "Normal",
  3940. height: math.unit(6, "feet"),
  3941. default: true
  3942. }
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Nibbles" },
  3947. {
  3948. front: {
  3949. height: math.unit(6, "feet"),
  3950. weight: math.unit(240, "lbs"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/nibbles/front.svg"
  3954. }
  3955. },
  3956. side: {
  3957. height: math.unit(6, "feet"),
  3958. weight: math.unit(240, "lbs"),
  3959. name: "Side",
  3960. image: {
  3961. source: "./media/characters/nibbles/side.svg"
  3962. }
  3963. },
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(9, "feet"),
  3969. default: true
  3970. }
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "Rikky" },
  3975. {
  3976. side: {
  3977. height: math.unit(5 + 1 / 6, "feet"),
  3978. weight: math.unit(130, "lbs"),
  3979. name: "Side",
  3980. image: {
  3981. source: "./media/characters/rikky/side.svg"
  3982. }
  3983. },
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(5 + 1 / 6, "feet")
  3989. },
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(152, "feet"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Megamacro",
  3997. height: math.unit(7, "miles")
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Malfressa" },
  4003. {
  4004. side: {
  4005. height: math.unit(370, "cm"),
  4006. weight: math.unit(350, "lbs"),
  4007. name: "Side",
  4008. image: {
  4009. source: "./media/characters/malfressa/side.svg"
  4010. }
  4011. },
  4012. walking: {
  4013. height: math.unit(370, "cm"),
  4014. weight: math.unit(350, "lbs"),
  4015. name: "Walking",
  4016. image: {
  4017. source: "./media/characters/malfressa/walking.svg"
  4018. }
  4019. },
  4020. feral: {
  4021. height: math.unit(2500, "cm"),
  4022. weight: math.unit(100000, "lbs"),
  4023. name: "Feral",
  4024. image: {
  4025. source: "./media/characters/malfressa/feral.svg",
  4026. extra: 2108 / 837,
  4027. bottom: 0.02
  4028. }
  4029. },
  4030. },
  4031. [
  4032. {
  4033. name: "Normal",
  4034. height: math.unit(370, "cm")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(300, "meters"),
  4039. default: true
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Jaro" },
  4045. {
  4046. front: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(60, "kg"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/jaro/front.svg"
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(60, "kg"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/jaro/back.svg"
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Micro",
  4066. height: math.unit(7, "inches")
  4067. },
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(5.5, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Minimacro",
  4075. height: math.unit(20, "feet")
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(200, "meters")
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Rogue" },
  4085. {
  4086. front: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(195, "lb"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/rogue/front.svg"
  4092. }
  4093. },
  4094. },
  4095. [
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(90, "feet"),
  4099. default: true
  4100. },
  4101. ]
  4102. ))
  4103. characterMakers.push(() => makeCharacter(
  4104. { name: "Piper" },
  4105. {
  4106. front: {
  4107. height: math.unit(5 + 8 / 12, "feet"),
  4108. weight: math.unit(140, "lb"),
  4109. name: "Front",
  4110. image: {
  4111. source: "./media/characters/piper/front.svg",
  4112. extra: 3928 / 3681
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Micro",
  4119. height: math.unit(2, "inches")
  4120. },
  4121. {
  4122. name: "Normal",
  4123. height: math.unit(5 + 8 / 12, "feet")
  4124. },
  4125. {
  4126. name: "Macro",
  4127. height: math.unit(250, "feet"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Megamacro",
  4132. height: math.unit(7, "miles")
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Gemini" },
  4138. {
  4139. front: {
  4140. height: math.unit(6, "feet"),
  4141. weight: math.unit(220, "lb"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/gemini/front.svg"
  4145. }
  4146. },
  4147. back: {
  4148. height: math.unit(6, "feet"),
  4149. weight: math.unit(220, "lb"),
  4150. name: "Back",
  4151. image: {
  4152. source: "./media/characters/gemini/back.svg"
  4153. }
  4154. },
  4155. kneeling: {
  4156. height: math.unit(6 / 1.5, "feet"),
  4157. weight: math.unit(220, "lb"),
  4158. name: "Kneeling",
  4159. image: {
  4160. source: "./media/characters/gemini/kneeling.svg",
  4161. bottom: 0.02
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(300, "meters"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Megamacro",
  4173. height: math.unit(6900, "meters")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Alicia" },
  4179. {
  4180. anthro: {
  4181. height: math.unit(2.35, "meters"),
  4182. weight: math.unit(73, "kg"),
  4183. name: "Anthro",
  4184. image: {
  4185. source: "./media/characters/alicia/anthro.svg"
  4186. }
  4187. },
  4188. feral: {
  4189. height: math.unit(1.69, "meters"),
  4190. weight: math.unit(73, "kg"),
  4191. name: "Feral",
  4192. image: {
  4193. source: "./media/characters/alicia/feral.svg"
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Normal",
  4200. height: math.unit(2.35, "meters")
  4201. },
  4202. {
  4203. name: "Macro",
  4204. height: math.unit(60, "meters"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Megamacro",
  4209. height: math.unit(10000, "kilometers")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Archy" },
  4215. {
  4216. front: {
  4217. height: math.unit(7, "feet"),
  4218. weight: math.unit(250, "lbs"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/archy/front.svg"
  4222. }
  4223. }
  4224. },
  4225. [
  4226. {
  4227. name: "Micro",
  4228. height: math.unit(1, "inch")
  4229. },
  4230. {
  4231. name: "Shorty",
  4232. height: math.unit(5, "feet")
  4233. },
  4234. {
  4235. name: "Normal",
  4236. height: math.unit(7, "feet")
  4237. },
  4238. {
  4239. name: "Macro",
  4240. height: math.unit(600, "meters"),
  4241. default: true
  4242. },
  4243. {
  4244. name: "Megamacro",
  4245. height: math.unit(1, "mile")
  4246. },
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "Berri" },
  4251. {
  4252. front: {
  4253. height: math.unit(1.65, "meters"),
  4254. weight: math.unit(74, "kg"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/berri/front.svg"
  4258. }
  4259. }
  4260. },
  4261. [
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(1.65, "meters")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(60, "m"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Megamacro",
  4273. height: math.unit(9.213, "km")
  4274. },
  4275. {
  4276. name: "Planet Eater",
  4277. height: math.unit(489, "megameters")
  4278. },
  4279. {
  4280. name: "Teramacro",
  4281. height: math.unit(2471635000000, "meters")
  4282. },
  4283. {
  4284. name: "Examacro",
  4285. height: math.unit(8.0624e+26, "meters")
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Lexi" },
  4291. {
  4292. front: {
  4293. height: math.unit(1.72, "meters"),
  4294. weight: math.unit(68, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/lexi/front.svg"
  4298. }
  4299. }
  4300. },
  4301. [
  4302. {
  4303. name: "Very Smol",
  4304. height: math.unit(10, "mm")
  4305. },
  4306. {
  4307. name: "Micro",
  4308. height: math.unit(6.8, "cm"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Normal",
  4313. height: math.unit(1.72, "m")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Martin" },
  4319. {
  4320. front: {
  4321. height: math.unit(1.69, "meters"),
  4322. weight: math.unit(68, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/martin/front.svg",
  4326. extra: 596 / 581
  4327. }
  4328. }
  4329. },
  4330. [
  4331. {
  4332. name: "Micro",
  4333. height: math.unit(6.85, "cm"),
  4334. default: true
  4335. },
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(1.69, "m")
  4339. }
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "Juno" },
  4344. {
  4345. front: {
  4346. height: math.unit(1.69, "meters"),
  4347. weight: math.unit(68, "kg"),
  4348. name: "Front",
  4349. image: {
  4350. source: "./media/characters/juno/front.svg"
  4351. }
  4352. }
  4353. },
  4354. [
  4355. {
  4356. name: "Micro",
  4357. height: math.unit(7, "cm")
  4358. },
  4359. {
  4360. name: "Normal",
  4361. height: math.unit(1.89, "m")
  4362. },
  4363. {
  4364. name: "Macro",
  4365. height: math.unit(353, "meters"),
  4366. default: true
  4367. }
  4368. ]
  4369. ))
  4370. characterMakers.push(() => makeCharacter(
  4371. { name: "Samantha" },
  4372. {
  4373. front: {
  4374. height: math.unit(1.93, "meters"),
  4375. weight: math.unit(83, "kg"),
  4376. name: "Front",
  4377. image: {
  4378. source: "./media/characters/samantha/front.svg"
  4379. }
  4380. },
  4381. frontClothed: {
  4382. height: math.unit(1.93, "meters"),
  4383. weight: math.unit(83, "kg"),
  4384. name: "Front (Clothed)",
  4385. image: {
  4386. source: "./media/characters/samantha/front-clothed.svg"
  4387. }
  4388. },
  4389. back: {
  4390. height: math.unit(1.93, "meters"),
  4391. weight: math.unit(83, "kg"),
  4392. name: "Back",
  4393. image: {
  4394. source: "./media/characters/samantha/back.svg"
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(1.93, "m")
  4402. },
  4403. {
  4404. name: "Macro",
  4405. height: math.unit(74, "meters"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Macro+",
  4410. height: math.unit(223, "meters"),
  4411. },
  4412. {
  4413. name: "Megamacro",
  4414. height: math.unit(8381, "meters"),
  4415. },
  4416. {
  4417. name: "Megamacro+",
  4418. height: math.unit(12000, "kilometers")
  4419. },
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Dr. Clay" },
  4424. {
  4425. front: {
  4426. height: math.unit(1.92, "meters"),
  4427. weight: math.unit(80, "kg"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/dr-clay/front.svg"
  4431. }
  4432. },
  4433. frontClothed: {
  4434. height: math.unit(1.92, "meters"),
  4435. weight: math.unit(80, "kg"),
  4436. name: "Front (Clothed)",
  4437. image: {
  4438. source: "./media/characters/dr-clay/front-clothed.svg"
  4439. }
  4440. }
  4441. },
  4442. [
  4443. {
  4444. name: "Normal",
  4445. height: math.unit(1.92, "m")
  4446. },
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(214, "meters"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Macro+",
  4454. height: math.unit(12.237, "meters"),
  4455. },
  4456. {
  4457. name: "Megamacro",
  4458. height: math.unit(557, "megameters"),
  4459. },
  4460. {
  4461. name: "Unimaginable",
  4462. height: math.unit(120e9, "lightyears")
  4463. },
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Wyvrn Ripsnarl" },
  4468. {
  4469. front: {
  4470. height: math.unit(2, "meters"),
  4471. weight: math.unit(80, "kg"),
  4472. name: "Front",
  4473. image: {
  4474. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4475. }
  4476. }
  4477. },
  4478. [
  4479. {
  4480. name: "Teramacro",
  4481. height: math.unit(500000, "lightyears"),
  4482. default: true
  4483. },
  4484. ]
  4485. ))
  4486. characterMakers.push(() => makeCharacter(
  4487. { name: "Vemus" },
  4488. {
  4489. front: {
  4490. height: math.unit(2, "meters"),
  4491. weight: math.unit(150, "kg"),
  4492. name: "Front",
  4493. image: {
  4494. source: "./media/characters/vemus/front.svg",
  4495. extra: 2384 / 2084,
  4496. bottom: 0.0123
  4497. }
  4498. }
  4499. },
  4500. [
  4501. {
  4502. name: "Normal",
  4503. height: math.unit(3.75, "meters"),
  4504. default: true
  4505. },
  4506. {
  4507. name: "Big",
  4508. height: math.unit(8, "meters")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(100, "meters")
  4513. },
  4514. {
  4515. name: "Macro+",
  4516. height: math.unit(1500, "meters")
  4517. },
  4518. {
  4519. name: "Stellar",
  4520. height: math.unit(14e8, "meters")
  4521. },
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Beherit" },
  4526. {
  4527. front: {
  4528. height: math.unit(2, "meters"),
  4529. weight: math.unit(70, "kg"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/beherit/front.svg",
  4533. extra: 1408 / 1242
  4534. }
  4535. }
  4536. },
  4537. [
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(6, "feet")
  4541. },
  4542. {
  4543. name: "Lorg",
  4544. height: math.unit(25, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Lorger",
  4549. height: math.unit(75, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(200, "meters")
  4554. },
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Everett" },
  4559. {
  4560. front: {
  4561. height: math.unit(2, "meters"),
  4562. weight: math.unit(150, "kg"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/everett/front.svg",
  4566. extra: 2038 / 1737,
  4567. bottom: 0.03
  4568. }
  4569. },
  4570. paw: {
  4571. height: math.unit(2 / 3.6, "meters"),
  4572. name: "Paw",
  4573. image: {
  4574. source: "./media/characters/everett/paw.svg"
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "Normal",
  4581. height: math.unit(15, "feet"),
  4582. default: true
  4583. },
  4584. {
  4585. name: "Lorg",
  4586. height: math.unit(70, "feet"),
  4587. default: true
  4588. },
  4589. {
  4590. name: "Lorger",
  4591. height: math.unit(250, "feet")
  4592. },
  4593. {
  4594. name: "Macro",
  4595. height: math.unit(500, "meters")
  4596. },
  4597. ]
  4598. ))
  4599. characterMakers.push(() => makeCharacter(
  4600. { name: "Rose Lion" },
  4601. {
  4602. front: {
  4603. height: math.unit(2, "meters"),
  4604. weight: math.unit(86, "kg"),
  4605. name: "Front",
  4606. image: {
  4607. source: "./media/characters/rose-lion/front.svg"
  4608. }
  4609. },
  4610. bent: {
  4611. height: math.unit(2 / 1.4288, "meters"),
  4612. weight: math.unit(86, "kg"),
  4613. name: "Bent",
  4614. image: {
  4615. source: "./media/characters/rose-lion/bent.svg"
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Mini-Micro",
  4622. height: math.unit(1, "cm")
  4623. },
  4624. {
  4625. name: "Micro",
  4626. height: math.unit(3.5, "inches"),
  4627. default: true
  4628. },
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(6 + 1 / 6, "feet")
  4632. },
  4633. {
  4634. name: "Mini-Macro",
  4635. height: math.unit(9 + 10 / 12, "feet")
  4636. },
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Regal" },
  4641. {
  4642. front: {
  4643. height: math.unit(2, "meters"),
  4644. weight: math.unit(350, "lbs"),
  4645. name: "Front",
  4646. image: {
  4647. source: "./media/characters/regal/front.svg"
  4648. }
  4649. },
  4650. back: {
  4651. height: math.unit(2, "meters"),
  4652. weight: math.unit(350, "lbs"),
  4653. name: "Back",
  4654. image: {
  4655. source: "./media/characters/regal/back.svg"
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Macro",
  4662. height: math.unit(350, "feet"),
  4663. default: true
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Opal" },
  4669. {
  4670. front: {
  4671. height: math.unit(4 + 11 / 12, "feet"),
  4672. weight: math.unit(100, "lbs"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/opal/front.svg"
  4676. }
  4677. },
  4678. frontAlt: {
  4679. height: math.unit(4 + 11 / 12, "feet"),
  4680. weight: math.unit(100, "lbs"),
  4681. name: "Front (Alt)",
  4682. image: {
  4683. source: "./media/characters/opal/front-alt.svg"
  4684. }
  4685. },
  4686. },
  4687. [
  4688. {
  4689. name: "Small",
  4690. height: math.unit(4 + 11 / 12, "feet")
  4691. },
  4692. {
  4693. name: "Normal",
  4694. height: math.unit(20, "feet"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Macro",
  4699. height: math.unit(120, "feet")
  4700. },
  4701. {
  4702. name: "Megamacro",
  4703. height: math.unit(80, "miles")
  4704. },
  4705. {
  4706. name: "True Size",
  4707. height: math.unit(100000, "lightyears")
  4708. },
  4709. ]
  4710. ))
  4711. characterMakers.push(() => makeCharacter(
  4712. { name: "Vector Wuff" },
  4713. {
  4714. front: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(200, "lbs"),
  4717. name: "Front",
  4718. image: {
  4719. source: "./media/characters/vector-wuff/front.svg"
  4720. }
  4721. }
  4722. },
  4723. [
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(2.8, "meters")
  4727. },
  4728. {
  4729. name: "Macro",
  4730. height: math.unit(450, "meters"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Megamacro",
  4735. height: math.unit(15, "kilometers")
  4736. }
  4737. ]
  4738. ))
  4739. characterMakers.push(() => makeCharacter(
  4740. { name: "Dannik" },
  4741. {
  4742. front: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(256, "lbs"),
  4745. name: "Front",
  4746. image: {
  4747. source: "./media/characters/dannik/front.svg"
  4748. }
  4749. }
  4750. },
  4751. [
  4752. {
  4753. name: "Macro",
  4754. height: math.unit(69.57, "meters"),
  4755. default: true
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Azura Saharah" },
  4761. {
  4762. front: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(120, "lbs"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/azura-saharah/front.svg"
  4768. }
  4769. },
  4770. back: {
  4771. height: math.unit(6, "feet"),
  4772. weight: math.unit(120, "lbs"),
  4773. name: "Back",
  4774. image: {
  4775. source: "./media/characters/azura-saharah/back.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Macro",
  4782. height: math.unit(100, "feet"),
  4783. default: true
  4784. },
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Kennedy" },
  4789. {
  4790. side: {
  4791. height: math.unit(5 + 4 / 12, "feet"),
  4792. weight: math.unit(163, "lbs"),
  4793. name: "Side",
  4794. image: {
  4795. source: "./media/characters/kennedy/side.svg"
  4796. }
  4797. }
  4798. },
  4799. [
  4800. {
  4801. name: "Standard Doggo",
  4802. height: math.unit(5 + 4 / 12, "feet")
  4803. },
  4804. {
  4805. name: "Big Doggo",
  4806. height: math.unit(25 + 3 / 12, "feet"),
  4807. default: true
  4808. },
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Odi Lunar" },
  4813. {
  4814. front: {
  4815. height: math.unit(6, "feet"),
  4816. weight: math.unit(90, "lbs"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/odi-lunar/front.svg"
  4820. }
  4821. }
  4822. },
  4823. [
  4824. {
  4825. name: "Micro",
  4826. height: math.unit(3, "inches"),
  4827. default: true
  4828. },
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(5.5, "feet")
  4832. }
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Mandake" },
  4837. {
  4838. back: {
  4839. height: math.unit(6, "feet"),
  4840. weight: math.unit(220, "lbs"),
  4841. name: "Back",
  4842. image: {
  4843. source: "./media/characters/mandake/back.svg"
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(7, "feet"),
  4851. default: true
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(78, "feet")
  4856. },
  4857. {
  4858. name: "Macro+",
  4859. height: math.unit(300, "meters")
  4860. },
  4861. {
  4862. name: "Macro++",
  4863. height: math.unit(2400, "feet")
  4864. },
  4865. {
  4866. name: "Megamacro",
  4867. height: math.unit(5167, "meters")
  4868. },
  4869. {
  4870. name: "Gigamacro",
  4871. height: math.unit(41769, "miles")
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Yozey" },
  4877. {
  4878. front: {
  4879. height: math.unit(6, "feet"),
  4880. weight: math.unit(120, "lbs"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/yozey/front.svg"
  4884. }
  4885. },
  4886. frontAlt: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(120, "lbs"),
  4889. name: "Front (Alt)",
  4890. image: {
  4891. source: "./media/characters/yozey/front-alt.svg"
  4892. }
  4893. },
  4894. side: {
  4895. height: math.unit(6, "feet"),
  4896. weight: math.unit(120, "lbs"),
  4897. name: "Side",
  4898. image: {
  4899. source: "./media/characters/yozey/side.svg"
  4900. }
  4901. },
  4902. },
  4903. [
  4904. {
  4905. name: "Micro",
  4906. height: math.unit(3, "inches"),
  4907. default: true
  4908. },
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(6, "feet")
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Valeska Voss" },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(103, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/valeska-voss/front.svg"
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Mini-Sized Sub",
  4930. height: math.unit(3.1, "inches")
  4931. },
  4932. {
  4933. name: "Mid-Sized Sub",
  4934. height: math.unit(6.2, "inches")
  4935. },
  4936. {
  4937. name: "Full-Sized Sub",
  4938. height: math.unit(9.3, "inches")
  4939. },
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(5 + 2 / 12, "foot"),
  4943. default: true
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Gene Zeta" },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(160, "lbs"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/gene-zeta/front.svg",
  4956. bottom: 0.03,
  4957. extra: 1
  4958. }
  4959. }
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(6.25, "foot"),
  4965. default: true
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Razinox" },
  4971. {
  4972. front: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(350, "lbs"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/razinox/front.svg",
  4978. extra: 1686 / 1548,
  4979. bottom: 28.2/1868
  4980. }
  4981. },
  4982. back: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(350, "lbs"),
  4985. name: "Back",
  4986. image: {
  4987. source: "./media/characters/razinox/back.svg",
  4988. extra: 1660 / 1590,
  4989. bottom: 15/1665
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(10 + 8 / 12, "foot")
  4997. },
  4998. {
  4999. name: "Minimacro",
  5000. height: math.unit(15, "foot")
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(60, "foot"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Megamacro",
  5009. height: math.unit(5, "miles")
  5010. },
  5011. {
  5012. name: "Gigamacro",
  5013. height: math.unit(6000, "miles")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Cobalt" },
  5019. {
  5020. front: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(150, "lbs"),
  5023. name: "Front",
  5024. image: {
  5025. source: "./media/characters/cobalt/front.svg"
  5026. }
  5027. }
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(8 + 1 / 12, "foot")
  5033. },
  5034. {
  5035. name: "Macro",
  5036. height: math.unit(111, "foot"),
  5037. default: true
  5038. },
  5039. {
  5040. name: "Supracosmic",
  5041. height: math.unit(1e42, "feet")
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Amanda" },
  5047. {
  5048. front: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(140, "lbs"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/amanda/front.svg"
  5054. }
  5055. }
  5056. },
  5057. [
  5058. {
  5059. name: "Micro",
  5060. height: math.unit(5, "inches"),
  5061. default: true
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Teal" },
  5067. {
  5068. front: {
  5069. height: math.unit(5.59, "feet"),
  5070. weight: math.unit(250, "lbs"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/teal/front.svg"
  5074. }
  5075. },
  5076. frontAlt: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(250, "lbs"),
  5079. name: "Front (Alt)",
  5080. image: {
  5081. source: "./media/characters/teal/front-alt.svg",
  5082. bottom: 0.04,
  5083. extra: 1
  5084. }
  5085. },
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(12, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Macro",
  5095. height: math.unit(300, "feet")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Ravin Amulet" },
  5101. {
  5102. frontCat: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(180, "lbs"),
  5105. name: "Front (Cat)",
  5106. image: {
  5107. source: "./media/characters/ravin-amulet/front-cat.svg"
  5108. }
  5109. },
  5110. frontCatAlt: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(180, "lbs"),
  5113. name: "Front (Alt, Cat)",
  5114. image: {
  5115. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5116. }
  5117. },
  5118. frontWerewolf: {
  5119. height: math.unit(6 * 1.2, "feet"),
  5120. weight: math.unit(225, "lbs"),
  5121. name: "Front (Werewolf)",
  5122. image: {
  5123. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5124. }
  5125. },
  5126. backWerewolf: {
  5127. height: math.unit(6 * 1.2, "feet"),
  5128. weight: math.unit(225, "lbs"),
  5129. name: "Back (Werewolf)",
  5130. image: {
  5131. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Nano",
  5138. height: math.unit(1, "micrometer")
  5139. },
  5140. {
  5141. name: "Micro",
  5142. height: math.unit(1, "inch")
  5143. },
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(6, "feet"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro",
  5151. height: math.unit(60, "feet")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Fluoresce" },
  5157. {
  5158. front: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(165, "lbs"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/fluoresce/front.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Micro",
  5170. height: math.unit(6, "cm")
  5171. },
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(5 + 7 / 12, "feet"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Macro",
  5179. height: math.unit(56, "feet")
  5180. },
  5181. {
  5182. name: "Megamacro",
  5183. height: math.unit(1.9, "miles")
  5184. },
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Aurora" },
  5189. {
  5190. front: {
  5191. height: math.unit(9 + 6 / 12, "feet"),
  5192. weight: math.unit(523, "lbs"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/aurora/side.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(9 + 6 / 12, "feet")
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(96, "feet"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Macro+",
  5211. height: math.unit(243, "feet")
  5212. },
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Ranek" },
  5217. {
  5218. front: {
  5219. height: math.unit(194, "cm"),
  5220. weight: math.unit(90, "kg"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/ranek/front.svg"
  5224. }
  5225. },
  5226. side: {
  5227. height: math.unit(194, "cm"),
  5228. weight: math.unit(90, "kg"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/ranek/side.svg"
  5232. }
  5233. },
  5234. back: {
  5235. height: math.unit(194, "cm"),
  5236. weight: math.unit(90, "kg"),
  5237. name: "Back",
  5238. image: {
  5239. source: "./media/characters/ranek/back.svg"
  5240. }
  5241. },
  5242. feral: {
  5243. height: math.unit(30, "cm"),
  5244. weight: math.unit(1.6, "lbs"),
  5245. name: "Feral",
  5246. image: {
  5247. source: "./media/characters/ranek/feral.svg"
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(194, "cm"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(100, "meters")
  5260. },
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Andrew Cooper" },
  5265. {
  5266. front: {
  5267. height: math.unit(5 + 6 / 12, "feet"),
  5268. weight: math.unit(153, "lbs"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/andrew-cooper/front.svg"
  5272. }
  5273. },
  5274. },
  5275. [
  5276. {
  5277. name: "Nano",
  5278. height: math.unit(1, "mm")
  5279. },
  5280. {
  5281. name: "Micro",
  5282. height: math.unit(2, "inches")
  5283. },
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(5 + 6 / 12, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Akane Sato" },
  5293. {
  5294. front: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(180, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/akane-sato/front.svg",
  5300. extra: 1219 / 1140
  5301. }
  5302. },
  5303. back: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(180, "lbs"),
  5306. name: "Back",
  5307. image: {
  5308. source: "./media/characters/akane-sato/back.svg",
  5309. extra: 1219 / 1170
  5310. }
  5311. },
  5312. },
  5313. [
  5314. {
  5315. name: "Normal",
  5316. height: math.unit(2.5, "meters")
  5317. },
  5318. {
  5319. name: "Macro",
  5320. height: math.unit(250, "meters"),
  5321. default: true
  5322. },
  5323. {
  5324. name: "Megamacro",
  5325. height: math.unit(25, "km")
  5326. },
  5327. ]
  5328. ))
  5329. characterMakers.push(() => makeCharacter(
  5330. { name: "Rook" },
  5331. {
  5332. front: {
  5333. height: math.unit(6, "feet"),
  5334. weight: math.unit(65, "kg"),
  5335. name: "Front",
  5336. image: {
  5337. source: "./media/characters/rook/front.svg",
  5338. extra: 960/950
  5339. }
  5340. }
  5341. },
  5342. [
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(8.8, "feet")
  5346. },
  5347. {
  5348. name: "Macro",
  5349. height: math.unit(88, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Megamacro",
  5354. height: math.unit(8, "miles")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Prodigy" },
  5360. {
  5361. front: {
  5362. height: math.unit(12 + 2 / 12, "feet"),
  5363. weight: math.unit(808, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/prodigy/front.svg"
  5367. }
  5368. }
  5369. },
  5370. [
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(12 + 2 / 12, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(143, "feet")
  5379. },
  5380. {
  5381. name: "Macro+",
  5382. height: math.unit(400, "feet")
  5383. },
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Daniel" },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(225, "lbs"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/daniel/front.svg"
  5395. }
  5396. },
  5397. leaning: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(225, "lbs"),
  5400. name: "Leaning",
  5401. image: {
  5402. source: "./media/characters/daniel/leaning.svg"
  5403. }
  5404. },
  5405. },
  5406. [
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(1000, "feet"),
  5410. default: true
  5411. },
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Chiros" },
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(88, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/chiros/front.svg",
  5423. extra: 306 / 226
  5424. }
  5425. },
  5426. side: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(88, "lbs"),
  5429. name: "Side",
  5430. image: {
  5431. source: "./media/characters/chiros/side.svg",
  5432. extra: 306 / 226
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(6, "cm"),
  5440. default: true
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Selka" },
  5446. {
  5447. front: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(100, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/selka/front.svg",
  5453. extra: 947 / 887
  5454. }
  5455. }
  5456. },
  5457. [
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(5, "cm"),
  5461. default: true
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Verin" },
  5467. {
  5468. front: {
  5469. height: math.unit(8 + 3 / 12, "feet"),
  5470. weight: math.unit(424, "lbs"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/verin/front.svg",
  5474. extra: 1845 / 1550
  5475. }
  5476. },
  5477. frontArmored: {
  5478. height: math.unit(8 + 3 / 12, "feet"),
  5479. weight: math.unit(424, "lbs"),
  5480. name: "Front (Armored)",
  5481. image: {
  5482. source: "./media/characters/verin/front-armor.svg",
  5483. extra: 1845 / 1550,
  5484. bottom: 0.01
  5485. }
  5486. },
  5487. back: {
  5488. height: math.unit(8 + 3 / 12, "feet"),
  5489. weight: math.unit(424, "lbs"),
  5490. name: "Back",
  5491. image: {
  5492. source: "./media/characters/verin/back.svg",
  5493. bottom: 0.1,
  5494. extra: 1
  5495. }
  5496. },
  5497. foot: {
  5498. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5499. name: "Foot",
  5500. image: {
  5501. source: "./media/characters/verin/foot.svg"
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(8 + 3 / 12, "feet")
  5509. },
  5510. {
  5511. name: "Minimacro",
  5512. height: math.unit(21, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Macro",
  5517. height: math.unit(626, "feet")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Sovrim Terraquian" },
  5523. {
  5524. front: {
  5525. height: math.unit(2.718, "meters"),
  5526. weight: math.unit(150, "lbs"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/sovrim-terraquian/front.svg"
  5530. }
  5531. },
  5532. back: {
  5533. height: math.unit(2.718, "meters"),
  5534. weight: math.unit(150, "lbs"),
  5535. name: "Back",
  5536. image: {
  5537. source: "./media/characters/sovrim-terraquian/back.svg"
  5538. }
  5539. }
  5540. },
  5541. [
  5542. {
  5543. name: "Micro",
  5544. height: math.unit(2, "inches")
  5545. },
  5546. {
  5547. name: "Small",
  5548. height: math.unit(1, "meter")
  5549. },
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(Math.E, "meters"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(20, "meters")
  5558. },
  5559. {
  5560. name: "Macro+",
  5561. height: math.unit(400, "meters")
  5562. },
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Reece Silvermane" },
  5567. {
  5568. front: {
  5569. height: math.unit(7, "feet"),
  5570. weight: math.unit(489, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/reece-silvermane/front.svg",
  5574. bottom: 0.02,
  5575. extra: 1
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Macro",
  5582. height: math.unit(1.5, "miles"),
  5583. default: true
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Kane" },
  5589. {
  5590. front: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(78, "kg"),
  5593. name: "Front",
  5594. image: {
  5595. source: "./media/characters/kane/front.svg",
  5596. extra: 978 / 899
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(2.1, "m"),
  5604. },
  5605. {
  5606. name: "Macro",
  5607. height: math.unit(1, "km"),
  5608. default: true
  5609. },
  5610. ]
  5611. ))
  5612. characterMakers.push(() => makeCharacter(
  5613. { name: "Tegon" },
  5614. {
  5615. front: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(200, "kg"),
  5618. name: "Front",
  5619. image: {
  5620. source: "./media/characters/tegon/front.svg",
  5621. bottom: 0.01,
  5622. extra: 1
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Micro",
  5629. height: math.unit(1, "inch")
  5630. },
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(6 + 3 / 12, "feet"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "Macro",
  5638. height: math.unit(300, "feet")
  5639. },
  5640. {
  5641. name: "Megamacro",
  5642. height: math.unit(69, "miles")
  5643. },
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Arcturax" },
  5648. {
  5649. side: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(2304, "lbs"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/arcturax/side.svg",
  5655. extra: 790 / 376,
  5656. bottom: 0.01
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Micro",
  5663. height: math.unit(2, "inch")
  5664. },
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(6, "feet")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(39, "feet"),
  5672. default: true
  5673. },
  5674. {
  5675. name: "Megamacro",
  5676. height: math.unit(7, "miles")
  5677. },
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Sentri" },
  5682. {
  5683. front: {
  5684. height: math.unit(6, "feet"),
  5685. weight: math.unit(50, "lbs"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/sentri/front.svg",
  5689. extra: 1750 / 1570,
  5690. bottom: 0.025
  5691. }
  5692. },
  5693. frontAlt: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(50, "lbs"),
  5696. name: "Front (Alt)",
  5697. image: {
  5698. source: "./media/characters/sentri/front-alt.svg",
  5699. extra: 1750 / 1570,
  5700. bottom: 0.025
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(15, "feet"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(2500, "feet")
  5713. }
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Corvin" },
  5718. {
  5719. front: {
  5720. height: math.unit(5 + 8 / 12, "feet"),
  5721. weight: math.unit(130, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/corvin/front.svg",
  5725. extra: 1803 / 1629
  5726. }
  5727. },
  5728. frontShirt: {
  5729. height: math.unit(5 + 8 / 12, "feet"),
  5730. weight: math.unit(130, "lbs"),
  5731. name: "Front (Shirt)",
  5732. image: {
  5733. source: "./media/characters/corvin/front-shirt.svg",
  5734. extra: 1803 / 1629
  5735. }
  5736. },
  5737. frontPoncho: {
  5738. height: math.unit(5 + 8 / 12, "feet"),
  5739. weight: math.unit(130, "lbs"),
  5740. name: "Front (Poncho)",
  5741. image: {
  5742. source: "./media/characters/corvin/front-poncho.svg",
  5743. extra: 1803 / 1629
  5744. }
  5745. },
  5746. side: {
  5747. height: math.unit(5 + 8 / 12, "feet"),
  5748. weight: math.unit(130, "lbs"),
  5749. name: "Side",
  5750. image: {
  5751. source: "./media/characters/corvin/side.svg",
  5752. extra: 1012 / 945
  5753. }
  5754. },
  5755. back: {
  5756. height: math.unit(5 + 8 / 12, "feet"),
  5757. weight: math.unit(130, "lbs"),
  5758. name: "Back",
  5759. image: {
  5760. source: "./media/characters/corvin/back.svg",
  5761. extra: 1803 / 1629
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Micro",
  5768. height: math.unit(3, "inches")
  5769. },
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(5 + 8 / 12, "feet")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(300, "feet"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Megamacro",
  5781. height: math.unit(500, "miles")
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Q" },
  5787. {
  5788. front: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(135, "lbs"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/q/front.svg",
  5794. extra: 854 / 752,
  5795. bottom: 0.005
  5796. }
  5797. },
  5798. back: {
  5799. height: math.unit(6, "feet"),
  5800. weight: math.unit(130, "lbs"),
  5801. name: "Back",
  5802. image: {
  5803. source: "./media/characters/q/back.svg",
  5804. extra: 854 / 752
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Macro",
  5811. height: math.unit(90, "feet"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Extra Macro",
  5816. height: math.unit(300, "feet"),
  5817. },
  5818. {
  5819. name: "BIG WALF",
  5820. height: math.unit(750, "feet"),
  5821. },
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Carley" },
  5826. {
  5827. front: {
  5828. height: math.unit(6, "feet"),
  5829. weight: math.unit(150, "lbs"),
  5830. name: "Front",
  5831. image: {
  5832. source: "./media/characters/carley/front.svg",
  5833. extra: 3927 / 3540,
  5834. bottom: 0.03
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(6 + 3 / 12, "feet")
  5842. },
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(185, "feet"),
  5846. default: true
  5847. },
  5848. {
  5849. name: "Megamacro",
  5850. height: math.unit(8, "miles"),
  5851. },
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Citrine" },
  5856. {
  5857. front: {
  5858. height: math.unit(3, "feet"),
  5859. weight: math.unit(28, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/citrine/front.svg"
  5863. }
  5864. }
  5865. },
  5866. [
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(3, "feet"),
  5870. default: true
  5871. }
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Aura Starwind" },
  5876. {
  5877. front: {
  5878. height: math.unit(14, "feet"),
  5879. weight: math.unit(1450, "kg"),
  5880. capacity: math.unit(15, "people"),
  5881. name: "Front",
  5882. image: {
  5883. source: "./media/characters/aura-starwind/front.svg",
  5884. extra: 1455 / 1335
  5885. }
  5886. },
  5887. side: {
  5888. height: math.unit(14, "feet"),
  5889. weight: math.unit(1450, "kg"),
  5890. capacity: math.unit(15, "people"),
  5891. name: "Side",
  5892. image: {
  5893. source: "./media/characters/aura-starwind/side.svg",
  5894. extra: 1654 / 1497
  5895. }
  5896. },
  5897. taur: {
  5898. height: math.unit(18, "feet"),
  5899. weight: math.unit(5500, "kg"),
  5900. capacity: math.unit(50, "people"),
  5901. name: "Taur",
  5902. image: {
  5903. source: "./media/characters/aura-starwind/taur.svg",
  5904. extra: 1760 / 1650
  5905. }
  5906. },
  5907. feral: {
  5908. height: math.unit(46, "feet"),
  5909. weight: math.unit(25000, "kg"),
  5910. capacity: math.unit(120, "people"),
  5911. name: "Feral",
  5912. image: {
  5913. source: "./media/characters/aura-starwind/feral.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Normal",
  5920. height: math.unit(14, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Macro",
  5925. height: math.unit(50, "meters")
  5926. },
  5927. {
  5928. name: "Megamacro",
  5929. height: math.unit(5000, "meters")
  5930. },
  5931. {
  5932. name: "Gigamacro",
  5933. height: math.unit(100000, "kilometers")
  5934. },
  5935. ]
  5936. ))
  5937. characterMakers.push(() => makeCharacter(
  5938. { name: "Rivet" },
  5939. {
  5940. front: {
  5941. height: math.unit(2 + 7 / 12, "feet"),
  5942. weight: math.unit(32, "lbs"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/rivet/front.svg",
  5946. extra: 1716 / 1658,
  5947. bottom: 0.03
  5948. }
  5949. },
  5950. foot: {
  5951. height: math.unit(0.551, "feet"),
  5952. name: "Rivet's Foot",
  5953. image: {
  5954. source: "./media/characters/rivet/foot.svg"
  5955. },
  5956. rename: true
  5957. }
  5958. },
  5959. [
  5960. {
  5961. name: "Micro",
  5962. height: math.unit(1.5, "inches"),
  5963. },
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(2 + 7 / 12, "feet"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Macro",
  5971. height: math.unit(85, "feet")
  5972. },
  5973. {
  5974. name: "Megamacro",
  5975. height: math.unit(2.2, "km")
  5976. }
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Coffee" },
  5981. {
  5982. front: {
  5983. height: math.unit(5 + 9 / 12, "feet"),
  5984. weight: math.unit(150, "lbs"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/coffee/front.svg",
  5988. extra: 3666 / 3032,
  5989. bottom: 0.04
  5990. }
  5991. },
  5992. foot: {
  5993. height: math.unit(1.29, "feet"),
  5994. name: "Foot",
  5995. image: {
  5996. source: "./media/characters/coffee/foot.svg"
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Micro",
  6003. height: math.unit(2, "inches"),
  6004. },
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(5 + 9 / 12, "feet"),
  6008. default: true
  6009. },
  6010. {
  6011. name: "Macro",
  6012. height: math.unit(800, "feet")
  6013. },
  6014. {
  6015. name: "Megamacro",
  6016. height: math.unit(25, "miles")
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Chari-Gal" },
  6022. {
  6023. front: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(200, "lbs"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/chari-gal/front.svg",
  6029. extra: 1568 / 1385,
  6030. bottom: 0.047
  6031. }
  6032. },
  6033. gigantamax: {
  6034. height: math.unit(6 * 16, "feet"),
  6035. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6036. name: "Gigantamax",
  6037. image: {
  6038. source: "./media/characters/chari-gal/gigantamax.svg",
  6039. extra: 1124 / 888,
  6040. bottom: 0.03
  6041. }
  6042. },
  6043. },
  6044. [
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(5 + 7 / 12, "feet")
  6048. },
  6049. {
  6050. name: "Macro",
  6051. height: math.unit(200, "feet"),
  6052. default: true
  6053. }
  6054. ]
  6055. ))
  6056. characterMakers.push(() => makeCharacter(
  6057. { name: "Nova" },
  6058. {
  6059. front: {
  6060. height: math.unit(6, "feet"),
  6061. weight: math.unit(150, "lbs"),
  6062. name: "Front",
  6063. image: {
  6064. source: "./media/characters/nova/front.svg",
  6065. extra: 5000 / 4722,
  6066. bottom: 0.02
  6067. }
  6068. }
  6069. },
  6070. [
  6071. {
  6072. name: "Micro-",
  6073. height: math.unit(0.8, "inches")
  6074. },
  6075. {
  6076. name: "Micro",
  6077. height: math.unit(2, "inches"),
  6078. default: true
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Argent" },
  6084. {
  6085. front: {
  6086. height: math.unit(3 + 1 / 12, "feet"),
  6087. weight: math.unit(21.7, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/argent/front.svg",
  6091. extra: 1565 / 1416,
  6092. bottom: 0.01
  6093. }
  6094. }
  6095. },
  6096. [
  6097. {
  6098. name: "Micro",
  6099. height: math.unit(2, "inches")
  6100. },
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(3 + 1 / 12, "feet"),
  6104. default: true
  6105. },
  6106. {
  6107. name: "Macro",
  6108. height: math.unit(120, "feet")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Mira al-Cul" },
  6114. {
  6115. lamp: {
  6116. height: math.unit(7 * 1559 / 989, "feet"),
  6117. name: "Magic Lamp",
  6118. image: {
  6119. source: "./media/characters/mira-al-cul/lamp.svg",
  6120. extra: 1617 / 1559
  6121. }
  6122. },
  6123. front: {
  6124. height: math.unit(7, "feet"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/mira-al-cul/front.svg",
  6128. extra: 1044 / 990
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Heavily Restricted",
  6135. height: math.unit(7 * 1559 / 989, "feet")
  6136. },
  6137. {
  6138. name: "Freshly Freed",
  6139. height: math.unit(50 * 1559 / 989, "feet")
  6140. },
  6141. {
  6142. name: "World Encompassing",
  6143. height: math.unit(10000 * 1559 / 989, "miles")
  6144. },
  6145. {
  6146. name: "Galactic",
  6147. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6148. },
  6149. {
  6150. name: "Palmed Universe",
  6151. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Multiversal Matriarch",
  6156. height: math.unit(8.87e10, "yottameters")
  6157. },
  6158. {
  6159. name: "Void Mother",
  6160. height: math.unit(3.14e110, "yottaparsecs")
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Kuro-shi Uchū" },
  6166. {
  6167. front: {
  6168. height: math.unit(17 + 1 / 12, "feet"),
  6169. weight: math.unit(476.2 * 5, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/kuro-shi-uchū/front.svg",
  6173. extra: 2329 / 1835,
  6174. bottom: 0.02
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Micro",
  6181. height: math.unit(2, "inches")
  6182. },
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(12, "meters")
  6186. },
  6187. {
  6188. name: "Planetary",
  6189. height: math.unit(0.00929, "AU"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Universal",
  6194. height: math.unit(20, "gigaparsecs")
  6195. },
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Katherine" },
  6200. {
  6201. front: {
  6202. height: math.unit(5 + 2 / 12, "feet"),
  6203. weight: math.unit(120, "lbs"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/katherine/front.svg",
  6207. extra: 2075 / 1969
  6208. }
  6209. },
  6210. dress: {
  6211. height: math.unit(5 + 2 / 12, "feet"),
  6212. weight: math.unit(120, "lbs"),
  6213. name: "Dress",
  6214. image: {
  6215. source: "./media/characters/katherine/dress.svg",
  6216. extra: 2258 / 2064
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(1, "inches"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(5 + 2 / 12, "feet")
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(100, "meters")
  6233. },
  6234. {
  6235. name: "Megamacro",
  6236. height: math.unit(80, "miles")
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Yevis" },
  6242. {
  6243. front: {
  6244. height: math.unit(7 + 8 / 12, "feet"),
  6245. weight: math.unit(250, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/yevis/front.svg",
  6249. extra: 1938 / 1755
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Mortal",
  6256. height: math.unit(7 + 8 / 12, "feet")
  6257. },
  6258. {
  6259. name: "Battle",
  6260. height: math.unit(25 + 11 / 12, "feet")
  6261. },
  6262. {
  6263. name: "Wrath",
  6264. height: math.unit(1654 + 11 / 12, "feet")
  6265. },
  6266. {
  6267. name: "Planet Destroyer",
  6268. height: math.unit(12000, "miles")
  6269. },
  6270. {
  6271. name: "Galaxy Conqueror",
  6272. height: math.unit(1.45, "zettameters"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Universal War",
  6277. height: math.unit(184, "gigaparsecs")
  6278. },
  6279. {
  6280. name: "Eternity War",
  6281. height: math.unit(1.98e55, "yottaparsecs")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Xavier" },
  6287. {
  6288. front: {
  6289. height: math.unit(5 + 8 / 12, "feet"),
  6290. weight: math.unit(63, "kg"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/xavier/front.svg",
  6294. extra: 944 / 883
  6295. }
  6296. },
  6297. frontStretch: {
  6298. height: math.unit(5 + 8 / 12, "feet"),
  6299. weight: math.unit(63, "kg"),
  6300. name: "Stretching",
  6301. image: {
  6302. source: "./media/characters/xavier/front-stretch.svg",
  6303. extra: 962 / 820
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(5 + 8 / 12, "feet")
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(100, "meters"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "McLargeHuge",
  6319. height: math.unit(10, "miles")
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Joshii" },
  6325. {
  6326. front: {
  6327. height: math.unit(5 + 5 / 12, "feet"),
  6328. weight: math.unit(150, "lb"),
  6329. name: "Front",
  6330. image: {
  6331. source: "./media/characters/joshii/front.svg"
  6332. }
  6333. },
  6334. foot: {
  6335. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6336. name: "Foot",
  6337. image: {
  6338. source: "./media/characters/joshii/foot.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Micro",
  6345. height: math.unit(2, "inches")
  6346. },
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(5 + 5 / 12, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(785, "feet")
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(24.5, "miles")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Goddess Elizabeth" },
  6364. {
  6365. front: {
  6366. height: math.unit(6, "feet"),
  6367. weight: math.unit(150, "lb"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/goddess-elizabeth/front.svg",
  6371. extra: 1800 / 1525,
  6372. bottom: 0.005
  6373. }
  6374. },
  6375. foot: {
  6376. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6377. name: "Foot",
  6378. image: {
  6379. source: "./media/characters/goddess-elizabeth/foot.svg"
  6380. }
  6381. },
  6382. mouth: {
  6383. height: math.unit(6, "feet"),
  6384. name: "Mouth",
  6385. image: {
  6386. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Micro",
  6393. height: math.unit(12, "feet")
  6394. },
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(80, "miles"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Macro",
  6402. height: math.unit(15000, "parsecs")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Kara" },
  6408. {
  6409. front: {
  6410. height: math.unit(5 + 9 / 12, "feet"),
  6411. weight: math.unit(144, "lb"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/kara/front.svg"
  6415. }
  6416. },
  6417. feet: {
  6418. height: math.unit(6 / 6.765, "feet"),
  6419. name: "Kara's Feet",
  6420. rename: true,
  6421. image: {
  6422. source: "./media/characters/kara/feet.svg"
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Normal",
  6429. height: math.unit(5 + 9 / 12, "feet")
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(174, "feet"),
  6434. default: true
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Tyrone" },
  6440. {
  6441. front: {
  6442. height: math.unit(18, "feet"),
  6443. weight: math.unit(4050, "lb"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/tyrone/front.svg",
  6447. extra: 2520 / 2402,
  6448. bottom: 0.025
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(18, "feet"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(300, "feet")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Danny" },
  6466. {
  6467. front: {
  6468. height: math.unit(7 + 8 / 12, "feet"),
  6469. weight: math.unit(120, "lb"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/danny/front.svg",
  6473. extra: 1490 / 1350
  6474. }
  6475. },
  6476. back: {
  6477. height: math.unit(7 + 8 / 12, "feet"),
  6478. weight: math.unit(120, "lb"),
  6479. name: "Back",
  6480. image: {
  6481. source: "./media/characters/danny/back.svg",
  6482. extra: 1490 / 1350
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(7 + 8 / 12, "feet"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Mallow" },
  6496. {
  6497. front: {
  6498. height: math.unit(3.5, "inches"),
  6499. weight: math.unit(19, "grams"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/mallow/front.svg",
  6503. extra: 471 / 431
  6504. }
  6505. },
  6506. back: {
  6507. height: math.unit(3.5, "inches"),
  6508. weight: math.unit(19, "grams"),
  6509. name: "Back",
  6510. image: {
  6511. source: "./media/characters/mallow/back.svg",
  6512. extra: 471 / 431
  6513. }
  6514. },
  6515. },
  6516. [
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(3.5, "inches"),
  6520. default: true
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Starry Aqua" },
  6526. {
  6527. front: {
  6528. height: math.unit(9, "feet"),
  6529. weight: math.unit(230, "kg"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/starry-aqua/front.svg"
  6533. }
  6534. },
  6535. back: {
  6536. height: math.unit(9, "feet"),
  6537. weight: math.unit(230, "kg"),
  6538. name: "Back",
  6539. image: {
  6540. source: "./media/characters/starry-aqua/back.svg"
  6541. }
  6542. },
  6543. hand: {
  6544. height: math.unit(9 * 0.1168, "feet"),
  6545. name: "Hand",
  6546. image: {
  6547. source: "./media/characters/starry-aqua/hand.svg"
  6548. }
  6549. },
  6550. foot: {
  6551. height: math.unit(9 * 0.18, "feet"),
  6552. name: "Foot",
  6553. image: {
  6554. source: "./media/characters/starry-aqua/foot.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Micro",
  6561. height: math.unit(3, "inches")
  6562. },
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(9, "feet")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(300, "feet"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Megamacro",
  6574. height: math.unit(3200, "feet")
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Luka" },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(230, "lb"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/luka/front.svg",
  6587. extra: 1,
  6588. bottom: 0.025
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(12 + 8 / 12, "feet"),
  6596. default: true
  6597. },
  6598. {
  6599. name: "Minimacro",
  6600. height: math.unit(20, "feet")
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(250, "feet")
  6605. },
  6606. {
  6607. name: "Megamacro",
  6608. height: math.unit(5, "miles")
  6609. },
  6610. {
  6611. name: "Gigamacro",
  6612. height: math.unit(8000, "miles")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Natalie Nightring" },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(150, "lb"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/natalie-nightring/front.svg",
  6625. extra: 1,
  6626. bottom: 0.06
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Uh Oh",
  6633. height: math.unit(0.1, "mm")
  6634. },
  6635. {
  6636. name: "Small",
  6637. height: math.unit(3, "inches")
  6638. },
  6639. {
  6640. name: "Human Scale",
  6641. height: math.unit(6, "feet")
  6642. },
  6643. {
  6644. name: "Librarian",
  6645. height: math.unit(50, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Immense",
  6650. height: math.unit(200, "miles")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Danni Rosie" },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(180, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/danni-rosie/front.svg",
  6663. extra: 1260 / 1128,
  6664. bottom: 0.022
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Micro",
  6671. height: math.unit(2, "inches"),
  6672. default: true
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Samantha Kruse" },
  6678. {
  6679. front: {
  6680. height: math.unit(5 + 9 / 12, "feet"),
  6681. weight: math.unit(220, "lb"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/samantha-kruse/front.svg",
  6685. extra: (985 / 935),
  6686. bottom: 0.03
  6687. }
  6688. },
  6689. frontUndressed: {
  6690. height: math.unit(5 + 9 / 12, "feet"),
  6691. weight: math.unit(220, "lb"),
  6692. name: "Front (Undressed)",
  6693. image: {
  6694. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6695. extra: (973 / 923),
  6696. bottom: 0.025
  6697. }
  6698. },
  6699. fat: {
  6700. height: math.unit(5 + 9 / 12, "feet"),
  6701. weight: math.unit(900, "lb"),
  6702. name: "Front (Fat)",
  6703. image: {
  6704. source: "./media/characters/samantha-kruse/fat.svg",
  6705. extra: 2688 / 2561
  6706. }
  6707. },
  6708. },
  6709. [
  6710. {
  6711. name: "Normal",
  6712. height: math.unit(5 + 9 / 12, "feet"),
  6713. default: true
  6714. }
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Amelia Rosie" },
  6719. {
  6720. back: {
  6721. height: math.unit(5 + 4 / 12, "feet"),
  6722. weight: math.unit(4963, "lb"),
  6723. name: "Back",
  6724. image: {
  6725. source: "./media/characters/amelia-rosie/back.svg",
  6726. extra: 1113 / 963,
  6727. bottom: 0.01
  6728. }
  6729. },
  6730. },
  6731. [
  6732. {
  6733. name: "Level 0",
  6734. height: math.unit(5 + 4 / 12, "feet")
  6735. },
  6736. {
  6737. name: "Level 1",
  6738. height: math.unit(164597, "feet"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Level 2",
  6743. height: math.unit(956243, "miles")
  6744. },
  6745. {
  6746. name: "Level 3",
  6747. height: math.unit(29421709423, "miles")
  6748. },
  6749. {
  6750. name: "Level 4",
  6751. height: math.unit(154, "lightyears")
  6752. },
  6753. {
  6754. name: "Level 5",
  6755. height: math.unit(4738272, "lightyears")
  6756. },
  6757. {
  6758. name: "Level 6",
  6759. height: math.unit(145787152896, "lightyears")
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Rook Kitara" },
  6765. {
  6766. front: {
  6767. height: math.unit(5 + 11 / 12, "feet"),
  6768. weight: math.unit(65, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/rook-kitara/front.svg",
  6772. extra: 1347 / 1274,
  6773. bottom: 0.005
  6774. }
  6775. },
  6776. },
  6777. [
  6778. {
  6779. name: "Totally Unfair",
  6780. height: math.unit(1.8, "mm")
  6781. },
  6782. {
  6783. name: "Lap Rookie",
  6784. height: math.unit(1.4, "feet")
  6785. },
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(5 + 11 / 12, "feet"),
  6789. default: true
  6790. },
  6791. {
  6792. name: "How Did This Happen",
  6793. height: math.unit(80, "miles")
  6794. }
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Pisces" },
  6799. {
  6800. front: {
  6801. height: math.unit(7, "feet"),
  6802. weight: math.unit(300, "lb"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/pisces/front.svg",
  6806. extra: 2255 / 2115,
  6807. bottom: 0.03
  6808. }
  6809. },
  6810. back: {
  6811. height: math.unit(7, "feet"),
  6812. weight: math.unit(300, "lb"),
  6813. name: "Back",
  6814. image: {
  6815. source: "./media/characters/pisces/back.svg",
  6816. extra: 2146 / 2055,
  6817. bottom: 0.04
  6818. }
  6819. },
  6820. },
  6821. [
  6822. {
  6823. name: "Normal",
  6824. height: math.unit(7, "feet"),
  6825. default: true
  6826. },
  6827. {
  6828. name: "Swimming Pool",
  6829. height: math.unit(12.2, "meters")
  6830. },
  6831. {
  6832. name: "Olympic Swimming Pool",
  6833. height: math.unit(56.3, "meters")
  6834. },
  6835. {
  6836. name: "Lake Superior",
  6837. height: math.unit(93900, "meters")
  6838. },
  6839. {
  6840. name: "Mediterranean Sea",
  6841. height: math.unit(644457, "meters")
  6842. },
  6843. {
  6844. name: "World's Oceans",
  6845. height: math.unit(4567491, "meters")
  6846. },
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Zelas" },
  6851. {
  6852. front: {
  6853. height: math.unit(2.3, "meters"),
  6854. weight: math.unit(120, "kg"),
  6855. name: "Front",
  6856. image: {
  6857. source: "./media/characters/zelas/front.svg"
  6858. }
  6859. },
  6860. side: {
  6861. height: math.unit(2.3, "meters"),
  6862. weight: math.unit(120, "kg"),
  6863. name: "Side",
  6864. image: {
  6865. source: "./media/characters/zelas/side.svg"
  6866. }
  6867. },
  6868. back: {
  6869. height: math.unit(2.3, "meters"),
  6870. weight: math.unit(120, "kg"),
  6871. name: "Back",
  6872. image: {
  6873. source: "./media/characters/zelas/back.svg"
  6874. }
  6875. },
  6876. foot: {
  6877. height: math.unit(1.116, "feet"),
  6878. name: "Foot",
  6879. image: {
  6880. source: "./media/characters/zelas/foot.svg"
  6881. }
  6882. },
  6883. },
  6884. [
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(2.3, "meters")
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(30, "meters"),
  6892. default: true
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Talbot" },
  6898. {
  6899. front: {
  6900. height: math.unit(1, "inch"),
  6901. weight: math.unit(0.21, "grams"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/talbot/front.svg",
  6905. extra: 594 / 544
  6906. }
  6907. },
  6908. },
  6909. [
  6910. {
  6911. name: "Micro",
  6912. height: math.unit(1, "inch"),
  6913. default: true
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Fliss" },
  6919. {
  6920. front: {
  6921. height: math.unit(3 + 3 / 12, "feet"),
  6922. weight: math.unit(51.8, "lb"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/fliss/front.svg",
  6926. extra: 840 / 640
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Teeny Tiny",
  6933. height: math.unit(1, "mm")
  6934. },
  6935. {
  6936. name: "Small",
  6937. height: math.unit(1, "inch"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Standard Sylveon",
  6942. height: math.unit(3 + 3 / 12, "feet")
  6943. },
  6944. {
  6945. name: "Large Nuisance",
  6946. height: math.unit(33, "feet")
  6947. },
  6948. {
  6949. name: "City Filler",
  6950. height: math.unit(3000, "feet")
  6951. },
  6952. {
  6953. name: "New Horizon",
  6954. height: math.unit(6000, "miles")
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Fleta" },
  6960. {
  6961. front: {
  6962. height: math.unit(5, "cm"),
  6963. weight: math.unit(1.94, "g"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/fleta/front.svg",
  6967. extra: 835 / 803
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(5, "cm"),
  6972. weight: math.unit(1.94, "g"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/fleta/back.svg",
  6976. extra: 835 / 803
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Micro",
  6983. height: math.unit(5, "cm"),
  6984. default: true
  6985. },
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Dominic" },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(225, "lb"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/dominic/front.svg",
  6997. extra: 1770 / 1620,
  6998. bottom: 0.025
  6999. }
  7000. },
  7001. back: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(225, "lb"),
  7004. name: "Back",
  7005. image: {
  7006. source: "./media/characters/dominic/back.svg",
  7007. extra: 1745 / 1620,
  7008. bottom: 0.065
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Nano",
  7015. height: math.unit(0.1, "mm")
  7016. },
  7017. {
  7018. name: "Micro-",
  7019. height: math.unit(1, "mm")
  7020. },
  7021. {
  7022. name: "Micro",
  7023. height: math.unit(4, "inches")
  7024. },
  7025. {
  7026. name: "Normal",
  7027. height: math.unit(6 + 4 / 12, "feet"),
  7028. default: true
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(115, "feet")
  7033. },
  7034. {
  7035. name: "Macro+",
  7036. height: math.unit(955, "feet")
  7037. },
  7038. {
  7039. name: "Megamacro",
  7040. height: math.unit(8990, "feet")
  7041. },
  7042. {
  7043. name: "Gigmacro",
  7044. height: math.unit(9310, "miles")
  7045. },
  7046. {
  7047. name: "Teramacro",
  7048. height: math.unit(1567005010, "miles")
  7049. },
  7050. {
  7051. name: "Examacro",
  7052. height: math.unit(1425, "parsecs")
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Major Colonel" },
  7058. {
  7059. front: {
  7060. height: math.unit(400, "feet"),
  7061. weight: math.unit(44444444, "lb"),
  7062. name: "Front",
  7063. image: {
  7064. source: "./media/characters/major-colonel/front.svg"
  7065. }
  7066. },
  7067. back: {
  7068. height: math.unit(400, "feet"),
  7069. weight: math.unit(44444444, "lb"),
  7070. name: "Back",
  7071. image: {
  7072. source: "./media/characters/major-colonel/back.svg"
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(400, "feet"),
  7080. default: true
  7081. },
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Axel Lycan" },
  7086. {
  7087. front: {
  7088. height: math.unit(6, "feet"),
  7089. weight: math.unit(120, "lb"),
  7090. name: "Front",
  7091. image: {
  7092. source: "./media/characters/axel-lycan/front.svg",
  7093. extra: 1,
  7094. bottom: 0.08
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(1, "km"),
  7102. default: true
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Vanrel (Hyena)" },
  7108. {
  7109. front: {
  7110. height: math.unit(5 + 9 / 12, "feet"),
  7111. weight: math.unit(175, "lb"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/vanrel-hyena/front.svg",
  7115. extra: 1086 / 1010,
  7116. bottom: 0.04
  7117. }
  7118. },
  7119. },
  7120. [
  7121. {
  7122. name: "Normal",
  7123. height: math.unit(5 + 9 / 12, "feet"),
  7124. default: true
  7125. },
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Abbott Absol" },
  7130. {
  7131. front: {
  7132. height: math.unit(6, "feet"),
  7133. weight: math.unit(103, "lb"),
  7134. name: "Front",
  7135. image: {
  7136. source: "./media/characters/abbott-absol/front.svg",
  7137. extra: 2010 / 1842
  7138. }
  7139. },
  7140. },
  7141. [
  7142. {
  7143. name: "Megamicro",
  7144. height: math.unit(0.1, "mm")
  7145. },
  7146. {
  7147. name: "Micro",
  7148. height: math.unit(1, "inch")
  7149. },
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(6, "feet"),
  7153. default: true
  7154. },
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Hector" },
  7159. {
  7160. front: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(264, "lb"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/hector/front.svg",
  7166. extra: 2280 / 2130,
  7167. bottom: 0.07
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(12.25, "foot"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Macro",
  7179. height: math.unit(160, "feet")
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Sal" },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(150, "lb"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/sal/front.svg",
  7192. extra: 1846 / 1699,
  7193. bottom: 0.04
  7194. }
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "Megamacro",
  7200. height: math.unit(10, "miles"),
  7201. default: true
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Ranger" },
  7207. {
  7208. front: {
  7209. height: math.unit(3, "meters"),
  7210. weight: math.unit(450, "kg"),
  7211. name: "front",
  7212. image: {
  7213. source: "./media/characters/ranger/front.svg",
  7214. extra: 2401 / 2243,
  7215. bottom: 0.05
  7216. }
  7217. },
  7218. },
  7219. [
  7220. {
  7221. name: "Normal",
  7222. height: math.unit(3, "meters"),
  7223. default: true
  7224. },
  7225. ]
  7226. ))
  7227. characterMakers.push(() => makeCharacter(
  7228. { name: "Theresa" },
  7229. {
  7230. front: {
  7231. height: math.unit(14, "feet"),
  7232. weight: math.unit(800, "kg"),
  7233. name: "Front",
  7234. image: {
  7235. source: "./media/characters/theresa/front.svg",
  7236. extra: 3575 / 3346,
  7237. bottom: 0.03
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(14, "feet"),
  7245. default: true
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Ine" },
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(3, "kg"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/ine/front.svg",
  7258. extra: 678 / 539,
  7259. bottom: 0.023
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(2.265, "feet"),
  7267. default: true
  7268. },
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Vial" },
  7273. {
  7274. front: {
  7275. height: math.unit(5, "feet"),
  7276. weight: math.unit(30, "kg"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/vial/front.svg",
  7280. extra: 1365 / 1277,
  7281. bottom: 0.04
  7282. }
  7283. },
  7284. },
  7285. [
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(5, "feet"),
  7289. default: true
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Rovoska" },
  7295. {
  7296. side: {
  7297. height: math.unit(3.4, "meters"),
  7298. weight: math.unit(1000, "lb"),
  7299. name: "Side",
  7300. image: {
  7301. source: "./media/characters/rovoska/side.svg",
  7302. extra: 4403 / 1515
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(3.4, "meters"),
  7310. default: true
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Gunner Rotthbauer" },
  7316. {
  7317. front: {
  7318. height: math.unit(8, "feet"),
  7319. weight: math.unit(315, "lb"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/gunner-rotthbauer/front.svg"
  7323. }
  7324. },
  7325. back: {
  7326. height: math.unit(8, "feet"),
  7327. weight: math.unit(315, "lb"),
  7328. name: "Back",
  7329. image: {
  7330. source: "./media/characters/gunner-rotthbauer/back.svg"
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(3.5, "inches")
  7338. },
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(8, "feet"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(250, "feet")
  7347. },
  7348. {
  7349. name: "Megamacro",
  7350. height: math.unit(1, "AU")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Allatia" },
  7356. {
  7357. front: {
  7358. height: math.unit(5 + 5 / 12, "feet"),
  7359. weight: math.unit(140, "lb"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/allatia/front.svg",
  7363. extra: 1227 / 1180,
  7364. bottom: 0.027
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(5 + 5 / 12, "feet")
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(250, "feet"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Megamacro",
  7380. height: math.unit(8, "miles")
  7381. }
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Tene" },
  7386. {
  7387. front: {
  7388. height: math.unit(6, "feet"),
  7389. weight: math.unit(120, "lb"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/tene/front.svg",
  7393. extra: 1728 / 1578,
  7394. bottom: 0.022
  7395. }
  7396. },
  7397. stomping: {
  7398. height: math.unit(2.025, "meters"),
  7399. weight: math.unit(120, "lb"),
  7400. name: "Stomping",
  7401. image: {
  7402. source: "./media/characters/tene/stomping.svg",
  7403. extra: 938 / 873,
  7404. bottom: 0.01
  7405. }
  7406. },
  7407. sitting: {
  7408. height: math.unit(1, "meter"),
  7409. weight: math.unit(120, "lb"),
  7410. name: "Sitting",
  7411. image: {
  7412. source: "./media/characters/tene/sitting.svg",
  7413. extra: 437 / 415,
  7414. bottom: 0.1
  7415. }
  7416. },
  7417. feral: {
  7418. height: math.unit(3.9, "feet"),
  7419. weight: math.unit(250, "lb"),
  7420. name: "Feral",
  7421. image: {
  7422. source: "./media/characters/tene/feral.svg",
  7423. extra: 717 / 458,
  7424. bottom: 0.179
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(6, "feet")
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(300, "feet"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Megamacro",
  7440. height: math.unit(5, "miles")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Evander" },
  7446. {
  7447. side: {
  7448. height: math.unit(6, "feet"),
  7449. name: "Side",
  7450. image: {
  7451. source: "./media/characters/evander/side.svg",
  7452. extra: 877 / 477
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(0.83, "meters"),
  7460. default: true
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7466. {
  7467. front: {
  7468. height: math.unit(12, "feet"),
  7469. weight: math.unit(1000, "lb"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7473. extra: 1762 / 1611
  7474. }
  7475. },
  7476. back: {
  7477. height: math.unit(12, "feet"),
  7478. weight: math.unit(1000, "lb"),
  7479. name: "Back",
  7480. image: {
  7481. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7482. extra: 1762 / 1611
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(12, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Kaiju",
  7494. height: math.unit(150, "feet")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Zero Alurus" },
  7500. {
  7501. front: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(150, "lb"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/zero-alurus/front.svg"
  7507. }
  7508. },
  7509. back: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(150, "lb"),
  7512. name: "Back",
  7513. image: {
  7514. source: "./media/characters/zero-alurus/back.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(5 + 10 / 12, "feet")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(60, "feet"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Macro+",
  7530. height: math.unit(450, "feet")
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Mega Shi" },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(200, "lb"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/mega-shi/front.svg",
  7543. extra: 1279 / 1250,
  7544. bottom: 0.02
  7545. }
  7546. },
  7547. back: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(200, "lb"),
  7550. name: "Back",
  7551. image: {
  7552. source: "./media/characters/mega-shi/back.svg",
  7553. extra: 1279 / 1250,
  7554. bottom: 0.02
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(16 + 6 / 12, "feet")
  7562. },
  7563. {
  7564. name: "Third Dimension",
  7565. height: math.unit(40, "meters")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(660, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(10, "miles")
  7575. },
  7576. {
  7577. name: "Planetary Launch",
  7578. height: math.unit(500, "miles")
  7579. },
  7580. {
  7581. name: "Interstellar",
  7582. height: math.unit(1e9, "miles")
  7583. },
  7584. {
  7585. name: "Leaving the Universe",
  7586. height: math.unit(1, "gigaparsec")
  7587. },
  7588. {
  7589. name: "Travelling Universes",
  7590. height: math.unit(30e15, "parsecs")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Odyssey" },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(150, "lb"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/odyssey/front.svg",
  7603. extra: 1782 / 1582,
  7604. bottom: 0.01
  7605. }
  7606. },
  7607. side: {
  7608. height: math.unit(5.7, "feet"),
  7609. weight: math.unit(140, "lb"),
  7610. name: "Side",
  7611. image: {
  7612. source: "./media/characters/odyssey/side.svg",
  7613. extra: 6462 / 5700
  7614. }
  7615. },
  7616. },
  7617. [
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(5 + 4 / 12, "feet")
  7621. },
  7622. {
  7623. name: "Macro",
  7624. height: math.unit(1, "km")
  7625. },
  7626. {
  7627. name: "Megamacro",
  7628. height: math.unit(3000, "km")
  7629. },
  7630. {
  7631. name: "Gigamacro",
  7632. height: math.unit(1, "AU"),
  7633. default: true
  7634. },
  7635. {
  7636. name: "Omniversal",
  7637. height: math.unit(100e14, "lightyears")
  7638. },
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Mekuto" },
  7643. {
  7644. front: {
  7645. height: math.unit(6, "feet"),
  7646. weight: math.unit(300, "lb"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/mekuto/front.svg",
  7650. extra: 921 / 832,
  7651. bottom: 0.03
  7652. }
  7653. },
  7654. hand: {
  7655. height: math.unit(6 / 10.24, "feet"),
  7656. name: "Hand",
  7657. image: {
  7658. source: "./media/characters/mekuto/hand.svg"
  7659. }
  7660. },
  7661. foot: {
  7662. height: math.unit(6 / 5.05, "feet"),
  7663. name: "Foot",
  7664. image: {
  7665. source: "./media/characters/mekuto/foot.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Minimicro",
  7672. height: math.unit(0.2, "inches")
  7673. },
  7674. {
  7675. name: "Micro",
  7676. height: math.unit(1.5, "inches")
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(5 + 11 / 12, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Minimacro",
  7685. height: math.unit(17 + 9 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(177.5, "feet")
  7690. },
  7691. {
  7692. name: "Megamacro",
  7693. height: math.unit(152, "miles")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Dafydd Tomos" },
  7699. {
  7700. front: {
  7701. height: math.unit(6.5, "inches"),
  7702. weight: math.unit(13, "oz"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/dafydd-tomos/front.svg",
  7706. extra: 2990 / 2603,
  7707. bottom: 0.03
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Micro",
  7714. height: math.unit(6.5, "inches"),
  7715. default: true
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Splinter" },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(150, "lb"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/splinter/front.svg",
  7728. extra: 2990 / 2882,
  7729. bottom: 0.04
  7730. }
  7731. },
  7732. back: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(150, "lb"),
  7735. name: "Back",
  7736. image: {
  7737. source: "./media/characters/splinter/back.svg",
  7738. extra: 2990 / 2882,
  7739. bottom: 0.04
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(6, "feet")
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(230, "meters"),
  7751. default: true
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "SnowGabumon" },
  7757. {
  7758. front: {
  7759. height: math.unit(4 + 10 / 12, "feet"),
  7760. weight: math.unit(480, "lb"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/snow-gabumon/front.svg",
  7764. extra: 1140 / 963,
  7765. bottom: 0.058
  7766. }
  7767. },
  7768. back: {
  7769. height: math.unit(4 + 10 / 12, "feet"),
  7770. weight: math.unit(480, "lb"),
  7771. name: "Back",
  7772. image: {
  7773. source: "./media/characters/snow-gabumon/back.svg",
  7774. extra: 1115 / 962,
  7775. bottom: 0.041
  7776. }
  7777. },
  7778. frontUndresed: {
  7779. height: math.unit(4 + 10 / 12, "feet"),
  7780. weight: math.unit(480, "lb"),
  7781. name: "Front (Undressed)",
  7782. image: {
  7783. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7784. extra: 1061 / 960,
  7785. bottom: 0.045
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(1, "inch")
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(4 + 10 / 12, "feet"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(200, "feet")
  7802. },
  7803. {
  7804. name: "Megamacro",
  7805. height: math.unit(120, "miles")
  7806. },
  7807. {
  7808. name: "Gigamacro",
  7809. height: math.unit(9800, "miles")
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Moody" },
  7815. {
  7816. front: {
  7817. height: math.unit(1.7, "meters"),
  7818. weight: math.unit(140, "lb"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/moody/front.svg",
  7822. extra: 3226 / 3007,
  7823. bottom: 0.087
  7824. }
  7825. },
  7826. },
  7827. [
  7828. {
  7829. name: "Micro",
  7830. height: math.unit(1, "mm")
  7831. },
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(1.7, "meters"),
  7835. default: true
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(80, "meters")
  7840. },
  7841. {
  7842. name: "Macro+",
  7843. height: math.unit(500, "meters")
  7844. },
  7845. ]
  7846. ))
  7847. characterMakers.push(() => makeCharacter(
  7848. { name: "Zyas" },
  7849. {
  7850. front: {
  7851. height: math.unit(6, "feet"),
  7852. weight: math.unit(150, "lb"),
  7853. name: "Front",
  7854. image: {
  7855. source: "./media/characters/zyas/front.svg",
  7856. extra: 1180 / 1120,
  7857. bottom: 0.045
  7858. }
  7859. },
  7860. },
  7861. [
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(10, "feet"),
  7865. default: true
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(500, "feet")
  7870. },
  7871. {
  7872. name: "Megamacro",
  7873. height: math.unit(5, "miles")
  7874. },
  7875. {
  7876. name: "Teramacro",
  7877. height: math.unit(150000, "miles")
  7878. },
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Cuon" },
  7883. {
  7884. front: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(150, "lb"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/cuon/front.svg",
  7890. extra: 1390 / 1320,
  7891. bottom: 0.008
  7892. }
  7893. },
  7894. },
  7895. [
  7896. {
  7897. name: "Micro",
  7898. height: math.unit(3, "inches")
  7899. },
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(18 + 9 / 12, "feet"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(360, "feet")
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(360, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Nyanuxk" },
  7917. {
  7918. front: {
  7919. height: math.unit(2.4, "meters"),
  7920. weight: math.unit(70, "kg"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/nyanuxk/front.svg",
  7924. extra: 1172 / 1084,
  7925. bottom: 0.065
  7926. }
  7927. },
  7928. side: {
  7929. height: math.unit(2.4, "meters"),
  7930. weight: math.unit(70, "kg"),
  7931. name: "Side",
  7932. image: {
  7933. source: "./media/characters/nyanuxk/side.svg",
  7934. extra: 1190 / 1132,
  7935. bottom: 0.007
  7936. }
  7937. },
  7938. back: {
  7939. height: math.unit(2.4, "meters"),
  7940. weight: math.unit(70, "kg"),
  7941. name: "Back",
  7942. image: {
  7943. source: "./media/characters/nyanuxk/back.svg",
  7944. extra: 1200 / 1141,
  7945. bottom: 0.015
  7946. }
  7947. },
  7948. foot: {
  7949. height: math.unit(0.52, "meters"),
  7950. name: "Foot",
  7951. image: {
  7952. source: "./media/characters/nyanuxk/foot.svg"
  7953. }
  7954. },
  7955. },
  7956. [
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(2, "cm")
  7960. },
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(2.4, "meters"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Smaller Macro",
  7968. height: math.unit(120, "meters")
  7969. },
  7970. {
  7971. name: "Bigger Macro",
  7972. height: math.unit(1.2, "km")
  7973. },
  7974. {
  7975. name: "Megamacro",
  7976. height: math.unit(15, "kilometers")
  7977. },
  7978. {
  7979. name: "Gigamacro",
  7980. height: math.unit(2000, "km")
  7981. },
  7982. {
  7983. name: "Teramacro",
  7984. height: math.unit(500000, "km")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Ailbhe" },
  7990. {
  7991. side: {
  7992. height: math.unit(6, "feet"),
  7993. name: "Side",
  7994. image: {
  7995. source: "./media/characters/ailbhe/side.svg",
  7996. extra: 757 / 464,
  7997. bottom: 0.041
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.07, "meters"),
  8005. default: true
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Zevulfius" },
  8011. {
  8012. front: {
  8013. height: math.unit(6, "feet"),
  8014. weight: math.unit(120, "kg"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/zevulfius/front.svg",
  8018. extra: 965 / 903
  8019. }
  8020. },
  8021. side: {
  8022. height: math.unit(6, "feet"),
  8023. weight: math.unit(120, "kg"),
  8024. name: "Side",
  8025. image: {
  8026. source: "./media/characters/zevulfius/side.svg",
  8027. extra: 939 / 900
  8028. }
  8029. },
  8030. back: {
  8031. height: math.unit(6, "feet"),
  8032. weight: math.unit(120, "kg"),
  8033. name: "Back",
  8034. image: {
  8035. source: "./media/characters/zevulfius/back.svg",
  8036. extra: 918 / 854,
  8037. bottom: 0.005
  8038. }
  8039. },
  8040. foot: {
  8041. height: math.unit(6 / 3.72, "feet"),
  8042. name: "Foot",
  8043. image: {
  8044. source: "./media/characters/zevulfius/foot.svg"
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Macro",
  8051. height: math.unit(750, "meters")
  8052. },
  8053. {
  8054. name: "Megamacro",
  8055. height: math.unit(20, "km"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Gigamacro",
  8060. height: math.unit(2000, "km")
  8061. },
  8062. {
  8063. name: "Teramacro",
  8064. height: math.unit(250000, "km")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Rikes" },
  8070. {
  8071. front: {
  8072. height: math.unit(100, "feet"),
  8073. weight: math.unit(350, "kg"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/rikes/front.svg",
  8077. extra: 1565 / 1483,
  8078. bottom: 0.017
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(100, "feet"),
  8086. default: true
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Adam Silver-Mane" },
  8092. {
  8093. anthro: {
  8094. height: math.unit(8, "feet"),
  8095. weight: math.unit(120, "kg"),
  8096. name: "Anthro",
  8097. image: {
  8098. source: "./media/characters/adam-silver-mane/anthro.svg",
  8099. extra: 5743 / 5339,
  8100. bottom: 0.07
  8101. }
  8102. },
  8103. taur: {
  8104. height: math.unit(16, "feet"),
  8105. weight: math.unit(1500, "kg"),
  8106. name: "Taur",
  8107. image: {
  8108. source: "./media/characters/adam-silver-mane/taur.svg",
  8109. extra: 1713 / 1571,
  8110. bottom: 0.01
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(8, "feet")
  8118. },
  8119. {
  8120. name: "Minimacro",
  8121. height: math.unit(80, "feet")
  8122. },
  8123. {
  8124. name: "Macro",
  8125. height: math.unit(800, "feet"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Megamacro",
  8130. height: math.unit(8000, "feet")
  8131. },
  8132. {
  8133. name: "Gigamacro",
  8134. height: math.unit(800, "miles")
  8135. },
  8136. {
  8137. name: "Teramacro",
  8138. height: math.unit(80000, "miles")
  8139. },
  8140. {
  8141. name: "Celestial",
  8142. height: math.unit(8e6, "miles")
  8143. },
  8144. {
  8145. name: "Star Dragon",
  8146. height: math.unit(800000, "parsecs")
  8147. },
  8148. {
  8149. name: "Godly",
  8150. height: math.unit(800, "teraparsecs")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Ky'owin" },
  8156. {
  8157. front: {
  8158. height: math.unit(6, "feet"),
  8159. weight: math.unit(150, "lb"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/ky'owin/front.svg",
  8163. extra: 3888 / 3068,
  8164. bottom: 0.015
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(6 + 8 / 12, "feet")
  8172. },
  8173. {
  8174. name: "Large",
  8175. height: math.unit(68, "feet")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(132, "feet")
  8180. },
  8181. {
  8182. name: "Macro+",
  8183. height: math.unit(340, "feet")
  8184. },
  8185. {
  8186. name: "Macro++",
  8187. height: math.unit(680, "feet"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Megamacro",
  8192. height: math.unit(1, "mile")
  8193. },
  8194. {
  8195. name: "Megamacro+",
  8196. height: math.unit(10, "miles")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Mal" },
  8202. {
  8203. front: {
  8204. height: math.unit(4, "feet"),
  8205. weight: math.unit(50, "lb"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/mal/front.svg",
  8209. extra: 785 / 724,
  8210. bottom: 0.07
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(4, "inches")
  8218. },
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(4, "feet"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(200, "feet")
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Jordan Deware" },
  8232. {
  8233. front: {
  8234. height: math.unit(6, "feet"),
  8235. weight: math.unit(150, "lb"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/jordan-deware/front.svg",
  8239. extra: 1191 / 1012
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Nano",
  8246. height: math.unit(0.01, "mm")
  8247. },
  8248. {
  8249. name: "Minimicro",
  8250. height: math.unit(1, "mm")
  8251. },
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(0.5, "inches")
  8255. },
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(4, "feet"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Minimacro",
  8263. height: math.unit(40, "meters")
  8264. },
  8265. {
  8266. name: "Small Macro",
  8267. height: math.unit(400, "meters")
  8268. },
  8269. {
  8270. name: "Macro",
  8271. height: math.unit(4, "miles")
  8272. },
  8273. {
  8274. name: "Megamacro",
  8275. height: math.unit(40, "miles")
  8276. },
  8277. {
  8278. name: "Megamacro+",
  8279. height: math.unit(400, "miles")
  8280. },
  8281. {
  8282. name: "Gigamacro",
  8283. height: math.unit(400000, "miles")
  8284. },
  8285. ]
  8286. ))
  8287. characterMakers.push(() => makeCharacter(
  8288. { name: "Kimiko" },
  8289. {
  8290. side: {
  8291. height: math.unit(6, "feet"),
  8292. weight: math.unit(150, "lb"),
  8293. name: "Side",
  8294. image: {
  8295. source: "./media/characters/kimiko/side.svg",
  8296. extra: 600 / 358
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(15, "feet"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(220, "feet")
  8309. },
  8310. {
  8311. name: "Macro+",
  8312. height: math.unit(1450, "feet")
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(11500, "feet")
  8317. },
  8318. {
  8319. name: "Gigamacro",
  8320. height: math.unit(9500, "miles")
  8321. },
  8322. {
  8323. name: "Teramacro",
  8324. height: math.unit(2208005005, "miles")
  8325. },
  8326. {
  8327. name: "Examacro",
  8328. height: math.unit(2750, "parsecs")
  8329. },
  8330. {
  8331. name: "Zettamacro",
  8332. height: math.unit(101500, "parsecs")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Andrew Sleepy" },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(70, "kg"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/andrew-sleepy/front.svg"
  8345. }
  8346. },
  8347. side: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(70, "kg"),
  8350. name: "Side",
  8351. image: {
  8352. source: "./media/characters/andrew-sleepy/side.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Micro",
  8359. height: math.unit(1, "mm"),
  8360. default: true
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Judio" },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(150, "lb"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/judio/front.svg",
  8373. extra: 1258 / 1110
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(5 + 6 / 12, "feet")
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(1000, "feet"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Megamacro",
  8389. height: math.unit(10, "miles")
  8390. },
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Nomaxice" },
  8395. {
  8396. front: {
  8397. height: math.unit(6, "feet"),
  8398. weight: math.unit(68, "kg"),
  8399. name: "Front",
  8400. image: {
  8401. source: "./media/characters/nomaxice/front.svg",
  8402. extra: 1498 / 1073,
  8403. bottom: 0.075
  8404. }
  8405. },
  8406. foot: {
  8407. height: math.unit(1.1, "feet"),
  8408. name: "Foot",
  8409. image: {
  8410. source: "./media/characters/nomaxice/foot.svg"
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Micro",
  8417. height: math.unit(8, "cm")
  8418. },
  8419. {
  8420. name: "Norm",
  8421. height: math.unit(1.82, "m")
  8422. },
  8423. {
  8424. name: "Norm+",
  8425. height: math.unit(8.8, "feet")
  8426. },
  8427. {
  8428. name: "Big",
  8429. height: math.unit(8, "meters"),
  8430. default: true
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(18, "meters")
  8435. },
  8436. {
  8437. name: "Macro+",
  8438. height: math.unit(88, "meters")
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Dydros" },
  8444. {
  8445. front: {
  8446. height: math.unit(12, "feet"),
  8447. weight: math.unit(1.5, "tons"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/dydros/front.svg",
  8451. extra: 863 / 800,
  8452. bottom: 0.015
  8453. }
  8454. },
  8455. back: {
  8456. height: math.unit(12, "feet"),
  8457. weight: math.unit(1.5, "tons"),
  8458. name: "Back",
  8459. image: {
  8460. source: "./media/characters/dydros/back.svg",
  8461. extra: 900 / 843,
  8462. bottom: 0.005
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(12, "feet"),
  8470. default: true
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Riggi" },
  8476. {
  8477. front: {
  8478. height: math.unit(6, "feet"),
  8479. weight: math.unit(100, "kg"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/riggi/front.svg",
  8483. extra: 5787 / 5303
  8484. }
  8485. },
  8486. hyper: {
  8487. height: math.unit(6 * 5 / 3, "feet"),
  8488. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8489. name: "Hyper",
  8490. image: {
  8491. source: "./media/characters/riggi/hyper.svg",
  8492. extra: 3595 / 3485
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Small Macro",
  8499. height: math.unit(50, "feet")
  8500. },
  8501. {
  8502. name: "Default",
  8503. height: math.unit(200, "feet"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "Loom",
  8508. height: math.unit(10000, "feet")
  8509. },
  8510. {
  8511. name: "Cruising Altitude",
  8512. height: math.unit(30000, "feet")
  8513. },
  8514. {
  8515. name: "Megamacro",
  8516. height: math.unit(100, "miles")
  8517. },
  8518. {
  8519. name: "Continent Sized",
  8520. height: math.unit(2800, "miles")
  8521. },
  8522. {
  8523. name: "Earth Sized",
  8524. height: math.unit(8000, "miles")
  8525. },
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Alexi" },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(250, "lb"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/alexi/front.svg",
  8537. extra: 3483 / 3291,
  8538. bottom: 0.04
  8539. }
  8540. },
  8541. back: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(250, "lb"),
  8544. name: "Back",
  8545. image: {
  8546. source: "./media/characters/alexi/back.svg",
  8547. extra: 3533 / 3356,
  8548. bottom: 0.021
  8549. }
  8550. },
  8551. frontTransforming: {
  8552. height: math.unit(8.58, "feet"),
  8553. weight: math.unit(1300, "lb"),
  8554. name: "Transforming",
  8555. image: {
  8556. source: "./media/characters/alexi/front-transforming.svg",
  8557. extra: 437 / 409,
  8558. bottom: 19/458.66
  8559. }
  8560. },
  8561. frontTransformed: {
  8562. height: math.unit(12.5, "feet"),
  8563. weight: math.unit(4000, "lb"),
  8564. name: "Transformed",
  8565. image: {
  8566. source: "./media/characters/alexi/front-transformed.svg",
  8567. extra: 639 / 614,
  8568. bottom: 30.55/671
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(3, "meters"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Minimacro",
  8580. height: math.unit(30, "meters")
  8581. },
  8582. {
  8583. name: "Macro",
  8584. height: math.unit(500, "meters")
  8585. },
  8586. {
  8587. name: "Megamacro",
  8588. height: math.unit(9000, "km")
  8589. },
  8590. {
  8591. name: "Teramacro",
  8592. height: math.unit(384000, "km")
  8593. },
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Kayroo" },
  8598. {
  8599. front: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(150, "lb"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/kayroo/front.svg",
  8605. extra: 1153 / 1038,
  8606. bottom: 0.06
  8607. }
  8608. },
  8609. foot: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(150, "lb"),
  8612. name: "Foot",
  8613. image: {
  8614. source: "./media/characters/kayroo/foot.svg"
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(8, "feet"),
  8622. default: true
  8623. },
  8624. {
  8625. name: "Minimacro",
  8626. height: math.unit(250, "feet")
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(2800, "feet")
  8631. },
  8632. {
  8633. name: "Megamacro",
  8634. height: math.unit(5200, "feet")
  8635. },
  8636. {
  8637. name: "Gigamacro",
  8638. height: math.unit(27000, "feet")
  8639. },
  8640. {
  8641. name: "Omega",
  8642. height: math.unit(45000, "feet")
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Rhys" },
  8648. {
  8649. front: {
  8650. height: math.unit(18, "feet"),
  8651. weight: math.unit(5800, "lb"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/rhys/front.svg",
  8655. extra: 3386 / 3090,
  8656. bottom: 0.07
  8657. }
  8658. },
  8659. },
  8660. [
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(18, "feet"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Working Size",
  8668. height: math.unit(200, "feet")
  8669. },
  8670. {
  8671. name: "Demolition Size",
  8672. height: math.unit(2000, "feet")
  8673. },
  8674. {
  8675. name: "Maximum Licensed Size",
  8676. height: math.unit(5, "miles")
  8677. },
  8678. {
  8679. name: "Maximum Observed Size",
  8680. height: math.unit(10, "yottameters")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Toto" },
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(250, "lb"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/toto/front.svg",
  8693. extra: 527 / 479,
  8694. bottom: 0.05
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Micro",
  8701. height: math.unit(3, "feet")
  8702. },
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(10, "feet")
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(150, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Megamacro",
  8714. height: math.unit(1200, "feet")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "King" },
  8720. {
  8721. back: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(150, "lb"),
  8724. name: "Back",
  8725. image: {
  8726. source: "./media/characters/king/back.svg"
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Micro",
  8733. height: math.unit(2, "inches")
  8734. },
  8735. {
  8736. name: "Normal",
  8737. height: math.unit(8, "feet")
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(200, "feet"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Megamacro",
  8746. height: math.unit(50, "miles")
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Cordite" },
  8752. {
  8753. anthro: {
  8754. height: math.unit(6 + 5 / 12, "feet"),
  8755. weight: math.unit(280, "lb"),
  8756. name: "Anthro",
  8757. image: {
  8758. source: "./media/characters/cordite/anthro.svg",
  8759. extra: 1986 / 1905,
  8760. bottom: 0.025
  8761. }
  8762. },
  8763. feral: {
  8764. height: math.unit(2, "feet"),
  8765. weight: math.unit(90, "lb"),
  8766. name: "Feral",
  8767. image: {
  8768. source: "./media/characters/cordite/feral.svg",
  8769. extra: 1260 / 755,
  8770. bottom: 0.05
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(6 + 5 / 12, "feet"),
  8778. default: true
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Pianostrong" },
  8784. {
  8785. front: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(150, "lb"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/pianostrong/front.svg",
  8791. extra: 6577 / 6254,
  8792. bottom: 0.02
  8793. }
  8794. },
  8795. side: {
  8796. height: math.unit(6, "feet"),
  8797. weight: math.unit(150, "lb"),
  8798. name: "Side",
  8799. image: {
  8800. source: "./media/characters/pianostrong/side.svg",
  8801. extra: 6106 / 5730
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(6, "feet"),
  8806. weight: math.unit(150, "lb"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/pianostrong/back.svg",
  8810. extra: 6085 / 5733,
  8811. bottom: 0.01
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Macro",
  8818. height: math.unit(100, "feet")
  8819. },
  8820. {
  8821. name: "Macro+",
  8822. height: math.unit(300, "feet"),
  8823. default: true
  8824. },
  8825. {
  8826. name: "Macro++",
  8827. height: math.unit(1000, "feet")
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Kona" },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(150, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/kona/front.svg",
  8840. extra: 2960 / 2629,
  8841. bottom: 0.005
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(11 + 8 / 12, "feet")
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(850, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Macro+",
  8857. height: math.unit(1.5, "km"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Megamacro",
  8862. height: math.unit(80, "miles")
  8863. },
  8864. {
  8865. name: "Gigamacro",
  8866. height: math.unit(3500, "miles")
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Levi" },
  8872. {
  8873. side: {
  8874. height: math.unit(1.9, "meters"),
  8875. weight: math.unit(326, "kg"),
  8876. name: "Side",
  8877. image: {
  8878. source: "./media/characters/levi/side.svg",
  8879. extra: 1704 / 1334,
  8880. bottom: 0.02
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(1.9, "meters"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(20, "meters")
  8893. },
  8894. {
  8895. name: "Macro+",
  8896. height: math.unit(200, "meters")
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(2, "km")
  8901. },
  8902. {
  8903. name: "Megamacro+",
  8904. height: math.unit(20, "km")
  8905. },
  8906. {
  8907. name: "Gigamacro",
  8908. height: math.unit(2500, "km")
  8909. },
  8910. {
  8911. name: "Gigamacro+",
  8912. height: math.unit(120000, "km")
  8913. },
  8914. {
  8915. name: "Teramacro",
  8916. height: math.unit(7.77e6, "km")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "BMC" },
  8922. {
  8923. front: {
  8924. height: math.unit(6 + 4 / 12, "feet"),
  8925. weight: math.unit(188, "lb"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/bmc/front.svg",
  8929. extra: 1067 / 1022,
  8930. bottom: 0.047
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Human-sized",
  8937. height: math.unit(6 + 4 / 12, "feet")
  8938. },
  8939. {
  8940. name: "Small",
  8941. height: math.unit(250, "feet")
  8942. },
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(1250, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Good Day",
  8950. height: math.unit(88, "miles")
  8951. },
  8952. {
  8953. name: "Largest Measured Size",
  8954. height: math.unit(11.2e6, "lightyears")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Sven the Kaiju" },
  8960. {
  8961. front: {
  8962. height: math.unit(20, "feet"),
  8963. weight: math.unit(2016, "kg"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/sven-the-kaiju/front.svg",
  8967. extra: 1479 / 1449,
  8968. bottom: 0.05
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Fairy",
  8975. height: math.unit(6, "inches")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(20, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Rampage",
  8984. height: math.unit(200, "feet")
  8985. },
  8986. {
  8987. name: "Archfey Forest Guardian",
  8988. height: math.unit(1, "mile")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Marik" },
  8994. {
  8995. front: {
  8996. height: math.unit(4, "meters"),
  8997. weight: math.unit(2, "tons"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/marik/front.svg",
  9001. extra: 1057 / 1003,
  9002. bottom: 0.08
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(4, "meters"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Macro",
  9014. height: math.unit(20, "meters")
  9015. },
  9016. {
  9017. name: "Megamacro",
  9018. height: math.unit(50, "km")
  9019. },
  9020. {
  9021. name: "Gigamacro",
  9022. height: math.unit(100, "km")
  9023. },
  9024. {
  9025. name: "Alpha Macro",
  9026. height: math.unit(7.88e7, "yottameters")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Mel" },
  9032. {
  9033. front: {
  9034. height: math.unit(6, "feet"),
  9035. weight: math.unit(110, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/mel/front.svg",
  9039. extra: 736 / 617,
  9040. bottom: 0.017
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Pico",
  9047. height: math.unit(3, "pm")
  9048. },
  9049. {
  9050. name: "Nano",
  9051. height: math.unit(3, "nm")
  9052. },
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(0.3, "mm"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Micro+",
  9060. height: math.unit(3, "mm")
  9061. },
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(5 + 10.5 / 12, "feet")
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Lykonous" },
  9070. {
  9071. kaiju: {
  9072. height: math.unit(1.75, "meters"),
  9073. weight: math.unit(55, "kg"),
  9074. name: "Kaiju",
  9075. image: {
  9076. source: "./media/characters/lykonous/kaiju.svg",
  9077. extra: 1055 / 946,
  9078. bottom: 0.135
  9079. }
  9080. },
  9081. },
  9082. [
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(2.5, "meters"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "Kaiju Dragon",
  9090. height: math.unit(60, "meters")
  9091. },
  9092. {
  9093. name: "Mega Kaiju",
  9094. height: math.unit(120, "km")
  9095. },
  9096. {
  9097. name: "Giga Kaiju",
  9098. height: math.unit(200, "megameters")
  9099. },
  9100. {
  9101. name: "Terra Kaiju",
  9102. height: math.unit(400, "gigameters")
  9103. },
  9104. {
  9105. name: "Kaiju Dragon God",
  9106. height: math.unit(13000, "exaparsecs")
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Blü" },
  9112. {
  9113. front: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(150, "lb"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/blü/front.svg",
  9119. extra: 1883 / 1564,
  9120. bottom: 0.031
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Normal",
  9127. height: math.unit(13, "feet"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Big Boi",
  9132. height: math.unit(150, "meters")
  9133. },
  9134. {
  9135. name: "Mini Stomper",
  9136. height: math.unit(300, "meters")
  9137. },
  9138. {
  9139. name: "Macro",
  9140. height: math.unit(1000, "meters")
  9141. },
  9142. {
  9143. name: "Megamacro",
  9144. height: math.unit(11000, "meters")
  9145. },
  9146. {
  9147. name: "Gigamacro",
  9148. height: math.unit(11000, "km")
  9149. },
  9150. {
  9151. name: "Teramacro",
  9152. height: math.unit(420000, "km")
  9153. },
  9154. {
  9155. name: "Examacro",
  9156. height: math.unit(120, "parsecs")
  9157. },
  9158. {
  9159. name: "God Tho",
  9160. height: math.unit(98000000000, "parsecs")
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Scales" },
  9166. {
  9167. taurFront: {
  9168. height: math.unit(6, "feet"),
  9169. weight: math.unit(200, "lb"),
  9170. name: "Taur (Front)",
  9171. image: {
  9172. source: "./media/characters/scales/taur-front.svg",
  9173. extra: 1,
  9174. bottom: 0.05
  9175. }
  9176. },
  9177. taurBack: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(200, "lb"),
  9180. name: "Taur (Back)",
  9181. image: {
  9182. source: "./media/characters/scales/taur-back.svg",
  9183. extra: 1,
  9184. bottom: 0.08
  9185. }
  9186. },
  9187. anthro: {
  9188. height: math.unit(6 * 7 / 12, "feet"),
  9189. weight: math.unit(100, "lb"),
  9190. name: "Anthro",
  9191. image: {
  9192. source: "./media/characters/scales/anthro.svg",
  9193. extra: 1,
  9194. bottom: 0.06
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(12, "feet"),
  9202. default: true
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Koragos" },
  9208. {
  9209. front: {
  9210. height: math.unit(6, "feet"),
  9211. weight: math.unit(150, "lb"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/koragos/front.svg",
  9215. extra: 841 / 794,
  9216. bottom: 0.035
  9217. }
  9218. },
  9219. back: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(150, "lb"),
  9222. name: "Back",
  9223. image: {
  9224. source: "./media/characters/koragos/back.svg",
  9225. extra: 841 / 810,
  9226. bottom: 0.022
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(6 + 11 / 12, "feet"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(490, "feet")
  9239. },
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(10, "miles")
  9243. },
  9244. {
  9245. name: "Gigamacro",
  9246. height: math.unit(50, "miles")
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Xylrem" },
  9252. {
  9253. front: {
  9254. height: math.unit(6, "feet"),
  9255. weight: math.unit(250, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/xylrem/front.svg",
  9259. extra: 3323 / 3050,
  9260. bottom: 0.065
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Micro",
  9267. height: math.unit(4, "feet")
  9268. },
  9269. {
  9270. name: "Normal",
  9271. height: math.unit(16, "feet"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Macro",
  9276. height: math.unit(2720, "feet")
  9277. },
  9278. {
  9279. name: "Megamacro",
  9280. height: math.unit(25000, "miles")
  9281. },
  9282. ]
  9283. ))
  9284. characterMakers.push(() => makeCharacter(
  9285. { name: "Ikideru" },
  9286. {
  9287. front: {
  9288. height: math.unit(8, "feet"),
  9289. weight: math.unit(250, "kg"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/ikideru/front.svg",
  9293. extra: 930 / 870,
  9294. bottom: 0.087
  9295. }
  9296. },
  9297. back: {
  9298. height: math.unit(8, "feet"),
  9299. weight: math.unit(250, "kg"),
  9300. name: "Back",
  9301. image: {
  9302. source: "./media/characters/ikideru/back.svg",
  9303. extra: 919 / 852,
  9304. bottom: 0.055
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Rare",
  9311. height: math.unit(8, "feet"),
  9312. default: true
  9313. },
  9314. {
  9315. name: "Playful Loom",
  9316. height: math.unit(80, "feet")
  9317. },
  9318. {
  9319. name: "City Leaner",
  9320. height: math.unit(230, "feet")
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(2500, "feet")
  9325. },
  9326. {
  9327. name: "Gigamacro",
  9328. height: math.unit(26400, "feet")
  9329. },
  9330. {
  9331. name: "Tectonic Shifter",
  9332. height: math.unit(1.7, "megameters")
  9333. },
  9334. {
  9335. name: "Planet Carer",
  9336. height: math.unit(21, "megameters")
  9337. },
  9338. {
  9339. name: "God",
  9340. height: math.unit(11157.22, "parsecs")
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Neo" },
  9346. {
  9347. front: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(120, "lb"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/neo/front.svg"
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Micro",
  9359. height: math.unit(2, "inches"),
  9360. default: true
  9361. },
  9362. {
  9363. name: "Human Size",
  9364. height: math.unit(5 + 8 / 12, "feet")
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Chauncey (Chantz)" },
  9370. {
  9371. front: {
  9372. height: math.unit(13 + 10 / 12, "feet"),
  9373. weight: math.unit(5320, "lb"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/chauncey-chantz/front.svg",
  9377. extra: 1587 / 1435,
  9378. bottom: 0.02
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(13 + 10 / 12, "feet"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(45, "feet")
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(250, "miles")
  9395. },
  9396. {
  9397. name: "Planetary",
  9398. height: math.unit(10000, "miles")
  9399. },
  9400. {
  9401. name: "Galactic",
  9402. height: math.unit(40000, "parsecs")
  9403. },
  9404. {
  9405. name: "Universal",
  9406. height: math.unit(1, "yottameter")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Epifox" },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(150, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/epifox/front.svg",
  9419. extra: 1,
  9420. bottom: 0.075
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Micro",
  9427. height: math.unit(6, "inches")
  9428. },
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(12, "feet"),
  9432. default: true
  9433. },
  9434. {
  9435. name: "Macro",
  9436. height: math.unit(3810, "feet")
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(500, "miles")
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Colin T." },
  9446. {
  9447. front: {
  9448. height: math.unit(1.8796, "m"),
  9449. weight: math.unit(230, "lb"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/colin-t/front.svg",
  9453. extra: 1272 / 1193,
  9454. bottom: 0.07
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Micro",
  9461. height: math.unit(0.571, "meters")
  9462. },
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(1.8796, "meters"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Tall",
  9470. height: math.unit(4, "meters")
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(67.241, "meters")
  9475. },
  9476. {
  9477. name: "Megamacro",
  9478. height: math.unit(371.856, "meters")
  9479. },
  9480. {
  9481. name: "Planetary",
  9482. height: math.unit(12631.5689, "km")
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Matvei" },
  9488. {
  9489. front: {
  9490. height: math.unit(1.85, "meters"),
  9491. weight: math.unit(80, "kg"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/matvei/front.svg",
  9495. extra: 614 / 594,
  9496. bottom: 0.01
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(1.85, "meters"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Quincy" },
  9510. {
  9511. front: {
  9512. height: math.unit(5 + 9 / 12, "feet"),
  9513. weight: math.unit(70, "lb"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/quincy/front.svg",
  9517. extra: 3041 / 2751
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(5 + 9 / 12, "feet"),
  9522. weight: math.unit(70, "lb"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/quincy/back.svg",
  9526. extra: 3041 / 2751
  9527. }
  9528. },
  9529. flying: {
  9530. height: math.unit(5 + 4 / 12, "feet"),
  9531. weight: math.unit(70, "lb"),
  9532. name: "Flying",
  9533. image: {
  9534. source: "./media/characters/quincy/flying.svg",
  9535. extra: 1044 / 930
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(3, "cm")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(5 + 9 / 12, "feet")
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(200, "meters"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "Megamacro",
  9555. height: math.unit(1000, "meters")
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Vanrel" },
  9561. {
  9562. front: {
  9563. height: math.unit(4 + 7 / 12, "feet"),
  9564. weight: math.unit(150, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/vanrel/front.svg",
  9568. extra: 1,
  9569. bottom: 0.02
  9570. }
  9571. },
  9572. elemental: {
  9573. height: math.unit(3, "feet"),
  9574. weight: math.unit(150, "lb"),
  9575. name: "Elemental",
  9576. image: {
  9577. source: "./media/characters/vanrel/elemental.svg",
  9578. extra: 192.3/162.8,
  9579. bottom: 1.79/194.17
  9580. }
  9581. },
  9582. side: {
  9583. height: math.unit(4 + 7 / 12, "feet"),
  9584. weight: math.unit(150, "lb"),
  9585. name: "Side",
  9586. image: {
  9587. source: "./media/characters/vanrel/side.svg",
  9588. extra: 1,
  9589. bottom: 0.025
  9590. }
  9591. },
  9592. tome: {
  9593. height: math.unit(1.35, "feet"),
  9594. weight: math.unit(10, "lb"),
  9595. name: "Vanrel's Tome",
  9596. rename: true,
  9597. image: {
  9598. source: "./media/characters/vanrel/tome.svg"
  9599. }
  9600. },
  9601. beans: {
  9602. height: math.unit(0.89, "feet"),
  9603. name: "Beans",
  9604. image: {
  9605. source: "./media/characters/vanrel/beans.svg"
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(4 + 7 / 12, "feet"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Kuiper Vanrel" },
  9619. {
  9620. front: {
  9621. height: math.unit(7 + 5 / 12, "feet"),
  9622. weight: math.unit(150, "lb"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/kuiper-vanrel/front.svg",
  9626. extra: 1118 / 1068,
  9627. bottom: 0.09
  9628. }
  9629. },
  9630. foot: {
  9631. height: math.unit(0.55, "meters"),
  9632. name: "Foot",
  9633. image: {
  9634. source: "./media/characters/kuiper-vanrel/foot.svg",
  9635. }
  9636. },
  9637. battle: {
  9638. height: math.unit(6.824, "feet"),
  9639. weight: math.unit(150, "lb"),
  9640. name: "Battle",
  9641. image: {
  9642. source: "./media/characters/kuiper-vanrel/battle.svg",
  9643. extra: 1466/1327,
  9644. bottom: 29/1492.5
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(7 + 5 / 12, "feet"),
  9652. default: true
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Keset Vanrel" },
  9658. {
  9659. front: {
  9660. height: math.unit(8 + 5 / 12, "feet"),
  9661. weight: math.unit(150, "lb"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/keset-vanrel/front.svg",
  9665. extra: 1150 / 1084,
  9666. bottom: 0.05
  9667. }
  9668. },
  9669. hand: {
  9670. height: math.unit(0.6, "meters"),
  9671. name: "Hand",
  9672. image: {
  9673. source: "./media/characters/keset-vanrel/hand.svg"
  9674. }
  9675. },
  9676. foot: {
  9677. height: math.unit(0.94978, "meters"),
  9678. name: "Foot",
  9679. image: {
  9680. source: "./media/characters/keset-vanrel/foot.svg"
  9681. }
  9682. },
  9683. battle: {
  9684. height: math.unit(7.408, "feet"),
  9685. weight: math.unit(150, "lb"),
  9686. name: "Battle",
  9687. image: {
  9688. source: "./media/characters/keset-vanrel/battle.svg",
  9689. extra: 1890/1386,
  9690. bottom: 73.28/1970
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Normal",
  9697. height: math.unit(8 + 5 / 12, "feet"),
  9698. default: true
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Neos" },
  9704. {
  9705. front: {
  9706. height: math.unit(6, "feet"),
  9707. weight: math.unit(150, "lb"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/neos/front.svg",
  9711. extra: 1696 / 992,
  9712. bottom: 0.14
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(54, "cm"),
  9720. default: true
  9721. },
  9722. {
  9723. name: "Macro",
  9724. height: math.unit(100, "m")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(10, "km")
  9729. },
  9730. {
  9731. name: "Megamacro+",
  9732. height: math.unit(100, "km")
  9733. },
  9734. {
  9735. name: "Gigamacro",
  9736. height: math.unit(100, "Mm")
  9737. },
  9738. {
  9739. name: "Teramacro",
  9740. height: math.unit(100, "Gm")
  9741. },
  9742. {
  9743. name: "Examacro",
  9744. height: math.unit(100, "Em")
  9745. },
  9746. {
  9747. name: "Godly",
  9748. height: math.unit(10000, "Ym")
  9749. },
  9750. {
  9751. name: "Beyond Godly",
  9752. height: math.unit(10000000, "Ym")
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Sammy Mouse" },
  9758. {
  9759. feminine: {
  9760. height: math.unit(5, "feet"),
  9761. weight: math.unit(100, "lb"),
  9762. name: "Feminine",
  9763. image: {
  9764. source: "./media/characters/sammy-mouse/feminine.svg",
  9765. extra: 2526 / 2425,
  9766. bottom: 0.123
  9767. }
  9768. },
  9769. masculine: {
  9770. height: math.unit(5, "feet"),
  9771. weight: math.unit(100, "lb"),
  9772. name: "Masculine",
  9773. image: {
  9774. source: "./media/characters/sammy-mouse/masculine.svg",
  9775. extra: 2526 / 2425,
  9776. bottom: 0.123
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(5, "inches")
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(5, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(60, "feet")
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Kole" },
  9798. {
  9799. front: {
  9800. height: math.unit(4, "feet"),
  9801. weight: math.unit(50, "lb"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/kole/front.svg",
  9805. extra: 1423 / 1303,
  9806. bottom: 0.025
  9807. }
  9808. },
  9809. back: {
  9810. height: math.unit(4, "feet"),
  9811. weight: math.unit(50, "lb"),
  9812. name: "Back",
  9813. image: {
  9814. source: "./media/characters/kole/back.svg",
  9815. extra: 1426 / 1280,
  9816. bottom: 0.02
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(4, "feet"),
  9824. default: true
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Rufran" },
  9830. {
  9831. front: {
  9832. height: math.unit(2 + 6 / 12, "feet"),
  9833. weight: math.unit(20, "lb"),
  9834. name: "Front",
  9835. image: {
  9836. source: "./media/characters/rufran/front.svg",
  9837. extra: 2041 / 1839,
  9838. bottom: 0.055
  9839. }
  9840. },
  9841. back: {
  9842. height: math.unit(2 + 6 / 12, "feet"),
  9843. weight: math.unit(20, "lb"),
  9844. name: "Back",
  9845. image: {
  9846. source: "./media/characters/rufran/back.svg",
  9847. extra: 2054 / 1839,
  9848. bottom: 0.01
  9849. }
  9850. },
  9851. hand: {
  9852. height: math.unit(0.2166, "meters"),
  9853. name: "Hand",
  9854. image: {
  9855. source: "./media/characters/rufran/hand.svg"
  9856. }
  9857. },
  9858. foot: {
  9859. height: math.unit(0.185, "meters"),
  9860. name: "Foot",
  9861. image: {
  9862. source: "./media/characters/rufran/foot.svg"
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Micro",
  9869. height: math.unit(1, "inch")
  9870. },
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(2 + 6 / 12, "feet"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Big",
  9878. height: math.unit(60, "feet")
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(325, "feet")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Chip" },
  9888. {
  9889. front: {
  9890. height: math.unit(0.3, "meters"),
  9891. weight: math.unit(3.5, "kg"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/chip/front.svg",
  9895. extra: 748 / 674
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Micro",
  9902. height: math.unit(1, "inch"),
  9903. default: true
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Torvid" },
  9909. {
  9910. side: {
  9911. height: math.unit(2.3, "meters"),
  9912. weight: math.unit(3500, "lb"),
  9913. name: "Side",
  9914. image: {
  9915. source: "./media/characters/torvid/side.svg",
  9916. extra: 1972 / 722,
  9917. bottom: 0.035
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(2.3, "meters"),
  9925. default: true
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Susan" },
  9931. {
  9932. front: {
  9933. height: math.unit(2, "meters"),
  9934. weight: math.unit(150.5, "kg"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/susan/front.svg",
  9938. extra: 693 / 635,
  9939. bottom: 0.05
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Megamacro",
  9946. height: math.unit(505, "miles"),
  9947. default: true
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Raindrops" },
  9953. {
  9954. front: {
  9955. height: math.unit(6, "feet"),
  9956. weight: math.unit(150, "lb"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/raindrops/front.svg",
  9960. extra: 2655 / 2461,
  9961. bottom: 0.02
  9962. }
  9963. },
  9964. back: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(150, "lb"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/raindrops/back.svg",
  9970. extra: 2574 / 2400,
  9971. bottom: 0.03
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Micro",
  9978. height: math.unit(6, "inches")
  9979. },
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(6 + 2 / 12, "feet")
  9983. },
  9984. {
  9985. name: "Macro",
  9986. height: math.unit(131, "feet"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Megamacro",
  9991. height: math.unit(15, "miles")
  9992. },
  9993. {
  9994. name: "Gigamacro",
  9995. height: math.unit(4000, "miles")
  9996. },
  9997. {
  9998. name: "Teramacro",
  9999. height: math.unit(315000, "miles")
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Tezwa" },
  10005. {
  10006. front: {
  10007. height: math.unit(2.794, "meters"),
  10008. weight: math.unit(325, "kg"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/tezwa/front.svg",
  10012. extra: 2083 / 1906,
  10013. bottom: 0.031
  10014. }
  10015. },
  10016. foot: {
  10017. height: math.unit(0.687, "meters"),
  10018. name: "Foot",
  10019. image: {
  10020. source: "./media/characters/tezwa/foot.svg"
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(9 + 2 / 12, "feet"),
  10028. default: true
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Typhus" },
  10034. {
  10035. front: {
  10036. height: math.unit(58, "feet"),
  10037. weight: math.unit(89000, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/typhus/front.svg",
  10041. extra: 816 / 800,
  10042. bottom: 0.065
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(58, "feet"),
  10050. default: true
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Lyra Von Wulf" },
  10056. {
  10057. front: {
  10058. height: math.unit(12, "feet"),
  10059. weight: math.unit(6, "tonnes"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/lyra-von-wulf/front.svg",
  10063. extra: 1,
  10064. bottom: 0.10
  10065. }
  10066. },
  10067. frontMecha: {
  10068. height: math.unit(12, "feet"),
  10069. weight: math.unit(12, "tonnes"),
  10070. name: "Front (Mecha)",
  10071. image: {
  10072. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10073. extra: 1,
  10074. bottom: 0.042
  10075. }
  10076. },
  10077. maw: {
  10078. height: math.unit(2.2, "feet"),
  10079. name: "Maw",
  10080. image: {
  10081. source: "./media/characters/lyra-von-wulf/maw.svg"
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(12, "feet"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Classic",
  10093. height: math.unit(50, "feet")
  10094. },
  10095. {
  10096. name: "Macro",
  10097. height: math.unit(500, "feet")
  10098. },
  10099. {
  10100. name: "Megamacro",
  10101. height: math.unit(1, "mile")
  10102. },
  10103. {
  10104. name: "Gigamacro",
  10105. height: math.unit(400, "miles")
  10106. },
  10107. {
  10108. name: "Teramacro",
  10109. height: math.unit(22000, "miles")
  10110. },
  10111. {
  10112. name: "Solarmacro",
  10113. height: math.unit(8600000, "miles")
  10114. },
  10115. {
  10116. name: "Galactic",
  10117. height: math.unit(1057000, "lightyears")
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Dixon" },
  10123. {
  10124. front: {
  10125. height: math.unit(6 + 10 / 12, "feet"),
  10126. weight: math.unit(150, "lb"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/dixon/front.svg",
  10130. extra: 3361 / 3209,
  10131. bottom: 0.01
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(6 + 10 / 12, "feet"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Big",
  10143. height: math.unit(12, "meters")
  10144. },
  10145. {
  10146. name: "Macro",
  10147. height: math.unit(500, "meters")
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(2, "km")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Kauko" },
  10157. {
  10158. front: {
  10159. height: math.unit(185, "cm"),
  10160. weight: math.unit(68, "kg"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/kauko/front.svg",
  10164. extra: 1455 / 1421,
  10165. bottom: 0.03
  10166. }
  10167. },
  10168. back: {
  10169. height: math.unit(185, "cm"),
  10170. weight: math.unit(68, "kg"),
  10171. name: "Back",
  10172. image: {
  10173. source: "./media/characters/kauko/back.svg",
  10174. extra: 1455 / 1421,
  10175. bottom: 0.004
  10176. }
  10177. },
  10178. },
  10179. [
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(185, "cm"),
  10183. default: true
  10184. },
  10185. ]
  10186. ))
  10187. characterMakers.push(() => makeCharacter(
  10188. { name: "Varg" },
  10189. {
  10190. front: {
  10191. height: math.unit(6, "feet"),
  10192. weight: math.unit(150, "kg"),
  10193. name: "Front",
  10194. image: {
  10195. source: "./media/characters/varg/front.svg",
  10196. extra: 1108 / 1018,
  10197. bottom: 0.0375
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(5, "meters")
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(200, "meters")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(20, "kilometers")
  10213. },
  10214. {
  10215. name: "True Size",
  10216. height: math.unit(211, "km"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Gigamacro",
  10221. height: math.unit(1000, "km")
  10222. },
  10223. {
  10224. name: "Gigamacro+",
  10225. height: math.unit(8000, "km")
  10226. },
  10227. {
  10228. name: "Teramacro",
  10229. height: math.unit(1000000, "km")
  10230. },
  10231. ]
  10232. ))
  10233. characterMakers.push(() => makeCharacter(
  10234. { name: "Dayza" },
  10235. {
  10236. front: {
  10237. height: math.unit(7 + 7 / 12, "feet"),
  10238. weight: math.unit(267, "lb"),
  10239. name: "Front",
  10240. image: {
  10241. source: "./media/characters/dayza/front.svg",
  10242. extra: 1262 / 1200,
  10243. bottom: 0.035
  10244. }
  10245. },
  10246. side: {
  10247. height: math.unit(7 + 7 / 12, "feet"),
  10248. weight: math.unit(267, "lb"),
  10249. name: "Side",
  10250. image: {
  10251. source: "./media/characters/dayza/side.svg",
  10252. extra: 1295 / 1245,
  10253. bottom: 0.05
  10254. }
  10255. },
  10256. back: {
  10257. height: math.unit(7 + 7 / 12, "feet"),
  10258. weight: math.unit(267, "lb"),
  10259. name: "Back",
  10260. image: {
  10261. source: "./media/characters/dayza/back.svg",
  10262. extra: 1241 / 1170
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(7 + 7 / 12, "feet"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(155, "feet")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Xanthos" },
  10280. {
  10281. front: {
  10282. height: math.unit(6 + 5 / 12, "feet"),
  10283. weight: math.unit(160, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/xanthos/front.svg",
  10287. extra: 1,
  10288. bottom: 0.04
  10289. }
  10290. },
  10291. back: {
  10292. height: math.unit(6 + 5 / 12, "feet"),
  10293. weight: math.unit(160, "lb"),
  10294. name: "Back",
  10295. image: {
  10296. source: "./media/characters/xanthos/back.svg",
  10297. extra: 1,
  10298. bottom: 0.03
  10299. }
  10300. },
  10301. hand: {
  10302. height: math.unit(0.928, "feet"),
  10303. name: "Hand",
  10304. image: {
  10305. source: "./media/characters/xanthos/hand.svg"
  10306. }
  10307. },
  10308. foot: {
  10309. height: math.unit(1.286, "feet"),
  10310. name: "Foot",
  10311. image: {
  10312. source: "./media/characters/xanthos/foot.svg"
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(6 + 5 / 12, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Normal+",
  10324. height: math.unit(6, "meters")
  10325. },
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(40, "feet")
  10329. },
  10330. {
  10331. name: "Macro+",
  10332. height: math.unit(200, "meters")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(20, "km")
  10337. },
  10338. {
  10339. name: "Megamacro+",
  10340. height: math.unit(100, "km")
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Grynn" },
  10346. {
  10347. front: {
  10348. height: math.unit(6 + 3 / 12, "feet"),
  10349. weight: math.unit(215, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/grynn/front.svg",
  10353. extra: 4627 / 4209,
  10354. bottom: 0.047
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(6, "inches")
  10362. },
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(6 + 3 / 12, "feet"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Big",
  10370. height: math.unit(104, "feet")
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(944, "feet")
  10375. },
  10376. {
  10377. name: "Macro+",
  10378. height: math.unit(9480, "feet")
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(78752, "feet")
  10383. },
  10384. {
  10385. name: "Megamacro+",
  10386. height: math.unit(630128, "feet")
  10387. },
  10388. {
  10389. name: "Megamacro++",
  10390. height: math.unit(3150695, "feet")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Mocha Aura" },
  10396. {
  10397. front: {
  10398. height: math.unit(7 + 5 / 12, "feet"),
  10399. weight: math.unit(450, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/mocha-aura/front.svg",
  10403. extra: 1907 / 1817,
  10404. bottom: 0.04
  10405. }
  10406. },
  10407. back: {
  10408. height: math.unit(7 + 5 / 12, "feet"),
  10409. weight: math.unit(450, "lb"),
  10410. name: "Back",
  10411. image: {
  10412. source: "./media/characters/mocha-aura/back.svg",
  10413. extra: 1900 / 1825,
  10414. bottom: 0.045
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Nano",
  10421. height: math.unit(1, "nm")
  10422. },
  10423. {
  10424. name: "Megamicro",
  10425. height: math.unit(1, "mm")
  10426. },
  10427. {
  10428. name: "Micro",
  10429. height: math.unit(3, "inches")
  10430. },
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(7 + 5 / 12, "feet"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "Macro",
  10438. height: math.unit(30, "feet")
  10439. },
  10440. {
  10441. name: "Megamacro",
  10442. height: math.unit(3500, "feet")
  10443. },
  10444. {
  10445. name: "Teramacro",
  10446. height: math.unit(500000, "miles")
  10447. },
  10448. {
  10449. name: "Petamacro",
  10450. height: math.unit(50000000000000000, "parsecs")
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Ilisha Devya" },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(150, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/ilisha-devya/front.svg",
  10463. extra: 1,
  10464. bottom: 0.175
  10465. }
  10466. },
  10467. back: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(150, "lb"),
  10470. name: "Back",
  10471. image: {
  10472. source: "./media/characters/ilisha-devya/back.svg",
  10473. extra: 1,
  10474. bottom: 0.015
  10475. }
  10476. },
  10477. },
  10478. [
  10479. {
  10480. name: "Macro",
  10481. height: math.unit(500, "feet"),
  10482. default: true
  10483. },
  10484. {
  10485. name: "Megamacro",
  10486. height: math.unit(10, "miles")
  10487. },
  10488. {
  10489. name: "Gigamacro",
  10490. height: math.unit(100000, "miles")
  10491. },
  10492. {
  10493. name: "Examacro",
  10494. height: math.unit(1e9, "lightyears")
  10495. },
  10496. {
  10497. name: "Omniversal",
  10498. height: math.unit(1e33, "lightyears")
  10499. },
  10500. {
  10501. name: "Beyond Infinite",
  10502. height: math.unit(1e100, "lightyears")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Mira" },
  10508. {
  10509. Side: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(150, "lb"),
  10512. name: "Side",
  10513. image: {
  10514. source: "./media/characters/mira/side.svg",
  10515. extra: 900 / 799,
  10516. bottom: 0.02
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Human Size",
  10523. height: math.unit(6, "feet")
  10524. },
  10525. {
  10526. name: "Macro",
  10527. height: math.unit(100, "feet"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Megamacro",
  10532. height: math.unit(10, "miles")
  10533. },
  10534. {
  10535. name: "Gigamacro",
  10536. height: math.unit(25000, "miles")
  10537. },
  10538. {
  10539. name: "Teramacro",
  10540. height: math.unit(300, "AU")
  10541. },
  10542. {
  10543. name: "Full Size",
  10544. height: math.unit(4.5e10, "lightyears")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Holly" },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(150, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/holly/front.svg",
  10557. extra: 639 / 606
  10558. }
  10559. },
  10560. back: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(150, "lb"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/holly/back.svg",
  10566. extra: 623 / 598
  10567. }
  10568. },
  10569. frontWorking: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(150, "lb"),
  10572. name: "Front (Working)",
  10573. image: {
  10574. source: "./media/characters/holly/front-working.svg",
  10575. extra: 607 / 577,
  10576. bottom: 0.048
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(12 + 3 / 12, "feet"),
  10584. default: true
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Porter" },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(150, "lb"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/porter/front.svg",
  10597. extra: 1,
  10598. bottom: 0.01
  10599. }
  10600. },
  10601. frontRobes: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(150, "lb"),
  10604. name: "Front (Robes)",
  10605. image: {
  10606. source: "./media/characters/porter/front-robes.svg",
  10607. extra: 1.01,
  10608. bottom: 0.01
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Normal",
  10615. height: math.unit(11 + 9 / 12, "feet"),
  10616. default: true
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Lucy" },
  10622. {
  10623. legendary: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(150, "lb"),
  10626. name: "Legendary",
  10627. image: {
  10628. source: "./media/characters/lucy/legendary.svg",
  10629. extra: 1355 / 1100,
  10630. bottom: 0.045
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Legendary",
  10637. height: math.unit(86882 * 2, "miles"),
  10638. default: true
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Drusilla" },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/drusilla/front.svg",
  10651. extra: 678 / 635,
  10652. bottom: 0.03
  10653. }
  10654. },
  10655. back: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(150, "lb"),
  10658. name: "Back",
  10659. image: {
  10660. source: "./media/characters/drusilla/back.svg",
  10661. extra: 678 / 635,
  10662. bottom: 0.005
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(100, "feet")
  10670. },
  10671. {
  10672. name: "Canon Height",
  10673. height: math.unit(2000, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Renard Thatch" },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(180, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/renard-thatch/front.svg",
  10687. extra: 2411 / 2275,
  10688. bottom: 0.01
  10689. }
  10690. },
  10691. frontPosing: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(180, "lb"),
  10694. name: "Front (Posing)",
  10695. image: {
  10696. source: "./media/characters/renard-thatch/front-posing.svg",
  10697. extra: 2381 / 2261,
  10698. bottom: 0.01
  10699. }
  10700. },
  10701. back: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(180, "lb"),
  10704. name: "Back",
  10705. image: {
  10706. source: "./media/characters/renard-thatch/back.svg",
  10707. extra: 2428 / 2288
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Micro",
  10714. height: math.unit(3, "inches")
  10715. },
  10716. {
  10717. name: "Default",
  10718. height: math.unit(6, "feet"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Macro",
  10723. height: math.unit(75, "feet")
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Sekvra" },
  10729. {
  10730. front: {
  10731. height: math.unit(1450, "feet"),
  10732. weight: math.unit(1.21e6, "tons"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/sekvra/front.svg",
  10736. extra: 1,
  10737. bottom: 0.03
  10738. }
  10739. },
  10740. frontClothed: {
  10741. height: math.unit(1450, "feet"),
  10742. weight: math.unit(1.21e6, "tons"),
  10743. name: "Front (Clothed)",
  10744. image: {
  10745. source: "./media/characters/sekvra/front-clothed.svg",
  10746. extra: 1,
  10747. bottom: 0.03
  10748. }
  10749. },
  10750. side: {
  10751. height: math.unit(1450, "feet"),
  10752. weight: math.unit(1.21e6, "tons"),
  10753. name: "Side",
  10754. image: {
  10755. source: "./media/characters/sekvra/side.svg",
  10756. extra: 1,
  10757. bottom: 0.025
  10758. }
  10759. },
  10760. back: {
  10761. height: math.unit(1450, "feet"),
  10762. weight: math.unit(1.21e6, "tons"),
  10763. name: "Back",
  10764. image: {
  10765. source: "./media/characters/sekvra/back.svg",
  10766. extra: 1,
  10767. bottom: 0.005
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Macro",
  10774. height: math.unit(1450, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(15000, "feet")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Carmine" },
  10785. {
  10786. front: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/carmine/front.svg",
  10792. extra: 1,
  10793. bottom: 0.035
  10794. }
  10795. },
  10796. frontArmor: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Front (Armor)",
  10800. image: {
  10801. source: "./media/characters/carmine/front-armor.svg",
  10802. extra: 1,
  10803. bottom: 0.035
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Large",
  10810. height: math.unit(1, "mile")
  10811. },
  10812. {
  10813. name: "Huge",
  10814. height: math.unit(40, "miles"),
  10815. default: true
  10816. },
  10817. {
  10818. name: "Colossal",
  10819. height: math.unit(2500, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Elyssia" },
  10825. {
  10826. front: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(150, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/elyssia/front.svg",
  10832. extra: 2201 / 2035,
  10833. bottom: 0.05
  10834. }
  10835. },
  10836. frontClothed: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(150, "lb"),
  10839. name: "Front (Clothed)",
  10840. image: {
  10841. source: "./media/characters/elyssia/front-clothed.svg",
  10842. extra: 2201 / 2035,
  10843. bottom: 0.05
  10844. }
  10845. },
  10846. back: {
  10847. height: math.unit(6, "feet"),
  10848. weight: math.unit(150, "lb"),
  10849. name: "Back",
  10850. image: {
  10851. source: "./media/characters/elyssia/back.svg",
  10852. extra: 2201 / 2035,
  10853. bottom: 0.013
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Smaller",
  10860. height: math.unit(150, "feet")
  10861. },
  10862. {
  10863. name: "Standard",
  10864. height: math.unit(1400, "feet"),
  10865. default: true
  10866. },
  10867. {
  10868. name: "Distracted",
  10869. height: math.unit(15000, "feet")
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Geno Maxwell" },
  10875. {
  10876. front: {
  10877. height: math.unit(7 + 4 / 12, "feet"),
  10878. weight: math.unit(500, "lb"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/geno-maxwell/front.svg",
  10882. extra: 2207 / 2040,
  10883. bottom: 0.015
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(3, "inches")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(7 + 4 / 12, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(220, "feet")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(11, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Regena Maxwell" },
  10909. {
  10910. front: {
  10911. height: math.unit(7 + 4 / 12, "feet"),
  10912. weight: math.unit(500, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/regena-maxwell/front.svg",
  10916. extra: 3115 / 2770,
  10917. bottom: 0.02
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(7 + 4 / 12, "feet"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(220, "feet")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(11, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "XGlidingDragonX" },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10946. extra: 860 / 690,
  10947. bottom: 0.03
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(1.7, "meters"),
  10955. default: true
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Quilly" },
  10961. {
  10962. front: {
  10963. height: math.unit(6, "feet"),
  10964. weight: math.unit(150, "lb"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/quilly/front.svg",
  10968. extra: 890 / 776
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Gigamacro",
  10975. height: math.unit(404090, "miles"),
  10976. default: true
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Tempest" },
  10982. {
  10983. front: {
  10984. height: math.unit(7 + 8 / 12, "feet"),
  10985. weight: math.unit(350, "lb"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/tempest/front.svg",
  10989. extra: 1175 / 1086,
  10990. bottom: 0.02
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(7 + 8 / 12, "feet"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Rodger" },
  11004. {
  11005. side: {
  11006. height: math.unit(4 + 5 / 12, "feet"),
  11007. weight: math.unit(80, "lb"),
  11008. name: "Side",
  11009. image: {
  11010. source: "./media/characters/rodger/side.svg",
  11011. extra: 1235 / 1118
  11012. }
  11013. },
  11014. },
  11015. [
  11016. {
  11017. name: "Micro",
  11018. height: math.unit(1, "inch")
  11019. },
  11020. {
  11021. name: "Normal",
  11022. height: math.unit(4 + 5 / 12, "feet"),
  11023. default: true
  11024. },
  11025. {
  11026. name: "Macro",
  11027. height: math.unit(120, "feet")
  11028. },
  11029. ]
  11030. ))
  11031. characterMakers.push(() => makeCharacter(
  11032. { name: "Danyel" },
  11033. {
  11034. front: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(150, "lb"),
  11037. name: "Front",
  11038. image: {
  11039. source: "./media/characters/danyel/front.svg",
  11040. extra: 1185 / 1123,
  11041. bottom: 0.05
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Shrunken",
  11048. height: math.unit(0.5, "mm")
  11049. },
  11050. {
  11051. name: "Micro",
  11052. height: math.unit(1, "mm"),
  11053. default: true
  11054. },
  11055. {
  11056. name: "Upsized",
  11057. height: math.unit(5 + 5 / 12, "feet")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Vivian Bijoux" },
  11063. {
  11064. front: {
  11065. height: math.unit(5 + 6 / 12, "feet"),
  11066. weight: math.unit(200, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/vivian-bijoux/front.svg",
  11070. extra: 1,
  11071. bottom: 0.072
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(5 + 6 / 12, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Bad Dream",
  11083. height: math.unit(500, "feet")
  11084. },
  11085. {
  11086. name: "Nightmare",
  11087. height: math.unit(500, "miles")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Zeta" },
  11093. {
  11094. front: {
  11095. height: math.unit(6 + 1 / 12, "feet"),
  11096. weight: math.unit(260, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/zeta/front.svg",
  11100. extra: 1968 / 1889,
  11101. bottom: 0.06
  11102. }
  11103. },
  11104. back: {
  11105. height: math.unit(6 + 1 / 12, "feet"),
  11106. weight: math.unit(260, "lb"),
  11107. name: "Back",
  11108. image: {
  11109. source: "./media/characters/zeta/back.svg",
  11110. extra: 1944 / 1858,
  11111. bottom: 0.03
  11112. }
  11113. },
  11114. hand: {
  11115. height: math.unit(1.112, "feet"),
  11116. name: "Hand",
  11117. image: {
  11118. source: "./media/characters/zeta/hand.svg"
  11119. }
  11120. },
  11121. foot: {
  11122. height: math.unit(1.48, "feet"),
  11123. name: "Foot",
  11124. image: {
  11125. source: "./media/characters/zeta/foot.svg"
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Micro",
  11132. height: math.unit(6, "inches")
  11133. },
  11134. {
  11135. name: "Normal",
  11136. height: math.unit(6 + 1 / 12, "feet"),
  11137. default: true
  11138. },
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(20, "feet")
  11142. },
  11143. ]
  11144. ))
  11145. characterMakers.push(() => makeCharacter(
  11146. { name: "Jamie Larsen" },
  11147. {
  11148. front: {
  11149. height: math.unit(6, "feet"),
  11150. weight: math.unit(150, "lb"),
  11151. name: "Front",
  11152. image: {
  11153. source: "./media/characters/jamie-larsen/front.svg",
  11154. extra: 962 / 933,
  11155. bottom: 0.02
  11156. }
  11157. },
  11158. back: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Back",
  11162. image: {
  11163. source: "./media/characters/jamie-larsen/back.svg",
  11164. extra: 997 / 946
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(28 + 7 / 12, "feet"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Macro+",
  11176. height: math.unit(180, "feet")
  11177. },
  11178. {
  11179. name: "Megamacro",
  11180. height: math.unit(10, "miles")
  11181. },
  11182. {
  11183. name: "Gigamacro",
  11184. height: math.unit(200000, "miles")
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Vance" },
  11190. {
  11191. front: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(120, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/vance/front.svg",
  11197. extra: 1980 / 1890,
  11198. bottom: 0.09
  11199. }
  11200. },
  11201. back: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(120, "lb"),
  11204. name: "Back",
  11205. image: {
  11206. source: "./media/characters/vance/back.svg",
  11207. extra: 2081 / 1994,
  11208. bottom: 0.014
  11209. }
  11210. },
  11211. hand: {
  11212. height: math.unit(0.88, "feet"),
  11213. name: "Hand",
  11214. image: {
  11215. source: "./media/characters/vance/hand.svg"
  11216. }
  11217. },
  11218. foot: {
  11219. height: math.unit(0.64, "feet"),
  11220. name: "Foot",
  11221. image: {
  11222. source: "./media/characters/vance/foot.svg"
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Small",
  11229. height: math.unit(90, "feet"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Macro",
  11234. height: math.unit(100, "meters")
  11235. },
  11236. {
  11237. name: "Megamacro",
  11238. height: math.unit(15, "miles")
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Xochitl" },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(180, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/xochitl/front.svg",
  11251. extra: 2297 / 2261,
  11252. bottom: 0.065
  11253. }
  11254. },
  11255. back: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(180, "lb"),
  11258. name: "Back",
  11259. image: {
  11260. source: "./media/characters/xochitl/back.svg",
  11261. extra: 2386 / 2354,
  11262. bottom: 0.01
  11263. }
  11264. },
  11265. foot: {
  11266. height: math.unit(6 / 5 * 1.15, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Foot",
  11269. image: {
  11270. source: "./media/characters/xochitl/foot.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(80, "feet")
  11278. },
  11279. {
  11280. name: "Macro+",
  11281. height: math.unit(400, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Gigamacro",
  11286. height: math.unit(80000, "miles")
  11287. },
  11288. {
  11289. name: "Gigamacro+",
  11290. height: math.unit(400000, "miles")
  11291. },
  11292. {
  11293. name: "Teramacro",
  11294. height: math.unit(300, "AU")
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Vincent" },
  11300. {
  11301. front: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/vincent/front.svg",
  11307. extra: 1130 / 1080,
  11308. bottom: 0.055
  11309. }
  11310. },
  11311. beak: {
  11312. height: math.unit(6 * 0.1, "feet"),
  11313. name: "Beak",
  11314. image: {
  11315. source: "./media/characters/vincent/beak.svg"
  11316. }
  11317. },
  11318. hand: {
  11319. height: math.unit(6 * 0.85, "feet"),
  11320. weight: math.unit(150, "lb"),
  11321. name: "Hand",
  11322. image: {
  11323. source: "./media/characters/vincent/hand.svg"
  11324. }
  11325. },
  11326. foot: {
  11327. height: math.unit(6 * 0.19, "feet"),
  11328. weight: math.unit(150, "lb"),
  11329. name: "Foot",
  11330. image: {
  11331. source: "./media/characters/vincent/foot.svg"
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Base",
  11338. height: math.unit(6 + 5 / 12, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(300, "feet")
  11344. },
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(2, "miles")
  11348. },
  11349. {
  11350. name: "Gigamacro",
  11351. height: math.unit(1000, "miles")
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Jay" },
  11357. {
  11358. front: {
  11359. height: math.unit(6 + 2 / 12, "feet"),
  11360. weight: math.unit(265, "lb"),
  11361. name: "Front",
  11362. image: {
  11363. source: "./media/characters/jay/front.svg",
  11364. extra: 1510 / 1430,
  11365. bottom: 0.042
  11366. }
  11367. },
  11368. back: {
  11369. height: math.unit(6 + 2 / 12, "feet"),
  11370. weight: math.unit(265, "lb"),
  11371. name: "Back",
  11372. image: {
  11373. source: "./media/characters/jay/back.svg",
  11374. extra: 1510 / 1430,
  11375. bottom: 0.025
  11376. }
  11377. },
  11378. clothed: {
  11379. height: math.unit(6 + 2 / 12, "feet"),
  11380. weight: math.unit(265, "lb"),
  11381. name: "Front (Clothed)",
  11382. image: {
  11383. source: "./media/characters/jay/clothed.svg",
  11384. extra: 744 / 699,
  11385. bottom: 0.043
  11386. }
  11387. },
  11388. head: {
  11389. height: math.unit(1.772, "feet"),
  11390. name: "Head",
  11391. image: {
  11392. source: "./media/characters/jay/head.svg"
  11393. }
  11394. },
  11395. sizeRay: {
  11396. height: math.unit(1.331, "feet"),
  11397. name: "Size Ray",
  11398. image: {
  11399. source: "./media/characters/jay/size-ray.svg"
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Micro",
  11406. height: math.unit(1, "inch")
  11407. },
  11408. {
  11409. name: "Normal",
  11410. height: math.unit(6 + 2 / 12, "feet"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(1, "mile")
  11416. },
  11417. {
  11418. name: "Megamacro",
  11419. height: math.unit(100, "miles")
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Coatl" },
  11425. {
  11426. front: {
  11427. height: math.unit(2, "meters"),
  11428. weight: math.unit(500, "kg"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/coatl/front.svg",
  11432. extra: 3948 / 3500,
  11433. bottom: 0.082
  11434. }
  11435. },
  11436. },
  11437. [
  11438. {
  11439. name: "Normal",
  11440. height: math.unit(4, "meters")
  11441. },
  11442. {
  11443. name: "Macro",
  11444. height: math.unit(100, "meters"),
  11445. default: true
  11446. },
  11447. {
  11448. name: "Macro+",
  11449. height: math.unit(300, "meters")
  11450. },
  11451. {
  11452. name: "Megamacro",
  11453. height: math.unit(3, "gigameters")
  11454. },
  11455. {
  11456. name: "Megamacro+",
  11457. height: math.unit(300, "terameters")
  11458. },
  11459. {
  11460. name: "Megamacro++",
  11461. height: math.unit(3, "lightyears")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Shiroryu" },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(50, "kg"),
  11471. name: "front",
  11472. image: {
  11473. source: "./media/characters/shiroryu/front.svg",
  11474. extra: 1990 / 1935
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Mortal Mingling",
  11481. height: math.unit(3, "meters")
  11482. },
  11483. {
  11484. name: "Kaiju-ish",
  11485. height: math.unit(250, "meters")
  11486. },
  11487. {
  11488. name: "Somewhat Godly",
  11489. height: math.unit(400, "km"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Planetary",
  11494. height: math.unit(300, "megameters")
  11495. },
  11496. {
  11497. name: "Galaxy-dwarfing",
  11498. height: math.unit(450, "kiloparsecs")
  11499. },
  11500. {
  11501. name: "Universe Eater",
  11502. height: math.unit(150, "gigaparsecs")
  11503. },
  11504. {
  11505. name: "Almost Immeasurable",
  11506. height: math.unit(1.3e266, "yottaparsecs")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Umeko" },
  11512. {
  11513. front: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(150, "lb"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/umeko/front.svg",
  11519. extra: 1,
  11520. bottom: 0.019
  11521. }
  11522. },
  11523. frontArmored: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(150, "lb"),
  11526. name: "Front (Armored)",
  11527. image: {
  11528. source: "./media/characters/umeko/front-armored.svg",
  11529. extra: 1,
  11530. bottom: 0.021
  11531. }
  11532. },
  11533. },
  11534. [
  11535. {
  11536. name: "Macro",
  11537. height: math.unit(220, "feet"),
  11538. default: true
  11539. },
  11540. {
  11541. name: "Guardian Dragon",
  11542. height: math.unit(50, "miles")
  11543. },
  11544. {
  11545. name: "Cosmic",
  11546. height: math.unit(800000, "miles")
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Cassidy" },
  11552. {
  11553. front: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(150, "lb"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/cassidy/front.svg",
  11559. extra: 1,
  11560. bottom: 0.043
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Canon Height",
  11567. height: math.unit(120, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro+",
  11572. height: math.unit(400, "feet")
  11573. },
  11574. {
  11575. name: "Macro++",
  11576. height: math.unit(4000, "feet")
  11577. },
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(3, "miles")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Isaac" },
  11586. {
  11587. front: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(150, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/isaac/front.svg",
  11593. extra: 896 / 815,
  11594. bottom: 0.11
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Human Size",
  11601. height: math.unit(8, "feet"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Macro",
  11606. height: math.unit(400, "feet")
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(50, "miles")
  11611. },
  11612. {
  11613. name: "Canon Height",
  11614. height: math.unit(200, "AU")
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Sleekit" },
  11620. {
  11621. front: {
  11622. height: math.unit(6, "feet"),
  11623. weight: math.unit(72, "kg"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/sleekit/front.svg",
  11627. extra: 4693 / 4487,
  11628. bottom: 0.012
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Minimum Height",
  11635. height: math.unit(10, "meters")
  11636. },
  11637. {
  11638. name: "Smaller",
  11639. height: math.unit(25, "meters")
  11640. },
  11641. {
  11642. name: "Larger",
  11643. height: math.unit(38, "meters"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Maximum height",
  11648. height: math.unit(100, "meters")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Nillia" },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/nillia/front.svg",
  11661. extra: 2195 / 2037,
  11662. bottom: 0.005
  11663. }
  11664. },
  11665. back: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Back",
  11669. image: {
  11670. source: "./media/characters/nillia/back.svg",
  11671. extra: 2195 / 2037,
  11672. bottom: 0.005
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Canon Height",
  11679. height: math.unit(489, "feet"),
  11680. default: true
  11681. }
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Mesmyriza" },
  11686. {
  11687. front: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/mesmyriza/front.svg",
  11693. extra: 2067 / 1784,
  11694. bottom: 0.035
  11695. }
  11696. },
  11697. foot: {
  11698. height: math.unit(6 / (250 / 35), "feet"),
  11699. name: "Foot",
  11700. image: {
  11701. source: "./media/characters/mesmyriza/foot.svg"
  11702. }
  11703. },
  11704. },
  11705. [
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(457, "meters"),
  11709. default: true
  11710. },
  11711. {
  11712. name: "Megamacro",
  11713. height: math.unit(8, "megameters")
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Saudade" },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(250, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/saudade/front.svg",
  11726. extra: 1172 / 1139,
  11727. bottom: 0.035
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(3, "inches")
  11735. },
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(6, "feet"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(50, "feet")
  11744. },
  11745. {
  11746. name: "Megamacro",
  11747. height: math.unit(2800, "feet")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Keireer" },
  11753. {
  11754. front: {
  11755. height: math.unit(5 + 4 / 12, "feet"),
  11756. weight: math.unit(100, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/keireer/front.svg",
  11760. extra: 716 / 666,
  11761. bottom: 0.05
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(5 + 4 / 12, "feet"),
  11769. default: true
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Mirja" },
  11775. {
  11776. front: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(90, "kg"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/mirja/front.svg",
  11782. extra: 1789 / 1683,
  11783. bottom: 0.05
  11784. }
  11785. },
  11786. frontDressed: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(90, "lb"),
  11789. name: "Front (Dressed)",
  11790. image: {
  11791. source: "./media/characters/mirja/front-dressed.svg",
  11792. extra: 1789 / 1683,
  11793. bottom: 0.05
  11794. }
  11795. },
  11796. back: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(90, "lb"),
  11799. name: "Back",
  11800. image: {
  11801. source: "./media/characters/mirja/back.svg",
  11802. extra: 953 / 917,
  11803. bottom: 0.017
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "\"Incognito\"",
  11810. height: math.unit(3, "meters")
  11811. },
  11812. {
  11813. name: "Strolling Size",
  11814. height: math.unit(15, "km")
  11815. },
  11816. {
  11817. name: "Larger Strolling Size",
  11818. height: math.unit(400, "km")
  11819. },
  11820. {
  11821. name: "Preferred Size",
  11822. height: math.unit(5000, "km")
  11823. },
  11824. {
  11825. name: "True Size",
  11826. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11827. default: true
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Nightraver" },
  11833. {
  11834. front: {
  11835. height: math.unit(15, "feet"),
  11836. weight: math.unit(880, "kg"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/nightraver/front.svg",
  11840. extra: 2444 / 2160,
  11841. bottom: 0.027
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(15, "feet"),
  11846. weight: math.unit(880, "kg"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/nightraver/back.svg",
  11850. extra: 2309 / 2180,
  11851. bottom: 0.005
  11852. }
  11853. },
  11854. sole: {
  11855. height: math.unit(2.878, "feet"),
  11856. name: "Sole",
  11857. image: {
  11858. source: "./media/characters/nightraver/sole.svg"
  11859. }
  11860. },
  11861. foot: {
  11862. height: math.unit(2.285, "feet"),
  11863. name: "Foot",
  11864. image: {
  11865. source: "./media/characters/nightraver/foot.svg"
  11866. }
  11867. },
  11868. maw: {
  11869. height: math.unit(2.67, "feet"),
  11870. name: "Maw",
  11871. image: {
  11872. source: "./media/characters/nightraver/maw.svg"
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Micro",
  11879. height: math.unit(1, "cm")
  11880. },
  11881. {
  11882. name: "Normal",
  11883. height: math.unit(15, "feet"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(300, "feet")
  11889. },
  11890. {
  11891. name: "Megamacro",
  11892. height: math.unit(300, "miles")
  11893. },
  11894. {
  11895. name: "Gigamacro",
  11896. height: math.unit(10000, "miles")
  11897. },
  11898. ]
  11899. ))
  11900. characterMakers.push(() => makeCharacter(
  11901. { name: "Arc" },
  11902. {
  11903. side: {
  11904. height: math.unit(2, "inches"),
  11905. weight: math.unit(5, "grams"),
  11906. name: "Side",
  11907. image: {
  11908. source: "./media/characters/arc/side.svg"
  11909. }
  11910. },
  11911. },
  11912. [
  11913. {
  11914. name: "Micro",
  11915. height: math.unit(2, "inches"),
  11916. default: true
  11917. },
  11918. ]
  11919. ))
  11920. characterMakers.push(() => makeCharacter(
  11921. { name: "Nebula Shahar" },
  11922. {
  11923. front: {
  11924. height: math.unit(1.1938, "meters"),
  11925. weight: math.unit(54, "kg"),
  11926. name: "Front",
  11927. image: {
  11928. source: "./media/characters/nebula-shahar/front.svg",
  11929. extra: 1642 / 1436,
  11930. bottom: 0.06
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Megamicro",
  11937. height: math.unit(0.3, "mm")
  11938. },
  11939. {
  11940. name: "Micro",
  11941. height: math.unit(3, "cm")
  11942. },
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(138, "cm"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(30, "m")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Shayla" },
  11956. {
  11957. front: {
  11958. height: math.unit(5.24, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/shayla/front.svg",
  11963. extra: 1512 / 1414,
  11964. bottom: 0.01
  11965. }
  11966. },
  11967. back: {
  11968. height: math.unit(5.24, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Back",
  11971. image: {
  11972. source: "./media/characters/shayla/back.svg",
  11973. extra: 1512 / 1414
  11974. }
  11975. },
  11976. hand: {
  11977. height: math.unit(0.7781496062992126, "feet"),
  11978. name: "Hand",
  11979. image: {
  11980. source: "./media/characters/shayla/hand.svg"
  11981. }
  11982. },
  11983. foot: {
  11984. height: math.unit(1.4206036745406823, "feet"),
  11985. name: "Foot",
  11986. image: {
  11987. source: "./media/characters/shayla/foot.svg"
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Micro",
  11994. height: math.unit(0.32, "feet")
  11995. },
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(5.24, "feet"),
  11999. default: true
  12000. },
  12001. {
  12002. name: "Macro",
  12003. height: math.unit(492.12, "feet")
  12004. },
  12005. {
  12006. name: "Megamacro",
  12007. height: math.unit(186.41, "miles")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Pia Jr." },
  12013. {
  12014. front: {
  12015. height: math.unit(2.2, "m"),
  12016. weight: math.unit(120, "kg"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/pia-jr/front.svg",
  12020. extra: 1000 / 970,
  12021. bottom: 0.035
  12022. }
  12023. },
  12024. hand: {
  12025. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12026. name: "Hand",
  12027. image: {
  12028. source: "./media/characters/pia-jr/hand.svg"
  12029. }
  12030. },
  12031. paw: {
  12032. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12033. name: "Paw",
  12034. image: {
  12035. source: "./media/characters/pia-jr/paw.svg"
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Micro",
  12042. height: math.unit(1.2, "cm")
  12043. },
  12044. {
  12045. name: "Normal",
  12046. height: math.unit(2.2, "m"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Macro",
  12051. height: math.unit(180, "m")
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(420, "km")
  12056. },
  12057. ]
  12058. ))
  12059. characterMakers.push(() => makeCharacter(
  12060. { name: "Pia Sr." },
  12061. {
  12062. front: {
  12063. height: math.unit(2, "m"),
  12064. weight: math.unit(115, "kg"),
  12065. name: "Front",
  12066. image: {
  12067. source: "./media/characters/pia-sr/front.svg",
  12068. extra: 760 / 730,
  12069. bottom: 0.015
  12070. }
  12071. },
  12072. back: {
  12073. height: math.unit(2, "m"),
  12074. weight: math.unit(115, "kg"),
  12075. name: "Back",
  12076. image: {
  12077. source: "./media/characters/pia-sr/back.svg",
  12078. extra: 760 / 730,
  12079. bottom: 0.01
  12080. }
  12081. },
  12082. hand: {
  12083. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12084. name: "Hand",
  12085. image: {
  12086. source: "./media/characters/pia-sr/hand.svg"
  12087. }
  12088. },
  12089. foot: {
  12090. height: math.unit(1.83, "feet"),
  12091. name: "Foot",
  12092. image: {
  12093. source: "./media/characters/pia-sr/foot.svg"
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Micro",
  12100. height: math.unit(88, "mm")
  12101. },
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(2, "m"),
  12105. default: true
  12106. },
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(200, "m")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(420, "km")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "KIBIBYTE" },
  12119. {
  12120. front: {
  12121. height: math.unit(8 + 2 / 12, "feet"),
  12122. weight: math.unit(300, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/kibibyte/front.svg",
  12126. extra: 2221 / 2098,
  12127. bottom: 0.04
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(8 + 2 / 12, "feet"),
  12135. default: true
  12136. },
  12137. {
  12138. name: "Socialable Macro",
  12139. height: math.unit(50, "feet")
  12140. },
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(300, "feet")
  12144. },
  12145. {
  12146. name: "Megamacro",
  12147. height: math.unit(500, "miles")
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Felix" },
  12153. {
  12154. front: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/felix/front.svg",
  12160. extra: 762 / 722,
  12161. bottom: 0.02
  12162. }
  12163. },
  12164. frontClothed: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front (Clothed)",
  12168. image: {
  12169. source: "./media/characters/felix/front-clothed.svg",
  12170. extra: 762 / 722,
  12171. bottom: 0.02
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(6 + 8 / 12, "feet"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(2600, "feet")
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(450, "miles")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Tobo" },
  12193. {
  12194. front: {
  12195. height: math.unit(6 + 1 / 12, "feet"),
  12196. weight: math.unit(250, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/tobo/front.svg",
  12200. extra: 608 / 586,
  12201. bottom: 0.023
  12202. }
  12203. },
  12204. back: {
  12205. height: math.unit(6 + 1 / 12, "feet"),
  12206. weight: math.unit(250, "lb"),
  12207. name: "Back",
  12208. image: {
  12209. source: "./media/characters/tobo/back.svg",
  12210. extra: 608 / 586
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Nano",
  12217. height: math.unit(2, "nm")
  12218. },
  12219. {
  12220. name: "Megamicro",
  12221. height: math.unit(0.1, "mm")
  12222. },
  12223. {
  12224. name: "Micro",
  12225. height: math.unit(1, "inch"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Human-sized",
  12230. height: math.unit(6 + 1 / 12, "feet")
  12231. },
  12232. {
  12233. name: "Macro",
  12234. height: math.unit(250, "feet")
  12235. },
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(75, "miles")
  12239. },
  12240. {
  12241. name: "Texas-sized",
  12242. height: math.unit(750, "miles")
  12243. },
  12244. {
  12245. name: "Teramacro",
  12246. height: math.unit(50000, "miles")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Danny Kapowsky" },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(269, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/danny-kapowsky/front.svg",
  12259. extra: 766 / 736,
  12260. bottom: 0.044
  12261. }
  12262. },
  12263. back: {
  12264. height: math.unit(6, "feet"),
  12265. weight: math.unit(269, "lb"),
  12266. name: "Back",
  12267. image: {
  12268. source: "./media/characters/danny-kapowsky/back.svg",
  12269. extra: 797 / 760,
  12270. bottom: 0.025
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Macro",
  12277. height: math.unit(150, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Macro+",
  12282. height: math.unit(200, "feet")
  12283. },
  12284. {
  12285. name: "Macro++",
  12286. height: math.unit(300, "feet")
  12287. },
  12288. {
  12289. name: "Macro+++",
  12290. height: math.unit(400, "feet")
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Finn" },
  12296. {
  12297. side: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(170, "lb"),
  12300. name: "Side",
  12301. image: {
  12302. source: "./media/characters/finn/side.svg",
  12303. extra: 1953 / 1807,
  12304. bottom: 0.057
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Megamacro",
  12311. height: math.unit(14445, "feet"),
  12312. default: true
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Roy" },
  12318. {
  12319. front: {
  12320. height: math.unit(5 + 6 / 12, "feet"),
  12321. weight: math.unit(125, "lb"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/roy/front.svg",
  12325. extra: 1,
  12326. bottom: 0.11
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Micro",
  12333. height: math.unit(3, "inches"),
  12334. default: true
  12335. },
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(5 + 6 / 12, "feet")
  12339. },
  12340. {
  12341. name: "Lesser Macro",
  12342. height: math.unit(60, "feet")
  12343. },
  12344. {
  12345. name: "Greater Macro",
  12346. height: math.unit(120, "feet")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Aevsivs" },
  12352. {
  12353. front: {
  12354. height: math.unit(6, "feet"),
  12355. weight: math.unit(100, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/aevsivs/front.svg",
  12359. extra: 1,
  12360. bottom: 0.03
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(100, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/aevsivs/back.svg"
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Micro",
  12375. height: math.unit(2, "inches"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(5, "feet")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Hildegard" },
  12386. {
  12387. front: {
  12388. height: math.unit(5 + 7 / 12, "feet"),
  12389. weight: math.unit(159, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/hildegard/front.svg",
  12393. extra: 312 / 286,
  12394. bottom: 0.005
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(5 + 7 / 12, "feet"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Bernard & Wilder" },
  12408. {
  12409. bernard: {
  12410. height: math.unit(2 + 7 / 12, "feet"),
  12411. weight: math.unit(66, "lb"),
  12412. name: "Bernard",
  12413. rename: true,
  12414. image: {
  12415. source: "./media/characters/bernard-wilder/bernard.svg",
  12416. extra: 192 / 128,
  12417. bottom: 0.05
  12418. }
  12419. },
  12420. wilder: {
  12421. height: math.unit(5 + 8 / 12, "feet"),
  12422. weight: math.unit(143, "lb"),
  12423. name: "Wilder",
  12424. rename: true,
  12425. image: {
  12426. source: "./media/characters/bernard-wilder/wilder.svg",
  12427. extra: 361 / 312,
  12428. bottom: 0.02
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(2 + 7 / 12, "feet"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Hearth" },
  12442. {
  12443. anthro: {
  12444. height: math.unit(6 + 1 / 12, "feet"),
  12445. weight: math.unit(155, "lb"),
  12446. name: "Anthro",
  12447. image: {
  12448. source: "./media/characters/hearth/anthro.svg",
  12449. extra: 260 / 250,
  12450. bottom: 0.02
  12451. }
  12452. },
  12453. feral: {
  12454. height: math.unit(3.78, "feet"),
  12455. weight: math.unit(35, "kg"),
  12456. name: "Feral",
  12457. image: {
  12458. source: "./media/characters/hearth/feral.svg",
  12459. extra: 153 / 135,
  12460. bottom: 0.03
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(6 + 1 / 12, "feet"),
  12468. default: true
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Ingrid" },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(182, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/ingrid/front.svg",
  12481. extra: 294 / 268,
  12482. bottom: 0.027
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(6, "feet"),
  12490. default: true
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Malgam" },
  12496. {
  12497. eevee: {
  12498. height: math.unit(2 + 10 / 12, "feet"),
  12499. weight: math.unit(86, "lb"),
  12500. name: "Malgam",
  12501. image: {
  12502. source: "./media/characters/malgam/eevee.svg",
  12503. extra: 218 / 180,
  12504. bottom: 0.2
  12505. }
  12506. },
  12507. sylveon: {
  12508. height: math.unit(4, "feet"),
  12509. weight: math.unit(101, "lb"),
  12510. name: "Future Malgam",
  12511. rename: true,
  12512. image: {
  12513. source: "./media/characters/malgam/sylveon.svg",
  12514. extra: 371 / 325,
  12515. bottom: 0.015
  12516. }
  12517. },
  12518. gigantamax: {
  12519. height: math.unit(50, "feet"),
  12520. name: "Gigantamax Malgam",
  12521. rename: true,
  12522. image: {
  12523. source: "./media/characters/malgam/gigantamax.svg"
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Normal",
  12530. height: math.unit(2 + 10 / 12, "feet"),
  12531. default: true
  12532. },
  12533. ]
  12534. ))
  12535. characterMakers.push(() => makeCharacter(
  12536. { name: "Fleur" },
  12537. {
  12538. front: {
  12539. height: math.unit(5 + 11 / 12, "feet"),
  12540. weight: math.unit(188, "lb"),
  12541. name: "Front",
  12542. image: {
  12543. source: "./media/characters/fleur/front.svg",
  12544. extra: 309 / 283,
  12545. bottom: 0.007
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(5 + 11 / 12, "feet"),
  12553. default: true
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Jude" },
  12559. {
  12560. front: {
  12561. height: math.unit(5 + 4 / 12, "feet"),
  12562. weight: math.unit(122, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/jude/front.svg",
  12566. extra: 288 / 273,
  12567. bottom: 0.03
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(5 + 4 / 12, "feet"),
  12575. default: true
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Seara" },
  12581. {
  12582. front: {
  12583. height: math.unit(5 + 11 / 12, "feet"),
  12584. weight: math.unit(190, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/seara/front.svg",
  12588. extra: 1,
  12589. bottom: 0.05
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(5 + 11 / 12, "feet"),
  12597. default: true
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Caspian" },
  12603. {
  12604. front: {
  12605. height: math.unit(16 + 5 / 12, "feet"),
  12606. weight: math.unit(524, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/caspian/front.svg",
  12610. extra: 1,
  12611. bottom: 0.04
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(16 + 5 / 12, "feet"),
  12619. default: true
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Mika" },
  12625. {
  12626. front: {
  12627. height: math.unit(5 + 7 / 12, "feet"),
  12628. weight: math.unit(170, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/mika/front.svg",
  12632. extra: 1,
  12633. bottom: 0.016
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Normal",
  12640. height: math.unit(5 + 7 / 12, "feet"),
  12641. default: true
  12642. },
  12643. ]
  12644. ))
  12645. characterMakers.push(() => makeCharacter(
  12646. { name: "Sol" },
  12647. {
  12648. front: {
  12649. height: math.unit(6 + 2 / 12, "feet"),
  12650. weight: math.unit(268, "lb"),
  12651. name: "Front",
  12652. image: {
  12653. source: "./media/characters/sol/front.svg",
  12654. extra: 247 / 231,
  12655. bottom: 0.05
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(6 + 2 / 12, "feet"),
  12663. default: true
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Umiko" },
  12669. {
  12670. buizel: {
  12671. height: math.unit(2 + 5 / 12, "feet"),
  12672. weight: math.unit(87, "lb"),
  12673. name: "Buizel",
  12674. image: {
  12675. source: "./media/characters/umiko/buizel.svg",
  12676. extra: 172 / 157,
  12677. bottom: 0.01
  12678. }
  12679. },
  12680. floatzel: {
  12681. height: math.unit(5 + 9 / 12, "feet"),
  12682. weight: math.unit(250, "lb"),
  12683. name: "Floatzel",
  12684. image: {
  12685. source: "./media/characters/umiko/floatzel.svg",
  12686. extra: 262 / 248
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(2 + 5 / 12, "feet"),
  12694. default: true
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Iliac" },
  12700. {
  12701. front: {
  12702. height: math.unit(6 + 2 / 12, "feet"),
  12703. weight: math.unit(146, "lb"),
  12704. name: "Front",
  12705. image: {
  12706. source: "./media/characters/iliac/front.svg",
  12707. extra: 389 / 365,
  12708. bottom: 0.035
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(6 + 2 / 12, "feet"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Topaz" },
  12722. {
  12723. front: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(170, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/topaz/front.svg",
  12729. extra: 317 / 303,
  12730. bottom: 0.055
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(6, "feet"),
  12738. default: true
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Gabriel" },
  12744. {
  12745. front: {
  12746. height: math.unit(5 + 11 / 12, "feet"),
  12747. weight: math.unit(144, "lb"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/gabriel/front.svg",
  12751. extra: 285 / 262,
  12752. bottom: 0.004
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(5 + 11 / 12, "feet"),
  12760. default: true
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Tempest (Suicune)" },
  12766. {
  12767. side: {
  12768. height: math.unit(6 + 5 / 12, "feet"),
  12769. weight: math.unit(300, "lb"),
  12770. name: "Side",
  12771. image: {
  12772. source: "./media/characters/tempest-suicune/side.svg",
  12773. extra: 195 / 154,
  12774. bottom: 0.04
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(6 + 5 / 12, "feet"),
  12782. default: true
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Vulcan" },
  12788. {
  12789. front: {
  12790. height: math.unit(7 + 2 / 12, "feet"),
  12791. weight: math.unit(322, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/vulcan/front.svg",
  12795. extra: 154 / 147,
  12796. bottom: 0.04
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(7 + 2 / 12, "feet"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Gault" },
  12810. {
  12811. front: {
  12812. height: math.unit(5 + 10 / 12, "feet"),
  12813. weight: math.unit(264, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/gault/front.svg",
  12817. extra: 161 / 140,
  12818. bottom: 0.028
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(5 + 10 / 12, "feet"),
  12826. default: true
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Shard" },
  12832. {
  12833. front: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(150, "lb"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/shard/front.svg",
  12839. extra: 273 / 238,
  12840. bottom: 0.02
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(3 + 6 / 12, "feet"),
  12848. default: true
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Ashe" },
  12854. {
  12855. front: {
  12856. height: math.unit(5 + 11 / 12, "feet"),
  12857. weight: math.unit(146, "lb"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/ashe/front.svg",
  12861. extra: 400 / 373,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(5 + 11 / 12, "feet"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Beatrix" },
  12876. {
  12877. front: {
  12878. height: math.unit(5 + 5 / 12, "feet"),
  12879. weight: math.unit(135, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/beatrix/front.svg",
  12883. extra: 392 / 379,
  12884. bottom: 0.01
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(6, "feet"),
  12892. default: true
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Ignatius" },
  12898. {
  12899. front: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/ignatius/front.svg",
  12905. extra: 245 / 222,
  12906. bottom: 0.01
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(5 + 5 / 12, "feet"),
  12914. default: true
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Mei Li" },
  12920. {
  12921. front: {
  12922. height: math.unit(6 + 2 / 12, "feet"),
  12923. weight: math.unit(138, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/mei-li/front.svg",
  12927. extra: 237 / 229,
  12928. bottom: 0.03
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(6 + 2 / 12, "feet"),
  12936. default: true
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Puru" },
  12942. {
  12943. front: {
  12944. height: math.unit(2 + 4 / 12, "feet"),
  12945. weight: math.unit(62, "lb"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/puru/front.svg",
  12949. extra: 206 / 149,
  12950. bottom: 0.06
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(2 + 4 / 12, "feet"),
  12958. default: true
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Kee" },
  12964. {
  12965. taur: {
  12966. height: math.unit(11, "feet"),
  12967. weight: math.unit(500, "lb"),
  12968. name: "Taur",
  12969. image: {
  12970. source: "./media/characters/kee/taur.svg",
  12971. extra: 1,
  12972. bottom: 0.04
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(11, "feet"),
  12980. default: true
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Cobalt (Dracha)" },
  12986. {
  12987. anthro: {
  12988. height: math.unit(7, "feet"),
  12989. weight: math.unit(190, "lb"),
  12990. name: "Anthro",
  12991. image: {
  12992. source: "./media/characters/cobalt-dracha/anthro.svg",
  12993. extra: 231 / 225,
  12994. bottom: 0.04
  12995. }
  12996. },
  12997. feral: {
  12998. height: math.unit(9 + 7 / 12, "feet"),
  12999. weight: math.unit(294, "lb"),
  13000. name: "Feral",
  13001. image: {
  13002. source: "./media/characters/cobalt-dracha/feral.svg",
  13003. extra: 692 / 633,
  13004. bottom: 0.05
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(7, "feet"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Java" },
  13018. {
  13019. fallen: {
  13020. height: math.unit(11 + 8 / 12, "feet"),
  13021. weight: math.unit(485, "lb"),
  13022. name: "Java (Fallen)",
  13023. rename: true,
  13024. image: {
  13025. source: "./media/characters/java/fallen.svg",
  13026. extra: 226 / 208,
  13027. bottom: 0.005
  13028. }
  13029. },
  13030. godkin: {
  13031. height: math.unit(10 + 6 / 12, "feet"),
  13032. weight: math.unit(328, "lb"),
  13033. name: "Java (Godkin)",
  13034. rename: true,
  13035. image: {
  13036. source: "./media/characters/java/godkin.svg",
  13037. extra: 270 / 262,
  13038. bottom: 0.02
  13039. }
  13040. },
  13041. },
  13042. [
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(11 + 8 / 12, "feet"),
  13046. default: true
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Skoll" },
  13052. {
  13053. front: {
  13054. height: math.unit(7 + 8 / 12, "feet"),
  13055. weight: math.unit(320, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/skoll/front.svg",
  13059. extra: 232 / 220,
  13060. bottom: 0.02
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Normal",
  13067. height: math.unit(7 + 8 / 12, "feet"),
  13068. default: true
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Purna" },
  13074. {
  13075. front: {
  13076. height: math.unit(5 + 9 / 12, "feet"),
  13077. weight: math.unit(170, "lb"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/purna/front.svg",
  13081. extra: 239 / 229,
  13082. bottom: 0.01
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(5 + 9 / 12, "feet"),
  13090. default: true
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Kuva" },
  13096. {
  13097. front: {
  13098. height: math.unit(5 + 9 / 12, "feet"),
  13099. weight: math.unit(142, "lb"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/kuva/front.svg",
  13103. extra: 281 / 271,
  13104. bottom: 0.006
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Normal",
  13111. height: math.unit(5 + 9 / 12, "feet"),
  13112. default: true
  13113. },
  13114. ]
  13115. ))
  13116. characterMakers.push(() => makeCharacter(
  13117. { name: "Embra" },
  13118. {
  13119. anthro: {
  13120. height: math.unit(9 + 2 / 12, "feet"),
  13121. weight: math.unit(270, "lb"),
  13122. name: "Anthro",
  13123. image: {
  13124. source: "./media/characters/embra/anthro.svg",
  13125. extra: 200 / 187,
  13126. bottom: 0.02
  13127. }
  13128. },
  13129. feral: {
  13130. height: math.unit(18 + 8 / 12, "feet"),
  13131. weight: math.unit(576, "lb"),
  13132. name: "Feral",
  13133. image: {
  13134. source: "./media/characters/embra/feral.svg",
  13135. extra: 152 / 137,
  13136. bottom: 0.037
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(9 + 2 / 12, "feet"),
  13144. default: true
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Grottos" },
  13150. {
  13151. anthro: {
  13152. height: math.unit(10 + 9 / 12, "feet"),
  13153. weight: math.unit(224, "lb"),
  13154. name: "Anthro",
  13155. image: {
  13156. source: "./media/characters/grottos/anthro.svg",
  13157. extra: 350 / 332,
  13158. bottom: 0.045
  13159. }
  13160. },
  13161. feral: {
  13162. height: math.unit(20 + 7 / 12, "feet"),
  13163. weight: math.unit(629, "lb"),
  13164. name: "Feral",
  13165. image: {
  13166. source: "./media/characters/grottos/feral.svg",
  13167. extra: 207 / 190,
  13168. bottom: 0.05
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(10 + 9 / 12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Frifna" },
  13182. {
  13183. anthro: {
  13184. height: math.unit(9 + 6 / 12, "feet"),
  13185. weight: math.unit(298, "lb"),
  13186. name: "Anthro",
  13187. image: {
  13188. source: "./media/characters/frifna/anthro.svg",
  13189. extra: 282 / 269,
  13190. bottom: 0.015
  13191. }
  13192. },
  13193. feral: {
  13194. height: math.unit(16 + 2 / 12, "feet"),
  13195. weight: math.unit(624, "lb"),
  13196. name: "Feral",
  13197. image: {
  13198. source: "./media/characters/frifna/feral.svg"
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(9 + 6 / 12, "feet"),
  13206. default: true
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Elise" },
  13212. {
  13213. front: {
  13214. height: math.unit(6 + 2 / 12, "feet"),
  13215. weight: math.unit(168, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/elise/front.svg",
  13219. extra: 276 / 271
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(6 + 2 / 12, "feet"),
  13227. default: true
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Glade" },
  13233. {
  13234. front: {
  13235. height: math.unit(5 + 10 / 12, "feet"),
  13236. weight: math.unit(210, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/glade/front.svg",
  13240. extra: 258 / 247,
  13241. bottom: 0.008
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(5 + 10 / 12, "feet"),
  13249. default: true
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Rina" },
  13255. {
  13256. front: {
  13257. height: math.unit(5 + 10 / 12, "feet"),
  13258. weight: math.unit(129, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/rina/front.svg",
  13262. extra: 266 / 255,
  13263. bottom: 0.005
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(5 + 10 / 12, "feet"),
  13271. default: true
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Veronica" },
  13277. {
  13278. front: {
  13279. height: math.unit(6 + 1 / 12, "feet"),
  13280. weight: math.unit(192, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/veronica/front.svg",
  13284. extra: 319 / 309,
  13285. bottom: 0.005
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(6 + 1 / 12, "feet"),
  13293. default: true
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Braxton" },
  13299. {
  13300. front: {
  13301. height: math.unit(9 + 3 / 12, "feet"),
  13302. weight: math.unit(1100, "lb"),
  13303. name: "Front",
  13304. image: {
  13305. source: "./media/characters/braxton/front.svg",
  13306. extra: 1057 / 984,
  13307. bottom: 0.05
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(9 + 3 / 12, "feet")
  13315. },
  13316. {
  13317. name: "Giant",
  13318. height: math.unit(300, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(700, "feet")
  13324. },
  13325. {
  13326. name: "Megamacro",
  13327. height: math.unit(6000, "feet")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Blue Feyonics" },
  13333. {
  13334. front: {
  13335. height: math.unit(6 + 7 / 12, "feet"),
  13336. weight: math.unit(150, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/blue-feyonics/front.svg",
  13340. extra: 1403 / 1306,
  13341. bottom: 0.047
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(6 + 7 / 12, "feet"),
  13349. default: true
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Maxwell" },
  13355. {
  13356. front: {
  13357. height: math.unit(1.8, "meters"),
  13358. weight: math.unit(60, "kg"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/maxwell/front.svg",
  13362. extra: 2060 / 1873
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Micro",
  13369. height: math.unit(1, "mm")
  13370. },
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(1.8, "meter"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Macro",
  13378. height: math.unit(30, "meters")
  13379. },
  13380. {
  13381. name: "Megamacro",
  13382. height: math.unit(10, "km")
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Jack" },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/jack/front.svg",
  13395. extra: 1754 / 1640,
  13396. bottom: 0.01
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Normal",
  13403. height: math.unit(80000, "feet"),
  13404. default: true
  13405. },
  13406. {
  13407. name: "Max size",
  13408. height: math.unit(10, "lightyears")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Cafat" },
  13414. {
  13415. upright: {
  13416. height: math.unit(7, "feet"),
  13417. weight: math.unit(170, "lb"),
  13418. name: "Upright",
  13419. image: {
  13420. source: "./media/characters/cafat/upright.svg",
  13421. bottom: 0.01
  13422. }
  13423. },
  13424. uprightFull: {
  13425. height: math.unit(7, "feet"),
  13426. weight: math.unit(170, "lb"),
  13427. name: "Upright (Full)",
  13428. image: {
  13429. source: "./media/characters/cafat/upright-full.svg",
  13430. bottom: 0.01
  13431. }
  13432. },
  13433. side: {
  13434. height: math.unit(5, "feet"),
  13435. weight: math.unit(150, "lb"),
  13436. name: "Side",
  13437. image: {
  13438. source: "./media/characters/cafat/side.svg"
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Small",
  13445. height: math.unit(7, "feet"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Large",
  13450. height: math.unit(15.5, "feet")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Verin Raharra" },
  13456. {
  13457. front: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(150, "lb"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/verin-raharra/front.svg",
  13463. extra: 5019 / 4835,
  13464. bottom: 0.023
  13465. }
  13466. },
  13467. },
  13468. [
  13469. {
  13470. name: "Normal",
  13471. height: math.unit(7 + 5 / 12, "feet"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Upsized",
  13476. height: math.unit(20, "feet")
  13477. },
  13478. ]
  13479. ))
  13480. characterMakers.push(() => makeCharacter(
  13481. { name: "Nakata" },
  13482. {
  13483. front: {
  13484. height: math.unit(7, "feet"),
  13485. weight: math.unit(230, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/nakata/front.svg",
  13489. extra: 1.005,
  13490. bottom: 0.01
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Normal",
  13497. height: math.unit(7, "feet"),
  13498. default: true
  13499. },
  13500. {
  13501. name: "Big",
  13502. height: math.unit(14, "feet")
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(400, "feet")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Lily" },
  13512. {
  13513. front: {
  13514. height: math.unit(4.91, "feet"),
  13515. weight: math.unit(100, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/lily/front.svg",
  13519. extra: 1585 / 1415,
  13520. bottom: 0.02
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(4.91, "feet"),
  13528. default: true
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Sheila" },
  13534. {
  13535. laying: {
  13536. height: math.unit(4 + 4 / 12, "feet"),
  13537. weight: math.unit(600, "lb"),
  13538. name: "Laying",
  13539. image: {
  13540. source: "./media/characters/sheila/laying.svg",
  13541. extra: 1333 / 1265,
  13542. bottom: 0.16
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Normal",
  13549. height: math.unit(4 + 4 / 12, "feet"),
  13550. default: true
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Sax" },
  13556. {
  13557. front: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(190, "lb"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/sax/front.svg",
  13563. extra: 1187 / 973,
  13564. bottom: 0.042
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Micro",
  13571. height: math.unit(4, "inches"),
  13572. default: true
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Pandora" },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(150, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/pandora/front.svg",
  13585. extra: 2720 / 2556,
  13586. bottom: 0.015
  13587. }
  13588. },
  13589. back: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "lb"),
  13592. name: "Back",
  13593. image: {
  13594. source: "./media/characters/pandora/back.svg",
  13595. extra: 2720 / 2556,
  13596. bottom: 0.01
  13597. }
  13598. },
  13599. beans: {
  13600. height: math.unit(6 / 8, "feet"),
  13601. name: "Beans",
  13602. image: {
  13603. source: "./media/characters/pandora/beans.svg"
  13604. }
  13605. },
  13606. skirt: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Skirt",
  13610. image: {
  13611. source: "./media/characters/pandora/skirt.svg",
  13612. extra: 1622 / 1525,
  13613. bottom: 0.015
  13614. }
  13615. },
  13616. hoodie: {
  13617. height: math.unit(6, "feet"),
  13618. weight: math.unit(150, "lb"),
  13619. name: "Hoodie",
  13620. image: {
  13621. source: "./media/characters/pandora/hoodie.svg",
  13622. extra: 1622 / 1525,
  13623. bottom: 0.015
  13624. }
  13625. },
  13626. casual: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Casual",
  13630. image: {
  13631. source: "./media/characters/pandora/casual.svg",
  13632. extra: 1622 / 1525,
  13633. bottom: 0.015
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Normal",
  13640. height: math.unit(6, "feet")
  13641. },
  13642. {
  13643. name: "Big Steppy",
  13644. height: math.unit(1, "km"),
  13645. default: true
  13646. },
  13647. ]
  13648. ))
  13649. characterMakers.push(() => makeCharacter(
  13650. { name: "Venio Darcony" },
  13651. {
  13652. side: {
  13653. height: math.unit(10, "feet"),
  13654. weight: math.unit(800, "kg"),
  13655. name: "Side",
  13656. image: {
  13657. source: "./media/characters/venio-darcony/side.svg",
  13658. extra: 1373 / 1003,
  13659. bottom: 0.037
  13660. }
  13661. },
  13662. front: {
  13663. height: math.unit(19, "feet"),
  13664. weight: math.unit(800, "kg"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/venio-darcony/front.svg"
  13668. }
  13669. },
  13670. back: {
  13671. height: math.unit(19, "feet"),
  13672. weight: math.unit(800, "kg"),
  13673. name: "Back",
  13674. image: {
  13675. source: "./media/characters/venio-darcony/back.svg"
  13676. }
  13677. },
  13678. sideNsfw: {
  13679. height: math.unit(10, "feet"),
  13680. weight: math.unit(800, "kg"),
  13681. name: "Side (NSFW)",
  13682. image: {
  13683. source: "./media/characters/venio-darcony/side-nsfw.svg",
  13684. extra: 1373 / 1003,
  13685. bottom: 0.037
  13686. }
  13687. },
  13688. frontNsfw: {
  13689. height: math.unit(19, "feet"),
  13690. weight: math.unit(800, "kg"),
  13691. name: "Front (NSFW)",
  13692. image: {
  13693. source: "./media/characters/venio-darcony/front-nsfw.svg"
  13694. }
  13695. },
  13696. backNsfw: {
  13697. height: math.unit(19, "feet"),
  13698. weight: math.unit(800, "kg"),
  13699. name: "Back (NSFW)",
  13700. image: {
  13701. source: "./media/characters/venio-darcony/back-nsfw.svg"
  13702. }
  13703. },
  13704. sideArmored: {
  13705. height: math.unit(10, "feet"),
  13706. weight: math.unit(800, "kg"),
  13707. name: "Side (Armored)",
  13708. image: {
  13709. source: "./media/characters/venio-darcony/side-armored.svg",
  13710. extra: 1373 / 1003,
  13711. bottom: 0.037
  13712. }
  13713. },
  13714. frontArmored: {
  13715. height: math.unit(19, "feet"),
  13716. weight: math.unit(900, "kg"),
  13717. name: "Front (Armored)",
  13718. image: {
  13719. source: "./media/characters/venio-darcony/front-armored.svg"
  13720. }
  13721. },
  13722. backArmored: {
  13723. height: math.unit(19, "feet"),
  13724. weight: math.unit(900, "kg"),
  13725. name: "Back (Armored)",
  13726. image: {
  13727. source: "./media/characters/venio-darcony/back-armored.svg"
  13728. }
  13729. },
  13730. sword: {
  13731. height: math.unit(10, "feet"),
  13732. weight: math.unit(50, "lb"),
  13733. name: "Sword",
  13734. image: {
  13735. source: "./media/characters/venio-darcony/sword.svg"
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(10, "feet")
  13743. },
  13744. {
  13745. name: "Macro",
  13746. height: math.unit(130, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Macro+",
  13751. height: math.unit(240, "feet")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Veski" },
  13757. {
  13758. front: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(150, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/veski/front.svg",
  13764. extra: 1299 / 1225,
  13765. bottom: 0.04
  13766. }
  13767. },
  13768. back: {
  13769. height: math.unit(6, "feet"),
  13770. weight: math.unit(150, "lb"),
  13771. name: "Back",
  13772. image: {
  13773. source: "./media/characters/veski/back.svg",
  13774. extra: 1299 / 1225,
  13775. bottom: 0.008
  13776. }
  13777. },
  13778. maw: {
  13779. height: math.unit(1.5 * 1.21, "feet"),
  13780. name: "Maw",
  13781. image: {
  13782. source: "./media/characters/veski/maw.svg"
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(2, "km"),
  13790. default: true
  13791. },
  13792. ]
  13793. ))
  13794. characterMakers.push(() => makeCharacter(
  13795. { name: "Isabelle" },
  13796. {
  13797. front: {
  13798. height: math.unit(5 + 7 / 12, "feet"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/isabelle/front.svg",
  13802. extra: 2130 / 1976,
  13803. bottom: 0.05
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Supermicro",
  13810. height: math.unit(10, "micrometers")
  13811. },
  13812. {
  13813. name: "Micro",
  13814. height: math.unit(1, "inch")
  13815. },
  13816. {
  13817. name: "Tiny",
  13818. height: math.unit(5, "inches")
  13819. },
  13820. {
  13821. name: "Standard",
  13822. height: math.unit(5 + 7 / 12, "inches")
  13823. },
  13824. {
  13825. name: "Macro",
  13826. height: math.unit(80, "meters"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Megamacro",
  13831. height: math.unit(250, "meters")
  13832. },
  13833. {
  13834. name: "Gigamacro",
  13835. height: math.unit(5, "km")
  13836. },
  13837. {
  13838. name: "Cosmic",
  13839. height: math.unit(2.5e6, "miles")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Hanzo" },
  13845. {
  13846. front: {
  13847. height: math.unit(6, "feet"),
  13848. weight: math.unit(150, "lb"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/hanzo/front.svg",
  13852. extra: 374 / 344,
  13853. bottom: 0.02
  13854. }
  13855. },
  13856. },
  13857. [
  13858. {
  13859. name: "Normal",
  13860. height: math.unit(8, "feet"),
  13861. default: true
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Anna" },
  13867. {
  13868. front: {
  13869. height: math.unit(7, "feet"),
  13870. weight: math.unit(130, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/anna/front.svg",
  13874. extra: 169 / 145,
  13875. bottom: 0.06
  13876. }
  13877. },
  13878. full: {
  13879. height: math.unit(4.96, "feet"),
  13880. weight: math.unit(220, "lb"),
  13881. name: "Full",
  13882. image: {
  13883. source: "./media/characters/anna/full.svg",
  13884. extra: 138 / 114,
  13885. bottom: 0.15
  13886. }
  13887. },
  13888. tongue: {
  13889. height: math.unit(2.53, "feet"),
  13890. name: "Tongue",
  13891. image: {
  13892. source: "./media/characters/anna/tongue.svg"
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(7, "feet"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Ian Corvid" },
  13906. {
  13907. front: {
  13908. height: math.unit(7, "feet"),
  13909. weight: math.unit(150, "lb"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/ian-corvid/front.svg",
  13913. extra: 150 / 142,
  13914. bottom: 0.02
  13915. }
  13916. },
  13917. back: {
  13918. height: math.unit(7, "feet"),
  13919. weight: math.unit(150, "lb"),
  13920. name: "Back",
  13921. image: {
  13922. source: "./media/characters/ian-corvid/back.svg",
  13923. extra: 150 / 143,
  13924. bottom: 0.01
  13925. }
  13926. },
  13927. stomping: {
  13928. height: math.unit(7, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Stomping",
  13931. image: {
  13932. source: "./media/characters/ian-corvid/stomping.svg",
  13933. extra: 76 / 72
  13934. }
  13935. },
  13936. sitting: {
  13937. height: math.unit(7 / 1.8, "feet"),
  13938. weight: math.unit(150, "lb"),
  13939. name: "Sitting",
  13940. image: {
  13941. source: "./media/characters/ian-corvid/sitting.svg",
  13942. extra: 1400 / 1269,
  13943. bottom: 0.15
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Tiny Microw",
  13950. height: math.unit(1, "inch")
  13951. },
  13952. {
  13953. name: "Microw",
  13954. height: math.unit(6, "inches")
  13955. },
  13956. {
  13957. name: "Crow",
  13958. height: math.unit(7 + 1 / 12, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macrow",
  13963. height: math.unit(176, "feet")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Natalie Kellon" },
  13969. {
  13970. front: {
  13971. height: math.unit(5 + 7 / 12, "feet"),
  13972. weight: math.unit(147, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/natalie-kellon/front.svg",
  13976. extra: 1214 / 1141,
  13977. bottom: 0.02
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Micro",
  13984. height: math.unit(1 / 16, "inch")
  13985. },
  13986. {
  13987. name: "Tiny",
  13988. height: math.unit(4, "inches")
  13989. },
  13990. {
  13991. name: "Normal",
  13992. height: math.unit(5 + 7 / 12, "feet"),
  13993. default: true
  13994. },
  13995. {
  13996. name: "Amazon",
  13997. height: math.unit(12, "feet")
  13998. },
  13999. {
  14000. name: "Giantess",
  14001. height: math.unit(160, "meters")
  14002. },
  14003. {
  14004. name: "Titaness",
  14005. height: math.unit(800, "meters")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Alluria" },
  14011. {
  14012. front: {
  14013. height: math.unit(6, "feet"),
  14014. weight: math.unit(150, "lb"),
  14015. name: "Front",
  14016. image: {
  14017. source: "./media/characters/alluria/front.svg",
  14018. extra: 806 / 738,
  14019. bottom: 0.01
  14020. }
  14021. },
  14022. side: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Side",
  14026. image: {
  14027. source: "./media/characters/alluria/side.svg",
  14028. extra: 800 / 750,
  14029. }
  14030. },
  14031. back: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(150, "lb"),
  14034. name: "Back",
  14035. image: {
  14036. source: "./media/characters/alluria/back.svg",
  14037. extra: 806 / 738,
  14038. }
  14039. },
  14040. frontMaid: {
  14041. height: math.unit(6, "feet"),
  14042. weight: math.unit(150, "lb"),
  14043. name: "Front (Maid)",
  14044. image: {
  14045. source: "./media/characters/alluria/front-maid.svg",
  14046. extra: 806 / 738,
  14047. bottom: 0.01
  14048. }
  14049. },
  14050. sideMaid: {
  14051. height: math.unit(6, "feet"),
  14052. weight: math.unit(150, "lb"),
  14053. name: "Side (Maid)",
  14054. image: {
  14055. source: "./media/characters/alluria/side-maid.svg",
  14056. extra: 800 / 750,
  14057. bottom: 0.005
  14058. }
  14059. },
  14060. backMaid: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Back (Maid)",
  14064. image: {
  14065. source: "./media/characters/alluria/back-maid.svg",
  14066. extra: 806 / 738,
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Micro",
  14073. height: math.unit(6, "inches"),
  14074. default: true
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Kyle" },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/kyle/front.svg",
  14087. extra: 1069 / 962,
  14088. bottom: 77.228 / 1727.45
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(150, "feet"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Duncan" },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(300, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/duncan/front.svg",
  14109. extra: 1650 / 1482,
  14110. bottom: 0.05
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(100, "feet"),
  14118. default: true
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Memory" },
  14124. {
  14125. front: {
  14126. height: math.unit(5 + 4 / 12, "feet"),
  14127. weight: math.unit(220, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/memory/front.svg",
  14131. extra: 3641 / 3545,
  14132. bottom: 0.03
  14133. }
  14134. },
  14135. back: {
  14136. height: math.unit(5 + 4 / 12, "feet"),
  14137. weight: math.unit(220, "lb"),
  14138. name: "Back",
  14139. image: {
  14140. source: "./media/characters/memory/back.svg",
  14141. extra: 3641 / 3545,
  14142. bottom: 0.025
  14143. }
  14144. },
  14145. frontSkirt: {
  14146. height: math.unit(5 + 4 / 12, "feet"),
  14147. weight: math.unit(220, "lb"),
  14148. name: "Front (Skirt)",
  14149. image: {
  14150. source: "./media/characters/memory/front-skirt.svg",
  14151. extra: 3641 / 3545,
  14152. bottom: 0.03
  14153. }
  14154. },
  14155. frontDress: {
  14156. height: math.unit(5 + 4 / 12, "feet"),
  14157. weight: math.unit(220, "lb"),
  14158. name: "Front (Dress)",
  14159. image: {
  14160. source: "./media/characters/memory/front-dress.svg",
  14161. extra: 3641 / 3545,
  14162. bottom: 0.03
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Micro",
  14169. height: math.unit(6, "inches"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(5 + 4 / 12, "feet")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Luno" },
  14180. {
  14181. front: {
  14182. height: math.unit(4 + 11 / 12, "feet"),
  14183. weight: math.unit(100, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/luno/front.svg",
  14187. extra: 1535 / 1487,
  14188. bottom: 0.03
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Micro",
  14195. height: math.unit(3, "inches")
  14196. },
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(4 + 11 / 12, "feet"),
  14200. default: true
  14201. },
  14202. {
  14203. name: "Macro",
  14204. height: math.unit(300, "feet")
  14205. },
  14206. {
  14207. name: "Megamacro",
  14208. height: math.unit(700, "miles")
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Jamesy" },
  14214. {
  14215. front: {
  14216. height: math.unit(6 + 2 / 12, "feet"),
  14217. weight: math.unit(170, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/jamesy/front.svg",
  14221. extra: 440 / 382,
  14222. bottom: 0.005
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(3, "inches")
  14230. },
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(6 + 2 / 12, "feet"),
  14234. default: true
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(300, "feet")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(700, "miles")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Mark" },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(160, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/mark/front.svg",
  14255. extra: 3300 / 3100,
  14256. bottom: 136.42 / 3440.47
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Macro",
  14263. height: math.unit(120, "meters")
  14264. },
  14265. {
  14266. name: "Bigger Macro",
  14267. height: math.unit(350, "meters")
  14268. },
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(8, "km"),
  14272. default: true
  14273. },
  14274. {
  14275. name: "Continental",
  14276. height: math.unit(4550, "km")
  14277. },
  14278. {
  14279. name: "Planetary",
  14280. height: math.unit(65000, "km")
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Mac" },
  14286. {
  14287. front: {
  14288. height: math.unit(6, "feet"),
  14289. weight: math.unit(400, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/mac/front.svg",
  14293. extra: 1048 / 987.7,
  14294. bottom: 60 / 1107.6,
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Macro",
  14301. height: math.unit(500, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Bari" },
  14308. {
  14309. front: {
  14310. height: math.unit(5 + 2 / 12, "feet"),
  14311. weight: math.unit(190, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/bari/front.svg",
  14315. extra: 3156 / 2880,
  14316. bottom: 0.03
  14317. }
  14318. },
  14319. back: {
  14320. height: math.unit(5 + 2 / 12, "feet"),
  14321. weight: math.unit(190, "lb"),
  14322. name: "Back",
  14323. image: {
  14324. source: "./media/characters/bari/back.svg",
  14325. extra: 3260 / 2834,
  14326. bottom: 0.025
  14327. }
  14328. },
  14329. frontPlush: {
  14330. height: math.unit(5 + 2 / 12, "feet"),
  14331. weight: math.unit(190, "lb"),
  14332. name: "Front (Plush)",
  14333. image: {
  14334. source: "./media/characters/bari/front-plush.svg",
  14335. extra: 1112 / 1061,
  14336. bottom: 0.002
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Micro",
  14343. height: math.unit(3, "inches")
  14344. },
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(5 + 2 / 12, "feet"),
  14348. default: true
  14349. },
  14350. {
  14351. name: "Macro",
  14352. height: math.unit(20, "feet")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Hunter Misha Raven" },
  14358. {
  14359. front: {
  14360. height: math.unit(6 + 1 / 12, "feet"),
  14361. weight: math.unit(275, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/hunter-misha-raven/front.svg"
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Mortal",
  14371. height: math.unit(6 + 1 / 12, "feet")
  14372. },
  14373. {
  14374. name: "Divine",
  14375. height: math.unit(1.12134e34, "parsecs"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Max Calore" },
  14382. {
  14383. front: {
  14384. height: math.unit(6 + 3 / 12, "feet"),
  14385. weight: math.unit(220, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/max-calore/front.svg",
  14389. extra: 1700 / 1648,
  14390. bottom: 0.01
  14391. }
  14392. },
  14393. back: {
  14394. height: math.unit(6 + 3 / 12, "feet"),
  14395. weight: math.unit(220, "lb"),
  14396. name: "Back",
  14397. image: {
  14398. source: "./media/characters/max-calore/back.svg",
  14399. extra: 1700 / 1648,
  14400. bottom: 0.01
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(6 + 3 / 12, "feet"),
  14408. default: true
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Aspen" },
  14414. {
  14415. side: {
  14416. height: math.unit(2 + 8 / 12, "feet"),
  14417. weight: math.unit(99, "lb"),
  14418. name: "Side",
  14419. image: {
  14420. source: "./media/characters/aspen/side.svg",
  14421. extra: 152 / 138,
  14422. bottom: 0.032
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(2 + 8 / 12, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Sheila (Feral Wolf)" },
  14436. {
  14437. side: {
  14438. height: math.unit(3 + 2 / 12, "feet"),
  14439. weight: math.unit(224, "lb"),
  14440. name: "Side",
  14441. image: {
  14442. source: "./media/characters/sheila-feral-wolf/side.svg",
  14443. extra: 179 / 166,
  14444. bottom: 0.03
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(3 + 2 / 12, "feet"),
  14452. default: true
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Michelle" },
  14458. {
  14459. side: {
  14460. height: math.unit(1 + 9 / 12, "feet"),
  14461. weight: math.unit(38, "lb"),
  14462. name: "Side",
  14463. image: {
  14464. source: "./media/characters/michelle/side.svg",
  14465. extra: 147 / 136.7,
  14466. bottom: 0.03
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(1 + 9 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Nino" },
  14480. {
  14481. front: {
  14482. height: math.unit(1 + 1 / 12, "feet"),
  14483. weight: math.unit(18, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/nino/front.svg"
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Normal",
  14493. height: math.unit(1 + 1 / 12, "feet"),
  14494. default: true
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Viola" },
  14500. {
  14501. front: {
  14502. height: math.unit(1, "feet"),
  14503. weight: math.unit(16, "lb"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/viola/front.svg"
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(1, "feet"),
  14514. default: true
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Atlas" },
  14520. {
  14521. front: {
  14522. height: math.unit(6 + 5 / 12, "feet"),
  14523. weight: math.unit(580, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/atlas/front.svg",
  14527. extra: 298.5 / 290,
  14528. bottom: 0.015
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(6 + 5 / 12, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Davy" },
  14542. {
  14543. side: {
  14544. height: math.unit(1 + 10 / 12, "feet"),
  14545. weight: math.unit(25, "lb"),
  14546. name: "Side",
  14547. image: {
  14548. source: "./media/characters/davy/side.svg",
  14549. extra: 200 / 170,
  14550. bottom: 0.01
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(1 + 10 / 12, "feet"),
  14558. default: true
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Fiona" },
  14564. {
  14565. side: {
  14566. height: math.unit(4 + 8 / 12, "feet"),
  14567. weight: math.unit(166, "lb"),
  14568. name: "Side",
  14569. image: {
  14570. source: "./media/characters/fiona/side.svg",
  14571. extra: 232 / 220,
  14572. bottom: 0.03
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(4 + 8 / 12, "feet"),
  14580. default: true
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Lyla" },
  14586. {
  14587. front: {
  14588. height: math.unit(2, "feet"),
  14589. weight: math.unit(62, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/lyla/front.svg",
  14593. bottom: 0.1
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(2, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Perseus" },
  14607. {
  14608. side: {
  14609. height: math.unit(1.8, "feet"),
  14610. weight: math.unit(44, "lb"),
  14611. name: "Side",
  14612. image: {
  14613. source: "./media/characters/perseus/side.svg",
  14614. bottom: 0.21
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(1.8, "feet"),
  14622. default: true
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Remus" },
  14628. {
  14629. side: {
  14630. height: math.unit(4 + 2 / 12, "feet"),
  14631. weight: math.unit(20, "lb"),
  14632. name: "Side",
  14633. image: {
  14634. source: "./media/characters/remus/side.svg"
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(4 + 2 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Raf" },
  14648. {
  14649. front: {
  14650. height: math.unit(4 + 11 / 12, "feet"),
  14651. weight: math.unit(114, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/raf/front.svg",
  14655. bottom: 0.01
  14656. }
  14657. },
  14658. side: {
  14659. height: math.unit(4 + 11 / 12, "feet"),
  14660. weight: math.unit(114, "lb"),
  14661. name: "Side",
  14662. image: {
  14663. source: "./media/characters/raf/side.svg",
  14664. bottom: 0.005
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Micro",
  14671. height: math.unit(2, "inches")
  14672. },
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(4 + 11 / 12, "feet"),
  14676. default: true
  14677. },
  14678. {
  14679. name: "Macro",
  14680. height: math.unit(70, "feet")
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Liam Einarr" },
  14686. {
  14687. front: {
  14688. height: math.unit(1.5, "meters"),
  14689. weight: math.unit(68, "kg"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/liam-einarr/front.svg",
  14693. extra: 2822 / 2666
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(1.5, "meters"),
  14698. weight: math.unit(68, "kg"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/liam-einarr/back.svg",
  14702. extra: 2822 / 2666,
  14703. bottom: 0.015
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(1.5, "meters"),
  14711. default: true
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(150, "meters")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(35, "km")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Linda" },
  14725. {
  14726. front: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(75, "kg"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/linda/front.svg",
  14732. extra: 930 / 874,
  14733. bottom: 0.004
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Normal",
  14740. height: math.unit(6, "feet"),
  14741. default: true
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Caylex" },
  14747. {
  14748. front: {
  14749. height: math.unit(6 + 8 / 12, "feet"),
  14750. weight: math.unit(220, "lb"),
  14751. name: "Front",
  14752. image: {
  14753. source: "./media/characters/caylex/front.svg",
  14754. extra: 821 / 772,
  14755. bottom: 0.07
  14756. }
  14757. },
  14758. back: {
  14759. height: math.unit(6 + 8 / 12, "feet"),
  14760. weight: math.unit(220, "lb"),
  14761. name: "Back",
  14762. image: {
  14763. source: "./media/characters/caylex/back.svg",
  14764. extra: 821 / 772,
  14765. bottom: 0.022
  14766. }
  14767. },
  14768. hand: {
  14769. height: math.unit(1.25, "feet"),
  14770. name: "Hand",
  14771. image: {
  14772. source: "./media/characters/caylex/hand.svg"
  14773. }
  14774. },
  14775. foot: {
  14776. height: math.unit(1.6, "feet"),
  14777. name: "Foot",
  14778. image: {
  14779. source: "./media/characters/caylex/foot.svg"
  14780. }
  14781. },
  14782. armored: {
  14783. height: math.unit(6 + 8 / 12, "feet"),
  14784. weight: math.unit(250, "lb"),
  14785. name: "Armored",
  14786. image: {
  14787. source: "./media/characters/caylex/armored.svg",
  14788. extra: 1420 / 1310,
  14789. bottom: 0.045
  14790. }
  14791. },
  14792. },
  14793. [
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(6 + 8 / 12, "feet"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Normal+",
  14801. height: math.unit(12, "feet")
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Alana" },
  14807. {
  14808. front: {
  14809. height: math.unit(7 + 6 / 12, "feet"),
  14810. weight: math.unit(288, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/alana/front.svg",
  14814. extra: 679 / 653,
  14815. bottom: 22.5 / 701
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(7 + 6 / 12, "feet")
  14823. },
  14824. {
  14825. name: "Large",
  14826. height: math.unit(50, "feet")
  14827. },
  14828. {
  14829. name: "Macro",
  14830. height: math.unit(100, "feet"),
  14831. default: true
  14832. },
  14833. {
  14834. name: "Macro+",
  14835. height: math.unit(200, "feet")
  14836. },
  14837. ]
  14838. ))
  14839. characterMakers.push(() => makeCharacter(
  14840. { name: "Hasani" },
  14841. {
  14842. front: {
  14843. height: math.unit(6 + 1 / 12, "feet"),
  14844. weight: math.unit(210, "lb"),
  14845. name: "Front",
  14846. image: {
  14847. source: "./media/characters/hasani/front.svg",
  14848. extra: 244 / 232,
  14849. bottom: 0.01
  14850. }
  14851. },
  14852. back: {
  14853. height: math.unit(6 + 1 / 12, "feet"),
  14854. weight: math.unit(210, "lb"),
  14855. name: "Back",
  14856. image: {
  14857. source: "./media/characters/hasani/back.svg",
  14858. extra: 244 / 232,
  14859. bottom: 0.01
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(6 + 1 / 12, "feet")
  14867. },
  14868. {
  14869. name: "Macro",
  14870. height: math.unit(175, "feet"),
  14871. default: true
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Nita" },
  14877. {
  14878. front: {
  14879. height: math.unit(1.82, "meters"),
  14880. weight: math.unit(140, "lb"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/nita/front.svg",
  14884. extra: 2473 / 2363,
  14885. bottom: 0.01
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(1.82, "m")
  14893. },
  14894. {
  14895. name: "Macro",
  14896. height: math.unit(300, "m")
  14897. },
  14898. {
  14899. name: "Mistake Canon",
  14900. height: math.unit(0.5, "miles"),
  14901. default: true
  14902. },
  14903. {
  14904. name: "Big Mistake",
  14905. height: math.unit(13, "miles")
  14906. },
  14907. {
  14908. name: "Playing God",
  14909. height: math.unit(2450, "miles")
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Shiriko" },
  14915. {
  14916. front: {
  14917. height: math.unit(4, "feet"),
  14918. weight: math.unit(120, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/shiriko/front.svg",
  14922. extra: 195 / 188
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(4, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Deja" },
  14936. {
  14937. front: {
  14938. height: math.unit(6, "feet"),
  14939. name: "front",
  14940. image: {
  14941. source: "./media/characters/deja/front.svg",
  14942. extra: 926 / 840,
  14943. bottom: 0.07
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Planck Length",
  14950. height: math.unit(1.6e-35, "meters")
  14951. },
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(30.48, "meters"),
  14955. default: true
  14956. },
  14957. {
  14958. name: "Universal",
  14959. height: math.unit(8.8e26, "meters")
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Anima" },
  14965. {
  14966. side: {
  14967. height: math.unit(8, "feet"),
  14968. weight: math.unit(6300, "lb"),
  14969. name: "Side",
  14970. image: {
  14971. source: "./media/characters/anima/side.svg",
  14972. bottom: 0.035
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(8, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Bianca" },
  14986. {
  14987. front: {
  14988. height: math.unit(8, "feet"),
  14989. weight: math.unit(350, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/bianca/front.svg",
  14993. extra: 234 / 225,
  14994. bottom: 0.03
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(8, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Adinia" },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(150, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/adinia/front.svg",
  15015. extra: 1845 / 1672,
  15016. bottom: 0.02
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(150, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/adinia/back.svg",
  15025. extra: 1845 / 1672,
  15026. bottom: 0.002
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(11 + 5 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Lykasa" },
  15040. {
  15041. front: {
  15042. height: math.unit(3, "meters"),
  15043. weight: math.unit(200, "kg"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/lykasa/front.svg",
  15047. extra: 1076 / 976,
  15048. bottom: 0.06
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(3, "meters")
  15056. },
  15057. {
  15058. name: "Kaiju",
  15059. height: math.unit(120, "meters"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "Mega Kaiju",
  15064. height: math.unit(240, "km")
  15065. },
  15066. {
  15067. name: "Giga Kaiju",
  15068. height: math.unit(400, "megameters")
  15069. },
  15070. {
  15071. name: "Tera Kaiju",
  15072. height: math.unit(800, "gigameters")
  15073. },
  15074. {
  15075. name: "Kaiju Dragon Goddess",
  15076. height: math.unit(26, "zettaparsecs")
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Malfaren" },
  15082. {
  15083. side: {
  15084. height: math.unit(283 / 124 * 6, "feet"),
  15085. weight: math.unit(35000, "lb"),
  15086. name: "Side",
  15087. image: {
  15088. source: "./media/characters/malfaren/side.svg",
  15089. extra: 2500 / 1010,
  15090. bottom: 0.01
  15091. }
  15092. },
  15093. front: {
  15094. height: math.unit(22.36, "feet"),
  15095. weight: math.unit(35000, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/malfaren/front.svg",
  15099. extra: 1631 / 1476,
  15100. bottom: 0.01
  15101. }
  15102. },
  15103. maw: {
  15104. height: math.unit(6.9, "feet"),
  15105. name: "Maw",
  15106. image: {
  15107. source: "./media/characters/malfaren/maw.svg"
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Big",
  15114. height: math.unit(283 / 162 * 6, "feet"),
  15115. },
  15116. {
  15117. name: "Bigger",
  15118. height: math.unit(283 / 124 * 6, "feet")
  15119. },
  15120. {
  15121. name: "Massive",
  15122. height: math.unit(283 / 92 * 6, "feet"),
  15123. default: true
  15124. },
  15125. {
  15126. name: "👀💦",
  15127. height: math.unit(283 / 73 * 6, "feet"),
  15128. },
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Kernel" },
  15133. {
  15134. front: {
  15135. height: math.unit(1.7, "m"),
  15136. weight: math.unit(70, "kg"),
  15137. name: "Front",
  15138. image: {
  15139. source: "./media/characters/kernel/front.svg",
  15140. extra: 222 / 210,
  15141. bottom: 0.007
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Nano",
  15148. height: math.unit(17, "micrometers")
  15149. },
  15150. {
  15151. name: "Micro",
  15152. height: math.unit(1.7, "mm")
  15153. },
  15154. {
  15155. name: "Small",
  15156. height: math.unit(1.7, "cm")
  15157. },
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(1.7, "m"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Jayne Folest" },
  15167. {
  15168. front: {
  15169. height: math.unit(1.75, "meters"),
  15170. weight: math.unit(65, "kg"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/jayne-folest/front.svg",
  15174. extra: 2115 / 2007,
  15175. bottom: 0.02
  15176. }
  15177. },
  15178. back: {
  15179. height: math.unit(1.75, "meters"),
  15180. weight: math.unit(65, "kg"),
  15181. name: "Back",
  15182. image: {
  15183. source: "./media/characters/jayne-folest/back.svg",
  15184. extra: 2115 / 2007,
  15185. bottom: 0.005
  15186. }
  15187. },
  15188. frontClothed: {
  15189. height: math.unit(1.75, "meters"),
  15190. weight: math.unit(65, "kg"),
  15191. name: "Front (Clothed)",
  15192. image: {
  15193. source: "./media/characters/jayne-folest/front-clothed.svg",
  15194. extra: 2115 / 2007,
  15195. bottom: 0.035
  15196. }
  15197. },
  15198. hand: {
  15199. height: math.unit(1 / 1.260, "feet"),
  15200. name: "Hand",
  15201. image: {
  15202. source: "./media/characters/jayne-folest/hand.svg"
  15203. }
  15204. },
  15205. foot: {
  15206. height: math.unit(1 / 0.918, "feet"),
  15207. name: "Foot",
  15208. image: {
  15209. source: "./media/characters/jayne-folest/foot.svg"
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Micro",
  15216. height: math.unit(4, "cm")
  15217. },
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(1.75, "meters")
  15221. },
  15222. {
  15223. name: "Macro",
  15224. height: math.unit(47.5, "meters"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Algier" },
  15231. {
  15232. front: {
  15233. height: math.unit(180, "cm"),
  15234. weight: math.unit(70, "kg"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/algier/front.svg",
  15238. extra: 596 / 572,
  15239. bottom: 0.04
  15240. }
  15241. },
  15242. back: {
  15243. height: math.unit(180, "cm"),
  15244. weight: math.unit(70, "kg"),
  15245. name: "Back",
  15246. image: {
  15247. source: "./media/characters/algier/back.svg",
  15248. extra: 596 / 572,
  15249. bottom: 0.025
  15250. }
  15251. },
  15252. frontdressed: {
  15253. height: math.unit(180, "cm"),
  15254. weight: math.unit(150, "kg"),
  15255. name: "Front-dressed",
  15256. image: {
  15257. source: "./media/characters/algier/front-dressed.svg",
  15258. extra: 596 / 572,
  15259. bottom: 0.038
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Micro",
  15266. height: math.unit(5, "cm")
  15267. },
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(180, "cm"),
  15271. default: true
  15272. },
  15273. {
  15274. name: "Macro",
  15275. height: math.unit(64, "m")
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Pretzel" },
  15281. {
  15282. upright: {
  15283. height: math.unit(7, "feet"),
  15284. weight: math.unit(300, "lb"),
  15285. name: "Upright",
  15286. image: {
  15287. source: "./media/characters/pretzel/upright.svg",
  15288. extra: 534 / 522,
  15289. bottom: 0.065
  15290. }
  15291. },
  15292. sprawling: {
  15293. height: math.unit(3.75, "feet"),
  15294. weight: math.unit(300, "lb"),
  15295. name: "Sprawling",
  15296. image: {
  15297. source: "./media/characters/pretzel/sprawling.svg",
  15298. extra: 314 / 281,
  15299. bottom: 0.1
  15300. }
  15301. },
  15302. tongue: {
  15303. height: math.unit(2, "feet"),
  15304. name: "Tongue",
  15305. image: {
  15306. source: "./media/characters/pretzel/tongue.svg"
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Normal",
  15313. height: math.unit(7, "feet"),
  15314. default: true
  15315. },
  15316. {
  15317. name: "Oversized",
  15318. height: math.unit(15, "feet")
  15319. },
  15320. {
  15321. name: "Huge",
  15322. height: math.unit(30, "feet")
  15323. },
  15324. {
  15325. name: "Macro",
  15326. height: math.unit(250, "feet")
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Roxi" },
  15332. {
  15333. sideFront: {
  15334. height: math.unit(5 + 2 / 12, "feet"),
  15335. weight: math.unit(120, "lb"),
  15336. name: "Front Side",
  15337. image: {
  15338. source: "./media/characters/roxi/side-front.svg",
  15339. extra: 2924 / 2717,
  15340. bottom: 0.08
  15341. }
  15342. },
  15343. sideBack: {
  15344. height: math.unit(5 + 2 / 12, "feet"),
  15345. weight: math.unit(120, "lb"),
  15346. name: "Back Side",
  15347. image: {
  15348. source: "./media/characters/roxi/side-back.svg",
  15349. extra: 2904 / 2693,
  15350. bottom: 0.06
  15351. }
  15352. },
  15353. front: {
  15354. height: math.unit(5 + 2 / 12, "feet"),
  15355. weight: math.unit(120, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/roxi/front.svg",
  15359. extra: 2028 / 1907,
  15360. bottom: 0.01
  15361. }
  15362. },
  15363. frontAlt: {
  15364. height: math.unit(5 + 2 / 12, "feet"),
  15365. weight: math.unit(120, "lb"),
  15366. name: "Front (Alt)",
  15367. image: {
  15368. source: "./media/characters/roxi/front-alt.svg",
  15369. extra: 1828 / 1798,
  15370. bottom: 0.01
  15371. }
  15372. },
  15373. sitting: {
  15374. height: math.unit(2.8, "feet"),
  15375. weight: math.unit(120, "lb"),
  15376. name: "Sitting",
  15377. image: {
  15378. source: "./media/characters/roxi/sitting.svg",
  15379. extra: 2660 / 2462,
  15380. bottom: 0.1
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(5 + 2 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Shadow" },
  15394. {
  15395. side: {
  15396. height: math.unit(55, "feet"),
  15397. weight: math.unit(153, "tons"),
  15398. name: "Side",
  15399. image: {
  15400. source: "./media/characters/shadow/side.svg",
  15401. extra: 701 / 628,
  15402. bottom: 0.02
  15403. }
  15404. },
  15405. flying: {
  15406. height: math.unit(145, "feet"),
  15407. weight: math.unit(153, "tons"),
  15408. name: "Flying",
  15409. image: {
  15410. source: "./media/characters/shadow/flying.svg"
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(55, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Marcie" },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(200, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/marcie/front.svg",
  15431. extra: 960 / 876,
  15432. bottom: 58 / 1017.87
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Macro",
  15439. height: math.unit(1, "mile"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Kachina" },
  15446. {
  15447. front: {
  15448. height: math.unit(7, "feet"),
  15449. weight: math.unit(200, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/kachina/front.svg",
  15453. extra: 1290.68 / 1119,
  15454. bottom: 36.5 / 1327.18
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(7, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Kash" },
  15468. {
  15469. looking: {
  15470. height: math.unit(2, "meters"),
  15471. weight: math.unit(300, "kg"),
  15472. name: "Looking",
  15473. image: {
  15474. source: "./media/characters/kash/looking.svg",
  15475. extra: 474 / 344,
  15476. bottom: 0.03
  15477. }
  15478. },
  15479. side: {
  15480. height: math.unit(2, "meters"),
  15481. weight: math.unit(300, "kg"),
  15482. name: "Side",
  15483. image: {
  15484. source: "./media/characters/kash/side.svg",
  15485. extra: 302 / 251,
  15486. bottom: 0.03
  15487. }
  15488. },
  15489. front: {
  15490. height: math.unit(2, "meters"),
  15491. weight: math.unit(300, "kg"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/kash/front.svg",
  15495. extra: 495 / 360,
  15496. bottom: 0.015
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(2, "meters"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Big",
  15508. height: math.unit(3, "meters")
  15509. },
  15510. {
  15511. name: "Large",
  15512. height: math.unit(5, "meters")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Lalim" },
  15518. {
  15519. feeding: {
  15520. height: math.unit(6.7, "feet"),
  15521. weight: math.unit(350, "lb"),
  15522. name: "Feeding",
  15523. image: {
  15524. source: "./media/characters/lalim/feeding.svg",
  15525. }
  15526. },
  15527. },
  15528. [
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(6.7, "feet"),
  15532. default: true
  15533. },
  15534. ]
  15535. ))
  15536. characterMakers.push(() => makeCharacter(
  15537. { name: "De'Vout" },
  15538. {
  15539. front: {
  15540. height: math.unit(9.5, "feet"),
  15541. weight: math.unit(600, "lb"),
  15542. name: "Front",
  15543. image: {
  15544. source: "./media/characters/de'vout/front.svg",
  15545. extra: 1443 / 1328,
  15546. bottom: 0.025
  15547. }
  15548. },
  15549. back: {
  15550. height: math.unit(9.5, "feet"),
  15551. weight: math.unit(600, "lb"),
  15552. name: "Back",
  15553. image: {
  15554. source: "./media/characters/de'vout/back.svg",
  15555. extra: 1443 / 1328
  15556. }
  15557. },
  15558. frontDressed: {
  15559. height: math.unit(9.5, "feet"),
  15560. weight: math.unit(600, "lb"),
  15561. name: "Front (Dressed",
  15562. image: {
  15563. source: "./media/characters/de'vout/front-dressed.svg",
  15564. extra: 1443 / 1328,
  15565. bottom: 0.025
  15566. }
  15567. },
  15568. backDressed: {
  15569. height: math.unit(9.5, "feet"),
  15570. weight: math.unit(600, "lb"),
  15571. name: "Back (Dressed",
  15572. image: {
  15573. source: "./media/characters/de'vout/back-dressed.svg",
  15574. extra: 1443 / 1328
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(9.5, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Talana" },
  15588. {
  15589. front: {
  15590. height: math.unit(8, "feet"),
  15591. weight: math.unit(225, "lb"),
  15592. name: "Front",
  15593. image: {
  15594. source: "./media/characters/talana/front.svg",
  15595. extra: 1410 / 1300,
  15596. bottom: 0.015
  15597. }
  15598. },
  15599. frontDressed: {
  15600. height: math.unit(8, "feet"),
  15601. weight: math.unit(225, "lb"),
  15602. name: "Front (Dressed",
  15603. image: {
  15604. source: "./media/characters/talana/front-dressed.svg",
  15605. extra: 1410 / 1300,
  15606. bottom: 0.015
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(8, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Xeauvok" },
  15620. {
  15621. side: {
  15622. height: math.unit(7.2, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Side",
  15625. image: {
  15626. source: "./media/characters/xeauvok/side.svg",
  15627. extra: 1975 / 1523,
  15628. bottom: 0.07
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(7.2, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Zara" },
  15642. {
  15643. side: {
  15644. height: math.unit(10, "feet"),
  15645. weight: math.unit(900, "kg"),
  15646. name: "Side",
  15647. image: {
  15648. source: "./media/characters/zara/side.svg",
  15649. extra: 504 / 498
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(10, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Richard (Dragon)" },
  15663. {
  15664. side: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Side",
  15668. image: {
  15669. source: "./media/characters/richard-dragon/side.svg",
  15670. extra: 845 / 340,
  15671. bottom: 0.017
  15672. }
  15673. },
  15674. maw: {
  15675. height: math.unit(2.97, "feet"),
  15676. name: "Maw",
  15677. image: {
  15678. source: "./media/characters/richard-dragon/maw.svg"
  15679. }
  15680. },
  15681. },
  15682. [
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Richard (Smeargle)" },
  15687. {
  15688. front: {
  15689. height: math.unit(4, "feet"),
  15690. weight: math.unit(100, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/richard-smeargle/front.svg",
  15694. extra: 2952 / 2820,
  15695. bottom: 0.028
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(4, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Dynamax",
  15707. height: math.unit(20, "meters")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Klay" },
  15713. {
  15714. front: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(110, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/klay/front.svg",
  15720. extra: 962 / 883,
  15721. bottom: 0.04
  15722. }
  15723. },
  15724. back: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(110, "lb"),
  15727. name: "Back",
  15728. image: {
  15729. source: "./media/characters/klay/back.svg",
  15730. extra: 962 / 883
  15731. }
  15732. },
  15733. beans: {
  15734. height: math.unit(1.15, "feet"),
  15735. name: "Beans",
  15736. image: {
  15737. source: "./media/characters/klay/beans.svg"
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Micro",
  15744. height: math.unit(6, "inches")
  15745. },
  15746. {
  15747. name: "Mini",
  15748. height: math.unit(3, "feet")
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(6, "feet"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Big",
  15757. height: math.unit(25, "feet")
  15758. },
  15759. {
  15760. name: "Macro",
  15761. height: math.unit(100, "feet")
  15762. },
  15763. {
  15764. name: "Megamacro",
  15765. height: math.unit(400, "feet")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Marcus" },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(160, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/marcus/front.svg",
  15778. extra: 734 / 676,
  15779. bottom: 0.03
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Little",
  15786. height: math.unit(6, "feet")
  15787. },
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(110, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Macro",
  15795. height: math.unit(250, "feet")
  15796. },
  15797. {
  15798. name: "Megamacro",
  15799. height: math.unit(1000, "feet")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Claude DelRoute" },
  15805. {
  15806. front: {
  15807. height: math.unit(7, "feet"),
  15808. weight: math.unit(275, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/claude-delroute/front.svg",
  15812. extra: 230 / 214,
  15813. bottom: 0.007
  15814. }
  15815. },
  15816. side: {
  15817. height: math.unit(7, "feet"),
  15818. weight: math.unit(275, "lb"),
  15819. name: "Side",
  15820. image: {
  15821. source: "./media/characters/claude-delroute/side.svg",
  15822. extra: 222 / 214,
  15823. bottom: 0.01
  15824. }
  15825. },
  15826. back: {
  15827. height: math.unit(7, "feet"),
  15828. weight: math.unit(275, "lb"),
  15829. name: "Back",
  15830. image: {
  15831. source: "./media/characters/claude-delroute/back.svg",
  15832. extra: 230 / 214,
  15833. bottom: 0.015
  15834. }
  15835. },
  15836. maw: {
  15837. height: math.unit(0.6407, "meters"),
  15838. name: "Maw",
  15839. image: {
  15840. source: "./media/characters/claude-delroute/maw.svg"
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(7, "feet"),
  15848. default: true
  15849. },
  15850. {
  15851. name: "Lorge",
  15852. height: math.unit(20, "feet")
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Dragonien" },
  15858. {
  15859. front: {
  15860. height: math.unit(8 + 4 / 12, "feet"),
  15861. weight: math.unit(600, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/dragonien/front.svg",
  15865. extra: 100 / 94,
  15866. bottom: 3.3 / 103.3445
  15867. }
  15868. },
  15869. back: {
  15870. height: math.unit(8 + 4 / 12, "feet"),
  15871. weight: math.unit(600, "lb"),
  15872. name: "Back",
  15873. image: {
  15874. source: "./media/characters/dragonien/back.svg",
  15875. extra: 776 / 746,
  15876. bottom: 6.4 / 782.0616
  15877. }
  15878. },
  15879. foot: {
  15880. height: math.unit(1.54, "feet"),
  15881. name: "Foot",
  15882. image: {
  15883. source: "./media/characters/dragonien/foot.svg",
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(8 + 4 / 12, "feet"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Macro",
  15895. height: math.unit(200, "feet")
  15896. },
  15897. {
  15898. name: "Megamacro",
  15899. height: math.unit(1, "mile")
  15900. },
  15901. {
  15902. name: "Gigamacro",
  15903. height: math.unit(1000, "miles")
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Desta" },
  15909. {
  15910. front: {
  15911. height: math.unit(5 + 2 / 12, "feet"),
  15912. weight: math.unit(110, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/desta/front.svg",
  15916. extra: 1482 / 1417
  15917. }
  15918. },
  15919. side: {
  15920. height: math.unit(5 + 2 / 12, "feet"),
  15921. weight: math.unit(110, "lb"),
  15922. name: "Side",
  15923. image: {
  15924. source: "./media/characters/desta/side.svg",
  15925. extra: 2579 / 2491,
  15926. bottom: 0.053
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Micro",
  15933. height: math.unit(6, "inches")
  15934. },
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(5 + 2 / 12, "feet"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(62, "feet")
  15943. },
  15944. {
  15945. name: "Megamacro",
  15946. height: math.unit(1800, "feet")
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Storm Alystar" },
  15952. {
  15953. front: {
  15954. height: math.unit(10, "feet"),
  15955. weight: math.unit(700, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/storm-alystar/front.svg",
  15959. extra: 2112 / 1898,
  15960. bottom: 0.034
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Micro",
  15967. height: math.unit(3.5, "inches")
  15968. },
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(10, "feet"),
  15972. default: true
  15973. },
  15974. {
  15975. name: "Macro",
  15976. height: math.unit(400, "feet")
  15977. },
  15978. {
  15979. name: "Deific",
  15980. height: math.unit(60, "miles")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Ilia" },
  15986. {
  15987. front: {
  15988. height: math.unit(2.35, "meters"),
  15989. weight: math.unit(119, "kg"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/ilia/front.svg",
  15993. extra: 1285 / 1255,
  15994. bottom: 0.06
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(2.35, "meters")
  16002. },
  16003. {
  16004. name: "Macro",
  16005. height: math.unit(140, "meters"),
  16006. default: true
  16007. },
  16008. {
  16009. name: "Megamacro",
  16010. height: math.unit(100, "miles")
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "KingDead" },
  16016. {
  16017. front: {
  16018. height: math.unit(6 + 5 / 12, "feet"),
  16019. weight: math.unit(190, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/kingdead/front.svg",
  16023. extra: 1228 / 1177
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Micro",
  16030. height: math.unit(7, "inches")
  16031. },
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(6 + 5 / 12, "feet")
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(150, "feet"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Megamacro",
  16043. height: math.unit(200, "miles")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Kyrehx" },
  16049. {
  16050. front: {
  16051. height: math.unit(8, "feet"),
  16052. weight: math.unit(600, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/kyrehx/front.svg",
  16056. extra: 1195 / 1095,
  16057. bottom: 0.034
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Micro",
  16064. height: math.unit(2, "inches")
  16065. },
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(8, "feet"),
  16069. default: true
  16070. },
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(255, "feet")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Xang" },
  16079. {
  16080. front: {
  16081. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16082. weight: math.unit(184, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/xang/front.svg",
  16086. extra: 845 / 755
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16094. default: true
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(0.935 * 146, "feet")
  16099. },
  16100. {
  16101. name: "Megamacro",
  16102. height: math.unit(0.935 * 3, "miles")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Doc Weardno" },
  16108. {
  16109. frontDressed: {
  16110. height: math.unit(5 + 7 / 12, "feet"),
  16111. weight: math.unit(140, "lb"),
  16112. name: "Front (Dressed)",
  16113. image: {
  16114. source: "./media/characters/doc-weardno/front-dressed.svg",
  16115. extra: 263 / 234
  16116. }
  16117. },
  16118. backDressed: {
  16119. height: math.unit(5 + 7 / 12, "feet"),
  16120. weight: math.unit(140, "lb"),
  16121. name: "Back (Dressed)",
  16122. image: {
  16123. source: "./media/characters/doc-weardno/back-dressed.svg",
  16124. extra: 266 / 238
  16125. }
  16126. },
  16127. front: {
  16128. height: math.unit(5 + 7 / 12, "feet"),
  16129. weight: math.unit(140, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/doc-weardno/front.svg",
  16133. extra: 254 / 233
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Micro",
  16140. height: math.unit(3, "inches")
  16141. },
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 7 / 12, "feet"),
  16145. default: true
  16146. },
  16147. {
  16148. name: "Macro",
  16149. height: math.unit(25, "feet")
  16150. },
  16151. {
  16152. name: "Megamacro",
  16153. height: math.unit(2, "miles")
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Seth Whilst" },
  16159. {
  16160. front: {
  16161. height: math.unit(6 + 2 / 12, "feet"),
  16162. weight: math.unit(153, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/seth-whilst/front.svg",
  16166. bottom: 0.07
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Micro",
  16173. height: math.unit(5, "inches")
  16174. },
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(6 + 2 / 12, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Pocket Jabari" },
  16184. {
  16185. front: {
  16186. height: math.unit(3, "inches"),
  16187. weight: math.unit(8, "grams"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/pocket-jabari/front.svg",
  16191. extra: 1024 / 974,
  16192. bottom: 0.039
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Minimicro",
  16199. height: math.unit(8, "mm")
  16200. },
  16201. {
  16202. name: "Micro",
  16203. height: math.unit(3, "inches"),
  16204. default: true
  16205. },
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(3, "feet")
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Sapphy" },
  16214. {
  16215. front: {
  16216. height: math.unit(15, "feet"),
  16217. weight: math.unit(3280, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/sapphy/front.svg",
  16221. extra: 671 / 577,
  16222. bottom: 0.085
  16223. }
  16224. },
  16225. back: {
  16226. height: math.unit(15, "feet"),
  16227. weight: math.unit(3280, "lb"),
  16228. name: "Back",
  16229. image: {
  16230. source: "./media/characters/sapphy/back.svg",
  16231. extra: 631 / 607,
  16232. bottom: 0.045
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(15, "feet")
  16240. },
  16241. {
  16242. name: "Casual Macro",
  16243. height: math.unit(120, "feet")
  16244. },
  16245. {
  16246. name: "Macro",
  16247. height: math.unit(2150, "feet"),
  16248. default: true
  16249. },
  16250. {
  16251. name: "Megamacro",
  16252. height: math.unit(8, "miles")
  16253. },
  16254. {
  16255. name: "Galaxy Mom",
  16256. height: math.unit(6, "megalightyears")
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Kiro" },
  16262. {
  16263. front: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(170, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/kiro/front.svg",
  16269. extra: 1064 / 1012,
  16270. bottom: 0.052
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Micro",
  16277. height: math.unit(6, "inches")
  16278. },
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(6, "feet"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Macro",
  16286. height: math.unit(72, "feet")
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Irishfox" },
  16292. {
  16293. front: {
  16294. height: math.unit(5 + 9 / 12, "feet"),
  16295. weight: math.unit(175, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/irishfox/front.svg",
  16299. extra: 1912 / 1680,
  16300. bottom: 0.02
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Nano",
  16307. height: math.unit(1, "mm")
  16308. },
  16309. {
  16310. name: "Micro",
  16311. height: math.unit(2, "inches")
  16312. },
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(5 + 9 / 12, "feet"),
  16316. default: true
  16317. },
  16318. {
  16319. name: "Macro",
  16320. height: math.unit(45, "feet")
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Aronai Sieyes" },
  16326. {
  16327. front: {
  16328. height: math.unit(6 + 1 / 12, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/aronai-sieyes/front.svg",
  16333. extra: 1556 / 1480,
  16334. bottom: 0.015
  16335. }
  16336. },
  16337. side: {
  16338. height: math.unit(6 + 1 / 12, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Side",
  16341. image: {
  16342. source: "./media/characters/aronai-sieyes/side.svg",
  16343. extra: 1433 / 1390,
  16344. bottom: 0.0393
  16345. }
  16346. },
  16347. back: {
  16348. height: math.unit(6 + 1 / 12, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Back",
  16351. image: {
  16352. source: "./media/characters/aronai-sieyes/back.svg",
  16353. extra: 1544 / 1494,
  16354. bottom: 0.02
  16355. }
  16356. },
  16357. frontClothed: {
  16358. height: math.unit(6 + 1 / 12, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Front (Clothed)",
  16361. image: {
  16362. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16363. extra: 1582 / 1527
  16364. }
  16365. },
  16366. feral: {
  16367. height: math.unit(18, "feet"),
  16368. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16369. name: "Feral",
  16370. image: {
  16371. source: "./media/characters/aronai-sieyes/feral.svg",
  16372. extra: 1530 / 1240,
  16373. bottom: 0.035
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Micro",
  16380. height: math.unit(2, "inches")
  16381. },
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(6 + 1 / 12, "feet"),
  16385. default: true
  16386. }
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Xuna" },
  16391. {
  16392. front: {
  16393. height: math.unit(12, "feet"),
  16394. weight: math.unit(410, "kg"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/xuna/front.svg",
  16398. extra: 2184 / 1980
  16399. }
  16400. },
  16401. side: {
  16402. height: math.unit(12, "feet"),
  16403. weight: math.unit(410, "kg"),
  16404. name: "Side",
  16405. image: {
  16406. source: "./media/characters/xuna/side.svg",
  16407. extra: 2184 / 1980
  16408. }
  16409. },
  16410. back: {
  16411. height: math.unit(12, "feet"),
  16412. weight: math.unit(410, "kg"),
  16413. name: "Back",
  16414. image: {
  16415. source: "./media/characters/xuna/back.svg",
  16416. extra: 2184 / 1980
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Nano glow",
  16423. height: math.unit(10, "nm")
  16424. },
  16425. {
  16426. name: "Micro floof",
  16427. height: math.unit(0.3, "m")
  16428. },
  16429. {
  16430. name: "Huggable softy boi",
  16431. height: math.unit(3.6576, "m"),
  16432. default: true
  16433. },
  16434. {
  16435. name: "Admirable floof",
  16436. height: math.unit(80, "meters")
  16437. },
  16438. {
  16439. name: "Gentle macro",
  16440. height: math.unit(300, "meters")
  16441. },
  16442. {
  16443. name: "Very careful floof",
  16444. height: math.unit(3200, "meters")
  16445. },
  16446. {
  16447. name: "The mega floof",
  16448. height: math.unit(36000, "meters")
  16449. },
  16450. {
  16451. name: "Giga-fur-Wicker",
  16452. height: math.unit(4800000, "meters")
  16453. },
  16454. {
  16455. name: "Licky world",
  16456. height: math.unit(20000000, "meters")
  16457. },
  16458. {
  16459. name: "Floofy cyan sun",
  16460. height: math.unit(1500000000, "meters")
  16461. },
  16462. {
  16463. name: "Milky Wicker",
  16464. height: math.unit(1000000000000000000000, "meters")
  16465. },
  16466. {
  16467. name: "The observing Wicker",
  16468. height: math.unit(999999999999999999999999999, "meters")
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Arokha Sieyes" },
  16474. {
  16475. front: {
  16476. height: math.unit(5 + 9 / 12, "feet"),
  16477. weight: math.unit(150, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/arokha-sieyes/front.svg",
  16481. extra: 1425 / 1284,
  16482. bottom: 0.05
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(5 + 9 / 12, "feet")
  16490. },
  16491. {
  16492. name: "Macro",
  16493. height: math.unit(30, "meters"),
  16494. default: true
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Arokh Sieyes" },
  16500. {
  16501. front: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(180, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/arokh-sieyes/front.svg",
  16507. extra: 1830 / 1769,
  16508. bottom: 0.01
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(6, "feet")
  16516. },
  16517. {
  16518. name: "Macro",
  16519. height: math.unit(30, "meters"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Goldeneye" },
  16526. {
  16527. side: {
  16528. height: math.unit(13 + 1 / 12, "feet"),
  16529. weight: math.unit(8.5, "tonnes"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/goldeneye/side.svg",
  16533. extra: 1182 / 778,
  16534. bottom: 0.067
  16535. }
  16536. },
  16537. paw: {
  16538. height: math.unit(3.4, "feet"),
  16539. name: "Paw",
  16540. image: {
  16541. source: "./media/characters/goldeneye/paw.svg"
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(13 + 1 / 12, "feet"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Leonardo Lycheborne" },
  16555. {
  16556. front: {
  16557. height: math.unit(6 + 1 / 12, "feet"),
  16558. weight: math.unit(210, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/leonardo-lycheborne/front.svg",
  16562. extra: 390 / 365,
  16563. bottom: 0.032
  16564. }
  16565. },
  16566. side: {
  16567. height: math.unit(6 + 1 / 12, "feet"),
  16568. weight: math.unit(210, "lb"),
  16569. name: "Side",
  16570. image: {
  16571. source: "./media/characters/leonardo-lycheborne/side.svg",
  16572. extra: 390 / 365,
  16573. bottom: 0.005
  16574. }
  16575. },
  16576. back: {
  16577. height: math.unit(6 + 1 / 12, "feet"),
  16578. weight: math.unit(210, "lb"),
  16579. name: "Back",
  16580. image: {
  16581. source: "./media/characters/leonardo-lycheborne/back.svg",
  16582. extra: 392 / 366,
  16583. bottom: 0.01
  16584. }
  16585. },
  16586. hand: {
  16587. height: math.unit(1.08, "feet"),
  16588. name: "Hand",
  16589. image: {
  16590. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16591. }
  16592. },
  16593. foot: {
  16594. height: math.unit(1.32, "feet"),
  16595. name: "Foot",
  16596. image: {
  16597. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16598. }
  16599. },
  16600. were: {
  16601. height: math.unit(20, "feet"),
  16602. weight: math.unit(7800, "lb"),
  16603. name: "Were",
  16604. image: {
  16605. source: "./media/characters/leonardo-lycheborne/were.svg",
  16606. extra: 308 / 294,
  16607. bottom: 0.048
  16608. }
  16609. },
  16610. feral: {
  16611. height: math.unit(7.5, "feet"),
  16612. weight: math.unit(600, "lb"),
  16613. name: "Feral",
  16614. image: {
  16615. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16616. extra: 210 / 186,
  16617. bottom: 0.108
  16618. }
  16619. },
  16620. taur: {
  16621. height: math.unit(11, "feet"),
  16622. weight: math.unit(3300, "lb"),
  16623. name: "Taur",
  16624. image: {
  16625. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16626. extra: 320 / 303,
  16627. bottom: 0.025
  16628. }
  16629. },
  16630. barghest: {
  16631. height: math.unit(11, "feet"),
  16632. weight: math.unit(1300, "lb"),
  16633. name: "Barghest",
  16634. image: {
  16635. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16636. extra: 323 / 302,
  16637. bottom: 0.027
  16638. }
  16639. },
  16640. dick: {
  16641. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16642. name: "Dick",
  16643. image: {
  16644. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16645. }
  16646. },
  16647. dickWere: {
  16648. height: math.unit((20) / 3.8, "feet"),
  16649. name: "Dick (Were)",
  16650. image: {
  16651. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16652. }
  16653. },
  16654. },
  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: "Jet" },
  16665. {
  16666. front: {
  16667. height: math.unit(10, "feet"),
  16668. weight: math.unit(350, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/jet/front.svg",
  16672. extra: 2050 / 1980,
  16673. bottom: 0.013
  16674. }
  16675. },
  16676. back: {
  16677. height: math.unit(10, "feet"),
  16678. weight: math.unit(350, "lb"),
  16679. name: "Back",
  16680. image: {
  16681. source: "./media/characters/jet/back.svg",
  16682. extra: 2050 / 1980,
  16683. bottom: 0.013
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Micro",
  16690. height: math.unit(6, "inches")
  16691. },
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(10, "feet"),
  16695. default: true
  16696. },
  16697. {
  16698. name: "Macro",
  16699. height: math.unit(100, "feet")
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Tanarath" },
  16705. {
  16706. front: {
  16707. height: math.unit(15, "feet"),
  16708. weight: math.unit(2800, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/tanarath/front.svg",
  16712. extra: 2392 / 2220,
  16713. bottom: 0.03
  16714. }
  16715. },
  16716. back: {
  16717. height: math.unit(15, "feet"),
  16718. weight: math.unit(2800, "lb"),
  16719. name: "Back",
  16720. image: {
  16721. source: "./media/characters/tanarath/back.svg",
  16722. extra: 2392 / 2220,
  16723. bottom: 0.03
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(15, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Patty CattyBatty" },
  16737. {
  16738. front: {
  16739. height: math.unit(7 + 1 / 12, "feet"),
  16740. weight: math.unit(175, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/patty-cattybatty/front.svg",
  16744. extra: 908 / 874,
  16745. bottom: 0.025
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Micro",
  16752. height: math.unit(1, "inch")
  16753. },
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(7 + 1 / 12, "feet")
  16757. },
  16758. {
  16759. name: "Mini Macro",
  16760. height: math.unit(155, "feet")
  16761. },
  16762. {
  16763. name: "Macro",
  16764. height: math.unit(1077, "feet")
  16765. },
  16766. {
  16767. name: "Mega Macro",
  16768. height: math.unit(47650, "feet"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Giga Macro",
  16773. height: math.unit(440, "miles")
  16774. },
  16775. {
  16776. name: "Tera Macro",
  16777. height: math.unit(8700, "miles")
  16778. },
  16779. {
  16780. name: "Planetary Macro",
  16781. height: math.unit(32700, "miles")
  16782. },
  16783. {
  16784. name: "Solar Macro",
  16785. height: math.unit(550000, "miles")
  16786. },
  16787. {
  16788. name: "Celestial Macro",
  16789. height: math.unit(2.5, "AU")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Cappu" },
  16795. {
  16796. front: {
  16797. height: math.unit(4 + 5 / 12, "feet"),
  16798. weight: math.unit(90, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/cappu/front.svg",
  16802. extra: 1247 / 1152,
  16803. bottom: 0.012
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(4 + 5 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Sebi" },
  16817. {
  16818. frontDressed: {
  16819. height: math.unit(70, "cm"),
  16820. weight: math.unit(6, "kg"),
  16821. name: "Front (Dressed)",
  16822. image: {
  16823. source: "./media/characters/sebi/front-dressed.svg",
  16824. extra: 713.5 / 686.5,
  16825. bottom: 0.003
  16826. }
  16827. },
  16828. front: {
  16829. height: math.unit(70, "cm"),
  16830. weight: math.unit(5, "kg"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/sebi/front.svg",
  16834. extra: 713.5 / 686.5,
  16835. bottom: 0.003
  16836. }
  16837. }
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(70, "cm"),
  16843. default: true
  16844. },
  16845. {
  16846. name: "Macro",
  16847. height: math.unit(8, "meters")
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Typhek" },
  16853. {
  16854. front: {
  16855. height: math.unit(6, "feet"),
  16856. weight: math.unit(150, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/typhek/front.svg",
  16860. extra: 1948 / 1929,
  16861. bottom: 0.025
  16862. }
  16863. },
  16864. side: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(150, "lb"),
  16867. name: "Side",
  16868. image: {
  16869. source: "./media/characters/typhek/side.svg",
  16870. extra: 2034 / 2010,
  16871. bottom: 0.003
  16872. }
  16873. },
  16874. back: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Back",
  16878. image: {
  16879. source: "./media/characters/typhek/back.svg",
  16880. extra: 2005 / 1978,
  16881. bottom: 0.004
  16882. }
  16883. },
  16884. palm: {
  16885. height: math.unit(1.2, "feet"),
  16886. name: "Palm",
  16887. image: {
  16888. source: "./media/characters/typhek/palm.svg"
  16889. }
  16890. },
  16891. fist: {
  16892. height: math.unit(1.1, "feet"),
  16893. name: "Fist",
  16894. image: {
  16895. source: "./media/characters/typhek/fist.svg"
  16896. }
  16897. },
  16898. foot: {
  16899. height: math.unit(1.57, "feet"),
  16900. name: "Foot",
  16901. image: {
  16902. source: "./media/characters/typhek/foot.svg"
  16903. }
  16904. },
  16905. sole: {
  16906. height: math.unit(2.05, "feet"),
  16907. name: "Sole",
  16908. image: {
  16909. source: "./media/characters/typhek/sole.svg"
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Macro",
  16916. height: math.unit(40, "stories"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Megamacro",
  16921. height: math.unit(1, "mile")
  16922. },
  16923. {
  16924. name: "Gigamacro",
  16925. height: math.unit(4000, "solarradii")
  16926. },
  16927. {
  16928. name: "Universal",
  16929. height: math.unit(1.1, "universes")
  16930. }
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Kassy" },
  16935. {
  16936. side: {
  16937. height: math.unit(5 + 7 / 12, "feet"),
  16938. weight: math.unit(150, "lb"),
  16939. name: "Side",
  16940. image: {
  16941. source: "./media/characters/kassy/side.svg",
  16942. extra: 1280 / 1225,
  16943. bottom: 0.002
  16944. }
  16945. },
  16946. front: {
  16947. height: math.unit(5 + 7 / 12, "feet"),
  16948. weight: math.unit(150, "lb"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/kassy/front.svg",
  16952. extra: 1280 / 1225,
  16953. bottom: 0.025
  16954. }
  16955. },
  16956. back: {
  16957. height: math.unit(5 + 7 / 12, "feet"),
  16958. weight: math.unit(150, "lb"),
  16959. name: "Back",
  16960. image: {
  16961. source: "./media/characters/kassy/back.svg",
  16962. extra: 1280 / 1225,
  16963. bottom: 0.002
  16964. }
  16965. },
  16966. foot: {
  16967. height: math.unit(1.266, "feet"),
  16968. name: "Foot",
  16969. image: {
  16970. source: "./media/characters/kassy/foot.svg"
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(5 + 7 / 12, "feet")
  16978. },
  16979. {
  16980. name: "Macro",
  16981. height: math.unit(137, "feet"),
  16982. default: true
  16983. },
  16984. {
  16985. name: "Megamacro",
  16986. height: math.unit(1, "mile")
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Neil" },
  16992. {
  16993. front: {
  16994. height: math.unit(6 + 1 / 12, "feet"),
  16995. weight: math.unit(200, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/neil/front.svg",
  16999. extra: 1326 / 1250,
  17000. bottom: 0.023
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(6 + 1 / 12, "feet"),
  17008. default: true
  17009. },
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(200, "feet")
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Atticus" },
  17018. {
  17019. front: {
  17020. height: math.unit(5 + 9 / 12, "feet"),
  17021. weight: math.unit(190, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/atticus/front.svg",
  17025. extra: 2934 / 2785,
  17026. bottom: 0.025
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(5 + 9 / 12, "feet"),
  17034. default: true
  17035. },
  17036. {
  17037. name: "Macro",
  17038. height: math.unit(180, "feet")
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Milo" },
  17044. {
  17045. side: {
  17046. height: math.unit(9, "feet"),
  17047. weight: math.unit(650, "lb"),
  17048. name: "Side",
  17049. image: {
  17050. source: "./media/characters/milo/side.svg",
  17051. extra: 2644 / 2310,
  17052. bottom: 0.032
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(9, "feet"),
  17060. default: true
  17061. },
  17062. {
  17063. name: "Macro",
  17064. height: math.unit(300, "feet")
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Ijzer" },
  17070. {
  17071. side: {
  17072. height: math.unit(8, "meters"),
  17073. weight: math.unit(90000, "kg"),
  17074. name: "Side",
  17075. image: {
  17076. source: "./media/characters/ijzer/side.svg",
  17077. extra: 2756 / 1600,
  17078. bottom: 0.01
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Small",
  17085. height: math.unit(3, "meters")
  17086. },
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(8, "meters"),
  17090. default: true
  17091. },
  17092. {
  17093. name: "Normal+",
  17094. height: math.unit(10, "meters")
  17095. },
  17096. {
  17097. name: "Bigger",
  17098. height: math.unit(24, "meters")
  17099. },
  17100. {
  17101. name: "Huge",
  17102. height: math.unit(80, "meters")
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Luca Cervicum" },
  17108. {
  17109. front: {
  17110. height: math.unit(6 + 2 / 12, "feet"),
  17111. weight: math.unit(153, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/luca-cervicum/front.svg",
  17115. extra: 370 / 327,
  17116. bottom: 0.015
  17117. }
  17118. },
  17119. back: {
  17120. height: math.unit(6 + 2 / 12, "feet"),
  17121. weight: math.unit(153, "lb"),
  17122. name: "Back",
  17123. image: {
  17124. source: "./media/characters/luca-cervicum/back.svg",
  17125. extra: 367 / 333,
  17126. bottom: 0.005
  17127. }
  17128. },
  17129. frontGear: {
  17130. height: math.unit(6 + 2 / 12, "feet"),
  17131. weight: math.unit(173, "lb"),
  17132. name: "Front (Gear)",
  17133. image: {
  17134. source: "./media/characters/luca-cervicum/front-gear.svg",
  17135. extra: 377 / 333,
  17136. bottom: 0.006
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(6 + 2 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Oliver" },
  17150. {
  17151. front: {
  17152. height: math.unit(6 + 1 / 12, "feet"),
  17153. weight: math.unit(304, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/oliver/front.svg",
  17157. extra: 157 / 143,
  17158. bottom: 0.08
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(6 + 1 / 12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Shane" },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 7 / 12, "feet"),
  17175. weight: math.unit(140, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/shane/front.svg",
  17179. extra: 304 / 289,
  17180. bottom: 0.005
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 7 / 12, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Shin" },
  17194. {
  17195. front: {
  17196. height: math.unit(5 + 9 / 12, "feet"),
  17197. weight: math.unit(178, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/shin/front.svg",
  17201. extra: 159 / 151,
  17202. bottom: 0.015
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(5 + 9 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Xerxes" },
  17216. {
  17217. front: {
  17218. height: math.unit(5 + 10 / 12, "feet"),
  17219. weight: math.unit(168, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/xerxes/front.svg",
  17223. extra: 282 / 260,
  17224. bottom: 0.045
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(5 + 10 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Chaska" },
  17238. {
  17239. front: {
  17240. height: math.unit(6 + 7 / 12, "feet"),
  17241. weight: math.unit(208, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/chaska/front.svg",
  17245. extra: 332 / 319,
  17246. bottom: 0.015
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(6 + 7 / 12, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Enuk" },
  17260. {
  17261. front: {
  17262. height: math.unit(5 + 8 / 12, "feet"),
  17263. weight: math.unit(208, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/enuk/front.svg",
  17267. extra: 437 / 406,
  17268. bottom: 0.02
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(5 + 8 / 12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Bruun" },
  17282. {
  17283. front: {
  17284. height: math.unit(5 + 10 / 12, "feet"),
  17285. weight: math.unit(252, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/bruun/front.svg",
  17289. extra: 197 / 187,
  17290. bottom: 0.012
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(5 + 10 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Alexeev" },
  17304. {
  17305. front: {
  17306. height: math.unit(6 + 10 / 12, "feet"),
  17307. weight: math.unit(255, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/alexeev/front.svg",
  17311. extra: 213 / 200,
  17312. bottom: 0.05
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(6 + 10 / 12, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Evelyn" },
  17326. {
  17327. front: {
  17328. height: math.unit(2 + 8 / 12, "feet"),
  17329. weight: math.unit(22, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/evelyn/front.svg",
  17333. extra: 208 / 180
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(2 + 8 / 12, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Inca" },
  17347. {
  17348. front: {
  17349. height: math.unit(5 + 9 / 12, "feet"),
  17350. weight: math.unit(139, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/inca/front.svg",
  17354. extra: 294 / 291,
  17355. bottom: 0.03
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(5 + 9 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Magdalene" },
  17369. {
  17370. front: {
  17371. height: math.unit(5 + 1 / 12, "feet"),
  17372. weight: math.unit(84, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/magdalene/front.svg",
  17376. extra: 293 / 273
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(5 + 1 / 12, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Mera" },
  17390. {
  17391. front: {
  17392. height: math.unit(6 + 3 / 12, "feet"),
  17393. weight: math.unit(185, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/mera/front.svg",
  17397. extra: 291 / 277,
  17398. bottom: 0.03
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(6 + 3 / 12, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Ceres" },
  17412. {
  17413. front: {
  17414. height: math.unit(6 + 7 / 12, "feet"),
  17415. weight: math.unit(160, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/ceres/front.svg",
  17419. extra: 1023 / 950,
  17420. bottom: 0.027
  17421. }
  17422. },
  17423. back: {
  17424. height: math.unit(6 + 7 / 12, "feet"),
  17425. weight: math.unit(160, "lb"),
  17426. name: "Back",
  17427. image: {
  17428. source: "./media/characters/ceres/back.svg",
  17429. extra: 1023 / 950
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(6 + 7 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Kris" },
  17443. {
  17444. front: {
  17445. height: math.unit(5 + 10 / 12, "feet"),
  17446. weight: math.unit(150, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/kris/front.svg",
  17450. extra: 885 / 803,
  17451. bottom: 0.03
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(5 + 10 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Taluthus" },
  17465. {
  17466. front: {
  17467. height: math.unit(7, "feet"),
  17468. weight: math.unit(120, "kg"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/taluthus/front.svg",
  17472. extra: 903 / 833,
  17473. bottom: 0.015
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(7, "feet"),
  17481. default: true
  17482. },
  17483. {
  17484. name: "Macro",
  17485. height: math.unit(300, "feet")
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Dawn" },
  17491. {
  17492. front: {
  17493. height: math.unit(5 + 9 / 12, "feet"),
  17494. weight: math.unit(145, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/dawn/front.svg",
  17498. extra: 2094 / 2016,
  17499. bottom: 0.025
  17500. }
  17501. },
  17502. back: {
  17503. height: math.unit(5 + 9 / 12, "feet"),
  17504. weight: math.unit(160, "lb"),
  17505. name: "Back",
  17506. image: {
  17507. source: "./media/characters/dawn/back.svg",
  17508. extra: 2112 / 2080,
  17509. bottom: 0.005
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(6 + 7 / 12, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Arador" },
  17523. {
  17524. anthro: {
  17525. height: math.unit(8 + 3 / 12, "feet"),
  17526. weight: math.unit(450, "lb"),
  17527. name: "Anthro",
  17528. image: {
  17529. source: "./media/characters/arador/anthro.svg",
  17530. extra: 1835 / 1718,
  17531. bottom: 0.025
  17532. }
  17533. },
  17534. feral: {
  17535. height: math.unit(4, "feet"),
  17536. weight: math.unit(200, "lb"),
  17537. name: "Feral",
  17538. image: {
  17539. source: "./media/characters/arador/feral.svg",
  17540. extra: 1683 / 1514,
  17541. bottom: 0.07
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(8 + 3 / 12, "feet")
  17549. },
  17550. {
  17551. name: "Macro",
  17552. height: math.unit(82.5, "feet"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Dharsi" },
  17559. {
  17560. front: {
  17561. height: math.unit(5 + 10 / 12, "feet"),
  17562. weight: math.unit(125, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/dharsi/front.svg",
  17566. extra: 716 / 630,
  17567. bottom: 0.035
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Nano",
  17574. height: math.unit(100, "nm")
  17575. },
  17576. {
  17577. name: "Micro",
  17578. height: math.unit(2, "inches")
  17579. },
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(5 + 10 / 12, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(1000, "feet")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(10, "miles")
  17592. },
  17593. {
  17594. name: "Gigamacro",
  17595. height: math.unit(3000, "miles")
  17596. },
  17597. {
  17598. name: "Teramacro",
  17599. height: math.unit(500000, "miles")
  17600. },
  17601. {
  17602. name: "Teramacro+",
  17603. height: math.unit(30, "galaxies")
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Deathy" },
  17609. {
  17610. front: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Front",
  17614. image: {
  17615. source: "./media/characters/deathy/front.svg",
  17616. extra: 1552 / 1463,
  17617. bottom: 0.025
  17618. }
  17619. },
  17620. side: {
  17621. height: math.unit(6, "feet"),
  17622. weight: math.unit(150, "lb"),
  17623. name: "Side",
  17624. image: {
  17625. source: "./media/characters/deathy/side.svg",
  17626. extra: 1604 / 1455,
  17627. bottom: 0.025
  17628. }
  17629. },
  17630. back: {
  17631. height: math.unit(6, "feet"),
  17632. weight: math.unit(150, "lb"),
  17633. name: "Back",
  17634. image: {
  17635. source: "./media/characters/deathy/back.svg",
  17636. extra: 1580 / 1463,
  17637. bottom: 0.005
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Micro",
  17644. height: math.unit(5, "millimeters")
  17645. },
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(6 + 5 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Juniper" },
  17655. {
  17656. front: {
  17657. height: math.unit(16, "feet"),
  17658. weight: math.unit(4000, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/juniper/front.svg",
  17662. bottom: 0.04
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(16, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Hipster" },
  17676. {
  17677. front: {
  17678. height: math.unit(6, "feet"),
  17679. weight: math.unit(150, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/hipster/front.svg",
  17683. extra: 1312 / 1209,
  17684. bottom: 0.025
  17685. }
  17686. },
  17687. back: {
  17688. height: math.unit(6, "feet"),
  17689. weight: math.unit(150, "lb"),
  17690. name: "Back",
  17691. image: {
  17692. source: "./media/characters/hipster/back.svg",
  17693. extra: 1281 / 1196,
  17694. bottom: 0.01
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Micro",
  17701. height: math.unit(1, "mm")
  17702. },
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(4, "inches"),
  17706. default: true
  17707. },
  17708. {
  17709. name: "Macro",
  17710. height: math.unit(500, "feet")
  17711. },
  17712. {
  17713. name: "Megamacro",
  17714. height: math.unit(1000, "miles")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Tendirmuldr" },
  17720. {
  17721. front: {
  17722. height: math.unit(6, "feet"),
  17723. weight: math.unit(150, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/tendirmuldr/front.svg",
  17727. extra: 1878 / 1772,
  17728. bottom: 0.015
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Megamacro",
  17735. height: math.unit(1500, "miles"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Mort" },
  17742. {
  17743. front: {
  17744. height: math.unit(14, "feet"),
  17745. weight: math.unit(12000, "lb"),
  17746. name: "Front",
  17747. image: {
  17748. source: "./media/characters/mort/front.svg",
  17749. extra: 365 / 318,
  17750. bottom: 0.01
  17751. }
  17752. },
  17753. side: {
  17754. height: math.unit(14, "feet"),
  17755. weight: math.unit(12000, "lb"),
  17756. name: "Side",
  17757. image: {
  17758. source: "./media/characters/mort/side.svg",
  17759. extra: 365 / 318,
  17760. bottom: 0.052
  17761. },
  17762. default: true
  17763. },
  17764. back: {
  17765. height: math.unit(14, "feet"),
  17766. weight: math.unit(12000, "lb"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/mort/back.svg",
  17770. extra: 371 / 332,
  17771. bottom: 0.18
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(14, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Lycoa" },
  17785. {
  17786. front: {
  17787. height: math.unit(8, "feet"),
  17788. weight: math.unit(1, "ton"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/lycoa/front.svg",
  17792. extra: 1875 / 1789,
  17793. bottom: 0.022
  17794. }
  17795. },
  17796. back: {
  17797. height: math.unit(8, "feet"),
  17798. weight: math.unit(1, "ton"),
  17799. name: "Back",
  17800. image: {
  17801. source: "./media/characters/lycoa/back.svg",
  17802. extra: 1835 / 1781,
  17803. bottom: 0.03
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(8, "feet"),
  17811. default: true
  17812. },
  17813. {
  17814. name: "Macro",
  17815. height: math.unit(30, "feet")
  17816. },
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Naldara" },
  17821. {
  17822. front: {
  17823. height: math.unit(4 + 2 / 12, "feet"),
  17824. weight: math.unit(70, "lb"),
  17825. name: "Front",
  17826. image: {
  17827. source: "./media/characters/naldara/front.svg",
  17828. extra: 841 / 720,
  17829. bottom: 0.04
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(4 + 2 / 12, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Briar" },
  17843. {
  17844. front: {
  17845. height: math.unit(13 + 7 / 12, "feet"),
  17846. weight: math.unit(1500, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/briar/front.svg",
  17850. extra: 626 / 596,
  17851. bottom: 0.08
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(13 + 7 / 12, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Vanguard" },
  17865. {
  17866. side: {
  17867. height: math.unit(10, "feet"),
  17868. weight: math.unit(500, "lb"),
  17869. name: "Side",
  17870. image: {
  17871. source: "./media/characters/vanguard/side.svg",
  17872. extra: 502 / 425,
  17873. bottom: 0.087
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(10, "feet"),
  17881. default: true
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Artemis" },
  17887. {
  17888. front: {
  17889. height: math.unit(7.5, "feet"),
  17890. weight: math.unit(2, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/artemis/front.svg",
  17894. extra: 1192 / 1075,
  17895. bottom: 0.07
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Normal",
  17902. height: math.unit(7.5, "feet"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "Enlarged",
  17907. height: math.unit(12, "feet")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Kira" },
  17913. {
  17914. front: {
  17915. height: math.unit(5 + 3 / 12, "feet"),
  17916. weight: math.unit(160, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/kira/front.svg",
  17920. extra: 906 / 786,
  17921. bottom: 0.01
  17922. }
  17923. },
  17924. back: {
  17925. height: math.unit(5 + 3 / 12, "feet"),
  17926. weight: math.unit(160, "lb"),
  17927. name: "Back",
  17928. image: {
  17929. source: "./media/characters/kira/back.svg",
  17930. extra: 882 / 757,
  17931. bottom: 0.005
  17932. }
  17933. },
  17934. frontDressed: {
  17935. height: math.unit(5 + 3 / 12, "feet"),
  17936. weight: math.unit(160, "lb"),
  17937. name: "Front (Dressed)",
  17938. image: {
  17939. source: "./media/characters/kira/front-dressed.svg",
  17940. extra: 906 / 786,
  17941. bottom: 0.01
  17942. }
  17943. },
  17944. beans: {
  17945. height: math.unit(0.92, "feet"),
  17946. name: "Beans",
  17947. image: {
  17948. source: "./media/characters/kira/beans.svg"
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(5 + 3 / 12, "feet"),
  17956. default: true
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Scramble" },
  17962. {
  17963. front: {
  17964. height: math.unit(5 + 4 / 12, "feet"),
  17965. weight: math.unit(145, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/scramble/front.svg",
  17969. extra: 763 / 727,
  17970. bottom: 0.05
  17971. }
  17972. },
  17973. back: {
  17974. height: math.unit(5 + 4 / 12, "feet"),
  17975. weight: math.unit(145, "lb"),
  17976. name: "Back",
  17977. image: {
  17978. source: "./media/characters/scramble/back.svg",
  17979. extra: 826 / 737,
  17980. bottom: 0.002
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(5 + 4 / 12, "feet"),
  17988. default: true
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Biscuit" },
  17994. {
  17995. side: {
  17996. height: math.unit(6 + 2 / 12, "feet"),
  17997. weight: math.unit(190, "lb"),
  17998. name: "Side",
  17999. image: {
  18000. source: "./media/characters/biscuit/side.svg",
  18001. extra: 858 / 791,
  18002. bottom: 0.044
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(6 + 2 / 12, "feet"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Poffin" },
  18016. {
  18017. front: {
  18018. height: math.unit(5 + 2 / 12, "feet"),
  18019. weight: math.unit(120, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/poffin/front.svg",
  18023. extra: 786 / 680,
  18024. bottom: 0.005
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(5 + 2 / 12, "feet"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Dhari" },
  18038. {
  18039. front: {
  18040. height: math.unit(6 + 3 / 12, "feet"),
  18041. weight: math.unit(519, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/dhari/front.svg",
  18045. extra: 1048 / 946,
  18046. bottom: 0.015
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(6 + 3 / 12, "feet"),
  18051. weight: math.unit(519, "lb"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/dhari/back.svg",
  18055. extra: 1048 / 931,
  18056. bottom: 0.005
  18057. }
  18058. },
  18059. frontDressed: {
  18060. height: math.unit(6 + 3 / 12, "feet"),
  18061. weight: math.unit(519, "lb"),
  18062. name: "Front (Dressed)",
  18063. image: {
  18064. source: "./media/characters/dhari/front-dressed.svg",
  18065. extra: 1713 / 1546,
  18066. bottom: 0.02
  18067. }
  18068. },
  18069. backDressed: {
  18070. height: math.unit(6 + 3 / 12, "feet"),
  18071. weight: math.unit(519, "lb"),
  18072. name: "Back (Dressed)",
  18073. image: {
  18074. source: "./media/characters/dhari/back-dressed.svg",
  18075. extra: 1699 / 1537,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. maw: {
  18080. height: math.unit(0.95, "feet"),
  18081. name: "Maw",
  18082. image: {
  18083. source: "./media/characters/dhari/maw.svg"
  18084. }
  18085. },
  18086. wereFront: {
  18087. height: math.unit(12 + 8 / 12, "feet"),
  18088. weight: math.unit(4000, "lb"),
  18089. name: "Front (Were)",
  18090. image: {
  18091. source: "./media/characters/dhari/were-front.svg",
  18092. extra: 1065 / 969,
  18093. bottom: 0.015
  18094. }
  18095. },
  18096. wereBack: {
  18097. height: math.unit(12 + 8 / 12, "feet"),
  18098. weight: math.unit(4000, "lb"),
  18099. name: "Back (Were)",
  18100. image: {
  18101. source: "./media/characters/dhari/were-back.svg",
  18102. extra: 1065 / 969,
  18103. bottom: 0.012
  18104. }
  18105. },
  18106. wereMaw: {
  18107. height: math.unit(0.625, "meters"),
  18108. name: "Maw (Were)",
  18109. image: {
  18110. source: "./media/characters/dhari/were-maw.svg"
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(6 + 3 / 12, "feet"),
  18118. default: true
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Rena Dyne" },
  18124. {
  18125. anthro: {
  18126. height: math.unit(5 + 7 / 12, "feet"),
  18127. weight: math.unit(175, "lb"),
  18128. name: "Anthro",
  18129. image: {
  18130. source: "./media/characters/rena-dyne/anthro.svg",
  18131. extra: 1849 / 1785,
  18132. bottom: 0.005
  18133. }
  18134. },
  18135. taur: {
  18136. height: math.unit(15 + 6 / 12, "feet"),
  18137. weight: math.unit(8000, "lb"),
  18138. name: "Taur",
  18139. image: {
  18140. source: "./media/characters/rena-dyne/taur.svg",
  18141. extra: 2315 / 2234,
  18142. bottom: 0.033
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(5 + 7 / 12, "feet"),
  18150. default: true
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Weremeep" },
  18156. {
  18157. front: {
  18158. height: math.unit(8, "feet"),
  18159. weight: math.unit(600, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/weremeep/front.svg",
  18163. extra: 967 / 862,
  18164. bottom: 0.01
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(8, "feet"),
  18172. default: true
  18173. },
  18174. {
  18175. name: "Lorg",
  18176. height: math.unit(12, "feet")
  18177. },
  18178. {
  18179. name: "Oh Lawd She Comin'",
  18180. height: math.unit(20, "feet")
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Reza" },
  18186. {
  18187. front: {
  18188. height: math.unit(4, "feet"),
  18189. weight: math.unit(90, "lb"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/reza/front.svg",
  18193. extra: 1183 / 1111,
  18194. bottom: 0.017
  18195. }
  18196. },
  18197. back: {
  18198. height: math.unit(4, "feet"),
  18199. weight: math.unit(90, "lb"),
  18200. name: "Back",
  18201. image: {
  18202. source: "./media/characters/reza/back.svg",
  18203. extra: 1183 / 1111,
  18204. bottom: 0.01
  18205. }
  18206. },
  18207. drake: {
  18208. height: math.unit(30, "feet"),
  18209. weight: math.unit(246960, "lb"),
  18210. name: "Drake",
  18211. image: {
  18212. source: "./media/characters/reza/drake.svg",
  18213. extra: 2350/2024,
  18214. bottom: 60.7/2403
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(4, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Athea" },
  18228. {
  18229. side: {
  18230. height: math.unit(15, "feet"),
  18231. weight: math.unit(14, "tons"),
  18232. name: "Side",
  18233. image: {
  18234. source: "./media/characters/athea/side.svg",
  18235. extra: 960 / 540,
  18236. bottom: 0.003
  18237. }
  18238. },
  18239. sitting: {
  18240. height: math.unit(6 * 2.85, "feet"),
  18241. weight: math.unit(14, "tons"),
  18242. name: "Sitting",
  18243. image: {
  18244. source: "./media/characters/athea/sitting.svg",
  18245. extra: 621 / 581,
  18246. bottom: 0.075
  18247. }
  18248. },
  18249. maw: {
  18250. height: math.unit(7.59498031496063, "feet"),
  18251. name: "Maw",
  18252. image: {
  18253. source: "./media/characters/athea/maw.svg"
  18254. }
  18255. },
  18256. },
  18257. [
  18258. {
  18259. name: "Lap Cat",
  18260. height: math.unit(2.5, "feet")
  18261. },
  18262. {
  18263. name: "Minimacro",
  18264. height: math.unit(15, "feet"),
  18265. default: true
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(120, "feet")
  18270. },
  18271. {
  18272. name: "Macro+",
  18273. height: math.unit(640, "feet")
  18274. },
  18275. {
  18276. name: "Colossus",
  18277. height: math.unit(2.2, "miles")
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Seroko" },
  18283. {
  18284. front: {
  18285. height: math.unit(8 + 8 / 12, "feet"),
  18286. weight: math.unit(130, "kg"),
  18287. name: "Front",
  18288. image: {
  18289. source: "./media/characters/seroko/front.svg",
  18290. extra: 1385 / 1280,
  18291. bottom: 0.025
  18292. }
  18293. },
  18294. back: {
  18295. height: math.unit(8 + 8 / 12, "feet"),
  18296. weight: math.unit(130, "kg"),
  18297. name: "Back",
  18298. image: {
  18299. source: "./media/characters/seroko/back.svg",
  18300. extra: 1369 / 1238,
  18301. bottom: 0.018
  18302. }
  18303. },
  18304. frontDressed: {
  18305. height: math.unit(8 + 8 / 12, "feet"),
  18306. weight: math.unit(130, "kg"),
  18307. name: "Front (Dressed)",
  18308. image: {
  18309. source: "./media/characters/seroko/front-dressed.svg",
  18310. extra: 1366 / 1275,
  18311. bottom: 0.03
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(8 + 8 / 12, "feet"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Quatzi" },
  18325. {
  18326. front: {
  18327. height: math.unit(5.5, "feet"),
  18328. weight: math.unit(160, "lb"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/quatzi/front.svg",
  18332. extra: 2346 / 2242,
  18333. bottom: 0.015
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(5.5, "feet"),
  18341. default: true
  18342. },
  18343. {
  18344. name: "Big",
  18345. height: math.unit(7.7, "feet")
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Sen" },
  18351. {
  18352. front: {
  18353. height: math.unit(5 + 11 / 12, "feet"),
  18354. weight: math.unit(180, "lb"),
  18355. name: "Front",
  18356. image: {
  18357. source: "./media/characters/sen/front.svg",
  18358. extra: 1321 / 1254,
  18359. bottom: 0.015
  18360. }
  18361. },
  18362. side: {
  18363. height: math.unit(5 + 11 / 12, "feet"),
  18364. weight: math.unit(180, "lb"),
  18365. name: "Side",
  18366. image: {
  18367. source: "./media/characters/sen/side.svg",
  18368. extra: 1321 / 1254,
  18369. bottom: 0.007
  18370. }
  18371. },
  18372. back: {
  18373. height: math.unit(5 + 11 / 12, "feet"),
  18374. weight: math.unit(180, "lb"),
  18375. name: "Back",
  18376. image: {
  18377. source: "./media/characters/sen/back.svg",
  18378. extra: 1321 / 1254
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(5 + 11 / 12, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Fruity" },
  18392. {
  18393. front: {
  18394. height: math.unit(166.6, "cm"),
  18395. weight: math.unit(66.6, "kg"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/fruity/front.svg",
  18399. extra: 1510 / 1386,
  18400. bottom: 0.04
  18401. }
  18402. },
  18403. back: {
  18404. height: math.unit(166.6, "cm"),
  18405. weight: math.unit(66.6, "lb"),
  18406. name: "Back",
  18407. image: {
  18408. source: "./media/characters/fruity/back.svg",
  18409. extra: 1563 / 1435,
  18410. bottom: 0.005
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(166.6, "cm"),
  18418. default: true
  18419. },
  18420. {
  18421. name: "Demonic",
  18422. height: math.unit(166.6, "feet")
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Zost" },
  18428. {
  18429. side: {
  18430. height: math.unit(10, "feet"),
  18431. weight: math.unit(500, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/zost/side.svg",
  18435. extra: 966 / 880,
  18436. bottom: 0.075
  18437. }
  18438. },
  18439. mawFront: {
  18440. height: math.unit(1.08, "meters"),
  18441. name: "Maw (Front)",
  18442. image: {
  18443. source: "./media/characters/zost/maw-front.svg"
  18444. }
  18445. },
  18446. mawSide: {
  18447. height: math.unit(2.66, "feet"),
  18448. name: "Maw (Side)",
  18449. image: {
  18450. source: "./media/characters/zost/maw-side.svg"
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(10, "feet"),
  18458. default: true
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Luci" },
  18464. {
  18465. front: {
  18466. height: math.unit(5 + 4 / 12, "feet"),
  18467. weight: math.unit(120, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/luci/front.svg",
  18471. extra: 1985 / 1884,
  18472. bottom: 0.04
  18473. }
  18474. },
  18475. back: {
  18476. height: math.unit(5 + 4 / 12, "feet"),
  18477. weight: math.unit(120, "lb"),
  18478. name: "Back",
  18479. image: {
  18480. source: "./media/characters/luci/back.svg",
  18481. extra: 1892 / 1791,
  18482. bottom: 0.002
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(5 + 4 / 12, "feet"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "2th" },
  18496. {
  18497. front: {
  18498. height: math.unit(1500, "feet"),
  18499. weight: math.unit(3.8e6, "tons"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/2th/front.svg",
  18503. extra: 3489 / 3350,
  18504. bottom: 0.1
  18505. }
  18506. },
  18507. foot: {
  18508. height: math.unit(461, "feet"),
  18509. name: "Foot",
  18510. image: {
  18511. source: "./media/characters/2th/foot.svg"
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "\"Micro\"",
  18518. height: math.unit(15 + 7 / 12, "feet")
  18519. },
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(1500, "feet"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Macro",
  18527. height: math.unit(5000, "feet")
  18528. },
  18529. {
  18530. name: "Megamacro",
  18531. height: math.unit(15, "miles")
  18532. },
  18533. {
  18534. name: "Gigamacro",
  18535. height: math.unit(4000, "miles")
  18536. },
  18537. {
  18538. name: "Galactic",
  18539. height: math.unit(50, "AU")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Amethyst" },
  18545. {
  18546. front: {
  18547. height: math.unit(5 + 6 / 12, "feet"),
  18548. weight: math.unit(220, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/amethyst/front.svg",
  18552. extra: 2078 / 2040,
  18553. bottom: 0.045
  18554. }
  18555. },
  18556. back: {
  18557. height: math.unit(5 + 6 / 12, "feet"),
  18558. weight: math.unit(220, "lb"),
  18559. name: "Back",
  18560. image: {
  18561. source: "./media/characters/amethyst/back.svg",
  18562. extra: 2021 / 1989,
  18563. bottom: 0.02
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Normal",
  18570. height: math.unit(5 + 6 / 12, "feet"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Yumi Akiyama" },
  18577. {
  18578. front: {
  18579. height: math.unit(4 + 11 / 12, "feet"),
  18580. weight: math.unit(120, "lb"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/yumi-akiyama/front.svg",
  18584. extra: 1327 / 1235,
  18585. bottom: 0.02
  18586. }
  18587. },
  18588. back: {
  18589. height: math.unit(4 + 11 / 12, "feet"),
  18590. weight: math.unit(120, "lb"),
  18591. name: "Back",
  18592. image: {
  18593. source: "./media/characters/yumi-akiyama/back.svg",
  18594. extra: 1287 / 1245,
  18595. bottom: 0.002
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Galactic",
  18602. height: math.unit(50, "galaxies"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Universal",
  18607. height: math.unit(100, "universes")
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Rifter Yrmori" },
  18613. {
  18614. front: {
  18615. height: math.unit(8, "feet"),
  18616. weight: math.unit(500, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/rifter-yrmori/front.svg",
  18620. extra: 1180 / 1125,
  18621. bottom: 0.02
  18622. }
  18623. },
  18624. back: {
  18625. height: math.unit(8, "feet"),
  18626. weight: math.unit(500, "lb"),
  18627. name: "Back",
  18628. image: {
  18629. source: "./media/characters/rifter-yrmori/back.svg",
  18630. extra: 1190 / 1145,
  18631. bottom: 0.001
  18632. }
  18633. },
  18634. wings: {
  18635. height: math.unit(7.75, "feet"),
  18636. weight: math.unit(500, "lb"),
  18637. name: "Wings",
  18638. image: {
  18639. source: "./media/characters/rifter-yrmori/wings.svg",
  18640. extra: 1357 / 1285
  18641. }
  18642. },
  18643. maw: {
  18644. height: math.unit(0.8, "feet"),
  18645. name: "Maw",
  18646. image: {
  18647. source: "./media/characters/rifter-yrmori/maw.svg"
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(8, "feet"),
  18655. default: true
  18656. },
  18657. {
  18658. name: "Macro",
  18659. height: math.unit(42, "meters")
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Tahajin" },
  18665. {
  18666. were: {
  18667. height: math.unit(25 + 6 / 12, "feet"),
  18668. weight: math.unit(10000, "lb"),
  18669. name: "Were",
  18670. image: {
  18671. source: "./media/characters/tahajin/were.svg",
  18672. extra: 801 / 770,
  18673. bottom: 0.042
  18674. }
  18675. },
  18676. aquatic: {
  18677. height: math.unit(6 + 4 / 12, "feet"),
  18678. weight: math.unit(160, "lb"),
  18679. name: "Aquatic",
  18680. image: {
  18681. source: "./media/characters/tahajin/aquatic.svg",
  18682. extra: 572 / 542,
  18683. bottom: 0.04
  18684. }
  18685. },
  18686. chow: {
  18687. height: math.unit(8 + 11 / 12, "feet"),
  18688. weight: math.unit(450, "lb"),
  18689. name: "Chow",
  18690. image: {
  18691. source: "./media/characters/tahajin/chow.svg",
  18692. extra: 660 / 640,
  18693. bottom: 0.015
  18694. }
  18695. },
  18696. demiNaga: {
  18697. height: math.unit(6 + 8 / 12, "feet"),
  18698. weight: math.unit(300, "lb"),
  18699. name: "Demi Naga",
  18700. image: {
  18701. source: "./media/characters/tahajin/demi-naga.svg",
  18702. extra: 643 / 615,
  18703. bottom: 0.1
  18704. }
  18705. },
  18706. data: {
  18707. height: math.unit(5, "inches"),
  18708. weight: math.unit(0.1, "lb"),
  18709. name: "Data",
  18710. image: {
  18711. source: "./media/characters/tahajin/data.svg"
  18712. }
  18713. },
  18714. fluu: {
  18715. height: math.unit(5 + 7 / 12, "feet"),
  18716. weight: math.unit(140, "lb"),
  18717. name: "Fluu",
  18718. image: {
  18719. source: "./media/characters/tahajin/fluu.svg",
  18720. extra: 628 / 592,
  18721. bottom: 0.02
  18722. }
  18723. },
  18724. starWarrior: {
  18725. height: math.unit(4 + 5 / 12, "feet"),
  18726. weight: math.unit(50, "lb"),
  18727. name: "Star Warrior",
  18728. image: {
  18729. source: "./media/characters/tahajin/star-warrior.svg"
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(25 + 6 / 12, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Gabira" },
  18743. {
  18744. front: {
  18745. height: math.unit(8, "feet"),
  18746. weight: math.unit(350, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/gabira/front.svg",
  18750. extra: 608 / 580,
  18751. bottom: 0.03
  18752. }
  18753. },
  18754. back: {
  18755. height: math.unit(8, "feet"),
  18756. weight: math.unit(350, "lb"),
  18757. name: "Back",
  18758. image: {
  18759. source: "./media/characters/gabira/back.svg",
  18760. extra: 608 / 580,
  18761. bottom: 0.03
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(8, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Sasha Katraine" },
  18775. {
  18776. front: {
  18777. height: math.unit(5 + 3 / 12, "feet"),
  18778. weight: math.unit(137, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/sasha-katraine/front.svg",
  18782. bottom: 0.045
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Micro",
  18789. height: math.unit(5, "inches")
  18790. },
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(5 + 3 / 12, "feet"),
  18794. default: true
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Der" },
  18800. {
  18801. side: {
  18802. height: math.unit(4, "inches"),
  18803. weight: math.unit(200, "grams"),
  18804. name: "Side",
  18805. image: {
  18806. source: "./media/characters/der/side.svg",
  18807. extra: 719 / 400,
  18808. bottom: 30.6 / 749.9187
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(4, "inches"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Fixerdragon" },
  18822. {
  18823. side: {
  18824. height: math.unit(30, "meters"),
  18825. weight: math.unit(700, "tonnes"),
  18826. name: "Side",
  18827. image: {
  18828. source: "./media/characters/fixerdragon/side.svg",
  18829. extra: (1293.0514 - 116.03) / 1106.86,
  18830. bottom: 116.03 / 1293.0514
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Planck",
  18837. height: math.unit(1.6e-35, "meters")
  18838. },
  18839. {
  18840. name: "Micro",
  18841. height: math.unit(0.4, "meters")
  18842. },
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(30, "meters"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Megamacro",
  18850. height: math.unit(1.2, "megameters")
  18851. },
  18852. {
  18853. name: "Teramacro",
  18854. height: math.unit(130, "terameters")
  18855. },
  18856. {
  18857. name: "Yottamacro",
  18858. height: math.unit(6200, "yottameters")
  18859. },
  18860. ]
  18861. ));
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Kite" },
  18864. {
  18865. front: {
  18866. height: math.unit(8, "feet"),
  18867. weight: math.unit(250, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/kite/front.svg",
  18871. extra: 2796 / 2659,
  18872. bottom: 0.002
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(8, "feet"),
  18880. default: true
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(360, "feet")
  18885. },
  18886. {
  18887. name: "Megamacro",
  18888. height: math.unit(1500, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Poojawa Vynar" },
  18894. {
  18895. front: {
  18896. height: math.unit(5 + 10 / 12, "feet"),
  18897. weight: math.unit(150, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/poojawa-vynar/front.svg",
  18901. extra: (1506.1547 - 55) / 1356.6,
  18902. bottom: 55 / 1506.1547
  18903. }
  18904. },
  18905. frontTailless: {
  18906. height: math.unit(5 + 10 / 12, "feet"),
  18907. weight: math.unit(150, "lb"),
  18908. name: "Front (Tailless)",
  18909. image: {
  18910. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18911. extra: (1506.1547 - 55) / 1356.6,
  18912. bottom: 55 / 1506.1547
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(5 + 10 / 12, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Violette" },
  18926. {
  18927. front: {
  18928. height: math.unit(293, "meters"),
  18929. weight: math.unit(70400, "tons"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/violette/front.svg",
  18933. extra: 1227 / 1180,
  18934. bottom: 0.005
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(293, "meters"),
  18939. weight: math.unit(70400, "tons"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/violette/back.svg",
  18943. extra: 1227 / 1180,
  18944. bottom: 0.005
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(293, "meters"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Alessandra" },
  18958. {
  18959. front: {
  18960. height: math.unit(1050, "feet"),
  18961. weight: math.unit(200000, "tons"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/alessandra/front.svg",
  18965. extra: 960 / 912,
  18966. bottom: 0.06
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Macro",
  18973. height: math.unit(1050, "feet")
  18974. },
  18975. {
  18976. name: "Macro+",
  18977. height: math.unit(900, "meters"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Person", species: ["Catdragon"] },
  18984. {
  18985. front: {
  18986. height: math.unit(5, "feet"),
  18987. weight: math.unit(187, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/person/front.svg",
  18991. extra: 3087 / 2945,
  18992. bottom: 91 / 3181
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Micro",
  18999. height: math.unit(3, "inches")
  19000. },
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5, "feet"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(90, "feet")
  19009. },
  19010. {
  19011. name: "Max Size",
  19012. height: math.unit(280, "feet")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Ty" },
  19018. {
  19019. front: {
  19020. height: math.unit(4.5, "meters"),
  19021. weight: math.unit(3200, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/ty/front.svg",
  19025. extra: 1038 / 960,
  19026. bottom: 31.156 / 1068
  19027. }
  19028. },
  19029. back: {
  19030. height: math.unit(4.5, "meters"),
  19031. weight: math.unit(3200, "lb"),
  19032. name: "Back",
  19033. image: {
  19034. source: "./media/characters/ty/back.svg",
  19035. extra: 1044 / 966,
  19036. bottom: 7.48 / 1049
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(4.5, "meters"),
  19044. default: true
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Rocky" },
  19050. {
  19051. front: {
  19052. height: math.unit(5 + 4 / 12, "feet"),
  19053. weight: math.unit(115, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/rocky/front.svg",
  19057. extra: 1012 / 975,
  19058. bottom: 54 / 1066
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(5 + 4 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Ruin" },
  19072. {
  19073. upright: {
  19074. height: math.unit(6, "meters"),
  19075. weight: math.unit(4000, "kg"),
  19076. name: "Upright",
  19077. image: {
  19078. source: "./media/characters/ruin/upright.svg",
  19079. extra: 668 / 661,
  19080. bottom: 42 / 799.8396
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(6, "meters"),
  19088. default: true
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Robin" },
  19094. {
  19095. front: {
  19096. height: math.unit(5, "feet"),
  19097. weight: math.unit(106, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/robin/front.svg",
  19101. extra: 862 / 799,
  19102. bottom: 42.4 / 914.8856
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(5, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Saian" },
  19116. {
  19117. side: {
  19118. height: math.unit(3, "feet"),
  19119. weight: math.unit(225, "lb"),
  19120. name: "Side",
  19121. image: {
  19122. source: "./media/characters/saian/side.svg",
  19123. extra: 566 / 356,
  19124. bottom: 79.7 / 643
  19125. }
  19126. },
  19127. maw: {
  19128. height: math.unit(2.85, "feet"),
  19129. name: "Maw",
  19130. image: {
  19131. source: "./media/characters/saian/maw.svg"
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(3, "feet"),
  19139. default: true
  19140. },
  19141. ]
  19142. ))
  19143. characterMakers.push(() => makeCharacter(
  19144. { name: "Equus Silvermane" },
  19145. {
  19146. side: {
  19147. height: math.unit(8, "feet"),
  19148. weight: math.unit(300, "lb"),
  19149. name: "Side",
  19150. image: {
  19151. source: "./media/characters/equus-silvermane/side.svg",
  19152. extra: 2176 / 2050,
  19153. bottom: 65.7 / 2245
  19154. }
  19155. },
  19156. front: {
  19157. height: math.unit(8, "feet"),
  19158. weight: math.unit(300, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/equus-silvermane/front.svg",
  19162. extra: 4633 / 4400,
  19163. bottom: 71.3 / 4706.915
  19164. }
  19165. },
  19166. sideStepping: {
  19167. height: math.unit(8, "feet"),
  19168. weight: math.unit(300, "lb"),
  19169. name: "Side (Stepping)",
  19170. image: {
  19171. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19172. extra: 1968 / 1860,
  19173. bottom: 16.4 / 1989
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(8, "feet")
  19181. },
  19182. {
  19183. name: "Minimacro",
  19184. height: math.unit(75, "feet"),
  19185. default: true
  19186. },
  19187. {
  19188. name: "Macro",
  19189. height: math.unit(150, "feet")
  19190. },
  19191. {
  19192. name: "Macro+",
  19193. height: math.unit(1000, "feet")
  19194. },
  19195. {
  19196. name: "Megamacro",
  19197. height: math.unit(1, "mile")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Windar" },
  19203. {
  19204. side: {
  19205. height: math.unit(20, "feet"),
  19206. weight: math.unit(30000, "kg"),
  19207. name: "Side",
  19208. image: {
  19209. source: "./media/characters/windar/side.svg",
  19210. extra: 1491 / 1248,
  19211. bottom: 82.56 / 1568
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(20, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Melody" },
  19225. {
  19226. side: {
  19227. height: math.unit(15.66, "feet"),
  19228. weight: math.unit(150, "lb"),
  19229. name: "Side",
  19230. image: {
  19231. source: "./media/characters/melody/side.svg",
  19232. extra: 1097 / 944,
  19233. bottom: 11.8 / 1109
  19234. }
  19235. },
  19236. sideOutfit: {
  19237. height: math.unit(15.66, "feet"),
  19238. weight: math.unit(150, "lb"),
  19239. name: "Side (Outfit)",
  19240. image: {
  19241. source: "./media/characters/melody/side-outfit.svg",
  19242. extra: 1097 / 944,
  19243. bottom: 11.8 / 1109
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(15.66, "feet"),
  19251. default: true
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Windera" },
  19257. {
  19258. front: {
  19259. height: math.unit(8, "feet"),
  19260. weight: math.unit(325, "lb"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/windera/front.svg",
  19264. extra: 3180 / 2845,
  19265. bottom: 178 / 3365
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(8, "feet"),
  19273. default: true
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Sonear" },
  19279. {
  19280. front: {
  19281. height: math.unit(28.75, "feet"),
  19282. weight: math.unit(2000, "kg"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/sonear/front.svg",
  19286. extra: 1041.1 / 964.9,
  19287. bottom: 53.7 / 1096.6
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(28.75, "feet"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Kanara" },
  19301. {
  19302. side: {
  19303. height: math.unit(25.5, "feet"),
  19304. weight: math.unit(23000, "kg"),
  19305. name: "Side",
  19306. image: {
  19307. source: "./media/characters/kanara/side.svg"
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(25.5, "feet"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Ereus" },
  19321. {
  19322. side: {
  19323. height: math.unit(10, "feet"),
  19324. weight: math.unit(1000, "kg"),
  19325. name: "Side",
  19326. image: {
  19327. source: "./media/characters/ereus/side.svg",
  19328. extra: 1157 / 959,
  19329. bottom: 153 / 1312.5
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(10, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "E-ter" },
  19343. {
  19344. side: {
  19345. height: math.unit(4.5, "feet"),
  19346. weight: math.unit(500, "lb"),
  19347. name: "Side",
  19348. image: {
  19349. source: "./media/characters/e-ter/side.svg",
  19350. extra: 1550 / 1248,
  19351. bottom: 146 / 1694
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(4.5, "feet"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Yamie" },
  19365. {
  19366. side: {
  19367. height: math.unit(9.7, "feet"),
  19368. weight: math.unit(4000, "kg"),
  19369. name: "Side",
  19370. image: {
  19371. source: "./media/characters/yamie/side.svg"
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(9.7, "feet"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Anders" },
  19385. {
  19386. front: {
  19387. height: math.unit(50, "feet"),
  19388. weight: math.unit(50000, "kg"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/anders/front.svg",
  19392. extra: 570 / 539,
  19393. bottom: 14.7 / 586.7
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Large",
  19400. height: math.unit(50, "feet")
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(2000, "feet"),
  19405. default: true
  19406. },
  19407. {
  19408. name: "Megamacro",
  19409. height: math.unit(12, "miles")
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Reban" },
  19415. {
  19416. front: {
  19417. height: math.unit(7 + 2 / 12, "feet"),
  19418. weight: math.unit(300, "lb"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/reban/front.svg",
  19422. extra: 516 / 487,
  19423. bottom: 42.82 / 558.356
  19424. }
  19425. },
  19426. dick: {
  19427. height: math.unit(7 / 5, "feet"),
  19428. name: "Dick",
  19429. image: {
  19430. source: "./media/characters/reban/dick.svg"
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Natural Height",
  19437. height: math.unit(7 + 2 / 12, "feet")
  19438. },
  19439. {
  19440. name: "Macro",
  19441. height: math.unit(500, "feet"),
  19442. default: true
  19443. },
  19444. {
  19445. name: "Canon Height",
  19446. height: math.unit(50, "AU")
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Terrance Keayes" },
  19452. {
  19453. front: {
  19454. height: math.unit(6, "feet"),
  19455. weight: math.unit(150, "lb"),
  19456. name: "Front",
  19457. image: {
  19458. source: "./media/characters/terrance-keayes/front.svg",
  19459. extra: 1.005,
  19460. bottom: 151 / 1615
  19461. }
  19462. },
  19463. side: {
  19464. height: math.unit(6, "feet"),
  19465. weight: math.unit(150, "lb"),
  19466. name: "Side",
  19467. image: {
  19468. source: "./media/characters/terrance-keayes/side.svg",
  19469. extra: 1.005,
  19470. bottom: 129.4 / 1544
  19471. }
  19472. },
  19473. back: {
  19474. height: math.unit(6, "feet"),
  19475. weight: math.unit(150, "lb"),
  19476. name: "Back",
  19477. image: {
  19478. source: "./media/characters/terrance-keayes/back.svg",
  19479. extra: 1.005,
  19480. bottom: 58.4 / 1557.3
  19481. }
  19482. },
  19483. dick: {
  19484. height: math.unit(6 * 0.208, "feet"),
  19485. name: "Dick",
  19486. image: {
  19487. source: "./media/characters/terrance-keayes/dick.svg"
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Canon Height",
  19494. height: math.unit(35, "miles"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Ofelia" },
  19501. {
  19502. front: {
  19503. height: math.unit(6, "feet"),
  19504. weight: math.unit(150, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/ofelia/front.svg",
  19508. extra: 546 / 541,
  19509. bottom: 39 / 583
  19510. }
  19511. },
  19512. back: {
  19513. height: math.unit(6, "feet"),
  19514. weight: math.unit(150, "lb"),
  19515. name: "Back",
  19516. image: {
  19517. source: "./media/characters/ofelia/back.svg",
  19518. extra: 564 / 559.5,
  19519. bottom: 8.69 / 573.02
  19520. }
  19521. },
  19522. maw: {
  19523. height: math.unit(1, "feet"),
  19524. name: "Maw",
  19525. image: {
  19526. source: "./media/characters/ofelia/maw.svg"
  19527. }
  19528. },
  19529. foot: {
  19530. height: math.unit(1.949, "feet"),
  19531. name: "Foot",
  19532. image: {
  19533. source: "./media/characters/ofelia/foot.svg"
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Canon Height",
  19540. height: math.unit(2000, "miles"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Samuel" },
  19547. {
  19548. front: {
  19549. height: math.unit(6, "feet"),
  19550. weight: math.unit(150, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/samuel/front.svg",
  19554. extra: 265 / 258,
  19555. bottom: 2 / 266.1566
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Macro",
  19562. height: math.unit(100, "feet"),
  19563. default: true
  19564. },
  19565. {
  19566. name: "Full Size",
  19567. height: math.unit(1000, "miles")
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Beishir Kiel" },
  19573. {
  19574. front: {
  19575. height: math.unit(6, "feet"),
  19576. weight: math.unit(300, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/beishir-kiel/front.svg",
  19580. extra: 569 / 547,
  19581. bottom: 41.9 / 609
  19582. }
  19583. },
  19584. maw: {
  19585. height: math.unit(6 * 0.202, "feet"),
  19586. name: "Maw",
  19587. image: {
  19588. source: "./media/characters/beishir-kiel/maw.svg"
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Macro",
  19595. height: math.unit(300, "feet"),
  19596. default: true
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Logan Grey" },
  19602. {
  19603. front: {
  19604. height: math.unit(5 + 8 / 12, "feet"),
  19605. weight: math.unit(120, "lb"),
  19606. name: "Front",
  19607. image: {
  19608. source: "./media/characters/logan-grey/front.svg",
  19609. extra: 2539 / 2393,
  19610. bottom: 97.6 / 2636.37
  19611. }
  19612. },
  19613. frontAlt: {
  19614. height: math.unit(5 + 8 / 12, "feet"),
  19615. weight: math.unit(120, "lb"),
  19616. name: "Front (Alt)",
  19617. image: {
  19618. source: "./media/characters/logan-grey/front-alt.svg",
  19619. extra: 958 / 893,
  19620. bottom: 15 / 970.768
  19621. }
  19622. },
  19623. back: {
  19624. height: math.unit(5 + 8 / 12, "feet"),
  19625. weight: math.unit(120, "lb"),
  19626. name: "Back",
  19627. image: {
  19628. source: "./media/characters/logan-grey/back.svg",
  19629. extra: 958 / 893,
  19630. bottom: 2.1881 / 970.9788
  19631. }
  19632. },
  19633. dick: {
  19634. height: math.unit(1.437, "feet"),
  19635. name: "Dick",
  19636. image: {
  19637. source: "./media/characters/logan-grey/dick.svg"
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(5 + 8 / 12, "feet")
  19645. },
  19646. {
  19647. name: "The 500 Foot Femboy",
  19648. height: math.unit(500, "feet"),
  19649. default: true
  19650. },
  19651. {
  19652. name: "Megmacro",
  19653. height: math.unit(20, "miles")
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Draganta" },
  19659. {
  19660. front: {
  19661. height: math.unit(8 + 2 / 12, "feet"),
  19662. weight: math.unit(275, "lb"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/draganta/front.svg",
  19666. extra: 1177 / 1135,
  19667. bottom: 33.46 / 1212.1
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(8 + 6 / 12, "feet"),
  19675. default: true
  19676. },
  19677. {
  19678. name: "Macro",
  19679. height: math.unit(150, "feet")
  19680. },
  19681. {
  19682. name: "Megamacro",
  19683. height: math.unit(1000, "miles")
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Voski", species: ["Corvid"] },
  19689. {
  19690. front: {
  19691. height: math.unit(1.72, "m"),
  19692. weight: math.unit(80, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/voski/front.svg",
  19696. extra: 2076.22 / 2022.4,
  19697. bottom: 102.7 / 2177.3866
  19698. }
  19699. },
  19700. frontNsfw: {
  19701. height: math.unit(1.72, "m"),
  19702. weight: math.unit(80, "lb"),
  19703. name: "Front (NSFW)",
  19704. image: {
  19705. source: "./media/characters/voski/front-nsfw.svg",
  19706. extra: 2076.22 / 2022.4,
  19707. bottom: 102.7 / 2177.3866
  19708. }
  19709. },
  19710. back: {
  19711. height: math.unit(1.72, "m"),
  19712. weight: math.unit(80, "lb"),
  19713. name: "Back",
  19714. image: {
  19715. source: "./media/characters/voski/back.svg",
  19716. extra: 2104 / 2051,
  19717. bottom: 10.45 / 2113.63
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(1.72, "m")
  19725. },
  19726. {
  19727. name: "Macro",
  19728. height: math.unit(55, "m"),
  19729. default: true
  19730. },
  19731. {
  19732. name: "Macro+",
  19733. height: math.unit(300, "m")
  19734. },
  19735. {
  19736. name: "Macro++",
  19737. height: math.unit(700, "m")
  19738. },
  19739. {
  19740. name: "Macro+++",
  19741. height: math.unit(4500, "m")
  19742. },
  19743. {
  19744. name: "Macro++++",
  19745. height: math.unit(45, "km")
  19746. },
  19747. {
  19748. name: "Macro+++++",
  19749. height: math.unit(1220, "km")
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Icowom Lee" },
  19755. {
  19756. front: {
  19757. height: math.unit(2.3, "m"),
  19758. weight: math.unit(304, "kg"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/icowom-lee/front.svg",
  19762. extra: 3076 / 2933,
  19763. bottom: 51.4 / 3125.1889
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(2.3, "meters"),
  19771. default: true
  19772. },
  19773. {
  19774. name: "Macro",
  19775. height: math.unit(94, "meters"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Shock Diamond", species: ["Aeromorphic Synthetic Pharaoh Hound"] },
  19782. {
  19783. front: {
  19784. height: math.unit(22, "meters"),
  19785. weight: math.unit(21000, "kg"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/shock-diamond/front.svg",
  19789. extra: 2204 / 2053,
  19790. bottom: 65 / 2239.47
  19791. }
  19792. },
  19793. frontNude: {
  19794. height: math.unit(22, "meters"),
  19795. weight: math.unit(21000, "kg"),
  19796. name: "Front (Nude)",
  19797. image: {
  19798. source: "./media/characters/shock-diamond/front-nude.svg",
  19799. extra: 2514 / 2285,
  19800. bottom: 13 / 2527.56
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(3, "meters")
  19808. },
  19809. {
  19810. name: "Macro",
  19811. height: math.unit(22, "meters"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Rory" },
  19818. {
  19819. front: {
  19820. height: math.unit(5 + 4 / 12, "feet"),
  19821. weight: math.unit(120, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/rory/front.svg",
  19825. extra: 589 / 556,
  19826. bottom: 45.7 / 635.76
  19827. }
  19828. },
  19829. frontNude: {
  19830. height: math.unit(5 + 4 / 12, "feet"),
  19831. weight: math.unit(120, "lb"),
  19832. name: "Front (Nude)",
  19833. image: {
  19834. source: "./media/characters/rory/front-nude.svg",
  19835. extra: 589 / 556,
  19836. bottom: 45.7 / 635.76
  19837. }
  19838. },
  19839. side: {
  19840. height: math.unit(5 + 4 / 12, "feet"),
  19841. weight: math.unit(120, "lb"),
  19842. name: "Side",
  19843. image: {
  19844. source: "./media/characters/rory/side.svg",
  19845. extra: 597 / 564,
  19846. bottom: 55 / 653
  19847. }
  19848. },
  19849. back: {
  19850. height: math.unit(5 + 4 / 12, "feet"),
  19851. weight: math.unit(120, "lb"),
  19852. name: "Back",
  19853. image: {
  19854. source: "./media/characters/rory/back.svg",
  19855. extra: 620 / 585,
  19856. bottom: 8.86 / 630.43
  19857. }
  19858. },
  19859. dick: {
  19860. height: math.unit(0.86, "feet"),
  19861. name: "Dick",
  19862. image: {
  19863. source: "./media/characters/rory/dick.svg"
  19864. }
  19865. },
  19866. },
  19867. [
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(5 + 4 / 12, "feet"),
  19871. default: true
  19872. },
  19873. {
  19874. name: "Macro",
  19875. height: math.unit(100, "feet")
  19876. },
  19877. {
  19878. name: "Macro+",
  19879. height: math.unit(140, "feet")
  19880. },
  19881. {
  19882. name: "Macro++",
  19883. height: math.unit(300, "feet")
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Sprisk" },
  19889. {
  19890. front: {
  19891. height: math.unit(5 + 9 / 12, "feet"),
  19892. weight: math.unit(190, "lb"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/sprisk/front.svg",
  19896. extra: 1225 / 1180,
  19897. bottom: 42.7 / 1266.4
  19898. }
  19899. },
  19900. frontNsfw: {
  19901. height: math.unit(5 + 9 / 12, "feet"),
  19902. weight: math.unit(190, "lb"),
  19903. name: "Front (NSFW)",
  19904. image: {
  19905. source: "./media/characters/sprisk/front-nsfw.svg",
  19906. extra: 1225 / 1180,
  19907. bottom: 42.7 / 1266.4
  19908. }
  19909. },
  19910. back: {
  19911. height: math.unit(5 + 9 / 12, "feet"),
  19912. weight: math.unit(190, "lb"),
  19913. name: "Back",
  19914. image: {
  19915. source: "./media/characters/sprisk/back.svg",
  19916. extra: 1247 / 1200,
  19917. bottom: 5.6 / 1253.04
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Tiny",
  19924. height: math.unit(2, "inches")
  19925. },
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(5 + 9 / 12, "feet"),
  19929. default: true
  19930. },
  19931. {
  19932. name: "Mini Macro",
  19933. height: math.unit(18, "feet")
  19934. },
  19935. {
  19936. name: "Macro",
  19937. height: math.unit(100, "feet")
  19938. },
  19939. {
  19940. name: "MACRO",
  19941. height: math.unit(50, "miles")
  19942. },
  19943. {
  19944. name: "M A C R O",
  19945. height: math.unit(300, "miles")
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Bunsen" },
  19951. {
  19952. side: {
  19953. height: math.unit(15.6, "meters"),
  19954. weight: math.unit(700000, "kg"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/bunsen/side.svg",
  19958. extra: 1644 / 358
  19959. }
  19960. },
  19961. foot: {
  19962. height: math.unit(1.611 * 1644 / 358, "meter"),
  19963. name: "Foot",
  19964. image: {
  19965. source: "./media/characters/bunsen/foot.svg"
  19966. }
  19967. },
  19968. },
  19969. [
  19970. {
  19971. name: "Small",
  19972. height: math.unit(10, "feet")
  19973. },
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(15.6, "meters"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Sesh" },
  19983. {
  19984. front: {
  19985. height: math.unit(4 + 11 / 12, "feet"),
  19986. weight: math.unit(140, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/sesh/front.svg",
  19990. extra: 3420 / 3231,
  19991. bottom: 72 / 3949.5
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(4 + 11 / 12, "feet")
  19999. },
  20000. {
  20001. name: "Grown",
  20002. height: math.unit(15, "feet"),
  20003. default: true
  20004. },
  20005. {
  20006. name: "Macro",
  20007. height: math.unit(1500, "feet")
  20008. },
  20009. {
  20010. name: "Megamacro",
  20011. height: math.unit(30, "miles")
  20012. },
  20013. {
  20014. name: "Continental",
  20015. height: math.unit(3000, "miles")
  20016. },
  20017. {
  20018. name: "Gravity Mass",
  20019. height: math.unit(300000, "miles")
  20020. },
  20021. {
  20022. name: "Planet Buster",
  20023. height: math.unit(30000000, "miles")
  20024. },
  20025. {
  20026. name: "Big",
  20027. height: math.unit(3000000000, "miles")
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Pepper" },
  20033. {
  20034. front: {
  20035. height: math.unit(9, "feet"),
  20036. weight: math.unit(350, "lb"),
  20037. name: "Front",
  20038. image: {
  20039. source: "./media/characters/pepper/front.svg",
  20040. extra: 1448/1312,
  20041. bottom: 9.4/1457.88
  20042. }
  20043. },
  20044. back: {
  20045. height: math.unit(9, "feet"),
  20046. weight: math.unit(350, "lb"),
  20047. name: "Back",
  20048. image: {
  20049. source: "./media/characters/pepper/back.svg",
  20050. extra: 1423/1300,
  20051. bottom: 4.6/1429
  20052. }
  20053. },
  20054. maw: {
  20055. height: math.unit(0.932, "feet"),
  20056. name: "Maw",
  20057. image: {
  20058. source: "./media/characters/pepper/maw.svg"
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(9, "feet"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Maelstrom" },
  20072. {
  20073. front: {
  20074. height: math.unit(6, "feet"),
  20075. weight: math.unit(150, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/maelstrom/front.svg",
  20079. extra: 2100/1883,
  20080. bottom: 94/2196.7
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Less Kaiju",
  20087. height: math.unit(200, "feet")
  20088. },
  20089. {
  20090. name: "Kaiju",
  20091. height: math.unit(400, "feet"),
  20092. default: true
  20093. },
  20094. {
  20095. name: "Kaiju-er",
  20096. height: math.unit(600, "feet")
  20097. },
  20098. ]
  20099. ))
  20100. characterMakers.push(() => makeCharacter(
  20101. { name: "Lexir" },
  20102. {
  20103. front: {
  20104. height: math.unit(6 + 5/12, "feet"),
  20105. weight: math.unit(180, "lb"),
  20106. name: "Front",
  20107. image: {
  20108. source: "./media/characters/lexir/front.svg",
  20109. extra: 180/172,
  20110. bottom: 12/192
  20111. }
  20112. },
  20113. back: {
  20114. height: math.unit(6 + 5/12, "feet"),
  20115. weight: math.unit(180, "lb"),
  20116. name: "Back",
  20117. image: {
  20118. source: "./media/characters/lexir/back.svg",
  20119. extra: 183.84/175.5,
  20120. bottom: 3.1/187
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Very Smal",
  20127. height: math.unit(1, "nm")
  20128. },
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(6 + 5/12, "feet"),
  20132. default: true
  20133. },
  20134. {
  20135. name: "Macro",
  20136. height: math.unit(1, "mile")
  20137. },
  20138. {
  20139. name: "Megamacro",
  20140. height: math.unit(50, "miles")
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Maksio" },
  20146. {
  20147. front: {
  20148. height: math.unit(1.5, "meters"),
  20149. weight: math.unit(100, "lb"),
  20150. name: "Front",
  20151. image: {
  20152. source: "./media/characters/maksio/front.svg",
  20153. extra: 1549/1531,
  20154. bottom: 123.7/1674.5429
  20155. }
  20156. },
  20157. back: {
  20158. height: math.unit(1.5, "meters"),
  20159. weight: math.unit(100, "lb"),
  20160. name: "Back",
  20161. image: {
  20162. source: "./media/characters/maksio/back.svg",
  20163. extra: 1541/1509,
  20164. bottom: 97/1639
  20165. }
  20166. },
  20167. hand: {
  20168. height: math.unit(0.621, "feet"),
  20169. name: "Hand",
  20170. image: {
  20171. source: "./media/characters/maksio/hand.svg"
  20172. }
  20173. },
  20174. foot: {
  20175. height: math.unit(1.611, "feet"),
  20176. name: "Foot",
  20177. image: {
  20178. source: "./media/characters/maksio/foot.svg"
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Shrunken",
  20185. height: math.unit(10, "cm")
  20186. },
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(150, "cm"),
  20190. default: true
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Erza Bear" },
  20196. {
  20197. front: {
  20198. height: math.unit(100, "feet"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/erza-bear/front.svg",
  20202. extra: 2449/2390,
  20203. bottom: 46/2494
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(100, "feet"),
  20208. name: "Back",
  20209. image: {
  20210. source: "./media/characters/erza-bear/back.svg",
  20211. extra: 2489/2430,
  20212. bottom: 85.4/2480
  20213. }
  20214. },
  20215. tail: {
  20216. height: math.unit(42, "feet"),
  20217. name: "Tail",
  20218. image: {
  20219. source: "./media/characters/erza-bear/tail.svg"
  20220. }
  20221. },
  20222. tongue: {
  20223. height: math.unit(8, "feet"),
  20224. name: "Tongue",
  20225. image: {
  20226. source: "./media/characters/erza-bear/tongue.svg"
  20227. }
  20228. },
  20229. dick: {
  20230. height: math.unit(10.5, "feet"),
  20231. name: "Dick",
  20232. image: {
  20233. source: "./media/characters/erza-bear/dick.svg"
  20234. }
  20235. },
  20236. dickVertical: {
  20237. height: math.unit(16.9, "feet"),
  20238. name: "Dick (Vertical)",
  20239. image: {
  20240. source: "./media/characters/erza-bear/dick-vertical.svg"
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Macro",
  20247. height: math.unit(100, "feet"),
  20248. default: true
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Violet Flor", species: ["Skunk"] },
  20254. {
  20255. front: {
  20256. height: math.unit(172, "cm"),
  20257. weight: math.unit(73, "kg"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/violet-flor/front.svg",
  20261. extra: 1530/1442,
  20262. bottom: 61.9/1588.8
  20263. }
  20264. },
  20265. back: {
  20266. height: math.unit(180, "cm"),
  20267. weight: math.unit(73, "kg"),
  20268. name: "Back",
  20269. image: {
  20270. source: "./media/characters/violet-flor/back.svg",
  20271. extra: 1692/1630,
  20272. bottom: 20/1712
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(172, "cm"),
  20280. default: true
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Lynn Rhea", species: ["Shark"] },
  20286. {
  20287. front: {
  20288. height: math.unit(6, "feet"),
  20289. weight: math.unit(220, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/lynn-rhea/front.svg",
  20293. extra: 310/273
  20294. }
  20295. },
  20296. back: {
  20297. height: math.unit(6, "feet"),
  20298. weight: math.unit(220, "lb"),
  20299. name: "Back",
  20300. image: {
  20301. source: "./media/characters/lynn-rhea/back.svg",
  20302. extra: 310/273
  20303. }
  20304. },
  20305. dicks: {
  20306. height: math.unit(0.9, "feet"),
  20307. name: "Dicks",
  20308. image: {
  20309. source: "./media/characters/lynn-rhea/dicks.svg"
  20310. }
  20311. },
  20312. slit: {
  20313. height: math.unit(0.4, "feet"),
  20314. name: "Slit",
  20315. image: {
  20316. source: "./media/characters/lynn-rhea/slit.svg"
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Micro",
  20323. height: math.unit(1, "inch")
  20324. },
  20325. {
  20326. name: "Macro",
  20327. height: math.unit(60, "feet"),
  20328. default: true
  20329. },
  20330. {
  20331. name: "Megamacro",
  20332. height: math.unit(2, "miles")
  20333. },
  20334. {
  20335. name: "Gigamacro",
  20336. height: math.unit(3, "earths")
  20337. },
  20338. {
  20339. name: "Galactic",
  20340. height: math.unit(0.8, "galaxies")
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Valathos" },
  20346. {
  20347. front: {
  20348. height: math.unit(1600, "feet"),
  20349. weight: math.unit(85758785169, "kg"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/valathos/front.svg",
  20353. extra: 1451/1339
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Macro",
  20360. height: math.unit(1600, "feet"),
  20361. default: true
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Azula" },
  20367. {
  20368. front: {
  20369. height: math.unit(7 + 5/12, "feet"),
  20370. weight: math.unit(300, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/azula/front.svg",
  20374. extra: 3208/2880,
  20375. bottom: 80.2/3277
  20376. }
  20377. },
  20378. back: {
  20379. height: math.unit(7 + 5/12, "feet"),
  20380. weight: math.unit(300, "lb"),
  20381. name: "Back",
  20382. image: {
  20383. source: "./media/characters/azula/back.svg",
  20384. extra: 3169/2822,
  20385. bottom: 150.6/3321
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(7 + 5/12, "feet"),
  20393. default: true
  20394. },
  20395. {
  20396. name: "Big",
  20397. height: math.unit(20, "feet")
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Rupert" },
  20403. {
  20404. front: {
  20405. height: math.unit(5 + 1/12, "feet"),
  20406. weight: math.unit(110, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/rupert/front.svg",
  20410. extra: 1549/1495,
  20411. bottom: 54.2/1604.4
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(5 + 1/12, "feet"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Sheera Castellar" },
  20425. {
  20426. front: {
  20427. height: math.unit(8 + 4/12, "feet"),
  20428. weight: math.unit(350, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/sheera-castellar/front.svg",
  20432. extra: 1957/1894,
  20433. bottom: 26.97/1975.017
  20434. }
  20435. },
  20436. side: {
  20437. height: math.unit(8 + 4/12, "feet"),
  20438. weight: math.unit(350, "lb"),
  20439. name: "Side",
  20440. image: {
  20441. source: "./media/characters/sheera-castellar/side.svg",
  20442. extra: 1957/1894
  20443. }
  20444. },
  20445. back: {
  20446. height: math.unit(8 + 4/12, "feet"),
  20447. weight: math.unit(350, "lb"),
  20448. name: "Back",
  20449. image: {
  20450. source: "./media/characters/sheera-castellar/back.svg",
  20451. extra: 1957/1894
  20452. }
  20453. },
  20454. angled: {
  20455. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20456. weight: math.unit(350, "lb"),
  20457. name: "Angled",
  20458. image: {
  20459. source: "./media/characters/sheera-castellar/angled.svg",
  20460. extra: 1807/1707,
  20461. bottom: 68/1875
  20462. }
  20463. },
  20464. genitals: {
  20465. height: math.unit(2.2, "feet"),
  20466. name: "Genitals",
  20467. image: {
  20468. source: "./media/characters/sheera-castellar/genitals.svg"
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(8 + 4/12, "feet")
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(150, "feet"),
  20480. default: true
  20481. },
  20482. {
  20483. name: "Macro+",
  20484. height: math.unit(800, "feet")
  20485. },
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Jaipur", species: ["Black Panther"] },
  20490. {
  20491. front: {
  20492. height: math.unit(6, "feet"),
  20493. weight: math.unit(150, "lb"),
  20494. name: "Front",
  20495. image: {
  20496. source: "./media/characters/jaipur/front.svg",
  20497. extra: 3860/3731,
  20498. bottom: 287/4140
  20499. }
  20500. },
  20501. back: {
  20502. height: math.unit(6, "feet"),
  20503. weight: math.unit(150, "lb"),
  20504. name: "Back",
  20505. image: {
  20506. source: "./media/characters/jaipur/back.svg",
  20507. extra: 4060/3930,
  20508. bottom: 151/4200
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(1.85, "meters"),
  20516. default: true
  20517. },
  20518. {
  20519. name: "Macro",
  20520. height: math.unit(150, "meters")
  20521. },
  20522. {
  20523. name: "Macro+",
  20524. height: math.unit(0.5, "miles")
  20525. },
  20526. {
  20527. name: "Macro++",
  20528. height: math.unit(2.5, "miles")
  20529. },
  20530. {
  20531. name: "Macro+++",
  20532. height: math.unit(12, "miles")
  20533. },
  20534. {
  20535. name: "Macro++++",
  20536. height: math.unit(120, "miles")
  20537. },
  20538. {
  20539. name: "Macro+++++",
  20540. height: math.unit(1200, "miles")
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Sheila (Wolf)" },
  20546. {
  20547. front: {
  20548. height: math.unit(6, "feet"),
  20549. weight: math.unit(150, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/sheila-wolf/front.svg",
  20553. extra: 1931/1808,
  20554. bottom: 29.5/1960
  20555. }
  20556. },
  20557. dick: {
  20558. height: math.unit(1.464, "feet"),
  20559. name: "Dick",
  20560. image: {
  20561. source: "./media/characters/sheila-wolf/dick.svg"
  20562. }
  20563. },
  20564. muzzle: {
  20565. height: math.unit(0.513, "feet"),
  20566. name: "Muzzle",
  20567. image: {
  20568. source: "./media/characters/sheila-wolf/muzzle.svg"
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Macro",
  20575. height: math.unit(70, "feet"),
  20576. default: true
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Almor", species: ["Dragon"] },
  20582. {
  20583. front: {
  20584. height: math.unit(32, "meters"),
  20585. weight: math.unit(300000, "kg"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/almor/front.svg",
  20589. extra: 1408/1322,
  20590. bottom: 94.6/1506.5
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Macro",
  20597. height: math.unit(32, "meters"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Silver" },
  20604. {
  20605. front: {
  20606. height: math.unit(7, "feet"),
  20607. weight: math.unit(200, "lb"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/silver/front.svg",
  20611. extra: 472.1/450.5,
  20612. bottom: 26.5/499.424
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(7, "feet"),
  20620. default: true
  20621. },
  20622. {
  20623. name: "Macro",
  20624. height: math.unit(800, "feet")
  20625. },
  20626. {
  20627. name: "Megamacro",
  20628. height: math.unit(250, "miles")
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Pliskin" },
  20634. {
  20635. front: {
  20636. height: math.unit(6, "feet"),
  20637. weight: math.unit(150, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/pliskin/front.svg",
  20641. extra: 1469/1359,
  20642. bottom: 70/1540
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Micro",
  20649. height: math.unit(3, "inches")
  20650. },
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(5 + 11/12, "feet"),
  20654. default: true
  20655. },
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(120, "feet")
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Sammy" },
  20664. {
  20665. front: {
  20666. height: math.unit(6, "feet"),
  20667. weight: math.unit(150, "lb"),
  20668. name: "Front",
  20669. image: {
  20670. source: "./media/characters/sammy/front.svg",
  20671. extra: 1193/1089,
  20672. bottom: 30.5/1226
  20673. }
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Macro",
  20679. height: math.unit(1700, "feet"),
  20680. default: true
  20681. },
  20682. {
  20683. name: "Examacro",
  20684. height: math.unit(2.5e9, "lightyears")
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Kuru", species: ["Umbra"] },
  20690. {
  20691. front: {
  20692. height: math.unit(21, "meters"),
  20693. weight: math.unit(12, "tonnes"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/kuru/front.svg",
  20697. extra: 4301/3785,
  20698. bottom: 371.3/4691
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Macro",
  20705. height: math.unit(21, "meters"),
  20706. default: true
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Rakka", species: ["Umbra"] },
  20712. {
  20713. front: {
  20714. height: math.unit(23, "meters"),
  20715. weight: math.unit(12.2, "tonnes"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/rakka/front.svg",
  20719. extra: 4670/4169,
  20720. bottom: 301/4968.7
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Macro",
  20727. height: math.unit(23, "meters"),
  20728. default: true
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Rhys (Feline)" },
  20734. {
  20735. front: {
  20736. height: math.unit(6, "feet"),
  20737. weight: math.unit(150, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/rhys-feline/front.svg",
  20741. extra: 2488/2308,
  20742. bottom: 35.67/2519.19
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Really Small",
  20749. height: math.unit(1, "nm")
  20750. },
  20751. {
  20752. name: "Micro",
  20753. height: math.unit(4, "inches")
  20754. },
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(4 + 10/12, "feet"),
  20758. default: true
  20759. },
  20760. {
  20761. name: "Macro",
  20762. height: math.unit(100, "feet")
  20763. },
  20764. {
  20765. name: "Megamacto",
  20766. height: math.unit(50, "miles")
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Alydar", species: ["Raven/Snow Leopard"] },
  20772. {
  20773. side: {
  20774. height: math.unit(30, "feet"),
  20775. weight: math.unit(35000, "kg"),
  20776. name: "Side",
  20777. image: {
  20778. source: "./media/characters/alydar/side.svg",
  20779. extra: 234/222,
  20780. bottom: 6.5/241
  20781. }
  20782. },
  20783. front: {
  20784. height: math.unit(30, "feet"),
  20785. weight: math.unit(35000, "kg"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/alydar/front.svg",
  20789. extra: 223.37/210.2,
  20790. bottom: 22.3/246.76
  20791. }
  20792. },
  20793. top: {
  20794. height: math.unit(64.54, "feet"),
  20795. weight: math.unit(35000, "kg"),
  20796. name: "Top",
  20797. image: {
  20798. source: "./media/characters/alydar/top.svg"
  20799. }
  20800. },
  20801. anthro: {
  20802. height: math.unit(30, "feet"),
  20803. weight: math.unit(9000, "kg"),
  20804. name: "Anthro",
  20805. image: {
  20806. source: "./media/characters/alydar/anthro.svg",
  20807. extra: 432/421,
  20808. bottom: 7.18/440
  20809. }
  20810. },
  20811. maw: {
  20812. height: math.unit(11.693, "feet"),
  20813. name: "Maw",
  20814. image: {
  20815. source: "./media/characters/alydar/maw.svg"
  20816. }
  20817. },
  20818. head: {
  20819. height: math.unit(11.693, "feet"),
  20820. name: "Head",
  20821. image: {
  20822. source: "./media/characters/alydar/head.svg"
  20823. }
  20824. },
  20825. headAlt: {
  20826. height: math.unit(12.861, "feet"),
  20827. name: "Head (Alt)",
  20828. image: {
  20829. source: "./media/characters/alydar/head-alt.svg"
  20830. }
  20831. },
  20832. wing: {
  20833. height: math.unit(20.712, "feet"),
  20834. name: "Wing",
  20835. image: {
  20836. source: "./media/characters/alydar/wing.svg"
  20837. }
  20838. },
  20839. wingFeather: {
  20840. height: math.unit(9.662, "feet"),
  20841. name: "Wing Feather",
  20842. image: {
  20843. source: "./media/characters/alydar/wing-feather.svg"
  20844. }
  20845. },
  20846. countourFeather: {
  20847. height: math.unit(4.154, "feet"),
  20848. name: "Contour Feather",
  20849. image: {
  20850. source: "./media/characters/alydar/contour-feather.svg"
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Diplomatic",
  20857. height: math.unit(13, "feet"),
  20858. default: true
  20859. },
  20860. {
  20861. name: "Small",
  20862. height: math.unit(30, "feet")
  20863. },
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(95, "feet"),
  20867. default: true
  20868. },
  20869. {
  20870. name: "Large",
  20871. height: math.unit(285, "feet")
  20872. },
  20873. {
  20874. name: "Incomprehensible",
  20875. height: math.unit(450, "megameters")
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Selicia" },
  20881. {
  20882. side: {
  20883. height: math.unit(11, "feet"),
  20884. weight: math.unit(1750, "kg"),
  20885. name: "Side",
  20886. image: {
  20887. source: "./media/characters/selicia/side.svg",
  20888. extra: 440/396,
  20889. bottom: 24.8/465.979
  20890. }
  20891. },
  20892. maw: {
  20893. height: math.unit(4.665, "feet"),
  20894. name: "Maw",
  20895. image: {
  20896. source: "./media/characters/selicia/maw.svg"
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(11, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Layla" },
  20910. {
  20911. side: {
  20912. height: math.unit(2 + 6 /12, "feet"),
  20913. weight: math.unit(30, "lb"),
  20914. name: "Side",
  20915. image: {
  20916. source: "./media/characters/layla/side.svg",
  20917. extra: 244/188,
  20918. bottom: 18.2/262.1
  20919. }
  20920. },
  20921. back: {
  20922. height: math.unit(2 + 6 /12, "feet"),
  20923. weight: math.unit(30, "lb"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/layla/back.svg",
  20927. extra: 308/241.5,
  20928. bottom: 8.9/316.8
  20929. }
  20930. },
  20931. cumming: {
  20932. height: math.unit(2 + 6 /12, "feet"),
  20933. weight: math.unit(30, "lb"),
  20934. name: "Cumming",
  20935. image: {
  20936. source: "./media/characters/layla/cumming.svg",
  20937. extra: 342/279,
  20938. bottom: 595/938
  20939. }
  20940. },
  20941. dickFlaccid: {
  20942. height: math.unit(2.595, "feet"),
  20943. name: "Flaccid Genitals",
  20944. image: {
  20945. source: "./media/characters/layla/dick-flaccid.svg"
  20946. }
  20947. },
  20948. dickErect: {
  20949. height: math.unit(2.359, "feet"),
  20950. name: "Erect Genitals",
  20951. image: {
  20952. source: "./media/characters/layla/dick-erect.svg"
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(1, "inch")
  20960. },
  20961. {
  20962. name: "Small",
  20963. height: math.unit(1, "foot")
  20964. },
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(2 + 6/12, "feet"),
  20968. default: true
  20969. },
  20970. {
  20971. name: "Macro",
  20972. height: math.unit(200, "feet")
  20973. },
  20974. {
  20975. name: "Megamacro",
  20976. height: math.unit(1000, "miles")
  20977. },
  20978. {
  20979. name: "Planetary",
  20980. height: math.unit(8000, "miles")
  20981. },
  20982. {
  20983. name: "True Layla",
  20984. height: math.unit(200000*7, "multiverses")
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Knox" },
  20990. {
  20991. back: {
  20992. height: math.unit(10.5, "feet"),
  20993. weight: math.unit(800, "lb"),
  20994. name: "Back",
  20995. image: {
  20996. source: "./media/characters/knox/back.svg",
  20997. extra: 1486/1089,
  20998. bottom: 107/1601.4
  20999. }
  21000. },
  21001. side: {
  21002. height: math.unit(10.5, "feet"),
  21003. weight: math.unit(800, "lb"),
  21004. name: "Side",
  21005. image: {
  21006. source: "./media/characters/knox/side.svg",
  21007. extra: 244/218,
  21008. bottom: 14/260
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Compact",
  21015. height: math.unit(10.5, "feet"),
  21016. default: true
  21017. },
  21018. {
  21019. name: "Dynamax",
  21020. height: math.unit(210, "feet")
  21021. },
  21022. {
  21023. name: "Full Macro",
  21024. height: math.unit(850, "feet")
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Shin (Pikachu)" },
  21030. {
  21031. front: {
  21032. height: math.unit(6, "feet"),
  21033. weight: math.unit(152, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/shin-pikachu/front.svg",
  21037. extra: 1574/1480,
  21038. bottom: 53.3/1626
  21039. }
  21040. },
  21041. hand: {
  21042. height: math.unit(1.055, "feet"),
  21043. name: "Hand",
  21044. image: {
  21045. source: "./media/characters/shin-pikachu/hand.svg"
  21046. }
  21047. },
  21048. foot: {
  21049. height: math.unit(1.1, "feet"),
  21050. name: "Foot",
  21051. image: {
  21052. source: "./media/characters/shin-pikachu/foot.svg"
  21053. }
  21054. },
  21055. collar: {
  21056. height: math.unit(0.386, "feet"),
  21057. name: "Collar",
  21058. image: {
  21059. source: "./media/characters/shin-pikachu/collar.svg"
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Smallest",
  21066. height: math.unit(0.5, "inches")
  21067. },
  21068. {
  21069. name: "Micro",
  21070. height: math.unit(6, "inches")
  21071. },
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(6, "feet"),
  21075. default: true
  21076. },
  21077. {
  21078. name: "Macro",
  21079. height: math.unit(150, "feet")
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Kayda" },
  21085. {
  21086. front: {
  21087. height: math.unit(28, "feet"),
  21088. weight: math.unit(10500, "lb"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/kayda/front.svg",
  21092. extra: 1536/1428,
  21093. bottom: 68.7/1603
  21094. }
  21095. },
  21096. back: {
  21097. height: math.unit(28, "feet"),
  21098. weight: math.unit(10500, "lb"),
  21099. name: "Back",
  21100. image: {
  21101. source: "./media/characters/kayda/back.svg",
  21102. extra: 1557/1464,
  21103. bottom: 39.5/1597.49
  21104. }
  21105. },
  21106. dick: {
  21107. height: math.unit(3.858, "feet"),
  21108. name: "Dick",
  21109. image: {
  21110. source: "./media/characters/kayda/dick.svg"
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(28, "feet"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Brian", species: ["Barbary Lion"] },
  21124. {
  21125. front: {
  21126. height: math.unit(10 + 11/12, "feet"),
  21127. weight: math.unit(1400, "lb"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/brian/front.svg",
  21131. extra: 737/692,
  21132. bottom: 55.4/785
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(10 + 11/12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Khemri", species: ["Jackal"] },
  21146. {
  21147. front: {
  21148. height: math.unit(5 + 8/12, "feet"),
  21149. weight: math.unit(140, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/khemri/front.svg",
  21153. extra: 4780/4059,
  21154. bottom: 80.1/4859.25
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Micro",
  21161. height: math.unit(6, "inches")
  21162. },
  21163. {
  21164. name: "Normal",
  21165. height: math.unit(5 + 8/12, "feet"),
  21166. default: true
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Felix Braveheart" },
  21172. {
  21173. front: {
  21174. height: math.unit(13, "feet"),
  21175. weight: math.unit(1700, "lb"),
  21176. name: "Front",
  21177. image: {
  21178. source: "./media/characters/felix-braveheart/front.svg",
  21179. extra: 1222/1157,
  21180. bottom: 53.2/1280
  21181. }
  21182. },
  21183. back: {
  21184. height: math.unit(13, "feet"),
  21185. weight: math.unit(1700, "lb"),
  21186. name: "Back",
  21187. image: {
  21188. source: "./media/characters/felix-braveheart/back.svg",
  21189. extra: 1277/1203,
  21190. bottom: 50.2/1327
  21191. }
  21192. },
  21193. feral: {
  21194. height: math.unit(6, "feet"),
  21195. weight: math.unit(400, "lb"),
  21196. name: "Feral",
  21197. image: {
  21198. source: "./media/characters/felix-braveheart/feral.svg",
  21199. extra: 682/625,
  21200. bottom: 6.9/688
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(13, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Shadow Blade" },
  21214. {
  21215. side: {
  21216. height: math.unit(5 + 11/12, "feet"),
  21217. weight: math.unit(1400, "lb"),
  21218. name: "Side",
  21219. image: {
  21220. source: "./media/characters/shadow-blade/side.svg",
  21221. extra: 1726/1267,
  21222. bottom: 58.4/1785
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(5 + 11/12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Karla Halldor" },
  21236. {
  21237. front: {
  21238. height: math.unit(1 + 6/12, "feet"),
  21239. weight: math.unit(25, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/karla-halldor/front.svg",
  21243. extra: 1459/1383,
  21244. bottom: 12/1472
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(1 + 6/12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Ariam" },
  21258. {
  21259. front: {
  21260. height: math.unit(6 + 2/12, "feet"),
  21261. weight: math.unit(160, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/ariam/front.svg",
  21265. extra: 714/617,
  21266. bottom: 23.4/737,
  21267. }
  21268. },
  21269. squatting: {
  21270. height: math.unit(4.1, "feet"),
  21271. weight: math.unit(160, "lb"),
  21272. name: "Squatting",
  21273. image: {
  21274. source: "./media/characters/ariam/squatting.svg",
  21275. extra: 2617/2112,
  21276. bottom: 61.2/2681,
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(6 + 2/12, "feet"),
  21284. default: true
  21285. },
  21286. {
  21287. name: "Normal+",
  21288. height: math.unit(4, "meters")
  21289. },
  21290. {
  21291. name: "Macro",
  21292. height: math.unit(50, "meters")
  21293. },
  21294. {
  21295. name: "Macro+",
  21296. height: math.unit(100, "meters")
  21297. },
  21298. {
  21299. name: "Megamacro",
  21300. height: math.unit(20, "km")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Qodri Class-of-'Fortwelve-Six" },
  21306. {
  21307. front: {
  21308. height: math.unit(1.67, "meters"),
  21309. weight: math.unit(140, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21313. extra: 438/410,
  21314. bottom: 0.75/439
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Shrunken",
  21321. height: math.unit(7.6, "cm")
  21322. },
  21323. {
  21324. name: "Human Scale",
  21325. height: math.unit(1.67, "meters")
  21326. },
  21327. {
  21328. name: "Wolxi Scale",
  21329. height: math.unit(36.7, "meters"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Izue Two-Mothers" },
  21336. {
  21337. front: {
  21338. height: math.unit(1.73, "meters"),
  21339. weight: math.unit(240, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/izue-two-mothers/front.svg",
  21343. extra: 469/437,
  21344. bottom: 1.24/470.6
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Shrunken",
  21351. height: math.unit(7.86, "cm")
  21352. },
  21353. {
  21354. name: "Human Scale",
  21355. height: math.unit(1.73, "meters")
  21356. },
  21357. {
  21358. name: "Wolxi Scale",
  21359. height: math.unit(38, "meters"),
  21360. default: true
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Teeku Love-Shack" },
  21366. {
  21367. front: {
  21368. height: math.unit(1.55, "meters"),
  21369. weight: math.unit(120, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/teeku-love-shack/front.svg",
  21373. extra: 387/362,
  21374. bottom: 1.51/388
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Shrunken",
  21381. height: math.unit(7, "cm")
  21382. },
  21383. {
  21384. name: "Human Scale",
  21385. height: math.unit(1.55, "meters")
  21386. },
  21387. {
  21388. name: "Wolxi Scale",
  21389. height: math.unit(34.1, "meters"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Dejma the Red" },
  21396. {
  21397. front: {
  21398. height: math.unit(1.83, "meters"),
  21399. weight: math.unit(135, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/dejma-the-red/front.svg",
  21403. extra: 480/458,
  21404. bottom: 1.8/482
  21405. }
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Shrunken",
  21411. height: math.unit(8.3, "cm")
  21412. },
  21413. {
  21414. name: "Human Scale",
  21415. height: math.unit(1.83, "meters")
  21416. },
  21417. {
  21418. name: "Wolxi Scale",
  21419. height: math.unit(40, "meters"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Aki" },
  21426. {
  21427. front: {
  21428. height: math.unit(1.78, "meters"),
  21429. weight: math.unit(65, "kg"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/aki/front.svg",
  21433. extra: 452/415
  21434. }
  21435. },
  21436. frontNsfw: {
  21437. height: math.unit(1.78, "meters"),
  21438. weight: math.unit(65, "kg"),
  21439. name: "Front (NSFW)",
  21440. image: {
  21441. source: "./media/characters/aki/front-nsfw.svg",
  21442. extra: 452/415
  21443. }
  21444. },
  21445. back: {
  21446. height: math.unit(1.78, "meters"),
  21447. weight: math.unit(65, "kg"),
  21448. name: "Back",
  21449. image: {
  21450. source: "./media/characters/aki/back.svg",
  21451. extra: 452/415
  21452. }
  21453. },
  21454. rump: {
  21455. height: math.unit(2.05, "feet"),
  21456. name: "Rump",
  21457. image: {
  21458. source: "./media/characters/aki/rump.svg"
  21459. }
  21460. },
  21461. dick: {
  21462. height: math.unit(0.95, "feet"),
  21463. name: "Dick",
  21464. image: {
  21465. source: "./media/characters/aki/dick.svg"
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Micro",
  21472. height: math.unit(15, "cm")
  21473. },
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(178, "cm"),
  21477. default: true
  21478. },
  21479. {
  21480. name: "Macro",
  21481. height: math.unit(214, "m")
  21482. },
  21483. {
  21484. name: "Macro+",
  21485. height: math.unit(534, "m")
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Ari" },
  21491. {
  21492. front: {
  21493. height: math.unit(5 + 5/12, "feet"),
  21494. weight: math.unit(120, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/ari/front.svg",
  21498. extra: 714.5/682,
  21499. bottom: 8/722.5
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(5 + 5/12, "feet")
  21507. },
  21508. {
  21509. name: "Macro",
  21510. height: math.unit(100, "feet"),
  21511. default: true
  21512. },
  21513. {
  21514. name: "Megamacro",
  21515. height: math.unit(100, "miles")
  21516. },
  21517. {
  21518. name: "Gigamacro",
  21519. height: math.unit(80000, "miles")
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Bolt" },
  21525. {
  21526. side: {
  21527. height: math.unit(9, "feet"),
  21528. weight: math.unit(400, "kg"),
  21529. name: "Side",
  21530. image: {
  21531. source: "./media/characters/bolt/side.svg",
  21532. extra: 1126/896,
  21533. bottom: 60/1187.3,
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Micro",
  21540. height: math.unit(5, "inches")
  21541. },
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(9, "feet"),
  21545. default: true
  21546. },
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(700, "feet")
  21550. },
  21551. {
  21552. name: "Max Size",
  21553. height: math.unit(1.52e22, "yottameters")
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Draekon Sylviar", species: ["Dra'gal"] },
  21559. {
  21560. front: {
  21561. height: math.unit(4.53, "meters"),
  21562. weight: math.unit(3, "tons"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/draekon-sylviar/front.svg",
  21566. extra: 1228/1068,
  21567. bottom: 41/1270
  21568. }
  21569. },
  21570. tail: {
  21571. height: math.unit(1.772, "meter"),
  21572. name: "Tail",
  21573. image: {
  21574. source: "./media/characters/draekon-sylviar/tail.svg"
  21575. }
  21576. },
  21577. head: {
  21578. height: math.unit(1.331, "meter"),
  21579. name: "Head",
  21580. image: {
  21581. source: "./media/characters/draekon-sylviar/head.svg"
  21582. }
  21583. },
  21584. hand: {
  21585. height: math.unit(0.564, "meter"),
  21586. name: "Hand",
  21587. image: {
  21588. source: "./media/characters/draekon-sylviar/hand.svg"
  21589. }
  21590. },
  21591. foot: {
  21592. height: math.unit(0.621, "meter"),
  21593. name: "Foot",
  21594. image: {
  21595. source: "./media/characters/draekon-sylviar/foot.svg",
  21596. bottom: 32/324
  21597. }
  21598. },
  21599. dick: {
  21600. height: math.unit(61, "cm"),
  21601. name: "Dick",
  21602. image: {
  21603. source: "./media/characters/draekon-sylviar/dick.svg"
  21604. }
  21605. },
  21606. dickseparated: {
  21607. height: math.unit(61, "cm"),
  21608. name: "Dick-separated",
  21609. image: {
  21610. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Small",
  21617. height: math.unit(4.53/2, "meters"),
  21618. default: true
  21619. },
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(4.53, "meters"),
  21623. default: true
  21624. },
  21625. {
  21626. name: "Large",
  21627. height: math.unit(4.53*2, "meters"),
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Brawler", species: ["German Shepherd"] },
  21633. {
  21634. front: {
  21635. height: math.unit(6 + 2/12, "feet"),
  21636. weight: math.unit(180, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/brawler/front.svg",
  21640. extra: 3301/3027,
  21641. bottom: 138/3439
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(6 + 2/12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Alex", species: ["Bayleef"] },
  21655. {
  21656. front: {
  21657. height: math.unit(11, "feet"),
  21658. weight: math.unit(1000, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/alex/front.svg",
  21662. bottom: 44.5/620
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Micro",
  21669. height: math.unit(5, "inches")
  21670. },
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(11, "feet"),
  21674. default: true
  21675. },
  21676. {
  21677. name: "Macro",
  21678. height: math.unit(9.5e9, "feet")
  21679. },
  21680. {
  21681. name: "Max Size",
  21682. height: math.unit(1.4e283, "yottameters")
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Zenari" },
  21688. {
  21689. female: {
  21690. height: math.unit(29.9, "m"),
  21691. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21692. name: "Female",
  21693. image: {
  21694. source: "./media/characters/zenari/female.svg",
  21695. extra: 3281.6/3217,
  21696. bottom: 72.2/3353
  21697. }
  21698. },
  21699. male: {
  21700. height: math.unit(27.7, "m"),
  21701. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21702. name: "Male",
  21703. image: {
  21704. source: "./media/characters/zenari/male.svg",
  21705. extra: 3008/2991,
  21706. bottom: 54.6/3069
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Macro",
  21713. height: math.unit(29.7, "meters"),
  21714. default: true
  21715. },
  21716. ]
  21717. ))
  21718. characterMakers.push(() => makeCharacter(
  21719. { name: "Mactarian" },
  21720. {
  21721. female: {
  21722. height: math.unit(23.8, "m"),
  21723. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21724. name: "Female",
  21725. image: {
  21726. source: "./media/characters/mactarian/female.svg",
  21727. extra: 2662/2569,
  21728. bottom: 73/2736
  21729. }
  21730. },
  21731. male: {
  21732. height: math.unit(23.8, "m"),
  21733. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21734. name: "Male",
  21735. image: {
  21736. source: "./media/characters/mactarian/male.svg",
  21737. extra: 2673/2600,
  21738. bottom: 76/2750
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "Macro",
  21745. height: math.unit(23.8, "meters"),
  21746. default: true
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Umok" },
  21752. {
  21753. female: {
  21754. height: math.unit(19.3, "m"),
  21755. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21756. name: "Female",
  21757. image: {
  21758. source: "./media/characters/umok/female.svg",
  21759. extra: 2186/2078,
  21760. bottom: 87/2277
  21761. }
  21762. },
  21763. male: {
  21764. height: math.unit(19.5, "m"),
  21765. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21766. name: "Male",
  21767. image: {
  21768. source: "./media/characters/umok/male.svg",
  21769. extra: 2233/2140,
  21770. bottom: 24.4/2258
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Macro",
  21777. height: math.unit(19.3, "meters"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Joraxian" },
  21784. {
  21785. female: {
  21786. height: math.unit(26.15, "m"),
  21787. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21788. name: "Female",
  21789. image: {
  21790. source: "./media/characters/joraxian/female.svg",
  21791. extra: 2943/2831,
  21792. bottom: 27/2972
  21793. }
  21794. },
  21795. male: {
  21796. height: math.unit(25.4, "m"),
  21797. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21798. name: "Male",
  21799. image: {
  21800. source: "./media/characters/joraxian/male.svg",
  21801. extra: 2835/2741,
  21802. bottom: 27/2862
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Macro",
  21809. height: math.unit(26.15, "meters"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Sthara" },
  21816. {
  21817. female: {
  21818. height: math.unit(21.6, "m"),
  21819. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21820. name: "Female",
  21821. image: {
  21822. source: "./media/characters/sthara/female.svg",
  21823. extra: 2516/2347,
  21824. bottom: 21.5/2537
  21825. }
  21826. },
  21827. male: {
  21828. height: math.unit(24, "m"),
  21829. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21830. name: "Male",
  21831. image: {
  21832. source: "./media/characters/sthara/male.svg",
  21833. extra: 2732/2607,
  21834. bottom: 23/2732
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Macro",
  21841. height: math.unit(21.6, "meters"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Luka Bryzant" },
  21848. {
  21849. front: {
  21850. height: math.unit(6 + 4/12, "feet"),
  21851. weight: math.unit(175, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/luka-bryzant/front.svg",
  21855. extra: 311/289,
  21856. bottom: 4/315
  21857. }
  21858. },
  21859. back: {
  21860. height: math.unit(6 + 4/12, "feet"),
  21861. weight: math.unit(175, "lb"),
  21862. name: "Back",
  21863. image: {
  21864. source: "./media/characters/luka-bryzant/back.svg",
  21865. extra: 311/289,
  21866. bottom: 3.8/313.7
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Micro",
  21873. height: math.unit(10, "inches")
  21874. },
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(6 + 4/12, "feet"),
  21878. default: true
  21879. },
  21880. {
  21881. name: "Large",
  21882. height: math.unit(12, "feet")
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Aman Aquila" },
  21888. {
  21889. front: {
  21890. height: math.unit(5 + 7/12, "feet"),
  21891. weight: math.unit(185, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/aman-aquila/front.svg",
  21895. extra: 1013/976,
  21896. bottom: 45.6/1057
  21897. }
  21898. },
  21899. side: {
  21900. height: math.unit(5 + 7/12, "feet"),
  21901. weight: math.unit(185, "lb"),
  21902. name: "Side",
  21903. image: {
  21904. source: "./media/characters/aman-aquila/side.svg",
  21905. extra: 1054/1011,
  21906. bottom: 15/1070
  21907. }
  21908. },
  21909. back: {
  21910. height: math.unit(5 + 7/12, "feet"),
  21911. weight: math.unit(185, "lb"),
  21912. name: "Back",
  21913. image: {
  21914. source: "./media/characters/aman-aquila/back.svg",
  21915. extra: 1026/970,
  21916. bottom: 12/1039
  21917. }
  21918. },
  21919. head: {
  21920. height: math.unit(1.211, "feet"),
  21921. name: "Head",
  21922. image: {
  21923. source: "./media/characters/aman-aquila/head.svg",
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Minimicro",
  21930. height: math.unit(0.057, "inches")
  21931. },
  21932. {
  21933. name: "Micro",
  21934. height: math.unit(7, "inches")
  21935. },
  21936. {
  21937. name: "Mini",
  21938. height: math.unit(3 + 7/12, "feet")
  21939. },
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(5 + 7/12, "feet"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(157 + 7/12, "feet")
  21948. },
  21949. {
  21950. name: "Megamacro",
  21951. height: math.unit(1557 + 7/12, "feet")
  21952. },
  21953. {
  21954. name: "Gigamacro",
  21955. height: math.unit(15557 + 7/12, "feet")
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Hiphae", species: ["Mouse"] },
  21961. {
  21962. front: {
  21963. height: math.unit(3 + 2/12, "inches"),
  21964. weight: math.unit(0.3, "ounces"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/hiphae/front.svg",
  21968. extra: 1931/1683,
  21969. bottom: 24/1955
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(3 + 1/2, "inches"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Nicky", species: ["Shark"] },
  21983. {
  21984. front: {
  21985. height: math.unit(5 + 10/12, "feet"),
  21986. weight: math.unit(165, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/nicky/front.svg",
  21990. extra: 3144/2886,
  21991. bottom: 45.6/3192
  21992. }
  21993. },
  21994. back: {
  21995. height: math.unit(5 + 10/12, "feet"),
  21996. weight: math.unit(165, "lb"),
  21997. name: "Back",
  21998. image: {
  21999. source: "./media/characters/nicky/back.svg",
  22000. extra: 3055/2804,
  22001. bottom: 28.4/3087
  22002. }
  22003. },
  22004. frontclothed: {
  22005. height: math.unit(5 + 10/12, "feet"),
  22006. weight: math.unit(165, "lb"),
  22007. name: "Front-clothed",
  22008. image: {
  22009. source: "./media/characters/nicky/front-clothed.svg",
  22010. extra: 3184.9/2926.9,
  22011. bottom: 86.5/3239.9
  22012. }
  22013. },
  22014. foot: {
  22015. height: math.unit(1.16, "feet"),
  22016. name: "Foot",
  22017. image: {
  22018. source: "./media/characters/nicky/foot.svg"
  22019. }
  22020. },
  22021. feet: {
  22022. height: math.unit(1.34, "feet"),
  22023. name: "Feet",
  22024. image: {
  22025. source: "./media/characters/nicky/feet.svg"
  22026. }
  22027. },
  22028. maw: {
  22029. height: math.unit(0.9, "feet"),
  22030. name: "Maw",
  22031. image: {
  22032. source: "./media/characters/nicky/maw.svg"
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(5 + 10/12, "feet"),
  22040. default: true
  22041. },
  22042. {
  22043. name: "Macro",
  22044. height: math.unit(60, "feet")
  22045. },
  22046. {
  22047. name: "Megamacro",
  22048. height: math.unit(1, "mile")
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Blair" },
  22054. {
  22055. side: {
  22056. height: math.unit(10, "feet"),
  22057. weight: math.unit(600, "lb"),
  22058. name: "Side",
  22059. image: {
  22060. source: "./media/characters/blair/side.svg",
  22061. bottom: 16.6/475,
  22062. extra: 458/431
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Micro",
  22069. height: math.unit(8, "inches")
  22070. },
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(10, "feet"),
  22074. default: true
  22075. },
  22076. {
  22077. name: "Macro",
  22078. height: math.unit(180, "feet")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Fisher" },
  22084. {
  22085. front: {
  22086. height: math.unit(5 + 4/12, "feet"),
  22087. weight: math.unit(125, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/fisher/front.svg",
  22091. extra: 444/390,
  22092. bottom: 2/444.8
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Micro",
  22099. height: math.unit(4, "inches")
  22100. },
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(5 + 4/12, "feet"),
  22104. default: true
  22105. },
  22106. {
  22107. name: "Macro",
  22108. height: math.unit(100, "feet")
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Gliss" },
  22114. {
  22115. front: {
  22116. height: math.unit(6.71, "feet"),
  22117. weight: math.unit(200, "lb"),
  22118. capacity: math.unit(1000000, "people"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/gliss/front.svg",
  22122. extra: 2347/2231,
  22123. bottom: 113/2462
  22124. }
  22125. },
  22126. hammerspaceSize: {
  22127. height: math.unit(6.71*717, "feet"),
  22128. weight: math.unit(200, "lb"),
  22129. capacity: math.unit(1000000, "people"),
  22130. name: "Hammerspace Size",
  22131. image: {
  22132. source: "./media/characters/gliss/front.svg",
  22133. extra: 2347/2231,
  22134. bottom: 113/2462
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(6.71, "feet"),
  22142. default: true
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Dune Anderson" },
  22148. {
  22149. side: {
  22150. height: math.unit(1.44, "m"),
  22151. weight: math.unit(80, "kg"),
  22152. name: "Side",
  22153. image: {
  22154. source: "./media/characters/dune-anderson/side.svg",
  22155. bottom: 49/1426
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Wolf-sized",
  22162. height: math.unit(1.44, "meters")
  22163. },
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5.05, "meters"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Big",
  22171. height: math.unit(14.4, "meters")
  22172. },
  22173. {
  22174. name: "Huge",
  22175. height: math.unit(144, "meters")
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Hind" },
  22181. {
  22182. front: {
  22183. height: math.unit(7, "feet"),
  22184. weight: math.unit(425, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/hind/front.svg",
  22188. extra: 2091/1860,
  22189. bottom: 129/2220
  22190. }
  22191. },
  22192. back: {
  22193. height: math.unit(7, "feet"),
  22194. weight: math.unit(425, "lb"),
  22195. name: "Back",
  22196. image: {
  22197. source: "./media/characters/hind/back.svg",
  22198. extra: 2091/1860,
  22199. bottom: 24.6/2309
  22200. }
  22201. },
  22202. tail: {
  22203. height: math.unit(2.8, "feet"),
  22204. name: "Tail",
  22205. image: {
  22206. source: "./media/characters/hind/tail.svg"
  22207. }
  22208. },
  22209. head: {
  22210. height: math.unit(2.55, "feet"),
  22211. name: "Head",
  22212. image: {
  22213. source: "./media/characters/hind/head.svg"
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "XS",
  22220. height: math.unit(0.7, "feet")
  22221. },
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(7, "feet"),
  22225. default: true
  22226. },
  22227. {
  22228. name: "XL",
  22229. height: math.unit(70, "feet")
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Dylan (Skaven)" },
  22235. {
  22236. front: {
  22237. height: math.unit(6, "feet"),
  22238. weight: math.unit(150, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/dylan-skaven/front.svg",
  22242. extra: 2318/2063,
  22243. bottom: 93.4/2410
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Nano",
  22250. height: math.unit(1, "mm")
  22251. },
  22252. {
  22253. name: "Micro",
  22254. height: math.unit(1, "cm")
  22255. },
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(2.1, "meters"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Solex Draconov", species: ["Drasune"] },
  22265. {
  22266. front: {
  22267. height: math.unit(7 + 5/12, "feet"),
  22268. weight: math.unit(357, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/solex-draconov/front.svg",
  22272. extra: 1993/1865,
  22273. bottom: 117/2111
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Natural Height",
  22280. height: math.unit(7 + 5/12, "feet"),
  22281. default: true
  22282. },
  22283. {
  22284. name: "Macro",
  22285. height: math.unit(350, "feet")
  22286. },
  22287. {
  22288. name: "Macro+",
  22289. height: math.unit(1000, "feet")
  22290. },
  22291. {
  22292. name: "Megamacro",
  22293. height: math.unit(20, "km")
  22294. },
  22295. {
  22296. name: "Megamacro+",
  22297. height: math.unit(1000, "km")
  22298. },
  22299. {
  22300. name: "Gigamacro",
  22301. height: math.unit(2.5, "Gm")
  22302. },
  22303. {
  22304. name: "Teramacro",
  22305. height: math.unit(15, "Tm")
  22306. },
  22307. {
  22308. name: "Galactic",
  22309. height: math.unit(30, "Zm")
  22310. },
  22311. {
  22312. name: "Universal",
  22313. height: math.unit(21000, "Ym")
  22314. },
  22315. {
  22316. name: "Omniversal",
  22317. height: math.unit(9.861e50, "Ym")
  22318. },
  22319. {
  22320. name: "Existential",
  22321. height: math.unit(1e300, "meters")
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Mandarax" },
  22327. {
  22328. side: {
  22329. height: math.unit(25, "feet"),
  22330. weight: math.unit(90000, "lb"),
  22331. name: "Side",
  22332. image: {
  22333. source: "./media/characters/mandarax/side.svg",
  22334. extra: 614/332,
  22335. bottom: 55/630
  22336. }
  22337. },
  22338. head: {
  22339. height: math.unit(11.4, "feet"),
  22340. name: "Head",
  22341. image: {
  22342. source: "./media/characters/mandarax/head.svg"
  22343. }
  22344. },
  22345. belly: {
  22346. height: math.unit(33, "feet"),
  22347. name: "Belly",
  22348. image: {
  22349. source: "./media/characters/mandarax/belly.svg"
  22350. }
  22351. },
  22352. dick: {
  22353. height: math.unit(8.46, "feet"),
  22354. name: "Dick",
  22355. image: {
  22356. source: "./media/characters/mandarax/dick.svg"
  22357. }
  22358. },
  22359. top: {
  22360. height: math.unit(28, "meters"),
  22361. name: "Top",
  22362. image: {
  22363. source: "./media/characters/mandarax/top.svg"
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Normal",
  22370. height: math.unit(25, "feet"),
  22371. default: true
  22372. },
  22373. ]
  22374. ))
  22375. //characters
  22376. function makeCharacters() {
  22377. const results = [];
  22378. characterMakers.forEach(character => {
  22379. results.push(character());
  22380. });
  22381. return results;
  22382. }