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

19072 строки
496 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsec", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("parsecs", {
  7. definition: "3.086e16 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("lightyears", {
  11. definition: "9.461e15 meters",
  12. prefixes: "long"
  13. })
  14. math.createUnit("AU", {
  15. definition: "149597870700 meters"
  16. })
  17. math.createUnit("AUs", {
  18. definition: "149597870700 meters"
  19. })
  20. function makeCharacter(name, author, viewInfo, defaultSizes, extraInfo) {
  21. if (extraInfo === undefined) {
  22. extraInfo = {}
  23. }
  24. views = {};
  25. Object.entries(viewInfo).forEach(([key, value]) => {
  26. views[key] = {
  27. attributes: {
  28. height: {
  29. name: "Height",
  30. power: 1,
  31. type: "length",
  32. base: value.height
  33. }
  34. },
  35. image: value.image,
  36. name: value.name,
  37. info: value.info,
  38. rename: value.rename
  39. }
  40. if (value.weight) {
  41. views[key].attributes.weight = {
  42. name: "Mass",
  43. power: 3,
  44. type: "mass",
  45. base: value.weight
  46. };
  47. }
  48. });
  49. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  50. return entity;
  51. }
  52. characterMakers["Fen"] = () => {
  53. return makeCharacter(
  54. "Fen",
  55. "chemicalcrux",
  56. {
  57. back: {
  58. height: math.unit(2.2428, "meter"),
  59. weight: math.unit(124.738, "kg"),
  60. name: "Back",
  61. image: {
  62. source: "./media/characters/fen/back.svg",
  63. extra: 1025/935
  64. },
  65. info: {
  66. description: {
  67. mode: "append",
  68. text: "\n\nHe is not currently looking at you."
  69. }
  70. }
  71. },
  72. full: {
  73. height: math.unit(1.34, "meter"),
  74. weight: math.unit(225, "kg"),
  75. name: "Full",
  76. image: {
  77. source: "./media/characters/fen/full.svg"
  78. },
  79. info: {
  80. description: {
  81. mode: "append",
  82. text: "\n\nMunch."
  83. }
  84. }
  85. },
  86. kneeling: {
  87. height: math.unit(5.4, "feet"),
  88. weight: math.unit(124.738, "kg"),
  89. name: "Kneeling",
  90. image: {
  91. source: "./media/characters/fen/kneeling.svg",
  92. extra: 563/507
  93. }
  94. },
  95. },
  96. [
  97. {
  98. name: "Normal",
  99. height: math.unit(2.2428, "meter")
  100. },
  101. {
  102. name: "Big",
  103. height: math.unit(12, "feet")
  104. },
  105. {
  106. name: "Minimacro",
  107. height: math.unit(30, "meter"),
  108. default: true,
  109. info: {
  110. description: {
  111. mode: "append",
  112. text: "\n\nTOO DAMN BIG"
  113. }
  114. }
  115. },
  116. {
  117. name: "Macro",
  118. height: math.unit(100, "meter"),
  119. info: {
  120. description: {
  121. mode: "append",
  122. text: "\n\nTOO DAMN BIG"
  123. }
  124. }
  125. },
  126. {
  127. name: "Macro+",
  128. height: math.unit(1000, "meter")
  129. },
  130. {
  131. name: "Megamacro",
  132. height: math.unit(10, "miles")
  133. }
  134. ],
  135. {
  136. description: {
  137. title: "Bio",
  138. text: "Very furry. Sheds on everything."
  139. }
  140. }
  141. )
  142. };
  143. characterMakers["Sofia"] = () => {
  144. return makeCharacter(
  145. "Sofia",
  146. "ZakuraTech",
  147. {
  148. front: {
  149. height: math.unit(183, "cm"),
  150. weight: math.unit(80, "kg"),
  151. name: "Front",
  152. image: {
  153. source: "./media/characters/sofia/front.svg",
  154. bottom: 0.01,
  155. extra: 1
  156. }
  157. },
  158. frontAlt: {
  159. height: math.unit(183, "cm"),
  160. weight: math.unit(80, "kg"),
  161. name: "Front (alt)",
  162. image: {
  163. source: "./media/characters/sofia/front-alt.svg"
  164. }
  165. },
  166. back: {
  167. height: math.unit(183, "cm"),
  168. weight: math.unit(80, "kg"),
  169. name: "Back",
  170. image: {
  171. source: "./media/characters/sofia/back.svg"
  172. }
  173. },
  174. },
  175. [
  176. {
  177. name: "Normal",
  178. height: math.unit(1.83, "meter")
  179. },
  180. {
  181. name: "Macro",
  182. height: math.unit(96, "feet"),
  183. default: true
  184. },
  185. {
  186. name: "Megamerger",
  187. height: math.unit(650, "feet")
  188. },
  189. ]
  190. )
  191. };
  192. characterMakers["March"] = () => {
  193. return makeCharacter(
  194. "March",
  195. "March-Dragon",
  196. {
  197. front: {
  198. height: math.unit(7, "feet"),
  199. weight: math.unit(100, "kg"),
  200. name: "Front",
  201. image: {
  202. source: "./media/characters/march/front.svg",
  203. extra: 1,
  204. bottom: 0.015
  205. }
  206. },
  207. foot: {
  208. height: math.unit(0.9, "feet"),
  209. name: "Foot",
  210. image: {
  211. source: "./media/characters/march/foot.svg"
  212. }
  213. },
  214. },
  215. [
  216. {
  217. name: "Normal",
  218. height: math.unit(7.9, "feet")
  219. },
  220. {
  221. name: "Macro",
  222. height: math.unit(220, "meters")
  223. },
  224. {
  225. name: "Megamacro",
  226. height: math.unit(2.98, "km"),
  227. default: true
  228. },
  229. {
  230. name: "Gigamacro",
  231. height: math.unit(15963, "km")
  232. },
  233. {
  234. name: "Teramacro",
  235. height: math.unit(2980000000, "km")
  236. },
  237. {
  238. name: "Examacro",
  239. height: math.unit(250, "parsecs")
  240. },
  241. ]
  242. )
  243. };
  244. characterMakers["Noir"] = () => {
  245. return makeCharacter(
  246. "Noir",
  247. "March-Dragon",
  248. {
  249. front: {
  250. height: math.unit(6, "feet"),
  251. weight: math.unit(60, "kg"),
  252. name: "Front",
  253. image: {
  254. source: "./media/characters/noir/front.svg",
  255. extra: 1,
  256. bottom: 0.032
  257. }
  258. },
  259. },
  260. [
  261. {
  262. name: "Normal",
  263. height: math.unit(6.6, "feet")
  264. },
  265. {
  266. name: "Macro",
  267. height: math.unit(500, "feet")
  268. },
  269. {
  270. name: "Megamacro",
  271. height: math.unit(2.5, "km"),
  272. default: true
  273. },
  274. {
  275. name: "Gigamacro",
  276. height: math.unit(22500, "km")
  277. },
  278. {
  279. name: "Teramacro",
  280. height: math.unit(2500000000, "km")
  281. },
  282. {
  283. name: "Examacro",
  284. height: math.unit(200, "parsecs")
  285. },
  286. ]
  287. )
  288. };
  289. characterMakers["Okuri"] = () => {
  290. return makeCharacter(
  291. "Okuri",
  292. "OrinoMechadragon",
  293. {
  294. front: {
  295. height: math.unit(7, "feet"),
  296. weight: math.unit(100, "kg"),
  297. name: "Front",
  298. image: {
  299. source: "./media/characters/okuri/front.svg",
  300. extra: 1,
  301. bottom: 0.037
  302. }
  303. },
  304. back: {
  305. height: math.unit(7, "feet"),
  306. weight: math.unit(100, "kg"),
  307. name: "Back",
  308. image: {
  309. source: "./media/characters/okuri/back.svg",
  310. extra: 1,
  311. bottom: 0.007
  312. }
  313. },
  314. },
  315. [
  316. {
  317. name: "Megamacro",
  318. height: math.unit(100, "miles"),
  319. default: true
  320. },
  321. ]
  322. )
  323. };
  324. characterMakers["Manny"] = () => {
  325. return makeCharacter(
  326. "Manny",
  327. "Dialuca01",
  328. {
  329. front: {
  330. height: math.unit(7, "feet"),
  331. weight: math.unit(100, "kg"),
  332. name: "Front",
  333. image: {
  334. source: "./media/characters/manny/front.svg",
  335. extra: 1,
  336. bottom: 0.06
  337. }
  338. },
  339. back: {
  340. height: math.unit(7, "feet"),
  341. weight: math.unit(100, "kg"),
  342. name: "Back",
  343. image: {
  344. source: "./media/characters/manny/back.svg",
  345. extra: 1,
  346. bottom: 0.014
  347. }
  348. },
  349. },
  350. [
  351. {
  352. name: "Normal",
  353. height: math.unit(7, "feet"),
  354. },
  355. {
  356. name: "Macro",
  357. height: math.unit(78, "feet"),
  358. default: true
  359. },
  360. {
  361. name: "Macro+",
  362. height: math.unit(300, "meters")
  363. },
  364. {
  365. name: "Macro++",
  366. height: math.unit(2400, "meters")
  367. },
  368. {
  369. name: "Megamacro",
  370. height: math.unit(5167, "meters")
  371. },
  372. {
  373. name: "Gigamacro",
  374. height: math.unit(41769, "miles")
  375. },
  376. ]
  377. )
  378. };
  379. characterMakers["Adake"] = () => {
  380. return makeCharacter(
  381. "Adake",
  382. "Dialuca01",
  383. {
  384. front: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front",
  388. image: {
  389. source: "./media/characters/adake/front-1.svg"
  390. }
  391. },
  392. frontAlt: {
  393. height: math.unit(7, "feet"),
  394. weight: math.unit(100, "kg"),
  395. name: "Front (Alt)",
  396. image: {
  397. source: "./media/characters/adake/front-2.svg",
  398. extra: 1,
  399. bottom: 0.01
  400. }
  401. },
  402. back: {
  403. height: math.unit(7, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Back",
  406. image: {
  407. source: "./media/characters/adake/back.svg",
  408. }
  409. },
  410. kneel: {
  411. height: math.unit(5.385, "feet"),
  412. weight: math.unit(100, "kg"),
  413. name: "Kneeling",
  414. image: {
  415. source: "./media/characters/adake/kneel.svg",
  416. bottom: 0.052
  417. }
  418. },
  419. },
  420. [
  421. {
  422. name: "Normal",
  423. height: math.unit(7, "feet"),
  424. },
  425. {
  426. name: "Macro",
  427. height: math.unit(78, "feet"),
  428. default: true
  429. },
  430. {
  431. name: "Macro+",
  432. height: math.unit(300, "meters")
  433. },
  434. {
  435. name: "Macro++",
  436. height: math.unit(2400, "meters")
  437. },
  438. {
  439. name: "Megamacro",
  440. height: math.unit(5167, "meters")
  441. },
  442. {
  443. name: "Gigamacro",
  444. height: math.unit(41769, "miles")
  445. },
  446. ]
  447. )
  448. };
  449. characterMakers["Elijah"] = () => {
  450. return makeCharacter(
  451. "Elijah",
  452. "Elijah",
  453. {
  454. side: {
  455. height: math.unit(7, "feet"),
  456. weight: math.unit(50, "kg"),
  457. name: "Side",
  458. image: {
  459. source: "./media/characters/elijah/side.svg",
  460. extra: 1,
  461. bottom: 0.065
  462. }
  463. },
  464. foot: {
  465. height: math.unit(2.05, "feet"),
  466. name: "Foot",
  467. image: {
  468. source: "./media/characters/elijah/foot.svg"
  469. }
  470. },
  471. },
  472. [
  473. {
  474. name: "Normal",
  475. height: math.unit(1.65, "meters")
  476. },
  477. {
  478. name: "Macro",
  479. height: math.unit(55, "meters"),
  480. default: true
  481. },
  482. {
  483. name: "Macro+",
  484. height: math.unit(105, "meters")
  485. },
  486. ]
  487. )
  488. };
  489. characterMakers["Rai"] = () => {
  490. return makeCharacter(
  491. "Rai",
  492. "shadowblade945",
  493. {
  494. front: {
  495. height: math.unit(11, "feet"),
  496. weight: math.unit(80, "kg"),
  497. name: "Front",
  498. image: {
  499. source: "./media/characters/rai/front.svg",
  500. extra: 1,
  501. bottom: 0.03
  502. }
  503. },
  504. side: {
  505. height: math.unit(11, "feet"),
  506. weight: math.unit(80, "kg"),
  507. name: "Side",
  508. image: {
  509. source: "./media/characters/rai/side.svg"
  510. }
  511. },
  512. back: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "lb"),
  515. name: "Back",
  516. image: {
  517. source: "./media/characters/rai/back.svg",
  518. extra: 1,
  519. bottom: 0.01
  520. }
  521. },
  522. feral: {
  523. height: math.unit(11, "feet"),
  524. weight: math.unit(800, "lb"),
  525. name: "Feral",
  526. image: {
  527. source: "./media/characters/rai/feral.svg",
  528. extra: 1050/659 ,
  529. bottom: 0.07
  530. }
  531. },
  532. maw: {
  533. height: math.unit(6/3.81416, "feet"),
  534. name: "Maw",
  535. image: {
  536. source: "./media/characters/rai/maw.svg"
  537. }
  538. },
  539. },
  540. [
  541. {
  542. name: "Normal",
  543. height: math.unit(11, "feet")
  544. },
  545. {
  546. name: "Macro",
  547. height: math.unit(302, "feet"),
  548. default: true
  549. },
  550. ]
  551. )
  552. };
  553. characterMakers["Jazzy"] = () => {
  554. return makeCharacter(
  555. "Jazzy",
  556. "JazzyWolf",
  557. {
  558. front: {
  559. height: math.unit(7, "feet"),
  560. weight: math.unit(80, "kg"),
  561. name: "Front",
  562. image: {
  563. source: "./media/characters/jazzy/front.svg",
  564. extra: 1,
  565. bottom: 0.01
  566. }
  567. },
  568. back: {
  569. height: math.unit(7, "feet"),
  570. weight: math.unit(80, "kg"),
  571. name: "Back",
  572. image: {
  573. source: "./media/characters/jazzy/back.svg",
  574. extra: 1,
  575. bottom: 0.01
  576. }
  577. },
  578. },
  579. [
  580. {
  581. name: "Macro",
  582. height: math.unit(216, "feet"),
  583. default: true
  584. },
  585. ]
  586. )
  587. };
  588. characterMakers["Flamm"] = () => {
  589. return makeCharacter(
  590. "Flamm",
  591. "Flamm",
  592. {
  593. front: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Front",
  597. image: {
  598. source: "./media/characters/flamm/front.svg",
  599. extra: 1,
  600. bottom: 0.02
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Normal",
  607. height: math.unit(9.5, "feet")
  608. },
  609. {
  610. name: "Macro",
  611. height: math.unit(200, "feet"),
  612. default: true
  613. },
  614. ]
  615. )
  616. };
  617. characterMakers["Zephiro"] = () => {
  618. return makeCharacter(
  619. "Zephiro",
  620. "Zephiro",
  621. {
  622. front: {
  623. height: math.unit(7, "feet"),
  624. weight: math.unit(80, "kg"),
  625. name: "Front",
  626. image: {
  627. source: "./media/characters/zephiro/front.svg",
  628. extra: 2309/2162 ,
  629. bottom: 0.069
  630. }
  631. },
  632. side: {
  633. height: math.unit(7, "feet"),
  634. weight: math.unit(80, "kg"),
  635. name: "Side",
  636. image: {
  637. source: "./media/characters/zephiro/side.svg",
  638. extra: 2403/2279 ,
  639. bottom: 0.015
  640. }
  641. },
  642. back: {
  643. height: math.unit(7, "feet"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/zephiro/back.svg",
  648. extra: 2373/2244 ,
  649. bottom: 0.013
  650. }
  651. },
  652. },
  653. [
  654. {
  655. name: "Micro",
  656. height: math.unit(3, "inches")
  657. },
  658. {
  659. name: "Normal",
  660. height: math.unit(5 + 3/12, "feet"),
  661. default: true
  662. },
  663. {
  664. name: "Macro",
  665. height: math.unit(118, "feet")
  666. },
  667. ]
  668. )
  669. };
  670. characterMakers["Fory"] = () => {
  671. return makeCharacter(
  672. "Fory",
  673. "Manny",
  674. {
  675. front: {
  676. height: math.unit(7, "feet"),
  677. weight: math.unit(90, "kg"),
  678. name: "Front",
  679. image: {
  680. source: "./media/characters/fory/front.svg",
  681. extra: 1,
  682. bottom: 0.03
  683. }
  684. },
  685. },
  686. [
  687. {
  688. name: "Normal",
  689. height: math.unit(5, "feet")
  690. },
  691. {
  692. name: "Macro",
  693. height: math.unit(50, "feet"),
  694. default: true
  695. },
  696. ]
  697. )
  698. };
  699. characterMakers["Kurrikage"] = () => {
  700. return makeCharacter(
  701. "Kurrikage",
  702. "Kurrikage",
  703. {
  704. front: {
  705. height: math.unit(7, "feet"),
  706. weight: math.unit(90, "kg"),
  707. name: "Front",
  708. image: {
  709. source: "./media/characters/kurrikage/front.svg",
  710. extra: 1,
  711. bottom: 0.035
  712. }
  713. },
  714. back: {
  715. height: math.unit(7, "feet"),
  716. weight: math.unit(90, "lb"),
  717. name: "Back",
  718. image: {
  719. source: "./media/characters/kurrikage/back.svg"
  720. }
  721. },
  722. paw: {
  723. height: math.unit(1.5, "feet"),
  724. name: "Paw",
  725. image: {
  726. source: "./media/characters/kurrikage/paw.svg"
  727. }
  728. },
  729. staff: {
  730. height: math.unit(6.7, "feet"),
  731. name: "Staff",
  732. image: {
  733. source: "./media/characters/kurrikage/staff.svg"
  734. }
  735. },
  736. peek: {
  737. height: math.unit(1.05, "feet"),
  738. name: "Peeking",
  739. image: {
  740. source: "./media/characters/kurrikage/peek.svg",
  741. bottom: 0.08
  742. }
  743. },
  744. },
  745. [
  746. {
  747. name: "Normal",
  748. height: math.unit(12, "feet"),
  749. default: true
  750. },
  751. {
  752. name: "Big",
  753. height: math.unit(20, "feet")
  754. },
  755. {
  756. name: "Macro",
  757. height: math.unit(500, "feet")
  758. },
  759. {
  760. name: "Megamacro",
  761. height: math.unit(20, "miles")
  762. },
  763. ]
  764. )
  765. };
  766. characterMakers["Shingo"] = () => {
  767. return makeCharacter(
  768. "Shingo",
  769. "Shingo",
  770. {
  771. front: {
  772. height: math.unit(6, "feet"),
  773. weight: math.unit(75, "kg"),
  774. name: "Front",
  775. image: {
  776. source: "./media/characters/shingo/front.svg",
  777. extra: 3511/3338 ,
  778. bottom: 0.005
  779. }
  780. },
  781. },
  782. [
  783. {
  784. name: "Micro",
  785. height: math.unit(4, "inches")
  786. },
  787. {
  788. name: "Normal",
  789. height: math.unit(6, "feet"),
  790. default: true
  791. },
  792. {
  793. name: "Macro",
  794. height: math.unit(108, "feet")
  795. }
  796. ]
  797. )
  798. };
  799. function makeAigey() {
  800. const views = {
  801. side: {
  802. attributes: {
  803. height: {
  804. name: "Height",
  805. power: 1,
  806. type: "length",
  807. base: math.unit(6, "feet")
  808. },
  809. weight: {
  810. name: "Weight",
  811. power: 3,
  812. type: "mass",
  813. base: math.unit(75, "kg")
  814. }
  815. },
  816. image: {
  817. source: "./media/characters/aigey/side.svg"
  818. },
  819. name: "Side"
  820. }
  821. };
  822. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  823. entity.sizes.push({
  824. name: "Macro",
  825. height: math.unit(200, "feet")
  826. });
  827. entity.sizes.push({
  828. name: "Megamacro",
  829. height: math.unit(100, "miles")
  830. });
  831. entity.views[entity.defaultView].height = math.unit(200, "feet");
  832. return entity;
  833. }
  834. characterMakers["Natasha"] = () => {
  835. return makeCharacter(
  836. "Natasha",
  837. "MammaAWD",
  838. {
  839. front: {
  840. height: math.unit(5 + 5/12, "feet"),
  841. weight: math.unit(75, "kg"),
  842. name: "Front",
  843. image: {
  844. source: "./media/characters/natasha/front.svg",
  845. extra: 875/846,
  846. bottom: 0.01
  847. }
  848. },
  849. },
  850. [
  851. {
  852. name: "Normal",
  853. height: math.unit(5 + 5/12, "feet")
  854. },
  855. {
  856. name: "Large",
  857. height: math.unit(12, "feet")
  858. },
  859. {
  860. name: "Macro",
  861. height: math.unit(100, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro+",
  866. height: math.unit(260, "feet")
  867. },
  868. {
  869. name: "Macro++",
  870. height: math.unit(1, "mile")
  871. },
  872. ]
  873. )
  874. };
  875. function makeMalik() {
  876. const views = {
  877. front: {
  878. attributes: {
  879. height: {
  880. name: "Height",
  881. power: 1,
  882. type: "length",
  883. base: math.unit(6, "feet")
  884. },
  885. weight: {
  886. name: "Weight",
  887. power: 3,
  888. type: "mass",
  889. base: math.unit(75, "kg")
  890. }
  891. },
  892. image: {
  893. source: "./media/characters/malik/front.svg"
  894. },
  895. name: "Front"
  896. },
  897. side: {
  898. attributes: {
  899. height: {
  900. name: "Height",
  901. power: 1,
  902. type: "length",
  903. base: math.unit(6, "feet")
  904. },
  905. weight: {
  906. name: "Weight",
  907. power: 3,
  908. type: "mass",
  909. base: math.unit(75, "kg")
  910. }
  911. },
  912. image: {
  913. extra: 1.1539,
  914. source: "./media/characters/malik/side.svg"
  915. },
  916. name: "Side"
  917. },
  918. back: {
  919. attributes: {
  920. height: {
  921. name: "Height",
  922. power: 1,
  923. type: "length",
  924. base: math.unit(6, "feet")
  925. },
  926. weight: {
  927. name: "Weight",
  928. power: 3,
  929. type: "mass",
  930. base: math.unit(75, "kg")
  931. }
  932. },
  933. image: {
  934. source: "./media/characters/malik/back.svg"
  935. },
  936. name: "Back"
  937. },
  938. };
  939. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  940. entity.sizes.push({
  941. name: "Macro",
  942. height: math.unit(156, "feet")
  943. });
  944. entity.sizes.push({
  945. name: "Macro+",
  946. height: math.unit(1188, "feet")
  947. });
  948. entity.views[entity.defaultView].height = math.unit(156, "feet");
  949. return entity;
  950. }
  951. function makeSefer() {
  952. const views = {
  953. front: {
  954. attributes: {
  955. height: {
  956. name: "Height",
  957. power: 1,
  958. type: "length",
  959. base: math.unit(6, "feet")
  960. },
  961. weight: {
  962. name: "Weight",
  963. power: 3,
  964. type: "mass",
  965. base: math.unit(75, "kg")
  966. }
  967. },
  968. image: {
  969. source: "./media/characters/sefer/front.svg"
  970. },
  971. name: "Front"
  972. },
  973. back: {
  974. attributes: {
  975. height: {
  976. name: "Height",
  977. power: 1,
  978. type: "length",
  979. base: math.unit(6, "feet")
  980. },
  981. weight: {
  982. name: "Weight",
  983. power: 3,
  984. type: "mass",
  985. base: math.unit(75, "kg")
  986. }
  987. },
  988. image: {
  989. source: "./media/characters/sefer/back.svg"
  990. },
  991. name: "Back"
  992. },
  993. };
  994. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  995. entity.views[entity.defaultView].height = math.unit(6, "feet");
  996. return entity;
  997. }
  998. characterMakers["North"] = () => {
  999. return makeCharacter(
  1000. "North",
  1001. "chemicalcrux",
  1002. {
  1003. body: {
  1004. height: math.unit(2.2428, "meter"),
  1005. weight: math.unit(124.738, "kg"),
  1006. name: "Body",
  1007. image: {
  1008. extra: 1225 / 1050,
  1009. source: "./media/characters/north/front.svg"
  1010. }
  1011. }
  1012. },
  1013. [
  1014. {
  1015. name: "Micro",
  1016. height: math.unit(4, "inches")
  1017. },
  1018. {
  1019. name: "Macro",
  1020. height: math.unit(63, "meters")
  1021. },
  1022. {
  1023. name: "Megamacro",
  1024. height: math.unit(101, "miles"),
  1025. default: true
  1026. }
  1027. ]
  1028. )
  1029. };
  1030. characterMakers["Talan"] = () => {
  1031. return makeCharacter(
  1032. "Talan",
  1033. "talanstrider",
  1034. {
  1035. body: {
  1036. height: math.unit(2, "meter"),
  1037. weight: math.unit(70, "kg"),
  1038. name: "Body",
  1039. image: {
  1040. bottom: 0.02,
  1041. source: "./media/characters/talan/front.svg"
  1042. }
  1043. }
  1044. },
  1045. [
  1046. {
  1047. name: "Normal",
  1048. height: math.unit(4, "meters")
  1049. },
  1050. {
  1051. name: "Macro",
  1052. height: math.unit(100, "meters")
  1053. },
  1054. {
  1055. name: "Megamacro",
  1056. height: math.unit(2, "miles"),
  1057. default: true
  1058. },
  1059. {
  1060. name: "Gigamacro",
  1061. height: math.unit(5000, "miles")
  1062. },
  1063. {
  1064. name: "Teramacro",
  1065. height: math.unit(100, "parsecs")
  1066. }
  1067. ]
  1068. )
  1069. };
  1070. characterMakers["Gael'Rathus"] = () => {
  1071. return makeCharacter(
  1072. "Gael'Rathus",
  1073. "Kurrikage",
  1074. {
  1075. front: {
  1076. height: math.unit(2, "meter"),
  1077. weight: math.unit(90, "kg"),
  1078. name: "Front",
  1079. image: {
  1080. source: "./media/characters/gael'rathus/front.svg"
  1081. }
  1082. },
  1083. frontAlt: {
  1084. height: math.unit(2, "meter"),
  1085. weight: math.unit(90, "kg"),
  1086. name: "Front (alt)",
  1087. image: {
  1088. source: "./media/characters/gael'rathus/front-alt.svg"
  1089. }
  1090. },
  1091. frontAlt2: {
  1092. height: math.unit(2, "meter"),
  1093. weight: math.unit(90, "kg"),
  1094. name: "Front (alt 2)",
  1095. image: {
  1096. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1097. }
  1098. }
  1099. },
  1100. [
  1101. {
  1102. name: "Normal",
  1103. height: math.unit(9, "feet"),
  1104. default: true
  1105. },
  1106. {
  1107. name: "Large",
  1108. height: math.unit(25, "feet")
  1109. },
  1110. {
  1111. name: "Macro",
  1112. height: math.unit(0.25, "miles")
  1113. },
  1114. {
  1115. name: "Megamacro",
  1116. height: math.unit(10, "miles")
  1117. }
  1118. ]
  1119. )
  1120. };
  1121. characterMakers["Sosha"] = () => {
  1122. return makeCharacter(
  1123. "Sosha",
  1124. "Sdocat",
  1125. {
  1126. side: {
  1127. height: math.unit(2, "meter"),
  1128. weight: math.unit(140, "kg"),
  1129. name: "Side",
  1130. image: {
  1131. source: "./media/characters/sosha/side.svg",
  1132. bottom: 0.042
  1133. }
  1134. },
  1135. },
  1136. [
  1137. {
  1138. name: "Normal",
  1139. height: math.unit(12, "feet"),
  1140. default: true
  1141. }
  1142. ]
  1143. )
  1144. };
  1145. characterMakers["RuNNoLa"] = () => {
  1146. return makeCharacter(
  1147. "RuNNoLa",
  1148. "RuNNoLa",
  1149. {
  1150. side: {
  1151. height: math.unit(5 + 5/12, "feet"),
  1152. weight: math.unit(170, "kg"),
  1153. name: "Side",
  1154. image: {
  1155. source: "./media/characters/runnola/side.svg",
  1156. extra: 741/448,
  1157. bottom: 0.05
  1158. }
  1159. },
  1160. },
  1161. [
  1162. {
  1163. name: "Small",
  1164. height: math.unit(3, "feet")
  1165. },
  1166. {
  1167. name: "Normal",
  1168. height: math.unit(5 + 5/12, "feet"),
  1169. default: true
  1170. },
  1171. {
  1172. name: "Big",
  1173. height: math.unit(10, "feet")
  1174. },
  1175. ]
  1176. )
  1177. };
  1178. characterMakers["Kurribird"] = () => {
  1179. return makeCharacter(
  1180. "Kurribird",
  1181. "Kurrikage",
  1182. {
  1183. front: {
  1184. height: math.unit(2, "meter"),
  1185. weight: math.unit(50, "kg"),
  1186. name: "Front",
  1187. image: {
  1188. source: "./media/characters/kurribird/front.svg",
  1189. bottom: 0.015
  1190. }
  1191. },
  1192. frontAlt: {
  1193. height: math.unit(1.5, "meter"),
  1194. weight: math.unit(50, "kg"),
  1195. name: "Front (Alt)",
  1196. image: {
  1197. source: "./media/characters/kurribird/front-alt.svg",
  1198. extra: 1.45
  1199. }
  1200. },
  1201. },
  1202. [
  1203. {
  1204. name: "Normal",
  1205. height: math.unit(7, "feet")
  1206. },
  1207. {
  1208. name: "Big",
  1209. height: math.unit(12, "feet"),
  1210. default: true
  1211. },
  1212. {
  1213. name: "Macro",
  1214. height: math.unit(1500, "feet")
  1215. },
  1216. {
  1217. name: "Megamacro",
  1218. height: math.unit(2, "miles")
  1219. }
  1220. ]
  1221. )
  1222. };
  1223. characterMakers["Elbial"] = () => {
  1224. return makeCharacter(
  1225. "Elbial",
  1226. "Neopuc",
  1227. {
  1228. front: {
  1229. height: math.unit(2, "meter"),
  1230. weight: math.unit(80, "kg"),
  1231. name: "Front",
  1232. image: {
  1233. source: "./media/characters/elbial/front.svg"
  1234. }
  1235. },
  1236. side: {
  1237. height: math.unit(2, "meter"),
  1238. weight: math.unit(80, "kg"),
  1239. name: "Side",
  1240. image: {
  1241. source: "./media/characters/elbial/side.svg"
  1242. }
  1243. },
  1244. back: {
  1245. height: math.unit(2, "meter"),
  1246. weight: math.unit(80, "kg"),
  1247. name: "Back",
  1248. image: {
  1249. source: "./media/characters/elbial/back.svg"
  1250. }
  1251. },
  1252. },
  1253. [
  1254. {
  1255. name: "Large",
  1256. height: math.unit(100, "feet")
  1257. },
  1258. {
  1259. name: "Macro",
  1260. height: math.unit(500, "feet"),
  1261. default: true
  1262. },
  1263. {
  1264. name: "Megamacro",
  1265. height: math.unit(10, "miles")
  1266. },
  1267. {
  1268. name: "Gigamacro",
  1269. height: math.unit(25000, "miles")
  1270. },
  1271. {
  1272. name: "Full-Size",
  1273. height: math.unit(8000000, "gigaparsecs")
  1274. }
  1275. ]
  1276. )
  1277. };
  1278. characterMakers["Noah"] = () => {
  1279. return makeCharacter(
  1280. "Noah",
  1281. "Neopuc",
  1282. {
  1283. front: {
  1284. height: math.unit(2, "meter"),
  1285. weight: math.unit(60, "kg"),
  1286. name: "Front",
  1287. image: {
  1288. source: "./media/characters/noah/front.svg"
  1289. }
  1290. },
  1291. talons: {
  1292. height: math.unit(0.315, "meter"),
  1293. name: "Talons",
  1294. image: {
  1295. source: "./media/characters/noah/talons.svg"
  1296. }
  1297. }
  1298. },
  1299. [
  1300. {
  1301. name: "Large",
  1302. height: math.unit(50, "feet")
  1303. },
  1304. {
  1305. name: "Macro",
  1306. height: math.unit(750, "feet"),
  1307. default: true
  1308. },
  1309. {
  1310. name: "Megamacro",
  1311. height: math.unit(50, "miles")
  1312. },
  1313. {
  1314. name: "Gigamacro",
  1315. height: math.unit(100000, "miles")
  1316. },
  1317. {
  1318. name: "Full-Size",
  1319. height: math.unit(3000000000, "miles")
  1320. }
  1321. ]
  1322. )
  1323. };
  1324. characterMakers["Natalya"] = () => {
  1325. return makeCharacter(
  1326. "Natalya",
  1327. "Neopuc",
  1328. {
  1329. front: {
  1330. height: math.unit(2, "meter"),
  1331. weight: math.unit(80, "kg"),
  1332. name: "Front",
  1333. image: {
  1334. source: "./media/characters/natalya/front.svg"
  1335. }
  1336. },
  1337. back: {
  1338. height: math.unit(2, "meter"),
  1339. weight: math.unit(80, "kg"),
  1340. name: "Back",
  1341. image: {
  1342. source: "./media/characters/natalya/back.svg"
  1343. }
  1344. }
  1345. },
  1346. [
  1347. {
  1348. name: "Normal",
  1349. height: math.unit(150, "feet"),
  1350. default: true
  1351. },
  1352. {
  1353. name: "Megamacro",
  1354. height: math.unit(5, "miles")
  1355. },
  1356. {
  1357. name: "Full-Size",
  1358. height: math.unit(600, "kiloparsecs")
  1359. }
  1360. ]
  1361. )
  1362. };
  1363. characterMakers["Erestrebah"] = () => {
  1364. return makeCharacter(
  1365. "Erestrebah",
  1366. "Kurrikage",
  1367. {
  1368. front: {
  1369. height: math.unit(2, "meter"),
  1370. weight: math.unit(50, "kg"),
  1371. name: "Front",
  1372. image: {
  1373. source: "./media/characters/erestrebah/front.svg",
  1374. extra: 208/193,
  1375. bottom: 0.055
  1376. }
  1377. },
  1378. back: {
  1379. height: math.unit(2, "meter"),
  1380. weight: math.unit(50, "kg"),
  1381. name: "Back",
  1382. image: {
  1383. source: "./media/characters/erestrebah/back.svg",
  1384. extra: 1.3
  1385. }
  1386. }
  1387. },
  1388. [
  1389. {
  1390. name: "Normal",
  1391. height: math.unit(10, "feet")
  1392. },
  1393. {
  1394. name: "Large",
  1395. height: math.unit(50, "feet"),
  1396. default: true
  1397. },
  1398. {
  1399. name: "Macro",
  1400. height: math.unit(300, "feet")
  1401. },
  1402. {
  1403. name: "Macro+",
  1404. height: math.unit(750, "feet")
  1405. },
  1406. {
  1407. name: "Megamacro",
  1408. height: math.unit(3, "miles")
  1409. }
  1410. ]
  1411. )
  1412. };
  1413. characterMakers["Jennifer"] = () => {
  1414. return makeCharacter(
  1415. "Jennifer",
  1416. "Neopuc",
  1417. {
  1418. front: {
  1419. height: math.unit(2, "meter"),
  1420. weight: math.unit(80, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/jennifer/front.svg",
  1424. bottom: 0.11,
  1425. extra: 1.16
  1426. }
  1427. },
  1428. frontAlt: {
  1429. height: math.unit(2, "meter"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Front (Alt)",
  1432. image: {
  1433. source: "./media/characters/jennifer/front-alt.svg"
  1434. }
  1435. }
  1436. },
  1437. [
  1438. {
  1439. name: "Canon Height",
  1440. height: math.unit(120, "feet"),
  1441. default: true
  1442. },
  1443. {
  1444. name: "Macro+",
  1445. height: math.unit(300, "feet")
  1446. },
  1447. {
  1448. name: "Megamacro",
  1449. height: math.unit(20000, "feet")
  1450. }
  1451. ]
  1452. )
  1453. };
  1454. characterMakers["Kalista"] = () => {
  1455. return makeCharacter(
  1456. "Kalista",
  1457. "Kalista",
  1458. {
  1459. front: {
  1460. height: math.unit(2, "meter"),
  1461. weight: math.unit(50, "kg"),
  1462. name: "Front",
  1463. image: {
  1464. source: "./media/characters/kalista/front.svg",
  1465. extra: 1947/1700
  1466. }
  1467. },
  1468. back: {
  1469. height: math.unit(2, "meter"),
  1470. weight: math.unit(50, "kg"),
  1471. name: "Back",
  1472. image: {
  1473. source: "./media/characters/kalista/back.svg",
  1474. extra: 1366/1156
  1475. }
  1476. }
  1477. },
  1478. [
  1479. {
  1480. name: "Uncomfortably Small",
  1481. height: math.unit(10, "feet")
  1482. },
  1483. {
  1484. name: "Small",
  1485. height: math.unit(30, "feet")
  1486. },
  1487. {
  1488. name: "Macro",
  1489. height: math.unit(100, "feet"),
  1490. default: true
  1491. },
  1492. {
  1493. name: "Macro+",
  1494. height: math.unit(2000, "feet")
  1495. },
  1496. {
  1497. name: "True Form",
  1498. height: math.unit(8924, "miles")
  1499. }
  1500. ]
  1501. )
  1502. };
  1503. characterMakers["GiantGrowingVixen"] = () => {
  1504. return makeCharacter(
  1505. "GiantGrowingVixen",
  1506. "GiantGrowingVixen",
  1507. {
  1508. front: {
  1509. height: math.unit(2, "meter"),
  1510. weight: math.unit(120, "kg"),
  1511. name: "Front",
  1512. image: {
  1513. source: "./media/characters/ggv/front.svg"
  1514. }
  1515. },
  1516. side: {
  1517. height: math.unit(2, "meter"),
  1518. weight: math.unit(120, "kg"),
  1519. name: "Side",
  1520. image: {
  1521. source: "./media/characters/ggv/side.svg"
  1522. }
  1523. }
  1524. },
  1525. [
  1526. {
  1527. name: "Extremely Puny",
  1528. height: math.unit(9 + 5 / 12, "feet")
  1529. },
  1530. {
  1531. name: "Horribly Small",
  1532. height: math.unit(47.7, "miles"),
  1533. default: true
  1534. },
  1535. {
  1536. name: "Reasonably Sized",
  1537. height: math.unit(25000, "parsecs")
  1538. },
  1539. {
  1540. name: "Slightly Uncompressed",
  1541. height: math.unit(7.77e31, "parsecs")
  1542. },
  1543. {
  1544. name: "Omniversal",
  1545. height: math.unit(1e300, "meters")
  1546. },
  1547. ]
  1548. )
  1549. };
  1550. characterMakers["Napalm"] = () => {
  1551. return makeCharacter(
  1552. "Napalm",
  1553. "RathDaKrogan",
  1554. {
  1555. front: {
  1556. height: math.unit(2, "meter"),
  1557. weight: math.unit(75, "lb"),
  1558. name: "Front",
  1559. image: {
  1560. source: "./media/characters/napalm/front.svg"
  1561. }
  1562. },
  1563. back: {
  1564. height: math.unit(2, "meter"),
  1565. weight: math.unit(75, "lb"),
  1566. name: "Back",
  1567. image: {
  1568. source: "./media/characters/napalm/back.svg"
  1569. }
  1570. }
  1571. },
  1572. [
  1573. {
  1574. name: "Standard",
  1575. height: math.unit(55, "feet"),
  1576. default: true
  1577. }
  1578. ]
  1579. )
  1580. };
  1581. characterMakers["Asana"] = () => {
  1582. return makeCharacter(
  1583. "Asana",
  1584. "Asana",
  1585. {
  1586. front: {
  1587. height: math.unit(7 + 5 / 6, "feet"),
  1588. weight: math.unit(325, "lb"),
  1589. name: "Front",
  1590. image: {
  1591. source: "./media/characters/asana/front.svg",
  1592. extra: 1128 / 1068
  1593. }
  1594. },
  1595. back: {
  1596. height: math.unit(7 + 5 / 6, "feet"),
  1597. weight: math.unit(325, "lb"),
  1598. name: "Back",
  1599. image: {
  1600. source: "./media/characters/asana/back.svg",
  1601. extra: 1128 / 1068
  1602. }
  1603. },
  1604. },
  1605. [
  1606. {
  1607. name: "Standard",
  1608. height: math.unit(7 + 5 / 6, "feet"),
  1609. default: true
  1610. },
  1611. {
  1612. name: "Large",
  1613. height: math.unit(10, "meters")
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(2500, "meters")
  1618. },
  1619. {
  1620. name: "Megamacro",
  1621. height: math.unit(5e6, "meters")
  1622. },
  1623. {
  1624. name: "Examacro",
  1625. height: math.unit(5e12, "lightyears")
  1626. },
  1627. {
  1628. name: "Max Size",
  1629. height: math.unit(1e31, "lightyears")
  1630. }
  1631. ]
  1632. )
  1633. };
  1634. characterMakers["Ebony"] = () => {
  1635. return makeCharacter(
  1636. "Ebony",
  1637. "Lazerwolf",
  1638. {
  1639. front: {
  1640. height: math.unit(2, "meter"),
  1641. weight: math.unit(60, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/ebony/front.svg",
  1645. bottom: 0.03,
  1646. extra: 1045 / 810 + 0.03
  1647. }
  1648. },
  1649. side: {
  1650. height: math.unit(2, "meter"),
  1651. weight: math.unit(60, "kg"),
  1652. name: "Side",
  1653. image: {
  1654. source: "./media/characters/ebony/side.svg",
  1655. bottom: 0.03,
  1656. extra: 1045 / 810 + 0.03
  1657. }
  1658. },
  1659. back: {
  1660. height: math.unit(2, "meter"),
  1661. weight: math.unit(60, "kg"),
  1662. name: "Back",
  1663. image: {
  1664. source: "./media/characters/ebony/back.svg",
  1665. bottom: 0.01,
  1666. extra: 1045 / 810 + 0.01
  1667. }
  1668. },
  1669. },
  1670. [
  1671. // TODO check why I did this lol
  1672. {
  1673. name: "Standard",
  1674. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1675. default: true
  1676. },
  1677. {
  1678. name: "Macro",
  1679. height: math.unit(200, "feet")
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(13000, "km")
  1684. }
  1685. ]
  1686. )
  1687. };
  1688. characterMakers["Mountain"] = () => {
  1689. return makeCharacter(
  1690. "Mountain",
  1691. "Asana",
  1692. {
  1693. front: {
  1694. height: math.unit(6, "feet"),
  1695. weight: math.unit(175, "lb"),
  1696. name: "Front",
  1697. image: {
  1698. source: "./media/characters/mountain/front.svg"
  1699. }
  1700. },
  1701. back: {
  1702. height: math.unit(6, "feet"),
  1703. weight: math.unit(175, "lb"),
  1704. name: "Back",
  1705. image: {
  1706. source: "./media/characters/mountain/back.svg"
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Large",
  1713. height: math.unit(20, "meters")
  1714. },
  1715. {
  1716. name: "Macro",
  1717. height: math.unit(300, "meters")
  1718. },
  1719. {
  1720. name: "Gigamacro",
  1721. height: math.unit(10000, "km"),
  1722. default: true
  1723. },
  1724. {
  1725. name: "Examacro",
  1726. height: math.unit(10e9, "lightyears")
  1727. }
  1728. ]
  1729. )
  1730. };
  1731. characterMakers["Rick"] = () => {
  1732. return makeCharacter(
  1733. "Rick",
  1734. "Victni",
  1735. {
  1736. front: {
  1737. height: math.unit(8, "feet"),
  1738. weight: math.unit(500, "lb"),
  1739. name: "Front",
  1740. image: {
  1741. source: "./media/characters/rick/front.svg"
  1742. }
  1743. }
  1744. },
  1745. [
  1746. {
  1747. name: "Normal",
  1748. height: math.unit(8, "feet"),
  1749. default: true
  1750. },
  1751. {
  1752. name: "Macro",
  1753. height: math.unit(5, "km")
  1754. }
  1755. ]
  1756. )
  1757. };
  1758. characterMakers["Ona"] = () => {
  1759. return makeCharacter(
  1760. "Ona",
  1761. "Arrogance127",
  1762. {
  1763. front: {
  1764. height: math.unit(8, "feet"),
  1765. weight: math.unit(120, "lb"),
  1766. name: "Front",
  1767. image: {
  1768. source: "./media/characters/ona/front.svg"
  1769. }
  1770. },
  1771. frontAlt: {
  1772. height: math.unit(8, "feet"),
  1773. weight: math.unit(120, "lb"),
  1774. name: "Front (Alt)",
  1775. image: {
  1776. source: "./media/characters/ona/front-alt.svg"
  1777. }
  1778. },
  1779. back: {
  1780. height: math.unit(8, "feet"),
  1781. weight: math.unit(120, "lb"),
  1782. name: "Back",
  1783. image: {
  1784. source: "./media/characters/ona/back.svg"
  1785. }
  1786. },
  1787. foot: {
  1788. height: math.unit(1.1, "feet"),
  1789. name: "Foot",
  1790. image: {
  1791. source: "./media/characters/ona/foot.svg"
  1792. }
  1793. }
  1794. },
  1795. [
  1796. {
  1797. name: "Megamacro",
  1798. height: math.unit(70, "km"),
  1799. default: true
  1800. },
  1801. {
  1802. name: "Gigamacro",
  1803. height: math.unit(681818, "miles")
  1804. },
  1805. {
  1806. name: "Examacro",
  1807. height: math.unit(3800000, "lightyears")
  1808. },
  1809. ]
  1810. )
  1811. };
  1812. characterMakers["Mech"] = () => {
  1813. return makeCharacter(
  1814. "Mech",
  1815. "mechEdragon",
  1816. {
  1817. front: {
  1818. height: math.unit(12, "feet"),
  1819. weight: math.unit(3000, "lb"),
  1820. name: "Front",
  1821. image: {
  1822. source: "./media/characters/mech/front.svg",
  1823. bottom: 0.025,
  1824. }
  1825. },
  1826. back: {
  1827. height: math.unit(12, "feet"),
  1828. weight: math.unit(3000, "lb"),
  1829. name: "Back",
  1830. image: {
  1831. source: "./media/characters/mech/back.svg",
  1832. bottom: 0.03,
  1833. }
  1834. }
  1835. },
  1836. [
  1837. {
  1838. name: "Normal",
  1839. height: math.unit(12, "feet")
  1840. },
  1841. {
  1842. name: "Macro",
  1843. height: math.unit(300, "feet"),
  1844. default: true
  1845. },
  1846. {
  1847. name: "Macro+",
  1848. height: math.unit(1500, "feet")
  1849. },
  1850. ]
  1851. )
  1852. };
  1853. characterMakers["Gregory"] = () => {
  1854. return makeCharacter(
  1855. "Gregory",
  1856. "GregoryKlippenspringer",
  1857. {
  1858. front: {
  1859. height: math.unit(1.3, "meter"),
  1860. weight: math.unit(30, "kg"),
  1861. name: "Front",
  1862. image: {
  1863. source: "./media/characters/gregory/front.svg",
  1864. }
  1865. }
  1866. },
  1867. [
  1868. {
  1869. name: "Normal",
  1870. height: math.unit(1.3, "meter"),
  1871. default: true
  1872. },
  1873. {
  1874. name: "Macro",
  1875. height: math.unit(20, "meter")
  1876. }
  1877. ]
  1878. )
  1879. };
  1880. characterMakers["Elory"] = () => {
  1881. return makeCharacter(
  1882. "Elory",
  1883. "GregoryKlippenspringer",
  1884. {
  1885. front: {
  1886. height: math.unit(2.8, "meter"),
  1887. weight: math.unit(200, "kg"),
  1888. name: "Front",
  1889. image: {
  1890. source: "./media/characters/elory/front.svg",
  1891. }
  1892. }
  1893. },
  1894. [
  1895. {
  1896. name: "Normal",
  1897. height: math.unit(2.8, "meter"),
  1898. default: true
  1899. },
  1900. {
  1901. name: "Macro",
  1902. height: math.unit(38, "meter")
  1903. }
  1904. ]
  1905. )
  1906. };
  1907. characterMakers["Angelpatamon"] = () => {
  1908. return makeCharacter(
  1909. "Angelpatamon",
  1910. "GregoryKlippenspringer",
  1911. {
  1912. front: {
  1913. height: math.unit(470, "feet"),
  1914. weight: math.unit(924, "tons"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/angelpatamon/front.svg",
  1918. }
  1919. }
  1920. },
  1921. [
  1922. {
  1923. name: "Normal",
  1924. height: math.unit(470, "feet"),
  1925. default: true
  1926. },
  1927. {
  1928. name: "Deity Size I",
  1929. height: math.unit(28651.2, "km")
  1930. },
  1931. {
  1932. name: "Deity Size II",
  1933. height: math.unit(171907.2, "km")
  1934. }
  1935. ]
  1936. )
  1937. };
  1938. characterMakers["Cryae"] = () => {
  1939. return makeCharacter(
  1940. "Cryae",
  1941. "GregoryKlippenspringer",
  1942. {
  1943. side: {
  1944. height: math.unit(7.2, "meter"),
  1945. weight: math.unit(8.2, "tons"),
  1946. name: "Side",
  1947. image: {
  1948. source: "./media/characters/cryae/side.svg",
  1949. extra: 3500 / 1500
  1950. }
  1951. }
  1952. },
  1953. [
  1954. {
  1955. name: "Normal",
  1956. height: math.unit(7.2, "meter"),
  1957. default: true
  1958. }
  1959. ]
  1960. )
  1961. };
  1962. characterMakers["Xera"] = () => {
  1963. return makeCharacter(
  1964. "Xera",
  1965. "Asana",
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(175, "lb"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/xera/front.svg",
  1973. extra: 2300 / 2061
  1974. }
  1975. },
  1976. side: {
  1977. height: math.unit(6, "feet"),
  1978. weight: math.unit(175, "lb"),
  1979. name: "Side",
  1980. image: {
  1981. source: "./media/characters/xera/side.svg",
  1982. extra: 2300 / 2061
  1983. }
  1984. },
  1985. back: {
  1986. height: math.unit(6, "feet"),
  1987. weight: math.unit(175, "lb"),
  1988. name: "Back",
  1989. image: {
  1990. source: "./media/characters/xera/back.svg"
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Small",
  1997. height: math.unit(10, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(500, "meters"),
  2002. default: true
  2003. },
  2004. {
  2005. name: "Macro+",
  2006. height: math.unit(10, "km")
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(25000, "km")
  2011. },
  2012. {
  2013. name: "Teramacro",
  2014. height: math.unit(3e6, "km")
  2015. }
  2016. ]
  2017. )
  2018. };
  2019. characterMakers["Nebula"] = () => {
  2020. return makeCharacter(
  2021. "Nebula",
  2022. "Cilenomon",
  2023. {
  2024. front: {
  2025. height: math.unit(6, "feet"),
  2026. weight: math.unit(175, "lb"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/nebula/front.svg",
  2030. extra: 2600 / 2450
  2031. }
  2032. }
  2033. },
  2034. [
  2035. {
  2036. name: "Small",
  2037. height: math.unit(4.5, "meters")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(1500, "meters"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Megamacro",
  2046. height: math.unit(150, "km")
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(27000, "km")
  2051. }
  2052. ]
  2053. )
  2054. };
  2055. characterMakers["Abysgar"] = () => {
  2056. return makeCharacter(
  2057. "Abysgar",
  2058. "Cilenomon",
  2059. {
  2060. front: {
  2061. height: math.unit(6, "feet"),
  2062. weight: math.unit(225, "lb"),
  2063. name: "Front",
  2064. image: {
  2065. source: "./media/characters/abysgar/front.svg"
  2066. }
  2067. }
  2068. },
  2069. [
  2070. {
  2071. name: "Small",
  2072. height: math.unit(4.5, "meters")
  2073. },
  2074. {
  2075. name: "Macro",
  2076. height: math.unit(1250, "meters"),
  2077. default: true
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(125, "km")
  2082. },
  2083. {
  2084. name: "Gigamacro",
  2085. height: math.unit(26000, "km")
  2086. }
  2087. ]
  2088. )
  2089. };
  2090. characterMakers["Yakuz"] = () => {
  2091. return makeCharacter(
  2092. "Yakuz",
  2093. "Cilenomon",
  2094. {
  2095. front: {
  2096. height: math.unit(6, "feet"),
  2097. weight: math.unit(180, "lb"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/yakuz/front.svg"
  2101. }
  2102. }
  2103. },
  2104. [
  2105. {
  2106. name: "Small",
  2107. height: math.unit(5, "meters")
  2108. },
  2109. {
  2110. name: "Macro",
  2111. height: math.unit(1500, "meters"),
  2112. default: true
  2113. },
  2114. {
  2115. name: "Megamacro",
  2116. height: math.unit(200, "km")
  2117. },
  2118. {
  2119. name: "Gigamacro",
  2120. height: math.unit(100000, "km")
  2121. }
  2122. ]
  2123. )
  2124. };
  2125. characterMakers["Mirova"] = () => {
  2126. return makeCharacter(
  2127. "Mirova",
  2128. "Cilenomon",
  2129. {
  2130. front: {
  2131. height: math.unit(6, "feet"),
  2132. weight: math.unit(175, "lb"),
  2133. name: "Front",
  2134. image: {
  2135. source: "./media/characters/mirova/front.svg"
  2136. }
  2137. }
  2138. },
  2139. [
  2140. {
  2141. name: "Small",
  2142. height: math.unit(5, "meters")
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(900, "meters"),
  2147. default: true
  2148. },
  2149. {
  2150. name: "Megamacro",
  2151. height: math.unit(135, "km")
  2152. },
  2153. {
  2154. name: "Gigamacro",
  2155. height: math.unit(20000, "km")
  2156. }
  2157. ]
  2158. )
  2159. };
  2160. characterMakers["Asana (Mech)"] = () => {
  2161. return makeCharacter(
  2162. "Asana (Mech)",
  2163. "Asana",
  2164. {
  2165. side: {
  2166. height: math.unit(28.35, "feet"),
  2167. weight: math.unit(99.75, "tons"),
  2168. name: "Side",
  2169. image: {
  2170. source: "./media/characters/asana-mech/side.svg"
  2171. }
  2172. }
  2173. },
  2174. [
  2175. {
  2176. name: "Normal",
  2177. height: math.unit(28.35, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(2500, "feet")
  2183. },
  2184. {
  2185. name: "Megamacro",
  2186. height: math.unit(25, "miles")
  2187. },
  2188. {
  2189. name: "Examacro",
  2190. height: math.unit(6e8, "lightyears")
  2191. },
  2192. ]
  2193. )
  2194. };
  2195. characterMakers["Ashtrek"] = () => {
  2196. return makeCharacter(
  2197. "Ashtrek",
  2198. "Ashtrek",
  2199. {
  2200. front: {
  2201. height: math.unit(2, "meters"),
  2202. weight: math.unit(70, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/ashtrek/front.svg",
  2206. extra: 560/524 ,
  2207. bottom: 0.01
  2208. }
  2209. },
  2210. frontArmor: {
  2211. height: math.unit(2, "meters"),
  2212. weight: math.unit(76, "kg"),
  2213. name: "Front (Armor)",
  2214. image: {
  2215. source: "./media/characters/ashtrek/front-armor.svg",
  2216. extra: 561/527 ,
  2217. bottom: 0.01
  2218. }
  2219. },
  2220. side: {
  2221. height: math.unit(2, "meters"),
  2222. weight: math.unit(70, "kg"),
  2223. name: "Side",
  2224. image: {
  2225. source: "./media/characters/ashtrek/side.svg",
  2226. extra: 1717/1609 ,
  2227. bottom: 0.005
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(2, "meters"),
  2232. weight: math.unit(70, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/ashtrek/back.svg",
  2236. extra: 1570/1501
  2237. }
  2238. },
  2239. },
  2240. [
  2241. {
  2242. name: "DEFCON 5",
  2243. height: math.unit(5, "meters")
  2244. },
  2245. {
  2246. name: "DEFCON 4",
  2247. height: math.unit(500, "meters"),
  2248. default: true
  2249. },
  2250. {
  2251. name: "DEFCON 3",
  2252. height: math.unit(5, "km")
  2253. },
  2254. {
  2255. name: "DEFCON 2",
  2256. height: math.unit(500, "km")
  2257. },
  2258. {
  2259. name: "DEFCON 1",
  2260. height: math.unit(500000, "km")
  2261. },
  2262. {
  2263. name: "DEFCON 0",
  2264. height: math.unit(3, "gigaparsecs")
  2265. },
  2266. ]
  2267. )
  2268. };
  2269. characterMakers["Gale"] = () => {
  2270. return makeCharacter(
  2271. "Gale",
  2272. "GaleFierre",
  2273. {
  2274. front: {
  2275. height: math.unit(2, "meters"),
  2276. weight: math.unit(76, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/gale/front.svg"
  2280. }
  2281. },
  2282. frontAlt1: {
  2283. height: math.unit(2, "meters"),
  2284. weight: math.unit(76, "kg"),
  2285. name: "Front (Alt 1)",
  2286. image: {
  2287. source: "./media/characters/gale/front-alt-1.svg"
  2288. }
  2289. },
  2290. frontAlt2: {
  2291. height: math.unit(2, "meters"),
  2292. weight: math.unit(76, "kg"),
  2293. name: "Front (Alt 2)",
  2294. image: {
  2295. source: "./media/characters/gale/front-alt-2.svg"
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(7, "feet")
  2303. },
  2304. {
  2305. name: "Macro",
  2306. height: math.unit(150, "feet"),
  2307. default: true
  2308. },
  2309. {
  2310. name: "Macro+",
  2311. height: math.unit(300, "feet")
  2312. },
  2313. ]
  2314. )
  2315. };
  2316. characterMakers["Draylen"] = () => {
  2317. return makeCharacter(
  2318. "Draylen",
  2319. "Longshot Coyote",
  2320. {
  2321. front: {
  2322. height: math.unit(2, "meters"),
  2323. weight: math.unit(76, "kg"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/draylen/front.svg"
  2327. }
  2328. }
  2329. },
  2330. [
  2331. {
  2332. name: "Macro",
  2333. height: math.unit(150, "feet"),
  2334. default: true
  2335. }
  2336. ]
  2337. )
  2338. };
  2339. characterMakers["Chez"] = () => {
  2340. return makeCharacter(
  2341. "Chez",
  2342. "Ashtrek",
  2343. {
  2344. front: {
  2345. height: math.unit(7 + 9 / 12, "feet"),
  2346. weight: math.unit(379, "lbs"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/chez/front.svg"
  2350. }
  2351. },
  2352. side: {
  2353. height: math.unit(7 + 9 / 12, "feet"),
  2354. weight: math.unit(379, "lbs"),
  2355. name: "Side",
  2356. image: {
  2357. source: "./media/characters/chez/side.svg"
  2358. }
  2359. }
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7 + 9 / 12, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "God King",
  2369. height: math.unit(9750000, "meters")
  2370. }
  2371. ]
  2372. )
  2373. };
  2374. characterMakers["Kaylum"] = () => {
  2375. return makeCharacter(
  2376. "Kaylum",
  2377. "DJDarkJaro",
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(275, "lbs"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/kaylum/front.svg",
  2385. bottom: 0.01,
  2386. extra: 1166 / 1031
  2387. }
  2388. },
  2389. frontWingless: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(275, "lbs"),
  2392. name: "Front (Wingless)",
  2393. image: {
  2394. source: "./media/characters/kaylum/front-wingless.svg",
  2395. bottom: 0.01,
  2396. extra: 1117 / 1031
  2397. }
  2398. }
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(3.05, "meters")
  2404. },
  2405. {
  2406. name: "Master",
  2407. height: math.unit(5.5, "meters")
  2408. },
  2409. {
  2410. name: "Rampage",
  2411. height: math.unit(19, "meters")
  2412. },
  2413. {
  2414. name: "Macro Lite",
  2415. height: math.unit(37, "meters")
  2416. },
  2417. {
  2418. name: "Hyper Predator",
  2419. height: math.unit(61, "meters")
  2420. },
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(138, "meters"),
  2424. default: true
  2425. }
  2426. ]
  2427. )
  2428. };
  2429. characterMakers["Geta"] = () => {
  2430. return makeCharacter(
  2431. "Geta",
  2432. "Aeznon",
  2433. {
  2434. front: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(150, "lbs"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/geta/front.svg"
  2440. }
  2441. }
  2442. },
  2443. [
  2444. {
  2445. name: "Micro",
  2446. height: math.unit(3, "inches"),
  2447. default: true
  2448. },
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(5 + 5 / 12, "feet")
  2452. }
  2453. ]
  2454. )
  2455. };
  2456. characterMakers["Tyrnn"] = () => {
  2457. return makeCharacter(
  2458. "Tyrnn",
  2459. "Tyrnn",
  2460. {
  2461. front: {
  2462. height: math.unit(6, "feet"),
  2463. weight: math.unit(300, "lbs"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/tyrnn/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Main Height",
  2473. height: math.unit(355, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Fave. Height",
  2478. height: math.unit(2400, "feet")
  2479. }
  2480. ]
  2481. )
  2482. };
  2483. characterMakers["Apple"] = () => {
  2484. return makeCharacter(
  2485. "Apple",
  2486. "Appledectomy",
  2487. {
  2488. front: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(300, "lbs"),
  2491. name: "Front",
  2492. image: {
  2493. source: "./media/characters/appledectomy/front.svg"
  2494. }
  2495. }
  2496. },
  2497. [
  2498. {
  2499. name: "Macro",
  2500. height: math.unit(2500, "feet")
  2501. },
  2502. {
  2503. name: "Megamacro",
  2504. height: math.unit(50, "miles"),
  2505. default: true
  2506. },
  2507. {
  2508. name: "Gigamacro",
  2509. height: math.unit(5000, "miles")
  2510. },
  2511. {
  2512. name: "Teramacro",
  2513. height: math.unit(250000, "miles")
  2514. },
  2515. ]
  2516. )
  2517. };
  2518. characterMakers["Vulpes"] = () => {
  2519. return makeCharacter(
  2520. "Vulpes",
  2521. "VulpesPawpad",
  2522. {
  2523. front: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(200, "lbs"),
  2526. name: "Front",
  2527. image: {
  2528. source: "./media/characters/vulpes/front.svg",
  2529. extra: 573/543,
  2530. bottom: 0.033
  2531. }
  2532. },
  2533. side: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(200, "lbs"),
  2536. name: "Side",
  2537. image: {
  2538. source: "./media/characters/vulpes/side.svg",
  2539. extra: 573/543,
  2540. bottom: 0.01
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(200, "lbs"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/vulpes/back.svg",
  2549. extra: 573/543,
  2550. }
  2551. },
  2552. feet: {
  2553. height: math.unit(1.276, "feet"),
  2554. name: "Feet",
  2555. image: {
  2556. source: "./media/characters/vulpes/feet.svg"
  2557. }
  2558. },
  2559. maw: {
  2560. height: math.unit(1.18, "feet"),
  2561. name: "Maw",
  2562. image: {
  2563. source: "./media/characters/vulpes/maw.svg"
  2564. }
  2565. },
  2566. },
  2567. [
  2568. {
  2569. name: "Micro",
  2570. height: math.unit(2, "inches")
  2571. },
  2572. {
  2573. name: "Normal",
  2574. height: math.unit(6.3, "feet")
  2575. },
  2576. {
  2577. name: "Macro",
  2578. height: math.unit(850, "feet")
  2579. },
  2580. {
  2581. name: "Megamacro",
  2582. height: math.unit(7500, "feet"),
  2583. default: true
  2584. },
  2585. {
  2586. name: "Gigamacro",
  2587. height: math.unit(570000, "miles")
  2588. }
  2589. ]
  2590. )
  2591. };
  2592. characterMakers["Rain Fallen"] = () => {
  2593. return makeCharacter(
  2594. "Rain Fallen",
  2595. "Rain Fallen",
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(210, "lbs"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/rain/front.svg"
  2603. }
  2604. },
  2605. side: {
  2606. height: math.unit(6, "feet"),
  2607. weight: math.unit(210, "lbs"),
  2608. name: "Side",
  2609. image: {
  2610. source: "./media/characters/rain/side.svg"
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(6, "feet"),
  2615. weight: math.unit(210, "lbs"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/rain/back.svg"
  2619. }
  2620. },
  2621. feral: {
  2622. height: math.unit(9, "feet"),
  2623. weight: math.unit(700, "lbs"),
  2624. name: "Feral",
  2625. image: {
  2626. source: "./media/characters/rain/feral.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(5, "meter")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(150, "meter"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Megamacro",
  2642. height: math.unit(278e6, "meter")
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(2e9, "meter")
  2647. },
  2648. {
  2649. name: "Teramacro",
  2650. height: math.unit(8e12, "meter")
  2651. },
  2652. {
  2653. name: "Devourer",
  2654. height: math.unit(14, "zettameters")
  2655. },
  2656. {
  2657. name: "Scarlet King",
  2658. height: math.unit(18, "yottameters")
  2659. },
  2660. {
  2661. name: "Void",
  2662. height: math.unit(6.66e66, "yottameters")
  2663. }
  2664. ]
  2665. )
  2666. };
  2667. characterMakers["Zaakira"] = () => {
  2668. return makeCharacter(
  2669. "Zaakira",
  2670. "Jazzywolf",
  2671. {
  2672. standing: {
  2673. height: math.unit(6, "feet"),
  2674. weight: math.unit(180, "lbs"),
  2675. name: "Standing",
  2676. image: {
  2677. source: "./media/characters/zaakira/standing.svg"
  2678. }
  2679. },
  2680. laying: {
  2681. height: math.unit(3, "feet"),
  2682. weight: math.unit(180, "lbs"),
  2683. name: "Laying",
  2684. image: {
  2685. source: "./media/characters/zaakira/laying.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(12, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(279, "feet"),
  2697. default: true
  2698. }
  2699. ]
  2700. )
  2701. };
  2702. characterMakers["Sigvald"] = () => {
  2703. return makeCharacter(
  2704. "Sigvald",
  2705. "Sigvald",
  2706. {
  2707. front: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(250, "lbs"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/sigvald/front.svg",
  2713. extra: 1000 / 850
  2714. }
  2715. },
  2716. back: {
  2717. height: math.unit(6, "feet"),
  2718. weight: math.unit(250, "lbs"),
  2719. name: "Back",
  2720. image: {
  2721. source: "./media/characters/sigvald/back.svg"
  2722. }
  2723. },
  2724. },
  2725. [
  2726. {
  2727. name: "Normal",
  2728. height: math.unit(8, "feet")
  2729. },
  2730. {
  2731. name: "Large",
  2732. height: math.unit(12, "feet")
  2733. },
  2734. {
  2735. name: "Larger",
  2736. height: math.unit(20, "feet")
  2737. },
  2738. {
  2739. name: "Macro",
  2740. height: math.unit(150, "feet")
  2741. },
  2742. {
  2743. name: "Macro+",
  2744. height: math.unit(200, "feet"),
  2745. default: true
  2746. },
  2747. ]
  2748. )
  2749. };
  2750. characterMakers["Scott"] = () => {
  2751. return makeCharacter(
  2752. "Scott",
  2753. "Scott",
  2754. {
  2755. side: {
  2756. height: math.unit(12, "feet"),
  2757. weight: math.unit(3000, "lbs"),
  2758. name: "Side",
  2759. image: {
  2760. source: "./media/characters/scott/side.svg",
  2761. extra: 1,
  2762. bottom: 0.069
  2763. }
  2764. },
  2765. upright: {
  2766. height: math.unit(12, "feet"),
  2767. weight: math.unit(3000, "lbs"),
  2768. name: "Upright",
  2769. image: {
  2770. source: "./media/characters/scott/upright.svg",
  2771. extra: 1,
  2772. bottom: 0.05
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(12, "feet"),
  2780. default: true
  2781. },
  2782. ]
  2783. )
  2784. };
  2785. characterMakers["Tobias"] = () => {
  2786. return makeCharacter(
  2787. "Tobias",
  2788. "Tobias",
  2789. {
  2790. side: {
  2791. height: math.unit(8, "meters"),
  2792. weight: math.unit(84755, "lbs"),
  2793. name: "Side",
  2794. image: {
  2795. source: "./media/characters/tobias/side.svg",
  2796. extra: 5 / 4
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(8, "meters"),
  2804. default: true
  2805. },
  2806. ]
  2807. )
  2808. };
  2809. characterMakers["Kieran"] = () => {
  2810. return makeCharacter(
  2811. "Kieran",
  2812. "Kieran",
  2813. {
  2814. front: {
  2815. height: math.unit(5.5, "feet"),
  2816. weight: math.unit(400, "lbs"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/kieran/front.svg",
  2820. extra: 1.05
  2821. }
  2822. },
  2823. side: {
  2824. height: math.unit(5.5, "feet"),
  2825. weight: math.unit(400, "lbs"),
  2826. name: "Side",
  2827. image: {
  2828. source: "./media/characters/kieran/side.svg",
  2829. extra: 950 / 850
  2830. }
  2831. },
  2832. },
  2833. [
  2834. {
  2835. name: "Normal",
  2836. height: math.unit(5.5, "feet"),
  2837. default: true
  2838. },
  2839. ]
  2840. )
  2841. };
  2842. characterMakers["Sanya"] = () => {
  2843. return makeCharacter(
  2844. "Sanya",
  2845. "BanterGhost",
  2846. {
  2847. side: {
  2848. height: math.unit(2, "meters"),
  2849. weight: math.unit(70, "kg"),
  2850. name: "Side",
  2851. image: {
  2852. source: "./media/characters/sanya/side.svg",
  2853. bottom: 0.02,
  2854. extra: 1.02
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Small",
  2861. height: math.unit(2, "meters")
  2862. },
  2863. {
  2864. name: "Normal",
  2865. height: math.unit(3, "meters")
  2866. },
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(16, "meters"),
  2870. default: true
  2871. },
  2872. ]
  2873. )
  2874. };
  2875. characterMakers["Miranda"] = () => {
  2876. return makeCharacter(
  2877. "Miranda",
  2878. "MirandaArqayla",
  2879. {
  2880. side: {
  2881. height: math.unit(2, "meters"),
  2882. weight: math.unit(120, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/miranda/front.svg",
  2886. extra: 10.6 / 10
  2887. }
  2888. },
  2889. },
  2890. [
  2891. {
  2892. name: "Normal",
  2893. height: math.unit(10, "feet"),
  2894. default: true
  2895. }
  2896. ]
  2897. )
  2898. };
  2899. characterMakers["James"] = () => {
  2900. return makeCharacter(
  2901. "James",
  2902. "MirandaArqayla",
  2903. {
  2904. side: {
  2905. height: math.unit(2, "meters"),
  2906. weight: math.unit(100, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/james/front.svg",
  2910. extra: 10 / 8.5
  2911. }
  2912. },
  2913. },
  2914. [
  2915. {
  2916. name: "Normal",
  2917. height: math.unit(8.5, "feet"),
  2918. default: true
  2919. }
  2920. ]
  2921. )
  2922. };
  2923. characterMakers["Heather"] = () => {
  2924. return makeCharacter(
  2925. "Heather",
  2926. "MirandaArqayla",
  2927. {
  2928. side: {
  2929. height: math.unit(9.5, "feet"),
  2930. weight: math.unit(2500, "lbs"),
  2931. name: "Side",
  2932. image: {
  2933. source: "./media/characters/heather/side.svg"
  2934. }
  2935. },
  2936. },
  2937. [
  2938. {
  2939. name: "Normal",
  2940. height: math.unit(9.5, "feet"),
  2941. default: true
  2942. }
  2943. ]
  2944. )
  2945. };
  2946. characterMakers["Lukas"] = () => {
  2947. return makeCharacter(
  2948. "Lukas",
  2949. "MirandaArqayla",
  2950. {
  2951. side: {
  2952. height: math.unit(6.5, "feet"),
  2953. weight: math.unit(400, "lbs"),
  2954. name: "Side",
  2955. image: {
  2956. source: "./media/characters/lukas/side.svg",
  2957. extra: 7.25 / 6.5
  2958. }
  2959. },
  2960. },
  2961. [
  2962. {
  2963. name: "Normal",
  2964. height: math.unit(6.5, "feet"),
  2965. default: true
  2966. }
  2967. ]
  2968. )
  2969. };
  2970. characterMakers["Louise"] = () => {
  2971. return makeCharacter(
  2972. "Louise",
  2973. "MirandaArqayla",
  2974. {
  2975. side: {
  2976. height: math.unit(5, "feet"),
  2977. weight: math.unit(3000, "lbs"),
  2978. name: "Side",
  2979. image: {
  2980. source: "./media/characters/louise/side.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5, "feet"),
  2988. default: true
  2989. }
  2990. ]
  2991. )
  2992. };
  2993. characterMakers["Ramona"] = () => {
  2994. return makeCharacter(
  2995. "Ramona",
  2996. "ZakuraTech",
  2997. {
  2998. side: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(150, "lbs"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/ramona/side.svg"
  3004. }
  3005. },
  3006. },
  3007. [
  3008. {
  3009. name: "Normal",
  3010. height: math.unit(5.3, "meters"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(20, "stories")
  3016. },
  3017. {
  3018. name: "Macro+",
  3019. height: math.unit(50, "stories")
  3020. },
  3021. ]
  3022. )
  3023. };
  3024. characterMakers["Deerpuff"] = () => {
  3025. return makeCharacter(
  3026. "Deerpuff",
  3027. "Deerpuff",
  3028. {
  3029. standing: {
  3030. height: math.unit(5.75, "feet"),
  3031. weight: math.unit(160, "lbs"),
  3032. name: "Standing",
  3033. image: {
  3034. source: "./media/characters/deerpuff/standing.svg",
  3035. extra: 682 / 624
  3036. }
  3037. },
  3038. sitting: {
  3039. height: math.unit(5.75 / 1.79, "feet"),
  3040. weight: math.unit(160, "lbs"),
  3041. name: "Sitting",
  3042. image: {
  3043. source: "./media/characters/deerpuff/sitting.svg",
  3044. bottom: 44 / 400,
  3045. extra: 1
  3046. }
  3047. },
  3048. taurLaying: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(400, "lbs"),
  3051. name: "Taur (Laying)",
  3052. image: {
  3053. source: "./media/characters/deerpuff/taur-laying.svg"
  3054. }
  3055. },
  3056. },
  3057. [
  3058. {
  3059. name: "Puffball",
  3060. height: math.unit(6, "inches")
  3061. },
  3062. {
  3063. name: "Normalpuff",
  3064. height: math.unit(5.75, "feet")
  3065. },
  3066. {
  3067. name: "Macropuff",
  3068. height: math.unit(1500, "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Megapuff",
  3073. height: math.unit(500, "miles")
  3074. },
  3075. {
  3076. name: "Gigapuff",
  3077. height: math.unit(250000, "miles")
  3078. },
  3079. {
  3080. name: "Omegapuff",
  3081. height: math.unit(1000, "lightyears")
  3082. },
  3083. ]
  3084. )
  3085. };
  3086. characterMakers["Vivian"] = () => {
  3087. return makeCharacter(
  3088. "Vivian",
  3089. "Fauxlacine",
  3090. {
  3091. stomping: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(170, "lbs"),
  3094. name: "Stomping",
  3095. image: {
  3096. source: "./media/characters/vivian/stomping.svg"
  3097. }
  3098. },
  3099. sitting: {
  3100. height: math.unit(6 / 1.75, "feet"),
  3101. weight: math.unit(170, "lbs"),
  3102. name: "Sitting",
  3103. image: {
  3104. source: "./media/characters/vivian/sitting.svg",
  3105. bottom: 1 / 6.4,
  3106. extra: 1,
  3107. }
  3108. },
  3109. },
  3110. [
  3111. {
  3112. name: "Normal",
  3113. height: math.unit(7, "feet"),
  3114. default: true
  3115. },
  3116. {
  3117. name: "Macro",
  3118. height: math.unit(10, "stories")
  3119. },
  3120. {
  3121. name: "Macro+",
  3122. height: math.unit(30, "stories")
  3123. },
  3124. {
  3125. name: "Megamacro",
  3126. height: math.unit(10, "miles")
  3127. },
  3128. {
  3129. name: "Megamacro+",
  3130. height: math.unit(2750000, "meters")
  3131. },
  3132. ]
  3133. )
  3134. };
  3135. characterMakers["Prince"] = () => {
  3136. return makeCharacter(
  3137. "Prince",
  3138. "Kurrikage",
  3139. {
  3140. front: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(160, "lbs"),
  3143. name: "Front",
  3144. image: {
  3145. source: "./media/characters/prince/front.svg",
  3146. extra: 3400/3000
  3147. }
  3148. },
  3149. jumping: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(160, "lbs"),
  3152. name: "Jumping",
  3153. image: {
  3154. source: "./media/characters/prince/jump.svg",
  3155. extra: 2555/2134
  3156. }
  3157. },
  3158. },
  3159. [
  3160. {
  3161. name: "Normal",
  3162. height: math.unit(7.75, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Not cute",
  3167. height: math.unit(17, "feet")
  3168. },
  3169. {
  3170. name: "I said NOT",
  3171. height: math.unit(91, "feet")
  3172. },
  3173. {
  3174. name: "Please stop",
  3175. height: math.unit(560, "feet")
  3176. },
  3177. {
  3178. name: "What have you done",
  3179. height: math.unit(2200, "feet")
  3180. },
  3181. {
  3182. name: "Deer God",
  3183. height: math.unit(3.6, "miles")
  3184. },
  3185. ]
  3186. )
  3187. };
  3188. characterMakers["Psymon"] = () => {
  3189. return makeCharacter(
  3190. "Psymon",
  3191. "Kurrikage",
  3192. {
  3193. standing: {
  3194. height: math.unit(6, "feet"),
  3195. weight: math.unit(300, "lbs"),
  3196. name: "Standing",
  3197. image: {
  3198. source: "./media/characters/psymon/standing.svg",
  3199. extra: 1888/1810,
  3200. bottom: 0.05
  3201. }
  3202. },
  3203. slithering: {
  3204. height: math.unit(6, "feet"),
  3205. weight: math.unit(300, "lbs"),
  3206. name: "Slithering",
  3207. image: {
  3208. source: "./media/characters/psymon/slithering.svg",
  3209. extra: 1330/1224
  3210. }
  3211. },
  3212. slitheringAlt: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(300, "lbs"),
  3215. name: "Slithering (Alt)",
  3216. image: {
  3217. source: "./media/characters/psymon/slithering-alt.svg",
  3218. extra: 1330/1224
  3219. }
  3220. },
  3221. },
  3222. [
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(11.25, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Large",
  3230. height: math.unit(27, "feet")
  3231. },
  3232. {
  3233. name: "Giant",
  3234. height: math.unit(87, "feet")
  3235. },
  3236. {
  3237. name: "Macro",
  3238. height: math.unit(365, "feet")
  3239. },
  3240. {
  3241. name: "Megamacro",
  3242. height: math.unit(3, "miles")
  3243. },
  3244. {
  3245. name: "World Serpent",
  3246. height: math.unit(8000, "miles")
  3247. },
  3248. ]
  3249. )
  3250. };
  3251. characterMakers["Daimos"] = () => {
  3252. return makeCharacter(
  3253. "Daimos",
  3254. "Kurrikage",
  3255. {
  3256. front: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(180, "lbs"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/daimos/front.svg",
  3262. extra: 4160/3897,
  3263. bottom: 0.021
  3264. }
  3265. }
  3266. },
  3267. [
  3268. {
  3269. name: "Normal",
  3270. height: math.unit(8, "feet"),
  3271. default: true
  3272. },
  3273. {
  3274. name: "Big Dog",
  3275. height: math.unit(22, "feet")
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(127, "feet")
  3280. },
  3281. {
  3282. name: "Megamacro",
  3283. height: math.unit(3600, "feet")
  3284. },
  3285. ]
  3286. )
  3287. };
  3288. characterMakers["Blake"] = () => {
  3289. return makeCharacter(
  3290. "Blake",
  3291. "Kurrikage",
  3292. {
  3293. side: {
  3294. height: math.unit(6, "feet"),
  3295. weight: math.unit(180, "lbs"),
  3296. name: "Side",
  3297. image: {
  3298. source: "./media/characters/blake/side.svg",
  3299. extra: 1212/1120 ,
  3300. bottom: 0.05
  3301. }
  3302. },
  3303. crouched: {
  3304. height: math.unit(6*0.57, "feet"),
  3305. weight: math.unit(180, "lbs"),
  3306. name: "Crouched",
  3307. image: {
  3308. source: "./media/characters/blake/crouched.svg",
  3309. extra: 840/587 ,
  3310. bottom: 0.04
  3311. }
  3312. },
  3313. bent: {
  3314. height: math.unit(6*0.75, "feet"),
  3315. weight: math.unit(180, "lbs"),
  3316. name: "Bent",
  3317. image: {
  3318. source: "./media/characters/blake/bent.svg",
  3319. extra: 592/544 ,
  3320. bottom: 0.035
  3321. }
  3322. },
  3323. },
  3324. [
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(8 + 1/6, "feet"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Big Backside",
  3332. height: math.unit(37, "feet")
  3333. },
  3334. {
  3335. name: "Subway Shredder",
  3336. height: math.unit(72, "feet")
  3337. },
  3338. {
  3339. name: "City Carver",
  3340. height: math.unit(1675, "feet")
  3341. },
  3342. {
  3343. name: "Tectonic Tweaker",
  3344. height: math.unit(2300, "miles")
  3345. },
  3346. ]
  3347. )
  3348. };
  3349. characterMakers["Guisetto"] = () => {
  3350. return makeCharacter(
  3351. "Guisetto",
  3352. "Kurrikage",
  3353. {
  3354. front: {
  3355. height: math.unit(6, "feet"),
  3356. weight: math.unit(180, "lbs"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/guisetto/front.svg",
  3360. extra: 856/817,
  3361. bottom: 0.06
  3362. }
  3363. },
  3364. airborne: {
  3365. height: math.unit(6, "feet"),
  3366. weight: math.unit(180, "lbs"),
  3367. name: "Airborne",
  3368. image: {
  3369. source: "./media/characters/guisetto/airborne.svg",
  3370. extra: 584/525
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(10 + 11/12, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Large",
  3382. height: math.unit(35, "feet")
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(475, "feet")
  3387. },
  3388. ]
  3389. )
  3390. };
  3391. characterMakers["Luxor"] = () => {
  3392. return makeCharacter(
  3393. "Luxor",
  3394. "Kurrikage",
  3395. {
  3396. front: {
  3397. height: math.unit(6, "feet"),
  3398. weight: math.unit(180, "lbs"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/luxor/front.svg",
  3402. extra: 2940/2152
  3403. }
  3404. },
  3405. back: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(180, "lbs"),
  3408. name: "Back",
  3409. image: {
  3410. source: "./media/characters/luxor/back.svg",
  3411. extra: 1083/960
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(5 + 5/6, "feet"),
  3419. default: true
  3420. },
  3421. {
  3422. name: "Lamp",
  3423. height: math.unit(50, "feet")
  3424. },
  3425. {
  3426. name: "Lämp",
  3427. height: math.unit(300, "feet")
  3428. },
  3429. {
  3430. name: "The sun is a lamp",
  3431. height: math.unit(250000, "miles")
  3432. },
  3433. ]
  3434. )
  3435. };
  3436. characterMakers["Huoyan"] = () => {
  3437. return makeCharacter(
  3438. "Huoyan",
  3439. "Kurrikage",
  3440. {
  3441. front: {
  3442. height: math.unit(6, "feet"),
  3443. weight: math.unit(50, "lbs"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/huoyan/front.svg"
  3447. }
  3448. },
  3449. side: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(180, "lbs"),
  3452. name: "Side",
  3453. image: {
  3454. source: "./media/characters/huoyan/side.svg"
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Chef",
  3461. height: math.unit(9, "feet")
  3462. },
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(65, "feet"),
  3466. default: true
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(780, "feet")
  3471. },
  3472. {
  3473. name: "Flaming Mountain",
  3474. height: math.unit(4.8, "miles")
  3475. },
  3476. {
  3477. name: "Celestial",
  3478. height: math.unit(765000, "miles")
  3479. },
  3480. ]
  3481. )
  3482. };
  3483. characterMakers["Tails"] = () => {
  3484. return makeCharacter(
  3485. "Tails",
  3486. "Rainier",
  3487. {
  3488. front: {
  3489. height: math.unit(5 + 3/4, "feet"),
  3490. weight: math.unit(120, "lbs"),
  3491. name: "Front",
  3492. image: {
  3493. source: "./media/characters/tails/front.svg"
  3494. }
  3495. }
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(5 + 3/4, "feet"),
  3501. default: true
  3502. }
  3503. ]
  3504. )
  3505. };
  3506. characterMakers["Rainy"] = () => {
  3507. return makeCharacter(
  3508. "Rainy",
  3509. "Rainier",
  3510. {
  3511. front: {
  3512. height: math.unit(4, "feet"),
  3513. weight: math.unit(50, "lbs"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/rainy/front.svg"
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Macro",
  3523. height: math.unit(800, "feet"),
  3524. default: true
  3525. }
  3526. ]
  3527. )
  3528. };
  3529. characterMakers["Rainier"] = () => {
  3530. return makeCharacter(
  3531. "Rainier",
  3532. "Rainier",
  3533. {
  3534. front: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(150, "lbs"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/rainier/front.svg"
  3540. }
  3541. }
  3542. },
  3543. [
  3544. {
  3545. name: "Micro",
  3546. height: math.unit(2, "mm"),
  3547. default: true
  3548. }
  3549. ]
  3550. )
  3551. };
  3552. characterMakers["Andy"] = () => {
  3553. return makeCharacter(
  3554. "Andy",
  3555. "drewbermeister",
  3556. {
  3557. front: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(180, "lbs"),
  3560. name: "Front",
  3561. image: {
  3562. source: "./media/characters/andy/front.svg"
  3563. }
  3564. }
  3565. },
  3566. [
  3567. {
  3568. name: "Normal",
  3569. height: math.unit(8, "feet"),
  3570. default: true
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1000, "feet")
  3575. },
  3576. {
  3577. name: "Megamacro",
  3578. height: math.unit(5, "miles")
  3579. },
  3580. {
  3581. name: "Gigamacro",
  3582. height: math.unit(5000, "miles")
  3583. },
  3584. ]
  3585. )
  3586. };
  3587. characterMakers["Cimmaron"] = () => {
  3588. return makeCharacter(
  3589. "Cimmaron",
  3590. "Cimmaron",
  3591. {
  3592. frontClothed: {
  3593. height: math.unit(6, "feet"),
  3594. weight: math.unit(210, "lbs"),
  3595. name: "Front (Clothed)",
  3596. image: {
  3597. source: "./media/characters/cimmaron/front-clothed.svg",
  3598. extra: 701/676 ,
  3599. bottom: 0.046
  3600. }
  3601. },
  3602. backClothed: {
  3603. height: math.unit(6, "feet"),
  3604. weight: math.unit(210, "lbs"),
  3605. name: "Back (Clothed)",
  3606. image: {
  3607. source: "./media/characters/cimmaron/back-clothed.svg",
  3608. extra: 701/676 ,
  3609. bottom: 0.046
  3610. }
  3611. },
  3612. frontNude: {
  3613. height: math.unit(6, "feet"),
  3614. weight: math.unit(210, "lbs"),
  3615. name: "Front (Nude)",
  3616. image: {
  3617. source: "./media/characters/cimmaron/front-nude.svg",
  3618. extra: 701/676 ,
  3619. bottom: 0.046
  3620. }
  3621. },
  3622. backNude: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(210, "lbs"),
  3625. name: "Back (Nude)",
  3626. image: {
  3627. source: "./media/characters/cimmaron/back-nude.svg",
  3628. extra: 701/676 ,
  3629. bottom: 0.046
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(6, "feet"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Macro Mayor",
  3641. height: math.unit(350, "meters")
  3642. },
  3643. ]
  3644. )
  3645. };
  3646. characterMakers["Akari Kaen"] = () => {
  3647. return makeCharacter(
  3648. "Akari Kaen",
  3649. "Akari",
  3650. {
  3651. front: {
  3652. height: math.unit(6, "feet"),
  3653. weight: math.unit(200, "lbs"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/akari/front.svg",
  3657. extra: 962/901,
  3658. bottom: 0.04
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Micro",
  3665. height: math.unit(5, "inches"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Normal",
  3670. height: math.unit(7, "feet")
  3671. },
  3672. ]
  3673. )
  3674. };
  3675. characterMakers["Cynosura"] = () => {
  3676. return makeCharacter(
  3677. "Cynosura",
  3678. "Cynosura",
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(140, "lbs"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/cynosura/front.svg",
  3686. extra: 896/847
  3687. }
  3688. },
  3689. back: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(140, "lbs"),
  3692. name: "Back",
  3693. image: {
  3694. source: "./media/characters/cynosura/back.svg",
  3695. extra: 1365/1250
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Micro",
  3702. height: math.unit(4, "inches")
  3703. },
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(5.75, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Tall",
  3711. height: math.unit(10, "feet")
  3712. },
  3713. {
  3714. name: "Big",
  3715. height: math.unit(20, "feet")
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(50, "feet")
  3720. },
  3721. ]
  3722. )
  3723. };
  3724. characterMakers["Gin"] = () => {
  3725. return makeCharacter(
  3726. "Gin",
  3727. "Ozzie_gt",
  3728. {
  3729. front: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(170, "lbs"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/gin/front.svg",
  3735. extra: 1.053,
  3736. bottom: 0.025
  3737. }
  3738. },
  3739. foot: {
  3740. height: math.unit(6/4.25, "feet"),
  3741. name: "Foot",
  3742. image: {
  3743. source: "./media/characters/gin/foot.svg"
  3744. }
  3745. },
  3746. sole: {
  3747. height: math.unit(6/4.40, "feet"),
  3748. name: "Sole",
  3749. image: {
  3750. source: "./media/characters/gin/sole.svg"
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(9 + 4/12, "feet")
  3758. },
  3759. {
  3760. name: "Macro",
  3761. height: math.unit(1500, "feet")
  3762. },
  3763. {
  3764. name: "Megamacro",
  3765. height: math.unit(200, "miles"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Gigamacro",
  3770. height: math.unit(500, "megameters")
  3771. },
  3772. {
  3773. name: "Teramacro",
  3774. height: math.unit(15, "lightyears")
  3775. }
  3776. ]
  3777. )
  3778. };
  3779. characterMakers["Guy"] = () => {
  3780. return makeCharacter(
  3781. "Guy",
  3782. "Whatastandupguy",
  3783. {
  3784. front: {
  3785. height: math.unit(6 + 1/6, "feet"),
  3786. weight: math.unit(178, "lbs"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/guy/front.svg"
  3790. }
  3791. }
  3792. },
  3793. [
  3794. {
  3795. name: "Normal",
  3796. height: math.unit(6 + 1/6, "feet"),
  3797. default: true
  3798. },
  3799. {
  3800. name: "Large",
  3801. height: math.unit(25 + 7/12, "feet")
  3802. },
  3803. {
  3804. name: "Macro",
  3805. height: math.unit(60 + 9/12, "feet")
  3806. },
  3807. {
  3808. name: "Macro+",
  3809. height: math.unit(246, "feet")
  3810. },
  3811. {
  3812. name: "Macro++",
  3813. height: math.unit(878, "feet")
  3814. }
  3815. ]
  3816. )
  3817. };
  3818. characterMakers["Tiberius"] = () => {
  3819. return makeCharacter(
  3820. "Tiberius",
  3821. "movler",
  3822. {
  3823. front: {
  3824. height: math.unit(9, "feet"),
  3825. weight: math.unit(800, "lbs"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/tiberius/front.svg",
  3829. extra: 2295/2071
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(9, "feet"),
  3834. weight: math.unit(800, "lbs"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/tiberius/back.svg",
  3838. extra: 2373/2160
  3839. }
  3840. },
  3841. },
  3842. [
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(9, "feet"),
  3846. default: true
  3847. }
  3848. ]
  3849. )
  3850. };
  3851. characterMakers["Surgo"] = () => {
  3852. return makeCharacter(
  3853. "Surgo",
  3854. "movler",
  3855. {
  3856. front: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(600, "lbs"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/surgo/front.svg",
  3862. extra: 3591/2227
  3863. }
  3864. },
  3865. back: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(600, "lbs"),
  3868. name: "Back",
  3869. image: {
  3870. source: "./media/characters/surgo/back.svg",
  3871. extra: 3557/2228
  3872. }
  3873. },
  3874. laying: {
  3875. height: math.unit(6 * 0.85, "feet"),
  3876. weight: math.unit(600, "lbs"),
  3877. name: "Laying",
  3878. image: {
  3879. source: "./media/characters/surgo/laying.svg"
  3880. }
  3881. },
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(6, "feet"),
  3887. default: true
  3888. }
  3889. ]
  3890. )
  3891. };
  3892. characterMakers["Cibus"] = () => {
  3893. return makeCharacter(
  3894. "Cibus",
  3895. "movler",
  3896. {
  3897. side: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(150, "lbs"),
  3900. name: "Side",
  3901. image: {
  3902. source: "./media/characters/cibus/side.svg",
  3903. extra: 800/400
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(6, "feet"),
  3911. default: true
  3912. }
  3913. ]
  3914. )
  3915. };
  3916. characterMakers["Nibbles"] = () => {
  3917. return makeCharacter(
  3918. "Nibbles",
  3919. "movler",
  3920. {
  3921. front: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(240, "lbs"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/nibbles/front.svg"
  3927. }
  3928. },
  3929. side: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(240, "lbs"),
  3932. name: "Side",
  3933. image: {
  3934. source: "./media/characters/nibbles/side.svg"
  3935. }
  3936. },
  3937. },
  3938. [
  3939. {
  3940. name: "Normal",
  3941. height: math.unit(9, "feet"),
  3942. default: true
  3943. }
  3944. ]
  3945. )
  3946. };
  3947. characterMakers["Rikky"] = () => {
  3948. return makeCharacter(
  3949. "Rikky",
  3950. "Quake Yote",
  3951. {
  3952. side: {
  3953. height: math.unit(5 + 1/6, "feet"),
  3954. weight: math.unit(130, "lbs"),
  3955. name: "Side",
  3956. image: {
  3957. source: "./media/characters/rikky/side.svg"
  3958. }
  3959. },
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(5 + 1/6, "feet")
  3965. },
  3966. {
  3967. name: "Macro",
  3968. height: math.unit(152, "feet"),
  3969. default: true
  3970. },
  3971. {
  3972. name: "Megamacro",
  3973. height: math.unit(7, "miles")
  3974. }
  3975. ]
  3976. )
  3977. };
  3978. characterMakers["Malfressa"] = () => {
  3979. return makeCharacter(
  3980. "Malfressa",
  3981. "Scareye",
  3982. {
  3983. side: {
  3984. height: math.unit(370, "cm"),
  3985. weight: math.unit(350, "lbs"),
  3986. name: "Side",
  3987. image: {
  3988. source: "./media/characters/malfressa/side.svg"
  3989. }
  3990. },
  3991. walking: {
  3992. height: math.unit(370, "cm"),
  3993. weight: math.unit(350, "lbs"),
  3994. name: "Walking",
  3995. image: {
  3996. source: "./media/characters/malfressa/walking.svg"
  3997. }
  3998. },
  3999. feral: {
  4000. height: math.unit(2500, "cm"),
  4001. weight: math.unit(100000, "lbs"),
  4002. name: "Feral",
  4003. image: {
  4004. source: "./media/characters/malfressa/feral.svg",
  4005. extra: 2108/837 ,
  4006. bottom: 0.02
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(370, "cm")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(300, "meters"),
  4018. default: true
  4019. }
  4020. ]
  4021. )
  4022. };
  4023. characterMakers["Jaro"] = () => {
  4024. return makeCharacter(
  4025. "Jaro",
  4026. "Jaro",
  4027. {
  4028. front: {
  4029. height: math.unit(6, "feet"),
  4030. weight: math.unit(60, "kg"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/jaro/front.svg"
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(6, "feet"),
  4038. weight: math.unit(60, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/jaro/back.svg"
  4042. }
  4043. },
  4044. },
  4045. [
  4046. {
  4047. name: "Micro",
  4048. height: math.unit(7, "inches")
  4049. },
  4050. {
  4051. name: "Normal",
  4052. height: math.unit(5.5, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Minimacro",
  4057. height: math.unit(20, "feet")
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(200, "meters")
  4062. }
  4063. ]
  4064. )
  4065. };
  4066. characterMakers["Rogue"] = () => {
  4067. return makeCharacter(
  4068. "Rogue",
  4069. "Rogue",
  4070. {
  4071. front: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(195, "lb"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/rogue/front.svg"
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(90, "feet"),
  4084. default: true
  4085. },
  4086. ]
  4087. )
  4088. };
  4089. characterMakers["Piper"] = () => {
  4090. return makeCharacter(
  4091. "Piper",
  4092. "Flyhar",
  4093. {
  4094. front: {
  4095. height: math.unit(5 + 8/12, "feet"),
  4096. weight: math.unit(140, "lb"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/piper/front.svg",
  4100. extra: 3928/3681
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Micro",
  4107. height: math.unit(2, "inches")
  4108. },
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(5 + 8/12, "feet")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(250, "feet"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Megamacro",
  4120. height: math.unit(7, "miles")
  4121. },
  4122. ]
  4123. )
  4124. };
  4125. characterMakers["Gemini"] = () => {
  4126. return makeCharacter(
  4127. "Gemini",
  4128. "lajay",
  4129. {
  4130. front: {
  4131. height: math.unit(6, "feet"),
  4132. weight: math.unit(220, "lb"),
  4133. name: "Front",
  4134. image: {
  4135. source: "./media/characters/gemini/front.svg"
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(6, "feet"),
  4140. weight: math.unit(220, "lb"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/gemini/back.svg"
  4144. }
  4145. },
  4146. kneeling: {
  4147. height: math.unit(6/1.5, "feet"),
  4148. weight: math.unit(220, "lb"),
  4149. name: "Kneeling",
  4150. image: {
  4151. source: "./media/characters/gemini/kneeling.svg",
  4152. bottom: 0.02
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(300, "meters"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(6900, "meters")
  4165. },
  4166. ]
  4167. )
  4168. };
  4169. characterMakers["Alicia"] = () => {
  4170. return makeCharacter(
  4171. "Alicia",
  4172. "LittleBig",
  4173. {
  4174. anthro: {
  4175. height: math.unit(2.35, "meters"),
  4176. weight: math.unit(73, "kg"),
  4177. name: "Anthro",
  4178. image: {
  4179. source: "./media/characters/alicia/anthro.svg"
  4180. }
  4181. },
  4182. feral: {
  4183. height: math.unit(1.69, "meters"),
  4184. weight: math.unit(73, "kg"),
  4185. name: "Feral",
  4186. image: {
  4187. source: "./media/characters/alicia/feral.svg"
  4188. }
  4189. },
  4190. },
  4191. [
  4192. {
  4193. name: "Normal",
  4194. height: math.unit(2.35, "meters")
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(60, "meters"),
  4199. default: true
  4200. },
  4201. {
  4202. name: "Megamacro",
  4203. height: math.unit(10000, "kilometers")
  4204. },
  4205. ]
  4206. )
  4207. };
  4208. characterMakers["Archy"] = () => {
  4209. return makeCharacter(
  4210. "Archy",
  4211. "ArchyD",
  4212. {
  4213. front: {
  4214. height: math.unit(7, "feet"),
  4215. weight: math.unit(250, "lbs"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/archy/front.svg"
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Micro",
  4225. height: math.unit(1, "inch")
  4226. },
  4227. {
  4228. name: "Shorty",
  4229. height: math.unit(5, "feet")
  4230. },
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(7, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(600, "meters"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Megamacro",
  4242. height: math.unit(1, "mile")
  4243. },
  4244. ]
  4245. )
  4246. };
  4247. characterMakers["Berri"] = () => {
  4248. return makeCharacter(
  4249. "Berri",
  4250. "LittleBig",
  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. };
  4290. characterMakers["Lexi"] = () => {
  4291. return makeCharacter(
  4292. "Lexi",
  4293. "LittleBig",
  4294. {
  4295. front: {
  4296. height: math.unit(1.72, "meters"),
  4297. weight: math.unit(68, "kg"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/lexi/front.svg"
  4301. }
  4302. }
  4303. },
  4304. [
  4305. {
  4306. name: "Very Smol",
  4307. height: math.unit(10, "mm")
  4308. },
  4309. {
  4310. name: "Micro",
  4311. height: math.unit(6.8, "cm"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(1.72, "m")
  4317. }
  4318. ]
  4319. )
  4320. };
  4321. characterMakers["Martin"] = () => {
  4322. return makeCharacter(
  4323. "Martin",
  4324. "LittleBig",
  4325. {
  4326. front: {
  4327. height: math.unit(1.69, "meters"),
  4328. weight: math.unit(68, "kg"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/martin/front.svg",
  4332. extra: 596/581
  4333. }
  4334. }
  4335. },
  4336. [
  4337. {
  4338. name: "Micro",
  4339. height: math.unit(6.85, "cm"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(1.69, "m")
  4345. }
  4346. ]
  4347. )
  4348. };
  4349. characterMakers["Juno"] = () => {
  4350. return makeCharacter(
  4351. "Juno",
  4352. "LittleBig",
  4353. {
  4354. front: {
  4355. height: math.unit(1.69, "meters"),
  4356. weight: math.unit(68, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/juno/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Micro",
  4366. height: math.unit(7, "cm")
  4367. },
  4368. {
  4369. name: "Normal",
  4370. height: math.unit(1.89, "m")
  4371. },
  4372. {
  4373. name: "Macro",
  4374. height: math.unit(353, "meters"),
  4375. default: true
  4376. }
  4377. ]
  4378. )
  4379. };
  4380. characterMakers["Samantha"] = () => {
  4381. return makeCharacter(
  4382. "Samantha",
  4383. "LittleBig",
  4384. {
  4385. front: {
  4386. height: math.unit(1.93, "meters"),
  4387. weight: math.unit(83, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/samantha/front.svg"
  4391. }
  4392. },
  4393. frontClothed: {
  4394. height: math.unit(1.93, "meters"),
  4395. weight: math.unit(83, "kg"),
  4396. name: "Front (Clothed)",
  4397. image: {
  4398. source: "./media/characters/samantha/front-clothed.svg"
  4399. }
  4400. },
  4401. back: {
  4402. height: math.unit(1.93, "meters"),
  4403. weight: math.unit(83, "kg"),
  4404. name: "Back",
  4405. image: {
  4406. source: "./media/characters/samantha/back.svg"
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(1.93, "m")
  4414. },
  4415. {
  4416. name: "Macro",
  4417. height: math.unit(74, "meters"),
  4418. default: true
  4419. },
  4420. {
  4421. name: "Macro+",
  4422. height: math.unit(223, "meters"),
  4423. },
  4424. {
  4425. name: "Megamacro",
  4426. height: math.unit(8381, "meters"),
  4427. },
  4428. {
  4429. name: "Megamacro+",
  4430. height: math.unit(12000, "kilometers")
  4431. },
  4432. ]
  4433. )
  4434. };
  4435. characterMakers["Dr. Clay"] = () => {
  4436. return makeCharacter(
  4437. "Dr. Clay",
  4438. "LittleBig",
  4439. {
  4440. front: {
  4441. height: math.unit(1.92, "meters"),
  4442. weight: math.unit(80, "kg"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/dr-clay/front.svg"
  4446. }
  4447. },
  4448. frontClothed: {
  4449. height: math.unit(1.92, "meters"),
  4450. weight: math.unit(80, "kg"),
  4451. name: "Front (Clothed)",
  4452. image: {
  4453. source: "./media/characters/dr-clay/front-clothed.svg"
  4454. }
  4455. }
  4456. },
  4457. [
  4458. {
  4459. name: "Normal",
  4460. height: math.unit(1.92, "m")
  4461. },
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(214, "meters"),
  4465. default: true
  4466. },
  4467. {
  4468. name: "Macro+",
  4469. height: math.unit(12.237, "meters"),
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(557, "megameters"),
  4474. },
  4475. {
  4476. name: "Unimaginable",
  4477. height: math.unit(120e9, "lightyears")
  4478. },
  4479. ]
  4480. )
  4481. };
  4482. characterMakers["Wyvrn Ripsnarl"] = () => {
  4483. return makeCharacter(
  4484. "Wyvrn Ripsnarl",
  4485. "LoboRaptorLo",
  4486. {
  4487. front: {
  4488. height: math.unit(2, "meters"),
  4489. weight: math.unit(80, "kg"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Teramacro",
  4499. height: math.unit(500000, "lightyears"),
  4500. default: true
  4501. },
  4502. ]
  4503. )
  4504. };
  4505. characterMakers["Vemus"] = () => {
  4506. return makeCharacter(
  4507. "Vemus",
  4508. "Vemus",
  4509. {
  4510. front: {
  4511. height: math.unit(2, "meters"),
  4512. weight: math.unit(150, "kg"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/vemus/front.svg",
  4516. extra: 2384/2084
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(3, "meters"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Lorg",
  4528. height: math.unit(7, "meters")
  4529. },
  4530. {
  4531. name: "More Lorg",
  4532. height: math.unit(250, "meters")
  4533. },
  4534. ]
  4535. )
  4536. };
  4537. characterMakers["Beherit"] = () => {
  4538. return makeCharacter(
  4539. "Beherit",
  4540. "Beherit",
  4541. {
  4542. front: {
  4543. height: math.unit(2, "meters"),
  4544. weight: math.unit(70, "kg"),
  4545. name: "Front",
  4546. image: {
  4547. source: "./media/characters/beherit/front.svg",
  4548. extra: 1408/1242
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Normal",
  4555. height: math.unit(6, "feet")
  4556. },
  4557. {
  4558. name: "Lorg",
  4559. height: math.unit(25, "feet"),
  4560. default: true
  4561. },
  4562. {
  4563. name: "Lorger",
  4564. height: math.unit(75, "feet")
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(200, "meters")
  4569. },
  4570. ]
  4571. )
  4572. };
  4573. characterMakers["Everett"] = () => {
  4574. return makeCharacter(
  4575. "Everett",
  4576. "Beherit",
  4577. {
  4578. front: {
  4579. height: math.unit(2, "meters"),
  4580. weight: math.unit(150, "kg"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/everett/front.svg",
  4584. extra: 2038/1737 ,
  4585. bottom: 0.03
  4586. }
  4587. },
  4588. paw: {
  4589. height: math.unit(2/3.6, "meters"),
  4590. name: "Paw",
  4591. image: {
  4592. source: "./media/characters/everett/paw.svg"
  4593. }
  4594. },
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(15, "feet"),
  4600. default: true
  4601. },
  4602. {
  4603. name: "Lorg",
  4604. height: math.unit(70, "feet"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Lorger",
  4609. height: math.unit(250, "feet")
  4610. },
  4611. {
  4612. name: "Macro",
  4613. height: math.unit(500, "meters")
  4614. },
  4615. ]
  4616. )
  4617. };
  4618. characterMakers["Rose Lion"] = () => {
  4619. return makeCharacter(
  4620. "Rose Lion",
  4621. "Enormouse",
  4622. {
  4623. front: {
  4624. height: math.unit(2, "meters"),
  4625. weight: math.unit(86, "kg"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/rose-lion/front.svg"
  4629. }
  4630. },
  4631. bent: {
  4632. height: math.unit(2/1.4288, "meters"),
  4633. weight: math.unit(86, "kg"),
  4634. name: "Bent",
  4635. image: {
  4636. source: "./media/characters/rose-lion/bent.svg"
  4637. }
  4638. }
  4639. },
  4640. [
  4641. {
  4642. name: "Mini-Micro",
  4643. height: math.unit(1, "cm")
  4644. },
  4645. {
  4646. name: "Micro",
  4647. height: math.unit(3.5, "inches"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Normal",
  4652. height: math.unit(6 + 1/6, "feet")
  4653. },
  4654. {
  4655. name: "Mini-Macro",
  4656. height: math.unit(9 + 10/12, "feet")
  4657. },
  4658. ]
  4659. )
  4660. };
  4661. characterMakers["Regal"] = () => {
  4662. return makeCharacter(
  4663. "Regal",
  4664. "Regal Drennen",
  4665. {
  4666. front: {
  4667. height: math.unit(2, "meters"),
  4668. weight: math.unit(350, "lbs"),
  4669. name: "Front",
  4670. image: {
  4671. source: "./media/characters/regal/front.svg"
  4672. }
  4673. },
  4674. back: {
  4675. height: math.unit(2, "meters"),
  4676. weight: math.unit(350, "lbs"),
  4677. name: "Back",
  4678. image: {
  4679. source: "./media/characters/regal/back.svg"
  4680. }
  4681. },
  4682. },
  4683. [
  4684. {
  4685. name: "Macro",
  4686. height: math.unit(350, "feet"),
  4687. default: true
  4688. }
  4689. ]
  4690. )
  4691. };
  4692. characterMakers["Opal"] = () => {
  4693. return makeCharacter(
  4694. "Opal",
  4695. "Enormouse",
  4696. {
  4697. front: {
  4698. height: math.unit(4 + 11/12, "feet"),
  4699. weight: math.unit(100, "lbs"),
  4700. name: "Front",
  4701. image: {
  4702. source: "./media/characters/opal/front.svg"
  4703. }
  4704. },
  4705. frontAlt: {
  4706. height: math.unit(4 + 11/12, "feet"),
  4707. weight: math.unit(100, "lbs"),
  4708. name: "Front (Alt)",
  4709. image: {
  4710. source: "./media/characters/opal/front-alt.svg"
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Small",
  4717. height: math.unit(4 + 11/12, "feet")
  4718. },
  4719. {
  4720. name: "Normal",
  4721. height: math.unit(20, "feet"),
  4722. default: true
  4723. },
  4724. {
  4725. name: "Macro",
  4726. height: math.unit(120, "feet")
  4727. },
  4728. {
  4729. name: "Megamacro",
  4730. height: math.unit(80, "miles")
  4731. },
  4732. {
  4733. name: "True Size",
  4734. height: math.unit(100000, "lightyears")
  4735. },
  4736. ]
  4737. )
  4738. };
  4739. characterMakers["Vector Wuff"] = () => {
  4740. return makeCharacter(
  4741. "Vector Wuff",
  4742. "Vector",
  4743. {
  4744. front: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(200, "lbs"),
  4747. name: "Front",
  4748. image: {
  4749. source: "./media/characters/vector-wuff/front.svg"
  4750. }
  4751. }
  4752. },
  4753. [
  4754. {
  4755. name: "Normal",
  4756. height: math.unit(2.8, "meters")
  4757. },
  4758. {
  4759. name: "Macro",
  4760. height: math.unit(450, "meters"),
  4761. default: true
  4762. },
  4763. {
  4764. name: "Megamacro",
  4765. height: math.unit(15, "kilometers")
  4766. }
  4767. ]
  4768. )
  4769. };
  4770. characterMakers["Dannik"] = () => {
  4771. return makeCharacter(
  4772. "Dannik",
  4773. "LuchaLibreLibro",
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(256, "lbs"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/dannik/front.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(69.57, "meters"),
  4788. default: true
  4789. },
  4790. ]
  4791. )
  4792. };
  4793. characterMakers["Azura Saharah"] = () => {
  4794. return makeCharacter(
  4795. "Azura Saharah",
  4796. "AzuraSaharah",
  4797. {
  4798. front: {
  4799. height: math.unit(6, "feet"),
  4800. weight: math.unit(120, "lbs"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/azura-saharah/front.svg"
  4804. }
  4805. },
  4806. back: {
  4807. height: math.unit(6, "feet"),
  4808. weight: math.unit(120, "lbs"),
  4809. name: "Back",
  4810. image: {
  4811. source: "./media/characters/azura-saharah/back.svg"
  4812. }
  4813. },
  4814. },
  4815. [
  4816. {
  4817. name: "Macro",
  4818. height: math.unit(100, "feet"),
  4819. default: true
  4820. },
  4821. ]
  4822. )
  4823. };
  4824. characterMakers["Kennedy"] = () => {
  4825. return makeCharacter(
  4826. "Kennedy",
  4827. "BossVoss",
  4828. {
  4829. side: {
  4830. height: math.unit(5 + 4/12, "feet"),
  4831. weight: math.unit(163, "lbs"),
  4832. name: "Side",
  4833. image: {
  4834. source: "./media/characters/kennedy/side.svg"
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Standard Doggo",
  4841. height: math.unit(5 + 4/12, "feet")
  4842. },
  4843. {
  4844. name: "Big Doggo",
  4845. height: math.unit(25 + 3/12, "feet"),
  4846. default: true
  4847. },
  4848. ]
  4849. )
  4850. };
  4851. characterMakers["Odi Lunar"] = () => {
  4852. return makeCharacter(
  4853. "Odi Lunar",
  4854. "OdiLunar",
  4855. {
  4856. front: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(90, "lbs"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/odi-lunar/front.svg"
  4862. }
  4863. }
  4864. },
  4865. [
  4866. {
  4867. name: "Micro",
  4868. height: math.unit(3, "inches"),
  4869. default: true
  4870. },
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(5.5, "feet")
  4874. }
  4875. ]
  4876. )
  4877. };
  4878. characterMakers["Mandake"] = () => {
  4879. return makeCharacter(
  4880. "Mandake",
  4881. "Dialuca01",
  4882. {
  4883. back: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(220, "lbs"),
  4886. name: "Back",
  4887. image: {
  4888. source: "./media/characters/mandake/back.svg"
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(7, "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro",
  4900. height: math.unit(78, "feet")
  4901. },
  4902. {
  4903. name: "Macro+",
  4904. height: math.unit(300, "meters")
  4905. },
  4906. {
  4907. name: "Macro++",
  4908. height: math.unit(2400, "feet")
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(5167, "meters")
  4913. },
  4914. {
  4915. name: "Gigamacro",
  4916. height: math.unit(41769, "miles")
  4917. },
  4918. ]
  4919. )
  4920. };
  4921. characterMakers["Yozey"] = () => {
  4922. return makeCharacter(
  4923. "Yozey",
  4924. "Yozey",
  4925. {
  4926. front: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(120, "lbs"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/yozey/front.svg"
  4932. }
  4933. },
  4934. frontAlt: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(120, "lbs"),
  4937. name: "Front (Alt)",
  4938. image: {
  4939. source: "./media/characters/yozey/front-alt.svg"
  4940. }
  4941. },
  4942. side: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(120, "lbs"),
  4945. name: "Side",
  4946. image: {
  4947. source: "./media/characters/yozey/side.svg"
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Micro",
  4954. height: math.unit(3, "inches"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(6, "feet")
  4960. }
  4961. ]
  4962. )
  4963. };
  4964. characterMakers["Valeska Voss"] = () => {
  4965. return makeCharacter(
  4966. "Valeska Voss",
  4967. "BossVoss",
  4968. {
  4969. front: {
  4970. height: math.unit(6, "feet"),
  4971. weight: math.unit(103, "lbs"),
  4972. name: "Front",
  4973. image: {
  4974. source: "./media/characters/valeska-voss/front.svg"
  4975. }
  4976. }
  4977. },
  4978. [
  4979. {
  4980. name: "Mini-Sized Sub",
  4981. height: math.unit(3.1, "inches")
  4982. },
  4983. {
  4984. name: "Mid-Sized Sub",
  4985. height: math.unit(6.2, "inches")
  4986. },
  4987. {
  4988. name: "Full-Sized Sub",
  4989. height: math.unit(9.3, "inches")
  4990. },
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(5 + 2/12, "foot"),
  4994. default: true
  4995. },
  4996. ]
  4997. )
  4998. };
  4999. characterMakers["Gene Zeta"] = () => {
  5000. return makeCharacter(
  5001. "Gene Zeta",
  5002. "Xeebes",
  5003. {
  5004. front: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(160, "lbs"),
  5007. name: "Front",
  5008. image: {
  5009. source: "./media/characters/gene-zeta/front.svg",
  5010. bottom: 0.03,
  5011. extra: 1
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(6.25, "foot"),
  5019. default: true
  5020. },
  5021. ]
  5022. )
  5023. };
  5024. characterMakers["Razinox"] = () => {
  5025. return makeCharacter(
  5026. "Razinox",
  5027. "Razinox",
  5028. {
  5029. front: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(350, "lbs"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/razinox/front.svg",
  5035. extra: 1686/1548
  5036. }
  5037. },
  5038. back: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(350, "lbs"),
  5041. name: "Back",
  5042. image: {
  5043. source: "./media/characters/razinox/back.svg",
  5044. extra: 1660/1590
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(10 + 8/12, "foot")
  5052. },
  5053. {
  5054. name: "Minimacro",
  5055. height: math.unit(15, "foot")
  5056. },
  5057. {
  5058. name: "Macro",
  5059. height: math.unit(60, "foot"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Megamacro",
  5064. height: math.unit(5, "miles")
  5065. },
  5066. {
  5067. name: "Gigamacro",
  5068. height: math.unit(6000, "miles")
  5069. },
  5070. ]
  5071. )
  5072. };
  5073. characterMakers["Cobalt"] = () => {
  5074. return makeCharacter(
  5075. "Cobalt",
  5076. "Miateshcha",
  5077. {
  5078. front: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(150, "lbs"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/cobalt/front.svg"
  5084. }
  5085. }
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(8 + 1/12, "foot")
  5091. },
  5092. {
  5093. name: "Macro",
  5094. height: math.unit(111, "foot"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Supracosmic",
  5099. height: math.unit(1e42, "feet")
  5100. },
  5101. ]
  5102. )
  5103. };
  5104. characterMakers["Amanda"] = () => {
  5105. return makeCharacter(
  5106. "Amanda",
  5107. "Amanda",
  5108. {
  5109. front: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(140, "lbs"),
  5112. name: "Front",
  5113. image: {
  5114. source: "./media/characters/amanda/front.svg"
  5115. }
  5116. }
  5117. },
  5118. [
  5119. {
  5120. name: "Micro",
  5121. height: math.unit(5, "inches"),
  5122. default: true
  5123. },
  5124. ]
  5125. )
  5126. };
  5127. characterMakers["Teal"] = () => {
  5128. return makeCharacter(
  5129. "Teal",
  5130. "Teal",
  5131. {
  5132. front: {
  5133. height: math.unit(5.59, "feet"),
  5134. weight: math.unit(250, "lbs"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/teal/front.svg"
  5138. }
  5139. },
  5140. frontAlt: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(250, "lbs"),
  5143. name: "Front (Alt)",
  5144. image: {
  5145. source: "./media/characters/teal/front-alt.svg",
  5146. bottom: 0.04,
  5147. extra: 1
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(12, "feet"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(300, "feet")
  5160. },
  5161. ]
  5162. )
  5163. };
  5164. characterMakers["Ravin Amulet"] = () => {
  5165. return makeCharacter(
  5166. "Ravin Amulet",
  5167. "Ravin Amulet",
  5168. {
  5169. frontCat: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(180, "lbs"),
  5172. name: "Front (Cat)",
  5173. image: {
  5174. source: "./media/characters/ravin-amulet/front-cat.svg"
  5175. }
  5176. },
  5177. frontCatAlt: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(180, "lbs"),
  5180. name: "Front (Alt, Cat)",
  5181. image: {
  5182. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5183. }
  5184. },
  5185. frontWerewolf: {
  5186. height: math.unit(6*1.2, "feet"),
  5187. weight: math.unit(225, "lbs"),
  5188. name: "Front (Werewolf)",
  5189. image: {
  5190. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5191. }
  5192. },
  5193. backWerewolf: {
  5194. height: math.unit(6*1.2, "feet"),
  5195. weight: math.unit(225, "lbs"),
  5196. name: "Back (Werewolf)",
  5197. image: {
  5198. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Nano",
  5205. height: math.unit(1, "micrometer")
  5206. },
  5207. {
  5208. name: "Micro",
  5209. height: math.unit(1, "inch")
  5210. },
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(6, "feet"),
  5214. default: true
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(60, "feet")
  5219. }
  5220. ]
  5221. )
  5222. };
  5223. characterMakers["Fluoresce"] = () => {
  5224. return makeCharacter(
  5225. "Fluoresce",
  5226. "Ravin Amulet",
  5227. {
  5228. front: {
  5229. height: math.unit(6, "feet"),
  5230. weight: math.unit(165, "lbs"),
  5231. name: "Front",
  5232. image: {
  5233. source: "./media/characters/fluoresce/front.svg"
  5234. }
  5235. }
  5236. },
  5237. [
  5238. {
  5239. name: "Micro",
  5240. height: math.unit(6, "cm")
  5241. },
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(5 + 7/12, "feet"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(56, "feet")
  5250. },
  5251. {
  5252. name: "Megamacro",
  5253. height: math.unit(1.9, "miles")
  5254. },
  5255. ]
  5256. )
  5257. };
  5258. characterMakers["Aurora"] = () => {
  5259. return makeCharacter(
  5260. "Aurora",
  5261. "Vonadi",
  5262. {
  5263. front: {
  5264. height: math.unit(9 + 6/12, "feet"),
  5265. weight: math.unit(523, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/aurora/side.svg"
  5269. }
  5270. }
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(9 + 6/12, "feet")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(96, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(243, "feet")
  5285. },
  5286. ]
  5287. )
  5288. };
  5289. characterMakers["Ranek"] = () => {
  5290. return makeCharacter(
  5291. "Ranek",
  5292. "Ranek",
  5293. {
  5294. front: {
  5295. height: math.unit(194, "cm"),
  5296. weight: math.unit(90, "kg"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/ranek/front.svg"
  5300. }
  5301. },
  5302. side: {
  5303. height: math.unit(194, "cm"),
  5304. weight: math.unit(90, "kg"),
  5305. name: "Side",
  5306. image: {
  5307. source: "./media/characters/ranek/side.svg"
  5308. }
  5309. },
  5310. back: {
  5311. height: math.unit(194, "cm"),
  5312. weight: math.unit(90, "kg"),
  5313. name: "Back",
  5314. image: {
  5315. source: "./media/characters/ranek/back.svg"
  5316. }
  5317. },
  5318. feral: {
  5319. height: math.unit(30, "cm"),
  5320. weight: math.unit(1.6, "lbs"),
  5321. name: "Feral",
  5322. image: {
  5323. source: "./media/characters/ranek/feral.svg"
  5324. }
  5325. },
  5326. },
  5327. [
  5328. {
  5329. name: "Normal",
  5330. height: math.unit(194, "cm"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(100, "meters")
  5336. },
  5337. ]
  5338. )
  5339. };
  5340. characterMakers["Andrew Cooper"] = () => {
  5341. return makeCharacter(
  5342. "Andrew Cooper",
  5343. "Vonadi",
  5344. {
  5345. front: {
  5346. height: math.unit(5 + 6/12, "feet"),
  5347. weight: math.unit(153, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/andrew-cooper/front.svg"
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Nano",
  5357. height: math.unit(1, "mm")
  5358. },
  5359. {
  5360. name: "Micro",
  5361. height: math.unit(2, "inches")
  5362. },
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(5 + 6/12, "feet"),
  5366. default: true
  5367. }
  5368. ]
  5369. )
  5370. };
  5371. characterMakers["Akane Sato"] = () => {
  5372. return makeCharacter(
  5373. "Akane Sato",
  5374. "Vonadi",
  5375. {
  5376. front: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(180, "lbs"),
  5379. name: "Front",
  5380. image: {
  5381. source: "./media/characters/akane-sato/front.svg",
  5382. extra: 1219/1140
  5383. }
  5384. },
  5385. back: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(180, "lbs"),
  5388. name: "Back",
  5389. image: {
  5390. source: "./media/characters/akane-sato/back.svg",
  5391. extra: 1219/1170
  5392. }
  5393. },
  5394. },
  5395. [
  5396. {
  5397. name: "Normal",
  5398. height: math.unit(2.5, "meters")
  5399. },
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(250, "meters"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Megamacro",
  5407. height: math.unit(25, "km")
  5408. },
  5409. ]
  5410. )
  5411. };
  5412. characterMakers["Rook"] = () => {
  5413. return makeCharacter(
  5414. "Rook",
  5415. "Rook",
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(65, "kg"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/rook/front.svg"
  5423. }
  5424. }
  5425. },
  5426. [
  5427. {
  5428. name: "Normal",
  5429. height: math.unit(8.8, "feet")
  5430. },
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(88, "feet"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Megamacro",
  5438. height: math.unit(8, "miles")
  5439. },
  5440. ]
  5441. )
  5442. };
  5443. characterMakers["Prodigy"] = () => {
  5444. return makeCharacter(
  5445. "Prodigy",
  5446. "Rook",
  5447. {
  5448. front: {
  5449. height: math.unit(12 + 2/12, "feet"),
  5450. weight: math.unit(808, "lbs"),
  5451. name: "Front",
  5452. image: {
  5453. source: "./media/characters/prodigy/front.svg"
  5454. }
  5455. }
  5456. },
  5457. [
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(12 + 2/12, "feet"),
  5461. default: true
  5462. },
  5463. {
  5464. name: "Macro",
  5465. height: math.unit(143, "feet")
  5466. },
  5467. {
  5468. name: "Macro+",
  5469. height: math.unit(400, "feet")
  5470. },
  5471. ]
  5472. )
  5473. };
  5474. characterMakers["Daniel"] = () => {
  5475. return makeCharacter(
  5476. "Daniel",
  5477. "Galactor",
  5478. {
  5479. front: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(225, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/daniel/front.svg"
  5485. }
  5486. },
  5487. leaning: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(225, "lbs"),
  5490. name: "Leaning",
  5491. image: {
  5492. source: "./media/characters/daniel/leaning.svg"
  5493. }
  5494. },
  5495. },
  5496. [
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(1000, "feet"),
  5500. default: true
  5501. },
  5502. ]
  5503. )
  5504. };
  5505. characterMakers["Chiros"] = () => {
  5506. return makeCharacter(
  5507. "Chiros",
  5508. "Chiropica",
  5509. {
  5510. front: {
  5511. height: math.unit(6, "feet"),
  5512. weight: math.unit(88, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/chiros/front.svg",
  5516. extra: 306/226
  5517. }
  5518. },
  5519. side: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(88, "lbs"),
  5522. name: "Side",
  5523. image: {
  5524. source: "./media/characters/chiros/side.svg",
  5525. extra: 306/226
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(6, "cm"),
  5533. default: true
  5534. },
  5535. ]
  5536. )
  5537. };
  5538. characterMakers["Selka"] = () => {
  5539. return makeCharacter(
  5540. "Selka",
  5541. "Xelchew",
  5542. {
  5543. front: {
  5544. height: math.unit(6, "feet"),
  5545. weight: math.unit(100, "lbs"),
  5546. name: "Front",
  5547. image: {
  5548. source: "./media/characters/selka/front.svg",
  5549. extra: 947/887
  5550. }
  5551. }
  5552. },
  5553. [
  5554. {
  5555. name: "Normal",
  5556. height: math.unit(5, "cm"),
  5557. default: true
  5558. },
  5559. ]
  5560. )
  5561. };
  5562. characterMakers["Verin"] = () => {
  5563. return makeCharacter(
  5564. "Verin",
  5565. "Vonadi",
  5566. {
  5567. front: {
  5568. height: math.unit(8 + 3/12, "feet"),
  5569. weight: math.unit(424, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/verin/front.svg",
  5573. extra: 1845/1550
  5574. }
  5575. },
  5576. frontArmored: {
  5577. height: math.unit(8 + 3/12, "feet"),
  5578. weight: math.unit(424, "lbs"),
  5579. name: "Front (Armored)",
  5580. image: {
  5581. source: "./media/characters/verin/front-armor.svg",
  5582. extra: 1845/1550 ,
  5583. bottom: 0.01
  5584. }
  5585. },
  5586. back: {
  5587. height: math.unit(8 + 3/12, "feet"),
  5588. weight: math.unit(424, "lbs"),
  5589. name: "Back",
  5590. image: {
  5591. source: "./media/characters/verin/back.svg",
  5592. bottom: 0.1,
  5593. extra: 1
  5594. }
  5595. },
  5596. foot: {
  5597. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5598. name: "Foot",
  5599. image: {
  5600. source: "./media/characters/verin/foot.svg"
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(8 + 3/12, "feet")
  5608. },
  5609. {
  5610. name: "Minimacro",
  5611. height: math.unit(21, "feet"),
  5612. default: true
  5613. },
  5614. {
  5615. name: "Macro",
  5616. height: math.unit(626, "feet")
  5617. },
  5618. ]
  5619. )
  5620. };
  5621. characterMakers["Sovrim Terraquian"] = () => {
  5622. return makeCharacter(
  5623. "Sovrim Terraquian",
  5624. "Sovrim Terraquian",
  5625. {
  5626. front: {
  5627. height: math.unit(2.718, "meters"),
  5628. weight: math.unit(150, "lbs"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/sovrim-terraquian/front.svg"
  5632. }
  5633. },
  5634. back: {
  5635. height: math.unit(2.718, "meters"),
  5636. weight: math.unit(150, "lbs"),
  5637. name: "Back",
  5638. image: {
  5639. source: "./media/characters/sovrim-terraquian/back.svg"
  5640. }
  5641. }
  5642. },
  5643. [
  5644. {
  5645. name: "Micro",
  5646. height: math.unit(2, "inches")
  5647. },
  5648. {
  5649. name: "Small",
  5650. height: math.unit(1, "meter")
  5651. },
  5652. {
  5653. name: "Normal",
  5654. height: math.unit(Math.E, "meters"),
  5655. default: true
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(20, "meters")
  5660. },
  5661. {
  5662. name: "Macro+",
  5663. height: math.unit(400, "meters")
  5664. },
  5665. ]
  5666. )
  5667. };
  5668. characterMakers["Reece Silvermane"] = () => {
  5669. return makeCharacter(
  5670. "Reece Silvermane",
  5671. "Silverhorsey",
  5672. {
  5673. front: {
  5674. height: math.unit(7, "feet"),
  5675. weight: math.unit(489, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/reece-silvermane/front.svg",
  5679. bottom: 0.02,
  5680. extra: 1
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(1.5, "miles"),
  5688. default: true
  5689. },
  5690. ]
  5691. )
  5692. };
  5693. characterMakers["Kane"] = () => {
  5694. return makeCharacter(
  5695. "Kane",
  5696. "LittleBigX110",
  5697. {
  5698. front: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(78, "kg"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/kane/front.svg",
  5704. extra: 978/899
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(2.1, "m"),
  5712. },
  5713. {
  5714. name: "Macro",
  5715. height: math.unit(1, "km"),
  5716. default: true
  5717. },
  5718. ]
  5719. )
  5720. };
  5721. characterMakers["Tegon"] = () => {
  5722. return makeCharacter(
  5723. "Tegon",
  5724. "TegonDragon",
  5725. {
  5726. front: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(200, "kg"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/tegon/front.svg",
  5732. bottom: 0.01,
  5733. extra: 1
  5734. }
  5735. },
  5736. },
  5737. [
  5738. {
  5739. name: "Micro",
  5740. height: math.unit(1, "inch")
  5741. },
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(6 + 3/12, "feet"),
  5745. default: true
  5746. },
  5747. {
  5748. name: "Macro",
  5749. height: math.unit(300, "feet")
  5750. },
  5751. {
  5752. name: "Megamacro",
  5753. height: math.unit(69, "miles")
  5754. },
  5755. ]
  5756. )
  5757. };
  5758. characterMakers["Arcturax"] = () => {
  5759. return makeCharacter(
  5760. "Arcturax",
  5761. "Arcturax",
  5762. {
  5763. side: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(2304, "lbs"),
  5766. name: "Side",
  5767. image: {
  5768. source: "./media/characters/arcturax/side.svg",
  5769. extra: 790/376 ,
  5770. bottom: 0.01
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Micro",
  5777. height: math.unit(2, "inch")
  5778. },
  5779. {
  5780. name: "Normal",
  5781. height: math.unit(6, "feet")
  5782. },
  5783. {
  5784. name: "Macro",
  5785. height: math.unit(39, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Megamacro",
  5790. height: math.unit(7, "miles")
  5791. },
  5792. ]
  5793. )
  5794. };
  5795. characterMakers["Sentri"] = () => {
  5796. return makeCharacter(
  5797. "Sentri",
  5798. "Sentri",
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(50, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/sentri/front.svg",
  5806. extra: 1750/1570 ,
  5807. bottom: 0.025
  5808. }
  5809. },
  5810. frontAlt: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(50, "lbs"),
  5813. name: "Front (Alt)",
  5814. image: {
  5815. source: "./media/characters/sentri/front-alt.svg",
  5816. extra: 1750/1570 ,
  5817. bottom: 0.025
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(15, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(2500, "feet")
  5830. }
  5831. ]
  5832. )
  5833. };
  5834. characterMakers["Corvin"] = () => {
  5835. return makeCharacter(
  5836. "Corvin",
  5837. "Sirffuzzylogik",
  5838. {
  5839. front: {
  5840. height: math.unit(5 + 8/12, "feet"),
  5841. weight: math.unit(130, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/corvin/front.svg",
  5845. extra: 1803/1629
  5846. }
  5847. },
  5848. frontShirt: {
  5849. height: math.unit(5 + 8/12, "feet"),
  5850. weight: math.unit(130, "lbs"),
  5851. name: "Front (Shirt)",
  5852. image: {
  5853. source: "./media/characters/corvin/front-shirt.svg",
  5854. extra: 1803/1629
  5855. }
  5856. },
  5857. frontPoncho: {
  5858. height: math.unit(5 + 8/12, "feet"),
  5859. weight: math.unit(130, "lbs"),
  5860. name: "Front (Poncho)",
  5861. image: {
  5862. source: "./media/characters/corvin/front-poncho.svg",
  5863. extra: 1803/1629
  5864. }
  5865. },
  5866. side: {
  5867. height: math.unit(5 + 8/12, "feet"),
  5868. weight: math.unit(130, "lbs"),
  5869. name: "Side",
  5870. image: {
  5871. source: "./media/characters/corvin/side.svg",
  5872. extra: 1012/945
  5873. }
  5874. },
  5875. back: {
  5876. height: math.unit(5 + 8/12, "feet"),
  5877. weight: math.unit(130, "lbs"),
  5878. name: "Back",
  5879. image: {
  5880. source: "./media/characters/corvin/back.svg",
  5881. extra: 1803/1629
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Micro",
  5888. height: math.unit(3, "inches")
  5889. },
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(5 + 8/12, "feet")
  5893. },
  5894. {
  5895. name: "Macro",
  5896. height: math.unit(300, "feet"),
  5897. default: true
  5898. },
  5899. {
  5900. name: "Megamacro",
  5901. height: math.unit(500, "miles")
  5902. }
  5903. ]
  5904. )
  5905. };
  5906. characterMakers["Q"] = () => {
  5907. return makeCharacter(
  5908. "Q",
  5909. "Q Walf",
  5910. {
  5911. front: {
  5912. height: math.unit(6, "feet"),
  5913. weight: math.unit(135, "lbs"),
  5914. name: "Front",
  5915. image: {
  5916. source: "./media/characters/q/front.svg",
  5917. extra: 854/752 ,
  5918. bottom: 0.005
  5919. }
  5920. },
  5921. back: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(130, "lbs"),
  5924. name: "Back",
  5925. image: {
  5926. source: "./media/characters/q/back.svg",
  5927. extra: 854/752
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(90, "feet"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Extra Macro",
  5939. height: math.unit(300, "feet"),
  5940. },
  5941. {
  5942. name: "BIG WALF",
  5943. height: math.unit(750, "feet"),
  5944. },
  5945. ]
  5946. )
  5947. };
  5948. characterMakers["Carley"] = () => {
  5949. return makeCharacter(
  5950. "Carley",
  5951. "QuakeYote",
  5952. {
  5953. front: {
  5954. height: math.unit(6, "feet"),
  5955. weight: math.unit(150, "lbs"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/carley/front.svg",
  5959. extra: 3927/3540 ,
  5960. bottom: 0.03
  5961. }
  5962. }
  5963. },
  5964. [
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(6 + 3/12, "feet")
  5968. },
  5969. {
  5970. name: "Macro",
  5971. height: math.unit(185, "feet"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Megamacro",
  5976. height: math.unit(8, "miles"),
  5977. },
  5978. ]
  5979. )
  5980. };
  5981. characterMakers["Citrine"] = () => {
  5982. return makeCharacter(
  5983. "Citrine",
  5984. "thunderstrike23",
  5985. {
  5986. front: {
  5987. height: math.unit(3, "feet"),
  5988. weight: math.unit(28, "lbs"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/citrine/front.svg"
  5992. }
  5993. }
  5994. },
  5995. [
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(3, "feet"),
  5999. default: true
  6000. }
  6001. ]
  6002. )
  6003. };
  6004. characterMakers["Aura Starwind"] = () => {
  6005. return makeCharacter(
  6006. "Aura Starwind",
  6007. "StrikeVixen",
  6008. {
  6009. front: {
  6010. height: math.unit(14, "feet"),
  6011. weight: math.unit(1450, "kg"),
  6012. name: "Front",
  6013. image: {
  6014. source: "./media/characters/aura-starwind/front.svg",
  6015. extra: 1455/1335
  6016. }
  6017. },
  6018. side: {
  6019. height: math.unit(14, "feet"),
  6020. weight: math.unit(1450, "kg"),
  6021. name: "Side",
  6022. image: {
  6023. source: "./media/characters/aura-starwind/side.svg",
  6024. extra: 1654/1497
  6025. }
  6026. },
  6027. taur: {
  6028. height: math.unit(18, "feet"),
  6029. weight: math.unit(5500, "kg"),
  6030. name: "Taur",
  6031. image: {
  6032. source: "./media/characters/aura-starwind/taur.svg",
  6033. extra: 1760/1650
  6034. }
  6035. },
  6036. feral: {
  6037. height: math.unit(46, "feet"),
  6038. weight: math.unit(25000, "kg"),
  6039. name: "Feral",
  6040. image: {
  6041. source: "./media/characters/aura-starwind/feral.svg"
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(14, "feet"),
  6049. default: true
  6050. },
  6051. {
  6052. name: "Macro",
  6053. height: math.unit(50, "meters")
  6054. },
  6055. {
  6056. name: "Megamacro",
  6057. height: math.unit(5000, "meters")
  6058. },
  6059. {
  6060. name: "Gigamacro",
  6061. height: math.unit(100000, "kilometers")
  6062. },
  6063. ]
  6064. )
  6065. };
  6066. characterMakers["Rivet"] = () => {
  6067. return makeCharacter(
  6068. "Rivet",
  6069. "Vonadi",
  6070. {
  6071. front: {
  6072. height: math.unit(2 + 7/12, "feet"),
  6073. weight: math.unit(32, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/rivet/front.svg",
  6077. extra: 1716/1658 ,
  6078. bottom: 0.03
  6079. }
  6080. },
  6081. foot: {
  6082. height: math.unit(0.551, "feet"),
  6083. name: "Rivet's Foot",
  6084. image: {
  6085. source: "./media/characters/rivet/foot.svg"
  6086. },
  6087. rename: true
  6088. }
  6089. },
  6090. [
  6091. {
  6092. name: "Micro",
  6093. height: math.unit(1.5, "inches"),
  6094. },
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(2 + 7/12, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(85, "feet")
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(2.2, "km")
  6107. }
  6108. ]
  6109. )
  6110. };
  6111. characterMakers["Coffee"] = () => {
  6112. return makeCharacter(
  6113. "Coffee",
  6114. "CoffeeDoggo",
  6115. {
  6116. front: {
  6117. height: math.unit(5 + 9/12, "feet"),
  6118. weight: math.unit(150, "lbs"),
  6119. name: "Front",
  6120. image: {
  6121. source: "./media/characters/coffee/front.svg",
  6122. extra: 3666/3032 ,
  6123. bottom: 0.04
  6124. }
  6125. },
  6126. foot: {
  6127. height: math.unit(1.29, "feet"),
  6128. name: "Foot",
  6129. image: {
  6130. source: "./media/characters/coffee/foot.svg"
  6131. }
  6132. },
  6133. },
  6134. [
  6135. {
  6136. name: "Micro",
  6137. height: math.unit(2, "inches"),
  6138. },
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(5 + 9/12, "feet"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(800, "feet")
  6147. },
  6148. {
  6149. name: "Megamacro",
  6150. height: math.unit(25, "miles")
  6151. }
  6152. ]
  6153. )
  6154. };
  6155. characterMakers["Chari-Gal"] = () => {
  6156. return makeCharacter(
  6157. "Chari-Gal",
  6158. "Knoem",
  6159. {
  6160. front: {
  6161. height: math.unit(6, "feet"),
  6162. weight: math.unit(200, "lbs"),
  6163. name: "Front",
  6164. image: {
  6165. source: "./media/characters/chari-gal/front.svg",
  6166. extra: 1568/1385 ,
  6167. bottom: 0.047
  6168. }
  6169. },
  6170. gigantamax: {
  6171. height: math.unit(6*16, "feet"),
  6172. weight: math.unit(200*16*16*16, "lbs"),
  6173. name: "Gigantamax",
  6174. image: {
  6175. source: "./media/characters/chari-gal/gigantamax.svg",
  6176. extra: 1124/888 ,
  6177. bottom: 0.03
  6178. }
  6179. },
  6180. },
  6181. [
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(5 + 7/12, "feet")
  6185. },
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(200, "feet"),
  6189. default: true
  6190. }
  6191. ]
  6192. )
  6193. };
  6194. characterMakers["Nova"] = () => {
  6195. return makeCharacter(
  6196. "Nova",
  6197. "CoffeeDoggo",
  6198. {
  6199. front: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(150, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/nova/front.svg",
  6205. extra: 5000/4722 ,
  6206. bottom: 0.02
  6207. }
  6208. }
  6209. },
  6210. [
  6211. {
  6212. name: "Micro-",
  6213. height: math.unit(0.8, "inches")
  6214. },
  6215. {
  6216. name: "Micro",
  6217. height: math.unit(2, "inches"),
  6218. default: true
  6219. },
  6220. ]
  6221. )
  6222. };
  6223. characterMakers["Argent"] = () => {
  6224. return makeCharacter(
  6225. "Argent",
  6226. "ArgentVZ",
  6227. {
  6228. front: {
  6229. height: math.unit(3 + 1/12, "feet"),
  6230. weight: math.unit(21.7, "lbs"),
  6231. name: "Front",
  6232. image: {
  6233. source: "./media/characters/argent/front.svg",
  6234. extra: 1565/1416 ,
  6235. bottom: 0.01
  6236. }
  6237. }
  6238. },
  6239. [
  6240. {
  6241. name: "Micro",
  6242. height: math.unit(2, "inches")
  6243. },
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(3 + 1/12, "feet"),
  6247. default: true
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(120, "feet")
  6252. },
  6253. ]
  6254. )
  6255. };
  6256. characterMakers["Mira al-Cul"] = () => {
  6257. return makeCharacter(
  6258. "Mira al-Cul",
  6259. "Mariokartsonicriders",
  6260. {
  6261. lamp: {
  6262. height: math.unit(7 * 1559 / 989, "feet"),
  6263. name: "Magic Lamp",
  6264. image: {
  6265. source: "./media/characters/mira-al-cul/lamp.svg",
  6266. extra: 1617/1559
  6267. }
  6268. },
  6269. front: {
  6270. height: math.unit(7, "feet"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/mira-al-cul/front.svg",
  6274. extra: 1044/990
  6275. }
  6276. },
  6277. },
  6278. [
  6279. {
  6280. name: "Heavily Restricted",
  6281. height: math.unit(7 * 1559 / 989, "feet")
  6282. },
  6283. {
  6284. name: "Freshly Freed",
  6285. height: math.unit(50 * 1559 / 989, "feet")
  6286. },
  6287. {
  6288. name: "World Encompassing",
  6289. height: math.unit(10000 * 1559 / 989, "miles")
  6290. },
  6291. {
  6292. name: "Galactic",
  6293. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6294. },
  6295. {
  6296. name: "Palmed Universe",
  6297. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Multiversal Matriarch",
  6302. height: math.unit(8.87e10, "yottameters")
  6303. },
  6304. {
  6305. name: "Void Mother",
  6306. height: math.unit(3.14e110, "yottaparsecs")
  6307. },
  6308. ]
  6309. )
  6310. };
  6311. characterMakers["Kuro-shi Uchū"] = () => {
  6312. return makeCharacter(
  6313. "Kuro-shi Uchū",
  6314. "Dragon Shark",
  6315. {
  6316. front: {
  6317. height: math.unit(17 + 1/12, "feet"),
  6318. weight: math.unit(476.2*5, "lbs"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/kuro-shi-uchū/front.svg",
  6322. extra: 2329/1835 ,
  6323. bottom: 0.02
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Micro",
  6330. height: math.unit(2, "inches")
  6331. },
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(12, "meters")
  6335. },
  6336. {
  6337. name: "Planetary",
  6338. height: math.unit(0.00929, "AU"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Universal",
  6343. height: math.unit(20, "gigaparsecs")
  6344. },
  6345. ]
  6346. )
  6347. };
  6348. characterMakers["Katherine"] = () => {
  6349. return makeCharacter(
  6350. "Katherine",
  6351. "chrisrules123",
  6352. {
  6353. front: {
  6354. height: math.unit(5 + 2/12, "feet"),
  6355. weight: math.unit(120, "lbs"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/katherine/front.svg",
  6359. extra: 2075/1969
  6360. }
  6361. },
  6362. dress: {
  6363. height: math.unit(5 + 2/12, "feet"),
  6364. weight: math.unit(120, "lbs"),
  6365. name: "Dress",
  6366. image: {
  6367. source: "./media/characters/katherine/dress.svg",
  6368. extra: 2258/2064
  6369. }
  6370. },
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(1, "inches"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5 + 2/12, "feet")
  6381. },
  6382. {
  6383. name: "Macro",
  6384. height: math.unit(100, "meters")
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(80, "miles")
  6389. },
  6390. ]
  6391. )
  6392. };
  6393. characterMakers["Yevis"] = () => {
  6394. return makeCharacter(
  6395. "Yevis",
  6396. "Mariokartsonicriders",
  6397. {
  6398. front: {
  6399. height: math.unit(7 + 8/12, "feet"),
  6400. weight: math.unit(250, "lbs"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/yevis/front.svg",
  6404. extra: 1938/1755
  6405. }
  6406. }
  6407. },
  6408. [
  6409. {
  6410. name: "Mortal",
  6411. height: math.unit(7 + 8/12, "feet")
  6412. },
  6413. {
  6414. name: "Battle",
  6415. height: math.unit(25 + 11/12, "feet")
  6416. },
  6417. {
  6418. name: "Wrath",
  6419. height: math.unit(1654 + 11/12, "feet")
  6420. },
  6421. {
  6422. name: "Planet Destroyer",
  6423. height: math.unit(12000, "miles")
  6424. },
  6425. {
  6426. name: "Galaxy Conqueror",
  6427. height: math.unit(1.45, "zettameters"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Universal War",
  6432. height: math.unit(184, "gigaparsecs")
  6433. },
  6434. {
  6435. name: "Eternity War",
  6436. height: math.unit(1.98e55, "yottaparsecs")
  6437. },
  6438. ]
  6439. )
  6440. };
  6441. characterMakers["Xavier"] = () => {
  6442. return makeCharacter(
  6443. "Xavier",
  6444. "zmaster587",
  6445. {
  6446. front: {
  6447. height: math.unit(5 + 8/12, "feet"),
  6448. weight: math.unit(63, "kg"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/xavier/front.svg",
  6452. extra: 944/883
  6453. }
  6454. },
  6455. frontStretch: {
  6456. height: math.unit(5 + 8/12, "feet"),
  6457. weight: math.unit(63, "kg"),
  6458. name: "Stretching",
  6459. image: {
  6460. source: "./media/characters/xavier/front-stretch.svg",
  6461. extra: 962/820
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(5 + 8/12, "feet")
  6469. },
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(100, "meters"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "McLargeHuge",
  6477. height: math.unit(10, "miles")
  6478. },
  6479. ]
  6480. )
  6481. };
  6482. characterMakers["Joshii"] = () => {
  6483. return makeCharacter(
  6484. "Joshii",
  6485. "DarkieTehJester",
  6486. {
  6487. front: {
  6488. height: math.unit(5 + 5/12, "feet"),
  6489. weight: math.unit(150, "lb"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/joshii/front.svg"
  6493. }
  6494. },
  6495. foot: {
  6496. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6497. name: "Foot",
  6498. image: {
  6499. source: "./media/characters/joshii/foot.svg"
  6500. }
  6501. },
  6502. },
  6503. [
  6504. {
  6505. name: "Micro",
  6506. height: math.unit(2, "inches")
  6507. },
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(5 + 5/12, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(785, "feet")
  6516. },
  6517. {
  6518. name: "Megamacro",
  6519. height: math.unit(24.5, "miles")
  6520. },
  6521. ]
  6522. )
  6523. };
  6524. characterMakers["Goddess Elizabeth"] = () => {
  6525. return makeCharacter(
  6526. "Goddess Elizabeth",
  6527. "DarkieTehJester",
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(150, "lb"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/goddess-elizabeth/front.svg"
  6535. }
  6536. },
  6537. foot: {
  6538. height: math.unit(6 * 0.25436 / 2, "feet"),
  6539. name: "Foot",
  6540. image: {
  6541. source: "./media/characters/goddess-elizabeth/foot.svg"
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Micro",
  6548. height: math.unit(12, "feet")
  6549. },
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(80, "miles"),
  6553. default: true
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(15000, "parsecs")
  6558. },
  6559. ]
  6560. )
  6561. };
  6562. characterMakers["Kara"] = () => {
  6563. return makeCharacter(
  6564. "Kara",
  6565. "Vonadi",
  6566. {
  6567. front: {
  6568. height: math.unit(5 + 9/12, "feet"),
  6569. weight: math.unit(144, "lb"),
  6570. name: "Front",
  6571. image: {
  6572. source: "./media/characters/kara/front.svg"
  6573. }
  6574. },
  6575. feet: {
  6576. height: math.unit(6/6.765, "feet"),
  6577. name: "Kara's Feet",
  6578. rename: true,
  6579. image: {
  6580. source: "./media/characters/kara/feet.svg"
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(5 + 9/12, "feet")
  6588. },
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(174, "feet"),
  6592. default: true
  6593. },
  6594. ]
  6595. )
  6596. };
  6597. characterMakers["Tyrone"] = () => {
  6598. return makeCharacter(
  6599. "Tyrone",
  6600. "nanakisan",
  6601. {
  6602. front: {
  6603. height: math.unit(18, "feet"),
  6604. weight: math.unit(4050, "lb"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/tyrone/front.svg",
  6608. extra: 2520/2402 ,
  6609. bottom: 0.025
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(18, "feet"),
  6617. default: true
  6618. },
  6619. {
  6620. name: "Macro",
  6621. height: math.unit(300, "feet")
  6622. },
  6623. ]
  6624. )
  6625. };
  6626. characterMakers["Danny"] = () => {
  6627. return makeCharacter(
  6628. "Danny",
  6629. "danny_gryphon",
  6630. {
  6631. front: {
  6632. height: math.unit(7 + 8/12, "feet"),
  6633. weight: math.unit(120, "lb"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/danny/front.svg",
  6637. extra: 1490/1350
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(7 + 8/12, "feet"),
  6642. weight: math.unit(120, "lb"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/danny/back.svg",
  6646. extra: 1490/1350
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(7 + 8/12, "feet"),
  6654. default: true
  6655. },
  6656. ]
  6657. )
  6658. };
  6659. characterMakers["Mallow"] = () => {
  6660. return makeCharacter(
  6661. "Mallow",
  6662. "Mallowchu",
  6663. {
  6664. front: {
  6665. height: math.unit(3.5, "inches"),
  6666. weight: math.unit(19, "grams"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/mallow/front.svg",
  6670. extra: 471/431
  6671. }
  6672. },
  6673. back: {
  6674. height: math.unit(3.5, "inches"),
  6675. weight: math.unit(19, "grams"),
  6676. name: "Back",
  6677. image: {
  6678. source: "./media/characters/mallow/back.svg",
  6679. extra: 471/431
  6680. }
  6681. },
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(3.5, "inches"),
  6687. default: true
  6688. },
  6689. ]
  6690. )
  6691. };
  6692. characterMakers["Starry Aqua"] = () => {
  6693. return makeCharacter(
  6694. "Starry Aqua",
  6695. "StarryAqua",
  6696. {
  6697. front: {
  6698. height: math.unit(9, "feet"),
  6699. weight: math.unit(230, "kg"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/starry-aqua/front.svg"
  6703. }
  6704. },
  6705. back: {
  6706. height: math.unit(9, "feet"),
  6707. weight: math.unit(230, "kg"),
  6708. name: "Back",
  6709. image: {
  6710. source: "./media/characters/starry-aqua/back.svg"
  6711. }
  6712. },
  6713. hand: {
  6714. height: math.unit(9 * 0.1168, "feet"),
  6715. name: "Hand",
  6716. image: {
  6717. source: "./media/characters/starry-aqua/hand.svg"
  6718. }
  6719. },
  6720. foot: {
  6721. height: math.unit(9 * 0.18, "feet"),
  6722. name: "Foot",
  6723. image: {
  6724. source: "./media/characters/starry-aqua/foot.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(3, "inches")
  6732. },
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(9, "feet")
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(300, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Megamacro",
  6744. height: math.unit(3200, "feet")
  6745. }
  6746. ]
  6747. )
  6748. };
  6749. characterMakers["Luka"] = () => {
  6750. return makeCharacter(
  6751. "Luka",
  6752. "UmbraHusky",
  6753. {
  6754. front: {
  6755. height: math.unit(6, "feet"),
  6756. weight: math.unit(230, "lb"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/luka/front.svg",
  6760. extra: 1,
  6761. bottom: 0.025
  6762. }
  6763. },
  6764. },
  6765. [
  6766. {
  6767. name: "Normal",
  6768. height: math.unit(12 + 8/12, "feet"),
  6769. default: true
  6770. },
  6771. {
  6772. name: "Minimacro",
  6773. height: math.unit(20, "feet")
  6774. },
  6775. {
  6776. name: "Macro",
  6777. height: math.unit(250, "feet")
  6778. },
  6779. {
  6780. name: "Megamacro",
  6781. height: math.unit(5, "miles")
  6782. },
  6783. {
  6784. name: "Gigamacro",
  6785. height: math.unit(8000, "miles")
  6786. },
  6787. ]
  6788. )
  6789. };
  6790. characterMakers["Natalie Nightring"] = () => {
  6791. return makeCharacter(
  6792. "Natalie Nightring",
  6793. "NatEdgecomb",
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(150, "lb"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/natalie-nightring/front.svg",
  6801. extra: 1,
  6802. bottom: 0.06
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Uh Oh",
  6809. height: math.unit(0.1, "mm")
  6810. },
  6811. {
  6812. name: "Small",
  6813. height: math.unit(3, "inches")
  6814. },
  6815. {
  6816. name: "Human Scale",
  6817. height: math.unit(6, "feet")
  6818. },
  6819. {
  6820. name: "Librarian",
  6821. height: math.unit(50, "feet"),
  6822. default: true
  6823. },
  6824. {
  6825. name: "Immense",
  6826. height: math.unit(200, "miles")
  6827. },
  6828. ]
  6829. )
  6830. };
  6831. characterMakers["Danni Rosie"] = () => {
  6832. return makeCharacter(
  6833. "Danni Rosie",
  6834. "colwag",
  6835. {
  6836. front: {
  6837. height: math.unit(6, "feet"),
  6838. weight: math.unit(180, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/danni-rosie/front.svg",
  6842. extra: 1260/1128 ,
  6843. bottom: 0.022
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Micro",
  6850. height: math.unit(2, "inches"),
  6851. default: true
  6852. },
  6853. ]
  6854. )
  6855. };
  6856. characterMakers["Samantha Kruse"] = () => {
  6857. return makeCharacter(
  6858. "Samantha Kruse",
  6859. "colwag",
  6860. {
  6861. front: {
  6862. height: math.unit(5 + 9/12, "feet"),
  6863. weight: math.unit(220, "lb"),
  6864. name: "Front",
  6865. image: {
  6866. source: "./media/characters/samantha-kruse/front.svg",
  6867. extra: (985 / 935) ,
  6868. bottom: 0.03
  6869. }
  6870. },
  6871. frontUndressed: {
  6872. height: math.unit(5 + 9/12, "feet"),
  6873. weight: math.unit(220, "lb"),
  6874. name: "Front (Undressed)",
  6875. image: {
  6876. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6877. extra: (973 / 923) ,
  6878. bottom: 0.025
  6879. }
  6880. },
  6881. fat: {
  6882. height: math.unit(5 + 9/12, "feet"),
  6883. weight: math.unit(900, "lb"),
  6884. name: "Front (Fat)",
  6885. image: {
  6886. source: "./media/characters/samantha-kruse/fat.svg",
  6887. extra: 2688/2561
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(5 + 9/12, "feet"),
  6895. default: true
  6896. }
  6897. ]
  6898. )
  6899. };
  6900. characterMakers["Amelia Rosie"] = () => {
  6901. return makeCharacter(
  6902. "Amelia Rosie",
  6903. "colwag",
  6904. {
  6905. back: {
  6906. height: math.unit(5 + 4/12, "feet"),
  6907. weight: math.unit(4963, "lb"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/amelia-rosie/back.svg",
  6911. extra: 1113/963 ,
  6912. bottom: 0.01
  6913. }
  6914. },
  6915. },
  6916. [
  6917. {
  6918. name: "Level 0",
  6919. height: math.unit(5 + 4/12, "feet")
  6920. },
  6921. {
  6922. name: "Level 1",
  6923. height: math.unit(164597, "feet"),
  6924. default: true
  6925. },
  6926. {
  6927. name: "Level 2",
  6928. height: math.unit(956243, "miles")
  6929. },
  6930. {
  6931. name: "Level 3",
  6932. height: math.unit(29421709423, "miles")
  6933. },
  6934. {
  6935. name: "Level 4",
  6936. height: math.unit(154, "lightyears")
  6937. },
  6938. {
  6939. name: "Level 5",
  6940. height: math.unit(4738272, "lightyears")
  6941. },
  6942. {
  6943. name: "Level 6",
  6944. height: math.unit(145787152896, "lightyears")
  6945. },
  6946. ]
  6947. )
  6948. };
  6949. characterMakers["Rook Kitara"] = () => {
  6950. return makeCharacter(
  6951. "Rook Kitara",
  6952. "TailsHigh",
  6953. {
  6954. front: {
  6955. height: math.unit(5 + 11/12, "feet"),
  6956. weight: math.unit(65, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/rook-kitara/front.svg",
  6960. extra: 1347/1274 ,
  6961. bottom: 0.005
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Totally Unfair",
  6968. height: math.unit(1.8, "mm")
  6969. },
  6970. {
  6971. name: "Lap Rookie",
  6972. height: math.unit(1.4, "feet")
  6973. },
  6974. {
  6975. name: "Normal",
  6976. height: math.unit(5 + 11/12, "feet"),
  6977. default: true
  6978. },
  6979. {
  6980. name: "How Did This Happen",
  6981. height: math.unit(80, "miles")
  6982. }
  6983. ]
  6984. )
  6985. };
  6986. characterMakers["Pisces"] = () => {
  6987. return makeCharacter(
  6988. "Pisces",
  6989. "Pisces_Kelp",
  6990. {
  6991. front: {
  6992. height: math.unit(7, "feet"),
  6993. weight: math.unit(300, "lb"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/pisces/front.svg",
  6997. extra: 2255/2115 ,
  6998. bottom: 0.03
  6999. }
  7000. },
  7001. back: {
  7002. height: math.unit(7, "feet"),
  7003. weight: math.unit(300, "lb"),
  7004. name: "Back",
  7005. image: {
  7006. source: "./media/characters/pisces/back.svg",
  7007. extra: 2146/2055 ,
  7008. bottom: 0.04
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Normal",
  7015. height: math.unit(7, "feet"),
  7016. default: true
  7017. },
  7018. {
  7019. name: "Swimming Pool",
  7020. height: math.unit(12.2, "meters")
  7021. },
  7022. {
  7023. name: "Olympic Swimming Pool",
  7024. height: math.unit(56.3, "meters")
  7025. },
  7026. {
  7027. name: "Lake Superior",
  7028. height: math.unit(93900, "meters")
  7029. },
  7030. {
  7031. name: "Mediterranean Sea",
  7032. height: math.unit(644457, "meters")
  7033. },
  7034. {
  7035. name: "World's Oceans",
  7036. height: math.unit(4567491, "meters")
  7037. },
  7038. ]
  7039. )
  7040. };
  7041. characterMakers["Zelas"] = () => {
  7042. return makeCharacter(
  7043. "Zelas",
  7044. "Cirez",
  7045. {
  7046. front: {
  7047. height: math.unit(2.3, "meters"),
  7048. weight: math.unit(120, "kg"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/zelas/front.svg"
  7052. }
  7053. },
  7054. side: {
  7055. height: math.unit(2.3, "meters"),
  7056. weight: math.unit(120, "kg"),
  7057. name: "Side",
  7058. image: {
  7059. source: "./media/characters/zelas/side.svg"
  7060. }
  7061. },
  7062. back: {
  7063. height: math.unit(2.3, "meters"),
  7064. weight: math.unit(120, "kg"),
  7065. name: "Back",
  7066. image: {
  7067. source: "./media/characters/zelas/back.svg"
  7068. }
  7069. },
  7070. foot: {
  7071. height: math.unit(1.116, "feet"),
  7072. name: "Foot",
  7073. image: {
  7074. source: "./media/characters/zelas/foot.svg"
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(2.3, "meters")
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(30, "meters"),
  7086. default: true
  7087. },
  7088. ]
  7089. )
  7090. };
  7091. characterMakers["Talbot"] = () => {
  7092. return makeCharacter(
  7093. "Talbot",
  7094. "Talbot",
  7095. {
  7096. front: {
  7097. height: math.unit(1, "inch"),
  7098. weight: math.unit(0.21, "grams"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/talbot/front.svg",
  7102. extra: 594/544
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Micro",
  7109. height: math.unit(1, "inch"),
  7110. default: true
  7111. },
  7112. ]
  7113. )
  7114. };
  7115. characterMakers["Fliss"] = () => {
  7116. return makeCharacter(
  7117. "Fliss",
  7118. "Fliss",
  7119. {
  7120. front: {
  7121. height: math.unit(3 + 3/12, "feet"),
  7122. weight: math.unit(51.8, "lb"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/fliss/front.svg",
  7126. extra: 840/640
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Teeny Tiny",
  7133. height: math.unit(1, "mm")
  7134. },
  7135. {
  7136. name: "Small",
  7137. height: math.unit(1, "inch"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Standard Sylveon",
  7142. height: math.unit(3 + 3/12, "feet")
  7143. },
  7144. {
  7145. name: "Large Nuisance",
  7146. height: math.unit(33, "feet")
  7147. },
  7148. {
  7149. name: "City Filler",
  7150. height: math.unit(3000, "feet")
  7151. },
  7152. {
  7153. name: "New Horizon",
  7154. height: math.unit(6000, "miles")
  7155. },
  7156. ]
  7157. )
  7158. };
  7159. characterMakers["Fleta"] = () => {
  7160. return makeCharacter(
  7161. "Fleta",
  7162. "TheFleta",
  7163. {
  7164. front: {
  7165. height: math.unit(5, "cm"),
  7166. weight: math.unit(1.94, "g"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/fleta/front.svg",
  7170. extra: 835/803
  7171. }
  7172. },
  7173. back: {
  7174. height: math.unit(5, "cm"),
  7175. weight: math.unit(1.94, "g"),
  7176. name: "Back",
  7177. image: {
  7178. source: "./media/characters/fleta/back.svg",
  7179. extra: 835/803
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Micro",
  7186. height: math.unit(5, "cm"),
  7187. default: true
  7188. },
  7189. ]
  7190. )
  7191. };
  7192. characterMakers["Dominic"] = () => {
  7193. return makeCharacter(
  7194. "Dominic",
  7195. "HypoTheDerg",
  7196. {
  7197. front: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(225, "lb"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/dominic/front.svg",
  7203. extra: 1770/1620 ,
  7204. bottom: 0.025
  7205. }
  7206. },
  7207. back: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(225, "lb"),
  7210. name: "Back",
  7211. image: {
  7212. source: "./media/characters/dominic/back.svg",
  7213. extra: 1745/1620 ,
  7214. bottom: 0.065
  7215. }
  7216. },
  7217. },
  7218. [
  7219. {
  7220. name: "Nano",
  7221. height: math.unit(0.1, "mm")
  7222. },
  7223. {
  7224. name: "Micro-",
  7225. height: math.unit(1, "mm")
  7226. },
  7227. {
  7228. name: "Micro",
  7229. height: math.unit(4, "inches")
  7230. },
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(6 + 4/12, "feet"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(115, "feet")
  7239. },
  7240. {
  7241. name: "Macro+",
  7242. height: math.unit(955, "feet")
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(8990, "feet")
  7247. },
  7248. {
  7249. name: "Gigmacro",
  7250. height: math.unit(9310, "miles")
  7251. },
  7252. {
  7253. name: "Teramacro",
  7254. height: math.unit(1567005010, "miles")
  7255. },
  7256. {
  7257. name: "Examacro",
  7258. height: math.unit(1425, "parsecs")
  7259. },
  7260. ]
  7261. )
  7262. };
  7263. characterMakers["Major Colonel"] = () => {
  7264. return makeCharacter(
  7265. "Major Colonel",
  7266. "Major Colonel",
  7267. {
  7268. front: {
  7269. height: math.unit(400, "feet"),
  7270. weight: math.unit(44444444, "lb"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/major-colonel/front.svg"
  7274. }
  7275. },
  7276. back: {
  7277. height: math.unit(400, "feet"),
  7278. weight: math.unit(44444444, "lb"),
  7279. name: "Back",
  7280. image: {
  7281. source: "./media/characters/major-colonel/back.svg"
  7282. }
  7283. },
  7284. },
  7285. [
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(400, "feet"),
  7289. default: true
  7290. },
  7291. ]
  7292. )
  7293. };
  7294. characterMakers["Axel Lycan"] = () => {
  7295. return makeCharacter(
  7296. "Axel Lycan",
  7297. "AxelLycan",
  7298. {
  7299. front: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(120, "lb"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/axel-lycan/front.svg",
  7305. extra: 1,
  7306. bottom: 0.08
  7307. }
  7308. },
  7309. },
  7310. [
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(1, "km"),
  7314. default: true
  7315. },
  7316. ]
  7317. )
  7318. };
  7319. characterMakers["Vanrel (Hyena)"] = () => {
  7320. return makeCharacter(
  7321. "Vanrel (Hyena)",
  7322. "Vanrel",
  7323. {
  7324. front: {
  7325. height: math.unit(5 + 9/12, "feet"),
  7326. weight: math.unit(175, "lb"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/vanrel-hyena/front.svg",
  7330. extra: 1086/1010 ,
  7331. bottom: 0.04
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(5 + 9/12, "feet"),
  7339. default: true
  7340. },
  7341. ]
  7342. )
  7343. };
  7344. characterMakers["Abbott Absol"] = () => {
  7345. return makeCharacter(
  7346. "Abbott Absol",
  7347. "Abbott Absol",
  7348. {
  7349. front: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(103, "lb"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/abbott-absol/front.svg",
  7355. extra: 2010/1842
  7356. }
  7357. },
  7358. },
  7359. [
  7360. {
  7361. name: "Megamicro",
  7362. height: math.unit(0.1, "mm")
  7363. },
  7364. {
  7365. name: "Micro",
  7366. height: math.unit(1, "inch")
  7367. },
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(6, "feet"),
  7371. default: true
  7372. },
  7373. ]
  7374. )
  7375. };
  7376. characterMakers["Hector"] = () => {
  7377. return makeCharacter(
  7378. "Hector",
  7379. "LibragonSlvr",
  7380. {
  7381. front: {
  7382. height: math.unit(6, "feet"),
  7383. weight: math.unit(264, "lb"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/hector/front.svg",
  7387. extra: 2280/2130 ,
  7388. bottom: 0.07
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(12.25, "foot"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(160, "feet")
  7401. },
  7402. ]
  7403. )
  7404. };
  7405. characterMakers["Sal"] = () => {
  7406. return makeCharacter(
  7407. "Sal",
  7408. "Bigdur",
  7409. {
  7410. front: {
  7411. height: math.unit(6, "feet"),
  7412. weight: math.unit(150, "lb"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/sal/front.svg",
  7416. extra: 1846/1699 ,
  7417. bottom: 0.04
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Megamacro",
  7424. height: math.unit(10, "miles"),
  7425. default: true
  7426. },
  7427. ]
  7428. )
  7429. };
  7430. characterMakers["Ranger"] = () => {
  7431. return makeCharacter(
  7432. "Ranger",
  7433. "Ranger",
  7434. {
  7435. front: {
  7436. height: math.unit(3, "meters"),
  7437. weight: math.unit(450, "kg"),
  7438. name: "front",
  7439. image: {
  7440. source: "./media/characters/ranger/front.svg",
  7441. extra: 2401/2243 ,
  7442. bottom: 0.05
  7443. }
  7444. },
  7445. },
  7446. [
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(3, "meters"),
  7450. default: true
  7451. },
  7452. ]
  7453. )
  7454. };
  7455. characterMakers["Theresa"] = () => {
  7456. return makeCharacter(
  7457. "Theresa",
  7458. "Ranger",
  7459. {
  7460. front: {
  7461. height: math.unit(14, "feet"),
  7462. weight: math.unit(800, "kg"),
  7463. name: "Front",
  7464. image: {
  7465. source: "./media/characters/theresa/front.svg",
  7466. extra: 3575/3346 ,
  7467. bottom: 0.03
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(14, "feet"),
  7475. default: true
  7476. },
  7477. ]
  7478. )
  7479. };
  7480. characterMakers["Ine"] = () => {
  7481. return makeCharacter(
  7482. "Ine",
  7483. "Ranger",
  7484. {
  7485. front: {
  7486. height: math.unit(6, "feet"),
  7487. weight: math.unit(3, "kg"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/ine/front.svg",
  7491. extra: 678/539 ,
  7492. bottom: 0.023
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(2.265, "feet"),
  7500. default: true
  7501. },
  7502. ]
  7503. )
  7504. };
  7505. characterMakers["Vial"] = () => {
  7506. return makeCharacter(
  7507. "Vial",
  7508. "Ranger",
  7509. {
  7510. front: {
  7511. height: math.unit(5, "feet"),
  7512. weight: math.unit(30, "kg"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/vial/front.svg",
  7516. extra: 1365/1277 ,
  7517. bottom: 0.04
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5, "feet"),
  7525. default: true
  7526. },
  7527. ]
  7528. )
  7529. };
  7530. characterMakers["Rovoska"] = () => {
  7531. return makeCharacter(
  7532. "Rovoska",
  7533. "Rovoska",
  7534. {
  7535. side: {
  7536. height: math.unit(3.4, "meters"),
  7537. weight: math.unit(1000, "lb"),
  7538. name: "Side",
  7539. image: {
  7540. source: "./media/characters/rovoska/side.svg",
  7541. extra: 4403/1515
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(3.4, "meters"),
  7549. default: true
  7550. },
  7551. ]
  7552. )
  7553. };
  7554. characterMakers["Gunner Rotthbauer"] = () => {
  7555. return makeCharacter(
  7556. "Gunner Rotthbauer",
  7557. "GunnerRott",
  7558. {
  7559. front: {
  7560. height: math.unit(8, "feet"),
  7561. weight: math.unit(315, "lb"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/gunner-rotthbauer/front.svg"
  7565. }
  7566. },
  7567. back: {
  7568. height: math.unit(8, "feet"),
  7569. weight: math.unit(315, "lb"),
  7570. name: "Back",
  7571. image: {
  7572. source: "./media/characters/gunner-rotthbauer/back.svg"
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(3.5, "inches")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(8, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(250, "feet")
  7589. },
  7590. {
  7591. name: "Megamacro",
  7592. height: math.unit(1, "AU")
  7593. },
  7594. ]
  7595. )
  7596. };
  7597. characterMakers["Allatia"] = () => {
  7598. return makeCharacter(
  7599. "Allatia",
  7600. "ilikefurrystoo",
  7601. {
  7602. front: {
  7603. height: math.unit(5 + 5/12, "feet"),
  7604. weight: math.unit(140, "lb"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/allatia/front.svg",
  7608. extra: 1227/1180 ,
  7609. bottom: 0.027
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(5 + 5/12, "feet")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(250, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(8, "miles")
  7626. }
  7627. ]
  7628. )
  7629. };
  7630. characterMakers["Tene"] = () => {
  7631. return makeCharacter(
  7632. "Tene",
  7633. "TenebrisDrox",
  7634. {
  7635. front: {
  7636. height: math.unit(6, "feet"),
  7637. weight: math.unit(120, "lb"),
  7638. name: "Front",
  7639. image: {
  7640. source: "./media/characters/tene/front.svg",
  7641. extra: 1728/1578 ,
  7642. bottom: 0.022
  7643. }
  7644. },
  7645. stomping: {
  7646. height: math.unit(2.025, "meters"),
  7647. weight: math.unit(120, "lb"),
  7648. name: "Stomping",
  7649. image: {
  7650. source: "./media/characters/tene/stomping.svg",
  7651. extra: 938/873 ,
  7652. bottom: 0.01
  7653. }
  7654. },
  7655. sitting: {
  7656. height: math.unit(1, "meter"),
  7657. weight: math.unit(120, "lb"),
  7658. name: "Sitting",
  7659. image: {
  7660. source: "./media/characters/tene/sitting.svg",
  7661. extra: 437/415 ,
  7662. bottom: 0.1
  7663. }
  7664. },
  7665. feral: {
  7666. height: math.unit(3.9, "feet"),
  7667. weight: math.unit(250, "lb"),
  7668. name: "Feral",
  7669. image: {
  7670. source: "./media/characters/tene/feral.svg",
  7671. extra: 717/458 ,
  7672. bottom: 0.179
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(6, "feet")
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(300, "feet"),
  7684. default: true
  7685. },
  7686. {
  7687. name: "Megamacro",
  7688. height: math.unit(5, "miles")
  7689. },
  7690. ]
  7691. )
  7692. };
  7693. characterMakers["Evander"] = () => {
  7694. return makeCharacter(
  7695. "Evander",
  7696. "KlezmerGryphon",
  7697. {
  7698. side: {
  7699. height: math.unit(6, "feet"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/evander/side.svg",
  7703. extra: 877/477
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(0.83, "meters"),
  7711. default: true
  7712. },
  7713. ]
  7714. )
  7715. };
  7716. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7717. return makeCharacter(
  7718. "Ka'Tamra \"Spaz\" Ci'Karan",
  7719. "Spazman",
  7720. {
  7721. front: {
  7722. height: math.unit(12, "feet"),
  7723. weight: math.unit(1000, "lb"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7727. extra: 1762/1611
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(12, "feet"),
  7732. weight: math.unit(1000, "lb"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7736. extra: 1762/1611
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(12, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Kaiju",
  7748. height: math.unit(150, "feet")
  7749. },
  7750. ]
  7751. )
  7752. };
  7753. characterMakers["Zero Alurus"] = () => {
  7754. return makeCharacter(
  7755. "Zero Alurus",
  7756. "",
  7757. {
  7758. front: {
  7759. height: math.unit(6, "feet"),
  7760. weight: math.unit(150, "lb"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/zero-alurus/front.svg"
  7764. }
  7765. },
  7766. back: {
  7767. height: math.unit(6, "feet"),
  7768. weight: math.unit(150, "lb"),
  7769. name: "Back",
  7770. image: {
  7771. source: "./media/characters/zero-alurus/back.svg"
  7772. }
  7773. },
  7774. },
  7775. [
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(5 + 10/12, "feet")
  7779. },
  7780. {
  7781. name: "Macro",
  7782. height: math.unit(60, "feet"),
  7783. default: true
  7784. },
  7785. {
  7786. name: "Macro+",
  7787. height: math.unit(450, "feet")
  7788. },
  7789. ]
  7790. )
  7791. };
  7792. characterMakers["Mega Shi"] = () => {
  7793. return makeCharacter(
  7794. "Mega Shi",
  7795. "MShi8027",
  7796. {
  7797. front: {
  7798. height: math.unit(6, "feet"),
  7799. weight: math.unit(200, "lb"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/mega-shi/front.svg",
  7803. extra: 1279/1250 ,
  7804. bottom: 0.02
  7805. }
  7806. },
  7807. back: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(200, "lb"),
  7810. name: "Back",
  7811. image: {
  7812. source: "./media/characters/mega-shi/back.svg",
  7813. extra: 1279/1250 ,
  7814. bottom: 0.02
  7815. }
  7816. },
  7817. },
  7818. [
  7819. {
  7820. name: "Micro",
  7821. height: math.unit(16 + 6/12, "feet")
  7822. },
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(660, "feet"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Megamacro",
  7830. height: math.unit(10, "miles")
  7831. },
  7832. {
  7833. name: "Planetary Launch",
  7834. height: math.unit(500, "miles")
  7835. },
  7836. {
  7837. name: "Interstellar",
  7838. height: math.unit(1e9, "miles")
  7839. },
  7840. {
  7841. name: "Leaving the Universe",
  7842. height: math.unit(1, "gigaparsec")
  7843. },
  7844. {
  7845. name: "Travelling Universes",
  7846. height: math.unit(30e15, "parsecs")
  7847. },
  7848. ]
  7849. )
  7850. };
  7851. characterMakers["Odyssey"] = () => {
  7852. return makeCharacter(
  7853. "Odyssey",
  7854. "Freschlauhs",
  7855. {
  7856. front: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(150, "lb"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/odyssey/front.svg",
  7862. extra: 1782/1582 ,
  7863. bottom: 0.01
  7864. }
  7865. },
  7866. side: {
  7867. height: math.unit(5.6, "feet"),
  7868. weight: math.unit(140, "lb"),
  7869. name: "Side",
  7870. image: {
  7871. source: "./media/characters/odyssey/side.svg",
  7872. extra: 6462/5700
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(5 + 4/12, "feet")
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(1, "km")
  7884. },
  7885. {
  7886. name: "Megamacro",
  7887. height: math.unit(3000, "km")
  7888. },
  7889. {
  7890. name: "Gigamacro",
  7891. height: math.unit(1, "AU"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Omniversal",
  7896. height: math.unit(100e14, "lightyears")
  7897. },
  7898. ]
  7899. )
  7900. };
  7901. characterMakers["Mekuto"] = () => {
  7902. return makeCharacter(
  7903. "Mekuto",
  7904. "Mekuto",
  7905. {
  7906. front: {
  7907. height: math.unit(6, "feet"),
  7908. weight: math.unit(300, "lb"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/mekuto/front.svg",
  7912. extra: 921/832 ,
  7913. bottom: 0.03
  7914. }
  7915. },
  7916. hand: {
  7917. height: math.unit(6/10.24, "feet"),
  7918. name: "Hand",
  7919. image: {
  7920. source: "./media/characters/mekuto/hand.svg"
  7921. }
  7922. },
  7923. foot: {
  7924. height: math.unit(6/5.05, "feet"),
  7925. name: "Foot",
  7926. image: {
  7927. source: "./media/characters/mekuto/foot.svg"
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Minimicro",
  7934. height: math.unit(0.2, "inches")
  7935. },
  7936. {
  7937. name: "Micro",
  7938. height: math.unit(1.5, "inches")
  7939. },
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(5 + 11/12, "feet"),
  7943. default: true
  7944. },
  7945. {
  7946. name: "Minimacro",
  7947. height: math.unit(17 + 9/12, "feet")
  7948. },
  7949. {
  7950. name: "Macro",
  7951. height: math.unit(177.5, "feet")
  7952. },
  7953. {
  7954. name: "Megamacro",
  7955. height: math.unit(152, "miles")
  7956. },
  7957. ]
  7958. )
  7959. };
  7960. characterMakers["Dafydd Tomos"] = () => {
  7961. return makeCharacter(
  7962. "Dafydd Tomos",
  7963. "SolarfoxArt",
  7964. {
  7965. front: {
  7966. height: math.unit(6.5, "inches"),
  7967. weight: math.unit(13, "oz"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/dafydd-tomos/front.svg",
  7971. extra: 2990/2603 ,
  7972. bottom: 0.03
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Micro",
  7979. height: math.unit(6.5, "inches"),
  7980. default: true
  7981. },
  7982. ]
  7983. )
  7984. };
  7985. characterMakers["Splinter"] = () => {
  7986. return makeCharacter(
  7987. "Splinter",
  7988. "SirSplinter",
  7989. {
  7990. front: {
  7991. height: math.unit(6, "feet"),
  7992. weight: math.unit(150, "lb"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/splinter/front.svg",
  7996. extra: 2990/2882 ,
  7997. bottom: 0.04
  7998. }
  7999. },
  8000. back: {
  8001. height: math.unit(6, "feet"),
  8002. weight: math.unit(150, "lb"),
  8003. name: "Back",
  8004. image: {
  8005. source: "./media/characters/splinter/back.svg",
  8006. extra: 2990/2882 ,
  8007. bottom: 0.04
  8008. }
  8009. },
  8010. },
  8011. [
  8012. {
  8013. name: "Normal",
  8014. height: math.unit(6, "feet")
  8015. },
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(230, "meters"),
  8019. default: true
  8020. },
  8021. ]
  8022. )
  8023. };
  8024. characterMakers["SnowGabumon"] = () => {
  8025. return makeCharacter(
  8026. "SnowGabumon",
  8027. "SnowGabumon",
  8028. {
  8029. front: {
  8030. height: math.unit(4 + 10/12, "feet"),
  8031. weight: math.unit(480, "lb"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/snow-gabumon/front.svg",
  8035. extra: 1140/963 ,
  8036. bottom: 0.058
  8037. }
  8038. },
  8039. back: {
  8040. height: math.unit(4 + 10/12, "feet"),
  8041. weight: math.unit(480, "lb"),
  8042. name: "Back",
  8043. image: {
  8044. source: "./media/characters/snow-gabumon/back.svg",
  8045. extra: 1115/962 ,
  8046. bottom: 0.041
  8047. }
  8048. },
  8049. frontUndresed: {
  8050. height: math.unit(4 + 10/12, "feet"),
  8051. weight: math.unit(480, "lb"),
  8052. name: "Front (Undressed)",
  8053. image: {
  8054. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8055. extra: 1061/960 ,
  8056. bottom: 0.045
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(1, "inch")
  8064. },
  8065. {
  8066. name: "Normal",
  8067. height: math.unit(4 + 10/12, "feet"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(200, "feet")
  8073. },
  8074. {
  8075. name: "Megamacro",
  8076. height: math.unit(120, "miles")
  8077. },
  8078. {
  8079. name: "Gigamacro",
  8080. height: math.unit(9800, "miles")
  8081. },
  8082. ]
  8083. )
  8084. };
  8085. characterMakers["Moody"] = () => {
  8086. return makeCharacter(
  8087. "Moody",
  8088. "MoodysterDog",
  8089. {
  8090. front: {
  8091. height: math.unit(1.7, "meters"),
  8092. weight: math.unit(140, "lb"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/moody/front.svg",
  8096. extra: 3226/3007 ,
  8097. bottom: 0.087
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Micro",
  8104. height: math.unit(1, "mm")
  8105. },
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(1.7, "meters"),
  8109. default: true
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(80, "meters")
  8114. },
  8115. {
  8116. name: "Macro+",
  8117. height: math.unit(500, "meters")
  8118. },
  8119. ]
  8120. )
  8121. };
  8122. characterMakers["Zyas"] = () => {
  8123. return makeCharacter(
  8124. "Zyas",
  8125. "Delathar",
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(150, "lb"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/zyas/front.svg",
  8133. extra: 1180/1120 ,
  8134. bottom: 0.045
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(10, "feet"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(500, "feet")
  8147. },
  8148. {
  8149. name: "Megamacro",
  8150. height: math.unit(5, "miles")
  8151. },
  8152. {
  8153. name: "Teramacro",
  8154. height: math.unit(150000, "miles")
  8155. },
  8156. ]
  8157. )
  8158. };
  8159. characterMakers["Cuon"] = () => {
  8160. return makeCharacter(
  8161. "Cuon",
  8162. "CollieCuon",
  8163. {
  8164. front: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(150, "lb"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/cuon/front.svg",
  8170. extra: 1390/1320 ,
  8171. bottom: 0.008
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Micro",
  8178. height: math.unit(3, "inches")
  8179. },
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(18 + 9/12, "feet"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(360, "feet")
  8188. },
  8189. {
  8190. name: "Megamacro",
  8191. height: math.unit(360, "miles")
  8192. },
  8193. ]
  8194. )
  8195. };
  8196. characterMakers["Nyanuxk"] = () => {
  8197. return makeCharacter(
  8198. "Nyanuxk",
  8199. "Nyanuxk",
  8200. {
  8201. front: {
  8202. height: math.unit(2.4, "meters"),
  8203. weight: math.unit(70, "kg"),
  8204. name: "Front",
  8205. image: {
  8206. source: "./media/characters/nyanuxk/front.svg",
  8207. extra: 1172/1084 ,
  8208. bottom: 0.065
  8209. }
  8210. },
  8211. side: {
  8212. height: math.unit(2.4, "meters"),
  8213. weight: math.unit(70, "kg"),
  8214. name: "Side",
  8215. image: {
  8216. source: "./media/characters/nyanuxk/side.svg",
  8217. extra: 1190/1132 ,
  8218. bottom: 0.007
  8219. }
  8220. },
  8221. back: {
  8222. height: math.unit(2.4, "meters"),
  8223. weight: math.unit(70, "kg"),
  8224. name: "Back",
  8225. image: {
  8226. source: "./media/characters/nyanuxk/back.svg",
  8227. extra: 1200/1141 ,
  8228. bottom: 0.015
  8229. }
  8230. },
  8231. foot: {
  8232. height: math.unit(0.52, "meters"),
  8233. name: "Foot",
  8234. image: {
  8235. source: "./media/characters/nyanuxk/foot.svg"
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(2, "cm")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(2.4, "meters"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Smaller Macro",
  8251. height: math.unit(120, "meters")
  8252. },
  8253. {
  8254. name: "Bigger Macro",
  8255. height: math.unit(1.2, "km")
  8256. },
  8257. {
  8258. name: "Megamacro",
  8259. height: math.unit(15, "kilometers")
  8260. },
  8261. {
  8262. name: "Gigamacro",
  8263. height: math.unit(2000, "km")
  8264. },
  8265. {
  8266. name: "Teramacro",
  8267. height: math.unit(500000, "km")
  8268. },
  8269. ]
  8270. )
  8271. };
  8272. characterMakers["Ailbhe"] = () => {
  8273. return makeCharacter(
  8274. "Ailbhe",
  8275. "KlezmerGryphon",
  8276. {
  8277. side: {
  8278. height: math.unit(6, "feet"),
  8279. name: "Side",
  8280. image: {
  8281. source: "./media/characters/ailbhe/side.svg",
  8282. extra: 757/464 ,
  8283. bottom: 0.041
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(1.07, "meters"),
  8291. default: true
  8292. },
  8293. ]
  8294. )
  8295. };
  8296. characterMakers["Zevulfius"] = () => {
  8297. return makeCharacter(
  8298. "Zevulfius",
  8299. "Nyanuxk",
  8300. {
  8301. front: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(120, "kg"),
  8304. name: "Front",
  8305. image: {
  8306. source: "./media/characters/zevulfius/front.svg",
  8307. extra: 965/903
  8308. }
  8309. },
  8310. side: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(120, "kg"),
  8313. name: "Side",
  8314. image: {
  8315. source: "./media/characters/zevulfius/side.svg",
  8316. extra: 939/900
  8317. }
  8318. },
  8319. back: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(120, "kg"),
  8322. name: "Back",
  8323. image: {
  8324. source: "./media/characters/zevulfius/back.svg",
  8325. extra: 918/854 ,
  8326. bottom: 0.005
  8327. }
  8328. },
  8329. foot: {
  8330. height: math.unit(6/3.72, "feet"),
  8331. name: "Foot",
  8332. image: {
  8333. source: "./media/characters/zevulfius/foot.svg"
  8334. }
  8335. },
  8336. },
  8337. [
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(750, "meters")
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(20, "km"),
  8345. default: true
  8346. },
  8347. {
  8348. name: "Gigamacro",
  8349. height: math.unit(2000, "km")
  8350. },
  8351. {
  8352. name: "Teramacro",
  8353. height: math.unit(250000, "km")
  8354. },
  8355. ]
  8356. )
  8357. };
  8358. characterMakers["Rikes"] = () => {
  8359. return makeCharacter(
  8360. "Rikes",
  8361. "VeryLargeDog",
  8362. {
  8363. front: {
  8364. height: math.unit(100, "feet"),
  8365. weight: math.unit(350, "kg"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/rikes/front.svg",
  8369. extra: 1565/1483 ,
  8370. bottom: 0.017
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Macro",
  8377. height: math.unit(100, "feet"),
  8378. default: true
  8379. },
  8380. ]
  8381. )
  8382. };
  8383. characterMakers["Adam Silver-Mane"] = () => {
  8384. return makeCharacter(
  8385. "Adam Silver-Mane",
  8386. "Dragonknightadam",
  8387. {
  8388. anthro: {
  8389. height: math.unit(8, "feet"),
  8390. weight: math.unit(120, "kg"),
  8391. name: "Anthro",
  8392. image: {
  8393. source: "./media/characters/adam-silver-mane/anthro.svg",
  8394. extra: 5743/5339 ,
  8395. bottom: 0.07
  8396. }
  8397. },
  8398. taur: {
  8399. height: math.unit(16, "feet"),
  8400. weight: math.unit(1500, "kg"),
  8401. name: "Taur",
  8402. image: {
  8403. source: "./media/characters/adam-silver-mane/taur.svg",
  8404. extra: 1713/1571 ,
  8405. bottom: 0.01
  8406. }
  8407. },
  8408. },
  8409. [
  8410. {
  8411. name: "Normal",
  8412. height: math.unit(8, "feet")
  8413. },
  8414. {
  8415. name: "Minimacro",
  8416. height: math.unit(80, "feet")
  8417. },
  8418. {
  8419. name: "Macro",
  8420. height: math.unit(800, "feet"),
  8421. default: true
  8422. },
  8423. {
  8424. name: "Megamacro",
  8425. height: math.unit(8000, "feet")
  8426. },
  8427. {
  8428. name: "Gigamacro",
  8429. height: math.unit(800, "miles")
  8430. },
  8431. {
  8432. name: "Teramacro",
  8433. height: math.unit(80000, "miles")
  8434. },
  8435. {
  8436. name: "Celestial",
  8437. height: math.unit(8e6, "miles")
  8438. },
  8439. {
  8440. name: "Star Dragon",
  8441. height: math.unit(800000, "parsecs")
  8442. },
  8443. {
  8444. name: "Godly",
  8445. height: math.unit(800, "teraparsecs")
  8446. },
  8447. ]
  8448. )
  8449. };
  8450. characterMakers["Ky'owin"] = () => {
  8451. return makeCharacter(
  8452. "Ky'owin",
  8453. "Kyowin",
  8454. {
  8455. front: {
  8456. height: math.unit(6, "feet"),
  8457. weight: math.unit(150, "lb"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/ky'owin/front.svg",
  8461. extra: 3888/3068 ,
  8462. bottom: 0.015
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(6 + 8/12, "feet")
  8470. },
  8471. {
  8472. name: "Large",
  8473. height: math.unit(68, "feet")
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(132, "feet")
  8478. },
  8479. {
  8480. name: "Macro+",
  8481. height: math.unit(340, "feet")
  8482. },
  8483. {
  8484. name: "Macro++",
  8485. height: math.unit(680, "feet"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Megamacro",
  8490. height: math.unit(1, "mile")
  8491. },
  8492. {
  8493. name: "Megamacro+",
  8494. height: math.unit(10, "miles")
  8495. },
  8496. ]
  8497. )
  8498. };
  8499. characterMakers["Mal"] = () => {
  8500. return makeCharacter(
  8501. "Mal",
  8502. "agrosarmadillo",
  8503. {
  8504. front: {
  8505. height: math.unit(4, "feet"),
  8506. weight: math.unit(50, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/mal/front.svg",
  8510. extra: 785/724 ,
  8511. bottom: 0.07
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Micro",
  8518. height: math.unit(4, "inches")
  8519. },
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(4, "feet"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(200, "feet")
  8528. },
  8529. ]
  8530. )
  8531. };
  8532. characterMakers["Jordan Deware"] = () => {
  8533. return makeCharacter(
  8534. "Jordan Deware",
  8535. "JordanDeware",
  8536. {
  8537. front: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(150, "lb"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/jordan-deware/front.svg",
  8543. extra: 1191/1012
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Nano",
  8550. height: math.unit(0.01, "mm")
  8551. },
  8552. {
  8553. name: "Minimicro",
  8554. height: math.unit(1, "mm")
  8555. },
  8556. {
  8557. name: "Micro",
  8558. height: math.unit(0.5, "inches")
  8559. },
  8560. {
  8561. name: "Normal",
  8562. height: math.unit(4, "feet"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Minimacro",
  8567. height: math.unit(40, "meters")
  8568. },
  8569. {
  8570. name: "Small Macro",
  8571. height: math.unit(400, "meters")
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(4, "miles")
  8576. },
  8577. {
  8578. name: "Megamacro",
  8579. height: math.unit(40, "miles")
  8580. },
  8581. {
  8582. name: "Megamacro+",
  8583. height: math.unit(400, "miles")
  8584. },
  8585. {
  8586. name: "Gigamacro",
  8587. height: math.unit(400000, "miles")
  8588. },
  8589. ]
  8590. )
  8591. };
  8592. characterMakers["Kimiko"] = () => {
  8593. return makeCharacter(
  8594. "Kimiko",
  8595. "HypoTheDerg",
  8596. {
  8597. side: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(150, "lb"),
  8600. name: "Side",
  8601. image: {
  8602. source: "./media/characters/kimiko/side.svg",
  8603. extra: 600/358
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(15, "feet"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(220, "feet")
  8616. },
  8617. {
  8618. name: "Macro+",
  8619. height: math.unit(1450, "feet")
  8620. },
  8621. {
  8622. name: "Megamacro",
  8623. height: math.unit(11500, "feet")
  8624. },
  8625. {
  8626. name: "Gigamacro",
  8627. height: math.unit(9500, "miles")
  8628. },
  8629. {
  8630. name: "Teramacro",
  8631. height: math.unit(2208005005, "miles")
  8632. },
  8633. {
  8634. name: "Examacro",
  8635. height: math.unit(2750, "parsecs")
  8636. },
  8637. {
  8638. name: "Zettamacro",
  8639. height: math.unit(101500, "parsecs")
  8640. },
  8641. ]
  8642. )
  8643. };
  8644. characterMakers["Andrew Sleepy"] = () => {
  8645. return makeCharacter(
  8646. "Andrew Sleepy",
  8647. "Proky",
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(70, "kg"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/andrew-sleepy/front.svg"
  8655. }
  8656. },
  8657. side: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(70, "kg"),
  8660. name: "Side",
  8661. image: {
  8662. source: "./media/characters/andrew-sleepy/side.svg"
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Micro",
  8669. height: math.unit(1, "mm"),
  8670. default: true
  8671. },
  8672. ]
  8673. )
  8674. };
  8675. characterMakers["Judio"] = () => {
  8676. return makeCharacter(
  8677. "Judio",
  8678. "HypoTheDerg",
  8679. {
  8680. front: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(150, "lb"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/judio/front.svg",
  8686. extra: 1258/1110
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(5 + 6/12, "feet")
  8694. },
  8695. {
  8696. name: "Macro",
  8697. height: math.unit(1000, "feet"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Megamacro",
  8702. height: math.unit(10, "miles")
  8703. },
  8704. ]
  8705. )
  8706. };
  8707. characterMakers["Nomaxice"] = () => {
  8708. return makeCharacter(
  8709. "Nomaxice",
  8710. "Nomaxice",
  8711. {
  8712. front: {
  8713. height: math.unit(6, "feet"),
  8714. weight: math.unit(68, "kg"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/nomaxice/front.svg",
  8718. extra: 1498/1073 ,
  8719. bottom: 0.075
  8720. }
  8721. },
  8722. foot: {
  8723. height: math.unit(1.1, "feet"),
  8724. name: "Foot",
  8725. image: {
  8726. source: "./media/characters/nomaxice/foot.svg"
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Micro",
  8733. height: math.unit(8, "cm")
  8734. },
  8735. {
  8736. name: "Norm",
  8737. height: math.unit(1.82, "m")
  8738. },
  8739. {
  8740. name: "Norm+",
  8741. height: math.unit(8.8, "feet")
  8742. },
  8743. {
  8744. name: "Big",
  8745. height: math.unit(8, "meters"),
  8746. default: true
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(18, "meters")
  8751. },
  8752. {
  8753. name: "Macro+",
  8754. height: math.unit(88, "meters")
  8755. },
  8756. ]
  8757. )
  8758. };
  8759. characterMakers["Dydros"] = () => {
  8760. return makeCharacter(
  8761. "Dydros",
  8762. "DatCyberDragon",
  8763. {
  8764. front: {
  8765. height: math.unit(12, "feet"),
  8766. weight: math.unit(1.5, "tons"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/dydros/front.svg",
  8770. extra: 863/800 ,
  8771. bottom: 0.015
  8772. }
  8773. },
  8774. back: {
  8775. height: math.unit(12, "feet"),
  8776. weight: math.unit(1.5, "tons"),
  8777. name: "Back",
  8778. image: {
  8779. source: "./media/characters/dydros/back.svg",
  8780. extra: 900/843 ,
  8781. bottom: 0.005
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(12, "feet"),
  8789. default: true
  8790. },
  8791. ]
  8792. )
  8793. };
  8794. characterMakers["Riggi"] = () => {
  8795. return makeCharacter(
  8796. "Riggi",
  8797. "Fyre_ace",
  8798. {
  8799. front: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(100, "kg"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/riggi/front.svg",
  8805. extra: 5787/5303
  8806. }
  8807. },
  8808. hyper: {
  8809. height: math.unit(6*5/3, "feet"),
  8810. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8811. name: "Hyper",
  8812. image: {
  8813. source: "./media/characters/riggi/hyper.svg",
  8814. extra: 3595/3485
  8815. }
  8816. },
  8817. },
  8818. [
  8819. {
  8820. name: "Small Macro",
  8821. height: math.unit(50, "feet")
  8822. },
  8823. {
  8824. name: "Default",
  8825. height: math.unit(200, "feet"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Loom",
  8830. height: math.unit(10000, "feet")
  8831. },
  8832. {
  8833. name: "Cruising Altitude",
  8834. height: math.unit(30000, "feet")
  8835. },
  8836. {
  8837. name: "Megamacro",
  8838. height: math.unit(100, "miles")
  8839. },
  8840. {
  8841. name: "Continent Sized",
  8842. height: math.unit(2800, "miles")
  8843. },
  8844. {
  8845. name: "Earth Sized",
  8846. height: math.unit(8000, "miles")
  8847. },
  8848. ]
  8849. )
  8850. };
  8851. characterMakers["Alexi"] = () => {
  8852. return makeCharacter(
  8853. "Alexi",
  8854. "AlexiWerewolf",
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(250, "lb"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/alexi/front.svg",
  8862. extra: 3483/3291 ,
  8863. bottom: 0.04
  8864. }
  8865. },
  8866. back: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(250, "lb"),
  8869. name: "Back",
  8870. image: {
  8871. source: "./media/characters/alexi/back.svg",
  8872. extra: 3533/3356 ,
  8873. bottom: 0.021
  8874. }
  8875. },
  8876. frontTransformed: {
  8877. height: math.unit(12.5, "feet"),
  8878. weight: math.unit(4000, "lb"),
  8879. name: "Front (Transformed)",
  8880. image: {
  8881. source: "./media/characters/alexi/front-transformed.svg",
  8882. extra: 5345/5100 ,
  8883. bottom: 0.03
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(3, "meters"),
  8891. default: true
  8892. },
  8893. {
  8894. name: "Minimacro",
  8895. height: math.unit(30, "meters")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(500, "meters")
  8900. },
  8901. {
  8902. name: "Megamacro",
  8903. height: math.unit(9000, "km")
  8904. },
  8905. {
  8906. name: "Teramacro",
  8907. height: math.unit(384000, "km")
  8908. },
  8909. ]
  8910. )
  8911. };
  8912. characterMakers["Kayroo"] = () => {
  8913. return makeCharacter(
  8914. "Kayroo",
  8915. "Kayroo",
  8916. {
  8917. front: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(150, "lb"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/kayroo/front.svg",
  8923. extra: 1153/1038 ,
  8924. bottom: 0.06
  8925. }
  8926. },
  8927. foot: {
  8928. height: math.unit(6, "feet"),
  8929. weight: math.unit(150, "lb"),
  8930. name: "Foot",
  8931. image: {
  8932. source: "./media/characters/kayroo/foot.svg"
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(8, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Minimacro",
  8944. height: math.unit(250, "feet")
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(2800, "feet")
  8949. },
  8950. {
  8951. name: "Megamacro",
  8952. height: math.unit(5200, "feet")
  8953. },
  8954. {
  8955. name: "Gigamacro",
  8956. height: math.unit(27000, "feet")
  8957. },
  8958. {
  8959. name: "Omega",
  8960. height: math.unit(45000, "feet")
  8961. },
  8962. ]
  8963. )
  8964. };
  8965. characterMakers["Rhys"] = () => {
  8966. return makeCharacter(
  8967. "Rhys",
  8968. "BigMountainCat",
  8969. {
  8970. front: {
  8971. height: math.unit(18, "feet"),
  8972. weight: math.unit(5800, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/rhys/front.svg",
  8976. extra: 3386/3090 ,
  8977. bottom: 0.07
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(18, "feet"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Working Size",
  8989. height: math.unit(200, "feet")
  8990. },
  8991. {
  8992. name: "Demolition Size",
  8993. height: math.unit(2000, "feet")
  8994. },
  8995. {
  8996. name: "Maximum Licensed Size",
  8997. height: math.unit(5, "miles")
  8998. },
  8999. {
  9000. name: "Maximum Observed Size",
  9001. height: math.unit(10, "yottameters")
  9002. },
  9003. ]
  9004. )
  9005. };
  9006. characterMakers["Toto"] = () => {
  9007. return makeCharacter(
  9008. "Toto",
  9009. "Totoly_Toto",
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(250, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/toto/front.svg",
  9017. extra: 527 / 479,
  9018. bottom: 0.05
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Micro",
  9025. height: math.unit(3, "feet")
  9026. },
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(10, "feet")
  9030. },
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(150, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Megamacro",
  9038. height: math.unit(1200, "feet")
  9039. },
  9040. ]
  9041. )
  9042. };
  9043. characterMakers["King"] = () => {
  9044. return makeCharacter(
  9045. "King",
  9046. "KingSizedLion",
  9047. {
  9048. back: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(150, "lb"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/king/back.svg"
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Micro",
  9060. height: math.unit(2, "inches")
  9061. },
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(8, "feet")
  9065. },
  9066. {
  9067. name: "Macro",
  9068. height: math.unit(200, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Megamacro",
  9073. height: math.unit(50, "miles")
  9074. },
  9075. ]
  9076. )
  9077. };
  9078. characterMakers["Cordite"] = () => {
  9079. return makeCharacter(
  9080. "Cordite",
  9081. "photonman2",
  9082. {
  9083. anthro: {
  9084. height: math.unit(6 + 5/12, "feet"),
  9085. weight: math.unit(280, "lb"),
  9086. name: "Anthro",
  9087. image: {
  9088. source: "./media/characters/cordite/anthro.svg",
  9089. extra: 1986/1905 ,
  9090. bottom: 0.025
  9091. }
  9092. },
  9093. feral: {
  9094. height: math.unit(2, "feet"),
  9095. weight: math.unit(90, "lb"),
  9096. name: "Feral",
  9097. image: {
  9098. source: "./media/characters/cordite/feral.svg",
  9099. extra: 1260/755 ,
  9100. bottom: 0.05
  9101. }
  9102. },
  9103. },
  9104. [
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(6 + 5/12, "feet"),
  9108. default: true
  9109. },
  9110. ]
  9111. )
  9112. };
  9113. characterMakers["Pianostrong"] = () => {
  9114. return makeCharacter(
  9115. "Pianostrong",
  9116. "Pianostrong",
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(150, "lb"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/pianostrong/front.svg",
  9124. extra: 6577/6254 ,
  9125. bottom: 0.02
  9126. }
  9127. },
  9128. side: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(150, "lb"),
  9131. name: "Side",
  9132. image: {
  9133. source: "./media/characters/pianostrong/side.svg",
  9134. extra: 6106/5730
  9135. }
  9136. },
  9137. back: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(150, "lb"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/pianostrong/back.svg",
  9143. extra: 6085/5733 ,
  9144. bottom: 0.01
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(100, "feet")
  9152. },
  9153. {
  9154. name: "Macro+",
  9155. height: math.unit(300, "feet"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Macro++",
  9160. height: math.unit(1000, "feet")
  9161. },
  9162. ]
  9163. )
  9164. };
  9165. characterMakers["Kona"] = () => {
  9166. return makeCharacter(
  9167. "Kona",
  9168. "Konadh",
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/kona/front.svg",
  9176. extra: 2960/2629 ,
  9177. bottom: 0.005
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(11 + 8/12, "feet")
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(850, "feet"),
  9189. default: true
  9190. },
  9191. {
  9192. name: "Macro+",
  9193. height: math.unit(1.5, "km"),
  9194. default: true
  9195. },
  9196. {
  9197. name: "Megamacro",
  9198. height: math.unit(80, "miles")
  9199. },
  9200. {
  9201. name: "Gigamacro",
  9202. height: math.unit(3500, "miles")
  9203. },
  9204. ]
  9205. )
  9206. };
  9207. characterMakers["Levi"] = () => {
  9208. return makeCharacter(
  9209. "Levi",
  9210. "LeviCurrie",
  9211. {
  9212. side: {
  9213. height: math.unit(1.9, "meters"),
  9214. weight: math.unit(326, "kg"),
  9215. name: "Side",
  9216. image: {
  9217. source: "./media/characters/levi/side.svg",
  9218. extra: 1704/1334 ,
  9219. bottom: 0.02
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(1.9, "meters"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(20, "meters")
  9232. },
  9233. {
  9234. name: "Macro+",
  9235. height: math.unit(200, "meters")
  9236. },
  9237. {
  9238. name: "Megamacro",
  9239. height: math.unit(2, "km")
  9240. },
  9241. {
  9242. name: "Megamacro+",
  9243. height: math.unit(20, "km")
  9244. },
  9245. {
  9246. name: "Gigamacro",
  9247. height: math.unit(2500, "km")
  9248. },
  9249. {
  9250. name: "Gigamacro+",
  9251. height: math.unit(120000, "km")
  9252. },
  9253. {
  9254. name: "Teramacro",
  9255. height: math.unit(7.77e6, "km")
  9256. },
  9257. ]
  9258. )
  9259. };
  9260. characterMakers["BMC"] = () => {
  9261. return makeCharacter(
  9262. "BMC",
  9263. "BigMountainCat",
  9264. {
  9265. front: {
  9266. height: math.unit(6 + 4/12, "feet"),
  9267. weight: math.unit(188, "lb"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/bmc/front.svg",
  9271. extra: 1067/1022 ,
  9272. bottom: 0.047
  9273. }
  9274. },
  9275. },
  9276. [
  9277. {
  9278. name: "Human-sized",
  9279. height: math.unit(6 + 4/12, "feet")
  9280. },
  9281. {
  9282. name: "Small",
  9283. height: math.unit(250, "feet")
  9284. },
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(1250, "feet"),
  9288. default: true
  9289. },
  9290. {
  9291. name: "Good Day",
  9292. height: math.unit(88, "miles")
  9293. },
  9294. {
  9295. name: "Largest Measured Size",
  9296. height: math.unit(11.2e6, "lightyears")
  9297. },
  9298. ]
  9299. )
  9300. };
  9301. characterMakers["Sven the Kaiju"] = () => {
  9302. return makeCharacter(
  9303. "Sven the Kaiju",
  9304. "OfActionMan",
  9305. {
  9306. front: {
  9307. height: math.unit(20, "feet"),
  9308. weight: math.unit(2016, "kg"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/sven-the-kaiju/front.svg",
  9312. extra: 1479/1449 ,
  9313. bottom: 0.05
  9314. }
  9315. },
  9316. },
  9317. [
  9318. {
  9319. name: "Fairy",
  9320. height: math.unit(6, "inches")
  9321. },
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(20, "feet"),
  9325. default: true
  9326. },
  9327. {
  9328. name: "Rampage",
  9329. height: math.unit(200, "feet")
  9330. },
  9331. {
  9332. name: "Archfey Forest Guardian",
  9333. height: math.unit(1, "mile")
  9334. },
  9335. ]
  9336. )
  9337. };
  9338. characterMakers["Marik"] = () => {
  9339. return makeCharacter(
  9340. "Marik",
  9341. "Acrarun",
  9342. {
  9343. front: {
  9344. height: math.unit(4, "meters"),
  9345. weight: math.unit(2, "tons"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/marik/front.svg",
  9349. extra: 1057/1003 ,
  9350. bottom: 0.08
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(4, "meters"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(20, "meters")
  9363. },
  9364. {
  9365. name: "Megamacro",
  9366. height: math.unit(50, "km")
  9367. },
  9368. {
  9369. name: "Gigamacro",
  9370. height: math.unit(100, "km")
  9371. },
  9372. {
  9373. name: "Alpha Macro",
  9374. height: math.unit(7.88e7, "yottameters")
  9375. },
  9376. ]
  9377. )
  9378. };
  9379. characterMakers["Mel"] = () => {
  9380. return makeCharacter(
  9381. "Mel",
  9382. "SomedayNotSoon",
  9383. {
  9384. front: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(110, "lb"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/mel/front.svg",
  9390. extra: 736/617 ,
  9391. bottom: 0.017
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Pico",
  9398. height: math.unit(3, "pm")
  9399. },
  9400. {
  9401. name: "Nano",
  9402. height: math.unit(3, "nm")
  9403. },
  9404. {
  9405. name: "Micro",
  9406. height: math.unit(0.3, "mm"),
  9407. default: true
  9408. },
  9409. {
  9410. name: "Micro+",
  9411. height: math.unit(3, "mm")
  9412. },
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(5 + 10.5/12, "feet")
  9416. },
  9417. ]
  9418. )
  9419. };
  9420. characterMakers["Lykonous"] = () => {
  9421. return makeCharacter(
  9422. "Lykonous",
  9423. "Lykonous",
  9424. {
  9425. kaiju: {
  9426. height: math.unit(1.75, "meters"),
  9427. weight: math.unit(55, "kg"),
  9428. name: "Kaiju",
  9429. image: {
  9430. source: "./media/characters/lykonous/kaiju.svg",
  9431. extra: 1055/946 ,
  9432. bottom: 0.135
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(2.5, "meters"),
  9440. default: true
  9441. },
  9442. {
  9443. name: "Kaiju Dragon",
  9444. height: math.unit(60, "meters")
  9445. },
  9446. {
  9447. name: "Mega Kaiju",
  9448. height: math.unit(120, "km")
  9449. },
  9450. {
  9451. name: "Giga Kaiju",
  9452. height: math.unit(200, "megameters")
  9453. },
  9454. {
  9455. name: "Terra Kaiju",
  9456. height: math.unit(400, "gigameters")
  9457. },
  9458. {
  9459. name: "Kaiju Dragon God",
  9460. height: math.unit(13000, "exaparsecs")
  9461. },
  9462. ]
  9463. )
  9464. };
  9465. characterMakers["Blü"] = () => {
  9466. return makeCharacter(
  9467. "Blü",
  9468. "BluTheFagon",
  9469. {
  9470. front: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(150, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/blü/front.svg",
  9476. extra: 1883/1564 ,
  9477. bottom: 0.031
  9478. }
  9479. },
  9480. },
  9481. [
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(13, "feet"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "Big Boi",
  9489. height: math.unit(150, "meters")
  9490. },
  9491. {
  9492. name: "Mini Stomper",
  9493. height: math.unit(300, "meters")
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(1000, "meters")
  9498. },
  9499. {
  9500. name: "Megamacro",
  9501. height: math.unit(11000, "meters")
  9502. },
  9503. {
  9504. name: "Gigamacro",
  9505. height: math.unit(11000, "km")
  9506. },
  9507. {
  9508. name: "Teramacro",
  9509. height: math.unit(420000, "km")
  9510. },
  9511. {
  9512. name: "Examacro",
  9513. height: math.unit(120, "parsecs")
  9514. },
  9515. {
  9516. name: "God Tho",
  9517. height: math.unit(98000000000, "parsecs")
  9518. },
  9519. ]
  9520. )
  9521. };
  9522. characterMakers["Scales"] = () => {
  9523. return makeCharacter(
  9524. "Scales",
  9525. "Scales",
  9526. {
  9527. taurFront: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(200, "lb"),
  9530. name: "Taur (Front)",
  9531. image: {
  9532. source: "./media/characters/scales/taur-front.svg",
  9533. extra: 1,
  9534. bottom: 0.05
  9535. }
  9536. },
  9537. taurBack: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(200, "lb"),
  9540. name: "Taur (Back)",
  9541. image: {
  9542. source: "./media/characters/scales/taur-back.svg",
  9543. extra: 1,
  9544. bottom: 0.08
  9545. }
  9546. },
  9547. anthro: {
  9548. height: math.unit(6*7/12, "feet"),
  9549. weight: math.unit(100, "lb"),
  9550. name: "Anthro",
  9551. image: {
  9552. source: "./media/characters/scales/anthro.svg",
  9553. extra: 1,
  9554. bottom: 0.06
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(12, "feet"),
  9562. default: true
  9563. },
  9564. ]
  9565. )
  9566. };
  9567. characterMakers["Koragos"] = () => {
  9568. return makeCharacter(
  9569. "Koragos",
  9570. "Koragos",
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(150, "lb"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/koragos/front.svg",
  9578. extra: 841/794 ,
  9579. bottom: 0.035
  9580. }
  9581. },
  9582. back: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(150, "lb"),
  9585. name: "Back",
  9586. image: {
  9587. source: "./media/characters/koragos/back.svg",
  9588. extra: 841/810 ,
  9589. bottom: 0.022
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(6 + 11/12, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(490, "feet")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(10, "miles")
  9606. },
  9607. {
  9608. name: "Gigamacro",
  9609. height: math.unit(50, "miles")
  9610. },
  9611. ]
  9612. )
  9613. };
  9614. characterMakers["Xylrem"] = () => {
  9615. return makeCharacter(
  9616. "Xylrem",
  9617. "",
  9618. {
  9619. front: {
  9620. height: math.unit(6, "feet"),
  9621. weight: math.unit(250, "lb"),
  9622. name: "Front",
  9623. image: {
  9624. source: "./media/characters/xylrem/front.svg",
  9625. extra: 3323/3050 ,
  9626. bottom: 0.065
  9627. }
  9628. },
  9629. },
  9630. [
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(4, "feet")
  9634. },
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(16, "feet"),
  9638. default: true
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(2720, "feet")
  9643. },
  9644. {
  9645. name: "Megamacro",
  9646. height: math.unit(25000, "miles")
  9647. },
  9648. ]
  9649. )
  9650. };
  9651. characterMakers["Ikideru"] = () => {
  9652. return makeCharacter(
  9653. "Ikideru",
  9654. "Ikideru",
  9655. {
  9656. front: {
  9657. height: math.unit(8, "feet"),
  9658. weight: math.unit(250, "kg"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/ikideru/front.svg",
  9662. extra: 930/870 ,
  9663. bottom: 0.087
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(8, "feet"),
  9668. weight: math.unit(250, "kg"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/ikideru/back.svg",
  9672. extra: 919/852 ,
  9673. bottom: 0.055
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Rare",
  9680. height: math.unit(8, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Playful Loom",
  9685. height: math.unit(80, "feet")
  9686. },
  9687. {
  9688. name: "City Leaner",
  9689. height: math.unit(230, "feet")
  9690. },
  9691. {
  9692. name: "Megamacro",
  9693. height: math.unit(2500, "feet")
  9694. },
  9695. {
  9696. name: "Gigamacro",
  9697. height: math.unit(26400, "feet")
  9698. },
  9699. {
  9700. name: "Tectonic Shifter",
  9701. height: math.unit(1.7, "megameters")
  9702. },
  9703. {
  9704. name: "Planet Carer",
  9705. height: math.unit(21, "megameters")
  9706. },
  9707. {
  9708. name: "God",
  9709. height: math.unit(11157.22, "parsecs")
  9710. },
  9711. ]
  9712. )
  9713. };
  9714. characterMakers["Neo"] = () => {
  9715. return makeCharacter(
  9716. "Neo",
  9717. "neonsnake",
  9718. {
  9719. front: {
  9720. height: math.unit(6, "feet"),
  9721. weight: math.unit(120, "lb"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/neo/front.svg"
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Micro",
  9731. height: math.unit(2, "inches"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Human Size",
  9736. height: math.unit(5 + 8/12, "feet")
  9737. },
  9738. ]
  9739. )
  9740. };
  9741. characterMakers["Chauncey (Chantz)"] = () => {
  9742. return makeCharacter(
  9743. "Chauncey (Chantz)",
  9744. "RyGaLo",
  9745. {
  9746. front: {
  9747. height: math.unit(13 + 10/12, "feet"),
  9748. weight: math.unit(5320, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/chauncey-chantz/front.svg",
  9752. extra: 1587/1435 ,
  9753. bottom: 0.02
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(13 + 10/12, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(45, "feet")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(250, "miles")
  9770. },
  9771. {
  9772. name: "Planetary",
  9773. height: math.unit(10000, "miles")
  9774. },
  9775. {
  9776. name: "Galactic",
  9777. height: math.unit(40000, "parsecs")
  9778. },
  9779. {
  9780. name: "Universal",
  9781. height: math.unit(1, "yottameter")
  9782. },
  9783. ]
  9784. )
  9785. };
  9786. characterMakers["Epifox"] = () => {
  9787. return makeCharacter(
  9788. "Epifox",
  9789. "Epifox",
  9790. {
  9791. front: {
  9792. height: math.unit(6, "feet"),
  9793. weight: math.unit(150, "lb"),
  9794. name: "Front",
  9795. image: {
  9796. source: "./media/characters/epifox/front.svg",
  9797. extra: 1,
  9798. bottom: 0.075
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Micro",
  9805. height: math.unit(6, "inches")
  9806. },
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(12, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Macro",
  9814. height: math.unit(3810, "feet")
  9815. },
  9816. {
  9817. name: "Megamacro",
  9818. height: math.unit(500, "miles")
  9819. },
  9820. ]
  9821. )
  9822. };
  9823. characterMakers["Colin T."] = () => {
  9824. return makeCharacter(
  9825. "Colin T.",
  9826. "DragonLugia58",
  9827. {
  9828. front: {
  9829. height: math.unit(1.8796, "m"),
  9830. weight: math.unit(230, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/colin-t/front.svg",
  9834. extra: 1272/1193 ,
  9835. bottom: 0.07
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Micro",
  9842. height: math.unit(0.571, "meters")
  9843. },
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(1.8796, "meters"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Tall",
  9851. height: math.unit(4, "meters")
  9852. },
  9853. {
  9854. name: "Macro",
  9855. height: math.unit(67.241, "meters")
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(371.856, "meters")
  9860. },
  9861. {
  9862. name: "Planetary",
  9863. height: math.unit(12631.5689, "km")
  9864. },
  9865. ]
  9866. )
  9867. };
  9868. characterMakers["Matvei"] = () => {
  9869. return makeCharacter(
  9870. "Matvei",
  9871. "Matt_Da_Master",
  9872. {
  9873. front: {
  9874. height: math.unit(1.85, "meters"),
  9875. weight: math.unit(80, "kg"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/matvei/front.svg",
  9879. extra: 614/594 ,
  9880. bottom: 0.01
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(1.85, "meters"),
  9888. default: true
  9889. },
  9890. ]
  9891. )
  9892. };
  9893. characterMakers["Quincy"] = () => {
  9894. return makeCharacter(
  9895. "Quincy",
  9896. "Paradisaea",
  9897. {
  9898. front: {
  9899. height: math.unit(5 + 9/12, "feet"),
  9900. weight: math.unit(70, "lb"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/quincy/front.svg",
  9904. extra: 3041/2751
  9905. }
  9906. },
  9907. back: {
  9908. height: math.unit(5 + 9/12, "feet"),
  9909. weight: math.unit(70, "lb"),
  9910. name: "Back",
  9911. image: {
  9912. source: "./media/characters/quincy/back.svg",
  9913. extra: 3041/2751
  9914. }
  9915. },
  9916. flying: {
  9917. height: math.unit(5 + 4/12, "feet"),
  9918. weight: math.unit(70, "lb"),
  9919. name: "Flying",
  9920. image: {
  9921. source: "./media/characters/quincy/flying.svg",
  9922. extra: 1044/930
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(3, "cm")
  9930. },
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(5 + 9/12, "feet")
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(200, "meters"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(1000, "meters")
  9943. },
  9944. ]
  9945. )
  9946. };
  9947. characterMakers["Vanrel"] = () => {
  9948. return makeCharacter(
  9949. "Vanrel",
  9950. "KuiPaws",
  9951. {
  9952. front: {
  9953. height: math.unit(4 + 7/12, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/vanrel/front.svg",
  9958. extra: 1,
  9959. bottom: 0.02
  9960. }
  9961. },
  9962. side: {
  9963. height: math.unit(4 + 7/12, "feet"),
  9964. weight: math.unit(150, "lb"),
  9965. name: "Side",
  9966. image: {
  9967. source: "./media/characters/vanrel/side.svg",
  9968. extra: 1,
  9969. bottom: 0.025
  9970. }
  9971. },
  9972. tome: {
  9973. height: math.unit(1.35, "feet"),
  9974. weight: math.unit(10, "lb"),
  9975. name: "Vanrel's Tome",
  9976. rename: true,
  9977. image: {
  9978. source: "./media/characters/vanrel/tome.svg"
  9979. }
  9980. },
  9981. beans: {
  9982. height: math.unit(0.89, "feet"),
  9983. name: "Beans",
  9984. image: {
  9985. source: "./media/characters/vanrel/beans.svg"
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(4 + 7/12, "feet"),
  9993. default: true
  9994. },
  9995. ]
  9996. )
  9997. };
  9998. characterMakers["Kuiper Vanrel"] = () => {
  9999. return makeCharacter(
  10000. "Kuiper Vanrel",
  10001. "KuiPaws",
  10002. {
  10003. front: {
  10004. height: math.unit(7 + 5/12, "feet"),
  10005. weight: math.unit(150, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/kuiper-vanrel/front.svg",
  10009. extra: 1118/1068 ,
  10010. bottom: 0.09
  10011. }
  10012. },
  10013. foot: {
  10014. height: math.unit(0.55, "meters"),
  10015. name: "Foot",
  10016. image: {
  10017. source: "./media/characters/kuiper-vanrel/foot.svg",
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(7 + 5/12, "feet"),
  10025. default: true
  10026. },
  10027. ]
  10028. )
  10029. };
  10030. characterMakers["Keset Vanrel"] = () => {
  10031. return makeCharacter(
  10032. "Keset Vanrel",
  10033. "KuiPaws",
  10034. {
  10035. front: {
  10036. height: math.unit(8 + 5/12, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/keset-vanrel/front.svg",
  10041. extra: 1150/1084 ,
  10042. bottom: 0.05
  10043. }
  10044. },
  10045. hand: {
  10046. height: math.unit(0.6, "meters"),
  10047. name: "Hand",
  10048. image: {
  10049. source: "./media/characters/keset-vanrel/hand.svg"
  10050. }
  10051. },
  10052. foot: {
  10053. height: math.unit(0.94978, "meters"),
  10054. name: "Foot",
  10055. image: {
  10056. source: "./media/characters/keset-vanrel/foot.svg"
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(8 + 5/12, "feet"),
  10064. default: true
  10065. },
  10066. ]
  10067. )
  10068. };
  10069. characterMakers["Neos"] = () => {
  10070. return makeCharacter(
  10071. "Neos",
  10072. "CakeyCake",
  10073. {
  10074. front: {
  10075. height: math.unit(6, "feet"),
  10076. weight: math.unit(150, "lb"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/neos/front.svg",
  10080. extra: 1696/992 ,
  10081. bottom: 0.14
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(54, "cm"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(100, "m")
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(10, "km")
  10098. },
  10099. {
  10100. name: "Megamacro+",
  10101. height: math.unit(100, "km")
  10102. },
  10103. {
  10104. name: "Gigamacro",
  10105. height: math.unit(100, "Mm")
  10106. },
  10107. {
  10108. name: "Teramacro",
  10109. height: math.unit(100, "Gm")
  10110. },
  10111. {
  10112. name: "Examacro",
  10113. height: math.unit(100, "Em")
  10114. },
  10115. {
  10116. name: "Godly",
  10117. height: math.unit(10000, "Ym")
  10118. },
  10119. {
  10120. name: "Beyond Godly",
  10121. height: math.unit(10000000, "Ym")
  10122. },
  10123. ]
  10124. )
  10125. };
  10126. characterMakers["Sammy Mouse"] = () => {
  10127. return makeCharacter(
  10128. "Sammy Mouse",
  10129. "Piedunk",
  10130. {
  10131. feminine: {
  10132. height: math.unit(5, "feet"),
  10133. weight: math.unit(100, "lb"),
  10134. name: "Feminine",
  10135. image: {
  10136. source: "./media/characters/sammy-mouse/feminine.svg",
  10137. extra: 2526/2425 ,
  10138. bottom: 0.123
  10139. }
  10140. },
  10141. masculine: {
  10142. height: math.unit(5, "feet"),
  10143. weight: math.unit(100, "lb"),
  10144. name: "Masculine",
  10145. image: {
  10146. source: "./media/characters/sammy-mouse/masculine.svg",
  10147. extra: 2526/2425 ,
  10148. bottom: 0.123
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(5, "inches")
  10156. },
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(5, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(60, "feet")
  10165. },
  10166. ]
  10167. )
  10168. };
  10169. characterMakers["Kole"] = () => {
  10170. return makeCharacter(
  10171. "Kole",
  10172. "Cats_55",
  10173. {
  10174. front: {
  10175. height: math.unit(4, "feet"),
  10176. weight: math.unit(50, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/kole/front.svg",
  10180. extra: 1423/1303 ,
  10181. bottom: 0.025
  10182. }
  10183. },
  10184. back: {
  10185. height: math.unit(4, "feet"),
  10186. weight: math.unit(50, "lb"),
  10187. name: "Back",
  10188. image: {
  10189. source: "./media/characters/kole/back.svg",
  10190. extra: 1426/1280 ,
  10191. bottom: 0.02
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(4, "feet"),
  10199. default: true
  10200. },
  10201. ]
  10202. )
  10203. };
  10204. characterMakers["Rufran"] = () => {
  10205. return makeCharacter(
  10206. "Rufran",
  10207. "Rufran",
  10208. {
  10209. front: {
  10210. height: math.unit(2 + 6/12, "feet"),
  10211. weight: math.unit(20, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/rufran/front.svg",
  10215. extra: 2041/1839 ,
  10216. bottom: 0.055
  10217. }
  10218. },
  10219. back: {
  10220. height: math.unit(2 + 6/12, "feet"),
  10221. weight: math.unit(20, "lb"),
  10222. name: "Back",
  10223. image: {
  10224. source: "./media/characters/rufran/back.svg",
  10225. extra: 2054/1839 ,
  10226. bottom: 0.01
  10227. }
  10228. },
  10229. hand: {
  10230. height: math.unit(0.2166, "meters"),
  10231. name: "Hand",
  10232. image: {
  10233. source: "./media/characters/rufran/hand.svg"
  10234. }
  10235. },
  10236. foot: {
  10237. height: math.unit(0.185, "meters"),
  10238. name: "Foot",
  10239. image: {
  10240. source: "./media/characters/rufran/foot.svg"
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(1, "inch")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(2 + 6/12, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Big",
  10256. height: math.unit(60, "feet")
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(325, "feet")
  10261. },
  10262. ]
  10263. )
  10264. };
  10265. characterMakers["Chip"] = () => {
  10266. return makeCharacter(
  10267. "Chip",
  10268. "Chiptuni",
  10269. {
  10270. front: {
  10271. height: math.unit(0.3, "meters"),
  10272. weight: math.unit(3.5, "kg"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/chip/front.svg",
  10276. extra: 748/674
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Micro",
  10283. height: math.unit(1, "inch"),
  10284. default: true
  10285. },
  10286. ]
  10287. )
  10288. };
  10289. characterMakers["Torvid"] = () => {
  10290. return makeCharacter(
  10291. "Torvid",
  10292. "Torvid",
  10293. {
  10294. side: {
  10295. height: math.unit(2.3, "meters"),
  10296. weight: math.unit(3500, "lb"),
  10297. name: "Side",
  10298. image: {
  10299. source: "./media/characters/torvid/side.svg",
  10300. extra: 1972/722 ,
  10301. bottom: 0.035
  10302. }
  10303. },
  10304. },
  10305. [
  10306. {
  10307. name: "Normal",
  10308. height: math.unit(2.3, "meters"),
  10309. default: true
  10310. },
  10311. ]
  10312. )
  10313. };
  10314. characterMakers["Susan"] = () => {
  10315. return makeCharacter(
  10316. "Susan",
  10317. "Jasmith",
  10318. {
  10319. front: {
  10320. height: math.unit(2, "meters"),
  10321. weight: math.unit(150.5, "kg"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/susan/front.svg",
  10325. extra: 693/635 ,
  10326. bottom: 0.05
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Megamacro",
  10333. height: math.unit(505, "miles"),
  10334. default: true
  10335. },
  10336. ]
  10337. )
  10338. };
  10339. characterMakers["Raindrops"] = () => {
  10340. return makeCharacter(
  10341. "Raindrops",
  10342. "RaindropsJFL",
  10343. {
  10344. front: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(150, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/raindrops/front.svg",
  10350. extra: 2655/2461 ,
  10351. bottom: 0.02
  10352. }
  10353. },
  10354. back: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Back",
  10358. image: {
  10359. source: "./media/characters/raindrops/back.svg",
  10360. extra: 2574/2400 ,
  10361. bottom: 0.03
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Micro",
  10368. height: math.unit(6, "inches")
  10369. },
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(6 + 2/12, "feet")
  10373. },
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(131, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(15, "miles")
  10382. },
  10383. {
  10384. name: "Gigamacro",
  10385. height: math.unit(4000, "miles")
  10386. },
  10387. {
  10388. name: "Teramacro",
  10389. height: math.unit(315000, "miles")
  10390. },
  10391. ]
  10392. )
  10393. };
  10394. characterMakers["Tezwa"] = () => {
  10395. return makeCharacter(
  10396. "Tezwa",
  10397. "TitanTezwa",
  10398. {
  10399. front: {
  10400. height: math.unit(2.794, "meters"),
  10401. weight: math.unit(325, "kg"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/tezwa/front.svg",
  10405. extra: 2083/1906 ,
  10406. bottom: 0.031
  10407. }
  10408. },
  10409. foot: {
  10410. height: math.unit(0.687, "meters"),
  10411. name: "Foot",
  10412. image: {
  10413. source: "./media/characters/tezwa/foot.svg"
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(9 + 2/12, "feet"),
  10421. default: true
  10422. },
  10423. ]
  10424. )
  10425. };
  10426. characterMakers["Typhus"] = () => {
  10427. return makeCharacter(
  10428. "Typhus",
  10429. "Jasmith",
  10430. {
  10431. front: {
  10432. height: math.unit(58, "feet"),
  10433. weight: math.unit(89000, "lb"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/typhus/front.svg",
  10437. extra: 816/800 ,
  10438. bottom: 0.065
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(58, "feet"),
  10446. default: true
  10447. },
  10448. ]
  10449. )
  10450. };
  10451. characterMakers["Lyra Von Wulf"] = () => {
  10452. return makeCharacter(
  10453. "Lyra Von Wulf",
  10454. "LyraVonWulf",
  10455. {
  10456. front: {
  10457. height: math.unit(12, "feet"),
  10458. weight: math.unit(6, "tonnes"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/lyra-von-wulf/front.svg",
  10462. extra: 1,
  10463. bottom: 0.10
  10464. }
  10465. },
  10466. frontMecha: {
  10467. height: math.unit(12, "feet"),
  10468. weight: math.unit(12, "tonnes"),
  10469. name: "Front (Mecha)",
  10470. image: {
  10471. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10472. extra: 1,
  10473. bottom: 0.042
  10474. }
  10475. },
  10476. maw: {
  10477. height: math.unit(2.2, "feet"),
  10478. name: "Maw",
  10479. image: {
  10480. source: "./media/characters/lyra-von-wulf/maw.svg"
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(12, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Classic",
  10492. height: math.unit(50, "feet")
  10493. },
  10494. {
  10495. name: "Macro",
  10496. height: math.unit(500, "feet")
  10497. },
  10498. {
  10499. name: "Megamacro",
  10500. height: math.unit(1, "mile")
  10501. },
  10502. {
  10503. name: "Gigamacro",
  10504. height: math.unit(400, "miles")
  10505. },
  10506. {
  10507. name: "Teramacro",
  10508. height: math.unit(22000, "miles")
  10509. },
  10510. {
  10511. name: "Solarmacro",
  10512. height: math.unit(8600000, "miles")
  10513. },
  10514. {
  10515. name: "Galactic",
  10516. height: math.unit(1057000, "lightyears")
  10517. },
  10518. ]
  10519. )
  10520. };
  10521. characterMakers["Dixon"] = () => {
  10522. return makeCharacter(
  10523. "Dixon",
  10524. "Seabury",
  10525. {
  10526. front: {
  10527. height: math.unit(6 + 10/12, "feet"),
  10528. weight: math.unit(150, "lb"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/dixon/front.svg",
  10532. extra: 3361/3209 ,
  10533. bottom: 0.01
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(6 + 10/12, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Big",
  10545. height: math.unit(12, "meters")
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(500, "meters")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(2, "km")
  10554. },
  10555. ]
  10556. )
  10557. };
  10558. characterMakers["Kauko"] = () => {
  10559. return makeCharacter(
  10560. "Kauko",
  10561. "Kauko",
  10562. {
  10563. front: {
  10564. height: math.unit(185, "cm"),
  10565. weight: math.unit(68, "kg"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/kauko/front.svg",
  10569. extra: 1455/1421 ,
  10570. bottom: 0.03
  10571. }
  10572. },
  10573. back: {
  10574. height: math.unit(185, "cm"),
  10575. weight: math.unit(68, "kg"),
  10576. name: "Back",
  10577. image: {
  10578. source: "./media/characters/kauko/back.svg",
  10579. extra: 1455/1421 ,
  10580. bottom: 0.004
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Normal",
  10587. height: math.unit(185, "cm"),
  10588. default: true
  10589. },
  10590. ]
  10591. )
  10592. };
  10593. characterMakers["Varg"] = () => {
  10594. return makeCharacter(
  10595. "Varg",
  10596. "va0027",
  10597. {
  10598. front: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(150, "kg"),
  10601. name: "Front",
  10602. image: {
  10603. source: "./media/characters/varg/front.svg",
  10604. extra: 1108/1018 ,
  10605. bottom: 0.0375
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Normal",
  10612. height: math.unit(5, "meters")
  10613. },
  10614. {
  10615. name: "Gigamacro",
  10616. height: math.unit(211, "km"),
  10617. default: true
  10618. },
  10619. ]
  10620. )
  10621. };
  10622. characterMakers["Dayza"] = () => {
  10623. return makeCharacter(
  10624. "Dayza",
  10625. "Vonadi",
  10626. {
  10627. front: {
  10628. height: math.unit(7 + 7/12, "feet"),
  10629. weight: math.unit(267, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/dayza/front.svg",
  10633. extra: 1262/1200 ,
  10634. bottom: 0.035
  10635. }
  10636. },
  10637. side: {
  10638. height: math.unit(7 + 7/12, "feet"),
  10639. weight: math.unit(267, "lb"),
  10640. name: "Side",
  10641. image: {
  10642. source: "./media/characters/dayza/side.svg",
  10643. extra: 1295/1245 ,
  10644. bottom: 0.05
  10645. }
  10646. },
  10647. back: {
  10648. height: math.unit(7 + 7/12, "feet"),
  10649. weight: math.unit(267, "lb"),
  10650. name: "Back",
  10651. image: {
  10652. source: "./media/characters/dayza/back.svg",
  10653. extra: 1241/1170
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(7 + 7/12, "feet"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(155, "feet")
  10666. },
  10667. ]
  10668. )
  10669. };
  10670. characterMakers["Xanthos"] = () => {
  10671. return makeCharacter(
  10672. "Xanthos",
  10673. "ArgentVZ",
  10674. {
  10675. front: {
  10676. height: math.unit(6 + 5/12, "feet"),
  10677. weight: math.unit(160, "lb"),
  10678. name: "Front",
  10679. image: {
  10680. source: "./media/characters/xanthos/front.svg",
  10681. extra: 1,
  10682. bottom: 0.04
  10683. }
  10684. },
  10685. back: {
  10686. height: math.unit(6 + 5/12, "feet"),
  10687. weight: math.unit(160, "lb"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/xanthos/back.svg",
  10691. extra: 1,
  10692. bottom: 0.03
  10693. }
  10694. },
  10695. hand: {
  10696. height: math.unit(0.928, "feet"),
  10697. name: "Hand",
  10698. image: {
  10699. source: "./media/characters/xanthos/hand.svg"
  10700. }
  10701. },
  10702. foot: {
  10703. height: math.unit(1.286, "feet"),
  10704. name: "Foot",
  10705. image: {
  10706. source: "./media/characters/xanthos/foot.svg"
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(6 + 5/12, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Normal+",
  10718. height: math.unit(6, "meters")
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(40, "feet")
  10723. },
  10724. {
  10725. name: "Macro+",
  10726. height: math.unit(200, "meters")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(20, "km")
  10731. },
  10732. {
  10733. name: "Megamacro+",
  10734. height: math.unit(100, "km")
  10735. },
  10736. ]
  10737. )
  10738. };
  10739. characterMakers["Grynn"] = () => {
  10740. return makeCharacter(
  10741. "Grynn",
  10742. "Grynn",
  10743. {
  10744. front: {
  10745. height: math.unit(6 + 3/12, "feet"),
  10746. weight: math.unit(215, "lb"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/grynn/front.svg",
  10750. extra: 4627/4209 ,
  10751. bottom: 0.047
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Micro",
  10758. height: math.unit(6, "inches")
  10759. },
  10760. {
  10761. name: "Normal",
  10762. height: math.unit(6 + 3/12, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Big",
  10767. height: math.unit(104, "feet")
  10768. },
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(944, "feet")
  10772. },
  10773. {
  10774. name: "Macro+",
  10775. height: math.unit(9480, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(78752, "feet")
  10780. },
  10781. {
  10782. name: "Megamacro+",
  10783. height: math.unit(630128, "feet")
  10784. },
  10785. {
  10786. name: "Megamacro++",
  10787. height: math.unit(3150695, "feet")
  10788. },
  10789. ]
  10790. )
  10791. };
  10792. characterMakers["Mocha Aura"] = () => {
  10793. return makeCharacter(
  10794. "Mocha Aura",
  10795. "Mocha-Aura",
  10796. {
  10797. front: {
  10798. height: math.unit(7 + 5/12, "feet"),
  10799. weight: math.unit(450, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/mocha-aura/front.svg",
  10803. extra: 1907/1817 ,
  10804. bottom: 0.04
  10805. }
  10806. },
  10807. back: {
  10808. height: math.unit(7 + 5/12, "feet"),
  10809. weight: math.unit(450, "lb"),
  10810. name: "Back",
  10811. image: {
  10812. source: "./media/characters/mocha-aura/back.svg",
  10813. extra: 1900/1825 ,
  10814. bottom: 0.045
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Nano",
  10821. height: math.unit(1, "nm")
  10822. },
  10823. {
  10824. name: "Megamicro",
  10825. height: math.unit(1, "mm")
  10826. },
  10827. {
  10828. name: "Micro",
  10829. height: math.unit(3, "inches")
  10830. },
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(7 + 5/12, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Macro",
  10838. height: math.unit(30, "feet")
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(3500, "feet")
  10843. },
  10844. {
  10845. name: "Teramacro",
  10846. height: math.unit(500000, "miles")
  10847. },
  10848. {
  10849. name: "Petamacro",
  10850. height: math.unit(50000000000000000 , "parsecs")
  10851. },
  10852. ]
  10853. )
  10854. };
  10855. characterMakers["Ilisha Devya"] = () => {
  10856. return makeCharacter(
  10857. "Ilisha Devya",
  10858. "Neopuc",
  10859. {
  10860. front: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(150, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/ilisha-devya/front.svg",
  10866. extra: 1,
  10867. bottom: 0.175
  10868. }
  10869. },
  10870. back: {
  10871. height: math.unit(6, "feet"),
  10872. weight: math.unit(150, "lb"),
  10873. name: "Back",
  10874. image: {
  10875. source: "./media/characters/ilisha-devya/back.svg",
  10876. extra: 1,
  10877. bottom: 0.015
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Macro",
  10884. height: math.unit(500, "feet"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Megamacro",
  10889. height: math.unit(10, "miles")
  10890. },
  10891. {
  10892. name: "Gigamacro",
  10893. height: math.unit(100000, "miles")
  10894. },
  10895. {
  10896. name: "Examacro",
  10897. height: math.unit(1e9, "lightyears")
  10898. },
  10899. {
  10900. name: "Omniversal",
  10901. height: math.unit(1e33, "lightyears")
  10902. },
  10903. {
  10904. name: "Beyond Infinite",
  10905. height: math.unit(1e100, "lightyears")
  10906. },
  10907. ]
  10908. )
  10909. };
  10910. characterMakers["Mira"] = () => {
  10911. return makeCharacter(
  10912. "Mira",
  10913. "Neopuc",
  10914. {
  10915. Side: {
  10916. height: math.unit(6, "feet"),
  10917. weight: math.unit(150, "lb"),
  10918. name: "Side",
  10919. image: {
  10920. source: "./media/characters/mira/side.svg",
  10921. extra: 900/799 ,
  10922. bottom: 0.02
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Human Size",
  10929. height: math.unit(6, "feet")
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(100, "feet"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(10, "miles")
  10939. },
  10940. {
  10941. name: "Gigamacro",
  10942. height: math.unit(25000, "miles")
  10943. },
  10944. {
  10945. name: "Teramacro",
  10946. height: math.unit(300, "AU")
  10947. },
  10948. {
  10949. name: "Full Size",
  10950. height: math.unit(4.5e10, "lightyears")
  10951. },
  10952. ]
  10953. )
  10954. };
  10955. characterMakers["Holly"] = () => {
  10956. return makeCharacter(
  10957. "Holly",
  10958. "Neopuc",
  10959. {
  10960. front: {
  10961. height: math.unit(6, "feet"),
  10962. weight: math.unit(150, "lb"),
  10963. name: "Front",
  10964. image: {
  10965. source: "./media/characters/holly/front.svg",
  10966. extra: 639/606
  10967. }
  10968. },
  10969. back: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Back",
  10973. image: {
  10974. source: "./media/characters/holly/back.svg",
  10975. extra: 623/598
  10976. }
  10977. },
  10978. frontWorking: {
  10979. height: math.unit(6, "feet"),
  10980. weight: math.unit(150, "lb"),
  10981. name: "Front (Working)",
  10982. image: {
  10983. source: "./media/characters/holly/front-working.svg",
  10984. extra: 607/577 ,
  10985. bottom: 0.048
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(12 + 3/12, "feet"),
  10993. default: true
  10994. },
  10995. ]
  10996. )
  10997. };
  10998. characterMakers["Porter"] = () => {
  10999. return makeCharacter(
  11000. "Porter",
  11001. "Neopuc",
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(150, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/porter/front.svg",
  11009. extra: 1,
  11010. bottom: 0.01
  11011. }
  11012. },
  11013. frontRobes: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front (Robes)",
  11017. image: {
  11018. source: "./media/characters/porter/front-robes.svg",
  11019. extra: 1.01 ,
  11020. bottom: 0.01
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Normal",
  11027. height: math.unit(11 + 9/12, "feet"),
  11028. default: true
  11029. },
  11030. ]
  11031. )
  11032. };
  11033. characterMakers["Lucy"] = () => {
  11034. return makeCharacter(
  11035. "Lucy",
  11036. "Jasmith",
  11037. {
  11038. legendary: {
  11039. height: math.unit(6, "feet"),
  11040. weight: math.unit(150, "lb"),
  11041. name: "Legendary",
  11042. image: {
  11043. source: "./media/characters/lucy/legendary.svg",
  11044. extra: 1355/1100 ,
  11045. bottom: 0.045
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Legendary",
  11052. height: math.unit(86882*2, "miles"),
  11053. default: true
  11054. },
  11055. ]
  11056. )
  11057. };
  11058. characterMakers["Drusilla"] = () => {
  11059. return makeCharacter(
  11060. "Drusilla",
  11061. "Neopuc",
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/drusilla/front.svg",
  11069. extra: 678/635 ,
  11070. bottom: 0.03
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(150, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/drusilla/back.svg",
  11079. extra: 678/635 ,
  11080. bottom: 0.005
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(100, "feet")
  11088. },
  11089. {
  11090. name: "Canon Height",
  11091. height: math.unit(2000, "feet"),
  11092. default: true
  11093. },
  11094. ]
  11095. )
  11096. };
  11097. characterMakers["Renard Thatch"] = () => {
  11098. return makeCharacter(
  11099. "Renard Thatch",
  11100. "Renard Thatch",
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(180, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/renard-thatch/front.svg",
  11108. extra: 2411/2275 ,
  11109. bottom: 0.01
  11110. }
  11111. },
  11112. frontPosing: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(180, "lb"),
  11115. name: "Front (Posing)",
  11116. image: {
  11117. source: "./media/characters/renard-thatch/front-posing.svg",
  11118. extra: 2381/2261 ,
  11119. bottom: 0.01
  11120. }
  11121. },
  11122. back: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(180, "lb"),
  11125. name: "Back",
  11126. image: {
  11127. source: "./media/characters/renard-thatch/back.svg",
  11128. extra: 2428/2288
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Micro",
  11135. height: math.unit(3, "inches")
  11136. },
  11137. {
  11138. name: "Default",
  11139. height: math.unit(6, "feet"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Macro",
  11144. height: math.unit(75, "feet")
  11145. },
  11146. ]
  11147. )
  11148. };
  11149. characterMakers["Sekvra"] = () => {
  11150. return makeCharacter(
  11151. "Sekvra",
  11152. "Neopuc",
  11153. {
  11154. front: {
  11155. height: math.unit(1450, "feet"),
  11156. weight: math.unit(1.21e6, "tons"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/sekvra/front.svg",
  11160. extra: 1,
  11161. bottom: 0.03
  11162. }
  11163. },
  11164. frontClothed: {
  11165. height: math.unit(1450, "feet"),
  11166. weight: math.unit(1.21e6, "tons"),
  11167. name: "Front (Clothed)",
  11168. image: {
  11169. source: "./media/characters/sekvra/front-clothed.svg",
  11170. extra: 1,
  11171. bottom: 0.03
  11172. }
  11173. },
  11174. side: {
  11175. height: math.unit(1450, "feet"),
  11176. weight: math.unit(1.21e6, "tons"),
  11177. name: "Side",
  11178. image: {
  11179. source: "./media/characters/sekvra/side.svg",
  11180. extra: 1,
  11181. bottom: 0.025
  11182. }
  11183. },
  11184. back: {
  11185. height: math.unit(1450, "feet"),
  11186. weight: math.unit(1.21e6, "tons"),
  11187. name: "Back",
  11188. image: {
  11189. source: "./media/characters/sekvra/back.svg",
  11190. extra: 1,
  11191. bottom: 0.005
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(1450, "feet"),
  11199. default: true
  11200. },
  11201. {
  11202. name: "Megamacro",
  11203. height: math.unit(15000, "feet")
  11204. },
  11205. ]
  11206. )
  11207. };
  11208. characterMakers["Carmine"] = () => {
  11209. return makeCharacter(
  11210. "Carmine",
  11211. "Neopuc",
  11212. {
  11213. front: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(150, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/carmine/front.svg",
  11219. extra: 1,
  11220. bottom: 0.035
  11221. }
  11222. },
  11223. frontArmor: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Front (Armor)",
  11227. image: {
  11228. source: "./media/characters/carmine/front-armor.svg",
  11229. extra: 1,
  11230. bottom: 0.035
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Large",
  11237. height: math.unit(1, "mile")
  11238. },
  11239. {
  11240. name: "Huge",
  11241. height: math.unit(40, "miles"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Colossal",
  11246. height: math.unit(2500, "miles")
  11247. },
  11248. ]
  11249. )
  11250. };
  11251. characterMakers["Elyssia"] = () => {
  11252. return makeCharacter(
  11253. "Elyssia",
  11254. "Neopuc",
  11255. {
  11256. front: {
  11257. height: math.unit(6, "feet"),
  11258. weight: math.unit(150, "lb"),
  11259. name: "Front",
  11260. image: {
  11261. source: "./media/characters/elyssia/front.svg",
  11262. extra: 2201/2035 ,
  11263. bottom: 0.05
  11264. }
  11265. },
  11266. frontClothed: {
  11267. height: math.unit(6, "feet"),
  11268. weight: math.unit(150, "lb"),
  11269. name: "Front (Clothed)",
  11270. image: {
  11271. source: "./media/characters/elyssia/front-clothed.svg",
  11272. extra: 2201/2035 ,
  11273. bottom: 0.05
  11274. }
  11275. },
  11276. back: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(150, "lb"),
  11279. name: "Back",
  11280. image: {
  11281. source: "./media/characters/elyssia/back.svg",
  11282. extra: 2201/2035 ,
  11283. bottom: 0.013
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Smaller",
  11290. height: math.unit(150, "feet")
  11291. },
  11292. {
  11293. name: "Standard",
  11294. height: math.unit(1400, "feet"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Distracted",
  11299. height: math.unit(15000, "feet")
  11300. },
  11301. ]
  11302. )
  11303. };
  11304. characterMakers["Geno Maxwell"] = () => {
  11305. return makeCharacter(
  11306. "Geno Maxwell",
  11307. "Geckonori",
  11308. {
  11309. front: {
  11310. height: math.unit(7 + 4/12, "feet"),
  11311. weight: math.unit(500, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/geno-maxwell/front.svg",
  11315. extra: 2207/2040 ,
  11316. bottom: 0.015
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Micro",
  11323. height: math.unit(3, "inches")
  11324. },
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(7 + 4/12, "feet"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(220, "feet")
  11333. },
  11334. {
  11335. name: "Megamacro",
  11336. height: math.unit(11, "miles")
  11337. },
  11338. ]
  11339. )
  11340. };
  11341. characterMakers["Regena Maxwell"] = () => {
  11342. return makeCharacter(
  11343. "Regena Maxwell",
  11344. "Geckonori",
  11345. {
  11346. front: {
  11347. height: math.unit(7 + 4/12, "feet"),
  11348. weight: math.unit(500, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/regena-maxwell/front.svg",
  11352. extra: 3115/2770 ,
  11353. bottom: 0.02
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(7 + 4/12, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(220, "feet")
  11366. },
  11367. {
  11368. name: "Megamacro",
  11369. height: math.unit(11, "miles")
  11370. },
  11371. ]
  11372. )
  11373. };
  11374. characterMakers["XGlidingDragonX"] = () => {
  11375. return makeCharacter(
  11376. "XGlidingDragonX",
  11377. "XGlidingDragonX",
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(150, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11385. extra: 860/690 ,
  11386. bottom: 0.03
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(1.7, "meters"),
  11394. default: true
  11395. },
  11396. ]
  11397. )
  11398. };
  11399. characterMakers["Quilly"] = () => {
  11400. return makeCharacter(
  11401. "Quilly",
  11402. "Jasmith",
  11403. {
  11404. front: {
  11405. height: math.unit(6, "feet"),
  11406. weight: math.unit(150, "lb"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/quilly/front.svg",
  11410. extra: 890/776
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Gigamacro",
  11417. height: math.unit(404090, "miles"),
  11418. default: true
  11419. },
  11420. ]
  11421. )
  11422. };
  11423. characterMakers["Tempest"] = () => {
  11424. return makeCharacter(
  11425. "Tempest",
  11426. "XsomeoneX",
  11427. {
  11428. front: {
  11429. height: math.unit(7 + 8/12, "feet"),
  11430. weight: math.unit(350, "lb"),
  11431. name: "Front",
  11432. image: {
  11433. source: "./media/characters/tempest/front.svg",
  11434. extra: 1175/1086 ,
  11435. bottom: 0.02
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(7 + 8/12, "feet"),
  11443. default: true
  11444. },
  11445. ]
  11446. )
  11447. };
  11448. characterMakers["Rodger"] = () => {
  11449. return makeCharacter(
  11450. "Rodger",
  11451. "Guywithastupidname",
  11452. {
  11453. side: {
  11454. height: math.unit(4 + 5/12, "feet"),
  11455. weight: math.unit(80, "lb"),
  11456. name: "Side",
  11457. image: {
  11458. source: "./media/characters/rodger/side.svg",
  11459. extra: 1235/1118
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Micro",
  11466. height: math.unit(1, "inch")
  11467. },
  11468. {
  11469. name: "Normal",
  11470. height: math.unit(4 + 5/12, "feet"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Macro",
  11475. height: math.unit(120, "feet")
  11476. },
  11477. ]
  11478. )
  11479. };
  11480. characterMakers["Danyel"] = () => {
  11481. return makeCharacter(
  11482. "Danyel",
  11483. "Danyelx",
  11484. {
  11485. front: {
  11486. height: math.unit(6, "feet"),
  11487. weight: math.unit(150, "lb"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/danyel/front.svg",
  11491. extra: 1185/1123 ,
  11492. bottom: 0.05
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Shrunken",
  11499. height: math.unit(0.5, "mm")
  11500. },
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(1, "mm"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Upsized",
  11508. height: math.unit(5 + 5/12, "feet")
  11509. },
  11510. ]
  11511. )
  11512. };
  11513. characterMakers["Vivian Bijoux"] = () => {
  11514. return makeCharacter(
  11515. "Vivian Bijoux",
  11516. "Geckonori",
  11517. {
  11518. front: {
  11519. height: math.unit(5 + 6/12, "feet"),
  11520. weight: math.unit(200, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/vivian-bijoux/front.svg",
  11524. extra: 1,
  11525. bottom: 0.072
  11526. }
  11527. },
  11528. },
  11529. [
  11530. {
  11531. name: "Normal",
  11532. height: math.unit(5 + 6/12, "feet"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Bad Dream",
  11537. height: math.unit(500, "feet")
  11538. },
  11539. {
  11540. name: "Nightmare",
  11541. height: math.unit(500, "miles")
  11542. },
  11543. ]
  11544. )
  11545. };
  11546. characterMakers["Zeta"] = () => {
  11547. return makeCharacter(
  11548. "Zeta",
  11549. "thenerdherd102",
  11550. {
  11551. front: {
  11552. height: math.unit(6 + 1/12, "feet"),
  11553. weight: math.unit(260, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/zeta/front.svg",
  11557. extra: 1968/1889 ,
  11558. bottom: 0.06
  11559. }
  11560. },
  11561. back: {
  11562. height: math.unit(6 + 1/12, "feet"),
  11563. weight: math.unit(260, "lb"),
  11564. name: "Back",
  11565. image: {
  11566. source: "./media/characters/zeta/back.svg",
  11567. extra: 1944/1858 ,
  11568. bottom: 0.03
  11569. }
  11570. },
  11571. hand: {
  11572. height: math.unit(1.112, "feet"),
  11573. name: "Hand",
  11574. image: {
  11575. source: "./media/characters/zeta/hand.svg"
  11576. }
  11577. },
  11578. foot: {
  11579. height: math.unit(1.48, "feet"),
  11580. name: "Foot",
  11581. image: {
  11582. source: "./media/characters/zeta/foot.svg"
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Micro",
  11589. height: math.unit(6, "inches")
  11590. },
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(6 + 1/12, "feet"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Macro",
  11598. height: math.unit(20, "feet")
  11599. },
  11600. ]
  11601. )
  11602. };
  11603. characterMakers["Jamie Larsen"] = () => {
  11604. return makeCharacter(
  11605. "Jamie Larsen",
  11606. "Mt_Jamie_Larsen",
  11607. {
  11608. front: {
  11609. height: math.unit(6, "feet"),
  11610. weight: math.unit(150, "lb"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/jamie-larsen/front.svg",
  11614. extra: 962/933 ,
  11615. bottom: 0.02
  11616. }
  11617. },
  11618. back: {
  11619. height: math.unit(6, "feet"),
  11620. weight: math.unit(150, "lb"),
  11621. name: "Back",
  11622. image: {
  11623. source: "./media/characters/jamie-larsen/back.svg",
  11624. extra: 997/946
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(28 + 7/12, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Macro+",
  11636. height: math.unit(180, "feet")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(10, "miles")
  11641. },
  11642. {
  11643. name: "Gigamacro",
  11644. height: math.unit(200000, "miles")
  11645. },
  11646. ]
  11647. )
  11648. };
  11649. characterMakers["Vance"] = () => {
  11650. return makeCharacter(
  11651. "Vance",
  11652. "Neopuc",
  11653. {
  11654. front: {
  11655. height: math.unit(6, "feet"),
  11656. weight: math.unit(120, "lb"),
  11657. name: "Front",
  11658. image: {
  11659. source: "./media/characters/vance/front.svg",
  11660. extra: 1980/1890 ,
  11661. bottom: 0.09
  11662. }
  11663. },
  11664. back: {
  11665. height: math.unit(6, "feet"),
  11666. weight: math.unit(120, "lb"),
  11667. name: "Back",
  11668. image: {
  11669. source: "./media/characters/vance/back.svg",
  11670. extra: 2081/1994 ,
  11671. bottom: 0.014
  11672. }
  11673. },
  11674. hand: {
  11675. height: math.unit(0.88, "feet"),
  11676. name: "Hand",
  11677. image: {
  11678. source: "./media/characters/vance/hand.svg"
  11679. }
  11680. },
  11681. foot: {
  11682. height: math.unit(0.64, "feet"),
  11683. name: "Foot",
  11684. image: {
  11685. source: "./media/characters/vance/foot.svg"
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Small",
  11692. height: math.unit(90, "feet"),
  11693. default: true
  11694. },
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(100, "meters")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(15, "miles")
  11702. },
  11703. ]
  11704. )
  11705. };
  11706. characterMakers["Xochitl"] = () => {
  11707. return makeCharacter(
  11708. "Xochitl",
  11709. "Neopuc",
  11710. {
  11711. front: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(180, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/xochitl/front.svg",
  11717. extra: 2297/2261 ,
  11718. bottom: 0.065
  11719. }
  11720. },
  11721. back: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(180, "lb"),
  11724. name: "Back",
  11725. image: {
  11726. source: "./media/characters/xochitl/back.svg",
  11727. extra: 2386/2354 ,
  11728. bottom: 0.01
  11729. }
  11730. },
  11731. foot: {
  11732. height: math.unit(6/5 * 1.15, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Foot",
  11735. image: {
  11736. source: "./media/characters/xochitl/foot.svg"
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(80, "feet")
  11744. },
  11745. {
  11746. name: "Macro+",
  11747. height: math.unit(400, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Gigamacro",
  11752. height: math.unit(80000, "miles")
  11753. },
  11754. {
  11755. name: "Gigamacro+",
  11756. height: math.unit(400000, "miles")
  11757. },
  11758. {
  11759. name: "Teramacro",
  11760. height: math.unit(300, "AU")
  11761. },
  11762. ]
  11763. )
  11764. };
  11765. characterMakers["Vincent"] = () => {
  11766. return makeCharacter(
  11767. "Vincent",
  11768. "Neopuc",
  11769. {
  11770. front: {
  11771. height: math.unit(6, "feet"),
  11772. weight: math.unit(150, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/vincent/front.svg",
  11776. extra: 1130/1080 ,
  11777. bottom: 0.055
  11778. }
  11779. },
  11780. beak: {
  11781. height: math.unit(6 * 0.1, "feet"),
  11782. name: "Beak",
  11783. image: {
  11784. source: "./media/characters/vincent/beak.svg"
  11785. }
  11786. },
  11787. hand: {
  11788. height: math.unit(6 * 0.85, "feet"),
  11789. weight: math.unit(150, "lb"),
  11790. name: "Hand",
  11791. image: {
  11792. source: "./media/characters/vincent/hand.svg"
  11793. }
  11794. },
  11795. foot: {
  11796. height: math.unit(6 * 0.19, "feet"),
  11797. weight: math.unit(150, "lb"),
  11798. name: "Foot",
  11799. image: {
  11800. source: "./media/characters/vincent/foot.svg"
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Base",
  11807. height: math.unit(6 + 5/12, "feet"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(300, "feet")
  11813. },
  11814. {
  11815. name: "Megamacro",
  11816. height: math.unit(2, "miles")
  11817. },
  11818. {
  11819. name: "Gigamacro",
  11820. height: math.unit(1000, "miles")
  11821. },
  11822. ]
  11823. )
  11824. };
  11825. characterMakers["Jay"] = () => {
  11826. return makeCharacter(
  11827. "Jay",
  11828. "J-Forse",
  11829. {
  11830. front: {
  11831. height: math.unit(6 + 2/12, "feet"),
  11832. weight: math.unit(65, "lb"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/jay/front.svg",
  11836. extra: 1510/1430 ,
  11837. bottom: 0.042
  11838. }
  11839. },
  11840. back: {
  11841. height: math.unit(6 + 2/12, "feet"),
  11842. weight: math.unit(65, "lb"),
  11843. name: "Back",
  11844. image: {
  11845. source: "./media/characters/jay/back.svg",
  11846. extra: 1510/1430 ,
  11847. bottom: 0.025
  11848. }
  11849. },
  11850. clothed: {
  11851. height: math.unit(6 + 2/12, "feet"),
  11852. weight: math.unit(65, "lb"),
  11853. name: "Front (Clothed)",
  11854. image: {
  11855. source: "./media/characters/jay/clothed.svg",
  11856. extra: 744/699 ,
  11857. bottom: 0.043
  11858. }
  11859. },
  11860. },
  11861. [
  11862. {
  11863. name: "Micro",
  11864. height: math.unit(1, "inch")
  11865. },
  11866. {
  11867. name: "Normal",
  11868. height: math.unit(6 + 2/12, "feet"),
  11869. default: true
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(1, "mile")
  11874. },
  11875. {
  11876. name: "Megamacro",
  11877. height: math.unit(100, "miles")
  11878. },
  11879. ]
  11880. )
  11881. };
  11882. characterMakers["Coatl"] = () => {
  11883. return makeCharacter(
  11884. "Coatl",
  11885. "Jagaz",
  11886. {
  11887. front: {
  11888. height: math.unit(2, "meters"),
  11889. weight: math.unit(500 , "kg"),
  11890. name: "Front",
  11891. image: {
  11892. source: "./media/characters/coatl/front.svg",
  11893. extra: 3948 / 3500 ,
  11894. bottom: 0.082
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(4, "meters")
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(100, "meters"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Macro+",
  11910. height: math.unit(300, "meters")
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(3, "gigameters")
  11915. },
  11916. {
  11917. name: "Megamacro+",
  11918. height: math.unit(300, "terameters")
  11919. },
  11920. {
  11921. name: "Megamacro++",
  11922. height: math.unit(3, "lightyears")
  11923. },
  11924. ]
  11925. )
  11926. };
  11927. characterMakers["Shiroryu"] = () => {
  11928. return makeCharacter(
  11929. "Shiroryu",
  11930. "Roxas00137",
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(50, "kg"),
  11935. name: "front",
  11936. image: {
  11937. source: "./media/characters/shiroryu/front.svg",
  11938. extra: 1990/1935
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Mortal Mingling",
  11945. height: math.unit(3, "meters")
  11946. },
  11947. {
  11948. name: "Kaiju-ish",
  11949. height: math.unit(250, "meters")
  11950. },
  11951. {
  11952. name: "Somewhat Godly",
  11953. height: math.unit(400, "km"),
  11954. default: true
  11955. },
  11956. {
  11957. name: "Planetary",
  11958. height: math.unit(300, "megameters")
  11959. },
  11960. {
  11961. name: "Galaxy-dwarfing",
  11962. height: math.unit(450, "kiloparsecs")
  11963. },
  11964. {
  11965. name: "Universe Eater",
  11966. height: math.unit(150, "gigaparsecs")
  11967. },
  11968. {
  11969. name: "Almost Immeasurable",
  11970. height: math.unit(1.3e266, "yottaparsecs")
  11971. },
  11972. ]
  11973. )
  11974. };
  11975. characterMakers["Umeko"] = () => {
  11976. return makeCharacter(
  11977. "Umeko",
  11978. "Neopuc",
  11979. {
  11980. front: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/umeko/front.svg",
  11986. extra: 1,
  11987. bottom: 0.019
  11988. }
  11989. },
  11990. frontArmored: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Front (Armored)",
  11994. image: {
  11995. source: "./media/characters/umeko/front-armored.svg",
  11996. extra: 1,
  11997. bottom: 0.021
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(220, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Guardian Dragon",
  12009. height: math.unit(50, "miles")
  12010. },
  12011. {
  12012. name: "Cosmic",
  12013. height: math.unit(800000, "miles")
  12014. },
  12015. ]
  12016. )
  12017. };
  12018. characterMakers["Cassidy"] = () => {
  12019. return makeCharacter(
  12020. "Cassidy",
  12021. "Neopuc",
  12022. {
  12023. front: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(150, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/cassidy/front.svg",
  12029. extra: 1,
  12030. bottom: 0.043
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Canon Height",
  12037. height: math.unit(120, "feet"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Macro+",
  12042. height: math.unit(400, "feet")
  12043. },
  12044. {
  12045. name: "Macro++",
  12046. height: math.unit(4000, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(3, "miles")
  12051. },
  12052. ]
  12053. )
  12054. };
  12055. characterMakers["Isaac"] = () => {
  12056. return makeCharacter(
  12057. "Isaac",
  12058. "Neopuc",
  12059. {
  12060. front: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(150, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/isaac/front.svg",
  12066. extra: 896/815 ,
  12067. bottom: 0.11
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Human Size",
  12074. height: math.unit(8, "feet"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Macro",
  12079. height: math.unit(400, "feet")
  12080. },
  12081. {
  12082. name: "Megamacro",
  12083. height: math.unit(50, "miles")
  12084. },
  12085. {
  12086. name: "Canon Height",
  12087. height: math.unit(200, "AU")
  12088. },
  12089. ]
  12090. )
  12091. };
  12092. characterMakers["Sleekit"] = () => {
  12093. return makeCharacter(
  12094. "Sleekit",
  12095. "AnAnonymousIndividual",
  12096. {
  12097. front: {
  12098. height: math.unit(6, "feet"),
  12099. weight: math.unit(72, "kg"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/sleekit/front.svg",
  12103. extra: 4693/4487 ,
  12104. bottom: 0.012
  12105. }
  12106. },
  12107. },
  12108. [
  12109. {
  12110. name: "Minimum Height",
  12111. height: math.unit(10, "meters")
  12112. },
  12113. {
  12114. name: "Smaller",
  12115. height: math.unit(25, "meters")
  12116. },
  12117. {
  12118. name: "Larger",
  12119. height: math.unit(38, "meters"),
  12120. default: true
  12121. },
  12122. {
  12123. name: "Maximum height",
  12124. height: math.unit(100, "meters")
  12125. },
  12126. ]
  12127. )
  12128. };
  12129. characterMakers["Nillia"] = () => {
  12130. return makeCharacter(
  12131. "Nillia",
  12132. "Neopuc",
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/nillia/front.svg",
  12140. extra: 2195/2037 ,
  12141. bottom: 0.005
  12142. }
  12143. },
  12144. back: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(150, "lb"),
  12147. name: "Back",
  12148. image: {
  12149. source: "./media/characters/nillia/back.svg",
  12150. extra: 2195/2037 ,
  12151. bottom: 0.005
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Canon Height",
  12158. height: math.unit(489, "feet"),
  12159. default: true
  12160. }
  12161. ]
  12162. )
  12163. };
  12164. characterMakers["Mesmyriza"] = () => {
  12165. return makeCharacter(
  12166. "Mesmyriza",
  12167. "-fluffy-",
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/mesmyriza/front.svg",
  12175. extra: 2067/1784 ,
  12176. bottom: 0.035
  12177. }
  12178. },
  12179. foot: {
  12180. height: math.unit(6/(250/35), "feet"),
  12181. name: "Foot",
  12182. image: {
  12183. source: "./media/characters/mesmyriza/foot.svg"
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(457, "meters"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(8, "megameters")
  12196. },
  12197. ]
  12198. )
  12199. };
  12200. characterMakers["Saudade"] = () => {
  12201. return makeCharacter(
  12202. "Saudade",
  12203. "lordbo",
  12204. {
  12205. front: {
  12206. height: math.unit(6, "feet"),
  12207. weight: math.unit(250, "lb"),
  12208. name: "Front",
  12209. image: {
  12210. source: "./media/characters/saudade/front.svg",
  12211. extra: 1172/1139 ,
  12212. bottom: 0.035
  12213. }
  12214. },
  12215. },
  12216. [
  12217. {
  12218. name: "Micro",
  12219. height: math.unit(3, "inches")
  12220. },
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(6, "feet"),
  12224. default: true
  12225. },
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(50, "feet")
  12229. },
  12230. {
  12231. name: "Megamacro",
  12232. height: math.unit(2800, "feet")
  12233. },
  12234. ]
  12235. )
  12236. };
  12237. characterMakers["Keireer"] = () => {
  12238. return makeCharacter(
  12239. "Keireer",
  12240. "teedash",
  12241. {
  12242. front: {
  12243. height: math.unit(5 + 4/12, "feet"),
  12244. weight: math.unit(100, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/keireer/front.svg",
  12248. extra: 716/666 ,
  12249. bottom: 0.05
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Normal",
  12256. height: math.unit(5 + 4/12, "feet"),
  12257. default: true
  12258. },
  12259. ]
  12260. )
  12261. };
  12262. characterMakers["Mirja"] = () => {
  12263. return makeCharacter(
  12264. "Mirja",
  12265. "vabad",
  12266. {
  12267. front: {
  12268. height: math.unit(6, "feet"),
  12269. weight: math.unit(90, "kg"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/mirja/front.svg",
  12273. extra: 1789/1683 ,
  12274. bottom: 0.05
  12275. }
  12276. },
  12277. frontDressed: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(90, "lb"),
  12280. name: "Front (Dressed)",
  12281. image: {
  12282. source: "./media/characters/mirja/front-dressed.svg",
  12283. extra: 1789/1683 ,
  12284. bottom: 0.05
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(90, "lb"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/mirja/back.svg",
  12293. extra: 953/917 ,
  12294. bottom: 0.017
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "\"Incognito\"",
  12301. height: math.unit(3, "meters")
  12302. },
  12303. {
  12304. name: "Strolling Size",
  12305. height: math.unit(15, "km")
  12306. },
  12307. {
  12308. name: "Larger Strolling Size",
  12309. height: math.unit(400, "km")
  12310. },
  12311. {
  12312. name: "Preferred Size",
  12313. height: math.unit(5000, "km")
  12314. },
  12315. {
  12316. name: "True Size",
  12317. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12318. default: true
  12319. },
  12320. ]
  12321. )
  12322. };
  12323. characterMakers["Nightraver"] = () => {
  12324. return makeCharacter(
  12325. "Nightraver",
  12326. "Nightraver",
  12327. {
  12328. front: {
  12329. height: math.unit(15, "feet"),
  12330. weight: math.unit(880, "kg"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/nightraver/front.svg",
  12334. extra: 2444/2160 ,
  12335. bottom: 0.027
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(15, "feet"),
  12340. weight: math.unit(880, "kg"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/nightraver/back.svg",
  12344. extra: 2309/2180 ,
  12345. bottom: 0.005
  12346. }
  12347. },
  12348. sole: {
  12349. height: math.unit(2.878, "feet"),
  12350. name: "Sole",
  12351. image: {
  12352. source: "./media/characters/nightraver/sole.svg"
  12353. }
  12354. },
  12355. foot: {
  12356. height: math.unit(2.285, "feet"),
  12357. name: "Foot",
  12358. image: {
  12359. source: "./media/characters/nightraver/foot.svg"
  12360. }
  12361. },
  12362. maw: {
  12363. height: math.unit(2.67, "feet"),
  12364. name: "Maw",
  12365. image: {
  12366. source: "./media/characters/nightraver/maw.svg"
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Micro",
  12373. height: math.unit(1, "cm")
  12374. },
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(15, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Macro",
  12382. height: math.unit(300, "feet")
  12383. },
  12384. {
  12385. name: "Megamacro",
  12386. height: math.unit(300, "miles")
  12387. },
  12388. {
  12389. name: "Gigamacro",
  12390. height: math.unit(10000, "miles")
  12391. },
  12392. ]
  12393. )
  12394. };
  12395. characterMakers["Arc"] = () => {
  12396. return makeCharacter(
  12397. "Arc",
  12398. "DinoKiddo",
  12399. {
  12400. side: {
  12401. height: math.unit(2, "inches"),
  12402. weight: math.unit(5, "grams"),
  12403. name: "Side",
  12404. image: {
  12405. source: "./media/characters/arc/side.svg"
  12406. }
  12407. },
  12408. },
  12409. [
  12410. {
  12411. name: "Micro",
  12412. height: math.unit(2, "inches"),
  12413. default: true
  12414. },
  12415. ]
  12416. )
  12417. };
  12418. characterMakers["Nebula Shahar"] = () => {
  12419. return makeCharacter(
  12420. "Nebula Shahar",
  12421. "Kypleo",
  12422. {
  12423. front: {
  12424. height: math.unit(1.1938, "meters"),
  12425. weight: math.unit(54, "kg"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/nebula-shahar/front.svg",
  12429. extra: 1642/1436 ,
  12430. bottom: 0.06
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Megamicro",
  12437. height: math.unit(0.3, "mm")
  12438. },
  12439. {
  12440. name: "Micro",
  12441. height: math.unit(3, "cm")
  12442. },
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(138, "cm"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(30, "m")
  12451. },
  12452. ]
  12453. )
  12454. };
  12455. characterMakers["Shayla"] = () => {
  12456. return makeCharacter(
  12457. "Shayla",
  12458. "Ziralkia",
  12459. {
  12460. front: {
  12461. height: math.unit(5.24, "feet"),
  12462. weight: math.unit(150, "lb"),
  12463. name: "Front",
  12464. image: {
  12465. source: "./media/characters/shayla/front.svg",
  12466. extra: 1512/1414 ,
  12467. bottom: 0.01
  12468. }
  12469. },
  12470. back: {
  12471. height: math.unit(5.24, "feet"),
  12472. weight: math.unit(150, "lb"),
  12473. name: "Back",
  12474. image: {
  12475. source: "./media/characters/shayla/back.svg",
  12476. extra: 1512/1414
  12477. }
  12478. },
  12479. hand: {
  12480. height: math.unit(0.7781496062992126, "feet"),
  12481. name: "Hand",
  12482. image: {
  12483. source: "./media/characters/shayla/hand.svg"
  12484. }
  12485. },
  12486. foot: {
  12487. height: math.unit(1.4206036745406823, "feet"),
  12488. name: "Foot",
  12489. image: {
  12490. source: "./media/characters/shayla/foot.svg"
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Micro",
  12497. height: math.unit(0.32, "feet")
  12498. },
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(5.24, "feet"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(492.12, "feet")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(186.41, "miles")
  12511. },
  12512. ]
  12513. )
  12514. };
  12515. characterMakers["Pia Jr."] = () => {
  12516. return makeCharacter(
  12517. "Pia Jr.",
  12518. "Ziralkia",
  12519. {
  12520. front: {
  12521. height: math.unit(2.2, "m"),
  12522. weight: math.unit(120, "kg"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/pia-jr/front.svg",
  12526. extra: 1000/970 ,
  12527. bottom: 0.035
  12528. }
  12529. },
  12530. hand: {
  12531. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12532. name: "Hand",
  12533. image: {
  12534. source: "./media/characters/pia-jr/hand.svg"
  12535. }
  12536. },
  12537. paw: {
  12538. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12539. name: "Paw",
  12540. image: {
  12541. source: "./media/characters/pia-jr/paw.svg"
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Micro",
  12548. height: math.unit(1.2, "cm")
  12549. },
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(2.2, "m"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(180, "m")
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(420, "km")
  12562. },
  12563. ]
  12564. )
  12565. };
  12566. characterMakers["Pia Sr."] = () => {
  12567. return makeCharacter(
  12568. "Pia Sr.",
  12569. "Ziralkia",
  12570. {
  12571. front: {
  12572. height: math.unit(2, "m"),
  12573. weight: math.unit(115, "kg"),
  12574. name: "Front",
  12575. image: {
  12576. source: "./media/characters/pia-sr/front.svg",
  12577. extra: 760/730 ,
  12578. bottom: 0.015
  12579. }
  12580. },
  12581. back: {
  12582. height: math.unit(2, "m"),
  12583. weight: math.unit(115, "kg"),
  12584. name: "Back",
  12585. image: {
  12586. source: "./media/characters/pia-sr/back.svg",
  12587. extra: 760/730 ,
  12588. bottom: 0.01
  12589. }
  12590. },
  12591. hand: {
  12592. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12593. name: "Hand",
  12594. image: {
  12595. source: "./media/characters/pia-sr/hand.svg"
  12596. }
  12597. },
  12598. foot: {
  12599. height: math.unit(1.83, "feet"),
  12600. name: "Foot",
  12601. image: {
  12602. source: "./media/characters/pia-sr/foot.svg"
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Micro",
  12609. height: math.unit(88, "mm")
  12610. },
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(2, "m"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(200, "m")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(420, "km")
  12623. },
  12624. ]
  12625. )
  12626. };
  12627. characterMakers["KIBIBYTE"] = () => {
  12628. return makeCharacter(
  12629. "KIBIBYTE",
  12630. "gamefreak1215",
  12631. {
  12632. front: {
  12633. height: math.unit(8 + 2/12, "feet"),
  12634. weight: math.unit(300, "lb"),
  12635. name: "Front",
  12636. image: {
  12637. source: "./media/characters/kibibyte/front.svg",
  12638. extra: 2221/2098 ,
  12639. bottom: 0.04
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(8 + 2/12, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Socialable Macro",
  12651. height: math.unit(50, "feet")
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(300, "feet")
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(500, "miles")
  12660. },
  12661. ]
  12662. )
  12663. };
  12664. characterMakers["Felix"] = () => {
  12665. return makeCharacter(
  12666. "Felix",
  12667. "MeanDumpsterCat",
  12668. {
  12669. front: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(150, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/felix/front.svg",
  12675. extra: 762/722 ,
  12676. bottom: 0.02
  12677. }
  12678. },
  12679. frontClothed: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front (Clothed)",
  12683. image: {
  12684. source: "./media/characters/felix/front-clothed.svg",
  12685. extra: 762/722 ,
  12686. bottom: 0.02
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(6 + 8/12, "feet"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(2600, "feet")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(450, "miles")
  12703. },
  12704. ]
  12705. )
  12706. };
  12707. characterMakers["Tobo"] = () => {
  12708. return makeCharacter(
  12709. "Tobo",
  12710. "Naoya_Raichi",
  12711. {
  12712. front: {
  12713. height: math.unit(6 + 1/12, "feet"),
  12714. weight: math.unit(250, "lb"),
  12715. name: "Front",
  12716. image: {
  12717. source: "./media/characters/tobo/front.svg",
  12718. extra: 608/586 ,
  12719. bottom: 0.023
  12720. }
  12721. },
  12722. back: {
  12723. height: math.unit(6 + 1/12, "feet"),
  12724. weight: math.unit(250, "lb"),
  12725. name: "Back",
  12726. image: {
  12727. source: "./media/characters/tobo/back.svg",
  12728. extra: 608/586
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Nano",
  12735. height: math.unit(2, "nm")
  12736. },
  12737. {
  12738. name: "Megamicro",
  12739. height: math.unit(0.1, "mm")
  12740. },
  12741. {
  12742. name: "Micro",
  12743. height: math.unit(1, "inch"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Human-sized",
  12748. height: math.unit(6 + 1/12, "feet")
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(250, "feet")
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(75, "miles")
  12757. },
  12758. {
  12759. name: "Texas-sized",
  12760. height: math.unit(750, "miles")
  12761. },
  12762. {
  12763. name: "Teramacro",
  12764. height: math.unit(50000, "miles")
  12765. },
  12766. ]
  12767. )
  12768. };
  12769. characterMakers["Danny Kapowsky"] = () => {
  12770. return makeCharacter(
  12771. "Danny Kapowsky",
  12772. "nh63879",
  12773. {
  12774. front: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(269, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/danny-kapowsky/front.svg",
  12780. extra: 766/736 ,
  12781. bottom: 0.044
  12782. }
  12783. },
  12784. back: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(269, "lb"),
  12787. name: "Back",
  12788. image: {
  12789. source: "./media/characters/danny-kapowsky/back.svg",
  12790. extra: 797/760 ,
  12791. bottom: 0.025
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Macro",
  12798. height: math.unit(150, "feet"),
  12799. default: true
  12800. },
  12801. {
  12802. name: "Macro+",
  12803. height: math.unit(200, "feet")
  12804. },
  12805. {
  12806. name: "Macro++",
  12807. height: math.unit(300, "feet")
  12808. },
  12809. {
  12810. name: "Macro+++",
  12811. height: math.unit(400, "feet")
  12812. },
  12813. ]
  12814. )
  12815. };
  12816. characterMakers["Finn"] = () => {
  12817. return makeCharacter(
  12818. "Finn",
  12819. "Finn-The-Fennecfox",
  12820. {
  12821. side: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(170, "lb"),
  12824. name: "Side",
  12825. image: {
  12826. source: "./media/characters/finn/side.svg",
  12827. extra: 1953/1807 ,
  12828. bottom: 0.057
  12829. }
  12830. },
  12831. },
  12832. [
  12833. {
  12834. name: "Megamacro",
  12835. height: math.unit(14445, "feet"),
  12836. default: true
  12837. },
  12838. ]
  12839. )
  12840. };
  12841. characterMakers["Roy"] = () => {
  12842. return makeCharacter(
  12843. "Roy",
  12844. "dracodare",
  12845. {
  12846. front: {
  12847. height: math.unit(5 + 6/12, "feet"),
  12848. weight: math.unit(125, "lb"),
  12849. name: "Front",
  12850. image: {
  12851. source: "./media/characters/roy/front.svg",
  12852. extra: 1,
  12853. bottom: 0.11
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Micro",
  12860. height: math.unit(3, "inches"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(5 + 6/12, "feet")
  12866. },
  12867. {
  12868. name: "Lesser Macro",
  12869. height: math.unit(60, "feet")
  12870. },
  12871. {
  12872. name: "Greater Macro",
  12873. height: math.unit(120, "feet")
  12874. },
  12875. ]
  12876. )
  12877. };
  12878. characterMakers["Aevsivs"] = () => {
  12879. return makeCharacter(
  12880. "Aevsivs",
  12881. "Aevsivs",
  12882. {
  12883. front: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(100, "lb"),
  12886. name: "Front",
  12887. image: {
  12888. source: "./media/characters/aevsivs/front.svg",
  12889. extra: 1,
  12890. bottom: 0.03
  12891. }
  12892. },
  12893. back: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(100, "lb"),
  12896. name: "Back",
  12897. image: {
  12898. source: "./media/characters/aevsivs/back.svg"
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Micro",
  12905. height: math.unit(2, "inches"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(5, "feet")
  12911. },
  12912. ]
  12913. )
  12914. };
  12915. characterMakers["Hildegard"] = () => {
  12916. return makeCharacter(
  12917. "Hildegard",
  12918. "Fidchell",
  12919. {
  12920. front: {
  12921. height: math.unit(5 + 7/12, "feet"),
  12922. weight: math.unit(159, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/hildegard/front.svg",
  12926. extra: 312/286 ,
  12927. bottom: 0.005
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(5 + 7/12, "feet"),
  12935. default: true
  12936. },
  12937. ]
  12938. )
  12939. };
  12940. characterMakers["Bernard & Wilder"] = () => {
  12941. return makeCharacter(
  12942. "Bernard & Wilder",
  12943. "Fidchell",
  12944. {
  12945. bernard: {
  12946. height: math.unit(2 + 7/12, "feet"),
  12947. weight: math.unit(66, "lb"),
  12948. name: "Bernard",
  12949. rename: true,
  12950. image: {
  12951. source: "./media/characters/bernard-wilder/bernard.svg",
  12952. extra: 192/128 ,
  12953. bottom: 0.05
  12954. }
  12955. },
  12956. wilder: {
  12957. height: math.unit(5 + 8/12, "feet"),
  12958. weight: math.unit(143, "lb"),
  12959. name: "Wilder",
  12960. rename: true,
  12961. image: {
  12962. source: "./media/characters/bernard-wilder/wilder.svg",
  12963. extra: 361/312 ,
  12964. bottom: 0.02
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(2 + 7/12, "feet"),
  12972. default: true
  12973. },
  12974. ]
  12975. )
  12976. };
  12977. characterMakers["Hearth"] = () => {
  12978. return makeCharacter(
  12979. "Hearth",
  12980. "Fidchell",
  12981. {
  12982. anthro: {
  12983. height: math.unit(6 + 1/12, "feet"),
  12984. weight: math.unit(155, "lb"),
  12985. name: "Anthro",
  12986. image: {
  12987. source: "./media/characters/hearth/anthro.svg",
  12988. extra: 260/250 ,
  12989. bottom: 0.02
  12990. }
  12991. },
  12992. feral: {
  12993. height: math.unit(3.78, "feet"),
  12994. weight: math.unit(35, "kg"),
  12995. name: "Feral",
  12996. image: {
  12997. source: "./media/characters/hearth/feral.svg",
  12998. extra: 153/135 ,
  12999. bottom: 0.03
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(6 + 1/12, "feet"),
  13007. default: true
  13008. },
  13009. ]
  13010. )
  13011. };
  13012. characterMakers["Ingrid"] = () => {
  13013. return makeCharacter(
  13014. "Ingrid",
  13015. "Fidchell",
  13016. {
  13017. front: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(182, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/ingrid/front.svg",
  13023. extra: 294/268 ,
  13024. bottom: 0.027
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(6, "feet"),
  13032. default: true
  13033. },
  13034. ]
  13035. )
  13036. };
  13037. characterMakers["Malgam"] = () => {
  13038. return makeCharacter(
  13039. "Malgam",
  13040. "Fidchell",
  13041. {
  13042. eevee: {
  13043. height: math.unit(2 + 10/12, "feet"),
  13044. weight: math.unit(86, "lb"),
  13045. name: "Malgam",
  13046. image: {
  13047. source: "./media/characters/malgam/eevee.svg",
  13048. extra: 218/180 ,
  13049. bottom: 0.2
  13050. }
  13051. },
  13052. sylveon: {
  13053. height: math.unit(4, "feet"),
  13054. weight: math.unit(101, "lb"),
  13055. name: "Future Malgam",
  13056. rename: true,
  13057. image: {
  13058. source: "./media/characters/malgam/sylveon.svg",
  13059. extra: 371/325 ,
  13060. bottom: 0.015
  13061. }
  13062. },
  13063. gigantamax: {
  13064. height: math.unit(50, "feet"),
  13065. name: "Gigantamax Malgam",
  13066. rename: true,
  13067. image: {
  13068. source: "./media/characters/malgam/gigantamax.svg"
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Normal",
  13075. height: math.unit(2 + 10/12, "feet"),
  13076. default: true
  13077. },
  13078. ]
  13079. )
  13080. };
  13081. characterMakers["Fleur"] = () => {
  13082. return makeCharacter(
  13083. "Fleur",
  13084. "Fidchell",
  13085. {
  13086. front: {
  13087. height: math.unit(5 + 11/12, "feet"),
  13088. weight: math.unit(188, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/fleur/front.svg",
  13092. extra: 309/283 ,
  13093. bottom: 0.007
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(5 + 11/12, "feet"),
  13101. default: true
  13102. },
  13103. ]
  13104. )
  13105. };
  13106. characterMakers["Jude"] = () => {
  13107. return makeCharacter(
  13108. "Jude",
  13109. "Fidchell",
  13110. {
  13111. front: {
  13112. height: math.unit(5 + 4/12, "feet"),
  13113. weight: math.unit(122, "lb"),
  13114. name: "Front",
  13115. image: {
  13116. source: "./media/characters/jude/front.svg",
  13117. extra: 288/273 ,
  13118. bottom: 0.03
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(5 + 4/12, "feet"),
  13126. default: true
  13127. },
  13128. ]
  13129. )
  13130. };
  13131. characterMakers["Seara"] = () => {
  13132. return makeCharacter(
  13133. "Seara",
  13134. "Fidchell",
  13135. {
  13136. front: {
  13137. height: math.unit(5 + 11/12, "feet"),
  13138. weight: math.unit(190, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/seara/front.svg",
  13142. extra: 1,
  13143. bottom: 0.05
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(5 + 11/12, "feet"),
  13151. default: true
  13152. },
  13153. ]
  13154. )
  13155. };
  13156. characterMakers["Caspian"] = () => {
  13157. return makeCharacter(
  13158. "Caspian",
  13159. "Fidchell",
  13160. {
  13161. front: {
  13162. height: math.unit(16 + 5/12, "feet"),
  13163. weight: math.unit(524, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/caspian/front.svg",
  13167. extra: 1,
  13168. bottom: 0.04
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(16 + 5/12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. )
  13180. };
  13181. characterMakers["Mika"] = () => {
  13182. return makeCharacter(
  13183. "Mika",
  13184. "Fidchell",
  13185. {
  13186. front: {
  13187. height: math.unit(5 + 7/12, "feet"),
  13188. weight: math.unit(170, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/mika/front.svg",
  13192. extra: 1,
  13193. bottom: 0.016
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(5 + 7/12, "feet"),
  13201. default: true
  13202. },
  13203. ]
  13204. )
  13205. };
  13206. characterMakers["Sol"] = () => {
  13207. return makeCharacter(
  13208. "Sol",
  13209. "Fidchell",
  13210. {
  13211. front: {
  13212. height: math.unit(6 + 2/12, "feet"),
  13213. weight: math.unit(268, "lb"),
  13214. name: "Front",
  13215. image: {
  13216. source: "./media/characters/sol/front.svg",
  13217. extra: 247/231 ,
  13218. bottom: 0.05
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Normal",
  13225. height: math.unit(6 + 2/12, "feet"),
  13226. default: true
  13227. },
  13228. ]
  13229. )
  13230. };
  13231. characterMakers["Umiko"] = () => {
  13232. return makeCharacter(
  13233. "Umiko",
  13234. "Fidchell",
  13235. {
  13236. buizel: {
  13237. height: math.unit(2 + 5/12, "feet"),
  13238. weight: math.unit(87, "lb"),
  13239. name: "Buizel",
  13240. image: {
  13241. source: "./media/characters/umiko/buizel.svg",
  13242. extra: 172/157 ,
  13243. bottom: 0.01
  13244. }
  13245. },
  13246. floatzel: {
  13247. height: math.unit(5 + 9/12, "feet"),
  13248. weight: math.unit(250, "lb"),
  13249. name: "Floatzel",
  13250. image: {
  13251. source: "./media/characters/umiko/floatzel.svg",
  13252. extra: 262/248
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(2 + 5/12, "feet"),
  13260. default: true
  13261. },
  13262. ]
  13263. )
  13264. };
  13265. characterMakers["Iliac"] = () => {
  13266. return makeCharacter(
  13267. "Iliac",
  13268. "Fidchell",
  13269. {
  13270. front: {
  13271. height: math.unit(6 + 2/12, "feet"),
  13272. weight: math.unit(146, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/iliac/front.svg",
  13276. extra: 389/365 ,
  13277. bottom: 0.035
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(6 + 2/12, "feet"),
  13285. default: true
  13286. },
  13287. ]
  13288. )
  13289. };
  13290. characterMakers["Topaz"] = () => {
  13291. return makeCharacter(
  13292. "Topaz",
  13293. "Fidchell",
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(170, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/topaz/front.svg",
  13301. extra: 317/303 ,
  13302. bottom: 0.055
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Normal",
  13309. height: math.unit(6, "feet"),
  13310. default: true
  13311. },
  13312. ]
  13313. )
  13314. };
  13315. characterMakers["Gabriel"] = () => {
  13316. return makeCharacter(
  13317. "Gabriel",
  13318. "Fidchell",
  13319. {
  13320. front: {
  13321. height: math.unit(5 + 11/12, "feet"),
  13322. weight: math.unit(144, "lb"),
  13323. name: "Front",
  13324. image: {
  13325. source: "./media/characters/gabriel/front.svg",
  13326. extra: 285/262 ,
  13327. bottom: 0.004
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Normal",
  13334. height: math.unit(5 + 11/12, "feet"),
  13335. default: true
  13336. },
  13337. ]
  13338. )
  13339. };
  13340. characterMakers["Tempest (Suicune)"] = () => {
  13341. return makeCharacter(
  13342. "Tempest (Suicune)",
  13343. "Fidchell",
  13344. {
  13345. side: {
  13346. height: math.unit(6 + 5/12, "feet"),
  13347. weight: math.unit(300, "lb"),
  13348. name: "Side",
  13349. image: {
  13350. source: "./media/characters/tempest-suicune/side.svg",
  13351. extra: 195/154 ,
  13352. bottom: 0.04
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(6 + 5/12, "feet"),
  13360. default: true
  13361. },
  13362. ]
  13363. )
  13364. };
  13365. characterMakers["Vulcan"] = () => {
  13366. return makeCharacter(
  13367. "Vulcan",
  13368. "Fidchell",
  13369. {
  13370. front: {
  13371. height: math.unit(7 + 2/12, "feet"),
  13372. weight: math.unit(322, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/vulcan/front.svg",
  13376. extra: 154/147 ,
  13377. bottom: 0.04
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(7 + 2/12, "feet"),
  13385. default: true
  13386. },
  13387. ]
  13388. )
  13389. };
  13390. characterMakers["Gault"] = () => {
  13391. return makeCharacter(
  13392. "Gault",
  13393. "Fidchell",
  13394. {
  13395. front: {
  13396. height: math.unit(5 + 10/12, "feet"),
  13397. weight: math.unit(264, "lb"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/gault/front.svg",
  13401. extra: 161/140 ,
  13402. bottom: 0.028
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(5 + 10/12, "feet"),
  13410. default: true
  13411. },
  13412. ]
  13413. )
  13414. };
  13415. characterMakers["Shard"] = () => {
  13416. return makeCharacter(
  13417. "Shard",
  13418. "Fidchell",
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/shard/front.svg",
  13426. extra: 273/238 ,
  13427. bottom: 0.02
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(3 + 6/12, "feet"),
  13435. default: true
  13436. },
  13437. ]
  13438. )
  13439. };
  13440. characterMakers["Ashe"] = () => {
  13441. return makeCharacter(
  13442. "Ashe",
  13443. "Fidchell",
  13444. {
  13445. front: {
  13446. height: math.unit(5 + 11/12, "feet"),
  13447. weight: math.unit(146, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/ashe/front.svg",
  13451. extra: 400/373 ,
  13452. bottom: 0.01
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(5 + 11/12, "feet"),
  13460. default: true
  13461. },
  13462. ]
  13463. )
  13464. };
  13465. characterMakers["Beatrix"] = () => {
  13466. return makeCharacter(
  13467. "Beatrix",
  13468. "Fidchell",
  13469. {
  13470. front: {
  13471. height: math.unit(5 + 5/12, "feet"),
  13472. weight: math.unit(135, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/beatrix/front.svg",
  13476. extra: 392/379 ,
  13477. bottom: 0.01
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(6, "feet"),
  13485. default: true
  13486. },
  13487. ]
  13488. )
  13489. };
  13490. characterMakers["Ignatius"] = () => {
  13491. return makeCharacter(
  13492. "Ignatius",
  13493. "Fidchell",
  13494. {
  13495. front: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/ignatius/front.svg",
  13501. extra: 245/222 ,
  13502. bottom: 0.01
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(5 + 5/12, "feet"),
  13510. default: true
  13511. },
  13512. ]
  13513. )
  13514. };
  13515. characterMakers["Mei Li"] = () => {
  13516. return makeCharacter(
  13517. "Mei Li",
  13518. "Fidchell",
  13519. {
  13520. front: {
  13521. height: math.unit(6 + 2/12, "feet"),
  13522. weight: math.unit(138, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/mei-li/front.svg",
  13526. extra: 237/229 ,
  13527. bottom: 0.03
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(6 + 2/12, "feet"),
  13535. default: true
  13536. },
  13537. ]
  13538. )
  13539. };
  13540. characterMakers["Puru"] = () => {
  13541. return makeCharacter(
  13542. "Puru",
  13543. "Fidchell",
  13544. {
  13545. front: {
  13546. height: math.unit(2 + 4/12, "feet"),
  13547. weight: math.unit(62, "lb"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/puru/front.svg",
  13551. extra: 206/149 ,
  13552. bottom: 0.06
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(2 + 4/12, "feet"),
  13560. default: true
  13561. },
  13562. ]
  13563. )
  13564. };
  13565. characterMakers["Kee"] = () => {
  13566. return makeCharacter(
  13567. "Kee",
  13568. "AardwolfKee",
  13569. {
  13570. taur: {
  13571. height: math.unit(11, "feet"),
  13572. weight: math.unit(500, "lb"),
  13573. name: "Taur",
  13574. image: {
  13575. source: "./media/characters/kee/taur.svg",
  13576. extra: 1,
  13577. bottom: 0.04
  13578. }
  13579. },
  13580. },
  13581. [
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(11, "feet"),
  13585. default: true
  13586. },
  13587. ]
  13588. )
  13589. };
  13590. characterMakers["Cobalt (Dracha)"] = () => {
  13591. return makeCharacter(
  13592. "Cobalt (Dracha)",
  13593. "Fidchell",
  13594. {
  13595. anthro: {
  13596. height: math.unit(7, "feet"),
  13597. weight: math.unit(190, "lb"),
  13598. name: "Anthro",
  13599. image: {
  13600. source: "./media/characters/cobalt-dracha/anthro.svg",
  13601. extra: 231/225 ,
  13602. bottom: 0.04
  13603. }
  13604. },
  13605. feral: {
  13606. height: math.unit(9 + 7/12, "feet"),
  13607. weight: math.unit(294, "lb"),
  13608. name: "Feral",
  13609. image: {
  13610. source: "./media/characters/cobalt-dracha/feral.svg",
  13611. extra: 692/633 ,
  13612. bottom: 0.05
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(7, "feet"),
  13620. default: true
  13621. },
  13622. ]
  13623. )
  13624. };
  13625. characterMakers["Java"] = () => {
  13626. return makeCharacter(
  13627. "Java",
  13628. "Fidchell",
  13629. {
  13630. fallen: {
  13631. height: math.unit(11 + 8/12, "feet"),
  13632. weight: math.unit(485, "lb"),
  13633. name: "Java (Fallen)",
  13634. rename: true,
  13635. image: {
  13636. source: "./media/characters/java/fallen.svg",
  13637. extra: 226/208 ,
  13638. bottom: 0.005
  13639. }
  13640. },
  13641. godkin: {
  13642. height: math.unit(10 + 6/12, "feet"),
  13643. weight: math.unit(328, "lb"),
  13644. name: "Java (Godkin)",
  13645. rename: true,
  13646. image: {
  13647. source: "./media/characters/java/godkin.svg",
  13648. extra: 270/262 ,
  13649. bottom: 0.02
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(11 + 8/12, "feet"),
  13657. default: true
  13658. },
  13659. ]
  13660. )
  13661. };
  13662. characterMakers["Skoll"] = () => {
  13663. return makeCharacter(
  13664. "Skoll",
  13665. "Fidchell",
  13666. {
  13667. front: {
  13668. height: math.unit(7 + 8/12, "feet"),
  13669. weight: math.unit(320, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/skoll/front.svg",
  13673. extra: 232/220 ,
  13674. bottom: 0.02
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(7 + 8/12, "feet"),
  13682. default: true
  13683. },
  13684. ]
  13685. )
  13686. };
  13687. characterMakers["Purna"] = () => {
  13688. return makeCharacter(
  13689. "Purna",
  13690. "Fidchell",
  13691. {
  13692. front: {
  13693. height: math.unit(5 + 9/12, "feet"),
  13694. weight: math.unit(170, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/purna/front.svg",
  13698. extra: 239/229 ,
  13699. bottom: 0.01
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(5 + 9/12, "feet"),
  13707. default: true
  13708. },
  13709. ]
  13710. )
  13711. };
  13712. characterMakers["Kuva"] = () => {
  13713. return makeCharacter(
  13714. "Kuva",
  13715. "Fidchell",
  13716. {
  13717. front: {
  13718. height: math.unit(5 + 9/12, "feet"),
  13719. weight: math.unit(142, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/kuva/front.svg",
  13723. extra: 281/271 ,
  13724. bottom: 0.006
  13725. }
  13726. },
  13727. },
  13728. [
  13729. {
  13730. name: "Normal",
  13731. height: math.unit(5 + 9/12, "feet"),
  13732. default: true
  13733. },
  13734. ]
  13735. )
  13736. };
  13737. characterMakers["Embra"] = () => {
  13738. return makeCharacter(
  13739. "Embra",
  13740. "Fidchell",
  13741. {
  13742. anthro: {
  13743. height: math.unit(9 + 2/12, "feet"),
  13744. weight: math.unit(270, "lb"),
  13745. name: "Anthro",
  13746. image: {
  13747. source: "./media/characters/embra/anthro.svg",
  13748. extra: 200/187 ,
  13749. bottom: 0.02
  13750. }
  13751. },
  13752. feral: {
  13753. height: math.unit(18 + 8/12, "feet"),
  13754. weight: math.unit(576, "lb"),
  13755. name: "Feral",
  13756. image: {
  13757. source: "./media/characters/embra/feral.svg",
  13758. extra: 152/137 ,
  13759. bottom: 0.037
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Normal",
  13766. height: math.unit(9 + 2/12, "feet"),
  13767. default: true
  13768. },
  13769. ]
  13770. )
  13771. };
  13772. characterMakers["Grottos"] = () => {
  13773. return makeCharacter(
  13774. "Grottos",
  13775. "Fidchell",
  13776. {
  13777. anthro: {
  13778. height: math.unit(10 + 9/12, "feet"),
  13779. weight: math.unit(224, "lb"),
  13780. name: "Anthro",
  13781. image: {
  13782. source: "./media/characters/grottos/anthro.svg",
  13783. extra: 350/332 ,
  13784. bottom: 0.045
  13785. }
  13786. },
  13787. feral: {
  13788. height: math.unit(20 + 7/12, "feet"),
  13789. weight: math.unit(629, "lb"),
  13790. name: "Feral",
  13791. image: {
  13792. source: "./media/characters/grottos/feral.svg",
  13793. extra: 207/190 ,
  13794. bottom: 0.05
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(10 + 9/12, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. )
  13806. };
  13807. characterMakers["Frifna"] = () => {
  13808. return makeCharacter(
  13809. "Frifna",
  13810. "Fidchell",
  13811. {
  13812. anthro: {
  13813. height: math.unit(9 + 6/12, "feet"),
  13814. weight: math.unit(298, "lb"),
  13815. name: "Anthro",
  13816. image: {
  13817. source: "./media/characters/frifna/anthro.svg",
  13818. extra: 282/269 ,
  13819. bottom: 0.015
  13820. }
  13821. },
  13822. feral: {
  13823. height: math.unit(16 + 2/12, "feet"),
  13824. weight: math.unit(624, "lb"),
  13825. name: "Feral",
  13826. image: {
  13827. source: "./media/characters/frifna/feral.svg"
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(9 + 6/12, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. )
  13839. };
  13840. characterMakers["Elise"] = () => {
  13841. return makeCharacter(
  13842. "Elise",
  13843. "Fidchell",
  13844. {
  13845. front: {
  13846. height: math.unit(6 + 2/12, "feet"),
  13847. weight: math.unit(168, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/elise/front.svg",
  13851. extra: 276/271
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Normal",
  13858. height: math.unit(6 + 2/12, "feet"),
  13859. default: true
  13860. },
  13861. ]
  13862. )
  13863. };
  13864. characterMakers["Glade"] = () => {
  13865. return makeCharacter(
  13866. "Glade",
  13867. "Fidchell",
  13868. {
  13869. front: {
  13870. height: math.unit(5 + 10/12, "feet"),
  13871. weight: math.unit(210, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/glade/front.svg",
  13875. extra: 258/247 ,
  13876. bottom: 0.008
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(5 + 10/12, "feet"),
  13884. default: true
  13885. },
  13886. ]
  13887. )
  13888. };
  13889. characterMakers["Rina"] = () => {
  13890. return makeCharacter(
  13891. "Rina",
  13892. "Fidchell",
  13893. {
  13894. front: {
  13895. height: math.unit(5 + 10/12, "feet"),
  13896. weight: math.unit(129, "lb"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/rina/front.svg",
  13900. extra: 266/255 ,
  13901. bottom: 0.005
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(5 + 10/12, "feet"),
  13909. default: true
  13910. },
  13911. ]
  13912. )
  13913. };
  13914. characterMakers["Veronica"] = () => {
  13915. return makeCharacter(
  13916. "Veronica",
  13917. "Fidchell",
  13918. {
  13919. front: {
  13920. height: math.unit(6 + 1/12, "feet"),
  13921. weight: math.unit(192, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/veronica/front.svg",
  13925. extra: 319/309 ,
  13926. bottom: 0.005
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(6 + 1/12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. )
  13938. };
  13939. characterMakers["Braxton"] = () => {
  13940. return makeCharacter(
  13941. "Braxton",
  13942. "jdolbear",
  13943. {
  13944. front: {
  13945. height: math.unit(9 + 3/12, "feet"),
  13946. weight: math.unit(1100, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/braxton/front.svg",
  13950. extra: 1057/984 ,
  13951. bottom: 0.05
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(9 + 3/12, "feet")
  13959. },
  13960. {
  13961. name: "Giant",
  13962. height: math.unit(300, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(700, "feet")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(6000, "feet")
  13972. },
  13973. ]
  13974. )
  13975. };
  13976. characterMakers["Blue Feyonics"] = () => {
  13977. return makeCharacter(
  13978. "Blue Feyonics",
  13979. "bluefiremarkii",
  13980. {
  13981. front: {
  13982. height: math.unit(6 + 7/12, "feet"),
  13983. weight: math.unit(150, "lb"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/blue-feyonics/front.svg",
  13987. extra: 1403/1306 ,
  13988. bottom: 0.047
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(6 + 7/12, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. )
  14000. };
  14001. characterMakers["Maxwell"] = () => {
  14002. return makeCharacter(
  14003. "Maxwell",
  14004. "Ruby_02",
  14005. {
  14006. front: {
  14007. height: math.unit(1.8, "meters"),
  14008. weight: math.unit(60, "kg"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/maxwell/front.svg",
  14012. extra: 2060/1873
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Micro",
  14019. height: math.unit(1, "mm")
  14020. },
  14021. {
  14022. name: "Normal",
  14023. height: math.unit(1.8, "meter"),
  14024. default: true
  14025. },
  14026. {
  14027. name: "Macro",
  14028. height: math.unit(30, "meters")
  14029. },
  14030. {
  14031. name: "Megamacro",
  14032. height: math.unit(10, "km")
  14033. },
  14034. ]
  14035. )
  14036. };
  14037. characterMakers["Jack"] = () => {
  14038. return makeCharacter(
  14039. "Jack",
  14040. "Jasmith",
  14041. {
  14042. front: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/jack/front.svg",
  14048. extra: 1754/1640,
  14049. bottom: 0.01
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(80000, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Max size",
  14061. height: math.unit(10, "lightyears")
  14062. },
  14063. ]
  14064. )
  14065. };
  14066. characterMakers["Cafat"] = () => {
  14067. return makeCharacter(
  14068. "Cafat",
  14069. "Dalken",
  14070. {
  14071. upright: {
  14072. height: math.unit(7, "feet"),
  14073. weight: math.unit(170, "lb"),
  14074. name: "Upright",
  14075. image: {
  14076. source: "./media/characters/cafat/upright.svg",
  14077. bottom: 0.01
  14078. }
  14079. },
  14080. uprightFull: {
  14081. height: math.unit(7, "feet"),
  14082. weight: math.unit(170, "lb"),
  14083. name: "Upright (Full)",
  14084. image: {
  14085. source: "./media/characters/cafat/upright-full.svg",
  14086. bottom: 0.01
  14087. }
  14088. },
  14089. side: {
  14090. height: math.unit(5, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Side",
  14093. image: {
  14094. source: "./media/characters/cafat/side.svg"
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Small",
  14101. height: math.unit(7, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Large",
  14106. height: math.unit(15.5, "feet")
  14107. },
  14108. ]
  14109. )
  14110. };
  14111. characterMakers["Verin Raharra"] = () => {
  14112. return makeCharacter(
  14113. "Verin Raharra",
  14114. "Virgo113",
  14115. {
  14116. front: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/verin-raharra/front.svg",
  14122. extra: 5019/4835,
  14123. bottom: 0.023
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(7 + 5/12, "feet"),
  14131. default: true
  14132. },
  14133. {
  14134. name: "Upsized",
  14135. height: math.unit(20, "feet")
  14136. },
  14137. ]
  14138. )
  14139. };
  14140. characterMakers["Nakata"] = () => {
  14141. return makeCharacter(
  14142. "Nakata",
  14143. "Dalken",
  14144. {
  14145. front: {
  14146. height: math.unit(7, "feet"),
  14147. weight: math.unit(230, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/nakata/front.svg",
  14151. extra: 1.005,
  14152. bottom: 0.01
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(7, "feet"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Big",
  14164. height: math.unit(14, "feet")
  14165. },
  14166. {
  14167. name: "Macro",
  14168. height: math.unit(400, "feet")
  14169. },
  14170. ]
  14171. )
  14172. };
  14173. characterMakers["Lily"] = () => {
  14174. return makeCharacter(
  14175. "Lily",
  14176. "nexcg",
  14177. {
  14178. front: {
  14179. height: math.unit(4.91, "feet"),
  14180. weight: math.unit(100, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/lily/front.svg",
  14184. extra: 1585/1415,
  14185. bottom: 0.02
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(4.91, "feet"),
  14193. default: true
  14194. },
  14195. ]
  14196. )
  14197. };
  14198. characterMakers["Sheila"] = () => {
  14199. return makeCharacter(
  14200. "Sheila",
  14201. "Miststalker",
  14202. {
  14203. laying: {
  14204. height: math.unit(4 + 4/12, "feet"),
  14205. weight: math.unit(600, "lb"),
  14206. name: "Laying",
  14207. image: {
  14208. source: "./media/characters/sheila/laying.svg",
  14209. extra: 1333/1265,
  14210. bottom: 0.16
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(4 + 4/12, "feet"),
  14218. default: true
  14219. },
  14220. ]
  14221. )
  14222. };
  14223. characterMakers["Sax"] = () => {
  14224. return makeCharacter(
  14225. "Sax",
  14226. "Counts-His-Toes",
  14227. {
  14228. front: {
  14229. height: math.unit(6, "feet"),
  14230. weight: math.unit(190, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/sax/front.svg",
  14234. extra: 1187/973,
  14235. bottom: 0.042
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Micro",
  14242. height: math.unit(4, "inches"),
  14243. default: true
  14244. },
  14245. ]
  14246. )
  14247. };
  14248. characterMakers["Pandora"] = () => {
  14249. return makeCharacter(
  14250. "Pandora",
  14251. "Pandora's Fox",
  14252. {
  14253. front: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(150, "lb"),
  14256. name: "Front",
  14257. image: {
  14258. source: "./media/characters/pandora/front.svg",
  14259. extra: 2720/2556,
  14260. bottom: 0.015
  14261. }
  14262. },
  14263. back: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(150, "lb"),
  14266. name: "Back",
  14267. image: {
  14268. source: "./media/characters/pandora/back.svg",
  14269. extra: 2720/2556,
  14270. bottom: 0.01
  14271. }
  14272. },
  14273. beans: {
  14274. height: math.unit(6/8, "feet"),
  14275. name: "Beans",
  14276. image: {
  14277. source: "./media/characters/pandora/beans.svg"
  14278. }
  14279. },
  14280. skirt: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Skirt",
  14284. image: {
  14285. source: "./media/characters/pandora/skirt.svg",
  14286. extra: 1622/1525,
  14287. bottom: 0.015
  14288. }
  14289. },
  14290. hoodie: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(150, "lb"),
  14293. name: "Hoodie",
  14294. image: {
  14295. source: "./media/characters/pandora/hoodie.svg",
  14296. extra: 1622/1525,
  14297. bottom: 0.015
  14298. }
  14299. },
  14300. casual: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Casual",
  14304. image: {
  14305. source: "./media/characters/pandora/casual.svg",
  14306. extra: 1622/1525,
  14307. bottom: 0.015
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(6, "feet")
  14315. },
  14316. {
  14317. name: "Big Steppy",
  14318. height: math.unit(1, "km"),
  14319. default: true
  14320. },
  14321. ]
  14322. )
  14323. };
  14324. characterMakers["Venio Darcony"] = () => {
  14325. return makeCharacter(
  14326. "Venio Darcony",
  14327. "redblackdragon",
  14328. {
  14329. side: {
  14330. height: math.unit(10, "feet"),
  14331. weight: math.unit(800, "kg"),
  14332. name: "Side",
  14333. image: {
  14334. source: "./media/characters/venio-darcony/side.svg",
  14335. extra: 1373/1003,
  14336. bottom: 0.037
  14337. }
  14338. },
  14339. front: {
  14340. height: math.unit(19, "feet"),
  14341. weight: math.unit(800, "kg"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/venio-darcony/front.svg"
  14345. }
  14346. },
  14347. back: {
  14348. height: math.unit(19, "feet"),
  14349. weight: math.unit(800, "kg"),
  14350. name: "Back",
  14351. image: {
  14352. source: "./media/characters/venio-darcony/back.svg"
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Normal",
  14359. height: math.unit(10, "feet")
  14360. },
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(130, "feet"),
  14364. default: true
  14365. },
  14366. {
  14367. name: "Macro+",
  14368. height: math.unit(240, "feet")
  14369. },
  14370. ]
  14371. )
  14372. };
  14373. characterMakers["Veski"] = () => {
  14374. return makeCharacter(
  14375. "Veski",
  14376. "Veski",
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/veski/front.svg",
  14384. extra: 1299/1225,
  14385. bottom: 0.04
  14386. }
  14387. },
  14388. back: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(150, "lb"),
  14391. name: "Back",
  14392. image: {
  14393. source: "./media/characters/veski/back.svg",
  14394. extra: 1299/1225,
  14395. bottom: 0.008
  14396. }
  14397. },
  14398. maw: {
  14399. height: math.unit(1.5 * 1.21, "feet"),
  14400. name: "Maw",
  14401. image: {
  14402. source: "./media/characters/veski/maw.svg"
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(2, "km"),
  14410. default: true
  14411. },
  14412. ]
  14413. )
  14414. };
  14415. characterMakers["Isabelle"] = () => {
  14416. return makeCharacter(
  14417. "Isabelle",
  14418. "evilwithin",
  14419. {
  14420. front: {
  14421. height: math.unit(5 + 7/12, "feet"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/isabelle/front.svg",
  14425. extra: 2130/1976,
  14426. bottom: 0.05
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Supermicro",
  14433. height: math.unit(10, "micrometers")
  14434. },
  14435. {
  14436. name: "Micro",
  14437. height: math.unit(1, "inch")
  14438. },
  14439. {
  14440. name: "Tiny",
  14441. height: math.unit(5, "inches")
  14442. },
  14443. {
  14444. name: "Standard",
  14445. height: math.unit(5 + 7/12, "inches")
  14446. },
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(80, "meters"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Megamacro",
  14454. height: math.unit(250, "meters")
  14455. },
  14456. {
  14457. name: "Gigamacro",
  14458. height: math.unit(5, "km")
  14459. },
  14460. {
  14461. name: "Cosmic",
  14462. height: math.unit(2.5e6, "miles")
  14463. },
  14464. ]
  14465. )
  14466. };
  14467. characterMakers["Hanzo"] = () => {
  14468. return makeCharacter(
  14469. "Hanzo",
  14470. "dragondruid",
  14471. {
  14472. front: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/hanzo/front.svg",
  14478. extra: 374/344,
  14479. bottom: 0.02
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(8, "feet"),
  14487. default: true
  14488. },
  14489. ]
  14490. )
  14491. };
  14492. characterMakers["Anna"] = () => {
  14493. return makeCharacter(
  14494. "Anna",
  14495. "dragondruid",
  14496. {
  14497. front: {
  14498. height: math.unit(7, "feet"),
  14499. weight: math.unit(130, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/anna/front.svg",
  14503. extra: 169/145,
  14504. bottom: 0.06
  14505. }
  14506. },
  14507. full: {
  14508. height: math.unit(4.96, "feet"),
  14509. weight: math.unit(220, "lb"),
  14510. name: "Full",
  14511. image: {
  14512. source: "./media/characters/anna/full.svg",
  14513. extra: 138/114,
  14514. bottom: 0.15
  14515. }
  14516. },
  14517. tongue: {
  14518. height: math.unit(2.53, "feet"),
  14519. name: "Tongue",
  14520. image: {
  14521. source: "./media/characters/anna/tongue.svg"
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(7, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. )
  14533. };
  14534. characterMakers["Ian Corvid"] = () => {
  14535. return makeCharacter(
  14536. "Ian Corvid",
  14537. "IanCorvid",
  14538. {
  14539. front: {
  14540. height: math.unit(7, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/ian-corvid/front.svg",
  14545. extra: 150/142,
  14546. bottom: 0.02
  14547. }
  14548. },
  14549. back: {
  14550. height: math.unit(7, "feet"),
  14551. weight: math.unit(150, "lb"),
  14552. name: "Back",
  14553. image: {
  14554. source: "./media/characters/ian-corvid/back.svg",
  14555. extra: 150/143,
  14556. bottom: 0.01
  14557. }
  14558. },
  14559. stomping: {
  14560. height: math.unit(7, "feet"),
  14561. weight: math.unit(150, "lb"),
  14562. name: "Stomping",
  14563. image: {
  14564. source: "./media/characters/ian-corvid/stomping.svg",
  14565. extra: 76/72
  14566. }
  14567. },
  14568. sitting: {
  14569. height: math.unit(7/1.8, "feet"),
  14570. weight: math.unit(150, "lb"),
  14571. name: "Sitting",
  14572. image: {
  14573. source: "./media/characters/ian-corvid/sitting.svg",
  14574. extra: 1400/1269,
  14575. bottom: 0.15
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Tiny Microw",
  14582. height: math.unit(1, "inch")
  14583. },
  14584. {
  14585. name: "Microw",
  14586. height: math.unit(6, "inches")
  14587. },
  14588. {
  14589. name: "Crow",
  14590. height: math.unit(7 + 1/12, "feet"),
  14591. default: true
  14592. },
  14593. {
  14594. name: "Macrow",
  14595. height: math.unit(176, "feet")
  14596. },
  14597. ]
  14598. )
  14599. };
  14600. characterMakers["Natalie Kellon"] = () => {
  14601. return makeCharacter(
  14602. "Natalie Kellon",
  14603. "lestrange110",
  14604. {
  14605. front: {
  14606. height: math.unit(5 + 7/12, "feet"),
  14607. weight: math.unit(147, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/natalie-kellon/front.svg",
  14611. extra: 1214/1141,
  14612. bottom: 0.02
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(1/16, "inch")
  14620. },
  14621. {
  14622. name: "Tiny",
  14623. height: math.unit(4, "inches")
  14624. },
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(5 + 7/12, "feet"),
  14628. default: true
  14629. },
  14630. {
  14631. name: "Amazon",
  14632. height: math.unit(12, "feet")
  14633. },
  14634. {
  14635. name: "Giantess",
  14636. height: math.unit(160, "meters")
  14637. },
  14638. {
  14639. name: "Titaness",
  14640. height: math.unit(800, "meters")
  14641. },
  14642. ]
  14643. )
  14644. };
  14645. characterMakers["Alluria"] = () => {
  14646. return makeCharacter(
  14647. "Alluria",
  14648. "Sir--Raptor",
  14649. {
  14650. front: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/alluria/front.svg",
  14656. extra: 806/738,
  14657. bottom: 0.01
  14658. }
  14659. },
  14660. side: {
  14661. height: math.unit(6, "feet"),
  14662. weight: math.unit(150, "lb"),
  14663. name: "Side",
  14664. image: {
  14665. source: "./media/characters/alluria/side.svg",
  14666. extra: 800/750,
  14667. }
  14668. },
  14669. back: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Back",
  14673. image: {
  14674. source: "./media/characters/alluria/back.svg",
  14675. extra: 806/738,
  14676. }
  14677. },
  14678. frontMaid: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Front (Maid)",
  14682. image: {
  14683. source: "./media/characters/alluria/front-maid.svg",
  14684. extra: 806/738,
  14685. bottom: 0.01
  14686. }
  14687. },
  14688. sideMaid: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Side (Maid)",
  14692. image: {
  14693. source: "./media/characters/alluria/side-maid.svg",
  14694. extra: 800/750,
  14695. bottom: 0.005
  14696. }
  14697. },
  14698. backMaid: {
  14699. height: math.unit(6, "feet"),
  14700. weight: math.unit(150, "lb"),
  14701. name: "Back (Maid)",
  14702. image: {
  14703. source: "./media/characters/alluria/back-maid.svg",
  14704. extra: 806/738,
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Micro",
  14711. height: math.unit(6, "inches"),
  14712. default: true
  14713. },
  14714. ]
  14715. )
  14716. };
  14717. characterMakers["Kyle"] = () => {
  14718. return makeCharacter(
  14719. "Kyle",
  14720. "Jasmith",
  14721. {
  14722. front: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(150, "lb"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/kyle/front.svg",
  14728. extra: 1069/962,
  14729. bottom: 77.228/1727.45
  14730. }
  14731. },
  14732. },
  14733. [
  14734. {
  14735. name: "Macro",
  14736. height: math.unit(150, "feet"),
  14737. default: true
  14738. },
  14739. ]
  14740. )
  14741. };
  14742. characterMakers["Duncan"] = () => {
  14743. return makeCharacter(
  14744. "Duncan",
  14745. "Duncan",
  14746. {
  14747. front: {
  14748. height: math.unit(6, "feet"),
  14749. weight: math.unit(300, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/duncan/front.svg",
  14753. extra: 1650/1482,
  14754. bottom: 0.05
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Macro",
  14761. height: math.unit(100, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. )
  14766. };
  14767. characterMakers["Memory"] = () => {
  14768. return makeCharacter(
  14769. "Memory",
  14770. "boringcactus",
  14771. {
  14772. front: {
  14773. height: math.unit(5 + 4/12, "feet"),
  14774. weight: math.unit(220, "lb"),
  14775. name: "Front",
  14776. image: {
  14777. source: "./media/characters/memory/front.svg",
  14778. extra: 3641/3545,
  14779. bottom: 0.03
  14780. }
  14781. },
  14782. back: {
  14783. height: math.unit(5 + 4/12, "feet"),
  14784. weight: math.unit(220, "lb"),
  14785. name: "Back",
  14786. image: {
  14787. source: "./media/characters/memory/back.svg",
  14788. extra: 3641/3545,
  14789. bottom: 0.025
  14790. }
  14791. },
  14792. frontSkirt: {
  14793. height: math.unit(5 + 4/12, "feet"),
  14794. weight: math.unit(220, "lb"),
  14795. name: "Front (Skirt)",
  14796. image: {
  14797. source: "./media/characters/memory/front-skirt.svg",
  14798. extra: 3641/3545,
  14799. bottom: 0.03
  14800. }
  14801. },
  14802. frontDress: {
  14803. height: math.unit(5 + 4/12, "feet"),
  14804. weight: math.unit(220, "lb"),
  14805. name: "Front (Dress)",
  14806. image: {
  14807. source: "./media/characters/memory/front-dress.svg",
  14808. extra: 3641/3545,
  14809. bottom: 0.03
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Micro",
  14816. height: math.unit(6, "inches"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(5 + 4/12, "feet")
  14822. },
  14823. ]
  14824. )
  14825. };
  14826. characterMakers["Luno"] = () => {
  14827. return makeCharacter(
  14828. "Luno",
  14829. "Jamesy",
  14830. {
  14831. front: {
  14832. height: math.unit(4 + 11/12, "feet"),
  14833. weight: math.unit(100, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/luno/front.svg",
  14837. extra: 1535/1487,
  14838. bottom: 0.03
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Micro",
  14845. height: math.unit(3, "inches")
  14846. },
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(4 + 11/12, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro",
  14854. height: math.unit(300, "feet")
  14855. },
  14856. {
  14857. name: "Megamacro",
  14858. height: math.unit(700, "miles")
  14859. },
  14860. ]
  14861. )
  14862. };
  14863. characterMakers["Jamesy"] = () => {
  14864. return makeCharacter(
  14865. "Jamesy",
  14866. "Jamesy",
  14867. {
  14868. front: {
  14869. height: math.unit(6 + 2/12, "feet"),
  14870. weight: math.unit(170, "lb"),
  14871. name: "Front",
  14872. image: {
  14873. source: "./media/characters/jamesy/front.svg",
  14874. extra: 440/382,
  14875. bottom: 0.005
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Micro",
  14882. height: math.unit(3, "inches")
  14883. },
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(6 + 2/12, "feet"),
  14887. default: true
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(300, "feet")
  14892. },
  14893. {
  14894. name: "Megamacro",
  14895. height: math.unit(700, "miles")
  14896. },
  14897. ]
  14898. )
  14899. };
  14900. characterMakers["Mark"] = () => {
  14901. return makeCharacter(
  14902. "Mark",
  14903. "ich",
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(160, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/mark/front.svg",
  14911. extra: 3300/3100,
  14912. bottom: 136.42/3440.47
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Macro",
  14919. height: math.unit(120, "meters")
  14920. },
  14921. {
  14922. name: "Bigger Macro",
  14923. height: math.unit(350, "meters")
  14924. },
  14925. {
  14926. name: "Megamacro",
  14927. height: math.unit(8, "km"),
  14928. default: true
  14929. },
  14930. {
  14931. name: "Continental",
  14932. height: math.unit(4550, "km")
  14933. },
  14934. {
  14935. name: "Planetary",
  14936. height: math.unit(65000, "km")
  14937. },
  14938. ]
  14939. )
  14940. };
  14941. characterMakers["Mac"] = () => {
  14942. return makeCharacter(
  14943. "Mac",
  14944. "Macroceli",
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(400, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/mac/front.svg",
  14952. extra: 1048/987.7,
  14953. bottom: 60/1107.6,
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(500, "feet"),
  14961. default: true
  14962. },
  14963. ]
  14964. )
  14965. };
  14966. characterMakers["Bari"] = () => {
  14967. return makeCharacter(
  14968. "Bari",
  14969. "Bariamph",
  14970. {
  14971. front: {
  14972. height: math.unit(5 + 2/12, "feet"),
  14973. weight: math.unit(190, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/bari/front.svg",
  14977. extra: 3156/2880,
  14978. bottom: 0.03
  14979. }
  14980. },
  14981. back: {
  14982. height: math.unit(5 + 2/12, "feet"),
  14983. weight: math.unit(190, "lb"),
  14984. name: "Back",
  14985. image: {
  14986. source: "./media/characters/bari/back.svg",
  14987. extra: 3260/2834,
  14988. bottom: 0.025
  14989. }
  14990. },
  14991. frontPlush: {
  14992. height: math.unit(5 + 2/12, "feet"),
  14993. weight: math.unit(190, "lb"),
  14994. name: "Front (Plush)",
  14995. image: {
  14996. source: "./media/characters/bari/front-plush.svg",
  14997. extra: 1112/1061,
  14998. bottom: 0.002
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Micro",
  15005. height: math.unit(3, "inches")
  15006. },
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(5 + 2/12, "feet"),
  15010. default: true
  15011. },
  15012. {
  15013. name: "Macro",
  15014. height: math.unit(20, "feet")
  15015. },
  15016. ]
  15017. )
  15018. };
  15019. characterMakers["Hunter Misha Raven"] = () => {
  15020. return makeCharacter(
  15021. "Hunter Misha Raven",
  15022. "ashtrek",
  15023. {
  15024. front: {
  15025. height: math.unit(6 + 1/12, "feet"),
  15026. weight: math.unit(275, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/hunter-misha-raven/front.svg"
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Mortal",
  15036. height: math.unit(6 + 1/12, "feet")
  15037. },
  15038. {
  15039. name: "Divine",
  15040. height: math.unit(1.12134e34, "parsecs"),
  15041. default: true
  15042. },
  15043. ]
  15044. )
  15045. };
  15046. characterMakers["Max Calore"] = () => {
  15047. return makeCharacter(
  15048. "Max Calore",
  15049. "flamestar",
  15050. {
  15051. front: {
  15052. height: math.unit(6 + 3/12, "feet"),
  15053. weight: math.unit(220, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/max-calore/front.svg",
  15057. extra: 1700/1648,
  15058. bottom: 0.01
  15059. }
  15060. },
  15061. back: {
  15062. height: math.unit(6 + 3/12, "feet"),
  15063. weight: math.unit(220, "lb"),
  15064. name: "Back",
  15065. image: {
  15066. source: "./media/characters/max-calore/back.svg",
  15067. extra: 1700/1648,
  15068. bottom: 0.01
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(6 + 3/12, "feet"),
  15076. default: true
  15077. },
  15078. ]
  15079. )
  15080. };
  15081. characterMakers["Aspen"] = () => {
  15082. return makeCharacter(
  15083. "Aspen",
  15084. "Fidchell",
  15085. {
  15086. side: {
  15087. height: math.unit(2 + 8/12, "feet"),
  15088. weight: math.unit(99, "lb"),
  15089. name: "Side",
  15090. image: {
  15091. source: "./media/characters/aspen/side.svg",
  15092. extra: 152/138,
  15093. bottom: 0.032
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Normal",
  15100. height: math.unit(2 + 8/12, "feet"),
  15101. default: true
  15102. },
  15103. ]
  15104. )
  15105. };
  15106. characterMakers["Sheila (Wolf)"] = () => {
  15107. return makeCharacter(
  15108. "Sheila (Wolf)",
  15109. "Fidchell",
  15110. {
  15111. side: {
  15112. height: math.unit(3 + 2/12, "feet"),
  15113. weight: math.unit(224, "lb"),
  15114. name: "Side",
  15115. image: {
  15116. source: "./media/characters/sheila-wolf/side.svg",
  15117. extra: 179/166,
  15118. bottom: 0.03
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(3 + 2/12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. )
  15130. };
  15131. characterMakers["Michelle"] = () => {
  15132. return makeCharacter(
  15133. "Michelle",
  15134. "Fidchell",
  15135. {
  15136. side: {
  15137. height: math.unit(1 + 9/12, "feet"),
  15138. weight: math.unit(38, "lb"),
  15139. name: "Side",
  15140. image: {
  15141. source: "./media/characters/michelle/side.svg",
  15142. extra: 147/136.7,
  15143. bottom: 0.03
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Normal",
  15150. height: math.unit(1 + 9/12, "feet"),
  15151. default: true
  15152. },
  15153. ]
  15154. )
  15155. };
  15156. characterMakers["Nino"] = () => {
  15157. return makeCharacter(
  15158. "Nino",
  15159. "Fidchell",
  15160. {
  15161. front: {
  15162. height: math.unit(1 + 1/12, "feet"),
  15163. weight: math.unit(18, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/nino/front.svg"
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(1 + 1/12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. )
  15178. };
  15179. characterMakers["Viola"] = () => {
  15180. return makeCharacter(
  15181. "Viola",
  15182. "Fidchell",
  15183. {
  15184. front: {
  15185. height: math.unit(1, "feet"),
  15186. weight: math.unit(16, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/viola/front.svg"
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(1, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. )
  15201. };
  15202. characterMakers["Atlas"] = () => {
  15203. return makeCharacter(
  15204. "Atlas",
  15205. "Fidchell",
  15206. {
  15207. front: {
  15208. height: math.unit(6 + 5/12, "feet"),
  15209. weight: math.unit(580, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/atlas/front.svg",
  15213. extra: 298.5/290,
  15214. bottom: 0.015
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(6 + 5/12, "feet"),
  15222. default: true
  15223. },
  15224. ]
  15225. )
  15226. };
  15227. characterMakers["Davy"] = () => {
  15228. return makeCharacter(
  15229. "Davy",
  15230. "Fidchell",
  15231. {
  15232. side: {
  15233. height: math.unit(1 + 10/12, "feet"),
  15234. weight: math.unit(25, "lb"),
  15235. name: "Side",
  15236. image: {
  15237. source: "./media/characters/davy/side.svg",
  15238. extra: 200/170,
  15239. bottom: 0.01
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(1 + 10/12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. )
  15251. };
  15252. characterMakers["Fiona"] = () => {
  15253. return makeCharacter(
  15254. "Fiona",
  15255. "Fidchell",
  15256. {
  15257. side: {
  15258. height: math.unit(4 + 8/12, "feet"),
  15259. weight: math.unit(166, "lb"),
  15260. name: "Side",
  15261. image: {
  15262. source: "./media/characters/fiona/side.svg",
  15263. extra: 232/220,
  15264. bottom: 0.03
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(4 + 8/12, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. )
  15276. };
  15277. characterMakers["Lyla"] = () => {
  15278. return makeCharacter(
  15279. "Lyla",
  15280. "Fidchell",
  15281. {
  15282. front: {
  15283. height: math.unit(2, "feet"),
  15284. weight: math.unit(62, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/lyla/front.svg",
  15288. bottom: 0.1
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(2, "feet"),
  15296. default: true
  15297. },
  15298. ]
  15299. )
  15300. };
  15301. characterMakers["Perseus"] = () => {
  15302. return makeCharacter(
  15303. "Perseus",
  15304. "Fidchell",
  15305. {
  15306. side: {
  15307. height: math.unit(1.8, "feet"),
  15308. weight: math.unit(44, "lb"),
  15309. name: "Side",
  15310. image: {
  15311. source: "./media/characters/perseus/side.svg",
  15312. bottom: 0.21
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(1.8, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. )
  15324. };
  15325. characterMakers["Remus"] = () => {
  15326. return makeCharacter(
  15327. "Remus",
  15328. "Fidchell",
  15329. {
  15330. side: {
  15331. height: math.unit(4 + 2/12, "feet"),
  15332. weight: math.unit(20, "lb"),
  15333. name: "Side",
  15334. image: {
  15335. source: "./media/characters/remus/side.svg"
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(4 + 2/12, "feet"),
  15343. default: true
  15344. },
  15345. ]
  15346. )
  15347. };
  15348. characterMakers["Raf"] = () => {
  15349. return makeCharacter(
  15350. "Raf",
  15351. "the_raf",
  15352. {
  15353. front: {
  15354. height: math.unit(4 + 11/12, "feet"),
  15355. weight: math.unit(114, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/raf/front.svg",
  15359. bottom: 0.01
  15360. }
  15361. },
  15362. side: {
  15363. height: math.unit(4 + 11/12, "feet"),
  15364. weight: math.unit(114, "lb"),
  15365. name: "Side",
  15366. image: {
  15367. source: "./media/characters/raf/side.svg",
  15368. bottom: 0.005
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Micro",
  15375. height: math.unit(2, "inches")
  15376. },
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(4 + 11/12, "feet"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Macro",
  15384. height: math.unit(70, "feet")
  15385. },
  15386. ]
  15387. )
  15388. };
  15389. characterMakers["Liam Einarr"] = () => {
  15390. return makeCharacter(
  15391. "Liam Einarr",
  15392. "LiamEinarr",
  15393. {
  15394. front: {
  15395. height: math.unit(1.5, "meters"),
  15396. weight: math.unit(68, "kg"),
  15397. name: "Front",
  15398. image: {
  15399. source: "./media/characters/liam-einarr/front.svg",
  15400. extra: 2822/2666
  15401. }
  15402. },
  15403. back: {
  15404. height: math.unit(1.5, "meters"),
  15405. weight: math.unit(68, "kg"),
  15406. name: "Back",
  15407. image: {
  15408. source: "./media/characters/liam-einarr/back.svg",
  15409. extra: 2822/2666,
  15410. bottom: 0.015
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(1.5, "meters"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Macro",
  15422. height: math.unit(150, "meters")
  15423. },
  15424. {
  15425. name: "Megamacro",
  15426. height: math.unit(35, "km")
  15427. },
  15428. ]
  15429. )
  15430. };
  15431. characterMakers["Linda"] = () => {
  15432. return makeCharacter(
  15433. "Linda",
  15434. "Dalken",
  15435. {
  15436. front: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(75, "kg"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/linda/front.svg",
  15442. extra: 930/874,
  15443. bottom: 0.004
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. )
  15455. };
  15456. characterMakers["Caylex"] = () => {
  15457. return makeCharacter(
  15458. "Caylex",
  15459. "ArgentVZ",
  15460. {
  15461. front: {
  15462. height: math.unit(6 + 8/12, "feet"),
  15463. weight: math.unit(220, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/caylex/front.svg",
  15467. extra: 821/772,
  15468. bottom: 0.07
  15469. }
  15470. },
  15471. back: {
  15472. height: math.unit(6 + 8/12, "feet"),
  15473. weight: math.unit(220, "lb"),
  15474. name: "Back",
  15475. image: {
  15476. source: "./media/characters/caylex/back.svg",
  15477. extra: 821/772,
  15478. bottom: 0.022
  15479. }
  15480. },
  15481. hand: {
  15482. height: math.unit(1.25, "feet"),
  15483. name: "Hand",
  15484. image: {
  15485. source: "./media/characters/caylex/hand.svg"
  15486. }
  15487. },
  15488. foot: {
  15489. height: math.unit(1.6, "feet"),
  15490. name: "Foot",
  15491. image: {
  15492. source: "./media/characters/caylex/foot.svg"
  15493. }
  15494. },
  15495. armored: {
  15496. height: math.unit(6 + 8/12, "feet"),
  15497. weight: math.unit(250, "lb"),
  15498. name: "Armored",
  15499. image: {
  15500. source: "./media/characters/caylex/armored.svg",
  15501. extra: 1420/1310,
  15502. bottom: 0.045
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(6 + 8/12, "feet"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Normal+",
  15514. height: math.unit(12, "feet")
  15515. },
  15516. ]
  15517. )
  15518. };
  15519. characterMakers["Alana"] = () => {
  15520. return makeCharacter(
  15521. "Alana",
  15522. "Adeleide",
  15523. {
  15524. front: {
  15525. height: math.unit(7 + 6/12, "feet"),
  15526. weight: math.unit(288, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/alana/front.svg",
  15530. extra: 679/653,
  15531. bottom: 22.5/701
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(7 + 6/12, "feet")
  15539. },
  15540. {
  15541. name: "Large",
  15542. height: math.unit(50, "feet")
  15543. },
  15544. {
  15545. name: "Macro",
  15546. height: math.unit(100, "feet"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Macro+",
  15551. height: math.unit(200, "feet")
  15552. },
  15553. ]
  15554. )
  15555. };
  15556. characterMakers["Hasani"] = () => {
  15557. return makeCharacter(
  15558. "Hasani",
  15559. "BishopBun",
  15560. {
  15561. front: {
  15562. height: math.unit(6 + 1/12, "feet"),
  15563. weight: math.unit(210, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/hasani/front.svg",
  15567. extra: 244/232,
  15568. bottom: 0.01
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(6 + 1/12, "feet"),
  15573. weight: math.unit(210, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/hasani/back.svg",
  15577. extra: 244/232,
  15578. bottom: 0.01
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(6 + 1/12, "feet")
  15586. },
  15587. {
  15588. name: "Macro",
  15589. height: math.unit(175, "feet"),
  15590. default: true
  15591. },
  15592. ]
  15593. )
  15594. };
  15595. characterMakers["Nita"] = () => {
  15596. return makeCharacter(
  15597. "Nita",
  15598. "Ich",
  15599. {
  15600. front: {
  15601. height: math.unit(1.82, "meters"),
  15602. weight: math.unit(140, "lb"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/nita/front.svg",
  15606. extra: 2473/2363,
  15607. bottom: 0.01
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Normal",
  15614. height: math.unit(1.82, "m")
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(300, "m")
  15619. },
  15620. {
  15621. name: "Mistake Canon",
  15622. height: math.unit(0.5, "miles"),
  15623. default: true
  15624. },
  15625. {
  15626. name: "Big Mistake",
  15627. height: math.unit(13, "miles")
  15628. },
  15629. {
  15630. name: "Playing God",
  15631. height: math.unit(2450, "miles")
  15632. },
  15633. ]
  15634. )
  15635. };
  15636. characterMakers["Shiriko"] = () => {
  15637. return makeCharacter(
  15638. "Shiriko",
  15639. "Shiriko",
  15640. {
  15641. front: {
  15642. height: math.unit(4, "feet"),
  15643. weight: math.unit(120, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/shiriko/front.svg",
  15647. extra: 195/188
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Normal",
  15654. height: math.unit(4, "feet"),
  15655. default: true
  15656. },
  15657. ]
  15658. )
  15659. };
  15660. characterMakers["Deja"] = () => {
  15661. return makeCharacter(
  15662. "Deja",
  15663. "dejaroo",
  15664. {
  15665. front: {
  15666. height: math.unit(6, "feet"),
  15667. name: "front",
  15668. image: {
  15669. source: "./media/characters/deja/front.svg",
  15670. extra: 926/840,
  15671. bottom: 0.07
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Planck Length",
  15678. height: math.unit(1.6e-35, "meters")
  15679. },
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(30.48, "meters"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Universal",
  15687. height: math.unit(8.8e26, "meters")
  15688. },
  15689. ]
  15690. )
  15691. };
  15692. characterMakers["Anima"] = () => {
  15693. return makeCharacter(
  15694. "Anima",
  15695. "Anima",
  15696. {
  15697. side: {
  15698. height: math.unit(8, "feet"),
  15699. weight: math.unit(6300, "lb"),
  15700. name: "Side",
  15701. image: {
  15702. source: "./media/characters/anima/side.svg",
  15703. bottom: 0.035
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(8, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. )
  15715. };
  15716. characterMakers["Bianca"] = () => {
  15717. return makeCharacter(
  15718. "Bianca",
  15719. "Sdocat",
  15720. {
  15721. front: {
  15722. height: math.unit(8, "feet"),
  15723. weight: math.unit(350, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/bianca/front.svg",
  15727. extra: 234/225,
  15728. bottom: 0.03
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(8, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. )
  15740. };
  15741. characterMakers["Adinia"] = () => {
  15742. return makeCharacter(
  15743. "Adinia",
  15744. "Sdocat",
  15745. {
  15746. front: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/adinia/front.svg",
  15752. extra: 1845/1672,
  15753. bottom: 0.02
  15754. }
  15755. },
  15756. back: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(150, "lb"),
  15759. name: "Back",
  15760. image: {
  15761. source: "./media/characters/adinia/back.svg",
  15762. extra: 1845/1672,
  15763. bottom: 0.002
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(11 + 5/12, "feet"),
  15771. default: true
  15772. },
  15773. ]
  15774. )
  15775. };
  15776. characterMakers["Lykasa"] = () => {
  15777. return makeCharacter(
  15778. "Lykasa",
  15779. "Roxas00137",
  15780. {
  15781. front: {
  15782. height: math.unit(3, "meters"),
  15783. weight: math.unit(200, "kg"),
  15784. name: "Front",
  15785. image: {
  15786. source: "./media/characters/lykasa/front.svg",
  15787. extra: 1076/976,
  15788. bottom: 0.06
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(3, "meters")
  15796. },
  15797. {
  15798. name: "Kaiku",
  15799. height: math.unit(120, "meters"),
  15800. default: true
  15801. },
  15802. {
  15803. name: "Mega Kaiju",
  15804. height: math.unit(240, "km")
  15805. },
  15806. {
  15807. name: "Giga Kaiju",
  15808. height: math.unit(400, "megameters")
  15809. },
  15810. {
  15811. name: "Tera Kaiju",
  15812. height: math.unit(800, "gigameters")
  15813. },
  15814. {
  15815. name: "Kaiju Dragon Goddess",
  15816. height: math.unit(26, "zettaparsecs")
  15817. },
  15818. ]
  15819. )
  15820. };
  15821. characterMakers["Malfaren"] = () => {
  15822. return makeCharacter(
  15823. "Malfaren",
  15824. "Malfaren",
  15825. {
  15826. side: {
  15827. height: math.unit(283/124*6, "feet"),
  15828. weight: math.unit(35000, "lb"),
  15829. name: "Side",
  15830. image: {
  15831. source: "./media/characters/malfaren/side.svg",
  15832. extra: 2500/1010,
  15833. bottom: 0.01
  15834. }
  15835. },
  15836. front: {
  15837. height: math.unit(22.36, "feet"),
  15838. weight: math.unit(35000, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/malfaren/front.svg",
  15842. extra: 1631/1476,
  15843. bottom: 0.01
  15844. }
  15845. },
  15846. maw: {
  15847. height: math.unit(6.9, "feet"),
  15848. name: "Maw",
  15849. image: {
  15850. source: "./media/characters/malfaren/maw.svg"
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Big",
  15857. height: math.unit(283/162*6, "feet"),
  15858. },
  15859. {
  15860. name: "Bigger",
  15861. height: math.unit(283/124*6, "feet")
  15862. },
  15863. {
  15864. name: "Massive",
  15865. height: math.unit(283/92*6, "feet"),
  15866. default: true
  15867. },
  15868. {
  15869. name: "👀💦",
  15870. height: math.unit(283/73*6, "feet"),
  15871. },
  15872. ]
  15873. )
  15874. };
  15875. characterMakers["Kernel"] = () => {
  15876. return makeCharacter(
  15877. "Kernel",
  15878. "KernelDecoy",
  15879. {
  15880. front: {
  15881. height: math.unit(1.7, "m"),
  15882. weight: math.unit(70, "kg"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/kernel/front.svg",
  15886. extra: 222/210,
  15887. bottom: 0.007
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Nano",
  15894. height: math.unit(17, "micrometers")
  15895. },
  15896. {
  15897. name: "Micro",
  15898. height: math.unit(1.7, "mm")
  15899. },
  15900. {
  15901. name: "Small",
  15902. height: math.unit(1.7, "cm")
  15903. },
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(1.7, "m"),
  15907. default: true
  15908. },
  15909. ]
  15910. )
  15911. };
  15912. characterMakers["Jayne Folest"] = () => {
  15913. return makeCharacter(
  15914. "Jayne Folest",
  15915. "JayneFolest",
  15916. {
  15917. front: {
  15918. height: math.unit(1.75, "meters"),
  15919. weight: math.unit(65, "kg"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/jayne-folest/front.svg",
  15923. extra: 2115/2007,
  15924. bottom: 0.02
  15925. }
  15926. },
  15927. back: {
  15928. height: math.unit(1.75, "meters"),
  15929. weight: math.unit(65, "kg"),
  15930. name: "Back",
  15931. image: {
  15932. source: "./media/characters/jayne-folest/back.svg",
  15933. extra: 2115/2007,
  15934. bottom: 0.005
  15935. }
  15936. },
  15937. frontClothed: {
  15938. height: math.unit(1.75, "meters"),
  15939. weight: math.unit(65, "kg"),
  15940. name: "Front (Clothed)",
  15941. image: {
  15942. source: "./media/characters/jayne-folest/front-clothed.svg",
  15943. extra: 2115/2007,
  15944. bottom: 0.035
  15945. }
  15946. },
  15947. hand: {
  15948. height: math.unit(1/1.260, "feet"),
  15949. name: "Hand",
  15950. image: {
  15951. source: "./media/characters/jayne-folest/hand.svg"
  15952. }
  15953. },
  15954. foot: {
  15955. height: math.unit(1/0.918, "feet"),
  15956. name: "Foot",
  15957. image: {
  15958. source: "./media/characters/jayne-folest/foot.svg"
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Micro",
  15965. height: math.unit(4, "cm")
  15966. },
  15967. {
  15968. name: "Normal",
  15969. height: math.unit(1.75, "meters")
  15970. },
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(47.5, "meters"),
  15974. default: true
  15975. },
  15976. ]
  15977. )
  15978. };
  15979. characterMakers["Algier"] = () => {
  15980. return makeCharacter(
  15981. "Algier",
  15982. "Silas",
  15983. {
  15984. front: {
  15985. height: math.unit(180, "cm"),
  15986. weight: math.unit(70, "kg"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/algier/front.svg",
  15990. extra: 596/572,
  15991. bottom: 0.04
  15992. }
  15993. },
  15994. back: {
  15995. height: math.unit(180, "cm"),
  15996. weight: math.unit(70, "kg"),
  15997. name: "Back",
  15998. image: {
  15999. source: "./media/characters/algier/back.svg",
  16000. extra: 596/572,
  16001. bottom: 0.025
  16002. }
  16003. },
  16004. frontdressed: {
  16005. height: math.unit(180, "cm"),
  16006. weight: math.unit(150, "kg"),
  16007. name: "Front-dressed",
  16008. image: {
  16009. source: "./media/characters/algier/front-dressed.svg",
  16010. extra: 596/572,
  16011. bottom: 0.038
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Micro",
  16018. height: math.unit(5, "cm")
  16019. },
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(180, "cm"),
  16023. default: true
  16024. },
  16025. {
  16026. name: "Macro",
  16027. height: math.unit(64, "m")
  16028. },
  16029. ]
  16030. )
  16031. };
  16032. characterMakers["Pretzel"] = () => {
  16033. return makeCharacter(
  16034. "Pretzel",
  16035. "Serpentus",
  16036. {
  16037. upright: {
  16038. height: math.unit(7, "feet"),
  16039. weight: math.unit(300, "lb"),
  16040. name: "Upright",
  16041. image: {
  16042. source: "./media/characters/pretzel/upright.svg",
  16043. extra: 534/522,
  16044. bottom: 0.065
  16045. }
  16046. },
  16047. sprawling: {
  16048. height: math.unit(3.75, "feet"),
  16049. weight: math.unit(300, "lb"),
  16050. name: "Sprawling",
  16051. image: {
  16052. source: "./media/characters/pretzel/sprawling.svg",
  16053. extra: 314/281,
  16054. bottom: 0.1
  16055. }
  16056. },
  16057. tongue: {
  16058. height: math.unit(2, "feet"),
  16059. name: "Tongue",
  16060. image: {
  16061. source: "./media/characters/pretzel/tongue.svg"
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(7, "feet"),
  16069. default: true
  16070. },
  16071. {
  16072. name: "Oversized",
  16073. height: math.unit(15, "feet")
  16074. },
  16075. {
  16076. name: "Huge",
  16077. height: math.unit(30, "feet")
  16078. },
  16079. {
  16080. name: "Macro",
  16081. height: math.unit(250, "feet")
  16082. },
  16083. ]
  16084. )
  16085. };
  16086. characterMakers["Roxi"] = () => {
  16087. return makeCharacter(
  16088. "Roxi",
  16089. "carthusflame",
  16090. {
  16091. sideFront: {
  16092. height: math.unit(5 + 2/12, "feet"),
  16093. weight: math.unit(120, "lb"),
  16094. name: "Front Side",
  16095. image: {
  16096. source: "./media/characters/roxi/side-front.svg",
  16097. extra: 2924/2717,
  16098. bottom: 0.08
  16099. }
  16100. },
  16101. sideBack: {
  16102. height: math.unit(5 + 2/12, "feet"),
  16103. weight: math.unit(120, "lb"),
  16104. name: "Back Side",
  16105. image: {
  16106. source: "./media/characters/roxi/side-back.svg",
  16107. extra: 2904/2693,
  16108. bottom: 0.06
  16109. }
  16110. },
  16111. front: {
  16112. height: math.unit(5 + 2/12, "feet"),
  16113. weight: math.unit(120, "lb"),
  16114. name: "Front",
  16115. image: {
  16116. source: "./media/characters/roxi/front.svg",
  16117. extra: 2028/1907,
  16118. bottom: 0.01
  16119. }
  16120. },
  16121. frontAlt: {
  16122. height: math.unit(5 + 2/12, "feet"),
  16123. weight: math.unit(120, "lb"),
  16124. name: "Front (Alt)",
  16125. image: {
  16126. source: "./media/characters/roxi/front-alt.svg",
  16127. extra: 1828/1798,
  16128. bottom: 0.01
  16129. }
  16130. },
  16131. sitting: {
  16132. height: math.unit(2.8, "feet"),
  16133. weight: math.unit(120, "lb"),
  16134. name: "Sitting",
  16135. image: {
  16136. source: "./media/characters/roxi/sitting.svg",
  16137. extra: 2660/2462,
  16138. bottom: 0.1
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(5 + 2/12, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. )
  16150. };
  16151. characterMakers["Shadow"] = () => {
  16152. return makeCharacter(
  16153. "Shadow",
  16154. "MKShadowdrake",
  16155. {
  16156. side: {
  16157. height: math.unit(55, "feet"),
  16158. weight: math.unit(153, "tons"),
  16159. name: "Side",
  16160. image: {
  16161. source: "./media/characters/shadow/side.svg",
  16162. extra: 701/628,
  16163. bottom: 0.02
  16164. }
  16165. },
  16166. flying: {
  16167. height: math.unit(145, "feet"),
  16168. weight: math.unit(153, "tons"),
  16169. name: "Flying",
  16170. image: {
  16171. source: "./media/characters/shadow/flying.svg"
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(55, "feet"),
  16179. default: true
  16180. },
  16181. ]
  16182. )
  16183. };
  16184. characterMakers["Marcie"] = () => {
  16185. return makeCharacter(
  16186. "Marcie",
  16187. "Macroceli",
  16188. {
  16189. front: {
  16190. height: math.unit(6, "feet"),
  16191. weight: math.unit(200, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/marcie/front.svg",
  16195. extra: 960/876,
  16196. bottom: 58/1017.87
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Macro",
  16203. height: math.unit(1, "mile"),
  16204. default: true
  16205. },
  16206. ]
  16207. )
  16208. };
  16209. characterMakers["Kachina"] = () => {
  16210. return makeCharacter(
  16211. "Kachina",
  16212. "Trisha",
  16213. {
  16214. front: {
  16215. height: math.unit(7, "feet"),
  16216. weight: math.unit(200, "lb"),
  16217. name: "Front",
  16218. image: {
  16219. source: "./media/characters/kachina/front.svg",
  16220. extra: 1290.68/1119,
  16221. bottom: 36.5/1327.18
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(7, "feet"),
  16229. default: true
  16230. },
  16231. ]
  16232. )
  16233. };
  16234. characterMakers["Kash"] = () => {
  16235. return makeCharacter(
  16236. "Kash",
  16237. "4wrz",
  16238. {
  16239. looking: {
  16240. height: math.unit(2, "meters"),
  16241. weight: math.unit(300, "kg"),
  16242. name: "Looking",
  16243. image: {
  16244. source: "./media/characters/kash/looking.svg",
  16245. extra: 474/344,
  16246. bottom: 0.03
  16247. }
  16248. },
  16249. side: {
  16250. height: math.unit(2, "meters"),
  16251. weight: math.unit(300, "kg"),
  16252. name: "Side",
  16253. image: {
  16254. source: "./media/characters/kash/side.svg",
  16255. extra: 302/251,
  16256. bottom: 0.03
  16257. }
  16258. },
  16259. front: {
  16260. height: math.unit(2, "meters"),
  16261. weight: math.unit(300, "kg"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/kash/front.svg",
  16265. extra: 495/360,
  16266. bottom: 0.015
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(2, "meters"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Big",
  16278. height: math.unit(3, "meters")
  16279. },
  16280. {
  16281. name: "Large",
  16282. height: math.unit(5, "meters")
  16283. },
  16284. ]
  16285. )
  16286. };
  16287. characterMakers["Lalim"] = () => {
  16288. return makeCharacter(
  16289. "Lalim",
  16290. "Bruyaglovae",
  16291. {
  16292. feeding: {
  16293. height: math.unit(6.7, "feet"),
  16294. weight: math.unit(350, "lb"),
  16295. name: "Feeding",
  16296. image: {
  16297. source: "./media/characters/lalim/feeding.svg",
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(6.7, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. )
  16309. };
  16310. characterMakers["De'Vout"] = () => {
  16311. return makeCharacter(
  16312. "De'Vout",
  16313. "Bruyaglovae",
  16314. {
  16315. front: {
  16316. height: math.unit(9.5, "feet"),
  16317. weight: math.unit(600, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/de'vout/front.svg",
  16321. extra: 1443/1328,
  16322. bottom: 0.025
  16323. }
  16324. },
  16325. back: {
  16326. height: math.unit(9.5, "feet"),
  16327. weight: math.unit(600, "lb"),
  16328. name: "Back",
  16329. image: {
  16330. source: "./media/characters/de'vout/back.svg",
  16331. extra: 1443/1328
  16332. }
  16333. },
  16334. frontDressed: {
  16335. height: math.unit(9.5, "feet"),
  16336. weight: math.unit(600, "lb"),
  16337. name: "Front (Dressed",
  16338. image: {
  16339. source: "./media/characters/de'vout/front-dressed.svg",
  16340. extra: 1443/1328,
  16341. bottom: 0.025
  16342. }
  16343. },
  16344. backDressed: {
  16345. height: math.unit(9.5, "feet"),
  16346. weight: math.unit(600, "lb"),
  16347. name: "Back (Dressed",
  16348. image: {
  16349. source: "./media/characters/de'vout/back-dressed.svg",
  16350. extra: 1443/1328
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(9.5, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. )
  16362. };
  16363. characterMakers["Talana"] = () => {
  16364. return makeCharacter(
  16365. "Talana",
  16366. "Bruyaglovae",
  16367. {
  16368. front: {
  16369. height: math.unit(8, "feet"),
  16370. weight: math.unit(225, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/talana/front.svg",
  16374. extra: 1410/1300,
  16375. bottom: 0.015
  16376. }
  16377. },
  16378. frontDressed: {
  16379. height: math.unit(8, "feet"),
  16380. weight: math.unit(225, "lb"),
  16381. name: "Front (Dressed",
  16382. image: {
  16383. source: "./media/characters/talana/front-dressed.svg",
  16384. extra: 1410/1300,
  16385. bottom: 0.015
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(8, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. )
  16397. };
  16398. characterMakers["Xeauvok"] = () => {
  16399. return makeCharacter(
  16400. "Xeauvok",
  16401. "Bruyaglovae",
  16402. {
  16403. side: {
  16404. height: math.unit(7.2, "feet"),
  16405. weight: math.unit(150, "lb"),
  16406. name: "Side",
  16407. image: {
  16408. source: "./media/characters/xeauvok/side.svg",
  16409. extra: 1975/1523,
  16410. bottom: 0.07
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(7.2, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. )
  16422. };
  16423. characterMakers["Zara"] = () => {
  16424. return makeCharacter(
  16425. "Zara",
  16426. "Dalken",
  16427. {
  16428. side: {
  16429. height: math.unit(10, "feet"),
  16430. weight: math.unit(900, "kg"),
  16431. name: "Side",
  16432. image: {
  16433. source: "./media/characters/zara/side.svg",
  16434. extra: 504/498
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(10, "feet"),
  16442. default: true
  16443. },
  16444. ]
  16445. )
  16446. };
  16447. characterMakers["Richard (Dragon)"] = () => {
  16448. return makeCharacter(
  16449. "Richard (Dragon)",
  16450. "Xanaomin",
  16451. {
  16452. side: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Side",
  16456. image: {
  16457. source: "./media/characters/richard-dragon/side.svg",
  16458. extra: 845/340,
  16459. bottom: 0.017
  16460. }
  16461. },
  16462. maw: {
  16463. height: math.unit(2.97, "feet"),
  16464. name: "Maw",
  16465. image: {
  16466. source: "./media/characters/richard-dragon/maw.svg"
  16467. }
  16468. },
  16469. },
  16470. [
  16471. ]
  16472. )
  16473. };
  16474. characterMakers["Richard (Smeargle)"] = () => {
  16475. return makeCharacter(
  16476. "Richard (Smeargle)",
  16477. "Xanaomin",
  16478. {
  16479. front: {
  16480. height: math.unit(4, "feet"),
  16481. weight: math.unit(100, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/richard-smeargle/front.svg",
  16485. extra: 2952/2820,
  16486. bottom: 0.028
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(4, "feet"),
  16494. default: true
  16495. },
  16496. {
  16497. name: "Dynamax",
  16498. height: math.unit(20, "meters")
  16499. },
  16500. ]
  16501. )
  16502. };
  16503. characterMakers["Klay"] = () => {
  16504. return makeCharacter(
  16505. "Klay",
  16506. "klaythebat",
  16507. {
  16508. front: {
  16509. height: math.unit(6, "feet"),
  16510. weight: math.unit(110, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/klay/front.svg",
  16514. extra: 962/883,
  16515. bottom: 0.04
  16516. }
  16517. },
  16518. back: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(110, "lb"),
  16521. name: "Back",
  16522. image: {
  16523. source: "./media/characters/klay/back.svg",
  16524. extra: 962/883
  16525. }
  16526. },
  16527. beans: {
  16528. height: math.unit(1.15, "feet"),
  16529. name: "Beans",
  16530. image: {
  16531. source: "./media/characters/klay/beans.svg"
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Micro",
  16538. height: math.unit(6, "inches")
  16539. },
  16540. {
  16541. name: "Mini",
  16542. height: math.unit(3, "feet")
  16543. },
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(6, "feet"),
  16547. default: true
  16548. },
  16549. {
  16550. name: "Big",
  16551. height: math.unit(25, "feet")
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(100, "feet")
  16556. },
  16557. {
  16558. name: "Megamacro",
  16559. height: math.unit(400, "feet")
  16560. },
  16561. ]
  16562. )
  16563. };
  16564. characterMakers["Marcus"] = () => {
  16565. return makeCharacter(
  16566. "Marcus",
  16567. "klaythebat",
  16568. {
  16569. front: {
  16570. height: math.unit(6, "feet"),
  16571. weight: math.unit(160, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/marcus/front.svg",
  16575. extra: 734/676,
  16576. bottom: 0.03
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Little",
  16583. height: math.unit(6, "feet")
  16584. },
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(110, "feet"),
  16588. default: true
  16589. },
  16590. {
  16591. name: "Macro",
  16592. height: math.unit(250, "feet")
  16593. },
  16594. {
  16595. name: "Megamacro",
  16596. height: math.unit(1000, "feet")
  16597. },
  16598. ]
  16599. )
  16600. };
  16601. characterMakers["Claude DelRoute"] = () => {
  16602. return makeCharacter(
  16603. "Claude DelRoute",
  16604. "Claude",
  16605. {
  16606. front: {
  16607. height: math.unit(7, "feet"),
  16608. weight: math.unit(275, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/claude-delroute/front.svg",
  16612. extra: 230/214,
  16613. bottom: 0.007
  16614. }
  16615. },
  16616. side: {
  16617. height: math.unit(7, "feet"),
  16618. weight: math.unit(275, "lb"),
  16619. name: "Side",
  16620. image: {
  16621. source: "./media/characters/claude-delroute/side.svg",
  16622. extra: 222/214,
  16623. bottom: 0.01
  16624. }
  16625. },
  16626. back: {
  16627. height: math.unit(7, "feet"),
  16628. weight: math.unit(275, "lb"),
  16629. name: "Back",
  16630. image: {
  16631. source: "./media/characters/claude-delroute/back.svg",
  16632. extra: 230/214,
  16633. bottom: 0.015
  16634. }
  16635. },
  16636. maw: {
  16637. height: math.unit(0.6407, "meters"),
  16638. name: "Maw",
  16639. image: {
  16640. source: "./media/characters/claude-delroute/maw.svg"
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(7, "feet"),
  16648. default: true
  16649. },
  16650. {
  16651. name: "Lorge",
  16652. height: math.unit(20, "feet")
  16653. },
  16654. ]
  16655. )
  16656. };
  16657. characterMakers["Dragonien"] = () => {
  16658. return makeCharacter(
  16659. "Dragonien",
  16660. "Dragonien",
  16661. {
  16662. front: {
  16663. height: math.unit(8 + 4/12, "feet"),
  16664. weight: math.unit(600, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/dragonien/front.svg",
  16668. extra: 100/94,
  16669. bottom: 3.3/103.3445
  16670. }
  16671. },
  16672. back: {
  16673. height: math.unit(8 + 4/12, "feet"),
  16674. weight: math.unit(600, "lb"),
  16675. name: "Back",
  16676. image: {
  16677. source: "./media/characters/dragonien/back.svg",
  16678. extra: 776/746,
  16679. bottom: 6.4/782.0616
  16680. }
  16681. },
  16682. foot: {
  16683. height: math.unit(1.54, "feet"),
  16684. name: "Foot",
  16685. image: {
  16686. source: "./media/characters/dragonien/foot.svg",
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(8 + 4/12, "feet"),
  16694. default: true
  16695. },
  16696. {
  16697. name: "Macro",
  16698. height: math.unit(200, "feet")
  16699. },
  16700. {
  16701. name: "Megamacro",
  16702. height: math.unit(1, "mile")
  16703. },
  16704. {
  16705. name: "Gigamacro",
  16706. height: math.unit(1000, "miles")
  16707. },
  16708. ]
  16709. )
  16710. };
  16711. characterMakers["Desta"] = () => {
  16712. return makeCharacter(
  16713. "Desta",
  16714. "Desta",
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 2/12, "feet"),
  16718. weight: math.unit(110, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/desta/front.svg",
  16722. extra: 1482/1417
  16723. }
  16724. },
  16725. side: {
  16726. height: math.unit(5 + 2/12, "feet"),
  16727. weight: math.unit(110, "lb"),
  16728. name: "Side",
  16729. image: {
  16730. source: "./media/characters/desta/side.svg",
  16731. extra: 2579/2491,
  16732. bottom: 0.053
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Micro",
  16739. height: math.unit(6, "inches")
  16740. },
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(5 + 2/12, "feet"),
  16744. default: true
  16745. },
  16746. {
  16747. name: "Macro",
  16748. height: math.unit(62, "feet")
  16749. },
  16750. {
  16751. name: "Megamacro",
  16752. height: math.unit(1800, "feet")
  16753. },
  16754. ]
  16755. )
  16756. };
  16757. characterMakers["Storm Alystar"] = () => {
  16758. return makeCharacter(
  16759. "Storm Alystar",
  16760. "Thunderbum",
  16761. {
  16762. front: {
  16763. height: math.unit(10, "feet"),
  16764. weight: math.unit(700, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/storm-alystar/front.svg",
  16768. extra: 2112/1898,
  16769. bottom: 0.034
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Micro",
  16776. height: math.unit(3.5, "inches")
  16777. },
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(10, "feet"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Macro",
  16785. height: math.unit(400, "feet")
  16786. },
  16787. {
  16788. name: "Deific",
  16789. height: math.unit(60, "miles")
  16790. },
  16791. ]
  16792. )
  16793. };
  16794. characterMakers["Ilia"] = () => {
  16795. return makeCharacter(
  16796. "Ilia",
  16797. "IliaVulpine",
  16798. {
  16799. front: {
  16800. height: math.unit(2.35, "meters"),
  16801. weight: math.unit(119, "kg"),
  16802. name: "Front",
  16803. image: {
  16804. source: "./media/characters/ilia/front.svg",
  16805. extra: 1285/1255,
  16806. bottom: 0.06
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(2.35, "meters")
  16814. },
  16815. {
  16816. name: "Macro",
  16817. height: math.unit(140, "meters"),
  16818. default: true
  16819. },
  16820. {
  16821. name: "Megamacro",
  16822. height: math.unit(100, "miles")
  16823. },
  16824. ]
  16825. )
  16826. };
  16827. characterMakers["KingDead"] = () => {
  16828. return makeCharacter(
  16829. "KingDead",
  16830. "KingDead",
  16831. {
  16832. front: {
  16833. height: math.unit(6 + 5/12, "feet"),
  16834. weight: math.unit(190, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/kingdead/front.svg",
  16838. extra: 1228/1177
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Micro",
  16845. height: math.unit(7, "inches")
  16846. },
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(6 + 5/12, "feet")
  16850. },
  16851. {
  16852. name: "Macro",
  16853. height: math.unit(150, "feet"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Megamacro",
  16858. height: math.unit(200, "miles")
  16859. },
  16860. ]
  16861. )
  16862. };
  16863. characterMakers["Kyrehx"] = () => {
  16864. return makeCharacter(
  16865. "Kyrehx",
  16866. "Kyrehx",
  16867. {
  16868. front: {
  16869. height: math.unit(8, "feet"),
  16870. weight: math.unit(600, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/kyrehx/front.svg",
  16874. extra: 1195/1095,
  16875. bottom: 0.034
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Micro",
  16882. height: math.unit(2, "inches")
  16883. },
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(8, "feet"),
  16887. default: true
  16888. },
  16889. {
  16890. name: "Macro",
  16891. height: math.unit(255, "feet")
  16892. },
  16893. ]
  16894. )
  16895. };
  16896. characterMakers["Xang"] = () => {
  16897. return makeCharacter(
  16898. "Xang",
  16899. "Xangoose",
  16900. {
  16901. front: {
  16902. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16903. weight: math.unit(184, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/xang/front.svg",
  16907. extra: 845/755
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(0.935 * 146, "feet")
  16920. },
  16921. {
  16922. name: "Megamacro",
  16923. height: math.unit(0.935 * 3, "miles")
  16924. },
  16925. ]
  16926. )
  16927. };
  16928. characterMakers["Doc Weardno"] = () => {
  16929. return makeCharacter(
  16930. "Doc Weardno",
  16931. "DrWeardno",
  16932. {
  16933. frontDressed: {
  16934. height: math.unit(5 + 7/12, "feet"),
  16935. weight: math.unit(140, "lb"),
  16936. name: "Front (Dressed)",
  16937. image: {
  16938. source: "./media/characters/doc-weardno/front-dressed.svg",
  16939. extra: 263/234
  16940. }
  16941. },
  16942. backDressed: {
  16943. height: math.unit(5 + 7/12, "feet"),
  16944. weight: math.unit(140, "lb"),
  16945. name: "Back (Dressed)",
  16946. image: {
  16947. source: "./media/characters/doc-weardno/back-dressed.svg",
  16948. extra: 266/238
  16949. }
  16950. },
  16951. front: {
  16952. height: math.unit(5 + 7/12, "feet"),
  16953. weight: math.unit(140, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/doc-weardno/front.svg",
  16957. extra: 254/233
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Micro",
  16964. height: math.unit(3, "inches")
  16965. },
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(5 + 7/12, "feet"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Macro",
  16973. height: math.unit(25, "feet")
  16974. },
  16975. {
  16976. name: "Megamacro",
  16977. height: math.unit(2, "miles")
  16978. },
  16979. ]
  16980. )
  16981. };
  16982. characterMakers["Seth Whilst"] = () => {
  16983. return makeCharacter(
  16984. "Seth Whilst",
  16985. "SethWhilst",
  16986. {
  16987. front: {
  16988. height: math.unit(6 + 2/12, "feet"),
  16989. weight: math.unit(153, "lb"),
  16990. name: "Front",
  16991. image: {
  16992. source: "./media/characters/seth-whilst/front.svg",
  16993. bottom: 0.07
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Micro",
  17000. height: math.unit(5, "inches")
  17001. },
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(6 + 2/12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. )
  17009. };
  17010. characterMakers["Pocket Jabari"] = () => {
  17011. return makeCharacter(
  17012. "Pocket Jabari",
  17013. "PocketJabari",
  17014. {
  17015. front: {
  17016. height: math.unit(3, "inches"),
  17017. weight: math.unit(8, "grams"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/pocket-jabari/front.svg",
  17021. extra: 1024/974,
  17022. bottom: 0.039
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Minimicro",
  17029. height: math.unit(8, "mm")
  17030. },
  17031. {
  17032. name: "Micro",
  17033. height: math.unit(3, "inches"),
  17034. default: true
  17035. },
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(3, "feet")
  17039. },
  17040. ]
  17041. )
  17042. };
  17043. characterMakers["Sapphy"] = () => {
  17044. return makeCharacter(
  17045. "Sapphy",
  17046. "Sapphy",
  17047. {
  17048. front: {
  17049. height: math.unit(15, "feet"),
  17050. weight: math.unit(3280, "lb"),
  17051. name: "Front",
  17052. image: {
  17053. source: "./media/characters/sapphy/front.svg",
  17054. extra: 671/577,
  17055. bottom: 0.085
  17056. }
  17057. },
  17058. back: {
  17059. height: math.unit(15, "feet"),
  17060. weight: math.unit(3280, "lb"),
  17061. name: "Back",
  17062. image: {
  17063. source: "./media/characters/sapphy/back.svg",
  17064. extra: 631/607,
  17065. bottom: 0.045
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(15, "feet")
  17073. },
  17074. {
  17075. name: "Casual Macro",
  17076. height: math.unit(120, "feet")
  17077. },
  17078. {
  17079. name: "Macro",
  17080. height: math.unit(2150, "feet"),
  17081. default: true
  17082. },
  17083. {
  17084. name: "Megamacro",
  17085. height: math.unit(8, "miles")
  17086. },
  17087. {
  17088. name: "Galaxy Mom",
  17089. height: math.unit(6, "megalightyears")
  17090. },
  17091. ]
  17092. )
  17093. };
  17094. characterMakers["Kiro"] = () => {
  17095. return makeCharacter(
  17096. "Kiro",
  17097. "Keeya",
  17098. {
  17099. front: {
  17100. height: math.unit(6, "feet"),
  17101. weight: math.unit(170, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/kiro/front.svg",
  17105. extra: 1064/1012,
  17106. bottom: 0.052
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Micro",
  17113. height: math.unit(6, "inches")
  17114. },
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(6, "feet"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(72, "feet")
  17123. },
  17124. ]
  17125. )
  17126. };
  17127. characterMakers["Irishfox"] = () => {
  17128. return makeCharacter(
  17129. "Irishfox",
  17130. "IrishFox",
  17131. {
  17132. front: {
  17133. height: math.unit(5 + 9/12, "feet"),
  17134. weight: math.unit(175, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/irishfox/front.svg",
  17138. extra: 1912/1680,
  17139. bottom: 0.02
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Nano",
  17146. height: math.unit(1, "mm")
  17147. },
  17148. {
  17149. name: "Micro",
  17150. height: math.unit(2, "inches")
  17151. },
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(5 + 9/12, "feet"),
  17155. default: true
  17156. },
  17157. {
  17158. name: "Macro",
  17159. height: math.unit(45, "feet")
  17160. },
  17161. ]
  17162. )
  17163. };
  17164. characterMakers["Aronai Sieyes"] = () => {
  17165. return makeCharacter(
  17166. "Aronai Sieyes",
  17167. "Aronai",
  17168. {
  17169. front: {
  17170. height: math.unit(6 + 1/12, "feet"),
  17171. weight: math.unit(150, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/aronai-sieyes/front.svg",
  17175. extra: 1556/1480,
  17176. bottom: 0.015
  17177. }
  17178. },
  17179. side: {
  17180. height: math.unit(6 + 1/12, "feet"),
  17181. weight: math.unit(150, "lb"),
  17182. name: "Side",
  17183. image: {
  17184. source: "./media/characters/aronai-sieyes/side.svg",
  17185. extra: 1433/1390,
  17186. bottom: 0.0393
  17187. }
  17188. },
  17189. back: {
  17190. height: math.unit(6 + 1/12, "feet"),
  17191. weight: math.unit(150, "lb"),
  17192. name: "Back",
  17193. image: {
  17194. source: "./media/characters/aronai-sieyes/back.svg",
  17195. extra: 1544/1494,
  17196. bottom: 0.02
  17197. }
  17198. },
  17199. frontClothed: {
  17200. height: math.unit(6 + 1/12, "feet"),
  17201. weight: math.unit(150, "lb"),
  17202. name: "Front (Clothed)",
  17203. image: {
  17204. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17205. extra: 1582/1527
  17206. }
  17207. },
  17208. feral: {
  17209. height: math.unit(18, "feet"),
  17210. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17211. name: "Feral",
  17212. image: {
  17213. source: "./media/characters/aronai-sieyes/feral.svg",
  17214. extra: 1530/1240,
  17215. bottom: 0.035
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Micro",
  17222. height: math.unit(2, "inches")
  17223. },
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(6 + 1/12, "feet"),
  17227. default: true
  17228. }
  17229. ]
  17230. )
  17231. };
  17232. characterMakers["Xuna"] = () => {
  17233. return makeCharacter(
  17234. "Xuna",
  17235. "Xuna",
  17236. {
  17237. front: {
  17238. height: math.unit(12, "feet"),
  17239. weight: math.unit(410, "kg"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/xuna/front.svg",
  17243. extra: 2184/1980
  17244. }
  17245. },
  17246. side: {
  17247. height: math.unit(12, "feet"),
  17248. weight: math.unit(410, "kg"),
  17249. name: "Side",
  17250. image: {
  17251. source: "./media/characters/xuna/side.svg",
  17252. extra: 2184/1980
  17253. }
  17254. },
  17255. back: {
  17256. height: math.unit(12, "feet"),
  17257. weight: math.unit(410, "kg"),
  17258. name: "Back",
  17259. image: {
  17260. source: "./media/characters/xuna/back.svg",
  17261. extra: 2184/1980
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Nano glow",
  17268. height: math.unit(10, "nm")
  17269. },
  17270. {
  17271. name: "Micro floof",
  17272. height: math.unit(0.3, "m")
  17273. },
  17274. {
  17275. name: "Huggable softy boi",
  17276. height: math.unit(3.6576, "m"),
  17277. default: true
  17278. },
  17279. {
  17280. name: "Admirable floof",
  17281. height: math.unit(80, "meters")
  17282. },
  17283. {
  17284. name: "Gentle macro",
  17285. height: math.unit(300, "meters")
  17286. },
  17287. {
  17288. name: "Very careful floof",
  17289. height: math.unit(3200, "meters")
  17290. },
  17291. {
  17292. name: "The mega floof",
  17293. height: math.unit(36000, "meters")
  17294. },
  17295. {
  17296. name: "Giga-fur-Wicker",
  17297. height: math.unit(4800000, "meters")
  17298. },
  17299. {
  17300. name: "Licky world",
  17301. height: math.unit(20000000, "meters")
  17302. },
  17303. {
  17304. name: "Floofy cyan sun",
  17305. height: math.unit(1500000000, "meters")
  17306. },
  17307. {
  17308. name: "Milky Wicker",
  17309. height: math.unit(1000000000000000000000, "meters")
  17310. },
  17311. {
  17312. name: "The observing Wicker",
  17313. height: math.unit(999999999999999999999999999, "meters")
  17314. },
  17315. ]
  17316. )
  17317. };
  17318. characterMakers["Arokha Sieyes"] = () => {
  17319. return makeCharacter(
  17320. "Arokha Sieyes",
  17321. "Aronai",
  17322. {
  17323. front: {
  17324. height: math.unit(5 + 9/12, "feet"),
  17325. weight: math.unit(150, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/arokha-sieyes/front.svg",
  17329. extra: 1425/1284,
  17330. bottom: 0.05
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(5 + 9/12, "feet")
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(30, "meters"),
  17342. default: true
  17343. },
  17344. ]
  17345. )
  17346. };
  17347. characterMakers["Arokh Sieyes"] = () => {
  17348. return makeCharacter(
  17349. "Arokh Sieyes",
  17350. "Aronai",
  17351. {
  17352. front: {
  17353. height: math.unit(6, "feet"),
  17354. weight: math.unit(180, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/arokh-sieyes/front.svg",
  17358. extra: 1830/1769,
  17359. bottom: 0.01
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(6, "feet")
  17367. },
  17368. {
  17369. name: "Macro",
  17370. height: math.unit(30, "meters"),
  17371. default: true
  17372. },
  17373. ]
  17374. )
  17375. };
  17376. characterMakers["Goldeneye"] = () => {
  17377. return makeCharacter(
  17378. "Goldeneye",
  17379. "Goldeneye Gryphon",
  17380. {
  17381. side: {
  17382. height: math.unit(13 + 1/12, "feet"),
  17383. weight: math.unit(8.5, "tonnes"),
  17384. name: "Side",
  17385. image: {
  17386. source: "./media/characters/goldeneye/side.svg",
  17387. extra: 1182/778,
  17388. bottom: 0.067
  17389. }
  17390. },
  17391. paw: {
  17392. height: math.unit(3.4, "feet"),
  17393. name: "Paw",
  17394. image: {
  17395. source: "./media/characters/goldeneye/paw.svg"
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(13 + 1/12, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. )
  17407. };
  17408. characterMakers["Leonardo Lycheborne"] = () => {
  17409. return makeCharacter(
  17410. "Leonardo Lycheborne",
  17411. "Leo",
  17412. {
  17413. front: {
  17414. height: math.unit(6 + 1/12, "feet"),
  17415. weight: math.unit(210, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/leonardo-lycheborne/front.svg",
  17419. extra: 390/365,
  17420. bottom: 0.032
  17421. }
  17422. },
  17423. side: {
  17424. height: math.unit(6 + 1/12, "feet"),
  17425. weight: math.unit(210, "lb"),
  17426. name: "Side",
  17427. image: {
  17428. source: "./media/characters/leonardo-lycheborne/side.svg",
  17429. extra: 390/365,
  17430. bottom: 0.005
  17431. }
  17432. },
  17433. back: {
  17434. height: math.unit(6 + 1/12, "feet"),
  17435. weight: math.unit(210, "lb"),
  17436. name: "Back",
  17437. image: {
  17438. source: "./media/characters/leonardo-lycheborne/back.svg",
  17439. extra: 392/366,
  17440. bottom: 0.01
  17441. }
  17442. },
  17443. hand: {
  17444. height: math.unit(1.08, "feet"),
  17445. name: "Hand",
  17446. image: {
  17447. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17448. }
  17449. },
  17450. foot: {
  17451. height: math.unit(1.32, "feet"),
  17452. name: "Foot",
  17453. image: {
  17454. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17455. }
  17456. },
  17457. were: {
  17458. height: math.unit(20, "feet"),
  17459. weight: math.unit(7800, "lb"),
  17460. name: "Were",
  17461. image: {
  17462. source: "./media/characters/leonardo-lycheborne/were.svg",
  17463. extra: 308/294,
  17464. bottom: 0.048
  17465. }
  17466. },
  17467. feral: {
  17468. height: math.unit(7.5, "feet"),
  17469. weight: math.unit(600, "lb"),
  17470. name: "Feral",
  17471. image: {
  17472. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17473. extra: 210/186,
  17474. bottom: 0.108
  17475. }
  17476. },
  17477. taur: {
  17478. height: math.unit(11, "feet"),
  17479. weight: math.unit(3300, "lb"),
  17480. name: "Taur",
  17481. image: {
  17482. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17483. extra: 320/303,
  17484. bottom: 0.025
  17485. }
  17486. },
  17487. barghest: {
  17488. height: math.unit(11, "feet"),
  17489. weight: math.unit(1300, "lb"),
  17490. name: "Barghest",
  17491. image: {
  17492. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17493. extra: 323/302,
  17494. bottom: 0.027
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6 + 1/12, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. )
  17506. };
  17507. characterMakers["Jet"] = () => {
  17508. return makeCharacter(
  17509. "Jet",
  17510. "JetHyena",
  17511. {
  17512. front: {
  17513. height: math.unit(10, "feet"),
  17514. weight: math.unit(350, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/jet/front.svg",
  17518. extra: 2050/1980,
  17519. bottom: 0.013
  17520. }
  17521. },
  17522. back: {
  17523. height: math.unit(10, "feet"),
  17524. weight: math.unit(350, "lb"),
  17525. name: "Back",
  17526. image: {
  17527. source: "./media/characters/jet/back.svg",
  17528. extra: 2050/1980,
  17529. bottom: 0.013
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Micro",
  17536. height: math.unit(6, "inches")
  17537. },
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(10, "feet"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Macro",
  17545. height: math.unit(100, "feet")
  17546. },
  17547. ]
  17548. )
  17549. };
  17550. characterMakers["Tanarath"] = () => {
  17551. return makeCharacter(
  17552. "Tanarath",
  17553. "TanarathDragon",
  17554. {
  17555. front: {
  17556. height: math.unit(15, "feet"),
  17557. weight: math.unit(2800, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/tanarath/front.svg",
  17561. extra: 2392/2220,
  17562. bottom: 0.03
  17563. }
  17564. },
  17565. back: {
  17566. height: math.unit(15, "feet"),
  17567. weight: math.unit(2800, "lb"),
  17568. name: "Back",
  17569. image: {
  17570. source: "./media/characters/tanarath/back.svg",
  17571. extra: 2392/2220,
  17572. bottom: 0.03
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(15, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. )
  17584. };
  17585. characterMakers["Patty CattyBatty"] = () => {
  17586. return makeCharacter(
  17587. "Patty CattyBatty",
  17588. "Archangel2100",
  17589. {
  17590. front: {
  17591. height: math.unit(7 + 1/12, "feet"),
  17592. weight: math.unit(175, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/patty-cattybatty/front.svg",
  17596. extra: 908/874,
  17597. bottom: 0.025
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Micro",
  17604. height: math.unit(1, "inch")
  17605. },
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(7 + 1/12, "feet")
  17609. },
  17610. {
  17611. name: "Mini Macro",
  17612. height: math.unit(155, "feet")
  17613. },
  17614. {
  17615. name: "Macro",
  17616. height: math.unit(1077, "feet")
  17617. },
  17618. {
  17619. name: "Mega Macro",
  17620. height: math.unit(47650, "feet"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Giga Macro",
  17625. height: math.unit(440, "miles")
  17626. },
  17627. {
  17628. name: "Tera Macro",
  17629. height: math.unit(8700, "miles")
  17630. },
  17631. {
  17632. name: "Planetary Macro",
  17633. height: math.unit(32700, "miles")
  17634. },
  17635. {
  17636. name: "Solar Macro",
  17637. height: math.unit(550000, "miles")
  17638. },
  17639. {
  17640. name: "Celestial Macro",
  17641. height: math.unit(2.5, "AU")
  17642. },
  17643. ]
  17644. )
  17645. };
  17646. characterMakers["Cappu"] = () => {
  17647. return makeCharacter(
  17648. "Cappu",
  17649. "CappuTheSheep",
  17650. {
  17651. front: {
  17652. height: math.unit(4 + 5/12, "feet"),
  17653. weight: math.unit(90, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/cappu/front.svg",
  17657. extra: 1247/1152,
  17658. bottom: 0.012
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(4 + 5/12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. )
  17670. };
  17671. characterMakers["Sebi"] = () => {
  17672. return makeCharacter(
  17673. "Sebi",
  17674. "DeathyWolfi",
  17675. {
  17676. frontDressed: {
  17677. height: math.unit(70, "cm"),
  17678. weight: math.unit(6, "kg"),
  17679. name: "Front (Dressed)",
  17680. image: {
  17681. source: "./media/characters/sebi/front-dressed.svg",
  17682. extra: 713.5/686.5,
  17683. bottom: 0.003
  17684. }
  17685. },
  17686. front: {
  17687. height: math.unit(70, "cm"),
  17688. weight: math.unit(5, "kg"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/sebi/front.svg",
  17692. extra: 713.5/686.5,
  17693. bottom: 0.003
  17694. }
  17695. }
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(70, "cm"),
  17701. default: true
  17702. },
  17703. {
  17704. name: "Macro",
  17705. height: math.unit(8, "meters")
  17706. },
  17707. ]
  17708. )
  17709. };
  17710. characterMakers["Typhek"] = () => {
  17711. return makeCharacter(
  17712. "Typhek",
  17713. "Adam0800",
  17714. {
  17715. front: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(150, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/typhek/front.svg",
  17721. extra: 1948/1929,
  17722. bottom: 0.025
  17723. }
  17724. },
  17725. side: {
  17726. height: math.unit(6, "feet"),
  17727. weight: math.unit(150, "lb"),
  17728. name: "Side",
  17729. image: {
  17730. source: "./media/characters/typhek/side.svg",
  17731. extra: 2034/2010,
  17732. bottom: 0.003
  17733. }
  17734. },
  17735. back: {
  17736. height: math.unit(6, "feet"),
  17737. weight: math.unit(150, "lb"),
  17738. name: "Back",
  17739. image: {
  17740. source: "./media/characters/typhek/back.svg",
  17741. extra: 2005/1978,
  17742. bottom: 0.004
  17743. }
  17744. },
  17745. palm: {
  17746. height: math.unit(1.2, "feet"),
  17747. name: "Palm",
  17748. image: {
  17749. source: "./media/characters/typhek/palm.svg"
  17750. }
  17751. },
  17752. fist: {
  17753. height: math.unit(1.1, "feet"),
  17754. name: "Fist",
  17755. image: {
  17756. source: "./media/characters/typhek/fist.svg"
  17757. }
  17758. },
  17759. foot: {
  17760. height: math.unit(1.57, "feet"),
  17761. name: "Foot",
  17762. image: {
  17763. source: "./media/characters/typhek/foot.svg"
  17764. }
  17765. },
  17766. sole: {
  17767. height: math.unit(2.05, "feet"),
  17768. name: "Sole",
  17769. image: {
  17770. source: "./media/characters/typhek/sole.svg"
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Macro",
  17777. height: math.unit(40, "stories"),
  17778. default: true
  17779. },
  17780. {
  17781. name: "Megamacro",
  17782. height: math.unit(1, "mile")
  17783. },
  17784. {
  17785. name: "Gigamacro",
  17786. height: math.unit(4000, "solarradii")
  17787. },
  17788. {
  17789. name: "Universal",
  17790. height: math.unit(1.1, "universes")
  17791. }
  17792. ]
  17793. )
  17794. };
  17795. characterMakers["Kassy"] = () => {
  17796. return makeCharacter(
  17797. "Kassy",
  17798. "kclt",
  17799. {
  17800. side: {
  17801. height: math.unit(5 + 7/12, "feet"),
  17802. weight: math.unit(150, "lb"),
  17803. name: "Side",
  17804. image: {
  17805. source: "./media/characters/kassy/side.svg",
  17806. extra: 1280/1225,
  17807. bottom: 0.002
  17808. }
  17809. },
  17810. front: {
  17811. height: math.unit(5 + 7/12, "feet"),
  17812. weight: math.unit(150, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/kassy/front.svg",
  17816. extra: 1280/1225,
  17817. bottom: 0.025
  17818. }
  17819. },
  17820. back: {
  17821. height: math.unit(5 + 7/12, "feet"),
  17822. weight: math.unit(150, "lb"),
  17823. name: "Back",
  17824. image: {
  17825. source: "./media/characters/kassy/back.svg",
  17826. extra: 1280/1225,
  17827. bottom: 0.002
  17828. }
  17829. },
  17830. foot: {
  17831. height: math.unit(1.266, "feet"),
  17832. name: "Foot",
  17833. image: {
  17834. source: "./media/characters/kassy/foot.svg"
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(5 + 7/12, "feet")
  17842. },
  17843. {
  17844. name: "Macro",
  17845. height: math.unit(137, "feet"),
  17846. default: true
  17847. },
  17848. {
  17849. name: "Megamacro",
  17850. height: math.unit(1, "mile")
  17851. },
  17852. ]
  17853. )
  17854. };
  17855. characterMakers["Neil"] = () => {
  17856. return makeCharacter(
  17857. "Neil",
  17858. "mZmm",
  17859. {
  17860. front: {
  17861. height: math.unit(6 + 1/12, "feet"),
  17862. weight: math.unit(200, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/neil/front.svg",
  17866. extra: 1326/1250,
  17867. bottom: 0.023
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(6 + 1/12, "feet"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(200, "feet")
  17880. },
  17881. ]
  17882. )
  17883. };
  17884. characterMakers["Atticus"] = () => {
  17885. return makeCharacter(
  17886. "Atticus",
  17887. "mZmm",
  17888. {
  17889. front: {
  17890. height: math.unit(5 + 9/12, "feet"),
  17891. weight: math.unit(190, "lb"),
  17892. name: "Front",
  17893. image: {
  17894. source: "./media/characters/atticus/front.svg",
  17895. extra: 2934/2785,
  17896. bottom: 0.025
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(5 + 9/12, "feet"),
  17904. default: true
  17905. },
  17906. {
  17907. name: "Macro",
  17908. height: math.unit(180, "feet")
  17909. },
  17910. ]
  17911. )
  17912. };
  17913. characterMakers["Milo"] = () => {
  17914. return makeCharacter(
  17915. "Milo",
  17916. "mZmm",
  17917. {
  17918. side: {
  17919. height: math.unit(9, "feet"),
  17920. weight: math.unit(650, "lb"),
  17921. name: "Side",
  17922. image: {
  17923. source: "./media/characters/milo/side.svg",
  17924. extra: 2644/2310,
  17925. bottom: 0.032
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(9, "feet"),
  17933. default: true
  17934. },
  17935. {
  17936. name: "Macro",
  17937. height: math.unit(300, "feet")
  17938. },
  17939. ]
  17940. )
  17941. };
  17942. characterMakers["Ijzer"] = () => {
  17943. return makeCharacter(
  17944. "Ijzer",
  17945. "Ijzer",
  17946. {
  17947. side: {
  17948. height: math.unit(8, "meters"),
  17949. weight: math.unit(90000, "kg"),
  17950. name: "Side",
  17951. image: {
  17952. source: "./media/characters/ijzer/side.svg",
  17953. extra: 2756/1600,
  17954. bottom: 0.01
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Small",
  17961. height: math.unit(3, "meters")
  17962. },
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(8, "meters"),
  17966. default: true
  17967. },
  17968. {
  17969. name: "Normal+",
  17970. height: math.unit(10, "meters")
  17971. },
  17972. {
  17973. name: "Bigger",
  17974. height: math.unit(24, "meters")
  17975. },
  17976. {
  17977. name: "Huge",
  17978. height: math.unit(80, "meters")
  17979. },
  17980. ]
  17981. )
  17982. };
  17983. characterMakers["Luca Cervicum"] = () => {
  17984. return makeCharacter(
  17985. "Luca Cervicum",
  17986. "Luca Cervicum",
  17987. {
  17988. front: {
  17989. height: math.unit(6 + 2/12, "feet"),
  17990. weight: math.unit(153, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/luca-cervicum/front.svg",
  17994. extra: 370/327,
  17995. bottom: 0.015
  17996. }
  17997. },
  17998. back: {
  17999. height: math.unit(6 + 2/12, "feet"),
  18000. weight: math.unit(153, "lb"),
  18001. name: "Back",
  18002. image: {
  18003. source: "./media/characters/luca-cervicum/back.svg",
  18004. extra: 367/333,
  18005. bottom: 0.005
  18006. }
  18007. },
  18008. frontGear: {
  18009. height: math.unit(6 + 2/12, "feet"),
  18010. weight: math.unit(173, "lb"),
  18011. name: "Front (Gear)",
  18012. image: {
  18013. source: "./media/characters/luca-cervicum/front-gear.svg",
  18014. extra: 377/333,
  18015. bottom: 0.006
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(6 + 2/12, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. )
  18027. };
  18028. characterMakers["Oliver"] = () => {
  18029. return makeCharacter(
  18030. "Oliver",
  18031. "Fidchell",
  18032. {
  18033. front: {
  18034. height: math.unit(6 + 1/12, "feet"),
  18035. weight: math.unit(304, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/oliver/front.svg",
  18039. extra: 157/143,
  18040. bottom: 0.08
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(6 + 1/12, "feet"),
  18048. default: true
  18049. },
  18050. ]
  18051. )
  18052. };
  18053. characterMakers["Shane"] = () => {
  18054. return makeCharacter(
  18055. "Shane",
  18056. "Fidchell",
  18057. {
  18058. front: {
  18059. height: math.unit(5 + 7/12, "feet"),
  18060. weight: math.unit(140, "lb"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/shane/front.svg",
  18064. extra: 304/289,
  18065. bottom: 0.005
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(5 + 7/12, "feet"),
  18073. default: true
  18074. },
  18075. ]
  18076. )
  18077. };
  18078. characterMakers["Shin"] = () => {
  18079. return makeCharacter(
  18080. "Shin",
  18081. "Fidchell",
  18082. {
  18083. front: {
  18084. height: math.unit(5 + 9/12, "feet"),
  18085. weight: math.unit(178, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/shin/front.svg",
  18089. extra: 159/151,
  18090. bottom: 0.015
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(5 + 9/12, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. )
  18102. };
  18103. characterMakers["Xerxes"] = () => {
  18104. return makeCharacter(
  18105. "Xerxes",
  18106. "Fidchell",
  18107. {
  18108. front: {
  18109. height: math.unit(5 + 10/12, "feet"),
  18110. weight: math.unit(168, "lb"),
  18111. name: "Front",
  18112. image: {
  18113. source: "./media/characters/xerxes/front.svg",
  18114. extra: 282/260,
  18115. bottom: 0.045
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Normal",
  18122. height: math.unit(5 + 10/12, "feet"),
  18123. default: true
  18124. },
  18125. ]
  18126. )
  18127. };
  18128. characterMakers["Chaska"] = () => {
  18129. return makeCharacter(
  18130. "Chaska",
  18131. "Fidchell",
  18132. {
  18133. front: {
  18134. height: math.unit(6 + 7/12, "feet"),
  18135. weight: math.unit(208, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/chaska/front.svg",
  18139. extra: 332/319,
  18140. bottom: 0.015
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(6 + 7/12, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. )
  18152. };
  18153. characterMakers["Enuk"] = () => {
  18154. return makeCharacter(
  18155. "Enuk",
  18156. "Fidchell",
  18157. {
  18158. front: {
  18159. height: math.unit(5 + 8/12, "feet"),
  18160. weight: math.unit(208, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/enuk/front.svg",
  18164. extra: 437/406,
  18165. bottom: 0.02
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(5 + 8/12, "feet"),
  18173. default: true
  18174. },
  18175. ]
  18176. )
  18177. };
  18178. characterMakers["Bruun"] = () => {
  18179. return makeCharacter(
  18180. "Bruun",
  18181. "Fidchell",
  18182. {
  18183. front: {
  18184. height: math.unit(5 + 10/12, "feet"),
  18185. weight: math.unit(252, "lb"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/bruun/front.svg",
  18189. extra: 197/187,
  18190. bottom: 0.012
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(5 + 10/12, "feet"),
  18198. default: true
  18199. },
  18200. ]
  18201. )
  18202. };
  18203. characterMakers["Alexeev"] = () => {
  18204. return makeCharacter(
  18205. "Alexeev",
  18206. "Fidchell",
  18207. {
  18208. front: {
  18209. height: math.unit(6 + 10/12, "feet"),
  18210. weight: math.unit(255, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/alexeev/front.svg",
  18214. extra: 213/200,
  18215. bottom: 0.05
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(6 + 10/12, "feet"),
  18223. default: true
  18224. },
  18225. ]
  18226. )
  18227. };
  18228. characterMakers["Evelyn"] = () => {
  18229. return makeCharacter(
  18230. "Evelyn",
  18231. "Fidchell",
  18232. {
  18233. front: {
  18234. height: math.unit(2 + 8/12, "feet"),
  18235. weight: math.unit(22, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/evelyn/front.svg",
  18239. extra: 208/180
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(2 + 8/12, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. )
  18251. };
  18252. characterMakers["Inca"] = () => {
  18253. return makeCharacter(
  18254. "Inca",
  18255. "Fidchell",
  18256. {
  18257. front: {
  18258. height: math.unit(5 + 9/12, "feet"),
  18259. weight: math.unit(139, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/inca/front.svg",
  18263. extra: 294/291,
  18264. bottom: 0.03
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(5 + 9/12, "feet"),
  18272. default: true
  18273. },
  18274. ]
  18275. )
  18276. };
  18277. characterMakers["Magdalene"] = () => {
  18278. return makeCharacter(
  18279. "Magdalene",
  18280. "Fidchell",
  18281. {
  18282. front: {
  18283. height: math.unit(5 + 1/12, "feet"),
  18284. weight: math.unit(84, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/magdalene/front.svg",
  18288. extra: 293/273
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(5 + 1/12, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. )
  18300. };
  18301. characterMakers["Mera"] = () => {
  18302. return makeCharacter(
  18303. "Mera",
  18304. "Fidchell",
  18305. {
  18306. front: {
  18307. height: math.unit(6 + 3/12, "feet"),
  18308. weight: math.unit(185, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/mera/front.svg",
  18312. extra: 291/277,
  18313. bottom: 0.03
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(6 + 3/12, "feet"),
  18321. default: true
  18322. },
  18323. ]
  18324. )
  18325. };
  18326. characterMakers["Ceres"] = () => {
  18327. return makeCharacter(
  18328. "Ceres",
  18329. "Radarn",
  18330. {
  18331. front: {
  18332. height: math.unit(6 + 7/12, "feet"),
  18333. weight: math.unit(160, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/ceres/front.svg",
  18337. extra: 1023/950,
  18338. bottom: 0.027
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(6 + 7/12, "feet"),
  18343. weight: math.unit(160, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/ceres/back.svg",
  18347. extra: 1023/950
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(6 + 7/12, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. )
  18359. };
  18360. characterMakers["Kris"] = () => {
  18361. return makeCharacter(
  18362. "Kris",
  18363. "Radarn",
  18364. {
  18365. front: {
  18366. height: math.unit(5 + 10/12, "feet"),
  18367. weight: math.unit(150, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/kris/front.svg",
  18371. extra: 885/803,
  18372. bottom: 0.03
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(5 + 10/12, "feet"),
  18380. default: true
  18381. },
  18382. ]
  18383. )
  18384. };
  18385. characterMakers["Taluthus"] = () => {
  18386. return makeCharacter(
  18387. "Taluthus",
  18388. "Taluthus",
  18389. {
  18390. front: {
  18391. height: math.unit(7, "feet"),
  18392. weight: math.unit(120, "kg"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/taluthus/front.svg",
  18396. extra: 903/833,
  18397. bottom: 0.015
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Normal",
  18404. height: math.unit(7, "feet"),
  18405. default: true
  18406. },
  18407. {
  18408. name: "Macro",
  18409. height: math.unit(300, "feet")
  18410. },
  18411. ]
  18412. )
  18413. };
  18414. characterMakers["Dawn"] = () => {
  18415. return makeCharacter(
  18416. "Dawn",
  18417. "Radarn",
  18418. {
  18419. front: {
  18420. height: math.unit(5 + 9/12, "feet"),
  18421. weight: math.unit(145, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/dawn/front.svg",
  18425. extra: 2094/2016,
  18426. bottom: 0.025
  18427. }
  18428. },
  18429. back: {
  18430. height: math.unit(5 + 9/12, "feet"),
  18431. weight: math.unit(160, "lb"),
  18432. name: "Back",
  18433. image: {
  18434. source: "./media/characters/dawn/back.svg",
  18435. extra: 2112/2080,
  18436. bottom: 0.005
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(6 + 7/12, "feet"),
  18444. default: true
  18445. },
  18446. ]
  18447. )
  18448. };
  18449. characterMakers["Arador"] = () => {
  18450. return makeCharacter(
  18451. "Arador",
  18452. "AradorTD",
  18453. {
  18454. anthro: {
  18455. height: math.unit(8 + 3/12, "feet"),
  18456. weight: math.unit(450, "lb"),
  18457. name: "Anthro",
  18458. image: {
  18459. source: "./media/characters/arador/anthro.svg",
  18460. extra: 1835/1718,
  18461. bottom: 0.025
  18462. }
  18463. },
  18464. feral: {
  18465. height: math.unit(4, "feet"),
  18466. weight: math.unit(200, "lb"),
  18467. name: "Feral",
  18468. image: {
  18469. source: "./media/characters/arador/feral.svg",
  18470. extra: 1683/1514,
  18471. bottom: 0.07
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(8 + 3/12, "feet")
  18479. },
  18480. {
  18481. name: "Macro",
  18482. height: math.unit(82.5, "feet"),
  18483. default: true
  18484. },
  18485. ]
  18486. )
  18487. };
  18488. characterMakers["Dharsi"] = () => {
  18489. return makeCharacter(
  18490. "Dharsi",
  18491. "Dharsi",
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 10/12, "feet"),
  18495. weight: math.unit(125, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/dharsi/front.svg",
  18499. extra: 716/630,
  18500. bottom: 0.035
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Nano",
  18507. height: math.unit(100, "nm")
  18508. },
  18509. {
  18510. name: "Micro",
  18511. height: math.unit(2, "inches")
  18512. },
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(5 + 10/12, "feet"),
  18516. default: true
  18517. },
  18518. {
  18519. name: "Macro",
  18520. height: math.unit(1000, "feet")
  18521. },
  18522. {
  18523. name: "Megamacro",
  18524. height: math.unit(10, "miles")
  18525. },
  18526. {
  18527. name: "Gigamacro",
  18528. height: math.unit(3000, "miles")
  18529. },
  18530. {
  18531. name: "Teramacro",
  18532. height: math.unit(500000, "miles")
  18533. },
  18534. {
  18535. name: "Teramacro+",
  18536. height: math.unit(30, "galaxies")
  18537. },
  18538. ]
  18539. )
  18540. };
  18541. //characters
  18542. function makeCharacters() {
  18543. const results = [];
  18544. Object.entries(characterMakers).forEach(([key, value]) => {
  18545. results.push({
  18546. name: key,
  18547. constructor: value
  18548. });
  18549. });
  18550. results.push({
  18551. name: "Aigey",
  18552. constructor: makeAigey
  18553. });
  18554. results.push({
  18555. name: "Malik",
  18556. constructor: makeMalik
  18557. });
  18558. results.push({
  18559. name: "Sefer",
  18560. constructor: makeSefer
  18561. });
  18562. return results;
  18563. }