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

20102 строки
524 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. characterMakers["Aigey"] = () => {
  800. return makeCharacter(
  801. "Aigey",
  802. "Aigey",
  803. {
  804. side: {
  805. height: math.unit(6, "feet"),
  806. weight: math.unit(75, "kg"),
  807. name: "Side",
  808. image: {
  809. source: "./media/characters/aigey/side.svg"
  810. }
  811. },
  812. },
  813. [
  814. {
  815. name: "Macro",
  816. height: math.unit(200, "feet"),
  817. default: true
  818. },
  819. {
  820. name: "Megamacro",
  821. height: math.unit(100, "miles")
  822. },
  823. ]
  824. )
  825. };
  826. characterMakers["Natasha"] = () => {
  827. return makeCharacter(
  828. "Natasha",
  829. "MammaAWD",
  830. {
  831. front: {
  832. height: math.unit(5 + 5/12, "feet"),
  833. weight: math.unit(75, "kg"),
  834. name: "Front",
  835. image: {
  836. source: "./media/characters/natasha/front.svg",
  837. extra: 875/846,
  838. bottom: 0.01
  839. }
  840. },
  841. },
  842. [
  843. {
  844. name: "Normal",
  845. height: math.unit(5 + 5/12, "feet")
  846. },
  847. {
  848. name: "Large",
  849. height: math.unit(12, "feet")
  850. },
  851. {
  852. name: "Macro",
  853. height: math.unit(100, "feet"),
  854. default: true
  855. },
  856. {
  857. name: "Macro+",
  858. height: math.unit(260, "feet")
  859. },
  860. {
  861. name: "Macro++",
  862. height: math.unit(1, "mile")
  863. },
  864. ]
  865. )
  866. };
  867. characterMakers["Malik"] = () => {
  868. return makeCharacter(
  869. "Malik",
  870. "Fuzzypaws",
  871. {
  872. front: {
  873. height: math.unit(6, "feet"),
  874. weight: math.unit(75, "kg"),
  875. name: "Front",
  876. image: {
  877. source: "./media/characters/malik/front.svg"
  878. }
  879. },
  880. side: {
  881. height: math.unit(6, "feet"),
  882. weight: math.unit(75, "kg"),
  883. name: "Side",
  884. image: {
  885. source: "./media/characters/malik/side.svg",
  886. extra: 1.1539
  887. }
  888. },
  889. back: {
  890. height: math.unit(6, "feet"),
  891. weight: math.unit(75, "kg"),
  892. name: "Back",
  893. image: {
  894. source: "./media/characters/malik/back.svg"
  895. }
  896. },
  897. },
  898. [
  899. {
  900. name: "Macro",
  901. height: math.unit(156, "feet"),
  902. default: true
  903. },
  904. {
  905. name: "Macro+",
  906. height: math.unit(1188, "feet")
  907. },
  908. ]
  909. )
  910. };
  911. characterMakers["Sefer"] = () => {
  912. return makeCharacter(
  913. "Sefer",
  914. "Fuzzypaws",
  915. {
  916. front: {
  917. height: math.unit(6, "feet"),
  918. weight: math.unit(75, "kg"),
  919. name: "Front",
  920. image: {
  921. source: "./media/characters/sefer/front.svg"
  922. }
  923. },
  924. back: {
  925. height: math.unit(6, "feet"),
  926. weight: math.unit(75, "kg"),
  927. name: "Back",
  928. image: {
  929. source: "./media/characters/sefer/back.svg"
  930. }
  931. },
  932. },
  933. [
  934. {
  935. name: "Normal",
  936. height: math.unit(6, "feet"),
  937. default: true
  938. },
  939. ]
  940. )
  941. };
  942. characterMakers["North"] = () => {
  943. return makeCharacter(
  944. "North",
  945. "chemicalcrux",
  946. {
  947. body: {
  948. height: math.unit(2.2428, "meter"),
  949. weight: math.unit(124.738, "kg"),
  950. name: "Body",
  951. image: {
  952. extra: 1225 / 1050,
  953. source: "./media/characters/north/front.svg"
  954. }
  955. }
  956. },
  957. [
  958. {
  959. name: "Micro",
  960. height: math.unit(4, "inches")
  961. },
  962. {
  963. name: "Macro",
  964. height: math.unit(63, "meters")
  965. },
  966. {
  967. name: "Megamacro",
  968. height: math.unit(101, "miles"),
  969. default: true
  970. }
  971. ]
  972. )
  973. };
  974. characterMakers["Talan"] = () => {
  975. return makeCharacter(
  976. "Talan",
  977. "talanstrider",
  978. {
  979. body: {
  980. height: math.unit(2, "meter"),
  981. weight: math.unit(70, "kg"),
  982. name: "Body",
  983. image: {
  984. bottom: 0.02,
  985. source: "./media/characters/talan/front.svg"
  986. }
  987. }
  988. },
  989. [
  990. {
  991. name: "Normal",
  992. height: math.unit(4, "meters")
  993. },
  994. {
  995. name: "Macro",
  996. height: math.unit(100, "meters")
  997. },
  998. {
  999. name: "Megamacro",
  1000. height: math.unit(2, "miles"),
  1001. default: true
  1002. },
  1003. {
  1004. name: "Gigamacro",
  1005. height: math.unit(5000, "miles")
  1006. },
  1007. {
  1008. name: "Teramacro",
  1009. height: math.unit(100, "parsecs")
  1010. }
  1011. ]
  1012. )
  1013. };
  1014. characterMakers["Gael'Rathus"] = () => {
  1015. return makeCharacter(
  1016. "Gael'Rathus",
  1017. "Kurrikage",
  1018. {
  1019. front: {
  1020. height: math.unit(2, "meter"),
  1021. weight: math.unit(90, "kg"),
  1022. name: "Front",
  1023. image: {
  1024. source: "./media/characters/gael'rathus/front.svg"
  1025. }
  1026. },
  1027. frontAlt: {
  1028. height: math.unit(2, "meter"),
  1029. weight: math.unit(90, "kg"),
  1030. name: "Front (alt)",
  1031. image: {
  1032. source: "./media/characters/gael'rathus/front-alt.svg"
  1033. }
  1034. },
  1035. frontAlt2: {
  1036. height: math.unit(2, "meter"),
  1037. weight: math.unit(90, "kg"),
  1038. name: "Front (alt 2)",
  1039. image: {
  1040. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1041. }
  1042. }
  1043. },
  1044. [
  1045. {
  1046. name: "Normal",
  1047. height: math.unit(9, "feet"),
  1048. default: true
  1049. },
  1050. {
  1051. name: "Large",
  1052. height: math.unit(25, "feet")
  1053. },
  1054. {
  1055. name: "Macro",
  1056. height: math.unit(0.25, "miles")
  1057. },
  1058. {
  1059. name: "Megamacro",
  1060. height: math.unit(10, "miles")
  1061. }
  1062. ]
  1063. )
  1064. };
  1065. characterMakers["Sosha"] = () => {
  1066. return makeCharacter(
  1067. "Sosha",
  1068. "Sdocat",
  1069. {
  1070. side: {
  1071. height: math.unit(2, "meter"),
  1072. weight: math.unit(140, "kg"),
  1073. name: "Side",
  1074. image: {
  1075. source: "./media/characters/sosha/side.svg",
  1076. bottom: 0.042
  1077. }
  1078. },
  1079. },
  1080. [
  1081. {
  1082. name: "Normal",
  1083. height: math.unit(12, "feet"),
  1084. default: true
  1085. }
  1086. ]
  1087. )
  1088. };
  1089. characterMakers["RuNNoLa"] = () => {
  1090. return makeCharacter(
  1091. "RuNNoLa",
  1092. "RuNNoLa",
  1093. {
  1094. side: {
  1095. height: math.unit(5 + 5/12, "feet"),
  1096. weight: math.unit(170, "kg"),
  1097. name: "Side",
  1098. image: {
  1099. source: "./media/characters/runnola/side.svg",
  1100. extra: 741/448,
  1101. bottom: 0.05
  1102. }
  1103. },
  1104. },
  1105. [
  1106. {
  1107. name: "Small",
  1108. height: math.unit(3, "feet")
  1109. },
  1110. {
  1111. name: "Normal",
  1112. height: math.unit(5 + 5/12, "feet"),
  1113. default: true
  1114. },
  1115. {
  1116. name: "Big",
  1117. height: math.unit(10, "feet")
  1118. },
  1119. ]
  1120. )
  1121. };
  1122. characterMakers["Kurribird"] = () => {
  1123. return makeCharacter(
  1124. "Kurribird",
  1125. "Kurrikage",
  1126. {
  1127. front: {
  1128. height: math.unit(2, "meter"),
  1129. weight: math.unit(50, "kg"),
  1130. name: "Front",
  1131. image: {
  1132. source: "./media/characters/kurribird/front.svg",
  1133. bottom: 0.015
  1134. }
  1135. },
  1136. frontAlt: {
  1137. height: math.unit(1.5, "meter"),
  1138. weight: math.unit(50, "kg"),
  1139. name: "Front (Alt)",
  1140. image: {
  1141. source: "./media/characters/kurribird/front-alt.svg",
  1142. extra: 1.45
  1143. }
  1144. },
  1145. },
  1146. [
  1147. {
  1148. name: "Normal",
  1149. height: math.unit(7, "feet")
  1150. },
  1151. {
  1152. name: "Big",
  1153. height: math.unit(12, "feet"),
  1154. default: true
  1155. },
  1156. {
  1157. name: "Macro",
  1158. height: math.unit(1500, "feet")
  1159. },
  1160. {
  1161. name: "Megamacro",
  1162. height: math.unit(2, "miles")
  1163. }
  1164. ]
  1165. )
  1166. };
  1167. characterMakers["Elbial"] = () => {
  1168. return makeCharacter(
  1169. "Elbial",
  1170. "Neopuc",
  1171. {
  1172. front: {
  1173. height: math.unit(2, "meter"),
  1174. weight: math.unit(80, "kg"),
  1175. name: "Front",
  1176. image: {
  1177. source: "./media/characters/elbial/front.svg"
  1178. }
  1179. },
  1180. side: {
  1181. height: math.unit(2, "meter"),
  1182. weight: math.unit(80, "kg"),
  1183. name: "Side",
  1184. image: {
  1185. source: "./media/characters/elbial/side.svg"
  1186. }
  1187. },
  1188. back: {
  1189. height: math.unit(2, "meter"),
  1190. weight: math.unit(80, "kg"),
  1191. name: "Back",
  1192. image: {
  1193. source: "./media/characters/elbial/back.svg"
  1194. }
  1195. },
  1196. },
  1197. [
  1198. {
  1199. name: "Large",
  1200. height: math.unit(100, "feet")
  1201. },
  1202. {
  1203. name: "Macro",
  1204. height: math.unit(500, "feet"),
  1205. default: true
  1206. },
  1207. {
  1208. name: "Megamacro",
  1209. height: math.unit(10, "miles")
  1210. },
  1211. {
  1212. name: "Gigamacro",
  1213. height: math.unit(25000, "miles")
  1214. },
  1215. {
  1216. name: "Full-Size",
  1217. height: math.unit(8000000, "gigaparsecs")
  1218. }
  1219. ]
  1220. )
  1221. };
  1222. characterMakers["Noah"] = () => {
  1223. return makeCharacter(
  1224. "Noah",
  1225. "Neopuc",
  1226. {
  1227. front: {
  1228. height: math.unit(2, "meter"),
  1229. weight: math.unit(60, "kg"),
  1230. name: "Front",
  1231. image: {
  1232. source: "./media/characters/noah/front.svg"
  1233. }
  1234. },
  1235. talons: {
  1236. height: math.unit(0.315, "meter"),
  1237. name: "Talons",
  1238. image: {
  1239. source: "./media/characters/noah/talons.svg"
  1240. }
  1241. }
  1242. },
  1243. [
  1244. {
  1245. name: "Large",
  1246. height: math.unit(50, "feet")
  1247. },
  1248. {
  1249. name: "Macro",
  1250. height: math.unit(750, "feet"),
  1251. default: true
  1252. },
  1253. {
  1254. name: "Megamacro",
  1255. height: math.unit(50, "miles")
  1256. },
  1257. {
  1258. name: "Gigamacro",
  1259. height: math.unit(100000, "miles")
  1260. },
  1261. {
  1262. name: "Full-Size",
  1263. height: math.unit(3000000000, "miles")
  1264. }
  1265. ]
  1266. )
  1267. };
  1268. characterMakers["Natalya"] = () => {
  1269. return makeCharacter(
  1270. "Natalya",
  1271. "Neopuc",
  1272. {
  1273. front: {
  1274. height: math.unit(2, "meter"),
  1275. weight: math.unit(80, "kg"),
  1276. name: "Front",
  1277. image: {
  1278. source: "./media/characters/natalya/front.svg"
  1279. }
  1280. },
  1281. back: {
  1282. height: math.unit(2, "meter"),
  1283. weight: math.unit(80, "kg"),
  1284. name: "Back",
  1285. image: {
  1286. source: "./media/characters/natalya/back.svg"
  1287. }
  1288. }
  1289. },
  1290. [
  1291. {
  1292. name: "Normal",
  1293. height: math.unit(150, "feet"),
  1294. default: true
  1295. },
  1296. {
  1297. name: "Megamacro",
  1298. height: math.unit(5, "miles")
  1299. },
  1300. {
  1301. name: "Full-Size",
  1302. height: math.unit(600, "kiloparsecs")
  1303. }
  1304. ]
  1305. )
  1306. };
  1307. characterMakers["Erestrebah"] = () => {
  1308. return makeCharacter(
  1309. "Erestrebah",
  1310. "Kurrikage",
  1311. {
  1312. front: {
  1313. height: math.unit(2, "meter"),
  1314. weight: math.unit(50, "kg"),
  1315. name: "Front",
  1316. image: {
  1317. source: "./media/characters/erestrebah/front.svg",
  1318. extra: 208/193,
  1319. bottom: 0.055
  1320. }
  1321. },
  1322. back: {
  1323. height: math.unit(2, "meter"),
  1324. weight: math.unit(50, "kg"),
  1325. name: "Back",
  1326. image: {
  1327. source: "./media/characters/erestrebah/back.svg",
  1328. extra: 1.3
  1329. }
  1330. }
  1331. },
  1332. [
  1333. {
  1334. name: "Normal",
  1335. height: math.unit(10, "feet")
  1336. },
  1337. {
  1338. name: "Large",
  1339. height: math.unit(50, "feet"),
  1340. default: true
  1341. },
  1342. {
  1343. name: "Macro",
  1344. height: math.unit(300, "feet")
  1345. },
  1346. {
  1347. name: "Macro+",
  1348. height: math.unit(750, "feet")
  1349. },
  1350. {
  1351. name: "Megamacro",
  1352. height: math.unit(3, "miles")
  1353. }
  1354. ]
  1355. )
  1356. };
  1357. characterMakers["Jennifer"] = () => {
  1358. return makeCharacter(
  1359. "Jennifer",
  1360. "Neopuc",
  1361. {
  1362. front: {
  1363. height: math.unit(2, "meter"),
  1364. weight: math.unit(80, "kg"),
  1365. name: "Front",
  1366. image: {
  1367. source: "./media/characters/jennifer/front.svg",
  1368. bottom: 0.11,
  1369. extra: 1.16
  1370. }
  1371. },
  1372. frontAlt: {
  1373. height: math.unit(2, "meter"),
  1374. weight: math.unit(80, "kg"),
  1375. name: "Front (Alt)",
  1376. image: {
  1377. source: "./media/characters/jennifer/front-alt.svg"
  1378. }
  1379. }
  1380. },
  1381. [
  1382. {
  1383. name: "Canon Height",
  1384. height: math.unit(120, "feet"),
  1385. default: true
  1386. },
  1387. {
  1388. name: "Macro+",
  1389. height: math.unit(300, "feet")
  1390. },
  1391. {
  1392. name: "Megamacro",
  1393. height: math.unit(20000, "feet")
  1394. }
  1395. ]
  1396. )
  1397. };
  1398. characterMakers["Kalista"] = () => {
  1399. return makeCharacter(
  1400. "Kalista",
  1401. "Kalista",
  1402. {
  1403. front: {
  1404. height: math.unit(2, "meter"),
  1405. weight: math.unit(50, "kg"),
  1406. name: "Front",
  1407. image: {
  1408. source: "./media/characters/kalista/front.svg",
  1409. extra: 1947/1700
  1410. }
  1411. },
  1412. back: {
  1413. height: math.unit(2, "meter"),
  1414. weight: math.unit(50, "kg"),
  1415. name: "Back",
  1416. image: {
  1417. source: "./media/characters/kalista/back.svg",
  1418. extra: 1366/1156
  1419. }
  1420. }
  1421. },
  1422. [
  1423. {
  1424. name: "Uncomfortably Small",
  1425. height: math.unit(10, "feet")
  1426. },
  1427. {
  1428. name: "Small",
  1429. height: math.unit(30, "feet")
  1430. },
  1431. {
  1432. name: "Macro",
  1433. height: math.unit(100, "feet"),
  1434. default: true
  1435. },
  1436. {
  1437. name: "Macro+",
  1438. height: math.unit(2000, "feet")
  1439. },
  1440. {
  1441. name: "True Form",
  1442. height: math.unit(8924, "miles")
  1443. }
  1444. ]
  1445. )
  1446. };
  1447. characterMakers["GiantGrowingVixen"] = () => {
  1448. return makeCharacter(
  1449. "GiantGrowingVixen",
  1450. "GiantGrowingVixen",
  1451. {
  1452. front: {
  1453. height: math.unit(2, "meter"),
  1454. weight: math.unit(120, "kg"),
  1455. name: "Front",
  1456. image: {
  1457. source: "./media/characters/ggv/front.svg"
  1458. }
  1459. },
  1460. side: {
  1461. height: math.unit(2, "meter"),
  1462. weight: math.unit(120, "kg"),
  1463. name: "Side",
  1464. image: {
  1465. source: "./media/characters/ggv/side.svg"
  1466. }
  1467. }
  1468. },
  1469. [
  1470. {
  1471. name: "Extremely Puny",
  1472. height: math.unit(9 + 5 / 12, "feet")
  1473. },
  1474. {
  1475. name: "Horribly Small",
  1476. height: math.unit(47.7, "miles"),
  1477. default: true
  1478. },
  1479. {
  1480. name: "Reasonably Sized",
  1481. height: math.unit(25000, "parsecs")
  1482. },
  1483. {
  1484. name: "Slightly Uncompressed",
  1485. height: math.unit(7.77e31, "parsecs")
  1486. },
  1487. {
  1488. name: "Omniversal",
  1489. height: math.unit(1e300, "meters")
  1490. },
  1491. ]
  1492. )
  1493. };
  1494. characterMakers["Napalm"] = () => {
  1495. return makeCharacter(
  1496. "Napalm",
  1497. "RathDaKrogan",
  1498. {
  1499. front: {
  1500. height: math.unit(2, "meter"),
  1501. weight: math.unit(75, "lb"),
  1502. name: "Front",
  1503. image: {
  1504. source: "./media/characters/napalm/front.svg"
  1505. }
  1506. },
  1507. back: {
  1508. height: math.unit(2, "meter"),
  1509. weight: math.unit(75, "lb"),
  1510. name: "Back",
  1511. image: {
  1512. source: "./media/characters/napalm/back.svg"
  1513. }
  1514. }
  1515. },
  1516. [
  1517. {
  1518. name: "Standard",
  1519. height: math.unit(55, "feet"),
  1520. default: true
  1521. }
  1522. ]
  1523. )
  1524. };
  1525. characterMakers["Asana"] = () => {
  1526. return makeCharacter(
  1527. "Asana",
  1528. "Asana",
  1529. {
  1530. front: {
  1531. height: math.unit(7 + 5 / 6, "feet"),
  1532. weight: math.unit(325, "lb"),
  1533. name: "Front",
  1534. image: {
  1535. source: "./media/characters/asana/front.svg",
  1536. extra: 1128 / 1068
  1537. }
  1538. },
  1539. back: {
  1540. height: math.unit(7 + 5 / 6, "feet"),
  1541. weight: math.unit(325, "lb"),
  1542. name: "Back",
  1543. image: {
  1544. source: "./media/characters/asana/back.svg",
  1545. extra: 1128 / 1068
  1546. }
  1547. },
  1548. },
  1549. [
  1550. {
  1551. name: "Standard",
  1552. height: math.unit(7 + 5 / 6, "feet"),
  1553. default: true
  1554. },
  1555. {
  1556. name: "Large",
  1557. height: math.unit(10, "meters")
  1558. },
  1559. {
  1560. name: "Macro",
  1561. height: math.unit(2500, "meters")
  1562. },
  1563. {
  1564. name: "Megamacro",
  1565. height: math.unit(5e6, "meters")
  1566. },
  1567. {
  1568. name: "Examacro",
  1569. height: math.unit(5e12, "lightyears")
  1570. },
  1571. {
  1572. name: "Max Size",
  1573. height: math.unit(1e31, "lightyears")
  1574. }
  1575. ]
  1576. )
  1577. };
  1578. characterMakers["Ebony"] = () => {
  1579. return makeCharacter(
  1580. "Ebony",
  1581. "Lazerwolf",
  1582. {
  1583. front: {
  1584. height: math.unit(2, "meter"),
  1585. weight: math.unit(60, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/ebony/front.svg",
  1589. bottom: 0.03,
  1590. extra: 1045 / 810 + 0.03
  1591. }
  1592. },
  1593. side: {
  1594. height: math.unit(2, "meter"),
  1595. weight: math.unit(60, "kg"),
  1596. name: "Side",
  1597. image: {
  1598. source: "./media/characters/ebony/side.svg",
  1599. bottom: 0.03,
  1600. extra: 1045 / 810 + 0.03
  1601. }
  1602. },
  1603. back: {
  1604. height: math.unit(2, "meter"),
  1605. weight: math.unit(60, "kg"),
  1606. name: "Back",
  1607. image: {
  1608. source: "./media/characters/ebony/back.svg",
  1609. bottom: 0.01,
  1610. extra: 1045 / 810 + 0.01
  1611. }
  1612. },
  1613. },
  1614. [
  1615. // TODO check why I did this lol
  1616. {
  1617. name: "Standard",
  1618. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1619. default: true
  1620. },
  1621. {
  1622. name: "Macro",
  1623. height: math.unit(200, "feet")
  1624. },
  1625. {
  1626. name: "Gigamacro",
  1627. height: math.unit(13000, "km")
  1628. }
  1629. ]
  1630. )
  1631. };
  1632. characterMakers["Mountain"] = () => {
  1633. return makeCharacter(
  1634. "Mountain",
  1635. "Asana",
  1636. {
  1637. front: {
  1638. height: math.unit(6, "feet"),
  1639. weight: math.unit(175, "lb"),
  1640. name: "Front",
  1641. image: {
  1642. source: "./media/characters/mountain/front.svg"
  1643. }
  1644. },
  1645. back: {
  1646. height: math.unit(6, "feet"),
  1647. weight: math.unit(175, "lb"),
  1648. name: "Back",
  1649. image: {
  1650. source: "./media/characters/mountain/back.svg"
  1651. }
  1652. },
  1653. },
  1654. [
  1655. {
  1656. name: "Large",
  1657. height: math.unit(20, "meters")
  1658. },
  1659. {
  1660. name: "Macro",
  1661. height: math.unit(300, "meters")
  1662. },
  1663. {
  1664. name: "Gigamacro",
  1665. height: math.unit(10000, "km"),
  1666. default: true
  1667. },
  1668. {
  1669. name: "Examacro",
  1670. height: math.unit(10e9, "lightyears")
  1671. }
  1672. ]
  1673. )
  1674. };
  1675. characterMakers["Rick"] = () => {
  1676. return makeCharacter(
  1677. "Rick",
  1678. "Victni",
  1679. {
  1680. front: {
  1681. height: math.unit(8, "feet"),
  1682. weight: math.unit(500, "lb"),
  1683. name: "Front",
  1684. image: {
  1685. source: "./media/characters/rick/front.svg"
  1686. }
  1687. }
  1688. },
  1689. [
  1690. {
  1691. name: "Normal",
  1692. height: math.unit(8, "feet"),
  1693. default: true
  1694. },
  1695. {
  1696. name: "Macro",
  1697. height: math.unit(5, "km")
  1698. }
  1699. ]
  1700. )
  1701. };
  1702. characterMakers["Ona"] = () => {
  1703. return makeCharacter(
  1704. "Ona",
  1705. "Arrogance127",
  1706. {
  1707. front: {
  1708. height: math.unit(8, "feet"),
  1709. weight: math.unit(120, "lb"),
  1710. name: "Front",
  1711. image: {
  1712. source: "./media/characters/ona/front.svg"
  1713. }
  1714. },
  1715. frontAlt: {
  1716. height: math.unit(8, "feet"),
  1717. weight: math.unit(120, "lb"),
  1718. name: "Front (Alt)",
  1719. image: {
  1720. source: "./media/characters/ona/front-alt.svg"
  1721. }
  1722. },
  1723. back: {
  1724. height: math.unit(8, "feet"),
  1725. weight: math.unit(120, "lb"),
  1726. name: "Back",
  1727. image: {
  1728. source: "./media/characters/ona/back.svg"
  1729. }
  1730. },
  1731. foot: {
  1732. height: math.unit(1.1, "feet"),
  1733. name: "Foot",
  1734. image: {
  1735. source: "./media/characters/ona/foot.svg"
  1736. }
  1737. }
  1738. },
  1739. [
  1740. {
  1741. name: "Megamacro",
  1742. height: math.unit(70, "km"),
  1743. default: true
  1744. },
  1745. {
  1746. name: "Gigamacro",
  1747. height: math.unit(681818, "miles")
  1748. },
  1749. {
  1750. name: "Examacro",
  1751. height: math.unit(3800000, "lightyears")
  1752. },
  1753. ]
  1754. )
  1755. };
  1756. characterMakers["Mech"] = () => {
  1757. return makeCharacter(
  1758. "Mech",
  1759. "mechEdragon",
  1760. {
  1761. front: {
  1762. height: math.unit(12, "feet"),
  1763. weight: math.unit(3000, "lb"),
  1764. name: "Front",
  1765. image: {
  1766. source: "./media/characters/mech/front.svg",
  1767. bottom: 0.025,
  1768. }
  1769. },
  1770. back: {
  1771. height: math.unit(12, "feet"),
  1772. weight: math.unit(3000, "lb"),
  1773. name: "Back",
  1774. image: {
  1775. source: "./media/characters/mech/back.svg",
  1776. bottom: 0.03,
  1777. }
  1778. }
  1779. },
  1780. [
  1781. {
  1782. name: "Normal",
  1783. height: math.unit(12, "feet")
  1784. },
  1785. {
  1786. name: "Macro",
  1787. height: math.unit(300, "feet"),
  1788. default: true
  1789. },
  1790. {
  1791. name: "Macro+",
  1792. height: math.unit(1500, "feet")
  1793. },
  1794. ]
  1795. )
  1796. };
  1797. characterMakers["Gregory"] = () => {
  1798. return makeCharacter(
  1799. "Gregory",
  1800. "GregoryKlippenspringer",
  1801. {
  1802. front: {
  1803. height: math.unit(1.3, "meter"),
  1804. weight: math.unit(30, "kg"),
  1805. name: "Front",
  1806. image: {
  1807. source: "./media/characters/gregory/front.svg",
  1808. }
  1809. }
  1810. },
  1811. [
  1812. {
  1813. name: "Normal",
  1814. height: math.unit(1.3, "meter"),
  1815. default: true
  1816. },
  1817. {
  1818. name: "Macro",
  1819. height: math.unit(20, "meter")
  1820. }
  1821. ]
  1822. )
  1823. };
  1824. characterMakers["Elory"] = () => {
  1825. return makeCharacter(
  1826. "Elory",
  1827. "GregoryKlippenspringer",
  1828. {
  1829. front: {
  1830. height: math.unit(2.8, "meter"),
  1831. weight: math.unit(200, "kg"),
  1832. name: "Front",
  1833. image: {
  1834. source: "./media/characters/elory/front.svg",
  1835. }
  1836. }
  1837. },
  1838. [
  1839. {
  1840. name: "Normal",
  1841. height: math.unit(2.8, "meter"),
  1842. default: true
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(38, "meter")
  1847. }
  1848. ]
  1849. )
  1850. };
  1851. characterMakers["Angelpatamon"] = () => {
  1852. return makeCharacter(
  1853. "Angelpatamon",
  1854. "GregoryKlippenspringer",
  1855. {
  1856. front: {
  1857. height: math.unit(470, "feet"),
  1858. weight: math.unit(924, "tons"),
  1859. name: "Front",
  1860. image: {
  1861. source: "./media/characters/angelpatamon/front.svg",
  1862. }
  1863. }
  1864. },
  1865. [
  1866. {
  1867. name: "Normal",
  1868. height: math.unit(470, "feet"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Deity Size I",
  1873. height: math.unit(28651.2, "km")
  1874. },
  1875. {
  1876. name: "Deity Size II",
  1877. height: math.unit(171907.2, "km")
  1878. }
  1879. ]
  1880. )
  1881. };
  1882. characterMakers["Cryae"] = () => {
  1883. return makeCharacter(
  1884. "Cryae",
  1885. "GregoryKlippenspringer",
  1886. {
  1887. side: {
  1888. height: math.unit(7.2, "meter"),
  1889. weight: math.unit(8.2, "tons"),
  1890. name: "Side",
  1891. image: {
  1892. source: "./media/characters/cryae/side.svg",
  1893. extra: 3500 / 1500
  1894. }
  1895. }
  1896. },
  1897. [
  1898. {
  1899. name: "Normal",
  1900. height: math.unit(7.2, "meter"),
  1901. default: true
  1902. }
  1903. ]
  1904. )
  1905. };
  1906. characterMakers["Xera"] = () => {
  1907. return makeCharacter(
  1908. "Xera",
  1909. "Asana",
  1910. {
  1911. front: {
  1912. height: math.unit(6, "feet"),
  1913. weight: math.unit(175, "lb"),
  1914. name: "Front",
  1915. image: {
  1916. source: "./media/characters/xera/front.svg",
  1917. extra: 2300 / 2061
  1918. }
  1919. },
  1920. side: {
  1921. height: math.unit(6, "feet"),
  1922. weight: math.unit(175, "lb"),
  1923. name: "Side",
  1924. image: {
  1925. source: "./media/characters/xera/side.svg",
  1926. extra: 2300 / 2061
  1927. }
  1928. },
  1929. back: {
  1930. height: math.unit(6, "feet"),
  1931. weight: math.unit(175, "lb"),
  1932. name: "Back",
  1933. image: {
  1934. source: "./media/characters/xera/back.svg"
  1935. }
  1936. },
  1937. },
  1938. [
  1939. {
  1940. name: "Small",
  1941. height: math.unit(10, "feet")
  1942. },
  1943. {
  1944. name: "Macro",
  1945. height: math.unit(500, "meters"),
  1946. default: true
  1947. },
  1948. {
  1949. name: "Macro+",
  1950. height: math.unit(10, "km")
  1951. },
  1952. {
  1953. name: "Gigamacro",
  1954. height: math.unit(25000, "km")
  1955. },
  1956. {
  1957. name: "Teramacro",
  1958. height: math.unit(3e6, "km")
  1959. }
  1960. ]
  1961. )
  1962. };
  1963. characterMakers["Nebula"] = () => {
  1964. return makeCharacter(
  1965. "Nebula",
  1966. "Cilenomon",
  1967. {
  1968. front: {
  1969. height: math.unit(6, "feet"),
  1970. weight: math.unit(175, "lb"),
  1971. name: "Front",
  1972. image: {
  1973. source: "./media/characters/nebula/front.svg",
  1974. extra: 2600 / 2450
  1975. }
  1976. }
  1977. },
  1978. [
  1979. {
  1980. name: "Small",
  1981. height: math.unit(4.5, "meters")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(1500, "meters"),
  1986. default: true
  1987. },
  1988. {
  1989. name: "Megamacro",
  1990. height: math.unit(150, "km")
  1991. },
  1992. {
  1993. name: "Gigamacro",
  1994. height: math.unit(27000, "km")
  1995. }
  1996. ]
  1997. )
  1998. };
  1999. characterMakers["Abysgar"] = () => {
  2000. return makeCharacter(
  2001. "Abysgar",
  2002. "Cilenomon",
  2003. {
  2004. front: {
  2005. height: math.unit(6, "feet"),
  2006. weight: math.unit(225, "lb"),
  2007. name: "Front",
  2008. image: {
  2009. source: "./media/characters/abysgar/front.svg"
  2010. }
  2011. }
  2012. },
  2013. [
  2014. {
  2015. name: "Small",
  2016. height: math.unit(4.5, "meters")
  2017. },
  2018. {
  2019. name: "Macro",
  2020. height: math.unit(1250, "meters"),
  2021. default: true
  2022. },
  2023. {
  2024. name: "Megamacro",
  2025. height: math.unit(125, "km")
  2026. },
  2027. {
  2028. name: "Gigamacro",
  2029. height: math.unit(26000, "km")
  2030. }
  2031. ]
  2032. )
  2033. };
  2034. characterMakers["Yakuz"] = () => {
  2035. return makeCharacter(
  2036. "Yakuz",
  2037. "Cilenomon",
  2038. {
  2039. front: {
  2040. height: math.unit(6, "feet"),
  2041. weight: math.unit(180, "lb"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/yakuz/front.svg"
  2045. }
  2046. }
  2047. },
  2048. [
  2049. {
  2050. name: "Small",
  2051. height: math.unit(5, "meters")
  2052. },
  2053. {
  2054. name: "Macro",
  2055. height: math.unit(1500, "meters"),
  2056. default: true
  2057. },
  2058. {
  2059. name: "Megamacro",
  2060. height: math.unit(200, "km")
  2061. },
  2062. {
  2063. name: "Gigamacro",
  2064. height: math.unit(100000, "km")
  2065. }
  2066. ]
  2067. )
  2068. };
  2069. characterMakers["Mirova"] = () => {
  2070. return makeCharacter(
  2071. "Mirova",
  2072. "Cilenomon",
  2073. {
  2074. front: {
  2075. height: math.unit(6, "feet"),
  2076. weight: math.unit(175, "lb"),
  2077. name: "Front",
  2078. image: {
  2079. source: "./media/characters/mirova/front.svg"
  2080. }
  2081. }
  2082. },
  2083. [
  2084. {
  2085. name: "Small",
  2086. height: math.unit(5, "meters")
  2087. },
  2088. {
  2089. name: "Macro",
  2090. height: math.unit(900, "meters"),
  2091. default: true
  2092. },
  2093. {
  2094. name: "Megamacro",
  2095. height: math.unit(135, "km")
  2096. },
  2097. {
  2098. name: "Gigamacro",
  2099. height: math.unit(20000, "km")
  2100. }
  2101. ]
  2102. )
  2103. };
  2104. characterMakers["Asana (Mech)"] = () => {
  2105. return makeCharacter(
  2106. "Asana (Mech)",
  2107. "Asana",
  2108. {
  2109. side: {
  2110. height: math.unit(28.35, "feet"),
  2111. weight: math.unit(99.75, "tons"),
  2112. name: "Side",
  2113. image: {
  2114. source: "./media/characters/asana-mech/side.svg"
  2115. }
  2116. }
  2117. },
  2118. [
  2119. {
  2120. name: "Normal",
  2121. height: math.unit(28.35, "feet"),
  2122. default: true
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(2500, "feet")
  2127. },
  2128. {
  2129. name: "Megamacro",
  2130. height: math.unit(25, "miles")
  2131. },
  2132. {
  2133. name: "Examacro",
  2134. height: math.unit(6e8, "lightyears")
  2135. },
  2136. ]
  2137. )
  2138. };
  2139. characterMakers["Ashtrek"] = () => {
  2140. return makeCharacter(
  2141. "Ashtrek",
  2142. "Ashtrek",
  2143. {
  2144. front: {
  2145. height: math.unit(2, "meters"),
  2146. weight: math.unit(70, "kg"),
  2147. name: "Front",
  2148. image: {
  2149. source: "./media/characters/ashtrek/front.svg",
  2150. extra: 560/524 ,
  2151. bottom: 0.01
  2152. }
  2153. },
  2154. frontArmor: {
  2155. height: math.unit(2, "meters"),
  2156. weight: math.unit(76, "kg"),
  2157. name: "Front (Armor)",
  2158. image: {
  2159. source: "./media/characters/ashtrek/front-armor.svg",
  2160. extra: 561/527 ,
  2161. bottom: 0.01
  2162. }
  2163. },
  2164. side: {
  2165. height: math.unit(2, "meters"),
  2166. weight: math.unit(70, "kg"),
  2167. name: "Side",
  2168. image: {
  2169. source: "./media/characters/ashtrek/side.svg",
  2170. extra: 1717/1609 ,
  2171. bottom: 0.005
  2172. }
  2173. },
  2174. back: {
  2175. height: math.unit(2, "meters"),
  2176. weight: math.unit(70, "kg"),
  2177. name: "Back",
  2178. image: {
  2179. source: "./media/characters/ashtrek/back.svg",
  2180. extra: 1570/1501
  2181. }
  2182. },
  2183. },
  2184. [
  2185. {
  2186. name: "DEFCON 5",
  2187. height: math.unit(5, "meters")
  2188. },
  2189. {
  2190. name: "DEFCON 4",
  2191. height: math.unit(500, "meters"),
  2192. default: true
  2193. },
  2194. {
  2195. name: "DEFCON 3",
  2196. height: math.unit(5, "km")
  2197. },
  2198. {
  2199. name: "DEFCON 2",
  2200. height: math.unit(500, "km")
  2201. },
  2202. {
  2203. name: "DEFCON 1",
  2204. height: math.unit(500000, "km")
  2205. },
  2206. {
  2207. name: "DEFCON 0",
  2208. height: math.unit(3, "gigaparsecs")
  2209. },
  2210. ]
  2211. )
  2212. };
  2213. characterMakers["Gale"] = () => {
  2214. return makeCharacter(
  2215. "Gale",
  2216. "GaleFierre",
  2217. {
  2218. front: {
  2219. height: math.unit(2, "meters"),
  2220. weight: math.unit(76, "kg"),
  2221. name: "Front",
  2222. image: {
  2223. source: "./media/characters/gale/front.svg"
  2224. }
  2225. },
  2226. frontAlt1: {
  2227. height: math.unit(2, "meters"),
  2228. weight: math.unit(76, "kg"),
  2229. name: "Front (Alt 1)",
  2230. image: {
  2231. source: "./media/characters/gale/front-alt-1.svg"
  2232. }
  2233. },
  2234. frontAlt2: {
  2235. height: math.unit(2, "meters"),
  2236. weight: math.unit(76, "kg"),
  2237. name: "Front (Alt 2)",
  2238. image: {
  2239. source: "./media/characters/gale/front-alt-2.svg"
  2240. }
  2241. },
  2242. },
  2243. [
  2244. {
  2245. name: "Normal",
  2246. height: math.unit(7, "feet")
  2247. },
  2248. {
  2249. name: "Macro",
  2250. height: math.unit(150, "feet"),
  2251. default: true
  2252. },
  2253. {
  2254. name: "Macro+",
  2255. height: math.unit(300, "feet")
  2256. },
  2257. ]
  2258. )
  2259. };
  2260. characterMakers["Draylen"] = () => {
  2261. return makeCharacter(
  2262. "Draylen",
  2263. "Longshot Coyote",
  2264. {
  2265. front: {
  2266. height: math.unit(2, "meters"),
  2267. weight: math.unit(76, "kg"),
  2268. name: "Front",
  2269. image: {
  2270. source: "./media/characters/draylen/front.svg"
  2271. }
  2272. }
  2273. },
  2274. [
  2275. {
  2276. name: "Macro",
  2277. height: math.unit(150, "feet"),
  2278. default: true
  2279. }
  2280. ]
  2281. )
  2282. };
  2283. characterMakers["Chez"] = () => {
  2284. return makeCharacter(
  2285. "Chez",
  2286. "Ashtrek",
  2287. {
  2288. front: {
  2289. height: math.unit(7 + 9 / 12, "feet"),
  2290. weight: math.unit(379, "lbs"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/chez/front.svg"
  2294. }
  2295. },
  2296. side: {
  2297. height: math.unit(7 + 9 / 12, "feet"),
  2298. weight: math.unit(379, "lbs"),
  2299. name: "Side",
  2300. image: {
  2301. source: "./media/characters/chez/side.svg"
  2302. }
  2303. }
  2304. },
  2305. [
  2306. {
  2307. name: "Normal",
  2308. height: math.unit(7 + 9 / 12, "feet"),
  2309. default: true
  2310. },
  2311. {
  2312. name: "God King",
  2313. height: math.unit(9750000, "meters")
  2314. }
  2315. ]
  2316. )
  2317. };
  2318. characterMakers["Kaylum"] = () => {
  2319. return makeCharacter(
  2320. "Kaylum",
  2321. "DJDarkJaro",
  2322. {
  2323. front: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(275, "lbs"),
  2326. name: "Front",
  2327. image: {
  2328. source: "./media/characters/kaylum/front.svg",
  2329. bottom: 0.01,
  2330. extra: 1166 / 1031
  2331. }
  2332. },
  2333. frontWingless: {
  2334. height: math.unit(6, "feet"),
  2335. weight: math.unit(275, "lbs"),
  2336. name: "Front (Wingless)",
  2337. image: {
  2338. source: "./media/characters/kaylum/front-wingless.svg",
  2339. bottom: 0.01,
  2340. extra: 1117 / 1031
  2341. }
  2342. }
  2343. },
  2344. [
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(3.05, "meters")
  2348. },
  2349. {
  2350. name: "Master",
  2351. height: math.unit(5.5, "meters")
  2352. },
  2353. {
  2354. name: "Rampage",
  2355. height: math.unit(19, "meters")
  2356. },
  2357. {
  2358. name: "Macro Lite",
  2359. height: math.unit(37, "meters")
  2360. },
  2361. {
  2362. name: "Hyper Predator",
  2363. height: math.unit(61, "meters")
  2364. },
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(138, "meters"),
  2368. default: true
  2369. }
  2370. ]
  2371. )
  2372. };
  2373. characterMakers["Geta"] = () => {
  2374. return makeCharacter(
  2375. "Geta",
  2376. "Aeznon",
  2377. {
  2378. front: {
  2379. height: math.unit(6, "feet"),
  2380. weight: math.unit(150, "lbs"),
  2381. name: "Front",
  2382. image: {
  2383. source: "./media/characters/geta/front.svg"
  2384. }
  2385. }
  2386. },
  2387. [
  2388. {
  2389. name: "Micro",
  2390. height: math.unit(3, "inches"),
  2391. default: true
  2392. },
  2393. {
  2394. name: "Normal",
  2395. height: math.unit(5 + 5 / 12, "feet")
  2396. }
  2397. ]
  2398. )
  2399. };
  2400. characterMakers["Tyrnn"] = () => {
  2401. return makeCharacter(
  2402. "Tyrnn",
  2403. "Tyrnn",
  2404. {
  2405. front: {
  2406. height: math.unit(6, "feet"),
  2407. weight: math.unit(300, "lbs"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/tyrnn/front.svg"
  2411. }
  2412. }
  2413. },
  2414. [
  2415. {
  2416. name: "Main Height",
  2417. height: math.unit(355, "feet"),
  2418. default: true
  2419. },
  2420. {
  2421. name: "Fave. Height",
  2422. height: math.unit(2400, "feet")
  2423. }
  2424. ]
  2425. )
  2426. };
  2427. characterMakers["Apple"] = () => {
  2428. return makeCharacter(
  2429. "Apple",
  2430. "Appledectomy",
  2431. {
  2432. front: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(300, "lbs"),
  2435. name: "Front",
  2436. image: {
  2437. source: "./media/characters/appledectomy/front.svg"
  2438. }
  2439. }
  2440. },
  2441. [
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(2500, "feet")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(50, "miles"),
  2449. default: true
  2450. },
  2451. {
  2452. name: "Gigamacro",
  2453. height: math.unit(5000, "miles")
  2454. },
  2455. {
  2456. name: "Teramacro",
  2457. height: math.unit(250000, "miles")
  2458. },
  2459. ]
  2460. )
  2461. };
  2462. characterMakers["Vulpes"] = () => {
  2463. return makeCharacter(
  2464. "Vulpes",
  2465. "VulpesPawpad",
  2466. {
  2467. front: {
  2468. height: math.unit(6, "feet"),
  2469. weight: math.unit(200, "lbs"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/vulpes/front.svg",
  2473. extra: 573/543,
  2474. bottom: 0.033
  2475. }
  2476. },
  2477. side: {
  2478. height: math.unit(6, "feet"),
  2479. weight: math.unit(200, "lbs"),
  2480. name: "Side",
  2481. image: {
  2482. source: "./media/characters/vulpes/side.svg",
  2483. extra: 573/543,
  2484. bottom: 0.01
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(6, "feet"),
  2489. weight: math.unit(200, "lbs"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/vulpes/back.svg",
  2493. extra: 573/543,
  2494. }
  2495. },
  2496. feet: {
  2497. height: math.unit(1.276, "feet"),
  2498. name: "Feet",
  2499. image: {
  2500. source: "./media/characters/vulpes/feet.svg"
  2501. }
  2502. },
  2503. maw: {
  2504. height: math.unit(1.18, "feet"),
  2505. name: "Maw",
  2506. image: {
  2507. source: "./media/characters/vulpes/maw.svg"
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Micro",
  2514. height: math.unit(2, "inches")
  2515. },
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(6.3, "feet")
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(850, "feet")
  2523. },
  2524. {
  2525. name: "Megamacro",
  2526. height: math.unit(7500, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(570000, "miles")
  2532. }
  2533. ]
  2534. )
  2535. };
  2536. characterMakers["Rain Fallen"] = () => {
  2537. return makeCharacter(
  2538. "Rain Fallen",
  2539. "Rain Fallen",
  2540. {
  2541. front: {
  2542. height: math.unit(6, "feet"),
  2543. weight: math.unit(210, "lbs"),
  2544. name: "Front",
  2545. image: {
  2546. source: "./media/characters/rain-fallen/front.svg"
  2547. }
  2548. },
  2549. side: {
  2550. height: math.unit(6, "feet"),
  2551. weight: math.unit(210, "lbs"),
  2552. name: "Side",
  2553. image: {
  2554. source: "./media/characters/rain-fallen/side.svg"
  2555. }
  2556. },
  2557. back: {
  2558. height: math.unit(6, "feet"),
  2559. weight: math.unit(210, "lbs"),
  2560. name: "Back",
  2561. image: {
  2562. source: "./media/characters/rain-fallen/back.svg"
  2563. }
  2564. },
  2565. feral: {
  2566. height: math.unit(9, "feet"),
  2567. weight: math.unit(700, "lbs"),
  2568. name: "Feral",
  2569. image: {
  2570. source: "./media/characters/rain-fallen/feral.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(5, "meter")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(150, "meter"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Megamacro",
  2586. height: math.unit(278e6, "meter")
  2587. },
  2588. {
  2589. name: "Gigamacro",
  2590. height: math.unit(2e9, "meter")
  2591. },
  2592. {
  2593. name: "Teramacro",
  2594. height: math.unit(8e12, "meter")
  2595. },
  2596. {
  2597. name: "Devourer",
  2598. height: math.unit(14, "zettameters")
  2599. },
  2600. {
  2601. name: "Scarlet King",
  2602. height: math.unit(18, "yottameters")
  2603. },
  2604. {
  2605. name: "Void",
  2606. height: math.unit(6.66e66, "yottameters")
  2607. }
  2608. ]
  2609. )
  2610. };
  2611. characterMakers["Zaakira"] = () => {
  2612. return makeCharacter(
  2613. "Zaakira",
  2614. "Jazzywolf",
  2615. {
  2616. standing: {
  2617. height: math.unit(6, "feet"),
  2618. weight: math.unit(180, "lbs"),
  2619. name: "Standing",
  2620. image: {
  2621. source: "./media/characters/zaakira/standing.svg"
  2622. }
  2623. },
  2624. laying: {
  2625. height: math.unit(3, "feet"),
  2626. weight: math.unit(180, "lbs"),
  2627. name: "Laying",
  2628. image: {
  2629. source: "./media/characters/zaakira/laying.svg"
  2630. }
  2631. },
  2632. },
  2633. [
  2634. {
  2635. name: "Normal",
  2636. height: math.unit(12, "feet")
  2637. },
  2638. {
  2639. name: "Macro",
  2640. height: math.unit(279, "feet"),
  2641. default: true
  2642. }
  2643. ]
  2644. )
  2645. };
  2646. characterMakers["Sigvald"] = () => {
  2647. return makeCharacter(
  2648. "Sigvald",
  2649. "Sigvald",
  2650. {
  2651. front: {
  2652. height: math.unit(6, "feet"),
  2653. weight: math.unit(250, "lbs"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/sigvald/front.svg",
  2657. extra: 1000 / 850
  2658. }
  2659. },
  2660. back: {
  2661. height: math.unit(6, "feet"),
  2662. weight: math.unit(250, "lbs"),
  2663. name: "Back",
  2664. image: {
  2665. source: "./media/characters/sigvald/back.svg"
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(8, "feet")
  2673. },
  2674. {
  2675. name: "Large",
  2676. height: math.unit(12, "feet")
  2677. },
  2678. {
  2679. name: "Larger",
  2680. height: math.unit(20, "feet")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(150, "feet")
  2685. },
  2686. {
  2687. name: "Macro+",
  2688. height: math.unit(200, "feet"),
  2689. default: true
  2690. },
  2691. ]
  2692. )
  2693. };
  2694. characterMakers["Scott"] = () => {
  2695. return makeCharacter(
  2696. "Scott",
  2697. "Scott",
  2698. {
  2699. side: {
  2700. height: math.unit(12, "feet"),
  2701. weight: math.unit(3000, "lbs"),
  2702. name: "Side",
  2703. image: {
  2704. source: "./media/characters/scott/side.svg",
  2705. extra: 1,
  2706. bottom: 0.069
  2707. }
  2708. },
  2709. upright: {
  2710. height: math.unit(12, "feet"),
  2711. weight: math.unit(3000, "lbs"),
  2712. name: "Upright",
  2713. image: {
  2714. source: "./media/characters/scott/upright.svg",
  2715. extra: 1,
  2716. bottom: 0.05
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Normal",
  2723. height: math.unit(12, "feet"),
  2724. default: true
  2725. },
  2726. ]
  2727. )
  2728. };
  2729. characterMakers["Tobias"] = () => {
  2730. return makeCharacter(
  2731. "Tobias",
  2732. "Tobias",
  2733. {
  2734. side: {
  2735. height: math.unit(8, "meters"),
  2736. weight: math.unit(84755, "lbs"),
  2737. name: "Side",
  2738. image: {
  2739. source: "./media/characters/tobias/side.svg",
  2740. extra: 5 / 4
  2741. }
  2742. },
  2743. },
  2744. [
  2745. {
  2746. name: "Normal",
  2747. height: math.unit(8, "meters"),
  2748. default: true
  2749. },
  2750. ]
  2751. )
  2752. };
  2753. characterMakers["Kieran"] = () => {
  2754. return makeCharacter(
  2755. "Kieran",
  2756. "Kieran",
  2757. {
  2758. front: {
  2759. height: math.unit(5.5, "feet"),
  2760. weight: math.unit(400, "lbs"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/kieran/front.svg",
  2764. extra: 1.05
  2765. }
  2766. },
  2767. side: {
  2768. height: math.unit(5.5, "feet"),
  2769. weight: math.unit(400, "lbs"),
  2770. name: "Side",
  2771. image: {
  2772. source: "./media/characters/kieran/side.svg",
  2773. extra: 950 / 850
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(5.5, "feet"),
  2781. default: true
  2782. },
  2783. ]
  2784. )
  2785. };
  2786. characterMakers["Sanya"] = () => {
  2787. return makeCharacter(
  2788. "Sanya",
  2789. "BanterGhost",
  2790. {
  2791. side: {
  2792. height: math.unit(2, "meters"),
  2793. weight: math.unit(70, "kg"),
  2794. name: "Side",
  2795. image: {
  2796. source: "./media/characters/sanya/side.svg",
  2797. bottom: 0.02,
  2798. extra: 1.02
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Small",
  2805. height: math.unit(2, "meters")
  2806. },
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(3, "meters")
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(16, "meters"),
  2814. default: true
  2815. },
  2816. ]
  2817. )
  2818. };
  2819. characterMakers["Miranda"] = () => {
  2820. return makeCharacter(
  2821. "Miranda",
  2822. "MirandaArqayla",
  2823. {
  2824. side: {
  2825. height: math.unit(2, "meters"),
  2826. weight: math.unit(120, "kg"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/miranda/front.svg",
  2830. extra: 10.6 / 10
  2831. }
  2832. },
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(10, "feet"),
  2838. default: true
  2839. }
  2840. ]
  2841. )
  2842. };
  2843. characterMakers["James"] = () => {
  2844. return makeCharacter(
  2845. "James",
  2846. "MirandaArqayla",
  2847. {
  2848. side: {
  2849. height: math.unit(2, "meters"),
  2850. weight: math.unit(100, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/james/front.svg",
  2854. extra: 10 / 8.5
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(8.5, "feet"),
  2862. default: true
  2863. }
  2864. ]
  2865. )
  2866. };
  2867. characterMakers["Heather"] = () => {
  2868. return makeCharacter(
  2869. "Heather",
  2870. "MirandaArqayla",
  2871. {
  2872. side: {
  2873. height: math.unit(9.5, "feet"),
  2874. weight: math.unit(2500, "lbs"),
  2875. name: "Side",
  2876. image: {
  2877. source: "./media/characters/heather/side.svg"
  2878. }
  2879. },
  2880. },
  2881. [
  2882. {
  2883. name: "Normal",
  2884. height: math.unit(9.5, "feet"),
  2885. default: true
  2886. }
  2887. ]
  2888. )
  2889. };
  2890. characterMakers["Lukas"] = () => {
  2891. return makeCharacter(
  2892. "Lukas",
  2893. "MirandaArqayla",
  2894. {
  2895. side: {
  2896. height: math.unit(6.5, "feet"),
  2897. weight: math.unit(400, "lbs"),
  2898. name: "Side",
  2899. image: {
  2900. source: "./media/characters/lukas/side.svg",
  2901. extra: 7.25 / 6.5
  2902. }
  2903. },
  2904. },
  2905. [
  2906. {
  2907. name: "Normal",
  2908. height: math.unit(6.5, "feet"),
  2909. default: true
  2910. }
  2911. ]
  2912. )
  2913. };
  2914. characterMakers["Louise"] = () => {
  2915. return makeCharacter(
  2916. "Louise",
  2917. "MirandaArqayla",
  2918. {
  2919. side: {
  2920. height: math.unit(5, "feet"),
  2921. weight: math.unit(3000, "lbs"),
  2922. name: "Side",
  2923. image: {
  2924. source: "./media/characters/louise/side.svg"
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(5, "feet"),
  2932. default: true
  2933. }
  2934. ]
  2935. )
  2936. };
  2937. characterMakers["Ramona"] = () => {
  2938. return makeCharacter(
  2939. "Ramona",
  2940. "ZakuraTech",
  2941. {
  2942. side: {
  2943. height: math.unit(6, "feet"),
  2944. weight: math.unit(150, "lbs"),
  2945. name: "Side",
  2946. image: {
  2947. source: "./media/characters/ramona/side.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(5.3, "meters"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(20, "stories")
  2960. },
  2961. {
  2962. name: "Macro+",
  2963. height: math.unit(50, "stories")
  2964. },
  2965. ]
  2966. )
  2967. };
  2968. characterMakers["Deerpuff"] = () => {
  2969. return makeCharacter(
  2970. "Deerpuff",
  2971. "Deerpuff",
  2972. {
  2973. standing: {
  2974. height: math.unit(5.75, "feet"),
  2975. weight: math.unit(160, "lbs"),
  2976. name: "Standing",
  2977. image: {
  2978. source: "./media/characters/deerpuff/standing.svg",
  2979. extra: 682 / 624
  2980. }
  2981. },
  2982. sitting: {
  2983. height: math.unit(5.75 / 1.79, "feet"),
  2984. weight: math.unit(160, "lbs"),
  2985. name: "Sitting",
  2986. image: {
  2987. source: "./media/characters/deerpuff/sitting.svg",
  2988. bottom: 44 / 400,
  2989. extra: 1
  2990. }
  2991. },
  2992. taurLaying: {
  2993. height: math.unit(6, "feet"),
  2994. weight: math.unit(400, "lbs"),
  2995. name: "Taur (Laying)",
  2996. image: {
  2997. source: "./media/characters/deerpuff/taur-laying.svg"
  2998. }
  2999. },
  3000. },
  3001. [
  3002. {
  3003. name: "Puffball",
  3004. height: math.unit(6, "inches")
  3005. },
  3006. {
  3007. name: "Normalpuff",
  3008. height: math.unit(5.75, "feet")
  3009. },
  3010. {
  3011. name: "Macropuff",
  3012. height: math.unit(1500, "feet"),
  3013. default: true
  3014. },
  3015. {
  3016. name: "Megapuff",
  3017. height: math.unit(500, "miles")
  3018. },
  3019. {
  3020. name: "Gigapuff",
  3021. height: math.unit(250000, "miles")
  3022. },
  3023. {
  3024. name: "Omegapuff",
  3025. height: math.unit(1000, "lightyears")
  3026. },
  3027. ]
  3028. )
  3029. };
  3030. characterMakers["Vivian"] = () => {
  3031. return makeCharacter(
  3032. "Vivian",
  3033. "Fauxlacine",
  3034. {
  3035. stomping: {
  3036. height: math.unit(6, "feet"),
  3037. weight: math.unit(170, "lbs"),
  3038. name: "Stomping",
  3039. image: {
  3040. source: "./media/characters/vivian/stomping.svg"
  3041. }
  3042. },
  3043. sitting: {
  3044. height: math.unit(6 / 1.75, "feet"),
  3045. weight: math.unit(170, "lbs"),
  3046. name: "Sitting",
  3047. image: {
  3048. source: "./media/characters/vivian/sitting.svg",
  3049. bottom: 1 / 6.4,
  3050. extra: 1,
  3051. }
  3052. },
  3053. },
  3054. [
  3055. {
  3056. name: "Normal",
  3057. height: math.unit(7, "feet"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(10, "stories")
  3063. },
  3064. {
  3065. name: "Macro+",
  3066. height: math.unit(30, "stories")
  3067. },
  3068. {
  3069. name: "Megamacro",
  3070. height: math.unit(10, "miles")
  3071. },
  3072. {
  3073. name: "Megamacro+",
  3074. height: math.unit(2750000, "meters")
  3075. },
  3076. ]
  3077. )
  3078. };
  3079. characterMakers["Prince"] = () => {
  3080. return makeCharacter(
  3081. "Prince",
  3082. "Kurrikage",
  3083. {
  3084. front: {
  3085. height: math.unit(6, "feet"),
  3086. weight: math.unit(160, "lbs"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/prince/front.svg",
  3090. extra: 3400/3000
  3091. }
  3092. },
  3093. jumping: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(160, "lbs"),
  3096. name: "Jumping",
  3097. image: {
  3098. source: "./media/characters/prince/jump.svg",
  3099. extra: 2555/2134
  3100. }
  3101. },
  3102. },
  3103. [
  3104. {
  3105. name: "Normal",
  3106. height: math.unit(7.75, "feet"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Not cute",
  3111. height: math.unit(17, "feet")
  3112. },
  3113. {
  3114. name: "I said NOT",
  3115. height: math.unit(91, "feet")
  3116. },
  3117. {
  3118. name: "Please stop",
  3119. height: math.unit(560, "feet")
  3120. },
  3121. {
  3122. name: "What have you done",
  3123. height: math.unit(2200, "feet")
  3124. },
  3125. {
  3126. name: "Deer God",
  3127. height: math.unit(3.6, "miles")
  3128. },
  3129. ]
  3130. )
  3131. };
  3132. characterMakers["Psymon"] = () => {
  3133. return makeCharacter(
  3134. "Psymon",
  3135. "Kurrikage",
  3136. {
  3137. standing: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(300, "lbs"),
  3140. name: "Standing",
  3141. image: {
  3142. source: "./media/characters/psymon/standing.svg",
  3143. extra: 1888/1810,
  3144. bottom: 0.05
  3145. }
  3146. },
  3147. slithering: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(300, "lbs"),
  3150. name: "Slithering",
  3151. image: {
  3152. source: "./media/characters/psymon/slithering.svg",
  3153. extra: 1330/1224
  3154. }
  3155. },
  3156. slitheringAlt: {
  3157. height: math.unit(6, "feet"),
  3158. weight: math.unit(300, "lbs"),
  3159. name: "Slithering (Alt)",
  3160. image: {
  3161. source: "./media/characters/psymon/slithering-alt.svg",
  3162. extra: 1330/1224
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Normal",
  3169. height: math.unit(11.25, "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Large",
  3174. height: math.unit(27, "feet")
  3175. },
  3176. {
  3177. name: "Giant",
  3178. height: math.unit(87, "feet")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(365, "feet")
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(3, "miles")
  3187. },
  3188. {
  3189. name: "World Serpent",
  3190. height: math.unit(8000, "miles")
  3191. },
  3192. ]
  3193. )
  3194. };
  3195. characterMakers["Daimos"] = () => {
  3196. return makeCharacter(
  3197. "Daimos",
  3198. "Kurrikage",
  3199. {
  3200. front: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(180, "lbs"),
  3203. name: "Front",
  3204. image: {
  3205. source: "./media/characters/daimos/front.svg",
  3206. extra: 4160/3897,
  3207. bottom: 0.021
  3208. }
  3209. }
  3210. },
  3211. [
  3212. {
  3213. name: "Normal",
  3214. height: math.unit(8, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Big Dog",
  3219. height: math.unit(22, "feet")
  3220. },
  3221. {
  3222. name: "Macro",
  3223. height: math.unit(127, "feet")
  3224. },
  3225. {
  3226. name: "Megamacro",
  3227. height: math.unit(3600, "feet")
  3228. },
  3229. ]
  3230. )
  3231. };
  3232. characterMakers["Blake"] = () => {
  3233. return makeCharacter(
  3234. "Blake",
  3235. "Kurrikage",
  3236. {
  3237. side: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(180, "lbs"),
  3240. name: "Side",
  3241. image: {
  3242. source: "./media/characters/blake/side.svg",
  3243. extra: 1212/1120 ,
  3244. bottom: 0.05
  3245. }
  3246. },
  3247. crouched: {
  3248. height: math.unit(6*0.57, "feet"),
  3249. weight: math.unit(180, "lbs"),
  3250. name: "Crouched",
  3251. image: {
  3252. source: "./media/characters/blake/crouched.svg",
  3253. extra: 840/587 ,
  3254. bottom: 0.04
  3255. }
  3256. },
  3257. bent: {
  3258. height: math.unit(6*0.75, "feet"),
  3259. weight: math.unit(180, "lbs"),
  3260. name: "Bent",
  3261. image: {
  3262. source: "./media/characters/blake/bent.svg",
  3263. extra: 592/544 ,
  3264. bottom: 0.035
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Normal",
  3271. height: math.unit(8 + 1/6, "feet"),
  3272. default: true
  3273. },
  3274. {
  3275. name: "Big Backside",
  3276. height: math.unit(37, "feet")
  3277. },
  3278. {
  3279. name: "Subway Shredder",
  3280. height: math.unit(72, "feet")
  3281. },
  3282. {
  3283. name: "City Carver",
  3284. height: math.unit(1675, "feet")
  3285. },
  3286. {
  3287. name: "Tectonic Tweaker",
  3288. height: math.unit(2300, "miles")
  3289. },
  3290. ]
  3291. )
  3292. };
  3293. characterMakers["Guisetto"] = () => {
  3294. return makeCharacter(
  3295. "Guisetto",
  3296. "Kurrikage",
  3297. {
  3298. front: {
  3299. height: math.unit(6, "feet"),
  3300. weight: math.unit(180, "lbs"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/guisetto/front.svg",
  3304. extra: 856/817,
  3305. bottom: 0.06
  3306. }
  3307. },
  3308. airborne: {
  3309. height: math.unit(6, "feet"),
  3310. weight: math.unit(180, "lbs"),
  3311. name: "Airborne",
  3312. image: {
  3313. source: "./media/characters/guisetto/airborne.svg",
  3314. extra: 584/525
  3315. }
  3316. },
  3317. },
  3318. [
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(10 + 11/12, "feet"),
  3322. default: true
  3323. },
  3324. {
  3325. name: "Large",
  3326. height: math.unit(35, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(475, "feet")
  3331. },
  3332. ]
  3333. )
  3334. };
  3335. characterMakers["Luxor"] = () => {
  3336. return makeCharacter(
  3337. "Luxor",
  3338. "Kurrikage",
  3339. {
  3340. front: {
  3341. height: math.unit(6, "feet"),
  3342. weight: math.unit(180, "lbs"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/luxor/front.svg",
  3346. extra: 2940/2152
  3347. }
  3348. },
  3349. back: {
  3350. height: math.unit(6, "feet"),
  3351. weight: math.unit(180, "lbs"),
  3352. name: "Back",
  3353. image: {
  3354. source: "./media/characters/luxor/back.svg",
  3355. extra: 1083/960
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(5 + 5/6, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Lamp",
  3367. height: math.unit(50, "feet")
  3368. },
  3369. {
  3370. name: "Lämp",
  3371. height: math.unit(300, "feet")
  3372. },
  3373. {
  3374. name: "The sun is a lamp",
  3375. height: math.unit(250000, "miles")
  3376. },
  3377. ]
  3378. )
  3379. };
  3380. characterMakers["Huoyan"] = () => {
  3381. return makeCharacter(
  3382. "Huoyan",
  3383. "Kurrikage",
  3384. {
  3385. front: {
  3386. height: math.unit(6, "feet"),
  3387. weight: math.unit(50, "lbs"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/huoyan/front.svg"
  3391. }
  3392. },
  3393. side: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(180, "lbs"),
  3396. name: "Side",
  3397. image: {
  3398. source: "./media/characters/huoyan/side.svg"
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Chef",
  3405. height: math.unit(9, "feet")
  3406. },
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(65, "feet"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(780, "feet")
  3415. },
  3416. {
  3417. name: "Flaming Mountain",
  3418. height: math.unit(4.8, "miles")
  3419. },
  3420. {
  3421. name: "Celestial",
  3422. height: math.unit(765000, "miles")
  3423. },
  3424. ]
  3425. )
  3426. };
  3427. characterMakers["Tails"] = () => {
  3428. return makeCharacter(
  3429. "Tails",
  3430. "Rainier",
  3431. {
  3432. front: {
  3433. height: math.unit(5 + 3/4, "feet"),
  3434. weight: math.unit(120, "lbs"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/tails/front.svg"
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Normal",
  3444. height: math.unit(5 + 3/4, "feet"),
  3445. default: true
  3446. }
  3447. ]
  3448. )
  3449. };
  3450. characterMakers["Rainy"] = () => {
  3451. return makeCharacter(
  3452. "Rainy",
  3453. "Rainier",
  3454. {
  3455. front: {
  3456. height: math.unit(4, "feet"),
  3457. weight: math.unit(50, "lbs"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/rainy/front.svg"
  3461. }
  3462. }
  3463. },
  3464. [
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(800, "feet"),
  3468. default: true
  3469. }
  3470. ]
  3471. )
  3472. };
  3473. characterMakers["Rainier"] = () => {
  3474. return makeCharacter(
  3475. "Rainier",
  3476. "Rainier",
  3477. {
  3478. front: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(150, "lbs"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/rainier/front.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Micro",
  3490. height: math.unit(2, "mm"),
  3491. default: true
  3492. }
  3493. ]
  3494. )
  3495. };
  3496. characterMakers["Andy"] = () => {
  3497. return makeCharacter(
  3498. "Andy",
  3499. "drewbermeister",
  3500. {
  3501. front: {
  3502. height: math.unit(6, "feet"),
  3503. weight: math.unit(180, "lbs"),
  3504. name: "Front",
  3505. image: {
  3506. source: "./media/characters/andy/front.svg"
  3507. }
  3508. }
  3509. },
  3510. [
  3511. {
  3512. name: "Normal",
  3513. height: math.unit(8, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(1000, "feet")
  3519. },
  3520. {
  3521. name: "Megamacro",
  3522. height: math.unit(5, "miles")
  3523. },
  3524. {
  3525. name: "Gigamacro",
  3526. height: math.unit(5000, "miles")
  3527. },
  3528. ]
  3529. )
  3530. };
  3531. characterMakers["Cimmaron"] = () => {
  3532. return makeCharacter(
  3533. "Cimmaron",
  3534. "Cimmaron",
  3535. {
  3536. frontClothed: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(210, "lbs"),
  3539. name: "Front (Clothed)",
  3540. image: {
  3541. source: "./media/characters/cimmaron/front-clothed.svg",
  3542. extra: 701/676 ,
  3543. bottom: 0.046
  3544. }
  3545. },
  3546. backClothed: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(210, "lbs"),
  3549. name: "Back (Clothed)",
  3550. image: {
  3551. source: "./media/characters/cimmaron/back-clothed.svg",
  3552. extra: 701/676 ,
  3553. bottom: 0.046
  3554. }
  3555. },
  3556. frontNude: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(210, "lbs"),
  3559. name: "Front (Nude)",
  3560. image: {
  3561. source: "./media/characters/cimmaron/front-nude.svg",
  3562. extra: 701/676 ,
  3563. bottom: 0.046
  3564. }
  3565. },
  3566. backNude: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(210, "lbs"),
  3569. name: "Back (Nude)",
  3570. image: {
  3571. source: "./media/characters/cimmaron/back-nude.svg",
  3572. extra: 701/676 ,
  3573. bottom: 0.046
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(6, "feet"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Macro Mayor",
  3585. height: math.unit(350, "meters")
  3586. },
  3587. ]
  3588. )
  3589. };
  3590. characterMakers["Akari Kaen"] = () => {
  3591. return makeCharacter(
  3592. "Akari Kaen",
  3593. "Akari",
  3594. {
  3595. front: {
  3596. height: math.unit(6, "feet"),
  3597. weight: math.unit(200, "lbs"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/akari/front.svg",
  3601. extra: 962/901,
  3602. bottom: 0.04
  3603. }
  3604. }
  3605. },
  3606. [
  3607. {
  3608. name: "Micro",
  3609. height: math.unit(5, "inches"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Normal",
  3614. height: math.unit(7, "feet")
  3615. },
  3616. ]
  3617. )
  3618. };
  3619. characterMakers["Cynosura"] = () => {
  3620. return makeCharacter(
  3621. "Cynosura",
  3622. "Cynosura",
  3623. {
  3624. front: {
  3625. height: math.unit(6, "feet"),
  3626. weight: math.unit(140, "lbs"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/cynosura/front.svg",
  3630. extra: 896/847
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(140, "lbs"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/cynosura/back.svg",
  3639. extra: 1365/1250
  3640. }
  3641. },
  3642. },
  3643. [
  3644. {
  3645. name: "Micro",
  3646. height: math.unit(4, "inches")
  3647. },
  3648. {
  3649. name: "Normal",
  3650. height: math.unit(5.75, "feet"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Tall",
  3655. height: math.unit(10, "feet")
  3656. },
  3657. {
  3658. name: "Big",
  3659. height: math.unit(20, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(50, "feet")
  3664. },
  3665. ]
  3666. )
  3667. };
  3668. characterMakers["Gin"] = () => {
  3669. return makeCharacter(
  3670. "Gin",
  3671. "Ozzie_gt",
  3672. {
  3673. front: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(170, "lbs"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/gin/front.svg",
  3679. extra: 1.053,
  3680. bottom: 0.025
  3681. }
  3682. },
  3683. foot: {
  3684. height: math.unit(6/4.25, "feet"),
  3685. name: "Foot",
  3686. image: {
  3687. source: "./media/characters/gin/foot.svg"
  3688. }
  3689. },
  3690. sole: {
  3691. height: math.unit(6/4.40, "feet"),
  3692. name: "Sole",
  3693. image: {
  3694. source: "./media/characters/gin/sole.svg"
  3695. }
  3696. },
  3697. },
  3698. [
  3699. {
  3700. name: "Normal",
  3701. height: math.unit(9 + 4/12, "feet")
  3702. },
  3703. {
  3704. name: "Macro",
  3705. height: math.unit(1500, "feet")
  3706. },
  3707. {
  3708. name: "Megamacro",
  3709. height: math.unit(200, "miles"),
  3710. default: true
  3711. },
  3712. {
  3713. name: "Gigamacro",
  3714. height: math.unit(500, "megameters")
  3715. },
  3716. {
  3717. name: "Teramacro",
  3718. height: math.unit(15, "lightyears")
  3719. }
  3720. ]
  3721. )
  3722. };
  3723. characterMakers["Guy"] = () => {
  3724. return makeCharacter(
  3725. "Guy",
  3726. "Whatastandupguy",
  3727. {
  3728. front: {
  3729. height: math.unit(6 + 1/6, "feet"),
  3730. weight: math.unit(178, "lbs"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/guy/front.svg"
  3734. }
  3735. }
  3736. },
  3737. [
  3738. {
  3739. name: "Normal",
  3740. height: math.unit(6 + 1/6, "feet"),
  3741. default: true
  3742. },
  3743. {
  3744. name: "Large",
  3745. height: math.unit(25 + 7/12, "feet")
  3746. },
  3747. {
  3748. name: "Macro",
  3749. height: math.unit(60 + 9/12, "feet")
  3750. },
  3751. {
  3752. name: "Macro+",
  3753. height: math.unit(246, "feet")
  3754. },
  3755. {
  3756. name: "Macro++",
  3757. height: math.unit(878, "feet")
  3758. }
  3759. ]
  3760. )
  3761. };
  3762. characterMakers["Tiberius"] = () => {
  3763. return makeCharacter(
  3764. "Tiberius",
  3765. "movler",
  3766. {
  3767. front: {
  3768. height: math.unit(9, "feet"),
  3769. weight: math.unit(800, "lbs"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/tiberius/front.svg",
  3773. extra: 2295/2071
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(9, "feet"),
  3778. weight: math.unit(800, "lbs"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/tiberius/back.svg",
  3782. extra: 2373/2160
  3783. }
  3784. },
  3785. },
  3786. [
  3787. {
  3788. name: "Normal",
  3789. height: math.unit(9, "feet"),
  3790. default: true
  3791. }
  3792. ]
  3793. )
  3794. };
  3795. characterMakers["Surgo"] = () => {
  3796. return makeCharacter(
  3797. "Surgo",
  3798. "movler",
  3799. {
  3800. front: {
  3801. height: math.unit(6, "feet"),
  3802. weight: math.unit(600, "lbs"),
  3803. name: "Front",
  3804. image: {
  3805. source: "./media/characters/surgo/front.svg",
  3806. extra: 3591/2227
  3807. }
  3808. },
  3809. back: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(600, "lbs"),
  3812. name: "Back",
  3813. image: {
  3814. source: "./media/characters/surgo/back.svg",
  3815. extra: 3557/2228
  3816. }
  3817. },
  3818. laying: {
  3819. height: math.unit(6 * 0.85, "feet"),
  3820. weight: math.unit(600, "lbs"),
  3821. name: "Laying",
  3822. image: {
  3823. source: "./media/characters/surgo/laying.svg"
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(6, "feet"),
  3831. default: true
  3832. }
  3833. ]
  3834. )
  3835. };
  3836. characterMakers["Cibus"] = () => {
  3837. return makeCharacter(
  3838. "Cibus",
  3839. "movler",
  3840. {
  3841. side: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(150, "lbs"),
  3844. name: "Side",
  3845. image: {
  3846. source: "./media/characters/cibus/side.svg",
  3847. extra: 800/400
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(6, "feet"),
  3855. default: true
  3856. }
  3857. ]
  3858. )
  3859. };
  3860. characterMakers["Nibbles"] = () => {
  3861. return makeCharacter(
  3862. "Nibbles",
  3863. "movler",
  3864. {
  3865. front: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(240, "lbs"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/nibbles/front.svg"
  3871. }
  3872. },
  3873. side: {
  3874. height: math.unit(6, "feet"),
  3875. weight: math.unit(240, "lbs"),
  3876. name: "Side",
  3877. image: {
  3878. source: "./media/characters/nibbles/side.svg"
  3879. }
  3880. },
  3881. },
  3882. [
  3883. {
  3884. name: "Normal",
  3885. height: math.unit(9, "feet"),
  3886. default: true
  3887. }
  3888. ]
  3889. )
  3890. };
  3891. characterMakers["Rikky"] = () => {
  3892. return makeCharacter(
  3893. "Rikky",
  3894. "Quake Yote",
  3895. {
  3896. side: {
  3897. height: math.unit(5 + 1/6, "feet"),
  3898. weight: math.unit(130, "lbs"),
  3899. name: "Side",
  3900. image: {
  3901. source: "./media/characters/rikky/side.svg"
  3902. }
  3903. },
  3904. },
  3905. [
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 1/6, "feet")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(152, "feet"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(7, "miles")
  3918. }
  3919. ]
  3920. )
  3921. };
  3922. characterMakers["Malfressa"] = () => {
  3923. return makeCharacter(
  3924. "Malfressa",
  3925. "Scareye",
  3926. {
  3927. side: {
  3928. height: math.unit(370, "cm"),
  3929. weight: math.unit(350, "lbs"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/malfressa/side.svg"
  3933. }
  3934. },
  3935. walking: {
  3936. height: math.unit(370, "cm"),
  3937. weight: math.unit(350, "lbs"),
  3938. name: "Walking",
  3939. image: {
  3940. source: "./media/characters/malfressa/walking.svg"
  3941. }
  3942. },
  3943. feral: {
  3944. height: math.unit(2500, "cm"),
  3945. weight: math.unit(100000, "lbs"),
  3946. name: "Feral",
  3947. image: {
  3948. source: "./media/characters/malfressa/feral.svg",
  3949. extra: 2108/837 ,
  3950. bottom: 0.02
  3951. }
  3952. },
  3953. },
  3954. [
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(370, "cm")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(300, "meters"),
  3962. default: true
  3963. }
  3964. ]
  3965. )
  3966. };
  3967. characterMakers["Jaro"] = () => {
  3968. return makeCharacter(
  3969. "Jaro",
  3970. "Jaro",
  3971. {
  3972. front: {
  3973. height: math.unit(6, "feet"),
  3974. weight: math.unit(60, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/jaro/front.svg"
  3978. }
  3979. },
  3980. back: {
  3981. height: math.unit(6, "feet"),
  3982. weight: math.unit(60, "kg"),
  3983. name: "Back",
  3984. image: {
  3985. source: "./media/characters/jaro/back.svg"
  3986. }
  3987. },
  3988. },
  3989. [
  3990. {
  3991. name: "Micro",
  3992. height: math.unit(7, "inches")
  3993. },
  3994. {
  3995. name: "Normal",
  3996. height: math.unit(5.5, "feet"),
  3997. default: true
  3998. },
  3999. {
  4000. name: "Minimacro",
  4001. height: math.unit(20, "feet")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(200, "meters")
  4006. }
  4007. ]
  4008. )
  4009. };
  4010. characterMakers["Rogue"] = () => {
  4011. return makeCharacter(
  4012. "Rogue",
  4013. "Rogue",
  4014. {
  4015. front: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(195, "lb"),
  4018. name: "Front",
  4019. image: {
  4020. source: "./media/characters/rogue/front.svg"
  4021. }
  4022. },
  4023. },
  4024. [
  4025. {
  4026. name: "Macro",
  4027. height: math.unit(90, "feet"),
  4028. default: true
  4029. },
  4030. ]
  4031. )
  4032. };
  4033. characterMakers["Piper"] = () => {
  4034. return makeCharacter(
  4035. "Piper",
  4036. "Flyhar",
  4037. {
  4038. front: {
  4039. height: math.unit(5 + 8/12, "feet"),
  4040. weight: math.unit(140, "lb"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/piper/front.svg",
  4044. extra: 3928/3681
  4045. }
  4046. },
  4047. },
  4048. [
  4049. {
  4050. name: "Micro",
  4051. height: math.unit(2, "inches")
  4052. },
  4053. {
  4054. name: "Normal",
  4055. height: math.unit(5 + 8/12, "feet")
  4056. },
  4057. {
  4058. name: "Macro",
  4059. height: math.unit(250, "feet"),
  4060. default: true
  4061. },
  4062. {
  4063. name: "Megamacro",
  4064. height: math.unit(7, "miles")
  4065. },
  4066. ]
  4067. )
  4068. };
  4069. characterMakers["Gemini"] = () => {
  4070. return makeCharacter(
  4071. "Gemini",
  4072. "lajay",
  4073. {
  4074. front: {
  4075. height: math.unit(6, "feet"),
  4076. weight: math.unit(220, "lb"),
  4077. name: "Front",
  4078. image: {
  4079. source: "./media/characters/gemini/front.svg"
  4080. }
  4081. },
  4082. back: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(220, "lb"),
  4085. name: "Back",
  4086. image: {
  4087. source: "./media/characters/gemini/back.svg"
  4088. }
  4089. },
  4090. kneeling: {
  4091. height: math.unit(6/1.5, "feet"),
  4092. weight: math.unit(220, "lb"),
  4093. name: "Kneeling",
  4094. image: {
  4095. source: "./media/characters/gemini/kneeling.svg",
  4096. bottom: 0.02
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(300, "meters"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(6900, "meters")
  4109. },
  4110. ]
  4111. )
  4112. };
  4113. characterMakers["Alicia"] = () => {
  4114. return makeCharacter(
  4115. "Alicia",
  4116. "LittleBig",
  4117. {
  4118. anthro: {
  4119. height: math.unit(2.35, "meters"),
  4120. weight: math.unit(73, "kg"),
  4121. name: "Anthro",
  4122. image: {
  4123. source: "./media/characters/alicia/anthro.svg"
  4124. }
  4125. },
  4126. feral: {
  4127. height: math.unit(1.69, "meters"),
  4128. weight: math.unit(73, "kg"),
  4129. name: "Feral",
  4130. image: {
  4131. source: "./media/characters/alicia/feral.svg"
  4132. }
  4133. },
  4134. },
  4135. [
  4136. {
  4137. name: "Normal",
  4138. height: math.unit(2.35, "meters")
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(60, "meters"),
  4143. default: true
  4144. },
  4145. {
  4146. name: "Megamacro",
  4147. height: math.unit(10000, "kilometers")
  4148. },
  4149. ]
  4150. )
  4151. };
  4152. characterMakers["Archy"] = () => {
  4153. return makeCharacter(
  4154. "Archy",
  4155. "ArchyD",
  4156. {
  4157. front: {
  4158. height: math.unit(7, "feet"),
  4159. weight: math.unit(250, "lbs"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/archy/front.svg"
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Micro",
  4169. height: math.unit(1, "inch")
  4170. },
  4171. {
  4172. name: "Shorty",
  4173. height: math.unit(5, "feet")
  4174. },
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(7, "feet")
  4178. },
  4179. {
  4180. name: "Macro",
  4181. height: math.unit(600, "meters"),
  4182. default: true
  4183. },
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(1, "mile")
  4187. },
  4188. ]
  4189. )
  4190. };
  4191. characterMakers["Berri"] = () => {
  4192. return makeCharacter(
  4193. "Berri",
  4194. "LittleBig",
  4195. {
  4196. front: {
  4197. height: math.unit(1.65, "meters"),
  4198. weight: math.unit(74, "kg"),
  4199. name: "Front",
  4200. image: {
  4201. source: "./media/characters/berri/front.svg"
  4202. }
  4203. }
  4204. },
  4205. [
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(1.65, "meters")
  4209. },
  4210. {
  4211. name: "Macro",
  4212. height: math.unit(60, "m"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Megamacro",
  4217. height: math.unit(9.213, "km")
  4218. },
  4219. {
  4220. name: "Planet Eater",
  4221. height: math.unit(489, "megameters")
  4222. },
  4223. {
  4224. name: "Teramacro",
  4225. height: math.unit(2471635000000, "meters")
  4226. },
  4227. {
  4228. name: "Examacro",
  4229. height: math.unit(8.0624e+26, "meters")
  4230. }
  4231. ]
  4232. )
  4233. };
  4234. characterMakers["Lexi"] = () => {
  4235. return makeCharacter(
  4236. "Lexi",
  4237. "LittleBig",
  4238. {
  4239. front: {
  4240. height: math.unit(1.72, "meters"),
  4241. weight: math.unit(68, "kg"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/lexi/front.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Very Smol",
  4251. height: math.unit(10, "mm")
  4252. },
  4253. {
  4254. name: "Micro",
  4255. height: math.unit(6.8, "cm"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(1.72, "m")
  4261. }
  4262. ]
  4263. )
  4264. };
  4265. characterMakers["Martin"] = () => {
  4266. return makeCharacter(
  4267. "Martin",
  4268. "LittleBig",
  4269. {
  4270. front: {
  4271. height: math.unit(1.69, "meters"),
  4272. weight: math.unit(68, "kg"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/martin/front.svg",
  4276. extra: 596/581
  4277. }
  4278. }
  4279. },
  4280. [
  4281. {
  4282. name: "Micro",
  4283. height: math.unit(6.85, "cm"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Normal",
  4288. height: math.unit(1.69, "m")
  4289. }
  4290. ]
  4291. )
  4292. };
  4293. characterMakers["Juno"] = () => {
  4294. return makeCharacter(
  4295. "Juno",
  4296. "LittleBig",
  4297. {
  4298. front: {
  4299. height: math.unit(1.69, "meters"),
  4300. weight: math.unit(68, "kg"),
  4301. name: "Front",
  4302. image: {
  4303. source: "./media/characters/juno/front.svg"
  4304. }
  4305. }
  4306. },
  4307. [
  4308. {
  4309. name: "Micro",
  4310. height: math.unit(7, "cm")
  4311. },
  4312. {
  4313. name: "Normal",
  4314. height: math.unit(1.89, "m")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(353, "meters"),
  4319. default: true
  4320. }
  4321. ]
  4322. )
  4323. };
  4324. characterMakers["Samantha"] = () => {
  4325. return makeCharacter(
  4326. "Samantha",
  4327. "LittleBig",
  4328. {
  4329. front: {
  4330. height: math.unit(1.93, "meters"),
  4331. weight: math.unit(83, "kg"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/samantha/front.svg"
  4335. }
  4336. },
  4337. frontClothed: {
  4338. height: math.unit(1.93, "meters"),
  4339. weight: math.unit(83, "kg"),
  4340. name: "Front (Clothed)",
  4341. image: {
  4342. source: "./media/characters/samantha/front-clothed.svg"
  4343. }
  4344. },
  4345. back: {
  4346. height: math.unit(1.93, "meters"),
  4347. weight: math.unit(83, "kg"),
  4348. name: "Back",
  4349. image: {
  4350. source: "./media/characters/samantha/back.svg"
  4351. }
  4352. },
  4353. },
  4354. [
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(1.93, "m")
  4358. },
  4359. {
  4360. name: "Macro",
  4361. height: math.unit(74, "meters"),
  4362. default: true
  4363. },
  4364. {
  4365. name: "Macro+",
  4366. height: math.unit(223, "meters"),
  4367. },
  4368. {
  4369. name: "Megamacro",
  4370. height: math.unit(8381, "meters"),
  4371. },
  4372. {
  4373. name: "Megamacro+",
  4374. height: math.unit(12000, "kilometers")
  4375. },
  4376. ]
  4377. )
  4378. };
  4379. characterMakers["Dr. Clay"] = () => {
  4380. return makeCharacter(
  4381. "Dr. Clay",
  4382. "LittleBig",
  4383. {
  4384. front: {
  4385. height: math.unit(1.92, "meters"),
  4386. weight: math.unit(80, "kg"),
  4387. name: "Front",
  4388. image: {
  4389. source: "./media/characters/dr-clay/front.svg"
  4390. }
  4391. },
  4392. frontClothed: {
  4393. height: math.unit(1.92, "meters"),
  4394. weight: math.unit(80, "kg"),
  4395. name: "Front (Clothed)",
  4396. image: {
  4397. source: "./media/characters/dr-clay/front-clothed.svg"
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Normal",
  4404. height: math.unit(1.92, "m")
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(214, "meters"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Macro+",
  4413. height: math.unit(12.237, "meters"),
  4414. },
  4415. {
  4416. name: "Megamacro",
  4417. height: math.unit(557, "megameters"),
  4418. },
  4419. {
  4420. name: "Unimaginable",
  4421. height: math.unit(120e9, "lightyears")
  4422. },
  4423. ]
  4424. )
  4425. };
  4426. characterMakers["Wyvrn Ripsnarl"] = () => {
  4427. return makeCharacter(
  4428. "Wyvrn Ripsnarl",
  4429. "LoboRaptorLo",
  4430. {
  4431. front: {
  4432. height: math.unit(2, "meters"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4437. }
  4438. }
  4439. },
  4440. [
  4441. {
  4442. name: "Teramacro",
  4443. height: math.unit(500000, "lightyears"),
  4444. default: true
  4445. },
  4446. ]
  4447. )
  4448. };
  4449. characterMakers["Vemus"] = () => {
  4450. return makeCharacter(
  4451. "Vemus",
  4452. "Vemus",
  4453. {
  4454. front: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(150, "kg"),
  4457. name: "Front",
  4458. image: {
  4459. source: "./media/characters/vemus/front.svg",
  4460. extra: 2384/2084,
  4461. bottom: 0.0123
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(3.75, "meters"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Big",
  4473. height: math.unit(8, "meters")
  4474. },
  4475. {
  4476. name: "Macro",
  4477. height: math.unit(100, "meters")
  4478. },
  4479. {
  4480. name: "Macro+",
  4481. height: math.unit(1500, "meters")
  4482. },
  4483. {
  4484. name: "Stellar",
  4485. height: math.unit(14e8, "meters")
  4486. },
  4487. ]
  4488. )
  4489. };
  4490. characterMakers["Beherit"] = () => {
  4491. return makeCharacter(
  4492. "Beherit",
  4493. "Beherit",
  4494. {
  4495. front: {
  4496. height: math.unit(2, "meters"),
  4497. weight: math.unit(70, "kg"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/beherit/front.svg",
  4501. extra: 1408/1242
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(6, "feet")
  4509. },
  4510. {
  4511. name: "Lorg",
  4512. height: math.unit(25, "feet"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Lorger",
  4517. height: math.unit(75, "feet")
  4518. },
  4519. {
  4520. name: "Macro",
  4521. height: math.unit(200, "meters")
  4522. },
  4523. ]
  4524. )
  4525. };
  4526. characterMakers["Everett"] = () => {
  4527. return makeCharacter(
  4528. "Everett",
  4529. "Beherit",
  4530. {
  4531. front: {
  4532. height: math.unit(2, "meters"),
  4533. weight: math.unit(150, "kg"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/everett/front.svg",
  4537. extra: 2038/1737 ,
  4538. bottom: 0.03
  4539. }
  4540. },
  4541. paw: {
  4542. height: math.unit(2/3.6, "meters"),
  4543. name: "Paw",
  4544. image: {
  4545. source: "./media/characters/everett/paw.svg"
  4546. }
  4547. },
  4548. },
  4549. [
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(15, "feet"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "Lorg",
  4557. height: math.unit(70, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Lorger",
  4562. height: math.unit(250, "feet")
  4563. },
  4564. {
  4565. name: "Macro",
  4566. height: math.unit(500, "meters")
  4567. },
  4568. ]
  4569. )
  4570. };
  4571. characterMakers["Rose Lion"] = () => {
  4572. return makeCharacter(
  4573. "Rose Lion",
  4574. "Enormouse",
  4575. {
  4576. front: {
  4577. height: math.unit(2, "meters"),
  4578. weight: math.unit(86, "kg"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/rose-lion/front.svg"
  4582. }
  4583. },
  4584. bent: {
  4585. height: math.unit(2/1.4288, "meters"),
  4586. weight: math.unit(86, "kg"),
  4587. name: "Bent",
  4588. image: {
  4589. source: "./media/characters/rose-lion/bent.svg"
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Mini-Micro",
  4596. height: math.unit(1, "cm")
  4597. },
  4598. {
  4599. name: "Micro",
  4600. height: math.unit(3.5, "inches"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(6 + 1/6, "feet")
  4606. },
  4607. {
  4608. name: "Mini-Macro",
  4609. height: math.unit(9 + 10/12, "feet")
  4610. },
  4611. ]
  4612. )
  4613. };
  4614. characterMakers["Regal"] = () => {
  4615. return makeCharacter(
  4616. "Regal",
  4617. "Regal Drennen",
  4618. {
  4619. front: {
  4620. height: math.unit(2, "meters"),
  4621. weight: math.unit(350, "lbs"),
  4622. name: "Front",
  4623. image: {
  4624. source: "./media/characters/regal/front.svg"
  4625. }
  4626. },
  4627. back: {
  4628. height: math.unit(2, "meters"),
  4629. weight: math.unit(350, "lbs"),
  4630. name: "Back",
  4631. image: {
  4632. source: "./media/characters/regal/back.svg"
  4633. }
  4634. },
  4635. },
  4636. [
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(350, "feet"),
  4640. default: true
  4641. }
  4642. ]
  4643. )
  4644. };
  4645. characterMakers["Opal"] = () => {
  4646. return makeCharacter(
  4647. "Opal",
  4648. "Enormouse",
  4649. {
  4650. front: {
  4651. height: math.unit(4 + 11/12, "feet"),
  4652. weight: math.unit(100, "lbs"),
  4653. name: "Front",
  4654. image: {
  4655. source: "./media/characters/opal/front.svg"
  4656. }
  4657. },
  4658. frontAlt: {
  4659. height: math.unit(4 + 11/12, "feet"),
  4660. weight: math.unit(100, "lbs"),
  4661. name: "Front (Alt)",
  4662. image: {
  4663. source: "./media/characters/opal/front-alt.svg"
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Small",
  4670. height: math.unit(4 + 11/12, "feet")
  4671. },
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(20, "feet"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(120, "feet")
  4680. },
  4681. {
  4682. name: "Megamacro",
  4683. height: math.unit(80, "miles")
  4684. },
  4685. {
  4686. name: "True Size",
  4687. height: math.unit(100000, "lightyears")
  4688. },
  4689. ]
  4690. )
  4691. };
  4692. characterMakers["Vector Wuff"] = () => {
  4693. return makeCharacter(
  4694. "Vector Wuff",
  4695. "Vector",
  4696. {
  4697. front: {
  4698. height: math.unit(6, "feet"),
  4699. weight: math.unit(200, "lbs"),
  4700. name: "Front",
  4701. image: {
  4702. source: "./media/characters/vector-wuff/front.svg"
  4703. }
  4704. }
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(2.8, "meters")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(450, "meters"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Megamacro",
  4718. height: math.unit(15, "kilometers")
  4719. }
  4720. ]
  4721. )
  4722. };
  4723. characterMakers["Dannik"] = () => {
  4724. return makeCharacter(
  4725. "Dannik",
  4726. "LuchaLibreLibro",
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(256, "lbs"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/dannik/front.svg"
  4734. }
  4735. }
  4736. },
  4737. [
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(69.57, "meters"),
  4741. default: true
  4742. },
  4743. ]
  4744. )
  4745. };
  4746. characterMakers["Azura Saharah"] = () => {
  4747. return makeCharacter(
  4748. "Azura Saharah",
  4749. "AzuraSaharah",
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(120, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/azura-saharah/front.svg"
  4757. }
  4758. },
  4759. back: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(120, "lbs"),
  4762. name: "Back",
  4763. image: {
  4764. source: "./media/characters/azura-saharah/back.svg"
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(100, "feet"),
  4772. default: true
  4773. },
  4774. ]
  4775. )
  4776. };
  4777. characterMakers["Kennedy"] = () => {
  4778. return makeCharacter(
  4779. "Kennedy",
  4780. "BossVoss",
  4781. {
  4782. side: {
  4783. height: math.unit(5 + 4/12, "feet"),
  4784. weight: math.unit(163, "lbs"),
  4785. name: "Side",
  4786. image: {
  4787. source: "./media/characters/kennedy/side.svg"
  4788. }
  4789. }
  4790. },
  4791. [
  4792. {
  4793. name: "Standard Doggo",
  4794. height: math.unit(5 + 4/12, "feet")
  4795. },
  4796. {
  4797. name: "Big Doggo",
  4798. height: math.unit(25 + 3/12, "feet"),
  4799. default: true
  4800. },
  4801. ]
  4802. )
  4803. };
  4804. characterMakers["Odi Lunar"] = () => {
  4805. return makeCharacter(
  4806. "Odi Lunar",
  4807. "OdiLunar",
  4808. {
  4809. front: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(90, "lbs"),
  4812. name: "Front",
  4813. image: {
  4814. source: "./media/characters/odi-lunar/front.svg"
  4815. }
  4816. }
  4817. },
  4818. [
  4819. {
  4820. name: "Micro",
  4821. height: math.unit(3, "inches"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(5.5, "feet")
  4827. }
  4828. ]
  4829. )
  4830. };
  4831. characterMakers["Mandake"] = () => {
  4832. return makeCharacter(
  4833. "Mandake",
  4834. "Dialuca01",
  4835. {
  4836. back: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(220, "lbs"),
  4839. name: "Back",
  4840. image: {
  4841. source: "./media/characters/mandake/back.svg"
  4842. }
  4843. }
  4844. },
  4845. [
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(7, "feet"),
  4849. default: true
  4850. },
  4851. {
  4852. name: "Macro",
  4853. height: math.unit(78, "feet")
  4854. },
  4855. {
  4856. name: "Macro+",
  4857. height: math.unit(300, "meters")
  4858. },
  4859. {
  4860. name: "Macro++",
  4861. height: math.unit(2400, "feet")
  4862. },
  4863. {
  4864. name: "Megamacro",
  4865. height: math.unit(5167, "meters")
  4866. },
  4867. {
  4868. name: "Gigamacro",
  4869. height: math.unit(41769, "miles")
  4870. },
  4871. ]
  4872. )
  4873. };
  4874. characterMakers["Yozey"] = () => {
  4875. return makeCharacter(
  4876. "Yozey",
  4877. "Yozey",
  4878. {
  4879. front: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(120, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/yozey/front.svg"
  4885. }
  4886. },
  4887. frontAlt: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(120, "lbs"),
  4890. name: "Front (Alt)",
  4891. image: {
  4892. source: "./media/characters/yozey/front-alt.svg"
  4893. }
  4894. },
  4895. side: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(120, "lbs"),
  4898. name: "Side",
  4899. image: {
  4900. source: "./media/characters/yozey/side.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Micro",
  4907. height: math.unit(3, "inches"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Normal",
  4912. height: math.unit(6, "feet")
  4913. }
  4914. ]
  4915. )
  4916. };
  4917. characterMakers["Valeska Voss"] = () => {
  4918. return makeCharacter(
  4919. "Valeska Voss",
  4920. "BossVoss",
  4921. {
  4922. front: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(103, "lbs"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/valeska-voss/front.svg"
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Mini-Sized Sub",
  4934. height: math.unit(3.1, "inches")
  4935. },
  4936. {
  4937. name: "Mid-Sized Sub",
  4938. height: math.unit(6.2, "inches")
  4939. },
  4940. {
  4941. name: "Full-Sized Sub",
  4942. height: math.unit(9.3, "inches")
  4943. },
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(5 + 2/12, "foot"),
  4947. default: true
  4948. },
  4949. ]
  4950. )
  4951. };
  4952. characterMakers["Gene Zeta"] = () => {
  4953. return makeCharacter(
  4954. "Gene Zeta",
  4955. "Xeebes",
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(160, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/gene-zeta/front.svg",
  4963. bottom: 0.03,
  4964. extra: 1
  4965. }
  4966. }
  4967. },
  4968. [
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(6.25, "foot"),
  4972. default: true
  4973. },
  4974. ]
  4975. )
  4976. };
  4977. characterMakers["Razinox"] = () => {
  4978. return makeCharacter(
  4979. "Razinox",
  4980. "Razinox",
  4981. {
  4982. front: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(350, "lbs"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/razinox/front.svg",
  4988. extra: 1686/1548
  4989. }
  4990. },
  4991. back: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(350, "lbs"),
  4994. name: "Back",
  4995. image: {
  4996. source: "./media/characters/razinox/back.svg",
  4997. extra: 1660/1590
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(10 + 8/12, "foot")
  5005. },
  5006. {
  5007. name: "Minimacro",
  5008. height: math.unit(15, "foot")
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(60, "foot"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(5, "miles")
  5018. },
  5019. {
  5020. name: "Gigamacro",
  5021. height: math.unit(6000, "miles")
  5022. },
  5023. ]
  5024. )
  5025. };
  5026. characterMakers["Cobalt"] = () => {
  5027. return makeCharacter(
  5028. "Cobalt",
  5029. "Miateshcha",
  5030. {
  5031. front: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(150, "lbs"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/cobalt/front.svg"
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(8 + 1/12, "foot")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(111, "foot"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Supracosmic",
  5052. height: math.unit(1e42, "feet")
  5053. },
  5054. ]
  5055. )
  5056. };
  5057. characterMakers["Amanda"] = () => {
  5058. return makeCharacter(
  5059. "Amanda",
  5060. "Amanda",
  5061. {
  5062. front: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(140, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/amanda/front.svg"
  5068. }
  5069. }
  5070. },
  5071. [
  5072. {
  5073. name: "Micro",
  5074. height: math.unit(5, "inches"),
  5075. default: true
  5076. },
  5077. ]
  5078. )
  5079. };
  5080. characterMakers["Teal"] = () => {
  5081. return makeCharacter(
  5082. "Teal",
  5083. "Teal",
  5084. {
  5085. front: {
  5086. height: math.unit(5.59, "feet"),
  5087. weight: math.unit(250, "lbs"),
  5088. name: "Front",
  5089. image: {
  5090. source: "./media/characters/teal/front.svg"
  5091. }
  5092. },
  5093. frontAlt: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(250, "lbs"),
  5096. name: "Front (Alt)",
  5097. image: {
  5098. source: "./media/characters/teal/front-alt.svg",
  5099. bottom: 0.04,
  5100. extra: 1
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(12, "feet"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Macro",
  5112. height: math.unit(300, "feet")
  5113. },
  5114. ]
  5115. )
  5116. };
  5117. characterMakers["Ravin Amulet"] = () => {
  5118. return makeCharacter(
  5119. "Ravin Amulet",
  5120. "Ravin Amulet",
  5121. {
  5122. frontCat: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(180, "lbs"),
  5125. name: "Front (Cat)",
  5126. image: {
  5127. source: "./media/characters/ravin-amulet/front-cat.svg"
  5128. }
  5129. },
  5130. frontCatAlt: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(180, "lbs"),
  5133. name: "Front (Alt, Cat)",
  5134. image: {
  5135. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5136. }
  5137. },
  5138. frontWerewolf: {
  5139. height: math.unit(6*1.2, "feet"),
  5140. weight: math.unit(225, "lbs"),
  5141. name: "Front (Werewolf)",
  5142. image: {
  5143. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5144. }
  5145. },
  5146. backWerewolf: {
  5147. height: math.unit(6*1.2, "feet"),
  5148. weight: math.unit(225, "lbs"),
  5149. name: "Back (Werewolf)",
  5150. image: {
  5151. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5152. }
  5153. },
  5154. },
  5155. [
  5156. {
  5157. name: "Nano",
  5158. height: math.unit(1, "micrometer")
  5159. },
  5160. {
  5161. name: "Micro",
  5162. height: math.unit(1, "inch")
  5163. },
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(6, "feet"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Macro",
  5171. height: math.unit(60, "feet")
  5172. }
  5173. ]
  5174. )
  5175. };
  5176. characterMakers["Fluoresce"] = () => {
  5177. return makeCharacter(
  5178. "Fluoresce",
  5179. "Ravin Amulet",
  5180. {
  5181. front: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(165, "lbs"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/fluoresce/front.svg"
  5187. }
  5188. }
  5189. },
  5190. [
  5191. {
  5192. name: "Micro",
  5193. height: math.unit(6, "cm")
  5194. },
  5195. {
  5196. name: "Normal",
  5197. height: math.unit(5 + 7/12, "feet"),
  5198. default: true
  5199. },
  5200. {
  5201. name: "Macro",
  5202. height: math.unit(56, "feet")
  5203. },
  5204. {
  5205. name: "Megamacro",
  5206. height: math.unit(1.9, "miles")
  5207. },
  5208. ]
  5209. )
  5210. };
  5211. characterMakers["Aurora"] = () => {
  5212. return makeCharacter(
  5213. "Aurora",
  5214. "Vonadi",
  5215. {
  5216. front: {
  5217. height: math.unit(9 + 6/12, "feet"),
  5218. weight: math.unit(523, "lbs"),
  5219. name: "Side",
  5220. image: {
  5221. source: "./media/characters/aurora/side.svg"
  5222. }
  5223. }
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(9 + 6/12, "feet")
  5229. },
  5230. {
  5231. name: "Macro",
  5232. height: math.unit(96, "feet"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "Macro+",
  5237. height: math.unit(243, "feet")
  5238. },
  5239. ]
  5240. )
  5241. };
  5242. characterMakers["Ranek"] = () => {
  5243. return makeCharacter(
  5244. "Ranek",
  5245. "Ranek",
  5246. {
  5247. front: {
  5248. height: math.unit(194, "cm"),
  5249. weight: math.unit(90, "kg"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/ranek/front.svg"
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(194, "cm"),
  5257. weight: math.unit(90, "kg"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/ranek/side.svg"
  5261. }
  5262. },
  5263. back: {
  5264. height: math.unit(194, "cm"),
  5265. weight: math.unit(90, "kg"),
  5266. name: "Back",
  5267. image: {
  5268. source: "./media/characters/ranek/back.svg"
  5269. }
  5270. },
  5271. feral: {
  5272. height: math.unit(30, "cm"),
  5273. weight: math.unit(1.6, "lbs"),
  5274. name: "Feral",
  5275. image: {
  5276. source: "./media/characters/ranek/feral.svg"
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(194, "cm"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(100, "meters")
  5289. },
  5290. ]
  5291. )
  5292. };
  5293. characterMakers["Andrew Cooper"] = () => {
  5294. return makeCharacter(
  5295. "Andrew Cooper",
  5296. "Vonadi",
  5297. {
  5298. front: {
  5299. height: math.unit(5 + 6/12, "feet"),
  5300. weight: math.unit(153, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/andrew-cooper/front.svg"
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Nano",
  5310. height: math.unit(1, "mm")
  5311. },
  5312. {
  5313. name: "Micro",
  5314. height: math.unit(2, "inches")
  5315. },
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(5 + 6/12, "feet"),
  5319. default: true
  5320. }
  5321. ]
  5322. )
  5323. };
  5324. characterMakers["Akane Sato"] = () => {
  5325. return makeCharacter(
  5326. "Akane Sato",
  5327. "Vonadi",
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(180, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/akane-sato/front.svg",
  5335. extra: 1219/1140
  5336. }
  5337. },
  5338. back: {
  5339. height: math.unit(6, "feet"),
  5340. weight: math.unit(180, "lbs"),
  5341. name: "Back",
  5342. image: {
  5343. source: "./media/characters/akane-sato/back.svg",
  5344. extra: 1219/1170
  5345. }
  5346. },
  5347. },
  5348. [
  5349. {
  5350. name: "Normal",
  5351. height: math.unit(2.5, "meters")
  5352. },
  5353. {
  5354. name: "Macro",
  5355. height: math.unit(250, "meters"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Megamacro",
  5360. height: math.unit(25, "km")
  5361. },
  5362. ]
  5363. )
  5364. };
  5365. characterMakers["Rook"] = () => {
  5366. return makeCharacter(
  5367. "Rook",
  5368. "Rook",
  5369. {
  5370. front: {
  5371. height: math.unit(6, "feet"),
  5372. weight: math.unit(65, "kg"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/rook/front.svg"
  5376. }
  5377. }
  5378. },
  5379. [
  5380. {
  5381. name: "Normal",
  5382. height: math.unit(8.8, "feet")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(88, "feet"),
  5387. default: true
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(8, "miles")
  5392. },
  5393. ]
  5394. )
  5395. };
  5396. characterMakers["Prodigy"] = () => {
  5397. return makeCharacter(
  5398. "Prodigy",
  5399. "Rook",
  5400. {
  5401. front: {
  5402. height: math.unit(12 + 2/12, "feet"),
  5403. weight: math.unit(808, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/prodigy/front.svg"
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(12 + 2/12, "feet"),
  5414. default: true
  5415. },
  5416. {
  5417. name: "Macro",
  5418. height: math.unit(143, "feet")
  5419. },
  5420. {
  5421. name: "Macro+",
  5422. height: math.unit(400, "feet")
  5423. },
  5424. ]
  5425. )
  5426. };
  5427. characterMakers["Daniel"] = () => {
  5428. return makeCharacter(
  5429. "Daniel",
  5430. "Galactor",
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(225, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/daniel/front.svg"
  5438. }
  5439. },
  5440. leaning: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(225, "lbs"),
  5443. name: "Leaning",
  5444. image: {
  5445. source: "./media/characters/daniel/leaning.svg"
  5446. }
  5447. },
  5448. },
  5449. [
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(1000, "feet"),
  5453. default: true
  5454. },
  5455. ]
  5456. )
  5457. };
  5458. characterMakers["Chiros"] = () => {
  5459. return makeCharacter(
  5460. "Chiros",
  5461. "Chiropica",
  5462. {
  5463. front: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(88, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/chiros/front.svg",
  5469. extra: 306/226
  5470. }
  5471. },
  5472. side: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(88, "lbs"),
  5475. name: "Side",
  5476. image: {
  5477. source: "./media/characters/chiros/side.svg",
  5478. extra: 306/226
  5479. }
  5480. },
  5481. },
  5482. [
  5483. {
  5484. name: "Normal",
  5485. height: math.unit(6, "cm"),
  5486. default: true
  5487. },
  5488. ]
  5489. )
  5490. };
  5491. characterMakers["Selka"] = () => {
  5492. return makeCharacter(
  5493. "Selka",
  5494. "Xelchew",
  5495. {
  5496. front: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(100, "lbs"),
  5499. name: "Front",
  5500. image: {
  5501. source: "./media/characters/selka/front.svg",
  5502. extra: 947/887
  5503. }
  5504. }
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(5, "cm"),
  5510. default: true
  5511. },
  5512. ]
  5513. )
  5514. };
  5515. characterMakers["Verin"] = () => {
  5516. return makeCharacter(
  5517. "Verin",
  5518. "Vonadi",
  5519. {
  5520. front: {
  5521. height: math.unit(8 + 3/12, "feet"),
  5522. weight: math.unit(424, "lbs"),
  5523. name: "Front",
  5524. image: {
  5525. source: "./media/characters/verin/front.svg",
  5526. extra: 1845/1550
  5527. }
  5528. },
  5529. frontArmored: {
  5530. height: math.unit(8 + 3/12, "feet"),
  5531. weight: math.unit(424, "lbs"),
  5532. name: "Front (Armored)",
  5533. image: {
  5534. source: "./media/characters/verin/front-armor.svg",
  5535. extra: 1845/1550 ,
  5536. bottom: 0.01
  5537. }
  5538. },
  5539. back: {
  5540. height: math.unit(8 + 3/12, "feet"),
  5541. weight: math.unit(424, "lbs"),
  5542. name: "Back",
  5543. image: {
  5544. source: "./media/characters/verin/back.svg",
  5545. bottom: 0.1,
  5546. extra: 1
  5547. }
  5548. },
  5549. foot: {
  5550. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5551. name: "Foot",
  5552. image: {
  5553. source: "./media/characters/verin/foot.svg"
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(8 + 3/12, "feet")
  5561. },
  5562. {
  5563. name: "Minimacro",
  5564. height: math.unit(21, "feet"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Macro",
  5569. height: math.unit(626, "feet")
  5570. },
  5571. ]
  5572. )
  5573. };
  5574. characterMakers["Sovrim Terraquian"] = () => {
  5575. return makeCharacter(
  5576. "Sovrim Terraquian",
  5577. "Sovrim Terraquian",
  5578. {
  5579. front: {
  5580. height: math.unit(2.718, "meters"),
  5581. weight: math.unit(150, "lbs"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/sovrim-terraquian/front.svg"
  5585. }
  5586. },
  5587. back: {
  5588. height: math.unit(2.718, "meters"),
  5589. weight: math.unit(150, "lbs"),
  5590. name: "Back",
  5591. image: {
  5592. source: "./media/characters/sovrim-terraquian/back.svg"
  5593. }
  5594. }
  5595. },
  5596. [
  5597. {
  5598. name: "Micro",
  5599. height: math.unit(2, "inches")
  5600. },
  5601. {
  5602. name: "Small",
  5603. height: math.unit(1, "meter")
  5604. },
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(Math.E, "meters"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(20, "meters")
  5613. },
  5614. {
  5615. name: "Macro+",
  5616. height: math.unit(400, "meters")
  5617. },
  5618. ]
  5619. )
  5620. };
  5621. characterMakers["Reece Silvermane"] = () => {
  5622. return makeCharacter(
  5623. "Reece Silvermane",
  5624. "Silverhorsey",
  5625. {
  5626. front: {
  5627. height: math.unit(7, "feet"),
  5628. weight: math.unit(489, "lbs"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/reece-silvermane/front.svg",
  5632. bottom: 0.02,
  5633. extra: 1
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(1.5, "miles"),
  5641. default: true
  5642. },
  5643. ]
  5644. )
  5645. };
  5646. characterMakers["Kane"] = () => {
  5647. return makeCharacter(
  5648. "Kane",
  5649. "LittleBigX110",
  5650. {
  5651. front: {
  5652. height: math.unit(6, "feet"),
  5653. weight: math.unit(78, "kg"),
  5654. name: "Front",
  5655. image: {
  5656. source: "./media/characters/kane/front.svg",
  5657. extra: 978/899
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(2.1, "m"),
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(1, "km"),
  5669. default: true
  5670. },
  5671. ]
  5672. )
  5673. };
  5674. characterMakers["Tegon"] = () => {
  5675. return makeCharacter(
  5676. "Tegon",
  5677. "TegonDragon",
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(200, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/tegon/front.svg",
  5685. bottom: 0.01,
  5686. extra: 1
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(1, "inch")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(6 + 3/12, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Macro",
  5702. height: math.unit(300, "feet")
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(69, "miles")
  5707. },
  5708. ]
  5709. )
  5710. };
  5711. characterMakers["Arcturax"] = () => {
  5712. return makeCharacter(
  5713. "Arcturax",
  5714. "Arcturax",
  5715. {
  5716. side: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(2304, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/arcturax/side.svg",
  5722. extra: 790/376 ,
  5723. bottom: 0.01
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Micro",
  5730. height: math.unit(2, "inch")
  5731. },
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(6, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(39, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Megamacro",
  5743. height: math.unit(7, "miles")
  5744. },
  5745. ]
  5746. )
  5747. };
  5748. characterMakers["Sentri"] = () => {
  5749. return makeCharacter(
  5750. "Sentri",
  5751. "Sentri",
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(50, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/sentri/front.svg",
  5759. extra: 1750/1570 ,
  5760. bottom: 0.025
  5761. }
  5762. },
  5763. frontAlt: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(50, "lbs"),
  5766. name: "Front (Alt)",
  5767. image: {
  5768. source: "./media/characters/sentri/front-alt.svg",
  5769. extra: 1750/1570 ,
  5770. bottom: 0.025
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(15, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(2500, "feet")
  5783. }
  5784. ]
  5785. )
  5786. };
  5787. characterMakers["Corvin"] = () => {
  5788. return makeCharacter(
  5789. "Corvin",
  5790. "Sirffuzzylogik",
  5791. {
  5792. front: {
  5793. height: math.unit(5 + 8/12, "feet"),
  5794. weight: math.unit(130, "lbs"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/corvin/front.svg",
  5798. extra: 1803/1629
  5799. }
  5800. },
  5801. frontShirt: {
  5802. height: math.unit(5 + 8/12, "feet"),
  5803. weight: math.unit(130, "lbs"),
  5804. name: "Front (Shirt)",
  5805. image: {
  5806. source: "./media/characters/corvin/front-shirt.svg",
  5807. extra: 1803/1629
  5808. }
  5809. },
  5810. frontPoncho: {
  5811. height: math.unit(5 + 8/12, "feet"),
  5812. weight: math.unit(130, "lbs"),
  5813. name: "Front (Poncho)",
  5814. image: {
  5815. source: "./media/characters/corvin/front-poncho.svg",
  5816. extra: 1803/1629
  5817. }
  5818. },
  5819. side: {
  5820. height: math.unit(5 + 8/12, "feet"),
  5821. weight: math.unit(130, "lbs"),
  5822. name: "Side",
  5823. image: {
  5824. source: "./media/characters/corvin/side.svg",
  5825. extra: 1012/945
  5826. }
  5827. },
  5828. back: {
  5829. height: math.unit(5 + 8/12, "feet"),
  5830. weight: math.unit(130, "lbs"),
  5831. name: "Back",
  5832. image: {
  5833. source: "./media/characters/corvin/back.svg",
  5834. extra: 1803/1629
  5835. }
  5836. },
  5837. },
  5838. [
  5839. {
  5840. name: "Micro",
  5841. height: math.unit(3, "inches")
  5842. },
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(5 + 8/12, "feet")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(300, "feet"),
  5850. default: true
  5851. },
  5852. {
  5853. name: "Megamacro",
  5854. height: math.unit(500, "miles")
  5855. }
  5856. ]
  5857. )
  5858. };
  5859. characterMakers["Q"] = () => {
  5860. return makeCharacter(
  5861. "Q",
  5862. "Q Walf",
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(135, "lbs"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/q/front.svg",
  5870. extra: 854/752 ,
  5871. bottom: 0.005
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(130, "lbs"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/q/back.svg",
  5880. extra: 854/752
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Macro",
  5887. height: math.unit(90, "feet"),
  5888. default: true
  5889. },
  5890. {
  5891. name: "Extra Macro",
  5892. height: math.unit(300, "feet"),
  5893. },
  5894. {
  5895. name: "BIG WALF",
  5896. height: math.unit(750, "feet"),
  5897. },
  5898. ]
  5899. )
  5900. };
  5901. characterMakers["Carley"] = () => {
  5902. return makeCharacter(
  5903. "Carley",
  5904. "QuakeYote",
  5905. {
  5906. front: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(150, "lbs"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/carley/front.svg",
  5912. extra: 3927/3540 ,
  5913. bottom: 0.03
  5914. }
  5915. }
  5916. },
  5917. [
  5918. {
  5919. name: "Normal",
  5920. height: math.unit(6 + 3/12, "feet")
  5921. },
  5922. {
  5923. name: "Macro",
  5924. height: math.unit(185, "feet"),
  5925. default: true
  5926. },
  5927. {
  5928. name: "Megamacro",
  5929. height: math.unit(8, "miles"),
  5930. },
  5931. ]
  5932. )
  5933. };
  5934. characterMakers["Citrine"] = () => {
  5935. return makeCharacter(
  5936. "Citrine",
  5937. "thunderstrike23",
  5938. {
  5939. front: {
  5940. height: math.unit(3, "feet"),
  5941. weight: math.unit(28, "lbs"),
  5942. name: "Front",
  5943. image: {
  5944. source: "./media/characters/citrine/front.svg"
  5945. }
  5946. }
  5947. },
  5948. [
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(3, "feet"),
  5952. default: true
  5953. }
  5954. ]
  5955. )
  5956. };
  5957. characterMakers["Aura Starwind"] = () => {
  5958. return makeCharacter(
  5959. "Aura Starwind",
  5960. "StrikeVixen",
  5961. {
  5962. front: {
  5963. height: math.unit(14, "feet"),
  5964. weight: math.unit(1450, "kg"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/aura-starwind/front.svg",
  5968. extra: 1455/1335
  5969. }
  5970. },
  5971. side: {
  5972. height: math.unit(14, "feet"),
  5973. weight: math.unit(1450, "kg"),
  5974. name: "Side",
  5975. image: {
  5976. source: "./media/characters/aura-starwind/side.svg",
  5977. extra: 1654/1497
  5978. }
  5979. },
  5980. taur: {
  5981. height: math.unit(18, "feet"),
  5982. weight: math.unit(5500, "kg"),
  5983. name: "Taur",
  5984. image: {
  5985. source: "./media/characters/aura-starwind/taur.svg",
  5986. extra: 1760/1650
  5987. }
  5988. },
  5989. feral: {
  5990. height: math.unit(46, "feet"),
  5991. weight: math.unit(25000, "kg"),
  5992. name: "Feral",
  5993. image: {
  5994. source: "./media/characters/aura-starwind/feral.svg"
  5995. }
  5996. },
  5997. },
  5998. [
  5999. {
  6000. name: "Normal",
  6001. height: math.unit(14, "feet"),
  6002. default: true
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(50, "meters")
  6007. },
  6008. {
  6009. name: "Megamacro",
  6010. height: math.unit(5000, "meters")
  6011. },
  6012. {
  6013. name: "Gigamacro",
  6014. height: math.unit(100000, "kilometers")
  6015. },
  6016. ]
  6017. )
  6018. };
  6019. characterMakers["Rivet"] = () => {
  6020. return makeCharacter(
  6021. "Rivet",
  6022. "Vonadi",
  6023. {
  6024. front: {
  6025. height: math.unit(2 + 7/12, "feet"),
  6026. weight: math.unit(32, "lbs"),
  6027. name: "Front",
  6028. image: {
  6029. source: "./media/characters/rivet/front.svg",
  6030. extra: 1716/1658 ,
  6031. bottom: 0.03
  6032. }
  6033. },
  6034. foot: {
  6035. height: math.unit(0.551, "feet"),
  6036. name: "Rivet's Foot",
  6037. image: {
  6038. source: "./media/characters/rivet/foot.svg"
  6039. },
  6040. rename: true
  6041. }
  6042. },
  6043. [
  6044. {
  6045. name: "Micro",
  6046. height: math.unit(1.5, "inches"),
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(2 + 7/12, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Macro",
  6055. height: math.unit(85, "feet")
  6056. },
  6057. {
  6058. name: "Megamacro",
  6059. height: math.unit(2.2, "km")
  6060. }
  6061. ]
  6062. )
  6063. };
  6064. characterMakers["Coffee"] = () => {
  6065. return makeCharacter(
  6066. "Coffee",
  6067. "CoffeeDoggo",
  6068. {
  6069. front: {
  6070. height: math.unit(5 + 9/12, "feet"),
  6071. weight: math.unit(150, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/coffee/front.svg",
  6075. extra: 3666/3032 ,
  6076. bottom: 0.04
  6077. }
  6078. },
  6079. foot: {
  6080. height: math.unit(1.29, "feet"),
  6081. name: "Foot",
  6082. image: {
  6083. source: "./media/characters/coffee/foot.svg"
  6084. }
  6085. },
  6086. },
  6087. [
  6088. {
  6089. name: "Micro",
  6090. height: math.unit(2, "inches"),
  6091. },
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(5 + 9/12, "feet"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Macro",
  6099. height: math.unit(800, "feet")
  6100. },
  6101. {
  6102. name: "Megamacro",
  6103. height: math.unit(25, "miles")
  6104. }
  6105. ]
  6106. )
  6107. };
  6108. characterMakers["Chari-Gal"] = () => {
  6109. return makeCharacter(
  6110. "Chari-Gal",
  6111. "Knoem",
  6112. {
  6113. front: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(200, "lbs"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/chari-gal/front.svg",
  6119. extra: 1568/1385 ,
  6120. bottom: 0.047
  6121. }
  6122. },
  6123. gigantamax: {
  6124. height: math.unit(6*16, "feet"),
  6125. weight: math.unit(200*16*16*16, "lbs"),
  6126. name: "Gigantamax",
  6127. image: {
  6128. source: "./media/characters/chari-gal/gigantamax.svg",
  6129. extra: 1124/888 ,
  6130. bottom: 0.03
  6131. }
  6132. },
  6133. },
  6134. [
  6135. {
  6136. name: "Normal",
  6137. height: math.unit(5 + 7/12, "feet")
  6138. },
  6139. {
  6140. name: "Macro",
  6141. height: math.unit(200, "feet"),
  6142. default: true
  6143. }
  6144. ]
  6145. )
  6146. };
  6147. characterMakers["Nova"] = () => {
  6148. return makeCharacter(
  6149. "Nova",
  6150. "CoffeeDoggo",
  6151. {
  6152. front: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(150, "lbs"),
  6155. name: "Front",
  6156. image: {
  6157. source: "./media/characters/nova/front.svg",
  6158. extra: 5000/4722 ,
  6159. bottom: 0.02
  6160. }
  6161. }
  6162. },
  6163. [
  6164. {
  6165. name: "Micro-",
  6166. height: math.unit(0.8, "inches")
  6167. },
  6168. {
  6169. name: "Micro",
  6170. height: math.unit(2, "inches"),
  6171. default: true
  6172. },
  6173. ]
  6174. )
  6175. };
  6176. characterMakers["Argent"] = () => {
  6177. return makeCharacter(
  6178. "Argent",
  6179. "ArgentVZ",
  6180. {
  6181. front: {
  6182. height: math.unit(3 + 1/12, "feet"),
  6183. weight: math.unit(21.7, "lbs"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/argent/front.svg",
  6187. extra: 1565/1416 ,
  6188. bottom: 0.01
  6189. }
  6190. }
  6191. },
  6192. [
  6193. {
  6194. name: "Micro",
  6195. height: math.unit(2, "inches")
  6196. },
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(3 + 1/12, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(120, "feet")
  6205. },
  6206. ]
  6207. )
  6208. };
  6209. characterMakers["Mira al-Cul"] = () => {
  6210. return makeCharacter(
  6211. "Mira al-Cul",
  6212. "Mariokartsonicriders",
  6213. {
  6214. lamp: {
  6215. height: math.unit(7 * 1559 / 989, "feet"),
  6216. name: "Magic Lamp",
  6217. image: {
  6218. source: "./media/characters/mira-al-cul/lamp.svg",
  6219. extra: 1617/1559
  6220. }
  6221. },
  6222. front: {
  6223. height: math.unit(7, "feet"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/mira-al-cul/front.svg",
  6227. extra: 1044/990
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Heavily Restricted",
  6234. height: math.unit(7 * 1559 / 989, "feet")
  6235. },
  6236. {
  6237. name: "Freshly Freed",
  6238. height: math.unit(50 * 1559 / 989, "feet")
  6239. },
  6240. {
  6241. name: "World Encompassing",
  6242. height: math.unit(10000 * 1559 / 989, "miles")
  6243. },
  6244. {
  6245. name: "Galactic",
  6246. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6247. },
  6248. {
  6249. name: "Palmed Universe",
  6250. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6251. default: true
  6252. },
  6253. {
  6254. name: "Multiversal Matriarch",
  6255. height: math.unit(8.87e10, "yottameters")
  6256. },
  6257. {
  6258. name: "Void Mother",
  6259. height: math.unit(3.14e110, "yottaparsecs")
  6260. },
  6261. ]
  6262. )
  6263. };
  6264. characterMakers["Kuro-shi Uchū"] = () => {
  6265. return makeCharacter(
  6266. "Kuro-shi Uchū",
  6267. "Dragon Shark",
  6268. {
  6269. front: {
  6270. height: math.unit(17 + 1/12, "feet"),
  6271. weight: math.unit(476.2*5, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/kuro-shi-uchū/front.svg",
  6275. extra: 2329/1835 ,
  6276. bottom: 0.02
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Micro",
  6283. height: math.unit(2, "inches")
  6284. },
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(12, "meters")
  6288. },
  6289. {
  6290. name: "Planetary",
  6291. height: math.unit(0.00929, "AU"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Universal",
  6296. height: math.unit(20, "gigaparsecs")
  6297. },
  6298. ]
  6299. )
  6300. };
  6301. characterMakers["Katherine"] = () => {
  6302. return makeCharacter(
  6303. "Katherine",
  6304. "chrisrules123",
  6305. {
  6306. front: {
  6307. height: math.unit(5 + 2/12, "feet"),
  6308. weight: math.unit(120, "lbs"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/katherine/front.svg",
  6312. extra: 2075/1969
  6313. }
  6314. },
  6315. dress: {
  6316. height: math.unit(5 + 2/12, "feet"),
  6317. weight: math.unit(120, "lbs"),
  6318. name: "Dress",
  6319. image: {
  6320. source: "./media/characters/katherine/dress.svg",
  6321. extra: 2258/2064
  6322. }
  6323. },
  6324. },
  6325. [
  6326. {
  6327. name: "Micro",
  6328. height: math.unit(1, "inches"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Normal",
  6333. height: math.unit(5 + 2/12, "feet")
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(100, "meters")
  6338. },
  6339. {
  6340. name: "Megamacro",
  6341. height: math.unit(80, "miles")
  6342. },
  6343. ]
  6344. )
  6345. };
  6346. characterMakers["Yevis"] = () => {
  6347. return makeCharacter(
  6348. "Yevis",
  6349. "Mariokartsonicriders",
  6350. {
  6351. front: {
  6352. height: math.unit(7 + 8/12, "feet"),
  6353. weight: math.unit(250, "lbs"),
  6354. name: "Front",
  6355. image: {
  6356. source: "./media/characters/yevis/front.svg",
  6357. extra: 1938/1755
  6358. }
  6359. }
  6360. },
  6361. [
  6362. {
  6363. name: "Mortal",
  6364. height: math.unit(7 + 8/12, "feet")
  6365. },
  6366. {
  6367. name: "Battle",
  6368. height: math.unit(25 + 11/12, "feet")
  6369. },
  6370. {
  6371. name: "Wrath",
  6372. height: math.unit(1654 + 11/12, "feet")
  6373. },
  6374. {
  6375. name: "Planet Destroyer",
  6376. height: math.unit(12000, "miles")
  6377. },
  6378. {
  6379. name: "Galaxy Conqueror",
  6380. height: math.unit(1.45, "zettameters"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Universal War",
  6385. height: math.unit(184, "gigaparsecs")
  6386. },
  6387. {
  6388. name: "Eternity War",
  6389. height: math.unit(1.98e55, "yottaparsecs")
  6390. },
  6391. ]
  6392. )
  6393. };
  6394. characterMakers["Xavier"] = () => {
  6395. return makeCharacter(
  6396. "Xavier",
  6397. "zmaster587",
  6398. {
  6399. front: {
  6400. height: math.unit(5 + 8/12, "feet"),
  6401. weight: math.unit(63, "kg"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/xavier/front.svg",
  6405. extra: 944/883
  6406. }
  6407. },
  6408. frontStretch: {
  6409. height: math.unit(5 + 8/12, "feet"),
  6410. weight: math.unit(63, "kg"),
  6411. name: "Stretching",
  6412. image: {
  6413. source: "./media/characters/xavier/front-stretch.svg",
  6414. extra: 962/820
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(5 + 8/12, "feet")
  6422. },
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(100, "meters"),
  6426. default: true
  6427. },
  6428. {
  6429. name: "McLargeHuge",
  6430. height: math.unit(10, "miles")
  6431. },
  6432. ]
  6433. )
  6434. };
  6435. characterMakers["Joshii"] = () => {
  6436. return makeCharacter(
  6437. "Joshii",
  6438. "DarkieTehJester",
  6439. {
  6440. front: {
  6441. height: math.unit(5 + 5/12, "feet"),
  6442. weight: math.unit(150, "lb"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/joshii/front.svg"
  6446. }
  6447. },
  6448. foot: {
  6449. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6450. name: "Foot",
  6451. image: {
  6452. source: "./media/characters/joshii/foot.svg"
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Micro",
  6459. height: math.unit(2, "inches")
  6460. },
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(5 + 5/12, "feet"),
  6464. default: true
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(785, "feet")
  6469. },
  6470. {
  6471. name: "Megamacro",
  6472. height: math.unit(24.5, "miles")
  6473. },
  6474. ]
  6475. )
  6476. };
  6477. characterMakers["Goddess Elizabeth"] = () => {
  6478. return makeCharacter(
  6479. "Goddess Elizabeth",
  6480. "DarkieTehJester",
  6481. {
  6482. front: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(150, "lb"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/goddess-elizabeth/front.svg",
  6488. extra: 1800/1525,
  6489. bottom: 0.005
  6490. }
  6491. },
  6492. foot: {
  6493. height: math.unit(6 * 0.25436 * 1800/1525 / 2, "feet"),
  6494. name: "Foot",
  6495. image: {
  6496. source: "./media/characters/goddess-elizabeth/foot.svg"
  6497. }
  6498. },
  6499. },
  6500. [
  6501. {
  6502. name: "Micro",
  6503. height: math.unit(12, "feet")
  6504. },
  6505. {
  6506. name: "Normal",
  6507. height: math.unit(80, "miles"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Macro",
  6512. height: math.unit(15000, "parsecs")
  6513. },
  6514. ]
  6515. )
  6516. };
  6517. characterMakers["Kara"] = () => {
  6518. return makeCharacter(
  6519. "Kara",
  6520. "Vonadi",
  6521. {
  6522. front: {
  6523. height: math.unit(5 + 9/12, "feet"),
  6524. weight: math.unit(144, "lb"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/kara/front.svg"
  6528. }
  6529. },
  6530. feet: {
  6531. height: math.unit(6/6.765, "feet"),
  6532. name: "Kara's Feet",
  6533. rename: true,
  6534. image: {
  6535. source: "./media/characters/kara/feet.svg"
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(5 + 9/12, "feet")
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(174, "feet"),
  6547. default: true
  6548. },
  6549. ]
  6550. )
  6551. };
  6552. characterMakers["Tyrone"] = () => {
  6553. return makeCharacter(
  6554. "Tyrone",
  6555. "nanakisan",
  6556. {
  6557. front: {
  6558. height: math.unit(18, "feet"),
  6559. weight: math.unit(4050, "lb"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/tyrone/front.svg",
  6563. extra: 2520/2402 ,
  6564. bottom: 0.025
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(18, "feet"),
  6572. default: true
  6573. },
  6574. {
  6575. name: "Macro",
  6576. height: math.unit(300, "feet")
  6577. },
  6578. ]
  6579. )
  6580. };
  6581. characterMakers["Danny"] = () => {
  6582. return makeCharacter(
  6583. "Danny",
  6584. "danny_gryphon",
  6585. {
  6586. front: {
  6587. height: math.unit(7 + 8/12, "feet"),
  6588. weight: math.unit(120, "lb"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/danny/front.svg",
  6592. extra: 1490/1350
  6593. }
  6594. },
  6595. back: {
  6596. height: math.unit(7 + 8/12, "feet"),
  6597. weight: math.unit(120, "lb"),
  6598. name: "Back",
  6599. image: {
  6600. source: "./media/characters/danny/back.svg",
  6601. extra: 1490/1350
  6602. }
  6603. },
  6604. },
  6605. [
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(7 + 8/12, "feet"),
  6609. default: true
  6610. },
  6611. ]
  6612. )
  6613. };
  6614. characterMakers["Mallow"] = () => {
  6615. return makeCharacter(
  6616. "Mallow",
  6617. "Mallowchu",
  6618. {
  6619. front: {
  6620. height: math.unit(3.5, "inches"),
  6621. weight: math.unit(19, "grams"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/mallow/front.svg",
  6625. extra: 471/431
  6626. }
  6627. },
  6628. back: {
  6629. height: math.unit(3.5, "inches"),
  6630. weight: math.unit(19, "grams"),
  6631. name: "Back",
  6632. image: {
  6633. source: "./media/characters/mallow/back.svg",
  6634. extra: 471/431
  6635. }
  6636. },
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(3.5, "inches"),
  6642. default: true
  6643. },
  6644. ]
  6645. )
  6646. };
  6647. characterMakers["Starry Aqua"] = () => {
  6648. return makeCharacter(
  6649. "Starry Aqua",
  6650. "StarryAqua",
  6651. {
  6652. front: {
  6653. height: math.unit(9, "feet"),
  6654. weight: math.unit(230, "kg"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/starry-aqua/front.svg"
  6658. }
  6659. },
  6660. back: {
  6661. height: math.unit(9, "feet"),
  6662. weight: math.unit(230, "kg"),
  6663. name: "Back",
  6664. image: {
  6665. source: "./media/characters/starry-aqua/back.svg"
  6666. }
  6667. },
  6668. hand: {
  6669. height: math.unit(9 * 0.1168, "feet"),
  6670. name: "Hand",
  6671. image: {
  6672. source: "./media/characters/starry-aqua/hand.svg"
  6673. }
  6674. },
  6675. foot: {
  6676. height: math.unit(9 * 0.18, "feet"),
  6677. name: "Foot",
  6678. image: {
  6679. source: "./media/characters/starry-aqua/foot.svg"
  6680. }
  6681. }
  6682. },
  6683. [
  6684. {
  6685. name: "Micro",
  6686. height: math.unit(3, "inches")
  6687. },
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(9, "feet")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(300, "feet"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(3200, "feet")
  6700. }
  6701. ]
  6702. )
  6703. };
  6704. characterMakers["Luka"] = () => {
  6705. return makeCharacter(
  6706. "Luka",
  6707. "UmbraHusky",
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(230, "lb"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/luka/front.svg",
  6715. extra: 1,
  6716. bottom: 0.025
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(12 + 8/12, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Minimacro",
  6728. height: math.unit(20, "feet")
  6729. },
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(250, "feet")
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(5, "miles")
  6737. },
  6738. {
  6739. name: "Gigamacro",
  6740. height: math.unit(8000, "miles")
  6741. },
  6742. ]
  6743. )
  6744. };
  6745. characterMakers["Natalie Nightring"] = () => {
  6746. return makeCharacter(
  6747. "Natalie Nightring",
  6748. "NatEdgecomb",
  6749. {
  6750. front: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(150, "lb"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/natalie-nightring/front.svg",
  6756. extra: 1,
  6757. bottom: 0.06
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Uh Oh",
  6764. height: math.unit(0.1, "mm")
  6765. },
  6766. {
  6767. name: "Small",
  6768. height: math.unit(3, "inches")
  6769. },
  6770. {
  6771. name: "Human Scale",
  6772. height: math.unit(6, "feet")
  6773. },
  6774. {
  6775. name: "Librarian",
  6776. height: math.unit(50, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Immense",
  6781. height: math.unit(200, "miles")
  6782. },
  6783. ]
  6784. )
  6785. };
  6786. characterMakers["Danni Rosie"] = () => {
  6787. return makeCharacter(
  6788. "Danni Rosie",
  6789. "colwag",
  6790. {
  6791. front: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(180, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/danni-rosie/front.svg",
  6797. extra: 1260/1128 ,
  6798. bottom: 0.022
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Micro",
  6805. height: math.unit(2, "inches"),
  6806. default: true
  6807. },
  6808. ]
  6809. )
  6810. };
  6811. characterMakers["Samantha Kruse"] = () => {
  6812. return makeCharacter(
  6813. "Samantha Kruse",
  6814. "colwag",
  6815. {
  6816. front: {
  6817. height: math.unit(5 + 9/12, "feet"),
  6818. weight: math.unit(220, "lb"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/samantha-kruse/front.svg",
  6822. extra: (985 / 935) ,
  6823. bottom: 0.03
  6824. }
  6825. },
  6826. frontUndressed: {
  6827. height: math.unit(5 + 9/12, "feet"),
  6828. weight: math.unit(220, "lb"),
  6829. name: "Front (Undressed)",
  6830. image: {
  6831. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6832. extra: (973 / 923) ,
  6833. bottom: 0.025
  6834. }
  6835. },
  6836. fat: {
  6837. height: math.unit(5 + 9/12, "feet"),
  6838. weight: math.unit(900, "lb"),
  6839. name: "Front (Fat)",
  6840. image: {
  6841. source: "./media/characters/samantha-kruse/fat.svg",
  6842. extra: 2688/2561
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Normal",
  6849. height: math.unit(5 + 9/12, "feet"),
  6850. default: true
  6851. }
  6852. ]
  6853. )
  6854. };
  6855. characterMakers["Amelia Rosie"] = () => {
  6856. return makeCharacter(
  6857. "Amelia Rosie",
  6858. "colwag",
  6859. {
  6860. back: {
  6861. height: math.unit(5 + 4/12, "feet"),
  6862. weight: math.unit(4963, "lb"),
  6863. name: "Back",
  6864. image: {
  6865. source: "./media/characters/amelia-rosie/back.svg",
  6866. extra: 1113/963 ,
  6867. bottom: 0.01
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Level 0",
  6874. height: math.unit(5 + 4/12, "feet")
  6875. },
  6876. {
  6877. name: "Level 1",
  6878. height: math.unit(164597, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Level 2",
  6883. height: math.unit(956243, "miles")
  6884. },
  6885. {
  6886. name: "Level 3",
  6887. height: math.unit(29421709423, "miles")
  6888. },
  6889. {
  6890. name: "Level 4",
  6891. height: math.unit(154, "lightyears")
  6892. },
  6893. {
  6894. name: "Level 5",
  6895. height: math.unit(4738272, "lightyears")
  6896. },
  6897. {
  6898. name: "Level 6",
  6899. height: math.unit(145787152896, "lightyears")
  6900. },
  6901. ]
  6902. )
  6903. };
  6904. characterMakers["Rook Kitara"] = () => {
  6905. return makeCharacter(
  6906. "Rook Kitara",
  6907. "TailsHigh",
  6908. {
  6909. front: {
  6910. height: math.unit(5 + 11/12, "feet"),
  6911. weight: math.unit(65, "kg"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/rook-kitara/front.svg",
  6915. extra: 1347/1274 ,
  6916. bottom: 0.005
  6917. }
  6918. },
  6919. },
  6920. [
  6921. {
  6922. name: "Totally Unfair",
  6923. height: math.unit(1.8, "mm")
  6924. },
  6925. {
  6926. name: "Lap Rookie",
  6927. height: math.unit(1.4, "feet")
  6928. },
  6929. {
  6930. name: "Normal",
  6931. height: math.unit(5 + 11/12, "feet"),
  6932. default: true
  6933. },
  6934. {
  6935. name: "How Did This Happen",
  6936. height: math.unit(80, "miles")
  6937. }
  6938. ]
  6939. )
  6940. };
  6941. characterMakers["Pisces"] = () => {
  6942. return makeCharacter(
  6943. "Pisces",
  6944. "Pisces_Kelp",
  6945. {
  6946. front: {
  6947. height: math.unit(7, "feet"),
  6948. weight: math.unit(300, "lb"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/pisces/front.svg",
  6952. extra: 2255/2115 ,
  6953. bottom: 0.03
  6954. }
  6955. },
  6956. back: {
  6957. height: math.unit(7, "feet"),
  6958. weight: math.unit(300, "lb"),
  6959. name: "Back",
  6960. image: {
  6961. source: "./media/characters/pisces/back.svg",
  6962. extra: 2146/2055 ,
  6963. bottom: 0.04
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(7, "feet"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Swimming Pool",
  6975. height: math.unit(12.2, "meters")
  6976. },
  6977. {
  6978. name: "Olympic Swimming Pool",
  6979. height: math.unit(56.3, "meters")
  6980. },
  6981. {
  6982. name: "Lake Superior",
  6983. height: math.unit(93900, "meters")
  6984. },
  6985. {
  6986. name: "Mediterranean Sea",
  6987. height: math.unit(644457, "meters")
  6988. },
  6989. {
  6990. name: "World's Oceans",
  6991. height: math.unit(4567491, "meters")
  6992. },
  6993. ]
  6994. )
  6995. };
  6996. characterMakers["Zelas"] = () => {
  6997. return makeCharacter(
  6998. "Zelas",
  6999. "Cirez",
  7000. {
  7001. front: {
  7002. height: math.unit(2.3, "meters"),
  7003. weight: math.unit(120, "kg"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/zelas/front.svg"
  7007. }
  7008. },
  7009. side: {
  7010. height: math.unit(2.3, "meters"),
  7011. weight: math.unit(120, "kg"),
  7012. name: "Side",
  7013. image: {
  7014. source: "./media/characters/zelas/side.svg"
  7015. }
  7016. },
  7017. back: {
  7018. height: math.unit(2.3, "meters"),
  7019. weight: math.unit(120, "kg"),
  7020. name: "Back",
  7021. image: {
  7022. source: "./media/characters/zelas/back.svg"
  7023. }
  7024. },
  7025. foot: {
  7026. height: math.unit(1.116, "feet"),
  7027. name: "Foot",
  7028. image: {
  7029. source: "./media/characters/zelas/foot.svg"
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(2.3, "meters")
  7037. },
  7038. {
  7039. name: "Macro",
  7040. height: math.unit(30, "meters"),
  7041. default: true
  7042. },
  7043. ]
  7044. )
  7045. };
  7046. characterMakers["Talbot"] = () => {
  7047. return makeCharacter(
  7048. "Talbot",
  7049. "Talbot",
  7050. {
  7051. front: {
  7052. height: math.unit(1, "inch"),
  7053. weight: math.unit(0.21, "grams"),
  7054. name: "Front",
  7055. image: {
  7056. source: "./media/characters/talbot/front.svg",
  7057. extra: 594/544
  7058. }
  7059. },
  7060. },
  7061. [
  7062. {
  7063. name: "Micro",
  7064. height: math.unit(1, "inch"),
  7065. default: true
  7066. },
  7067. ]
  7068. )
  7069. };
  7070. characterMakers["Fliss"] = () => {
  7071. return makeCharacter(
  7072. "Fliss",
  7073. "Fliss",
  7074. {
  7075. front: {
  7076. height: math.unit(3 + 3/12, "feet"),
  7077. weight: math.unit(51.8, "lb"),
  7078. name: "Front",
  7079. image: {
  7080. source: "./media/characters/fliss/front.svg",
  7081. extra: 840/640
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Teeny Tiny",
  7088. height: math.unit(1, "mm")
  7089. },
  7090. {
  7091. name: "Small",
  7092. height: math.unit(1, "inch"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Standard Sylveon",
  7097. height: math.unit(3 + 3/12, "feet")
  7098. },
  7099. {
  7100. name: "Large Nuisance",
  7101. height: math.unit(33, "feet")
  7102. },
  7103. {
  7104. name: "City Filler",
  7105. height: math.unit(3000, "feet")
  7106. },
  7107. {
  7108. name: "New Horizon",
  7109. height: math.unit(6000, "miles")
  7110. },
  7111. ]
  7112. )
  7113. };
  7114. characterMakers["Fleta"] = () => {
  7115. return makeCharacter(
  7116. "Fleta",
  7117. "TheFleta",
  7118. {
  7119. front: {
  7120. height: math.unit(5, "cm"),
  7121. weight: math.unit(1.94, "g"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/fleta/front.svg",
  7125. extra: 835/803
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(5, "cm"),
  7130. weight: math.unit(1.94, "g"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/fleta/back.svg",
  7134. extra: 835/803
  7135. }
  7136. },
  7137. },
  7138. [
  7139. {
  7140. name: "Micro",
  7141. height: math.unit(5, "cm"),
  7142. default: true
  7143. },
  7144. ]
  7145. )
  7146. };
  7147. characterMakers["Dominic"] = () => {
  7148. return makeCharacter(
  7149. "Dominic",
  7150. "HypoTheDerg",
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(225, "lb"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/dominic/front.svg",
  7158. extra: 1770/1620 ,
  7159. bottom: 0.025
  7160. }
  7161. },
  7162. back: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(225, "lb"),
  7165. name: "Back",
  7166. image: {
  7167. source: "./media/characters/dominic/back.svg",
  7168. extra: 1745/1620 ,
  7169. bottom: 0.065
  7170. }
  7171. },
  7172. },
  7173. [
  7174. {
  7175. name: "Nano",
  7176. height: math.unit(0.1, "mm")
  7177. },
  7178. {
  7179. name: "Micro-",
  7180. height: math.unit(1, "mm")
  7181. },
  7182. {
  7183. name: "Micro",
  7184. height: math.unit(4, "inches")
  7185. },
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(6 + 4/12, "feet"),
  7189. default: true
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(115, "feet")
  7194. },
  7195. {
  7196. name: "Macro+",
  7197. height: math.unit(955, "feet")
  7198. },
  7199. {
  7200. name: "Megamacro",
  7201. height: math.unit(8990, "feet")
  7202. },
  7203. {
  7204. name: "Gigmacro",
  7205. height: math.unit(9310, "miles")
  7206. },
  7207. {
  7208. name: "Teramacro",
  7209. height: math.unit(1567005010, "miles")
  7210. },
  7211. {
  7212. name: "Examacro",
  7213. height: math.unit(1425, "parsecs")
  7214. },
  7215. ]
  7216. )
  7217. };
  7218. characterMakers["Major Colonel"] = () => {
  7219. return makeCharacter(
  7220. "Major Colonel",
  7221. "Major Colonel",
  7222. {
  7223. front: {
  7224. height: math.unit(400, "feet"),
  7225. weight: math.unit(44444444, "lb"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/major-colonel/front.svg"
  7229. }
  7230. },
  7231. back: {
  7232. height: math.unit(400, "feet"),
  7233. weight: math.unit(44444444, "lb"),
  7234. name: "Back",
  7235. image: {
  7236. source: "./media/characters/major-colonel/back.svg"
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Macro",
  7243. height: math.unit(400, "feet"),
  7244. default: true
  7245. },
  7246. ]
  7247. )
  7248. };
  7249. characterMakers["Axel Lycan"] = () => {
  7250. return makeCharacter(
  7251. "Axel Lycan",
  7252. "AxelLycan",
  7253. {
  7254. front: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(120, "lb"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/axel-lycan/front.svg",
  7260. extra: 1,
  7261. bottom: 0.08
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Macro",
  7268. height: math.unit(1, "km"),
  7269. default: true
  7270. },
  7271. ]
  7272. )
  7273. };
  7274. characterMakers["Vanrel (Hyena)"] = () => {
  7275. return makeCharacter(
  7276. "Vanrel (Hyena)",
  7277. "Vanrel",
  7278. {
  7279. front: {
  7280. height: math.unit(5 + 9/12, "feet"),
  7281. weight: math.unit(175, "lb"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/vanrel-hyena/front.svg",
  7285. extra: 1086/1010 ,
  7286. bottom: 0.04
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(5 + 9/12, "feet"),
  7294. default: true
  7295. },
  7296. ]
  7297. )
  7298. };
  7299. characterMakers["Abbott Absol"] = () => {
  7300. return makeCharacter(
  7301. "Abbott Absol",
  7302. "Abbott Absol",
  7303. {
  7304. front: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(103, "lb"),
  7307. name: "Front",
  7308. image: {
  7309. source: "./media/characters/abbott-absol/front.svg",
  7310. extra: 2010/1842
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Megamicro",
  7317. height: math.unit(0.1, "mm")
  7318. },
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(1, "inch")
  7322. },
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6, "feet"),
  7326. default: true
  7327. },
  7328. ]
  7329. )
  7330. };
  7331. characterMakers["Hector"] = () => {
  7332. return makeCharacter(
  7333. "Hector",
  7334. "LibragonSlvr",
  7335. {
  7336. front: {
  7337. height: math.unit(6, "feet"),
  7338. weight: math.unit(264, "lb"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/hector/front.svg",
  7342. extra: 2280/2130 ,
  7343. bottom: 0.07
  7344. }
  7345. },
  7346. },
  7347. [
  7348. {
  7349. name: "Normal",
  7350. height: math.unit(12.25, "foot"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Macro",
  7355. height: math.unit(160, "feet")
  7356. },
  7357. ]
  7358. )
  7359. };
  7360. characterMakers["Sal"] = () => {
  7361. return makeCharacter(
  7362. "Sal",
  7363. "Bigdur",
  7364. {
  7365. front: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(150, "lb"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/sal/front.svg",
  7371. extra: 1846/1699 ,
  7372. bottom: 0.04
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Megamacro",
  7379. height: math.unit(10, "miles"),
  7380. default: true
  7381. },
  7382. ]
  7383. )
  7384. };
  7385. characterMakers["Ranger"] = () => {
  7386. return makeCharacter(
  7387. "Ranger",
  7388. "Ranger",
  7389. {
  7390. front: {
  7391. height: math.unit(3, "meters"),
  7392. weight: math.unit(450, "kg"),
  7393. name: "front",
  7394. image: {
  7395. source: "./media/characters/ranger/front.svg",
  7396. extra: 2401/2243 ,
  7397. bottom: 0.05
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(3, "meters"),
  7405. default: true
  7406. },
  7407. ]
  7408. )
  7409. };
  7410. characterMakers["Theresa"] = () => {
  7411. return makeCharacter(
  7412. "Theresa",
  7413. "Ranger",
  7414. {
  7415. front: {
  7416. height: math.unit(14, "feet"),
  7417. weight: math.unit(800, "kg"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/theresa/front.svg",
  7421. extra: 3575/3346 ,
  7422. bottom: 0.03
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(14, "feet"),
  7430. default: true
  7431. },
  7432. ]
  7433. )
  7434. };
  7435. characterMakers["Ine"] = () => {
  7436. return makeCharacter(
  7437. "Ine",
  7438. "Ranger",
  7439. {
  7440. front: {
  7441. height: math.unit(6, "feet"),
  7442. weight: math.unit(3, "kg"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/ine/front.svg",
  7446. extra: 678/539 ,
  7447. bottom: 0.023
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(2.265, "feet"),
  7455. default: true
  7456. },
  7457. ]
  7458. )
  7459. };
  7460. characterMakers["Vial"] = () => {
  7461. return makeCharacter(
  7462. "Vial",
  7463. "Ranger",
  7464. {
  7465. front: {
  7466. height: math.unit(5, "feet"),
  7467. weight: math.unit(30, "kg"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/vial/front.svg",
  7471. extra: 1365/1277 ,
  7472. bottom: 0.04
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5, "feet"),
  7480. default: true
  7481. },
  7482. ]
  7483. )
  7484. };
  7485. characterMakers["Rovoska"] = () => {
  7486. return makeCharacter(
  7487. "Rovoska",
  7488. "Rovoska",
  7489. {
  7490. side: {
  7491. height: math.unit(3.4, "meters"),
  7492. weight: math.unit(1000, "lb"),
  7493. name: "Side",
  7494. image: {
  7495. source: "./media/characters/rovoska/side.svg",
  7496. extra: 4403/1515
  7497. }
  7498. },
  7499. },
  7500. [
  7501. {
  7502. name: "Normal",
  7503. height: math.unit(3.4, "meters"),
  7504. default: true
  7505. },
  7506. ]
  7507. )
  7508. };
  7509. characterMakers["Gunner Rotthbauer"] = () => {
  7510. return makeCharacter(
  7511. "Gunner Rotthbauer",
  7512. "GunnerRott",
  7513. {
  7514. front: {
  7515. height: math.unit(8, "feet"),
  7516. weight: math.unit(315, "lb"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/gunner-rotthbauer/front.svg"
  7520. }
  7521. },
  7522. back: {
  7523. height: math.unit(8, "feet"),
  7524. weight: math.unit(315, "lb"),
  7525. name: "Back",
  7526. image: {
  7527. source: "./media/characters/gunner-rotthbauer/back.svg"
  7528. }
  7529. },
  7530. },
  7531. [
  7532. {
  7533. name: "Micro",
  7534. height: math.unit(3.5, "inches")
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(8, "feet"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(250, "feet")
  7544. },
  7545. {
  7546. name: "Megamacro",
  7547. height: math.unit(1, "AU")
  7548. },
  7549. ]
  7550. )
  7551. };
  7552. characterMakers["Allatia"] = () => {
  7553. return makeCharacter(
  7554. "Allatia",
  7555. "ilikefurrystoo",
  7556. {
  7557. front: {
  7558. height: math.unit(5 + 5/12, "feet"),
  7559. weight: math.unit(140, "lb"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/allatia/front.svg",
  7563. extra: 1227/1180 ,
  7564. bottom: 0.027
  7565. }
  7566. },
  7567. },
  7568. [
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(5 + 5/12, "feet")
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(250, "feet"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Megamacro",
  7580. height: math.unit(8, "miles")
  7581. }
  7582. ]
  7583. )
  7584. };
  7585. characterMakers["Tene"] = () => {
  7586. return makeCharacter(
  7587. "Tene",
  7588. "TenebrisDrox",
  7589. {
  7590. front: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(120, "lb"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/tene/front.svg",
  7596. extra: 1728/1578 ,
  7597. bottom: 0.022
  7598. }
  7599. },
  7600. stomping: {
  7601. height: math.unit(2.025, "meters"),
  7602. weight: math.unit(120, "lb"),
  7603. name: "Stomping",
  7604. image: {
  7605. source: "./media/characters/tene/stomping.svg",
  7606. extra: 938/873 ,
  7607. bottom: 0.01
  7608. }
  7609. },
  7610. sitting: {
  7611. height: math.unit(1, "meter"),
  7612. weight: math.unit(120, "lb"),
  7613. name: "Sitting",
  7614. image: {
  7615. source: "./media/characters/tene/sitting.svg",
  7616. extra: 437/415 ,
  7617. bottom: 0.1
  7618. }
  7619. },
  7620. feral: {
  7621. height: math.unit(3.9, "feet"),
  7622. weight: math.unit(250, "lb"),
  7623. name: "Feral",
  7624. image: {
  7625. source: "./media/characters/tene/feral.svg",
  7626. extra: 717/458 ,
  7627. bottom: 0.179
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(6, "feet")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(300, "feet"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(5, "miles")
  7644. },
  7645. ]
  7646. )
  7647. };
  7648. characterMakers["Evander"] = () => {
  7649. return makeCharacter(
  7650. "Evander",
  7651. "KlezmerGryphon",
  7652. {
  7653. side: {
  7654. height: math.unit(6, "feet"),
  7655. name: "Side",
  7656. image: {
  7657. source: "./media/characters/evander/side.svg",
  7658. extra: 877/477
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(0.83, "meters"),
  7666. default: true
  7667. },
  7668. ]
  7669. )
  7670. };
  7671. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7672. return makeCharacter(
  7673. "Ka'Tamra \"Spaz\" Ci'Karan",
  7674. "Spazman",
  7675. {
  7676. front: {
  7677. height: math.unit(12, "feet"),
  7678. weight: math.unit(1000, "lb"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7682. extra: 1762/1611
  7683. }
  7684. },
  7685. back: {
  7686. height: math.unit(12, "feet"),
  7687. weight: math.unit(1000, "lb"),
  7688. name: "Back",
  7689. image: {
  7690. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7691. extra: 1762/1611
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(12, "feet"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Kaiju",
  7703. height: math.unit(150, "feet")
  7704. },
  7705. ]
  7706. )
  7707. };
  7708. characterMakers["Zero Alurus"] = () => {
  7709. return makeCharacter(
  7710. "Zero Alurus",
  7711. "",
  7712. {
  7713. front: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(150, "lb"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/zero-alurus/front.svg"
  7719. }
  7720. },
  7721. back: {
  7722. height: math.unit(6, "feet"),
  7723. weight: math.unit(150, "lb"),
  7724. name: "Back",
  7725. image: {
  7726. source: "./media/characters/zero-alurus/back.svg"
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 10/12, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(60, "feet"),
  7738. default: true
  7739. },
  7740. {
  7741. name: "Macro+",
  7742. height: math.unit(450, "feet")
  7743. },
  7744. ]
  7745. )
  7746. };
  7747. characterMakers["Mega Shi"] = () => {
  7748. return makeCharacter(
  7749. "Mega Shi",
  7750. "MShi8027",
  7751. {
  7752. front: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(200, "lb"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/mega-shi/front.svg",
  7758. extra: 1279/1250 ,
  7759. bottom: 0.02
  7760. }
  7761. },
  7762. back: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(200, "lb"),
  7765. name: "Back",
  7766. image: {
  7767. source: "./media/characters/mega-shi/back.svg",
  7768. extra: 1279/1250 ,
  7769. bottom: 0.02
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(16 + 6/12, "feet")
  7777. },
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(660, "feet"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(10, "miles")
  7786. },
  7787. {
  7788. name: "Planetary Launch",
  7789. height: math.unit(500, "miles")
  7790. },
  7791. {
  7792. name: "Interstellar",
  7793. height: math.unit(1e9, "miles")
  7794. },
  7795. {
  7796. name: "Leaving the Universe",
  7797. height: math.unit(1, "gigaparsec")
  7798. },
  7799. {
  7800. name: "Travelling Universes",
  7801. height: math.unit(30e15, "parsecs")
  7802. },
  7803. ]
  7804. )
  7805. };
  7806. characterMakers["Odyssey"] = () => {
  7807. return makeCharacter(
  7808. "Odyssey",
  7809. "Freschlauhs",
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(150, "lb"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/odyssey/front.svg",
  7817. extra: 1782/1582 ,
  7818. bottom: 0.01
  7819. }
  7820. },
  7821. side: {
  7822. height: math.unit(5.6, "feet"),
  7823. weight: math.unit(140, "lb"),
  7824. name: "Side",
  7825. image: {
  7826. source: "./media/characters/odyssey/side.svg",
  7827. extra: 6462/5700
  7828. }
  7829. },
  7830. },
  7831. [
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(5 + 4/12, "feet")
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(1, "km")
  7839. },
  7840. {
  7841. name: "Megamacro",
  7842. height: math.unit(3000, "km")
  7843. },
  7844. {
  7845. name: "Gigamacro",
  7846. height: math.unit(1, "AU"),
  7847. default: true
  7848. },
  7849. {
  7850. name: "Omniversal",
  7851. height: math.unit(100e14, "lightyears")
  7852. },
  7853. ]
  7854. )
  7855. };
  7856. characterMakers["Mekuto"] = () => {
  7857. return makeCharacter(
  7858. "Mekuto",
  7859. "Mekuto",
  7860. {
  7861. front: {
  7862. height: math.unit(6, "feet"),
  7863. weight: math.unit(300, "lb"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/mekuto/front.svg",
  7867. extra: 921/832 ,
  7868. bottom: 0.03
  7869. }
  7870. },
  7871. hand: {
  7872. height: math.unit(6/10.24, "feet"),
  7873. name: "Hand",
  7874. image: {
  7875. source: "./media/characters/mekuto/hand.svg"
  7876. }
  7877. },
  7878. foot: {
  7879. height: math.unit(6/5.05, "feet"),
  7880. name: "Foot",
  7881. image: {
  7882. source: "./media/characters/mekuto/foot.svg"
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Minimicro",
  7889. height: math.unit(0.2, "inches")
  7890. },
  7891. {
  7892. name: "Micro",
  7893. height: math.unit(1.5, "inches")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(5 + 11/12, "feet"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Minimacro",
  7902. height: math.unit(17 + 9/12, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(177.5, "feet")
  7907. },
  7908. {
  7909. name: "Megamacro",
  7910. height: math.unit(152, "miles")
  7911. },
  7912. ]
  7913. )
  7914. };
  7915. characterMakers["Dafydd Tomos"] = () => {
  7916. return makeCharacter(
  7917. "Dafydd Tomos",
  7918. "SolarfoxArt",
  7919. {
  7920. front: {
  7921. height: math.unit(6.5, "inches"),
  7922. weight: math.unit(13, "oz"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/dafydd-tomos/front.svg",
  7926. extra: 2990/2603 ,
  7927. bottom: 0.03
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(6.5, "inches"),
  7935. default: true
  7936. },
  7937. ]
  7938. )
  7939. };
  7940. characterMakers["Splinter"] = () => {
  7941. return makeCharacter(
  7942. "Splinter",
  7943. "SirSplinter",
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(150, "lb"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/splinter/front.svg",
  7951. extra: 2990/2882 ,
  7952. bottom: 0.04
  7953. }
  7954. },
  7955. back: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(150, "lb"),
  7958. name: "Back",
  7959. image: {
  7960. source: "./media/characters/splinter/back.svg",
  7961. extra: 2990/2882 ,
  7962. bottom: 0.04
  7963. }
  7964. },
  7965. },
  7966. [
  7967. {
  7968. name: "Normal",
  7969. height: math.unit(6, "feet")
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(230, "meters"),
  7974. default: true
  7975. },
  7976. ]
  7977. )
  7978. };
  7979. characterMakers["SnowGabumon"] = () => {
  7980. return makeCharacter(
  7981. "SnowGabumon",
  7982. "SnowGabumon",
  7983. {
  7984. front: {
  7985. height: math.unit(4 + 10/12, "feet"),
  7986. weight: math.unit(480, "lb"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/snow-gabumon/front.svg",
  7990. extra: 1140/963 ,
  7991. bottom: 0.058
  7992. }
  7993. },
  7994. back: {
  7995. height: math.unit(4 + 10/12, "feet"),
  7996. weight: math.unit(480, "lb"),
  7997. name: "Back",
  7998. image: {
  7999. source: "./media/characters/snow-gabumon/back.svg",
  8000. extra: 1115/962 ,
  8001. bottom: 0.041
  8002. }
  8003. },
  8004. frontUndresed: {
  8005. height: math.unit(4 + 10/12, "feet"),
  8006. weight: math.unit(480, "lb"),
  8007. name: "Front (Undressed)",
  8008. image: {
  8009. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8010. extra: 1061/960 ,
  8011. bottom: 0.045
  8012. }
  8013. },
  8014. },
  8015. [
  8016. {
  8017. name: "Micro",
  8018. height: math.unit(1, "inch")
  8019. },
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(4 + 10/12, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(200, "feet")
  8028. },
  8029. {
  8030. name: "Megamacro",
  8031. height: math.unit(120, "miles")
  8032. },
  8033. {
  8034. name: "Gigamacro",
  8035. height: math.unit(9800, "miles")
  8036. },
  8037. ]
  8038. )
  8039. };
  8040. characterMakers["Moody"] = () => {
  8041. return makeCharacter(
  8042. "Moody",
  8043. "MoodysterDog",
  8044. {
  8045. front: {
  8046. height: math.unit(1.7, "meters"),
  8047. weight: math.unit(140, "lb"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/moody/front.svg",
  8051. extra: 3226/3007 ,
  8052. bottom: 0.087
  8053. }
  8054. },
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(1, "mm")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(1.7, "meters"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(80, "meters")
  8069. },
  8070. {
  8071. name: "Macro+",
  8072. height: math.unit(500, "meters")
  8073. },
  8074. ]
  8075. )
  8076. };
  8077. characterMakers["Zyas"] = () => {
  8078. return makeCharacter(
  8079. "Zyas",
  8080. "Delathar",
  8081. {
  8082. front: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(150, "lb"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/zyas/front.svg",
  8088. extra: 1180/1120 ,
  8089. bottom: 0.045
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(10, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(500, "feet")
  8102. },
  8103. {
  8104. name: "Megamacro",
  8105. height: math.unit(5, "miles")
  8106. },
  8107. {
  8108. name: "Teramacro",
  8109. height: math.unit(150000, "miles")
  8110. },
  8111. ]
  8112. )
  8113. };
  8114. characterMakers["Cuon"] = () => {
  8115. return makeCharacter(
  8116. "Cuon",
  8117. "CollieCuon",
  8118. {
  8119. front: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(150, "lb"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/cuon/front.svg",
  8125. extra: 1390/1320 ,
  8126. bottom: 0.008
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Micro",
  8133. height: math.unit(3, "inches")
  8134. },
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(18 + 9/12, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(360, "feet")
  8143. },
  8144. {
  8145. name: "Megamacro",
  8146. height: math.unit(360, "miles")
  8147. },
  8148. ]
  8149. )
  8150. };
  8151. characterMakers["Nyanuxk"] = () => {
  8152. return makeCharacter(
  8153. "Nyanuxk",
  8154. "Nyanuxk",
  8155. {
  8156. front: {
  8157. height: math.unit(2.4, "meters"),
  8158. weight: math.unit(70, "kg"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/nyanuxk/front.svg",
  8162. extra: 1172/1084 ,
  8163. bottom: 0.065
  8164. }
  8165. },
  8166. side: {
  8167. height: math.unit(2.4, "meters"),
  8168. weight: math.unit(70, "kg"),
  8169. name: "Side",
  8170. image: {
  8171. source: "./media/characters/nyanuxk/side.svg",
  8172. extra: 1190/1132 ,
  8173. bottom: 0.007
  8174. }
  8175. },
  8176. back: {
  8177. height: math.unit(2.4, "meters"),
  8178. weight: math.unit(70, "kg"),
  8179. name: "Back",
  8180. image: {
  8181. source: "./media/characters/nyanuxk/back.svg",
  8182. extra: 1200/1141 ,
  8183. bottom: 0.015
  8184. }
  8185. },
  8186. foot: {
  8187. height: math.unit(0.52, "meters"),
  8188. name: "Foot",
  8189. image: {
  8190. source: "./media/characters/nyanuxk/foot.svg"
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Micro",
  8197. height: math.unit(2, "cm")
  8198. },
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(2.4, "meters"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Smaller Macro",
  8206. height: math.unit(120, "meters")
  8207. },
  8208. {
  8209. name: "Bigger Macro",
  8210. height: math.unit(1.2, "km")
  8211. },
  8212. {
  8213. name: "Megamacro",
  8214. height: math.unit(15, "kilometers")
  8215. },
  8216. {
  8217. name: "Gigamacro",
  8218. height: math.unit(2000, "km")
  8219. },
  8220. {
  8221. name: "Teramacro",
  8222. height: math.unit(500000, "km")
  8223. },
  8224. ]
  8225. )
  8226. };
  8227. characterMakers["Ailbhe"] = () => {
  8228. return makeCharacter(
  8229. "Ailbhe",
  8230. "KlezmerGryphon",
  8231. {
  8232. side: {
  8233. height: math.unit(6, "feet"),
  8234. name: "Side",
  8235. image: {
  8236. source: "./media/characters/ailbhe/side.svg",
  8237. extra: 757/464 ,
  8238. bottom: 0.041
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(1.07, "meters"),
  8246. default: true
  8247. },
  8248. ]
  8249. )
  8250. };
  8251. characterMakers["Zevulfius"] = () => {
  8252. return makeCharacter(
  8253. "Zevulfius",
  8254. "Nyanuxk",
  8255. {
  8256. front: {
  8257. height: math.unit(6, "feet"),
  8258. weight: math.unit(120, "kg"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/zevulfius/front.svg",
  8262. extra: 965/903
  8263. }
  8264. },
  8265. side: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(120, "kg"),
  8268. name: "Side",
  8269. image: {
  8270. source: "./media/characters/zevulfius/side.svg",
  8271. extra: 939/900
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(6, "feet"),
  8276. weight: math.unit(120, "kg"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/zevulfius/back.svg",
  8280. extra: 918/854 ,
  8281. bottom: 0.005
  8282. }
  8283. },
  8284. foot: {
  8285. height: math.unit(6/3.72, "feet"),
  8286. name: "Foot",
  8287. image: {
  8288. source: "./media/characters/zevulfius/foot.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(750, "meters")
  8296. },
  8297. {
  8298. name: "Megamacro",
  8299. height: math.unit(20, "km"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Gigamacro",
  8304. height: math.unit(2000, "km")
  8305. },
  8306. {
  8307. name: "Teramacro",
  8308. height: math.unit(250000, "km")
  8309. },
  8310. ]
  8311. )
  8312. };
  8313. characterMakers["Rikes"] = () => {
  8314. return makeCharacter(
  8315. "Rikes",
  8316. "VeryLargeDog",
  8317. {
  8318. front: {
  8319. height: math.unit(100, "feet"),
  8320. weight: math.unit(350, "kg"),
  8321. name: "Front",
  8322. image: {
  8323. source: "./media/characters/rikes/front.svg",
  8324. extra: 1565/1483 ,
  8325. bottom: 0.017
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(100, "feet"),
  8333. default: true
  8334. },
  8335. ]
  8336. )
  8337. };
  8338. characterMakers["Adam Silver-Mane"] = () => {
  8339. return makeCharacter(
  8340. "Adam Silver-Mane",
  8341. "Dragonknightadam",
  8342. {
  8343. anthro: {
  8344. height: math.unit(8, "feet"),
  8345. weight: math.unit(120, "kg"),
  8346. name: "Anthro",
  8347. image: {
  8348. source: "./media/characters/adam-silver-mane/anthro.svg",
  8349. extra: 5743/5339 ,
  8350. bottom: 0.07
  8351. }
  8352. },
  8353. taur: {
  8354. height: math.unit(16, "feet"),
  8355. weight: math.unit(1500, "kg"),
  8356. name: "Taur",
  8357. image: {
  8358. source: "./media/characters/adam-silver-mane/taur.svg",
  8359. extra: 1713/1571 ,
  8360. bottom: 0.01
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(8, "feet")
  8368. },
  8369. {
  8370. name: "Minimacro",
  8371. height: math.unit(80, "feet")
  8372. },
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(800, "feet"),
  8376. default: true
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(8000, "feet")
  8381. },
  8382. {
  8383. name: "Gigamacro",
  8384. height: math.unit(800, "miles")
  8385. },
  8386. {
  8387. name: "Teramacro",
  8388. height: math.unit(80000, "miles")
  8389. },
  8390. {
  8391. name: "Celestial",
  8392. height: math.unit(8e6, "miles")
  8393. },
  8394. {
  8395. name: "Star Dragon",
  8396. height: math.unit(800000, "parsecs")
  8397. },
  8398. {
  8399. name: "Godly",
  8400. height: math.unit(800, "teraparsecs")
  8401. },
  8402. ]
  8403. )
  8404. };
  8405. characterMakers["Ky'owin"] = () => {
  8406. return makeCharacter(
  8407. "Ky'owin",
  8408. "Kyowin",
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(150, "lb"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/ky'owin/front.svg",
  8416. extra: 3888/3068 ,
  8417. bottom: 0.015
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(6 + 8/12, "feet")
  8425. },
  8426. {
  8427. name: "Large",
  8428. height: math.unit(68, "feet")
  8429. },
  8430. {
  8431. name: "Macro",
  8432. height: math.unit(132, "feet")
  8433. },
  8434. {
  8435. name: "Macro+",
  8436. height: math.unit(340, "feet")
  8437. },
  8438. {
  8439. name: "Macro++",
  8440. height: math.unit(680, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Megamacro",
  8445. height: math.unit(1, "mile")
  8446. },
  8447. {
  8448. name: "Megamacro+",
  8449. height: math.unit(10, "miles")
  8450. },
  8451. ]
  8452. )
  8453. };
  8454. characterMakers["Mal"] = () => {
  8455. return makeCharacter(
  8456. "Mal",
  8457. "agrosarmadillo",
  8458. {
  8459. front: {
  8460. height: math.unit(4, "feet"),
  8461. weight: math.unit(50, "lb"),
  8462. name: "Front",
  8463. image: {
  8464. source: "./media/characters/mal/front.svg",
  8465. extra: 785/724 ,
  8466. bottom: 0.07
  8467. }
  8468. },
  8469. },
  8470. [
  8471. {
  8472. name: "Micro",
  8473. height: math.unit(4, "inches")
  8474. },
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(4, "feet"),
  8478. default: true
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(200, "feet")
  8483. },
  8484. ]
  8485. )
  8486. };
  8487. characterMakers["Jordan Deware"] = () => {
  8488. return makeCharacter(
  8489. "Jordan Deware",
  8490. "JordanDeware",
  8491. {
  8492. front: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(150, "lb"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/jordan-deware/front.svg",
  8498. extra: 1191/1012
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Nano",
  8505. height: math.unit(0.01, "mm")
  8506. },
  8507. {
  8508. name: "Minimicro",
  8509. height: math.unit(1, "mm")
  8510. },
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(0.5, "inches")
  8514. },
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(4, "feet"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Minimacro",
  8522. height: math.unit(40, "meters")
  8523. },
  8524. {
  8525. name: "Small Macro",
  8526. height: math.unit(400, "meters")
  8527. },
  8528. {
  8529. name: "Macro",
  8530. height: math.unit(4, "miles")
  8531. },
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(40, "miles")
  8535. },
  8536. {
  8537. name: "Megamacro+",
  8538. height: math.unit(400, "miles")
  8539. },
  8540. {
  8541. name: "Gigamacro",
  8542. height: math.unit(400000, "miles")
  8543. },
  8544. ]
  8545. )
  8546. };
  8547. characterMakers["Kimiko"] = () => {
  8548. return makeCharacter(
  8549. "Kimiko",
  8550. "HypoTheDerg",
  8551. {
  8552. side: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(150, "lb"),
  8555. name: "Side",
  8556. image: {
  8557. source: "./media/characters/kimiko/side.svg",
  8558. extra: 600/358
  8559. }
  8560. },
  8561. },
  8562. [
  8563. {
  8564. name: "Normal",
  8565. height: math.unit(15, "feet"),
  8566. default: true
  8567. },
  8568. {
  8569. name: "Macro",
  8570. height: math.unit(220, "feet")
  8571. },
  8572. {
  8573. name: "Macro+",
  8574. height: math.unit(1450, "feet")
  8575. },
  8576. {
  8577. name: "Megamacro",
  8578. height: math.unit(11500, "feet")
  8579. },
  8580. {
  8581. name: "Gigamacro",
  8582. height: math.unit(9500, "miles")
  8583. },
  8584. {
  8585. name: "Teramacro",
  8586. height: math.unit(2208005005, "miles")
  8587. },
  8588. {
  8589. name: "Examacro",
  8590. height: math.unit(2750, "parsecs")
  8591. },
  8592. {
  8593. name: "Zettamacro",
  8594. height: math.unit(101500, "parsecs")
  8595. },
  8596. ]
  8597. )
  8598. };
  8599. characterMakers["Andrew Sleepy"] = () => {
  8600. return makeCharacter(
  8601. "Andrew Sleepy",
  8602. "Proky",
  8603. {
  8604. front: {
  8605. height: math.unit(6, "feet"),
  8606. weight: math.unit(70, "kg"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/andrew-sleepy/front.svg"
  8610. }
  8611. },
  8612. side: {
  8613. height: math.unit(6, "feet"),
  8614. weight: math.unit(70, "kg"),
  8615. name: "Side",
  8616. image: {
  8617. source: "./media/characters/andrew-sleepy/side.svg"
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Micro",
  8624. height: math.unit(1, "mm"),
  8625. default: true
  8626. },
  8627. ]
  8628. )
  8629. };
  8630. characterMakers["Judio"] = () => {
  8631. return makeCharacter(
  8632. "Judio",
  8633. "HypoTheDerg",
  8634. {
  8635. front: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(150, "lb"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/judio/front.svg",
  8641. extra: 1258/1110
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Normal",
  8648. height: math.unit(5 + 6/12, "feet")
  8649. },
  8650. {
  8651. name: "Macro",
  8652. height: math.unit(1000, "feet"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Megamacro",
  8657. height: math.unit(10, "miles")
  8658. },
  8659. ]
  8660. )
  8661. };
  8662. characterMakers["Nomaxice"] = () => {
  8663. return makeCharacter(
  8664. "Nomaxice",
  8665. "Nomaxice",
  8666. {
  8667. front: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(68, "kg"),
  8670. name: "Front",
  8671. image: {
  8672. source: "./media/characters/nomaxice/front.svg",
  8673. extra: 1498/1073 ,
  8674. bottom: 0.075
  8675. }
  8676. },
  8677. foot: {
  8678. height: math.unit(1.1, "feet"),
  8679. name: "Foot",
  8680. image: {
  8681. source: "./media/characters/nomaxice/foot.svg"
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Micro",
  8688. height: math.unit(8, "cm")
  8689. },
  8690. {
  8691. name: "Norm",
  8692. height: math.unit(1.82, "m")
  8693. },
  8694. {
  8695. name: "Norm+",
  8696. height: math.unit(8.8, "feet")
  8697. },
  8698. {
  8699. name: "Big",
  8700. height: math.unit(8, "meters"),
  8701. default: true
  8702. },
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(18, "meters")
  8706. },
  8707. {
  8708. name: "Macro+",
  8709. height: math.unit(88, "meters")
  8710. },
  8711. ]
  8712. )
  8713. };
  8714. characterMakers["Dydros"] = () => {
  8715. return makeCharacter(
  8716. "Dydros",
  8717. "DatCyberDragon",
  8718. {
  8719. front: {
  8720. height: math.unit(12, "feet"),
  8721. weight: math.unit(1.5, "tons"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/dydros/front.svg",
  8725. extra: 863/800 ,
  8726. bottom: 0.015
  8727. }
  8728. },
  8729. back: {
  8730. height: math.unit(12, "feet"),
  8731. weight: math.unit(1.5, "tons"),
  8732. name: "Back",
  8733. image: {
  8734. source: "./media/characters/dydros/back.svg",
  8735. extra: 900/843 ,
  8736. bottom: 0.005
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(12, "feet"),
  8744. default: true
  8745. },
  8746. ]
  8747. )
  8748. };
  8749. characterMakers["Riggi"] = () => {
  8750. return makeCharacter(
  8751. "Riggi",
  8752. "Fyre_ace",
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(100, "kg"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/riggi/front.svg",
  8760. extra: 5787/5303
  8761. }
  8762. },
  8763. hyper: {
  8764. height: math.unit(6*5/3, "feet"),
  8765. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8766. name: "Hyper",
  8767. image: {
  8768. source: "./media/characters/riggi/hyper.svg",
  8769. extra: 3595/3485
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Small Macro",
  8776. height: math.unit(50, "feet")
  8777. },
  8778. {
  8779. name: "Default",
  8780. height: math.unit(200, "feet"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Loom",
  8785. height: math.unit(10000, "feet")
  8786. },
  8787. {
  8788. name: "Cruising Altitude",
  8789. height: math.unit(30000, "feet")
  8790. },
  8791. {
  8792. name: "Megamacro",
  8793. height: math.unit(100, "miles")
  8794. },
  8795. {
  8796. name: "Continent Sized",
  8797. height: math.unit(2800, "miles")
  8798. },
  8799. {
  8800. name: "Earth Sized",
  8801. height: math.unit(8000, "miles")
  8802. },
  8803. ]
  8804. )
  8805. };
  8806. characterMakers["Alexi"] = () => {
  8807. return makeCharacter(
  8808. "Alexi",
  8809. "AlexiWerewolf",
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(250, "lb"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/alexi/front.svg",
  8817. extra: 3483/3291 ,
  8818. bottom: 0.04
  8819. }
  8820. },
  8821. back: {
  8822. height: math.unit(6, "feet"),
  8823. weight: math.unit(250, "lb"),
  8824. name: "Back",
  8825. image: {
  8826. source: "./media/characters/alexi/back.svg",
  8827. extra: 3533/3356 ,
  8828. bottom: 0.021
  8829. }
  8830. },
  8831. frontTransformed: {
  8832. height: math.unit(12.5, "feet"),
  8833. weight: math.unit(4000, "lb"),
  8834. name: "Front (Transformed)",
  8835. image: {
  8836. source: "./media/characters/alexi/front-transformed.svg",
  8837. extra: 5345/5100 ,
  8838. bottom: 0.03
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Normal",
  8845. height: math.unit(3, "meters"),
  8846. default: true
  8847. },
  8848. {
  8849. name: "Minimacro",
  8850. height: math.unit(30, "meters")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(500, "meters")
  8855. },
  8856. {
  8857. name: "Megamacro",
  8858. height: math.unit(9000, "km")
  8859. },
  8860. {
  8861. name: "Teramacro",
  8862. height: math.unit(384000, "km")
  8863. },
  8864. ]
  8865. )
  8866. };
  8867. characterMakers["Kayroo"] = () => {
  8868. return makeCharacter(
  8869. "Kayroo",
  8870. "Kayroo",
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(150, "lb"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/kayroo/front.svg",
  8878. extra: 1153/1038 ,
  8879. bottom: 0.06
  8880. }
  8881. },
  8882. foot: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(150, "lb"),
  8885. name: "Foot",
  8886. image: {
  8887. source: "./media/characters/kayroo/foot.svg"
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(8, "feet"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Minimacro",
  8899. height: math.unit(250, "feet")
  8900. },
  8901. {
  8902. name: "Macro",
  8903. height: math.unit(2800, "feet")
  8904. },
  8905. {
  8906. name: "Megamacro",
  8907. height: math.unit(5200, "feet")
  8908. },
  8909. {
  8910. name: "Gigamacro",
  8911. height: math.unit(27000, "feet")
  8912. },
  8913. {
  8914. name: "Omega",
  8915. height: math.unit(45000, "feet")
  8916. },
  8917. ]
  8918. )
  8919. };
  8920. characterMakers["Rhys"] = () => {
  8921. return makeCharacter(
  8922. "Rhys",
  8923. "BigMountainCat",
  8924. {
  8925. front: {
  8926. height: math.unit(18, "feet"),
  8927. weight: math.unit(5800, "lb"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/rhys/front.svg",
  8931. extra: 3386/3090 ,
  8932. bottom: 0.07
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(18, "feet"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Working Size",
  8944. height: math.unit(200, "feet")
  8945. },
  8946. {
  8947. name: "Demolition Size",
  8948. height: math.unit(2000, "feet")
  8949. },
  8950. {
  8951. name: "Maximum Licensed Size",
  8952. height: math.unit(5, "miles")
  8953. },
  8954. {
  8955. name: "Maximum Observed Size",
  8956. height: math.unit(10, "yottameters")
  8957. },
  8958. ]
  8959. )
  8960. };
  8961. characterMakers["Toto"] = () => {
  8962. return makeCharacter(
  8963. "Toto",
  8964. "Totoly_Toto",
  8965. {
  8966. front: {
  8967. height: math.unit(6, "feet"),
  8968. weight: math.unit(250, "lb"),
  8969. name: "Front",
  8970. image: {
  8971. source: "./media/characters/toto/front.svg",
  8972. extra: 527 / 479,
  8973. bottom: 0.05
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Micro",
  8980. height: math.unit(3, "feet")
  8981. },
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(10, "feet")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(150, "feet"),
  8989. default: true
  8990. },
  8991. {
  8992. name: "Megamacro",
  8993. height: math.unit(1200, "feet")
  8994. },
  8995. ]
  8996. )
  8997. };
  8998. characterMakers["King"] = () => {
  8999. return makeCharacter(
  9000. "King",
  9001. "KingSizedLion",
  9002. {
  9003. back: {
  9004. height: math.unit(6, "feet"),
  9005. weight: math.unit(150, "lb"),
  9006. name: "Back",
  9007. image: {
  9008. source: "./media/characters/king/back.svg"
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Micro",
  9015. height: math.unit(2, "inches")
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(8, "feet")
  9020. },
  9021. {
  9022. name: "Macro",
  9023. height: math.unit(200, "feet"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Megamacro",
  9028. height: math.unit(50, "miles")
  9029. },
  9030. ]
  9031. )
  9032. };
  9033. characterMakers["Cordite"] = () => {
  9034. return makeCharacter(
  9035. "Cordite",
  9036. "photonman2",
  9037. {
  9038. anthro: {
  9039. height: math.unit(6 + 5/12, "feet"),
  9040. weight: math.unit(280, "lb"),
  9041. name: "Anthro",
  9042. image: {
  9043. source: "./media/characters/cordite/anthro.svg",
  9044. extra: 1986/1905 ,
  9045. bottom: 0.025
  9046. }
  9047. },
  9048. feral: {
  9049. height: math.unit(2, "feet"),
  9050. weight: math.unit(90, "lb"),
  9051. name: "Feral",
  9052. image: {
  9053. source: "./media/characters/cordite/feral.svg",
  9054. extra: 1260/755 ,
  9055. bottom: 0.05
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(6 + 5/12, "feet"),
  9063. default: true
  9064. },
  9065. ]
  9066. )
  9067. };
  9068. characterMakers["Pianostrong"] = () => {
  9069. return makeCharacter(
  9070. "Pianostrong",
  9071. "Pianostrong",
  9072. {
  9073. front: {
  9074. height: math.unit(6, "feet"),
  9075. weight: math.unit(150, "lb"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/pianostrong/front.svg",
  9079. extra: 6577/6254 ,
  9080. bottom: 0.02
  9081. }
  9082. },
  9083. side: {
  9084. height: math.unit(6, "feet"),
  9085. weight: math.unit(150, "lb"),
  9086. name: "Side",
  9087. image: {
  9088. source: "./media/characters/pianostrong/side.svg",
  9089. extra: 6106/5730
  9090. }
  9091. },
  9092. back: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(150, "lb"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/pianostrong/back.svg",
  9098. extra: 6085/5733 ,
  9099. bottom: 0.01
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(100, "feet")
  9107. },
  9108. {
  9109. name: "Macro+",
  9110. height: math.unit(300, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Macro++",
  9115. height: math.unit(1000, "feet")
  9116. },
  9117. ]
  9118. )
  9119. };
  9120. characterMakers["Kona"] = () => {
  9121. return makeCharacter(
  9122. "Kona",
  9123. "Konadh",
  9124. {
  9125. front: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(150, "lb"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/kona/front.svg",
  9131. extra: 2960/2629 ,
  9132. bottom: 0.005
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(11 + 8/12, "feet")
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(850, "feet"),
  9144. default: true
  9145. },
  9146. {
  9147. name: "Macro+",
  9148. height: math.unit(1.5, "km"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Megamacro",
  9153. height: math.unit(80, "miles")
  9154. },
  9155. {
  9156. name: "Gigamacro",
  9157. height: math.unit(3500, "miles")
  9158. },
  9159. ]
  9160. )
  9161. };
  9162. characterMakers["Levi"] = () => {
  9163. return makeCharacter(
  9164. "Levi",
  9165. "LeviCurrie",
  9166. {
  9167. side: {
  9168. height: math.unit(1.9, "meters"),
  9169. weight: math.unit(326, "kg"),
  9170. name: "Side",
  9171. image: {
  9172. source: "./media/characters/levi/side.svg",
  9173. extra: 1704/1334 ,
  9174. bottom: 0.02
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(1.9, "meters"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Macro",
  9186. height: math.unit(20, "meters")
  9187. },
  9188. {
  9189. name: "Macro+",
  9190. height: math.unit(200, "meters")
  9191. },
  9192. {
  9193. name: "Megamacro",
  9194. height: math.unit(2, "km")
  9195. },
  9196. {
  9197. name: "Megamacro+",
  9198. height: math.unit(20, "km")
  9199. },
  9200. {
  9201. name: "Gigamacro",
  9202. height: math.unit(2500, "km")
  9203. },
  9204. {
  9205. name: "Gigamacro+",
  9206. height: math.unit(120000, "km")
  9207. },
  9208. {
  9209. name: "Teramacro",
  9210. height: math.unit(7.77e6, "km")
  9211. },
  9212. ]
  9213. )
  9214. };
  9215. characterMakers["BMC"] = () => {
  9216. return makeCharacter(
  9217. "BMC",
  9218. "BigMountainCat",
  9219. {
  9220. front: {
  9221. height: math.unit(6 + 4/12, "feet"),
  9222. weight: math.unit(188, "lb"),
  9223. name: "Front",
  9224. image: {
  9225. source: "./media/characters/bmc/front.svg",
  9226. extra: 1067/1022 ,
  9227. bottom: 0.047
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Human-sized",
  9234. height: math.unit(6 + 4/12, "feet")
  9235. },
  9236. {
  9237. name: "Small",
  9238. height: math.unit(250, "feet")
  9239. },
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(1250, "feet"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Good Day",
  9247. height: math.unit(88, "miles")
  9248. },
  9249. {
  9250. name: "Largest Measured Size",
  9251. height: math.unit(11.2e6, "lightyears")
  9252. },
  9253. ]
  9254. )
  9255. };
  9256. characterMakers["Sven the Kaiju"] = () => {
  9257. return makeCharacter(
  9258. "Sven the Kaiju",
  9259. "OfActionMan",
  9260. {
  9261. front: {
  9262. height: math.unit(20, "feet"),
  9263. weight: math.unit(2016, "kg"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/sven-the-kaiju/front.svg",
  9267. extra: 1479/1449 ,
  9268. bottom: 0.05
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Fairy",
  9275. height: math.unit(6, "inches")
  9276. },
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(20, "feet"),
  9280. default: true
  9281. },
  9282. {
  9283. name: "Rampage",
  9284. height: math.unit(200, "feet")
  9285. },
  9286. {
  9287. name: "Archfey Forest Guardian",
  9288. height: math.unit(1, "mile")
  9289. },
  9290. ]
  9291. )
  9292. };
  9293. characterMakers["Marik"] = () => {
  9294. return makeCharacter(
  9295. "Marik",
  9296. "Acrarun",
  9297. {
  9298. front: {
  9299. height: math.unit(4, "meters"),
  9300. weight: math.unit(2, "tons"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/marik/front.svg",
  9304. extra: 1057/1003 ,
  9305. bottom: 0.08
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(4, "meters"),
  9313. default: true
  9314. },
  9315. {
  9316. name: "Macro",
  9317. height: math.unit(20, "meters")
  9318. },
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(50, "km")
  9322. },
  9323. {
  9324. name: "Gigamacro",
  9325. height: math.unit(100, "km")
  9326. },
  9327. {
  9328. name: "Alpha Macro",
  9329. height: math.unit(7.88e7, "yottameters")
  9330. },
  9331. ]
  9332. )
  9333. };
  9334. characterMakers["Mel"] = () => {
  9335. return makeCharacter(
  9336. "Mel",
  9337. "SomedayNotSoon",
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(110, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/mel/front.svg",
  9345. extra: 736/617 ,
  9346. bottom: 0.017
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Pico",
  9353. height: math.unit(3, "pm")
  9354. },
  9355. {
  9356. name: "Nano",
  9357. height: math.unit(3, "nm")
  9358. },
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(0.3, "mm"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Micro+",
  9366. height: math.unit(3, "mm")
  9367. },
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(5 + 10.5/12, "feet")
  9371. },
  9372. ]
  9373. )
  9374. };
  9375. characterMakers["Lykonous"] = () => {
  9376. return makeCharacter(
  9377. "Lykonous",
  9378. "Lykonous",
  9379. {
  9380. kaiju: {
  9381. height: math.unit(1.75, "meters"),
  9382. weight: math.unit(55, "kg"),
  9383. name: "Kaiju",
  9384. image: {
  9385. source: "./media/characters/lykonous/kaiju.svg",
  9386. extra: 1055/946 ,
  9387. bottom: 0.135
  9388. }
  9389. },
  9390. },
  9391. [
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(2.5, "meters"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Kaiju Dragon",
  9399. height: math.unit(60, "meters")
  9400. },
  9401. {
  9402. name: "Mega Kaiju",
  9403. height: math.unit(120, "km")
  9404. },
  9405. {
  9406. name: "Giga Kaiju",
  9407. height: math.unit(200, "megameters")
  9408. },
  9409. {
  9410. name: "Terra Kaiju",
  9411. height: math.unit(400, "gigameters")
  9412. },
  9413. {
  9414. name: "Kaiju Dragon God",
  9415. height: math.unit(13000, "exaparsecs")
  9416. },
  9417. ]
  9418. )
  9419. };
  9420. characterMakers["Blü"] = () => {
  9421. return makeCharacter(
  9422. "Blü",
  9423. "BluTheFagon",
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(150, "lb"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/blü/front.svg",
  9431. extra: 1883/1564 ,
  9432. bottom: 0.031
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(13, "feet"),
  9440. default: true
  9441. },
  9442. {
  9443. name: "Big Boi",
  9444. height: math.unit(150, "meters")
  9445. },
  9446. {
  9447. name: "Mini Stomper",
  9448. height: math.unit(300, "meters")
  9449. },
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(1000, "meters")
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(11000, "meters")
  9457. },
  9458. {
  9459. name: "Gigamacro",
  9460. height: math.unit(11000, "km")
  9461. },
  9462. {
  9463. name: "Teramacro",
  9464. height: math.unit(420000, "km")
  9465. },
  9466. {
  9467. name: "Examacro",
  9468. height: math.unit(120, "parsecs")
  9469. },
  9470. {
  9471. name: "God Tho",
  9472. height: math.unit(98000000000, "parsecs")
  9473. },
  9474. ]
  9475. )
  9476. };
  9477. characterMakers["Scales"] = () => {
  9478. return makeCharacter(
  9479. "Scales",
  9480. "Scales",
  9481. {
  9482. taurFront: {
  9483. height: math.unit(6, "feet"),
  9484. weight: math.unit(200, "lb"),
  9485. name: "Taur (Front)",
  9486. image: {
  9487. source: "./media/characters/scales/taur-front.svg",
  9488. extra: 1,
  9489. bottom: 0.05
  9490. }
  9491. },
  9492. taurBack: {
  9493. height: math.unit(6, "feet"),
  9494. weight: math.unit(200, "lb"),
  9495. name: "Taur (Back)",
  9496. image: {
  9497. source: "./media/characters/scales/taur-back.svg",
  9498. extra: 1,
  9499. bottom: 0.08
  9500. }
  9501. },
  9502. anthro: {
  9503. height: math.unit(6*7/12, "feet"),
  9504. weight: math.unit(100, "lb"),
  9505. name: "Anthro",
  9506. image: {
  9507. source: "./media/characters/scales/anthro.svg",
  9508. extra: 1,
  9509. bottom: 0.06
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(12, "feet"),
  9517. default: true
  9518. },
  9519. ]
  9520. )
  9521. };
  9522. characterMakers["Koragos"] = () => {
  9523. return makeCharacter(
  9524. "Koragos",
  9525. "Koragos",
  9526. {
  9527. front: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(150, "lb"),
  9530. name: "Front",
  9531. image: {
  9532. source: "./media/characters/koragos/front.svg",
  9533. extra: 841/794 ,
  9534. bottom: 0.035
  9535. }
  9536. },
  9537. back: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(150, "lb"),
  9540. name: "Back",
  9541. image: {
  9542. source: "./media/characters/koragos/back.svg",
  9543. extra: 841/810 ,
  9544. bottom: 0.022
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(6 + 11/12, "feet"),
  9552. default: true
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(490, "feet")
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(10, "miles")
  9561. },
  9562. {
  9563. name: "Gigamacro",
  9564. height: math.unit(50, "miles")
  9565. },
  9566. ]
  9567. )
  9568. };
  9569. characterMakers["Xylrem"] = () => {
  9570. return makeCharacter(
  9571. "Xylrem",
  9572. "",
  9573. {
  9574. front: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(250, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/xylrem/front.svg",
  9580. extra: 3323/3050 ,
  9581. bottom: 0.065
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Micro",
  9588. height: math.unit(4, "feet")
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(16, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(2720, "feet")
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(25000, "miles")
  9602. },
  9603. ]
  9604. )
  9605. };
  9606. characterMakers["Ikideru"] = () => {
  9607. return makeCharacter(
  9608. "Ikideru",
  9609. "Ikideru",
  9610. {
  9611. front: {
  9612. height: math.unit(8, "feet"),
  9613. weight: math.unit(250, "kg"),
  9614. name: "Front",
  9615. image: {
  9616. source: "./media/characters/ikideru/front.svg",
  9617. extra: 930/870 ,
  9618. bottom: 0.087
  9619. }
  9620. },
  9621. back: {
  9622. height: math.unit(8, "feet"),
  9623. weight: math.unit(250, "kg"),
  9624. name: "Back",
  9625. image: {
  9626. source: "./media/characters/ikideru/back.svg",
  9627. extra: 919/852 ,
  9628. bottom: 0.055
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Rare",
  9635. height: math.unit(8, "feet"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Playful Loom",
  9640. height: math.unit(80, "feet")
  9641. },
  9642. {
  9643. name: "City Leaner",
  9644. height: math.unit(230, "feet")
  9645. },
  9646. {
  9647. name: "Megamacro",
  9648. height: math.unit(2500, "feet")
  9649. },
  9650. {
  9651. name: "Gigamacro",
  9652. height: math.unit(26400, "feet")
  9653. },
  9654. {
  9655. name: "Tectonic Shifter",
  9656. height: math.unit(1.7, "megameters")
  9657. },
  9658. {
  9659. name: "Planet Carer",
  9660. height: math.unit(21, "megameters")
  9661. },
  9662. {
  9663. name: "God",
  9664. height: math.unit(11157.22, "parsecs")
  9665. },
  9666. ]
  9667. )
  9668. };
  9669. characterMakers["Neo"] = () => {
  9670. return makeCharacter(
  9671. "Neo",
  9672. "neonsnake",
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(120, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/neo/front.svg"
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Micro",
  9686. height: math.unit(2, "inches"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "Human Size",
  9691. height: math.unit(5 + 8/12, "feet")
  9692. },
  9693. ]
  9694. )
  9695. };
  9696. characterMakers["Chauncey (Chantz)"] = () => {
  9697. return makeCharacter(
  9698. "Chauncey (Chantz)",
  9699. "RyGaLo",
  9700. {
  9701. front: {
  9702. height: math.unit(13 + 10/12, "feet"),
  9703. weight: math.unit(5320, "lb"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/chauncey-chantz/front.svg",
  9707. extra: 1587/1435 ,
  9708. bottom: 0.02
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(13 + 10/12, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(45, "feet")
  9721. },
  9722. {
  9723. name: "Megamacro",
  9724. height: math.unit(250, "miles")
  9725. },
  9726. {
  9727. name: "Planetary",
  9728. height: math.unit(10000, "miles")
  9729. },
  9730. {
  9731. name: "Galactic",
  9732. height: math.unit(40000, "parsecs")
  9733. },
  9734. {
  9735. name: "Universal",
  9736. height: math.unit(1, "yottameter")
  9737. },
  9738. ]
  9739. )
  9740. };
  9741. characterMakers["Epifox"] = () => {
  9742. return makeCharacter(
  9743. "Epifox",
  9744. "Epifox",
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/epifox/front.svg",
  9752. extra: 1,
  9753. bottom: 0.075
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(6, "inches")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(12, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(3810, "feet")
  9770. },
  9771. {
  9772. name: "Megamacro",
  9773. height: math.unit(500, "miles")
  9774. },
  9775. ]
  9776. )
  9777. };
  9778. characterMakers["Colin T."] = () => {
  9779. return makeCharacter(
  9780. "Colin T.",
  9781. "DragonLugia58",
  9782. {
  9783. front: {
  9784. height: math.unit(1.8796, "m"),
  9785. weight: math.unit(230, "lb"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/colin-t/front.svg",
  9789. extra: 1272/1193 ,
  9790. bottom: 0.07
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Micro",
  9797. height: math.unit(0.571, "meters")
  9798. },
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(1.8796, "meters"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Tall",
  9806. height: math.unit(4, "meters")
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(67.241, "meters")
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(371.856, "meters")
  9815. },
  9816. {
  9817. name: "Planetary",
  9818. height: math.unit(12631.5689, "km")
  9819. },
  9820. ]
  9821. )
  9822. };
  9823. characterMakers["Matvei"] = () => {
  9824. return makeCharacter(
  9825. "Matvei",
  9826. "Matt_Da_Master",
  9827. {
  9828. front: {
  9829. height: math.unit(1.85, "meters"),
  9830. weight: math.unit(80, "kg"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/matvei/front.svg",
  9834. extra: 614/594 ,
  9835. bottom: 0.01
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(1.85, "meters"),
  9843. default: true
  9844. },
  9845. ]
  9846. )
  9847. };
  9848. characterMakers["Quincy"] = () => {
  9849. return makeCharacter(
  9850. "Quincy",
  9851. "Paradisaea",
  9852. {
  9853. front: {
  9854. height: math.unit(5 + 9/12, "feet"),
  9855. weight: math.unit(70, "lb"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/quincy/front.svg",
  9859. extra: 3041/2751
  9860. }
  9861. },
  9862. back: {
  9863. height: math.unit(5 + 9/12, "feet"),
  9864. weight: math.unit(70, "lb"),
  9865. name: "Back",
  9866. image: {
  9867. source: "./media/characters/quincy/back.svg",
  9868. extra: 3041/2751
  9869. }
  9870. },
  9871. flying: {
  9872. height: math.unit(5 + 4/12, "feet"),
  9873. weight: math.unit(70, "lb"),
  9874. name: "Flying",
  9875. image: {
  9876. source: "./media/characters/quincy/flying.svg",
  9877. extra: 1044/930
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Micro",
  9884. height: math.unit(3, "cm")
  9885. },
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(5 + 9/12, "feet")
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(200, "meters"),
  9893. default: true
  9894. },
  9895. {
  9896. name: "Megamacro",
  9897. height: math.unit(1000, "meters")
  9898. },
  9899. ]
  9900. )
  9901. };
  9902. characterMakers["Vanrel"] = () => {
  9903. return makeCharacter(
  9904. "Vanrel",
  9905. "KuiPaws",
  9906. {
  9907. front: {
  9908. height: math.unit(4 + 7/12, "feet"),
  9909. weight: math.unit(150, "lb"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/vanrel/front.svg",
  9913. extra: 1,
  9914. bottom: 0.02
  9915. }
  9916. },
  9917. side: {
  9918. height: math.unit(4 + 7/12, "feet"),
  9919. weight: math.unit(150, "lb"),
  9920. name: "Side",
  9921. image: {
  9922. source: "./media/characters/vanrel/side.svg",
  9923. extra: 1,
  9924. bottom: 0.025
  9925. }
  9926. },
  9927. tome: {
  9928. height: math.unit(1.35, "feet"),
  9929. weight: math.unit(10, "lb"),
  9930. name: "Vanrel's Tome",
  9931. rename: true,
  9932. image: {
  9933. source: "./media/characters/vanrel/tome.svg"
  9934. }
  9935. },
  9936. beans: {
  9937. height: math.unit(0.89, "feet"),
  9938. name: "Beans",
  9939. image: {
  9940. source: "./media/characters/vanrel/beans.svg"
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(4 + 7/12, "feet"),
  9948. default: true
  9949. },
  9950. ]
  9951. )
  9952. };
  9953. characterMakers["Kuiper Vanrel"] = () => {
  9954. return makeCharacter(
  9955. "Kuiper Vanrel",
  9956. "KuiPaws",
  9957. {
  9958. front: {
  9959. height: math.unit(7 + 5/12, "feet"),
  9960. weight: math.unit(150, "lb"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/kuiper-vanrel/front.svg",
  9964. extra: 1118/1068 ,
  9965. bottom: 0.09
  9966. }
  9967. },
  9968. foot: {
  9969. height: math.unit(0.55, "meters"),
  9970. name: "Foot",
  9971. image: {
  9972. source: "./media/characters/kuiper-vanrel/foot.svg",
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(7 + 5/12, "feet"),
  9980. default: true
  9981. },
  9982. ]
  9983. )
  9984. };
  9985. characterMakers["Keset Vanrel"] = () => {
  9986. return makeCharacter(
  9987. "Keset Vanrel",
  9988. "KuiPaws",
  9989. {
  9990. front: {
  9991. height: math.unit(8 + 5/12, "feet"),
  9992. weight: math.unit(150, "lb"),
  9993. name: "Front",
  9994. image: {
  9995. source: "./media/characters/keset-vanrel/front.svg",
  9996. extra: 1150/1084 ,
  9997. bottom: 0.05
  9998. }
  9999. },
  10000. hand: {
  10001. height: math.unit(0.6, "meters"),
  10002. name: "Hand",
  10003. image: {
  10004. source: "./media/characters/keset-vanrel/hand.svg"
  10005. }
  10006. },
  10007. foot: {
  10008. height: math.unit(0.94978, "meters"),
  10009. name: "Foot",
  10010. image: {
  10011. source: "./media/characters/keset-vanrel/foot.svg"
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(8 + 5/12, "feet"),
  10019. default: true
  10020. },
  10021. ]
  10022. )
  10023. };
  10024. characterMakers["Neos"] = () => {
  10025. return makeCharacter(
  10026. "Neos",
  10027. "CakeyCake",
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/neos/front.svg",
  10035. extra: 1696/992 ,
  10036. bottom: 0.14
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(54, "cm"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(100, "m")
  10049. },
  10050. {
  10051. name: "Megamacro",
  10052. height: math.unit(10, "km")
  10053. },
  10054. {
  10055. name: "Megamacro+",
  10056. height: math.unit(100, "km")
  10057. },
  10058. {
  10059. name: "Gigamacro",
  10060. height: math.unit(100, "Mm")
  10061. },
  10062. {
  10063. name: "Teramacro",
  10064. height: math.unit(100, "Gm")
  10065. },
  10066. {
  10067. name: "Examacro",
  10068. height: math.unit(100, "Em")
  10069. },
  10070. {
  10071. name: "Godly",
  10072. height: math.unit(10000, "Ym")
  10073. },
  10074. {
  10075. name: "Beyond Godly",
  10076. height: math.unit(10000000, "Ym")
  10077. },
  10078. ]
  10079. )
  10080. };
  10081. characterMakers["Sammy Mouse"] = () => {
  10082. return makeCharacter(
  10083. "Sammy Mouse",
  10084. "Piedunk",
  10085. {
  10086. feminine: {
  10087. height: math.unit(5, "feet"),
  10088. weight: math.unit(100, "lb"),
  10089. name: "Feminine",
  10090. image: {
  10091. source: "./media/characters/sammy-mouse/feminine.svg",
  10092. extra: 2526/2425 ,
  10093. bottom: 0.123
  10094. }
  10095. },
  10096. masculine: {
  10097. height: math.unit(5, "feet"),
  10098. weight: math.unit(100, "lb"),
  10099. name: "Masculine",
  10100. image: {
  10101. source: "./media/characters/sammy-mouse/masculine.svg",
  10102. extra: 2526/2425 ,
  10103. bottom: 0.123
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Micro",
  10110. height: math.unit(5, "inches")
  10111. },
  10112. {
  10113. name: "Normal",
  10114. height: math.unit(5, "feet"),
  10115. default: true
  10116. },
  10117. {
  10118. name: "Macro",
  10119. height: math.unit(60, "feet")
  10120. },
  10121. ]
  10122. )
  10123. };
  10124. characterMakers["Kole"] = () => {
  10125. return makeCharacter(
  10126. "Kole",
  10127. "Cats_55",
  10128. {
  10129. front: {
  10130. height: math.unit(4, "feet"),
  10131. weight: math.unit(50, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/kole/front.svg",
  10135. extra: 1423/1303 ,
  10136. bottom: 0.025
  10137. }
  10138. },
  10139. back: {
  10140. height: math.unit(4, "feet"),
  10141. weight: math.unit(50, "lb"),
  10142. name: "Back",
  10143. image: {
  10144. source: "./media/characters/kole/back.svg",
  10145. extra: 1426/1280 ,
  10146. bottom: 0.02
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(4, "feet"),
  10154. default: true
  10155. },
  10156. ]
  10157. )
  10158. };
  10159. characterMakers["Rufran"] = () => {
  10160. return makeCharacter(
  10161. "Rufran",
  10162. "Rufran",
  10163. {
  10164. front: {
  10165. height: math.unit(2 + 6/12, "feet"),
  10166. weight: math.unit(20, "lb"),
  10167. name: "Front",
  10168. image: {
  10169. source: "./media/characters/rufran/front.svg",
  10170. extra: 2041/1839 ,
  10171. bottom: 0.055
  10172. }
  10173. },
  10174. back: {
  10175. height: math.unit(2 + 6/12, "feet"),
  10176. weight: math.unit(20, "lb"),
  10177. name: "Back",
  10178. image: {
  10179. source: "./media/characters/rufran/back.svg",
  10180. extra: 2054/1839 ,
  10181. bottom: 0.01
  10182. }
  10183. },
  10184. hand: {
  10185. height: math.unit(0.2166, "meters"),
  10186. name: "Hand",
  10187. image: {
  10188. source: "./media/characters/rufran/hand.svg"
  10189. }
  10190. },
  10191. foot: {
  10192. height: math.unit(0.185, "meters"),
  10193. name: "Foot",
  10194. image: {
  10195. source: "./media/characters/rufran/foot.svg"
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Micro",
  10202. height: math.unit(1, "inch")
  10203. },
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(2 + 6/12, "feet"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Big",
  10211. height: math.unit(60, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(325, "feet")
  10216. },
  10217. ]
  10218. )
  10219. };
  10220. characterMakers["Chip"] = () => {
  10221. return makeCharacter(
  10222. "Chip",
  10223. "Chiptuni",
  10224. {
  10225. front: {
  10226. height: math.unit(0.3, "meters"),
  10227. weight: math.unit(3.5, "kg"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/chip/front.svg",
  10231. extra: 748/674
  10232. }
  10233. },
  10234. },
  10235. [
  10236. {
  10237. name: "Micro",
  10238. height: math.unit(1, "inch"),
  10239. default: true
  10240. },
  10241. ]
  10242. )
  10243. };
  10244. characterMakers["Torvid"] = () => {
  10245. return makeCharacter(
  10246. "Torvid",
  10247. "Torvid",
  10248. {
  10249. side: {
  10250. height: math.unit(2.3, "meters"),
  10251. weight: math.unit(3500, "lb"),
  10252. name: "Side",
  10253. image: {
  10254. source: "./media/characters/torvid/side.svg",
  10255. extra: 1972/722 ,
  10256. bottom: 0.035
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(2.3, "meters"),
  10264. default: true
  10265. },
  10266. ]
  10267. )
  10268. };
  10269. characterMakers["Susan"] = () => {
  10270. return makeCharacter(
  10271. "Susan",
  10272. "Jasmith",
  10273. {
  10274. front: {
  10275. height: math.unit(2, "meters"),
  10276. weight: math.unit(150.5, "kg"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/susan/front.svg",
  10280. extra: 693/635 ,
  10281. bottom: 0.05
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Megamacro",
  10288. height: math.unit(505, "miles"),
  10289. default: true
  10290. },
  10291. ]
  10292. )
  10293. };
  10294. characterMakers["Raindrops"] = () => {
  10295. return makeCharacter(
  10296. "Raindrops",
  10297. "RaindropsJFL",
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(150, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/raindrops/front.svg",
  10305. extra: 2655/2461 ,
  10306. bottom: 0.02
  10307. }
  10308. },
  10309. back: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Back",
  10313. image: {
  10314. source: "./media/characters/raindrops/back.svg",
  10315. extra: 2574/2400 ,
  10316. bottom: 0.03
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Micro",
  10323. height: math.unit(6, "inches")
  10324. },
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(6 + 2/12, "feet")
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(131, "feet"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(15, "miles")
  10337. },
  10338. {
  10339. name: "Gigamacro",
  10340. height: math.unit(4000, "miles")
  10341. },
  10342. {
  10343. name: "Teramacro",
  10344. height: math.unit(315000, "miles")
  10345. },
  10346. ]
  10347. )
  10348. };
  10349. characterMakers["Tezwa"] = () => {
  10350. return makeCharacter(
  10351. "Tezwa",
  10352. "TitanTezwa",
  10353. {
  10354. front: {
  10355. height: math.unit(2.794, "meters"),
  10356. weight: math.unit(325, "kg"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/tezwa/front.svg",
  10360. extra: 2083/1906 ,
  10361. bottom: 0.031
  10362. }
  10363. },
  10364. foot: {
  10365. height: math.unit(0.687, "meters"),
  10366. name: "Foot",
  10367. image: {
  10368. source: "./media/characters/tezwa/foot.svg"
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(9 + 2/12, "feet"),
  10376. default: true
  10377. },
  10378. ]
  10379. )
  10380. };
  10381. characterMakers["Typhus"] = () => {
  10382. return makeCharacter(
  10383. "Typhus",
  10384. "Jasmith",
  10385. {
  10386. front: {
  10387. height: math.unit(58, "feet"),
  10388. weight: math.unit(89000, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/typhus/front.svg",
  10392. extra: 816/800 ,
  10393. bottom: 0.065
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(58, "feet"),
  10401. default: true
  10402. },
  10403. ]
  10404. )
  10405. };
  10406. characterMakers["Lyra Von Wulf"] = () => {
  10407. return makeCharacter(
  10408. "Lyra Von Wulf",
  10409. "LyraVonWulf",
  10410. {
  10411. front: {
  10412. height: math.unit(12, "feet"),
  10413. weight: math.unit(6, "tonnes"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/lyra-von-wulf/front.svg",
  10417. extra: 1,
  10418. bottom: 0.10
  10419. }
  10420. },
  10421. frontMecha: {
  10422. height: math.unit(12, "feet"),
  10423. weight: math.unit(12, "tonnes"),
  10424. name: "Front (Mecha)",
  10425. image: {
  10426. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10427. extra: 1,
  10428. bottom: 0.042
  10429. }
  10430. },
  10431. maw: {
  10432. height: math.unit(2.2, "feet"),
  10433. name: "Maw",
  10434. image: {
  10435. source: "./media/characters/lyra-von-wulf/maw.svg"
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(12, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Classic",
  10447. height: math.unit(50, "feet")
  10448. },
  10449. {
  10450. name: "Macro",
  10451. height: math.unit(500, "feet")
  10452. },
  10453. {
  10454. name: "Megamacro",
  10455. height: math.unit(1, "mile")
  10456. },
  10457. {
  10458. name: "Gigamacro",
  10459. height: math.unit(400, "miles")
  10460. },
  10461. {
  10462. name: "Teramacro",
  10463. height: math.unit(22000, "miles")
  10464. },
  10465. {
  10466. name: "Solarmacro",
  10467. height: math.unit(8600000, "miles")
  10468. },
  10469. {
  10470. name: "Galactic",
  10471. height: math.unit(1057000, "lightyears")
  10472. },
  10473. ]
  10474. )
  10475. };
  10476. characterMakers["Dixon"] = () => {
  10477. return makeCharacter(
  10478. "Dixon",
  10479. "Seabury",
  10480. {
  10481. front: {
  10482. height: math.unit(6 + 10/12, "feet"),
  10483. weight: math.unit(150, "lb"),
  10484. name: "Front",
  10485. image: {
  10486. source: "./media/characters/dixon/front.svg",
  10487. extra: 3361/3209 ,
  10488. bottom: 0.01
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(6 + 10/12, "feet"),
  10496. default: true
  10497. },
  10498. {
  10499. name: "Big",
  10500. height: math.unit(12, "meters")
  10501. },
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(500, "meters")
  10505. },
  10506. {
  10507. name: "Megamacro",
  10508. height: math.unit(2, "km")
  10509. },
  10510. ]
  10511. )
  10512. };
  10513. characterMakers["Kauko"] = () => {
  10514. return makeCharacter(
  10515. "Kauko",
  10516. "Kauko",
  10517. {
  10518. front: {
  10519. height: math.unit(185, "cm"),
  10520. weight: math.unit(68, "kg"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/kauko/front.svg",
  10524. extra: 1455/1421 ,
  10525. bottom: 0.03
  10526. }
  10527. },
  10528. back: {
  10529. height: math.unit(185, "cm"),
  10530. weight: math.unit(68, "kg"),
  10531. name: "Back",
  10532. image: {
  10533. source: "./media/characters/kauko/back.svg",
  10534. extra: 1455/1421 ,
  10535. bottom: 0.004
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(185, "cm"),
  10543. default: true
  10544. },
  10545. ]
  10546. )
  10547. };
  10548. characterMakers["Varg"] = () => {
  10549. return makeCharacter(
  10550. "Varg",
  10551. "va0027",
  10552. {
  10553. front: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "kg"),
  10556. name: "Front",
  10557. image: {
  10558. source: "./media/characters/varg/front.svg",
  10559. extra: 1108/1018 ,
  10560. bottom: 0.0375
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(5, "meters")
  10568. },
  10569. {
  10570. name: "Gigamacro",
  10571. height: math.unit(211, "km"),
  10572. default: true
  10573. },
  10574. ]
  10575. )
  10576. };
  10577. characterMakers["Dayza"] = () => {
  10578. return makeCharacter(
  10579. "Dayza",
  10580. "Vonadi",
  10581. {
  10582. front: {
  10583. height: math.unit(7 + 7/12, "feet"),
  10584. weight: math.unit(267, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/dayza/front.svg",
  10588. extra: 1262/1200 ,
  10589. bottom: 0.035
  10590. }
  10591. },
  10592. side: {
  10593. height: math.unit(7 + 7/12, "feet"),
  10594. weight: math.unit(267, "lb"),
  10595. name: "Side",
  10596. image: {
  10597. source: "./media/characters/dayza/side.svg",
  10598. extra: 1295/1245 ,
  10599. bottom: 0.05
  10600. }
  10601. },
  10602. back: {
  10603. height: math.unit(7 + 7/12, "feet"),
  10604. weight: math.unit(267, "lb"),
  10605. name: "Back",
  10606. image: {
  10607. source: "./media/characters/dayza/back.svg",
  10608. extra: 1241/1170
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Normal",
  10615. height: math.unit(7 + 7/12, "feet"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Macro",
  10620. height: math.unit(155, "feet")
  10621. },
  10622. ]
  10623. )
  10624. };
  10625. characterMakers["Xanthos"] = () => {
  10626. return makeCharacter(
  10627. "Xanthos",
  10628. "ArgentVZ",
  10629. {
  10630. front: {
  10631. height: math.unit(6 + 5/12, "feet"),
  10632. weight: math.unit(160, "lb"),
  10633. name: "Front",
  10634. image: {
  10635. source: "./media/characters/xanthos/front.svg",
  10636. extra: 1,
  10637. bottom: 0.04
  10638. }
  10639. },
  10640. back: {
  10641. height: math.unit(6 + 5/12, "feet"),
  10642. weight: math.unit(160, "lb"),
  10643. name: "Back",
  10644. image: {
  10645. source: "./media/characters/xanthos/back.svg",
  10646. extra: 1,
  10647. bottom: 0.03
  10648. }
  10649. },
  10650. hand: {
  10651. height: math.unit(0.928, "feet"),
  10652. name: "Hand",
  10653. image: {
  10654. source: "./media/characters/xanthos/hand.svg"
  10655. }
  10656. },
  10657. foot: {
  10658. height: math.unit(1.286, "feet"),
  10659. name: "Foot",
  10660. image: {
  10661. source: "./media/characters/xanthos/foot.svg"
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(6 + 5/12, "feet"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Normal+",
  10673. height: math.unit(6, "meters")
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(40, "feet")
  10678. },
  10679. {
  10680. name: "Macro+",
  10681. height: math.unit(200, "meters")
  10682. },
  10683. {
  10684. name: "Megamacro",
  10685. height: math.unit(20, "km")
  10686. },
  10687. {
  10688. name: "Megamacro+",
  10689. height: math.unit(100, "km")
  10690. },
  10691. ]
  10692. )
  10693. };
  10694. characterMakers["Grynn"] = () => {
  10695. return makeCharacter(
  10696. "Grynn",
  10697. "Grynn",
  10698. {
  10699. front: {
  10700. height: math.unit(6 + 3/12, "feet"),
  10701. weight: math.unit(215, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/grynn/front.svg",
  10705. extra: 4627/4209 ,
  10706. bottom: 0.047
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(6, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(6 + 3/12, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Big",
  10722. height: math.unit(104, "feet")
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(944, "feet")
  10727. },
  10728. {
  10729. name: "Macro+",
  10730. height: math.unit(9480, "feet")
  10731. },
  10732. {
  10733. name: "Megamacro",
  10734. height: math.unit(78752, "feet")
  10735. },
  10736. {
  10737. name: "Megamacro+",
  10738. height: math.unit(630128, "feet")
  10739. },
  10740. {
  10741. name: "Megamacro++",
  10742. height: math.unit(3150695, "feet")
  10743. },
  10744. ]
  10745. )
  10746. };
  10747. characterMakers["Mocha Aura"] = () => {
  10748. return makeCharacter(
  10749. "Mocha Aura",
  10750. "Mocha-Aura",
  10751. {
  10752. front: {
  10753. height: math.unit(7 + 5/12, "feet"),
  10754. weight: math.unit(450, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/mocha-aura/front.svg",
  10758. extra: 1907/1817 ,
  10759. bottom: 0.04
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(7 + 5/12, "feet"),
  10764. weight: math.unit(450, "lb"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/mocha-aura/back.svg",
  10768. extra: 1900/1825 ,
  10769. bottom: 0.045
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Nano",
  10776. height: math.unit(1, "nm")
  10777. },
  10778. {
  10779. name: "Megamicro",
  10780. height: math.unit(1, "mm")
  10781. },
  10782. {
  10783. name: "Micro",
  10784. height: math.unit(3, "inches")
  10785. },
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(7 + 5/12, "feet"),
  10789. default: true
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(30, "feet")
  10794. },
  10795. {
  10796. name: "Megamacro",
  10797. height: math.unit(3500, "feet")
  10798. },
  10799. {
  10800. name: "Teramacro",
  10801. height: math.unit(500000, "miles")
  10802. },
  10803. {
  10804. name: "Petamacro",
  10805. height: math.unit(50000000000000000 , "parsecs")
  10806. },
  10807. ]
  10808. )
  10809. };
  10810. characterMakers["Ilisha Devya"] = () => {
  10811. return makeCharacter(
  10812. "Ilisha Devya",
  10813. "Neopuc",
  10814. {
  10815. front: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(150, "lb"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/ilisha-devya/front.svg",
  10821. extra: 1,
  10822. bottom: 0.175
  10823. }
  10824. },
  10825. back: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(150, "lb"),
  10828. name: "Back",
  10829. image: {
  10830. source: "./media/characters/ilisha-devya/back.svg",
  10831. extra: 1,
  10832. bottom: 0.015
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(500, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(10, "miles")
  10845. },
  10846. {
  10847. name: "Gigamacro",
  10848. height: math.unit(100000, "miles")
  10849. },
  10850. {
  10851. name: "Examacro",
  10852. height: math.unit(1e9, "lightyears")
  10853. },
  10854. {
  10855. name: "Omniversal",
  10856. height: math.unit(1e33, "lightyears")
  10857. },
  10858. {
  10859. name: "Beyond Infinite",
  10860. height: math.unit(1e100, "lightyears")
  10861. },
  10862. ]
  10863. )
  10864. };
  10865. characterMakers["Mira"] = () => {
  10866. return makeCharacter(
  10867. "Mira",
  10868. "Neopuc",
  10869. {
  10870. Side: {
  10871. height: math.unit(6, "feet"),
  10872. weight: math.unit(150, "lb"),
  10873. name: "Side",
  10874. image: {
  10875. source: "./media/characters/mira/side.svg",
  10876. extra: 900/799 ,
  10877. bottom: 0.02
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Human Size",
  10884. height: math.unit(6, "feet")
  10885. },
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(100, "feet"),
  10889. default: true
  10890. },
  10891. {
  10892. name: "Megamacro",
  10893. height: math.unit(10, "miles")
  10894. },
  10895. {
  10896. name: "Gigamacro",
  10897. height: math.unit(25000, "miles")
  10898. },
  10899. {
  10900. name: "Teramacro",
  10901. height: math.unit(300, "AU")
  10902. },
  10903. {
  10904. name: "Full Size",
  10905. height: math.unit(4.5e10, "lightyears")
  10906. },
  10907. ]
  10908. )
  10909. };
  10910. characterMakers["Holly"] = () => {
  10911. return makeCharacter(
  10912. "Holly",
  10913. "Neopuc",
  10914. {
  10915. front: {
  10916. height: math.unit(6, "feet"),
  10917. weight: math.unit(150, "lb"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/holly/front.svg",
  10921. extra: 639/606
  10922. }
  10923. },
  10924. back: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(150, "lb"),
  10927. name: "Back",
  10928. image: {
  10929. source: "./media/characters/holly/back.svg",
  10930. extra: 623/598
  10931. }
  10932. },
  10933. frontWorking: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(150, "lb"),
  10936. name: "Front (Working)",
  10937. image: {
  10938. source: "./media/characters/holly/front-working.svg",
  10939. extra: 607/577 ,
  10940. bottom: 0.048
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(12 + 3/12, "feet"),
  10948. default: true
  10949. },
  10950. ]
  10951. )
  10952. };
  10953. characterMakers["Porter"] = () => {
  10954. return makeCharacter(
  10955. "Porter",
  10956. "Neopuc",
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/porter/front.svg",
  10964. extra: 1,
  10965. bottom: 0.01
  10966. }
  10967. },
  10968. frontRobes: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(150, "lb"),
  10971. name: "Front (Robes)",
  10972. image: {
  10973. source: "./media/characters/porter/front-robes.svg",
  10974. extra: 1.01 ,
  10975. bottom: 0.01
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(11 + 9/12, "feet"),
  10983. default: true
  10984. },
  10985. ]
  10986. )
  10987. };
  10988. characterMakers["Lucy"] = () => {
  10989. return makeCharacter(
  10990. "Lucy",
  10991. "Jasmith",
  10992. {
  10993. legendary: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(150, "lb"),
  10996. name: "Legendary",
  10997. image: {
  10998. source: "./media/characters/lucy/legendary.svg",
  10999. extra: 1355/1100 ,
  11000. bottom: 0.045
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Legendary",
  11007. height: math.unit(86882*2, "miles"),
  11008. default: true
  11009. },
  11010. ]
  11011. )
  11012. };
  11013. characterMakers["Drusilla"] = () => {
  11014. return makeCharacter(
  11015. "Drusilla",
  11016. "Neopuc",
  11017. {
  11018. front: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(150, "lb"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/drusilla/front.svg",
  11024. extra: 678/635 ,
  11025. bottom: 0.03
  11026. }
  11027. },
  11028. back: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(150, "lb"),
  11031. name: "Back",
  11032. image: {
  11033. source: "./media/characters/drusilla/back.svg",
  11034. extra: 678/635 ,
  11035. bottom: 0.005
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(100, "feet")
  11043. },
  11044. {
  11045. name: "Canon Height",
  11046. height: math.unit(2000, "feet"),
  11047. default: true
  11048. },
  11049. ]
  11050. )
  11051. };
  11052. characterMakers["Renard Thatch"] = () => {
  11053. return makeCharacter(
  11054. "Renard Thatch",
  11055. "Renard Thatch",
  11056. {
  11057. front: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(180, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/renard-thatch/front.svg",
  11063. extra: 2411/2275 ,
  11064. bottom: 0.01
  11065. }
  11066. },
  11067. frontPosing: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(180, "lb"),
  11070. name: "Front (Posing)",
  11071. image: {
  11072. source: "./media/characters/renard-thatch/front-posing.svg",
  11073. extra: 2381/2261 ,
  11074. bottom: 0.01
  11075. }
  11076. },
  11077. back: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(180, "lb"),
  11080. name: "Back",
  11081. image: {
  11082. source: "./media/characters/renard-thatch/back.svg",
  11083. extra: 2428/2288
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Micro",
  11090. height: math.unit(3, "inches")
  11091. },
  11092. {
  11093. name: "Default",
  11094. height: math.unit(6, "feet"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(75, "feet")
  11100. },
  11101. ]
  11102. )
  11103. };
  11104. characterMakers["Sekvra"] = () => {
  11105. return makeCharacter(
  11106. "Sekvra",
  11107. "Neopuc",
  11108. {
  11109. front: {
  11110. height: math.unit(1450, "feet"),
  11111. weight: math.unit(1.21e6, "tons"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/sekvra/front.svg",
  11115. extra: 1,
  11116. bottom: 0.03
  11117. }
  11118. },
  11119. frontClothed: {
  11120. height: math.unit(1450, "feet"),
  11121. weight: math.unit(1.21e6, "tons"),
  11122. name: "Front (Clothed)",
  11123. image: {
  11124. source: "./media/characters/sekvra/front-clothed.svg",
  11125. extra: 1,
  11126. bottom: 0.03
  11127. }
  11128. },
  11129. side: {
  11130. height: math.unit(1450, "feet"),
  11131. weight: math.unit(1.21e6, "tons"),
  11132. name: "Side",
  11133. image: {
  11134. source: "./media/characters/sekvra/side.svg",
  11135. extra: 1,
  11136. bottom: 0.025
  11137. }
  11138. },
  11139. back: {
  11140. height: math.unit(1450, "feet"),
  11141. weight: math.unit(1.21e6, "tons"),
  11142. name: "Back",
  11143. image: {
  11144. source: "./media/characters/sekvra/back.svg",
  11145. extra: 1,
  11146. bottom: 0.005
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Macro",
  11153. height: math.unit(1450, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(15000, "feet")
  11159. },
  11160. ]
  11161. )
  11162. };
  11163. characterMakers["Carmine"] = () => {
  11164. return makeCharacter(
  11165. "Carmine",
  11166. "Neopuc",
  11167. {
  11168. front: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Front",
  11172. image: {
  11173. source: "./media/characters/carmine/front.svg",
  11174. extra: 1,
  11175. bottom: 0.035
  11176. }
  11177. },
  11178. frontArmor: {
  11179. height: math.unit(6, "feet"),
  11180. weight: math.unit(150, "lb"),
  11181. name: "Front (Armor)",
  11182. image: {
  11183. source: "./media/characters/carmine/front-armor.svg",
  11184. extra: 1,
  11185. bottom: 0.035
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Large",
  11192. height: math.unit(1, "mile")
  11193. },
  11194. {
  11195. name: "Huge",
  11196. height: math.unit(40, "miles"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Colossal",
  11201. height: math.unit(2500, "miles")
  11202. },
  11203. ]
  11204. )
  11205. };
  11206. characterMakers["Elyssia"] = () => {
  11207. return makeCharacter(
  11208. "Elyssia",
  11209. "Neopuc",
  11210. {
  11211. front: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/elyssia/front.svg",
  11217. extra: 2201/2035 ,
  11218. bottom: 0.05
  11219. }
  11220. },
  11221. frontClothed: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front (Clothed)",
  11225. image: {
  11226. source: "./media/characters/elyssia/front-clothed.svg",
  11227. extra: 2201/2035 ,
  11228. bottom: 0.05
  11229. }
  11230. },
  11231. back: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(150, "lb"),
  11234. name: "Back",
  11235. image: {
  11236. source: "./media/characters/elyssia/back.svg",
  11237. extra: 2201/2035 ,
  11238. bottom: 0.013
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Smaller",
  11245. height: math.unit(150, "feet")
  11246. },
  11247. {
  11248. name: "Standard",
  11249. height: math.unit(1400, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Distracted",
  11254. height: math.unit(15000, "feet")
  11255. },
  11256. ]
  11257. )
  11258. };
  11259. characterMakers["Geno Maxwell"] = () => {
  11260. return makeCharacter(
  11261. "Geno Maxwell",
  11262. "Geckonori",
  11263. {
  11264. front: {
  11265. height: math.unit(7 + 4/12, "feet"),
  11266. weight: math.unit(500, "lb"),
  11267. name: "Front",
  11268. image: {
  11269. source: "./media/characters/geno-maxwell/front.svg",
  11270. extra: 2207/2040 ,
  11271. bottom: 0.015
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Micro",
  11278. height: math.unit(3, "inches")
  11279. },
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(7 + 4/12, "feet"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Macro",
  11287. height: math.unit(220, "feet")
  11288. },
  11289. {
  11290. name: "Megamacro",
  11291. height: math.unit(11, "miles")
  11292. },
  11293. ]
  11294. )
  11295. };
  11296. characterMakers["Regena Maxwell"] = () => {
  11297. return makeCharacter(
  11298. "Regena Maxwell",
  11299. "Geckonori",
  11300. {
  11301. front: {
  11302. height: math.unit(7 + 4/12, "feet"),
  11303. weight: math.unit(500, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/regena-maxwell/front.svg",
  11307. extra: 3115/2770 ,
  11308. bottom: 0.02
  11309. }
  11310. },
  11311. },
  11312. [
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(7 + 4/12, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(220, "feet")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(11, "miles")
  11325. },
  11326. ]
  11327. )
  11328. };
  11329. characterMakers["XGlidingDragonX"] = () => {
  11330. return makeCharacter(
  11331. "XGlidingDragonX",
  11332. "XGlidingDragonX",
  11333. {
  11334. front: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(150, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11340. extra: 860/690 ,
  11341. bottom: 0.03
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(1.7, "meters"),
  11349. default: true
  11350. },
  11351. ]
  11352. )
  11353. };
  11354. characterMakers["Quilly"] = () => {
  11355. return makeCharacter(
  11356. "Quilly",
  11357. "Jasmith",
  11358. {
  11359. front: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(150, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/quilly/front.svg",
  11365. extra: 890/776
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Gigamacro",
  11372. height: math.unit(404090, "miles"),
  11373. default: true
  11374. },
  11375. ]
  11376. )
  11377. };
  11378. characterMakers["Tempest"] = () => {
  11379. return makeCharacter(
  11380. "Tempest",
  11381. "XsomeoneX",
  11382. {
  11383. front: {
  11384. height: math.unit(7 + 8/12, "feet"),
  11385. weight: math.unit(350, "lb"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/tempest/front.svg",
  11389. extra: 1175/1086 ,
  11390. bottom: 0.02
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(7 + 8/12, "feet"),
  11398. default: true
  11399. },
  11400. ]
  11401. )
  11402. };
  11403. characterMakers["Rodger"] = () => {
  11404. return makeCharacter(
  11405. "Rodger",
  11406. "Guywithastupidname",
  11407. {
  11408. side: {
  11409. height: math.unit(4 + 5/12, "feet"),
  11410. weight: math.unit(80, "lb"),
  11411. name: "Side",
  11412. image: {
  11413. source: "./media/characters/rodger/side.svg",
  11414. extra: 1235/1118
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Micro",
  11421. height: math.unit(1, "inch")
  11422. },
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(4 + 5/12, "feet"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Macro",
  11430. height: math.unit(120, "feet")
  11431. },
  11432. ]
  11433. )
  11434. };
  11435. characterMakers["Danyel"] = () => {
  11436. return makeCharacter(
  11437. "Danyel",
  11438. "Danyelx",
  11439. {
  11440. front: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(150, "lb"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/danyel/front.svg",
  11446. extra: 1185/1123 ,
  11447. bottom: 0.05
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Shrunken",
  11454. height: math.unit(0.5, "mm")
  11455. },
  11456. {
  11457. name: "Micro",
  11458. height: math.unit(1, "mm"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Upsized",
  11463. height: math.unit(5 + 5/12, "feet")
  11464. },
  11465. ]
  11466. )
  11467. };
  11468. characterMakers["Vivian Bijoux"] = () => {
  11469. return makeCharacter(
  11470. "Vivian Bijoux",
  11471. "Geckonori",
  11472. {
  11473. front: {
  11474. height: math.unit(5 + 6/12, "feet"),
  11475. weight: math.unit(200, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/vivian-bijoux/front.svg",
  11479. extra: 1,
  11480. bottom: 0.072
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(5 + 6/12, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Bad Dream",
  11492. height: math.unit(500, "feet")
  11493. },
  11494. {
  11495. name: "Nightmare",
  11496. height: math.unit(500, "miles")
  11497. },
  11498. ]
  11499. )
  11500. };
  11501. characterMakers["Zeta"] = () => {
  11502. return makeCharacter(
  11503. "Zeta",
  11504. "thenerdherd102",
  11505. {
  11506. front: {
  11507. height: math.unit(6 + 1/12, "feet"),
  11508. weight: math.unit(260, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/zeta/front.svg",
  11512. extra: 1968/1889 ,
  11513. bottom: 0.06
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(6 + 1/12, "feet"),
  11518. weight: math.unit(260, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/zeta/back.svg",
  11522. extra: 1944/1858 ,
  11523. bottom: 0.03
  11524. }
  11525. },
  11526. hand: {
  11527. height: math.unit(1.112, "feet"),
  11528. name: "Hand",
  11529. image: {
  11530. source: "./media/characters/zeta/hand.svg"
  11531. }
  11532. },
  11533. foot: {
  11534. height: math.unit(1.48, "feet"),
  11535. name: "Foot",
  11536. image: {
  11537. source: "./media/characters/zeta/foot.svg"
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(6, "inches")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(6 + 1/12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(20, "feet")
  11554. },
  11555. ]
  11556. )
  11557. };
  11558. characterMakers["Jamie Larsen"] = () => {
  11559. return makeCharacter(
  11560. "Jamie Larsen",
  11561. "Mt_Jamie_Larsen",
  11562. {
  11563. front: {
  11564. height: math.unit(6, "feet"),
  11565. weight: math.unit(150, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/jamie-larsen/front.svg",
  11569. extra: 962/933 ,
  11570. bottom: 0.02
  11571. }
  11572. },
  11573. back: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Back",
  11577. image: {
  11578. source: "./media/characters/jamie-larsen/back.svg",
  11579. extra: 997/946
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(28 + 7/12, "feet"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Macro+",
  11591. height: math.unit(180, "feet")
  11592. },
  11593. {
  11594. name: "Megamacro",
  11595. height: math.unit(10, "miles")
  11596. },
  11597. {
  11598. name: "Gigamacro",
  11599. height: math.unit(200000, "miles")
  11600. },
  11601. ]
  11602. )
  11603. };
  11604. characterMakers["Vance"] = () => {
  11605. return makeCharacter(
  11606. "Vance",
  11607. "Neopuc",
  11608. {
  11609. front: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(120, "lb"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/vance/front.svg",
  11615. extra: 1980/1890 ,
  11616. bottom: 0.09
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(6, "feet"),
  11621. weight: math.unit(120, "lb"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/vance/back.svg",
  11625. extra: 2081/1994 ,
  11626. bottom: 0.014
  11627. }
  11628. },
  11629. hand: {
  11630. height: math.unit(0.88, "feet"),
  11631. name: "Hand",
  11632. image: {
  11633. source: "./media/characters/vance/hand.svg"
  11634. }
  11635. },
  11636. foot: {
  11637. height: math.unit(0.64, "feet"),
  11638. name: "Foot",
  11639. image: {
  11640. source: "./media/characters/vance/foot.svg"
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Small",
  11647. height: math.unit(90, "feet"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(100, "meters")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(15, "miles")
  11657. },
  11658. ]
  11659. )
  11660. };
  11661. characterMakers["Xochitl"] = () => {
  11662. return makeCharacter(
  11663. "Xochitl",
  11664. "Neopuc",
  11665. {
  11666. front: {
  11667. height: math.unit(6, "feet"),
  11668. weight: math.unit(180, "lb"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/xochitl/front.svg",
  11672. extra: 2297/2261 ,
  11673. bottom: 0.065
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(180, "lb"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/xochitl/back.svg",
  11682. extra: 2386/2354 ,
  11683. bottom: 0.01
  11684. }
  11685. },
  11686. foot: {
  11687. height: math.unit(6/5 * 1.15, "feet"),
  11688. weight: math.unit(150, "lb"),
  11689. name: "Foot",
  11690. image: {
  11691. source: "./media/characters/xochitl/foot.svg"
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Macro",
  11698. height: math.unit(80, "feet")
  11699. },
  11700. {
  11701. name: "Macro+",
  11702. height: math.unit(400, "feet"),
  11703. default: true
  11704. },
  11705. {
  11706. name: "Gigamacro",
  11707. height: math.unit(80000, "miles")
  11708. },
  11709. {
  11710. name: "Gigamacro+",
  11711. height: math.unit(400000, "miles")
  11712. },
  11713. {
  11714. name: "Teramacro",
  11715. height: math.unit(300, "AU")
  11716. },
  11717. ]
  11718. )
  11719. };
  11720. characterMakers["Vincent"] = () => {
  11721. return makeCharacter(
  11722. "Vincent",
  11723. "Neopuc",
  11724. {
  11725. front: {
  11726. height: math.unit(6, "feet"),
  11727. weight: math.unit(150, "lb"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/vincent/front.svg",
  11731. extra: 1130/1080 ,
  11732. bottom: 0.055
  11733. }
  11734. },
  11735. beak: {
  11736. height: math.unit(6 * 0.1, "feet"),
  11737. name: "Beak",
  11738. image: {
  11739. source: "./media/characters/vincent/beak.svg"
  11740. }
  11741. },
  11742. hand: {
  11743. height: math.unit(6 * 0.85, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Hand",
  11746. image: {
  11747. source: "./media/characters/vincent/hand.svg"
  11748. }
  11749. },
  11750. foot: {
  11751. height: math.unit(6 * 0.19, "feet"),
  11752. weight: math.unit(150, "lb"),
  11753. name: "Foot",
  11754. image: {
  11755. source: "./media/characters/vincent/foot.svg"
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Base",
  11762. height: math.unit(6 + 5/12, "feet"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Macro",
  11767. height: math.unit(300, "feet")
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(2, "miles")
  11772. },
  11773. {
  11774. name: "Gigamacro",
  11775. height: math.unit(1000, "miles")
  11776. },
  11777. ]
  11778. )
  11779. };
  11780. characterMakers["Jay"] = () => {
  11781. return makeCharacter(
  11782. "Jay",
  11783. "J-Forse",
  11784. {
  11785. front: {
  11786. height: math.unit(6 + 2/12, "feet"),
  11787. weight: math.unit(65, "lb"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/jay/front.svg",
  11791. extra: 1510/1430 ,
  11792. bottom: 0.042
  11793. }
  11794. },
  11795. back: {
  11796. height: math.unit(6 + 2/12, "feet"),
  11797. weight: math.unit(65, "lb"),
  11798. name: "Back",
  11799. image: {
  11800. source: "./media/characters/jay/back.svg",
  11801. extra: 1510/1430 ,
  11802. bottom: 0.025
  11803. }
  11804. },
  11805. clothed: {
  11806. height: math.unit(6 + 2/12, "feet"),
  11807. weight: math.unit(65, "lb"),
  11808. name: "Front (Clothed)",
  11809. image: {
  11810. source: "./media/characters/jay/clothed.svg",
  11811. extra: 744/699 ,
  11812. bottom: 0.043
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Micro",
  11819. height: math.unit(1, "inch")
  11820. },
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(6 + 2/12, "feet"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Macro",
  11828. height: math.unit(1, "mile")
  11829. },
  11830. {
  11831. name: "Megamacro",
  11832. height: math.unit(100, "miles")
  11833. },
  11834. ]
  11835. )
  11836. };
  11837. characterMakers["Coatl"] = () => {
  11838. return makeCharacter(
  11839. "Coatl",
  11840. "Jagaz",
  11841. {
  11842. front: {
  11843. height: math.unit(2, "meters"),
  11844. weight: math.unit(500 , "kg"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/coatl/front.svg",
  11848. extra: 3948 / 3500 ,
  11849. bottom: 0.082
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(4, "meters")
  11857. },
  11858. {
  11859. name: "Macro",
  11860. height: math.unit(100, "meters"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Macro+",
  11865. height: math.unit(300, "meters")
  11866. },
  11867. {
  11868. name: "Megamacro",
  11869. height: math.unit(3, "gigameters")
  11870. },
  11871. {
  11872. name: "Megamacro+",
  11873. height: math.unit(300, "terameters")
  11874. },
  11875. {
  11876. name: "Megamacro++",
  11877. height: math.unit(3, "lightyears")
  11878. },
  11879. ]
  11880. )
  11881. };
  11882. characterMakers["Shiroryu"] = () => {
  11883. return makeCharacter(
  11884. "Shiroryu",
  11885. "Roxas00137",
  11886. {
  11887. front: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(50, "kg"),
  11890. name: "front",
  11891. image: {
  11892. source: "./media/characters/shiroryu/front.svg",
  11893. extra: 1990/1935
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Mortal Mingling",
  11900. height: math.unit(3, "meters")
  11901. },
  11902. {
  11903. name: "Kaiju-ish",
  11904. height: math.unit(250, "meters")
  11905. },
  11906. {
  11907. name: "Somewhat Godly",
  11908. height: math.unit(400, "km"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Planetary",
  11913. height: math.unit(300, "megameters")
  11914. },
  11915. {
  11916. name: "Galaxy-dwarfing",
  11917. height: math.unit(450, "kiloparsecs")
  11918. },
  11919. {
  11920. name: "Universe Eater",
  11921. height: math.unit(150, "gigaparsecs")
  11922. },
  11923. {
  11924. name: "Almost Immeasurable",
  11925. height: math.unit(1.3e266, "yottaparsecs")
  11926. },
  11927. ]
  11928. )
  11929. };
  11930. characterMakers["Umeko"] = () => {
  11931. return makeCharacter(
  11932. "Umeko",
  11933. "Neopuc",
  11934. {
  11935. front: {
  11936. height: math.unit(6, "feet"),
  11937. weight: math.unit(150, "lb"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/umeko/front.svg",
  11941. extra: 1,
  11942. bottom: 0.019
  11943. }
  11944. },
  11945. frontArmored: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Front (Armored)",
  11949. image: {
  11950. source: "./media/characters/umeko/front-armored.svg",
  11951. extra: 1,
  11952. bottom: 0.021
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(220, "feet"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Guardian Dragon",
  11964. height: math.unit(50, "miles")
  11965. },
  11966. {
  11967. name: "Cosmic",
  11968. height: math.unit(800000, "miles")
  11969. },
  11970. ]
  11971. )
  11972. };
  11973. characterMakers["Cassidy"] = () => {
  11974. return makeCharacter(
  11975. "Cassidy",
  11976. "Neopuc",
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/cassidy/front.svg",
  11984. extra: 1,
  11985. bottom: 0.043
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Canon Height",
  11992. height: math.unit(120, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Macro+",
  11997. height: math.unit(400, "feet")
  11998. },
  11999. {
  12000. name: "Macro++",
  12001. height: math.unit(4000, "feet")
  12002. },
  12003. {
  12004. name: "Megamacro",
  12005. height: math.unit(3, "miles")
  12006. },
  12007. ]
  12008. )
  12009. };
  12010. characterMakers["Isaac"] = () => {
  12011. return makeCharacter(
  12012. "Isaac",
  12013. "Neopuc",
  12014. {
  12015. front: {
  12016. height: math.unit(6, "feet"),
  12017. weight: math.unit(150, "lb"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/isaac/front.svg",
  12021. extra: 896/815 ,
  12022. bottom: 0.11
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Human Size",
  12029. height: math.unit(8, "feet"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(400, "feet")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(50, "miles")
  12039. },
  12040. {
  12041. name: "Canon Height",
  12042. height: math.unit(200, "AU")
  12043. },
  12044. ]
  12045. )
  12046. };
  12047. characterMakers["Sleekit"] = () => {
  12048. return makeCharacter(
  12049. "Sleekit",
  12050. "AnAnonymousIndividual",
  12051. {
  12052. front: {
  12053. height: math.unit(6, "feet"),
  12054. weight: math.unit(72, "kg"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/sleekit/front.svg",
  12058. extra: 4693/4487 ,
  12059. bottom: 0.012
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Minimum Height",
  12066. height: math.unit(10, "meters")
  12067. },
  12068. {
  12069. name: "Smaller",
  12070. height: math.unit(25, "meters")
  12071. },
  12072. {
  12073. name: "Larger",
  12074. height: math.unit(38, "meters"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Maximum height",
  12079. height: math.unit(100, "meters")
  12080. },
  12081. ]
  12082. )
  12083. };
  12084. characterMakers["Nillia"] = () => {
  12085. return makeCharacter(
  12086. "Nillia",
  12087. "Neopuc",
  12088. {
  12089. front: {
  12090. height: math.unit(6, "feet"),
  12091. weight: math.unit(150, "lb"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/nillia/front.svg",
  12095. extra: 2195/2037 ,
  12096. bottom: 0.005
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(150, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/nillia/back.svg",
  12105. extra: 2195/2037 ,
  12106. bottom: 0.005
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Canon Height",
  12113. height: math.unit(489, "feet"),
  12114. default: true
  12115. }
  12116. ]
  12117. )
  12118. };
  12119. characterMakers["Mesmyriza"] = () => {
  12120. return makeCharacter(
  12121. "Mesmyriza",
  12122. "-fluffy-",
  12123. {
  12124. front: {
  12125. height: math.unit(6, "feet"),
  12126. weight: math.unit(150, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/mesmyriza/front.svg",
  12130. extra: 2067/1784 ,
  12131. bottom: 0.035
  12132. }
  12133. },
  12134. foot: {
  12135. height: math.unit(6/(250/35), "feet"),
  12136. name: "Foot",
  12137. image: {
  12138. source: "./media/characters/mesmyriza/foot.svg"
  12139. }
  12140. },
  12141. },
  12142. [
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(457, "meters"),
  12146. default: true
  12147. },
  12148. {
  12149. name: "Megamacro",
  12150. height: math.unit(8, "megameters")
  12151. },
  12152. ]
  12153. )
  12154. };
  12155. characterMakers["Saudade"] = () => {
  12156. return makeCharacter(
  12157. "Saudade",
  12158. "lordbo",
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(250, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/saudade/front.svg",
  12166. extra: 1172/1139 ,
  12167. bottom: 0.035
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Micro",
  12174. height: math.unit(3, "inches")
  12175. },
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(6, "feet"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(50, "feet")
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(2800, "feet")
  12188. },
  12189. ]
  12190. )
  12191. };
  12192. characterMakers["Keireer"] = () => {
  12193. return makeCharacter(
  12194. "Keireer",
  12195. "teedash",
  12196. {
  12197. front: {
  12198. height: math.unit(5 + 4/12, "feet"),
  12199. weight: math.unit(100, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/keireer/front.svg",
  12203. extra: 716/666 ,
  12204. bottom: 0.05
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(5 + 4/12, "feet"),
  12212. default: true
  12213. },
  12214. ]
  12215. )
  12216. };
  12217. characterMakers["Mirja"] = () => {
  12218. return makeCharacter(
  12219. "Mirja",
  12220. "vabad",
  12221. {
  12222. front: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(90, "kg"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/mirja/front.svg",
  12228. extra: 1789/1683 ,
  12229. bottom: 0.05
  12230. }
  12231. },
  12232. frontDressed: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(90, "lb"),
  12235. name: "Front (Dressed)",
  12236. image: {
  12237. source: "./media/characters/mirja/front-dressed.svg",
  12238. extra: 1789/1683 ,
  12239. bottom: 0.05
  12240. }
  12241. },
  12242. back: {
  12243. height: math.unit(6, "feet"),
  12244. weight: math.unit(90, "lb"),
  12245. name: "Back",
  12246. image: {
  12247. source: "./media/characters/mirja/back.svg",
  12248. extra: 953/917 ,
  12249. bottom: 0.017
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "\"Incognito\"",
  12256. height: math.unit(3, "meters")
  12257. },
  12258. {
  12259. name: "Strolling Size",
  12260. height: math.unit(15, "km")
  12261. },
  12262. {
  12263. name: "Larger Strolling Size",
  12264. height: math.unit(400, "km")
  12265. },
  12266. {
  12267. name: "Preferred Size",
  12268. height: math.unit(5000, "km")
  12269. },
  12270. {
  12271. name: "True Size",
  12272. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12273. default: true
  12274. },
  12275. ]
  12276. )
  12277. };
  12278. characterMakers["Nightraver"] = () => {
  12279. return makeCharacter(
  12280. "Nightraver",
  12281. "Nightraver",
  12282. {
  12283. front: {
  12284. height: math.unit(15, "feet"),
  12285. weight: math.unit(880, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/nightraver/front.svg",
  12289. extra: 2444/2160 ,
  12290. bottom: 0.027
  12291. }
  12292. },
  12293. back: {
  12294. height: math.unit(15, "feet"),
  12295. weight: math.unit(880, "kg"),
  12296. name: "Back",
  12297. image: {
  12298. source: "./media/characters/nightraver/back.svg",
  12299. extra: 2309/2180 ,
  12300. bottom: 0.005
  12301. }
  12302. },
  12303. sole: {
  12304. height: math.unit(2.878, "feet"),
  12305. name: "Sole",
  12306. image: {
  12307. source: "./media/characters/nightraver/sole.svg"
  12308. }
  12309. },
  12310. foot: {
  12311. height: math.unit(2.285, "feet"),
  12312. name: "Foot",
  12313. image: {
  12314. source: "./media/characters/nightraver/foot.svg"
  12315. }
  12316. },
  12317. maw: {
  12318. height: math.unit(2.67, "feet"),
  12319. name: "Maw",
  12320. image: {
  12321. source: "./media/characters/nightraver/maw.svg"
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Micro",
  12328. height: math.unit(1, "cm")
  12329. },
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(15, "feet"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Macro",
  12337. height: math.unit(300, "feet")
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(300, "miles")
  12342. },
  12343. {
  12344. name: "Gigamacro",
  12345. height: math.unit(10000, "miles")
  12346. },
  12347. ]
  12348. )
  12349. };
  12350. characterMakers["Arc"] = () => {
  12351. return makeCharacter(
  12352. "Arc",
  12353. "DinoKiddo",
  12354. {
  12355. side: {
  12356. height: math.unit(2, "inches"),
  12357. weight: math.unit(5, "grams"),
  12358. name: "Side",
  12359. image: {
  12360. source: "./media/characters/arc/side.svg"
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Micro",
  12367. height: math.unit(2, "inches"),
  12368. default: true
  12369. },
  12370. ]
  12371. )
  12372. };
  12373. characterMakers["Nebula Shahar"] = () => {
  12374. return makeCharacter(
  12375. "Nebula Shahar",
  12376. "Kypleo",
  12377. {
  12378. front: {
  12379. height: math.unit(1.1938, "meters"),
  12380. weight: math.unit(54, "kg"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/nebula-shahar/front.svg",
  12384. extra: 1642/1436 ,
  12385. bottom: 0.06
  12386. }
  12387. },
  12388. },
  12389. [
  12390. {
  12391. name: "Megamicro",
  12392. height: math.unit(0.3, "mm")
  12393. },
  12394. {
  12395. name: "Micro",
  12396. height: math.unit(3, "cm")
  12397. },
  12398. {
  12399. name: "Normal",
  12400. height: math.unit(138, "cm"),
  12401. default: true
  12402. },
  12403. {
  12404. name: "Macro",
  12405. height: math.unit(30, "m")
  12406. },
  12407. ]
  12408. )
  12409. };
  12410. characterMakers["Shayla"] = () => {
  12411. return makeCharacter(
  12412. "Shayla",
  12413. "Ziralkia",
  12414. {
  12415. front: {
  12416. height: math.unit(5.24, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/shayla/front.svg",
  12421. extra: 1512/1414 ,
  12422. bottom: 0.01
  12423. }
  12424. },
  12425. back: {
  12426. height: math.unit(5.24, "feet"),
  12427. weight: math.unit(150, "lb"),
  12428. name: "Back",
  12429. image: {
  12430. source: "./media/characters/shayla/back.svg",
  12431. extra: 1512/1414
  12432. }
  12433. },
  12434. hand: {
  12435. height: math.unit(0.7781496062992126, "feet"),
  12436. name: "Hand",
  12437. image: {
  12438. source: "./media/characters/shayla/hand.svg"
  12439. }
  12440. },
  12441. foot: {
  12442. height: math.unit(1.4206036745406823, "feet"),
  12443. name: "Foot",
  12444. image: {
  12445. source: "./media/characters/shayla/foot.svg"
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Micro",
  12452. height: math.unit(0.32, "feet")
  12453. },
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(5.24, "feet"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Macro",
  12461. height: math.unit(492.12, "feet")
  12462. },
  12463. {
  12464. name: "Megamacro",
  12465. height: math.unit(186.41, "miles")
  12466. },
  12467. ]
  12468. )
  12469. };
  12470. characterMakers["Pia Jr."] = () => {
  12471. return makeCharacter(
  12472. "Pia Jr.",
  12473. "Ziralkia",
  12474. {
  12475. front: {
  12476. height: math.unit(2.2, "m"),
  12477. weight: math.unit(120, "kg"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/pia-jr/front.svg",
  12481. extra: 1000/970 ,
  12482. bottom: 0.035
  12483. }
  12484. },
  12485. hand: {
  12486. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12487. name: "Hand",
  12488. image: {
  12489. source: "./media/characters/pia-jr/hand.svg"
  12490. }
  12491. },
  12492. paw: {
  12493. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12494. name: "Paw",
  12495. image: {
  12496. source: "./media/characters/pia-jr/paw.svg"
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(1.2, "cm")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(2.2, "m"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(180, "m")
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(420, "km")
  12517. },
  12518. ]
  12519. )
  12520. };
  12521. characterMakers["Pia Sr."] = () => {
  12522. return makeCharacter(
  12523. "Pia Sr.",
  12524. "Ziralkia",
  12525. {
  12526. front: {
  12527. height: math.unit(2, "m"),
  12528. weight: math.unit(115, "kg"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/pia-sr/front.svg",
  12532. extra: 760/730 ,
  12533. bottom: 0.015
  12534. }
  12535. },
  12536. back: {
  12537. height: math.unit(2, "m"),
  12538. weight: math.unit(115, "kg"),
  12539. name: "Back",
  12540. image: {
  12541. source: "./media/characters/pia-sr/back.svg",
  12542. extra: 760/730 ,
  12543. bottom: 0.01
  12544. }
  12545. },
  12546. hand: {
  12547. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12548. name: "Hand",
  12549. image: {
  12550. source: "./media/characters/pia-sr/hand.svg"
  12551. }
  12552. },
  12553. foot: {
  12554. height: math.unit(1.83, "feet"),
  12555. name: "Foot",
  12556. image: {
  12557. source: "./media/characters/pia-sr/foot.svg"
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Micro",
  12564. height: math.unit(88, "mm")
  12565. },
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(2, "m"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(200, "m")
  12574. },
  12575. {
  12576. name: "Megamacro",
  12577. height: math.unit(420, "km")
  12578. },
  12579. ]
  12580. )
  12581. };
  12582. characterMakers["KIBIBYTE"] = () => {
  12583. return makeCharacter(
  12584. "KIBIBYTE",
  12585. "gamefreak1215",
  12586. {
  12587. front: {
  12588. height: math.unit(8 + 2/12, "feet"),
  12589. weight: math.unit(300, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/kibibyte/front.svg",
  12593. extra: 2221/2098 ,
  12594. bottom: 0.04
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(8 + 2/12, "feet"),
  12602. default: true
  12603. },
  12604. {
  12605. name: "Socialable Macro",
  12606. height: math.unit(50, "feet")
  12607. },
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(300, "feet")
  12611. },
  12612. {
  12613. name: "Megamacro",
  12614. height: math.unit(500, "miles")
  12615. },
  12616. ]
  12617. )
  12618. };
  12619. characterMakers["Felix"] = () => {
  12620. return makeCharacter(
  12621. "Felix",
  12622. "MeanDumpsterCat",
  12623. {
  12624. front: {
  12625. height: math.unit(6, "feet"),
  12626. weight: math.unit(150, "lb"),
  12627. name: "Front",
  12628. image: {
  12629. source: "./media/characters/felix/front.svg",
  12630. extra: 762/722 ,
  12631. bottom: 0.02
  12632. }
  12633. },
  12634. frontClothed: {
  12635. height: math.unit(6, "feet"),
  12636. weight: math.unit(150, "lb"),
  12637. name: "Front (Clothed)",
  12638. image: {
  12639. source: "./media/characters/felix/front-clothed.svg",
  12640. extra: 762/722 ,
  12641. bottom: 0.02
  12642. }
  12643. },
  12644. },
  12645. [
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(6 + 8/12, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(2600, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(450, "miles")
  12658. },
  12659. ]
  12660. )
  12661. };
  12662. characterMakers["Tobo"] = () => {
  12663. return makeCharacter(
  12664. "Tobo",
  12665. "Naoya_Raichi",
  12666. {
  12667. front: {
  12668. height: math.unit(6 + 1/12, "feet"),
  12669. weight: math.unit(250, "lb"),
  12670. name: "Front",
  12671. image: {
  12672. source: "./media/characters/tobo/front.svg",
  12673. extra: 608/586 ,
  12674. bottom: 0.023
  12675. }
  12676. },
  12677. back: {
  12678. height: math.unit(6 + 1/12, "feet"),
  12679. weight: math.unit(250, "lb"),
  12680. name: "Back",
  12681. image: {
  12682. source: "./media/characters/tobo/back.svg",
  12683. extra: 608/586
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Nano",
  12690. height: math.unit(2, "nm")
  12691. },
  12692. {
  12693. name: "Megamicro",
  12694. height: math.unit(0.1, "mm")
  12695. },
  12696. {
  12697. name: "Micro",
  12698. height: math.unit(1, "inch"),
  12699. default: true
  12700. },
  12701. {
  12702. name: "Human-sized",
  12703. height: math.unit(6 + 1/12, "feet")
  12704. },
  12705. {
  12706. name: "Macro",
  12707. height: math.unit(250, "feet")
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(75, "miles")
  12712. },
  12713. {
  12714. name: "Texas-sized",
  12715. height: math.unit(750, "miles")
  12716. },
  12717. {
  12718. name: "Teramacro",
  12719. height: math.unit(50000, "miles")
  12720. },
  12721. ]
  12722. )
  12723. };
  12724. characterMakers["Danny Kapowsky"] = () => {
  12725. return makeCharacter(
  12726. "Danny Kapowsky",
  12727. "nh63879",
  12728. {
  12729. front: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(269, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/danny-kapowsky/front.svg",
  12735. extra: 766/736 ,
  12736. bottom: 0.044
  12737. }
  12738. },
  12739. back: {
  12740. height: math.unit(6, "feet"),
  12741. weight: math.unit(269, "lb"),
  12742. name: "Back",
  12743. image: {
  12744. source: "./media/characters/danny-kapowsky/back.svg",
  12745. extra: 797/760 ,
  12746. bottom: 0.025
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Macro",
  12753. height: math.unit(150, "feet"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Macro+",
  12758. height: math.unit(200, "feet")
  12759. },
  12760. {
  12761. name: "Macro++",
  12762. height: math.unit(300, "feet")
  12763. },
  12764. {
  12765. name: "Macro+++",
  12766. height: math.unit(400, "feet")
  12767. },
  12768. ]
  12769. )
  12770. };
  12771. characterMakers["Finn"] = () => {
  12772. return makeCharacter(
  12773. "Finn",
  12774. "Finn-The-Fennecfox",
  12775. {
  12776. side: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(170, "lb"),
  12779. name: "Side",
  12780. image: {
  12781. source: "./media/characters/finn/side.svg",
  12782. extra: 1953/1807 ,
  12783. bottom: 0.057
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Megamacro",
  12790. height: math.unit(14445, "feet"),
  12791. default: true
  12792. },
  12793. ]
  12794. )
  12795. };
  12796. characterMakers["Roy"] = () => {
  12797. return makeCharacter(
  12798. "Roy",
  12799. "dracodare",
  12800. {
  12801. front: {
  12802. height: math.unit(5 + 6/12, "feet"),
  12803. weight: math.unit(125, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/roy/front.svg",
  12807. extra: 1,
  12808. bottom: 0.11
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Micro",
  12815. height: math.unit(3, "inches"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(5 + 6/12, "feet")
  12821. },
  12822. {
  12823. name: "Lesser Macro",
  12824. height: math.unit(60, "feet")
  12825. },
  12826. {
  12827. name: "Greater Macro",
  12828. height: math.unit(120, "feet")
  12829. },
  12830. ]
  12831. )
  12832. };
  12833. characterMakers["Aevsivs"] = () => {
  12834. return makeCharacter(
  12835. "Aevsivs",
  12836. "Aevsivs",
  12837. {
  12838. front: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(100, "lb"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/aevsivs/front.svg",
  12844. extra: 1,
  12845. bottom: 0.03
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(100, "lb"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/aevsivs/back.svg"
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Micro",
  12860. height: math.unit(2, "inches"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(5, "feet")
  12866. },
  12867. ]
  12868. )
  12869. };
  12870. characterMakers["Hildegard"] = () => {
  12871. return makeCharacter(
  12872. "Hildegard",
  12873. "Fidchell",
  12874. {
  12875. front: {
  12876. height: math.unit(5 + 7/12, "feet"),
  12877. weight: math.unit(159, "lb"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/hildegard/front.svg",
  12881. extra: 312/286 ,
  12882. bottom: 0.005
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(5 + 7/12, "feet"),
  12890. default: true
  12891. },
  12892. ]
  12893. )
  12894. };
  12895. characterMakers["Bernard & Wilder"] = () => {
  12896. return makeCharacter(
  12897. "Bernard & Wilder",
  12898. "Fidchell",
  12899. {
  12900. bernard: {
  12901. height: math.unit(2 + 7/12, "feet"),
  12902. weight: math.unit(66, "lb"),
  12903. name: "Bernard",
  12904. rename: true,
  12905. image: {
  12906. source: "./media/characters/bernard-wilder/bernard.svg",
  12907. extra: 192/128 ,
  12908. bottom: 0.05
  12909. }
  12910. },
  12911. wilder: {
  12912. height: math.unit(5 + 8/12, "feet"),
  12913. weight: math.unit(143, "lb"),
  12914. name: "Wilder",
  12915. rename: true,
  12916. image: {
  12917. source: "./media/characters/bernard-wilder/wilder.svg",
  12918. extra: 361/312 ,
  12919. bottom: 0.02
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Normal",
  12926. height: math.unit(2 + 7/12, "feet"),
  12927. default: true
  12928. },
  12929. ]
  12930. )
  12931. };
  12932. characterMakers["Hearth"] = () => {
  12933. return makeCharacter(
  12934. "Hearth",
  12935. "Fidchell",
  12936. {
  12937. anthro: {
  12938. height: math.unit(6 + 1/12, "feet"),
  12939. weight: math.unit(155, "lb"),
  12940. name: "Anthro",
  12941. image: {
  12942. source: "./media/characters/hearth/anthro.svg",
  12943. extra: 260/250 ,
  12944. bottom: 0.02
  12945. }
  12946. },
  12947. feral: {
  12948. height: math.unit(3.78, "feet"),
  12949. weight: math.unit(35, "kg"),
  12950. name: "Feral",
  12951. image: {
  12952. source: "./media/characters/hearth/feral.svg",
  12953. extra: 153/135 ,
  12954. bottom: 0.03
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(6 + 1/12, "feet"),
  12962. default: true
  12963. },
  12964. ]
  12965. )
  12966. };
  12967. characterMakers["Ingrid"] = () => {
  12968. return makeCharacter(
  12969. "Ingrid",
  12970. "Fidchell",
  12971. {
  12972. front: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(182, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/ingrid/front.svg",
  12978. extra: 294/268 ,
  12979. bottom: 0.027
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(6, "feet"),
  12987. default: true
  12988. },
  12989. ]
  12990. )
  12991. };
  12992. characterMakers["Malgam"] = () => {
  12993. return makeCharacter(
  12994. "Malgam",
  12995. "Fidchell",
  12996. {
  12997. eevee: {
  12998. height: math.unit(2 + 10/12, "feet"),
  12999. weight: math.unit(86, "lb"),
  13000. name: "Malgam",
  13001. image: {
  13002. source: "./media/characters/malgam/eevee.svg",
  13003. extra: 218/180 ,
  13004. bottom: 0.2
  13005. }
  13006. },
  13007. sylveon: {
  13008. height: math.unit(4, "feet"),
  13009. weight: math.unit(101, "lb"),
  13010. name: "Future Malgam",
  13011. rename: true,
  13012. image: {
  13013. source: "./media/characters/malgam/sylveon.svg",
  13014. extra: 371/325 ,
  13015. bottom: 0.015
  13016. }
  13017. },
  13018. gigantamax: {
  13019. height: math.unit(50, "feet"),
  13020. name: "Gigantamax Malgam",
  13021. rename: true,
  13022. image: {
  13023. source: "./media/characters/malgam/gigantamax.svg"
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(2 + 10/12, "feet"),
  13031. default: true
  13032. },
  13033. ]
  13034. )
  13035. };
  13036. characterMakers["Fleur"] = () => {
  13037. return makeCharacter(
  13038. "Fleur",
  13039. "Fidchell",
  13040. {
  13041. front: {
  13042. height: math.unit(5 + 11/12, "feet"),
  13043. weight: math.unit(188, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/fleur/front.svg",
  13047. extra: 309/283 ,
  13048. bottom: 0.007
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(5 + 11/12, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. )
  13060. };
  13061. characterMakers["Jude"] = () => {
  13062. return makeCharacter(
  13063. "Jude",
  13064. "Fidchell",
  13065. {
  13066. front: {
  13067. height: math.unit(5 + 4/12, "feet"),
  13068. weight: math.unit(122, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/jude/front.svg",
  13072. extra: 288/273 ,
  13073. bottom: 0.03
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(5 + 4/12, "feet"),
  13081. default: true
  13082. },
  13083. ]
  13084. )
  13085. };
  13086. characterMakers["Seara"] = () => {
  13087. return makeCharacter(
  13088. "Seara",
  13089. "Fidchell",
  13090. {
  13091. front: {
  13092. height: math.unit(5 + 11/12, "feet"),
  13093. weight: math.unit(190, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/seara/front.svg",
  13097. extra: 1,
  13098. bottom: 0.05
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(5 + 11/12, "feet"),
  13106. default: true
  13107. },
  13108. ]
  13109. )
  13110. };
  13111. characterMakers["Caspian"] = () => {
  13112. return makeCharacter(
  13113. "Caspian",
  13114. "Fidchell",
  13115. {
  13116. front: {
  13117. height: math.unit(16 + 5/12, "feet"),
  13118. weight: math.unit(524, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/caspian/front.svg",
  13122. extra: 1,
  13123. bottom: 0.04
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Normal",
  13130. height: math.unit(16 + 5/12, "feet"),
  13131. default: true
  13132. },
  13133. ]
  13134. )
  13135. };
  13136. characterMakers["Mika"] = () => {
  13137. return makeCharacter(
  13138. "Mika",
  13139. "Fidchell",
  13140. {
  13141. front: {
  13142. height: math.unit(5 + 7/12, "feet"),
  13143. weight: math.unit(170, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/mika/front.svg",
  13147. extra: 1,
  13148. bottom: 0.016
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "Normal",
  13155. height: math.unit(5 + 7/12, "feet"),
  13156. default: true
  13157. },
  13158. ]
  13159. )
  13160. };
  13161. characterMakers["Sol"] = () => {
  13162. return makeCharacter(
  13163. "Sol",
  13164. "Fidchell",
  13165. {
  13166. front: {
  13167. height: math.unit(6 + 2/12, "feet"),
  13168. weight: math.unit(268, "lb"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/sol/front.svg",
  13172. extra: 247/231 ,
  13173. bottom: 0.05
  13174. }
  13175. },
  13176. },
  13177. [
  13178. {
  13179. name: "Normal",
  13180. height: math.unit(6 + 2/12, "feet"),
  13181. default: true
  13182. },
  13183. ]
  13184. )
  13185. };
  13186. characterMakers["Umiko"] = () => {
  13187. return makeCharacter(
  13188. "Umiko",
  13189. "Fidchell",
  13190. {
  13191. buizel: {
  13192. height: math.unit(2 + 5/12, "feet"),
  13193. weight: math.unit(87, "lb"),
  13194. name: "Buizel",
  13195. image: {
  13196. source: "./media/characters/umiko/buizel.svg",
  13197. extra: 172/157 ,
  13198. bottom: 0.01
  13199. }
  13200. },
  13201. floatzel: {
  13202. height: math.unit(5 + 9/12, "feet"),
  13203. weight: math.unit(250, "lb"),
  13204. name: "Floatzel",
  13205. image: {
  13206. source: "./media/characters/umiko/floatzel.svg",
  13207. extra: 262/248
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(2 + 5/12, "feet"),
  13215. default: true
  13216. },
  13217. ]
  13218. )
  13219. };
  13220. characterMakers["Iliac"] = () => {
  13221. return makeCharacter(
  13222. "Iliac",
  13223. "Fidchell",
  13224. {
  13225. front: {
  13226. height: math.unit(6 + 2/12, "feet"),
  13227. weight: math.unit(146, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/iliac/front.svg",
  13231. extra: 389/365 ,
  13232. bottom: 0.035
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Normal",
  13239. height: math.unit(6 + 2/12, "feet"),
  13240. default: true
  13241. },
  13242. ]
  13243. )
  13244. };
  13245. characterMakers["Topaz"] = () => {
  13246. return makeCharacter(
  13247. "Topaz",
  13248. "Fidchell",
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(170, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/topaz/front.svg",
  13256. extra: 317/303 ,
  13257. bottom: 0.055
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(6, "feet"),
  13265. default: true
  13266. },
  13267. ]
  13268. )
  13269. };
  13270. characterMakers["Gabriel"] = () => {
  13271. return makeCharacter(
  13272. "Gabriel",
  13273. "Fidchell",
  13274. {
  13275. front: {
  13276. height: math.unit(5 + 11/12, "feet"),
  13277. weight: math.unit(144, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/gabriel/front.svg",
  13281. extra: 285/262 ,
  13282. bottom: 0.004
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(5 + 11/12, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. )
  13294. };
  13295. characterMakers["Tempest (Suicune)"] = () => {
  13296. return makeCharacter(
  13297. "Tempest (Suicune)",
  13298. "Fidchell",
  13299. {
  13300. side: {
  13301. height: math.unit(6 + 5/12, "feet"),
  13302. weight: math.unit(300, "lb"),
  13303. name: "Side",
  13304. image: {
  13305. source: "./media/characters/tempest-suicune/side.svg",
  13306. extra: 195/154 ,
  13307. bottom: 0.04
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(6 + 5/12, "feet"),
  13315. default: true
  13316. },
  13317. ]
  13318. )
  13319. };
  13320. characterMakers["Vulcan"] = () => {
  13321. return makeCharacter(
  13322. "Vulcan",
  13323. "Fidchell",
  13324. {
  13325. front: {
  13326. height: math.unit(7 + 2/12, "feet"),
  13327. weight: math.unit(322, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/vulcan/front.svg",
  13331. extra: 154/147 ,
  13332. bottom: 0.04
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(7 + 2/12, "feet"),
  13340. default: true
  13341. },
  13342. ]
  13343. )
  13344. };
  13345. characterMakers["Gault"] = () => {
  13346. return makeCharacter(
  13347. "Gault",
  13348. "Fidchell",
  13349. {
  13350. front: {
  13351. height: math.unit(5 + 10/12, "feet"),
  13352. weight: math.unit(264, "lb"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/gault/front.svg",
  13356. extra: 161/140 ,
  13357. bottom: 0.028
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(5 + 10/12, "feet"),
  13365. default: true
  13366. },
  13367. ]
  13368. )
  13369. };
  13370. characterMakers["Shard"] = () => {
  13371. return makeCharacter(
  13372. "Shard",
  13373. "Fidchell",
  13374. {
  13375. front: {
  13376. height: math.unit(6, "feet"),
  13377. weight: math.unit(150, "lb"),
  13378. name: "Front",
  13379. image: {
  13380. source: "./media/characters/shard/front.svg",
  13381. extra: 273/238 ,
  13382. bottom: 0.02
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Normal",
  13389. height: math.unit(3 + 6/12, "feet"),
  13390. default: true
  13391. },
  13392. ]
  13393. )
  13394. };
  13395. characterMakers["Ashe"] = () => {
  13396. return makeCharacter(
  13397. "Ashe",
  13398. "Fidchell",
  13399. {
  13400. front: {
  13401. height: math.unit(5 + 11/12, "feet"),
  13402. weight: math.unit(146, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/ashe/front.svg",
  13406. extra: 400/373 ,
  13407. bottom: 0.01
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(5 + 11/12, "feet"),
  13415. default: true
  13416. },
  13417. ]
  13418. )
  13419. };
  13420. characterMakers["Beatrix"] = () => {
  13421. return makeCharacter(
  13422. "Beatrix",
  13423. "Fidchell",
  13424. {
  13425. front: {
  13426. height: math.unit(5 + 5/12, "feet"),
  13427. weight: math.unit(135, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/beatrix/front.svg",
  13431. extra: 392/379 ,
  13432. bottom: 0.01
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Normal",
  13439. height: math.unit(6, "feet"),
  13440. default: true
  13441. },
  13442. ]
  13443. )
  13444. };
  13445. characterMakers["Ignatius"] = () => {
  13446. return makeCharacter(
  13447. "Ignatius",
  13448. "Fidchell",
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/ignatius/front.svg",
  13456. extra: 245/222 ,
  13457. bottom: 0.01
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(5 + 5/12, "feet"),
  13465. default: true
  13466. },
  13467. ]
  13468. )
  13469. };
  13470. characterMakers["Mei Li"] = () => {
  13471. return makeCharacter(
  13472. "Mei Li",
  13473. "Fidchell",
  13474. {
  13475. front: {
  13476. height: math.unit(6 + 2/12, "feet"),
  13477. weight: math.unit(138, "lb"),
  13478. name: "Front",
  13479. image: {
  13480. source: "./media/characters/mei-li/front.svg",
  13481. extra: 237/229 ,
  13482. bottom: 0.03
  13483. }
  13484. },
  13485. },
  13486. [
  13487. {
  13488. name: "Normal",
  13489. height: math.unit(6 + 2/12, "feet"),
  13490. default: true
  13491. },
  13492. ]
  13493. )
  13494. };
  13495. characterMakers["Puru"] = () => {
  13496. return makeCharacter(
  13497. "Puru",
  13498. "Fidchell",
  13499. {
  13500. front: {
  13501. height: math.unit(2 + 4/12, "feet"),
  13502. weight: math.unit(62, "lb"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/puru/front.svg",
  13506. extra: 206/149 ,
  13507. bottom: 0.06
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(2 + 4/12, "feet"),
  13515. default: true
  13516. },
  13517. ]
  13518. )
  13519. };
  13520. characterMakers["Kee"] = () => {
  13521. return makeCharacter(
  13522. "Kee",
  13523. "AardwolfKee",
  13524. {
  13525. taur: {
  13526. height: math.unit(11, "feet"),
  13527. weight: math.unit(500, "lb"),
  13528. name: "Taur",
  13529. image: {
  13530. source: "./media/characters/kee/taur.svg",
  13531. extra: 1,
  13532. bottom: 0.04
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Normal",
  13539. height: math.unit(11, "feet"),
  13540. default: true
  13541. },
  13542. ]
  13543. )
  13544. };
  13545. characterMakers["Cobalt (Dracha)"] = () => {
  13546. return makeCharacter(
  13547. "Cobalt (Dracha)",
  13548. "Fidchell",
  13549. {
  13550. anthro: {
  13551. height: math.unit(7, "feet"),
  13552. weight: math.unit(190, "lb"),
  13553. name: "Anthro",
  13554. image: {
  13555. source: "./media/characters/cobalt-dracha/anthro.svg",
  13556. extra: 231/225 ,
  13557. bottom: 0.04
  13558. }
  13559. },
  13560. feral: {
  13561. height: math.unit(9 + 7/12, "feet"),
  13562. weight: math.unit(294, "lb"),
  13563. name: "Feral",
  13564. image: {
  13565. source: "./media/characters/cobalt-dracha/feral.svg",
  13566. extra: 692/633 ,
  13567. bottom: 0.05
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Normal",
  13574. height: math.unit(7, "feet"),
  13575. default: true
  13576. },
  13577. ]
  13578. )
  13579. };
  13580. characterMakers["Java"] = () => {
  13581. return makeCharacter(
  13582. "Java",
  13583. "Fidchell",
  13584. {
  13585. fallen: {
  13586. height: math.unit(11 + 8/12, "feet"),
  13587. weight: math.unit(485, "lb"),
  13588. name: "Java (Fallen)",
  13589. rename: true,
  13590. image: {
  13591. source: "./media/characters/java/fallen.svg",
  13592. extra: 226/208 ,
  13593. bottom: 0.005
  13594. }
  13595. },
  13596. godkin: {
  13597. height: math.unit(10 + 6/12, "feet"),
  13598. weight: math.unit(328, "lb"),
  13599. name: "Java (Godkin)",
  13600. rename: true,
  13601. image: {
  13602. source: "./media/characters/java/godkin.svg",
  13603. extra: 270/262 ,
  13604. bottom: 0.02
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(11 + 8/12, "feet"),
  13612. default: true
  13613. },
  13614. ]
  13615. )
  13616. };
  13617. characterMakers["Skoll"] = () => {
  13618. return makeCharacter(
  13619. "Skoll",
  13620. "Fidchell",
  13621. {
  13622. front: {
  13623. height: math.unit(7 + 8/12, "feet"),
  13624. weight: math.unit(320, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/skoll/front.svg",
  13628. extra: 232/220 ,
  13629. bottom: 0.02
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Normal",
  13636. height: math.unit(7 + 8/12, "feet"),
  13637. default: true
  13638. },
  13639. ]
  13640. )
  13641. };
  13642. characterMakers["Purna"] = () => {
  13643. return makeCharacter(
  13644. "Purna",
  13645. "Fidchell",
  13646. {
  13647. front: {
  13648. height: math.unit(5 + 9/12, "feet"),
  13649. weight: math.unit(170, "lb"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/purna/front.svg",
  13653. extra: 239/229 ,
  13654. bottom: 0.01
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(5 + 9/12, "feet"),
  13662. default: true
  13663. },
  13664. ]
  13665. )
  13666. };
  13667. characterMakers["Kuva"] = () => {
  13668. return makeCharacter(
  13669. "Kuva",
  13670. "Fidchell",
  13671. {
  13672. front: {
  13673. height: math.unit(5 + 9/12, "feet"),
  13674. weight: math.unit(142, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/kuva/front.svg",
  13678. extra: 281/271 ,
  13679. bottom: 0.006
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(5 + 9/12, "feet"),
  13687. default: true
  13688. },
  13689. ]
  13690. )
  13691. };
  13692. characterMakers["Embra"] = () => {
  13693. return makeCharacter(
  13694. "Embra",
  13695. "Fidchell",
  13696. {
  13697. anthro: {
  13698. height: math.unit(9 + 2/12, "feet"),
  13699. weight: math.unit(270, "lb"),
  13700. name: "Anthro",
  13701. image: {
  13702. source: "./media/characters/embra/anthro.svg",
  13703. extra: 200/187 ,
  13704. bottom: 0.02
  13705. }
  13706. },
  13707. feral: {
  13708. height: math.unit(18 + 8/12, "feet"),
  13709. weight: math.unit(576, "lb"),
  13710. name: "Feral",
  13711. image: {
  13712. source: "./media/characters/embra/feral.svg",
  13713. extra: 152/137 ,
  13714. bottom: 0.037
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(9 + 2/12, "feet"),
  13722. default: true
  13723. },
  13724. ]
  13725. )
  13726. };
  13727. characterMakers["Grottos"] = () => {
  13728. return makeCharacter(
  13729. "Grottos",
  13730. "Fidchell",
  13731. {
  13732. anthro: {
  13733. height: math.unit(10 + 9/12, "feet"),
  13734. weight: math.unit(224, "lb"),
  13735. name: "Anthro",
  13736. image: {
  13737. source: "./media/characters/grottos/anthro.svg",
  13738. extra: 350/332 ,
  13739. bottom: 0.045
  13740. }
  13741. },
  13742. feral: {
  13743. height: math.unit(20 + 7/12, "feet"),
  13744. weight: math.unit(629, "lb"),
  13745. name: "Feral",
  13746. image: {
  13747. source: "./media/characters/grottos/feral.svg",
  13748. extra: 207/190 ,
  13749. bottom: 0.05
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(10 + 9/12, "feet"),
  13757. default: true
  13758. },
  13759. ]
  13760. )
  13761. };
  13762. characterMakers["Frifna"] = () => {
  13763. return makeCharacter(
  13764. "Frifna",
  13765. "Fidchell",
  13766. {
  13767. anthro: {
  13768. height: math.unit(9 + 6/12, "feet"),
  13769. weight: math.unit(298, "lb"),
  13770. name: "Anthro",
  13771. image: {
  13772. source: "./media/characters/frifna/anthro.svg",
  13773. extra: 282/269 ,
  13774. bottom: 0.015
  13775. }
  13776. },
  13777. feral: {
  13778. height: math.unit(16 + 2/12, "feet"),
  13779. weight: math.unit(624, "lb"),
  13780. name: "Feral",
  13781. image: {
  13782. source: "./media/characters/frifna/feral.svg"
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(9 + 6/12, "feet"),
  13790. default: true
  13791. },
  13792. ]
  13793. )
  13794. };
  13795. characterMakers["Elise"] = () => {
  13796. return makeCharacter(
  13797. "Elise",
  13798. "Fidchell",
  13799. {
  13800. front: {
  13801. height: math.unit(6 + 2/12, "feet"),
  13802. weight: math.unit(168, "lb"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/elise/front.svg",
  13806. extra: 276/271
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(6 + 2/12, "feet"),
  13814. default: true
  13815. },
  13816. ]
  13817. )
  13818. };
  13819. characterMakers["Glade"] = () => {
  13820. return makeCharacter(
  13821. "Glade",
  13822. "Fidchell",
  13823. {
  13824. front: {
  13825. height: math.unit(5 + 10/12, "feet"),
  13826. weight: math.unit(210, "lb"),
  13827. name: "Front",
  13828. image: {
  13829. source: "./media/characters/glade/front.svg",
  13830. extra: 258/247 ,
  13831. bottom: 0.008
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(5 + 10/12, "feet"),
  13839. default: true
  13840. },
  13841. ]
  13842. )
  13843. };
  13844. characterMakers["Rina"] = () => {
  13845. return makeCharacter(
  13846. "Rina",
  13847. "Fidchell",
  13848. {
  13849. front: {
  13850. height: math.unit(5 + 10/12, "feet"),
  13851. weight: math.unit(129, "lb"),
  13852. name: "Front",
  13853. image: {
  13854. source: "./media/characters/rina/front.svg",
  13855. extra: 266/255 ,
  13856. bottom: 0.005
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(5 + 10/12, "feet"),
  13864. default: true
  13865. },
  13866. ]
  13867. )
  13868. };
  13869. characterMakers["Veronica"] = () => {
  13870. return makeCharacter(
  13871. "Veronica",
  13872. "Fidchell",
  13873. {
  13874. front: {
  13875. height: math.unit(6 + 1/12, "feet"),
  13876. weight: math.unit(192, "lb"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/veronica/front.svg",
  13880. extra: 319/309 ,
  13881. bottom: 0.005
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Normal",
  13888. height: math.unit(6 + 1/12, "feet"),
  13889. default: true
  13890. },
  13891. ]
  13892. )
  13893. };
  13894. characterMakers["Braxton"] = () => {
  13895. return makeCharacter(
  13896. "Braxton",
  13897. "jdolbear",
  13898. {
  13899. front: {
  13900. height: math.unit(9 + 3/12, "feet"),
  13901. weight: math.unit(1100, "lb"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/braxton/front.svg",
  13905. extra: 1057/984 ,
  13906. bottom: 0.05
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(9 + 3/12, "feet")
  13914. },
  13915. {
  13916. name: "Giant",
  13917. height: math.unit(300, "feet"),
  13918. default: true
  13919. },
  13920. {
  13921. name: "Macro",
  13922. height: math.unit(700, "feet")
  13923. },
  13924. {
  13925. name: "Megamacro",
  13926. height: math.unit(6000, "feet")
  13927. },
  13928. ]
  13929. )
  13930. };
  13931. characterMakers["Blue Feyonics"] = () => {
  13932. return makeCharacter(
  13933. "Blue Feyonics",
  13934. "bluefiremarkii",
  13935. {
  13936. front: {
  13937. height: math.unit(6 + 7/12, "feet"),
  13938. weight: math.unit(150, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/blue-feyonics/front.svg",
  13942. extra: 1403/1306 ,
  13943. bottom: 0.047
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(6 + 7/12, "feet"),
  13951. default: true
  13952. },
  13953. ]
  13954. )
  13955. };
  13956. characterMakers["Maxwell"] = () => {
  13957. return makeCharacter(
  13958. "Maxwell",
  13959. "Ruby_02",
  13960. {
  13961. front: {
  13962. height: math.unit(1.8, "meters"),
  13963. weight: math.unit(60, "kg"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/maxwell/front.svg",
  13967. extra: 2060/1873
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(1, "mm")
  13975. },
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(1.8, "meter"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(30, "meters")
  13984. },
  13985. {
  13986. name: "Megamacro",
  13987. height: math.unit(10, "km")
  13988. },
  13989. ]
  13990. )
  13991. };
  13992. characterMakers["Jack"] = () => {
  13993. return makeCharacter(
  13994. "Jack",
  13995. "Jasmith",
  13996. {
  13997. front: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/jack/front.svg",
  14003. extra: 1754/1640,
  14004. bottom: 0.01
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(80000, "feet"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Max size",
  14016. height: math.unit(10, "lightyears")
  14017. },
  14018. ]
  14019. )
  14020. };
  14021. characterMakers["Cafat"] = () => {
  14022. return makeCharacter(
  14023. "Cafat",
  14024. "Dalken",
  14025. {
  14026. upright: {
  14027. height: math.unit(7, "feet"),
  14028. weight: math.unit(170, "lb"),
  14029. name: "Upright",
  14030. image: {
  14031. source: "./media/characters/cafat/upright.svg",
  14032. bottom: 0.01
  14033. }
  14034. },
  14035. uprightFull: {
  14036. height: math.unit(7, "feet"),
  14037. weight: math.unit(170, "lb"),
  14038. name: "Upright (Full)",
  14039. image: {
  14040. source: "./media/characters/cafat/upright-full.svg",
  14041. bottom: 0.01
  14042. }
  14043. },
  14044. side: {
  14045. height: math.unit(5, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Side",
  14048. image: {
  14049. source: "./media/characters/cafat/side.svg"
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Small",
  14056. height: math.unit(7, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Large",
  14061. height: math.unit(15.5, "feet")
  14062. },
  14063. ]
  14064. )
  14065. };
  14066. characterMakers["Verin Raharra"] = () => {
  14067. return makeCharacter(
  14068. "Verin Raharra",
  14069. "Virgo113",
  14070. {
  14071. front: {
  14072. height: math.unit(6, "feet"),
  14073. weight: math.unit(150, "lb"),
  14074. name: "Front",
  14075. image: {
  14076. source: "./media/characters/verin-raharra/front.svg",
  14077. extra: 5019/4835,
  14078. bottom: 0.023
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(7 + 5/12, "feet"),
  14086. default: true
  14087. },
  14088. {
  14089. name: "Upsized",
  14090. height: math.unit(20, "feet")
  14091. },
  14092. ]
  14093. )
  14094. };
  14095. characterMakers["Nakata"] = () => {
  14096. return makeCharacter(
  14097. "Nakata",
  14098. "Dalken",
  14099. {
  14100. front: {
  14101. height: math.unit(7, "feet"),
  14102. weight: math.unit(230, "lb"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/nakata/front.svg",
  14106. extra: 1.005,
  14107. bottom: 0.01
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(7, "feet"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Big",
  14119. height: math.unit(14, "feet")
  14120. },
  14121. {
  14122. name: "Macro",
  14123. height: math.unit(400, "feet")
  14124. },
  14125. ]
  14126. )
  14127. };
  14128. characterMakers["Lily"] = () => {
  14129. return makeCharacter(
  14130. "Lily",
  14131. "nexcg",
  14132. {
  14133. front: {
  14134. height: math.unit(4.91, "feet"),
  14135. weight: math.unit(100, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/lily/front.svg",
  14139. extra: 1585/1415,
  14140. bottom: 0.02
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(4.91, "feet"),
  14148. default: true
  14149. },
  14150. ]
  14151. )
  14152. };
  14153. characterMakers["Sheila"] = () => {
  14154. return makeCharacter(
  14155. "Sheila",
  14156. "Miststalker",
  14157. {
  14158. laying: {
  14159. height: math.unit(4 + 4/12, "feet"),
  14160. weight: math.unit(600, "lb"),
  14161. name: "Laying",
  14162. image: {
  14163. source: "./media/characters/sheila/laying.svg",
  14164. extra: 1333/1265,
  14165. bottom: 0.16
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(4 + 4/12, "feet"),
  14173. default: true
  14174. },
  14175. ]
  14176. )
  14177. };
  14178. characterMakers["Sax"] = () => {
  14179. return makeCharacter(
  14180. "Sax",
  14181. "Counts-His-Toes",
  14182. {
  14183. front: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(190, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/sax/front.svg",
  14189. extra: 1187/973,
  14190. bottom: 0.042
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(4, "inches"),
  14198. default: true
  14199. },
  14200. ]
  14201. )
  14202. };
  14203. characterMakers["Pandora"] = () => {
  14204. return makeCharacter(
  14205. "Pandora",
  14206. "Pandora's Fox",
  14207. {
  14208. front: {
  14209. height: math.unit(6, "feet"),
  14210. weight: math.unit(150, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/pandora/front.svg",
  14214. extra: 2720/2556,
  14215. bottom: 0.015
  14216. }
  14217. },
  14218. back: {
  14219. height: math.unit(6, "feet"),
  14220. weight: math.unit(150, "lb"),
  14221. name: "Back",
  14222. image: {
  14223. source: "./media/characters/pandora/back.svg",
  14224. extra: 2720/2556,
  14225. bottom: 0.01
  14226. }
  14227. },
  14228. beans: {
  14229. height: math.unit(6/8, "feet"),
  14230. name: "Beans",
  14231. image: {
  14232. source: "./media/characters/pandora/beans.svg"
  14233. }
  14234. },
  14235. skirt: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Skirt",
  14239. image: {
  14240. source: "./media/characters/pandora/skirt.svg",
  14241. extra: 1622/1525,
  14242. bottom: 0.015
  14243. }
  14244. },
  14245. hoodie: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(150, "lb"),
  14248. name: "Hoodie",
  14249. image: {
  14250. source: "./media/characters/pandora/hoodie.svg",
  14251. extra: 1622/1525,
  14252. bottom: 0.015
  14253. }
  14254. },
  14255. casual: {
  14256. height: math.unit(6, "feet"),
  14257. weight: math.unit(150, "lb"),
  14258. name: "Casual",
  14259. image: {
  14260. source: "./media/characters/pandora/casual.svg",
  14261. extra: 1622/1525,
  14262. bottom: 0.015
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(6, "feet")
  14270. },
  14271. {
  14272. name: "Big Steppy",
  14273. height: math.unit(1, "km"),
  14274. default: true
  14275. },
  14276. ]
  14277. )
  14278. };
  14279. characterMakers["Venio Darcony"] = () => {
  14280. return makeCharacter(
  14281. "Venio Darcony",
  14282. "redblackdragon",
  14283. {
  14284. side: {
  14285. height: math.unit(10, "feet"),
  14286. weight: math.unit(800, "kg"),
  14287. name: "Side",
  14288. image: {
  14289. source: "./media/characters/venio-darcony/side.svg",
  14290. extra: 1373/1003,
  14291. bottom: 0.037
  14292. }
  14293. },
  14294. front: {
  14295. height: math.unit(19, "feet"),
  14296. weight: math.unit(800, "kg"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/venio-darcony/front.svg"
  14300. }
  14301. },
  14302. back: {
  14303. height: math.unit(19, "feet"),
  14304. weight: math.unit(800, "kg"),
  14305. name: "Back",
  14306. image: {
  14307. source: "./media/characters/venio-darcony/back.svg"
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(10, "feet")
  14315. },
  14316. {
  14317. name: "Macro",
  14318. height: math.unit(130, "feet"),
  14319. default: true
  14320. },
  14321. {
  14322. name: "Macro+",
  14323. height: math.unit(240, "feet")
  14324. },
  14325. ]
  14326. )
  14327. };
  14328. characterMakers["Veski"] = () => {
  14329. return makeCharacter(
  14330. "Veski",
  14331. "Veski",
  14332. {
  14333. front: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Front",
  14337. image: {
  14338. source: "./media/characters/veski/front.svg",
  14339. extra: 1299/1225,
  14340. bottom: 0.04
  14341. }
  14342. },
  14343. back: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Back",
  14347. image: {
  14348. source: "./media/characters/veski/back.svg",
  14349. extra: 1299/1225,
  14350. bottom: 0.008
  14351. }
  14352. },
  14353. maw: {
  14354. height: math.unit(1.5 * 1.21, "feet"),
  14355. name: "Maw",
  14356. image: {
  14357. source: "./media/characters/veski/maw.svg"
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Macro",
  14364. height: math.unit(2, "km"),
  14365. default: true
  14366. },
  14367. ]
  14368. )
  14369. };
  14370. characterMakers["Isabelle"] = () => {
  14371. return makeCharacter(
  14372. "Isabelle",
  14373. "evilwithin",
  14374. {
  14375. front: {
  14376. height: math.unit(5 + 7/12, "feet"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/isabelle/front.svg",
  14380. extra: 2130/1976,
  14381. bottom: 0.05
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Supermicro",
  14388. height: math.unit(10, "micrometers")
  14389. },
  14390. {
  14391. name: "Micro",
  14392. height: math.unit(1, "inch")
  14393. },
  14394. {
  14395. name: "Tiny",
  14396. height: math.unit(5, "inches")
  14397. },
  14398. {
  14399. name: "Standard",
  14400. height: math.unit(5 + 7/12, "inches")
  14401. },
  14402. {
  14403. name: "Macro",
  14404. height: math.unit(80, "meters"),
  14405. default: true
  14406. },
  14407. {
  14408. name: "Megamacro",
  14409. height: math.unit(250, "meters")
  14410. },
  14411. {
  14412. name: "Gigamacro",
  14413. height: math.unit(5, "km")
  14414. },
  14415. {
  14416. name: "Cosmic",
  14417. height: math.unit(2.5e6, "miles")
  14418. },
  14419. ]
  14420. )
  14421. };
  14422. characterMakers["Hanzo"] = () => {
  14423. return makeCharacter(
  14424. "Hanzo",
  14425. "dragondruid",
  14426. {
  14427. front: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/hanzo/front.svg",
  14433. extra: 374/344,
  14434. bottom: 0.02
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(8, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. )
  14446. };
  14447. characterMakers["Anna"] = () => {
  14448. return makeCharacter(
  14449. "Anna",
  14450. "dragondruid",
  14451. {
  14452. front: {
  14453. height: math.unit(7, "feet"),
  14454. weight: math.unit(130, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/anna/front.svg",
  14458. extra: 169/145,
  14459. bottom: 0.06
  14460. }
  14461. },
  14462. full: {
  14463. height: math.unit(4.96, "feet"),
  14464. weight: math.unit(220, "lb"),
  14465. name: "Full",
  14466. image: {
  14467. source: "./media/characters/anna/full.svg",
  14468. extra: 138/114,
  14469. bottom: 0.15
  14470. }
  14471. },
  14472. tongue: {
  14473. height: math.unit(2.53, "feet"),
  14474. name: "Tongue",
  14475. image: {
  14476. source: "./media/characters/anna/tongue.svg"
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(7, "feet"),
  14484. default: true
  14485. },
  14486. ]
  14487. )
  14488. };
  14489. characterMakers["Ian Corvid"] = () => {
  14490. return makeCharacter(
  14491. "Ian Corvid",
  14492. "IanCorvid",
  14493. {
  14494. front: {
  14495. height: math.unit(7, "feet"),
  14496. weight: math.unit(150, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/ian-corvid/front.svg",
  14500. extra: 150/142,
  14501. bottom: 0.02
  14502. }
  14503. },
  14504. back: {
  14505. height: math.unit(7, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Back",
  14508. image: {
  14509. source: "./media/characters/ian-corvid/back.svg",
  14510. extra: 150/143,
  14511. bottom: 0.01
  14512. }
  14513. },
  14514. stomping: {
  14515. height: math.unit(7, "feet"),
  14516. weight: math.unit(150, "lb"),
  14517. name: "Stomping",
  14518. image: {
  14519. source: "./media/characters/ian-corvid/stomping.svg",
  14520. extra: 76/72
  14521. }
  14522. },
  14523. sitting: {
  14524. height: math.unit(7/1.8, "feet"),
  14525. weight: math.unit(150, "lb"),
  14526. name: "Sitting",
  14527. image: {
  14528. source: "./media/characters/ian-corvid/sitting.svg",
  14529. extra: 1400/1269,
  14530. bottom: 0.15
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Tiny Microw",
  14537. height: math.unit(1, "inch")
  14538. },
  14539. {
  14540. name: "Microw",
  14541. height: math.unit(6, "inches")
  14542. },
  14543. {
  14544. name: "Crow",
  14545. height: math.unit(7 + 1/12, "feet"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Macrow",
  14550. height: math.unit(176, "feet")
  14551. },
  14552. ]
  14553. )
  14554. };
  14555. characterMakers["Natalie Kellon"] = () => {
  14556. return makeCharacter(
  14557. "Natalie Kellon",
  14558. "lestrange110",
  14559. {
  14560. front: {
  14561. height: math.unit(5 + 7/12, "feet"),
  14562. weight: math.unit(147, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/natalie-kellon/front.svg",
  14566. extra: 1214/1141,
  14567. bottom: 0.02
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Micro",
  14574. height: math.unit(1/16, "inch")
  14575. },
  14576. {
  14577. name: "Tiny",
  14578. height: math.unit(4, "inches")
  14579. },
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(5 + 7/12, "feet"),
  14583. default: true
  14584. },
  14585. {
  14586. name: "Amazon",
  14587. height: math.unit(12, "feet")
  14588. },
  14589. {
  14590. name: "Giantess",
  14591. height: math.unit(160, "meters")
  14592. },
  14593. {
  14594. name: "Titaness",
  14595. height: math.unit(800, "meters")
  14596. },
  14597. ]
  14598. )
  14599. };
  14600. characterMakers["Alluria"] = () => {
  14601. return makeCharacter(
  14602. "Alluria",
  14603. "Sir--Raptor",
  14604. {
  14605. front: {
  14606. height: math.unit(6, "feet"),
  14607. weight: math.unit(150, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/alluria/front.svg",
  14611. extra: 806/738,
  14612. bottom: 0.01
  14613. }
  14614. },
  14615. side: {
  14616. height: math.unit(6, "feet"),
  14617. weight: math.unit(150, "lb"),
  14618. name: "Side",
  14619. image: {
  14620. source: "./media/characters/alluria/side.svg",
  14621. extra: 800/750,
  14622. }
  14623. },
  14624. back: {
  14625. height: math.unit(6, "feet"),
  14626. weight: math.unit(150, "lb"),
  14627. name: "Back",
  14628. image: {
  14629. source: "./media/characters/alluria/back.svg",
  14630. extra: 806/738,
  14631. }
  14632. },
  14633. frontMaid: {
  14634. height: math.unit(6, "feet"),
  14635. weight: math.unit(150, "lb"),
  14636. name: "Front (Maid)",
  14637. image: {
  14638. source: "./media/characters/alluria/front-maid.svg",
  14639. extra: 806/738,
  14640. bottom: 0.01
  14641. }
  14642. },
  14643. sideMaid: {
  14644. height: math.unit(6, "feet"),
  14645. weight: math.unit(150, "lb"),
  14646. name: "Side (Maid)",
  14647. image: {
  14648. source: "./media/characters/alluria/side-maid.svg",
  14649. extra: 800/750,
  14650. bottom: 0.005
  14651. }
  14652. },
  14653. backMaid: {
  14654. height: math.unit(6, "feet"),
  14655. weight: math.unit(150, "lb"),
  14656. name: "Back (Maid)",
  14657. image: {
  14658. source: "./media/characters/alluria/back-maid.svg",
  14659. extra: 806/738,
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Micro",
  14666. height: math.unit(6, "inches"),
  14667. default: true
  14668. },
  14669. ]
  14670. )
  14671. };
  14672. characterMakers["Kyle"] = () => {
  14673. return makeCharacter(
  14674. "Kyle",
  14675. "Jasmith",
  14676. {
  14677. front: {
  14678. height: math.unit(6, "feet"),
  14679. weight: math.unit(150, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/kyle/front.svg",
  14683. extra: 1069/962,
  14684. bottom: 77.228/1727.45
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Macro",
  14691. height: math.unit(150, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. )
  14696. };
  14697. characterMakers["Duncan"] = () => {
  14698. return makeCharacter(
  14699. "Duncan",
  14700. "Duncan",
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(300, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/duncan/front.svg",
  14708. extra: 1650/1482,
  14709. bottom: 0.05
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Macro",
  14716. height: math.unit(100, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. )
  14721. };
  14722. characterMakers["Memory"] = () => {
  14723. return makeCharacter(
  14724. "Memory",
  14725. "boringcactus",
  14726. {
  14727. front: {
  14728. height: math.unit(5 + 4/12, "feet"),
  14729. weight: math.unit(220, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/memory/front.svg",
  14733. extra: 3641/3545,
  14734. bottom: 0.03
  14735. }
  14736. },
  14737. back: {
  14738. height: math.unit(5 + 4/12, "feet"),
  14739. weight: math.unit(220, "lb"),
  14740. name: "Back",
  14741. image: {
  14742. source: "./media/characters/memory/back.svg",
  14743. extra: 3641/3545,
  14744. bottom: 0.025
  14745. }
  14746. },
  14747. frontSkirt: {
  14748. height: math.unit(5 + 4/12, "feet"),
  14749. weight: math.unit(220, "lb"),
  14750. name: "Front (Skirt)",
  14751. image: {
  14752. source: "./media/characters/memory/front-skirt.svg",
  14753. extra: 3641/3545,
  14754. bottom: 0.03
  14755. }
  14756. },
  14757. frontDress: {
  14758. height: math.unit(5 + 4/12, "feet"),
  14759. weight: math.unit(220, "lb"),
  14760. name: "Front (Dress)",
  14761. image: {
  14762. source: "./media/characters/memory/front-dress.svg",
  14763. extra: 3641/3545,
  14764. bottom: 0.03
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Micro",
  14771. height: math.unit(6, "inches"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(5 + 4/12, "feet")
  14777. },
  14778. ]
  14779. )
  14780. };
  14781. characterMakers["Luno"] = () => {
  14782. return makeCharacter(
  14783. "Luno",
  14784. "Jamesy",
  14785. {
  14786. front: {
  14787. height: math.unit(4 + 11/12, "feet"),
  14788. weight: math.unit(100, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/luno/front.svg",
  14792. extra: 1535/1487,
  14793. bottom: 0.03
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Micro",
  14800. height: math.unit(3, "inches")
  14801. },
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(4 + 11/12, "feet"),
  14805. default: true
  14806. },
  14807. {
  14808. name: "Macro",
  14809. height: math.unit(300, "feet")
  14810. },
  14811. {
  14812. name: "Megamacro",
  14813. height: math.unit(700, "miles")
  14814. },
  14815. ]
  14816. )
  14817. };
  14818. characterMakers["Jamesy"] = () => {
  14819. return makeCharacter(
  14820. "Jamesy",
  14821. "Jamesy",
  14822. {
  14823. front: {
  14824. height: math.unit(6 + 2/12, "feet"),
  14825. weight: math.unit(170, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/jamesy/front.svg",
  14829. extra: 440/382,
  14830. bottom: 0.005
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Micro",
  14837. height: math.unit(3, "inches")
  14838. },
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(6 + 2/12, "feet"),
  14842. default: true
  14843. },
  14844. {
  14845. name: "Macro",
  14846. height: math.unit(300, "feet")
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(700, "miles")
  14851. },
  14852. ]
  14853. )
  14854. };
  14855. characterMakers["Mark"] = () => {
  14856. return makeCharacter(
  14857. "Mark",
  14858. "ich",
  14859. {
  14860. front: {
  14861. height: math.unit(6, "feet"),
  14862. weight: math.unit(160, "lb"),
  14863. name: "Front",
  14864. image: {
  14865. source: "./media/characters/mark/front.svg",
  14866. extra: 3300/3100,
  14867. bottom: 136.42/3440.47
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(120, "meters")
  14875. },
  14876. {
  14877. name: "Bigger Macro",
  14878. height: math.unit(350, "meters")
  14879. },
  14880. {
  14881. name: "Megamacro",
  14882. height: math.unit(8, "km"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Continental",
  14887. height: math.unit(4550, "km")
  14888. },
  14889. {
  14890. name: "Planetary",
  14891. height: math.unit(65000, "km")
  14892. },
  14893. ]
  14894. )
  14895. };
  14896. characterMakers["Mac"] = () => {
  14897. return makeCharacter(
  14898. "Mac",
  14899. "Macroceli",
  14900. {
  14901. front: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(400, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/mac/front.svg",
  14907. extra: 1048/987.7,
  14908. bottom: 60/1107.6,
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Macro",
  14915. height: math.unit(500, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. )
  14920. };
  14921. characterMakers["Bari"] = () => {
  14922. return makeCharacter(
  14923. "Bari",
  14924. "Bariamph",
  14925. {
  14926. front: {
  14927. height: math.unit(5 + 2/12, "feet"),
  14928. weight: math.unit(190, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/bari/front.svg",
  14932. extra: 3156/2880,
  14933. bottom: 0.03
  14934. }
  14935. },
  14936. back: {
  14937. height: math.unit(5 + 2/12, "feet"),
  14938. weight: math.unit(190, "lb"),
  14939. name: "Back",
  14940. image: {
  14941. source: "./media/characters/bari/back.svg",
  14942. extra: 3260/2834,
  14943. bottom: 0.025
  14944. }
  14945. },
  14946. frontPlush: {
  14947. height: math.unit(5 + 2/12, "feet"),
  14948. weight: math.unit(190, "lb"),
  14949. name: "Front (Plush)",
  14950. image: {
  14951. source: "./media/characters/bari/front-plush.svg",
  14952. extra: 1112/1061,
  14953. bottom: 0.002
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Micro",
  14960. height: math.unit(3, "inches")
  14961. },
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(5 + 2/12, "feet"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Macro",
  14969. height: math.unit(20, "feet")
  14970. },
  14971. ]
  14972. )
  14973. };
  14974. characterMakers["Hunter Misha Raven"] = () => {
  14975. return makeCharacter(
  14976. "Hunter Misha Raven",
  14977. "ashtrek",
  14978. {
  14979. front: {
  14980. height: math.unit(6 + 1/12, "feet"),
  14981. weight: math.unit(275, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/hunter-misha-raven/front.svg"
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Mortal",
  14991. height: math.unit(6 + 1/12, "feet")
  14992. },
  14993. {
  14994. name: "Divine",
  14995. height: math.unit(1.12134e34, "parsecs"),
  14996. default: true
  14997. },
  14998. ]
  14999. )
  15000. };
  15001. characterMakers["Max Calore"] = () => {
  15002. return makeCharacter(
  15003. "Max Calore",
  15004. "flamestar",
  15005. {
  15006. front: {
  15007. height: math.unit(6 + 3/12, "feet"),
  15008. weight: math.unit(220, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/max-calore/front.svg",
  15012. extra: 1700/1648,
  15013. bottom: 0.01
  15014. }
  15015. },
  15016. back: {
  15017. height: math.unit(6 + 3/12, "feet"),
  15018. weight: math.unit(220, "lb"),
  15019. name: "Back",
  15020. image: {
  15021. source: "./media/characters/max-calore/back.svg",
  15022. extra: 1700/1648,
  15023. bottom: 0.01
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Normal",
  15030. height: math.unit(6 + 3/12, "feet"),
  15031. default: true
  15032. },
  15033. ]
  15034. )
  15035. };
  15036. characterMakers["Aspen"] = () => {
  15037. return makeCharacter(
  15038. "Aspen",
  15039. "Fidchell",
  15040. {
  15041. side: {
  15042. height: math.unit(2 + 8/12, "feet"),
  15043. weight: math.unit(99, "lb"),
  15044. name: "Side",
  15045. image: {
  15046. source: "./media/characters/aspen/side.svg",
  15047. extra: 152/138,
  15048. bottom: 0.032
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(2 + 8/12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. )
  15060. };
  15061. characterMakers["Sheila (Wolf)"] = () => {
  15062. return makeCharacter(
  15063. "Sheila (Wolf)",
  15064. "Fidchell",
  15065. {
  15066. side: {
  15067. height: math.unit(3 + 2/12, "feet"),
  15068. weight: math.unit(224, "lb"),
  15069. name: "Side",
  15070. image: {
  15071. source: "./media/characters/sheila-wolf/side.svg",
  15072. extra: 179/166,
  15073. bottom: 0.03
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(3 + 2/12, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. )
  15085. };
  15086. characterMakers["Michelle"] = () => {
  15087. return makeCharacter(
  15088. "Michelle",
  15089. "Fidchell",
  15090. {
  15091. side: {
  15092. height: math.unit(1 + 9/12, "feet"),
  15093. weight: math.unit(38, "lb"),
  15094. name: "Side",
  15095. image: {
  15096. source: "./media/characters/michelle/side.svg",
  15097. extra: 147/136.7,
  15098. bottom: 0.03
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(1 + 9/12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. )
  15110. };
  15111. characterMakers["Nino"] = () => {
  15112. return makeCharacter(
  15113. "Nino",
  15114. "Fidchell",
  15115. {
  15116. front: {
  15117. height: math.unit(1 + 1/12, "feet"),
  15118. weight: math.unit(18, "lb"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/nino/front.svg"
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(1 + 1/12, "feet"),
  15129. default: true
  15130. },
  15131. ]
  15132. )
  15133. };
  15134. characterMakers["Viola"] = () => {
  15135. return makeCharacter(
  15136. "Viola",
  15137. "Fidchell",
  15138. {
  15139. front: {
  15140. height: math.unit(1, "feet"),
  15141. weight: math.unit(16, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/viola/front.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(1, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. )
  15156. };
  15157. characterMakers["Atlas"] = () => {
  15158. return makeCharacter(
  15159. "Atlas",
  15160. "Fidchell",
  15161. {
  15162. front: {
  15163. height: math.unit(6 + 5/12, "feet"),
  15164. weight: math.unit(580, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/atlas/front.svg",
  15168. extra: 298.5/290,
  15169. bottom: 0.015
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(6 + 5/12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. )
  15181. };
  15182. characterMakers["Davy"] = () => {
  15183. return makeCharacter(
  15184. "Davy",
  15185. "Fidchell",
  15186. {
  15187. side: {
  15188. height: math.unit(1 + 10/12, "feet"),
  15189. weight: math.unit(25, "lb"),
  15190. name: "Side",
  15191. image: {
  15192. source: "./media/characters/davy/side.svg",
  15193. extra: 200/170,
  15194. bottom: 0.01
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(1 + 10/12, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. )
  15206. };
  15207. characterMakers["Fiona"] = () => {
  15208. return makeCharacter(
  15209. "Fiona",
  15210. "Fidchell",
  15211. {
  15212. side: {
  15213. height: math.unit(4 + 8/12, "feet"),
  15214. weight: math.unit(166, "lb"),
  15215. name: "Side",
  15216. image: {
  15217. source: "./media/characters/fiona/side.svg",
  15218. extra: 232/220,
  15219. bottom: 0.03
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(4 + 8/12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. )
  15231. };
  15232. characterMakers["Lyla"] = () => {
  15233. return makeCharacter(
  15234. "Lyla",
  15235. "Fidchell",
  15236. {
  15237. front: {
  15238. height: math.unit(2, "feet"),
  15239. weight: math.unit(62, "lb"),
  15240. name: "Front",
  15241. image: {
  15242. source: "./media/characters/lyla/front.svg",
  15243. bottom: 0.1
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(2, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. )
  15255. };
  15256. characterMakers["Perseus"] = () => {
  15257. return makeCharacter(
  15258. "Perseus",
  15259. "Fidchell",
  15260. {
  15261. side: {
  15262. height: math.unit(1.8, "feet"),
  15263. weight: math.unit(44, "lb"),
  15264. name: "Side",
  15265. image: {
  15266. source: "./media/characters/perseus/side.svg",
  15267. bottom: 0.21
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(1.8, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. )
  15279. };
  15280. characterMakers["Remus"] = () => {
  15281. return makeCharacter(
  15282. "Remus",
  15283. "Fidchell",
  15284. {
  15285. side: {
  15286. height: math.unit(4 + 2/12, "feet"),
  15287. weight: math.unit(20, "lb"),
  15288. name: "Side",
  15289. image: {
  15290. source: "./media/characters/remus/side.svg"
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(4 + 2/12, "feet"),
  15298. default: true
  15299. },
  15300. ]
  15301. )
  15302. };
  15303. characterMakers["Raf"] = () => {
  15304. return makeCharacter(
  15305. "Raf",
  15306. "the_raf",
  15307. {
  15308. front: {
  15309. height: math.unit(4 + 11/12, "feet"),
  15310. weight: math.unit(114, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/raf/front.svg",
  15314. bottom: 0.01
  15315. }
  15316. },
  15317. side: {
  15318. height: math.unit(4 + 11/12, "feet"),
  15319. weight: math.unit(114, "lb"),
  15320. name: "Side",
  15321. image: {
  15322. source: "./media/characters/raf/side.svg",
  15323. bottom: 0.005
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Micro",
  15330. height: math.unit(2, "inches")
  15331. },
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(4 + 11/12, "feet"),
  15335. default: true
  15336. },
  15337. {
  15338. name: "Macro",
  15339. height: math.unit(70, "feet")
  15340. },
  15341. ]
  15342. )
  15343. };
  15344. characterMakers["Liam Einarr"] = () => {
  15345. return makeCharacter(
  15346. "Liam Einarr",
  15347. "LiamEinarr",
  15348. {
  15349. front: {
  15350. height: math.unit(1.5, "meters"),
  15351. weight: math.unit(68, "kg"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/liam-einarr/front.svg",
  15355. extra: 2822/2666
  15356. }
  15357. },
  15358. back: {
  15359. height: math.unit(1.5, "meters"),
  15360. weight: math.unit(68, "kg"),
  15361. name: "Back",
  15362. image: {
  15363. source: "./media/characters/liam-einarr/back.svg",
  15364. extra: 2822/2666,
  15365. bottom: 0.015
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(1.5, "meters"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(150, "meters")
  15378. },
  15379. {
  15380. name: "Megamacro",
  15381. height: math.unit(35, "km")
  15382. },
  15383. ]
  15384. )
  15385. };
  15386. characterMakers["Linda"] = () => {
  15387. return makeCharacter(
  15388. "Linda",
  15389. "Dalken",
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(75, "kg"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/linda/front.svg",
  15397. extra: 930/874,
  15398. bottom: 0.004
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(6, "feet"),
  15406. default: true
  15407. },
  15408. ]
  15409. )
  15410. };
  15411. characterMakers["Caylex"] = () => {
  15412. return makeCharacter(
  15413. "Caylex",
  15414. "ArgentVZ",
  15415. {
  15416. front: {
  15417. height: math.unit(6 + 8/12, "feet"),
  15418. weight: math.unit(220, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/caylex/front.svg",
  15422. extra: 821/772,
  15423. bottom: 0.07
  15424. }
  15425. },
  15426. back: {
  15427. height: math.unit(6 + 8/12, "feet"),
  15428. weight: math.unit(220, "lb"),
  15429. name: "Back",
  15430. image: {
  15431. source: "./media/characters/caylex/back.svg",
  15432. extra: 821/772,
  15433. bottom: 0.022
  15434. }
  15435. },
  15436. hand: {
  15437. height: math.unit(1.25, "feet"),
  15438. name: "Hand",
  15439. image: {
  15440. source: "./media/characters/caylex/hand.svg"
  15441. }
  15442. },
  15443. foot: {
  15444. height: math.unit(1.6, "feet"),
  15445. name: "Foot",
  15446. image: {
  15447. source: "./media/characters/caylex/foot.svg"
  15448. }
  15449. },
  15450. armored: {
  15451. height: math.unit(6 + 8/12, "feet"),
  15452. weight: math.unit(250, "lb"),
  15453. name: "Armored",
  15454. image: {
  15455. source: "./media/characters/caylex/armored.svg",
  15456. extra: 1420/1310,
  15457. bottom: 0.045
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(6 + 8/12, "feet"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Normal+",
  15469. height: math.unit(12, "feet")
  15470. },
  15471. ]
  15472. )
  15473. };
  15474. characterMakers["Alana"] = () => {
  15475. return makeCharacter(
  15476. "Alana",
  15477. "Adeleide",
  15478. {
  15479. front: {
  15480. height: math.unit(7 + 6/12, "feet"),
  15481. weight: math.unit(288, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/alana/front.svg",
  15485. extra: 679/653,
  15486. bottom: 22.5/701
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(7 + 6/12, "feet")
  15494. },
  15495. {
  15496. name: "Large",
  15497. height: math.unit(50, "feet")
  15498. },
  15499. {
  15500. name: "Macro",
  15501. height: math.unit(100, "feet"),
  15502. default: true
  15503. },
  15504. {
  15505. name: "Macro+",
  15506. height: math.unit(200, "feet")
  15507. },
  15508. ]
  15509. )
  15510. };
  15511. characterMakers["Hasani"] = () => {
  15512. return makeCharacter(
  15513. "Hasani",
  15514. "BishopBun",
  15515. {
  15516. front: {
  15517. height: math.unit(6 + 1/12, "feet"),
  15518. weight: math.unit(210, "lb"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/hasani/front.svg",
  15522. extra: 244/232,
  15523. bottom: 0.01
  15524. }
  15525. },
  15526. back: {
  15527. height: math.unit(6 + 1/12, "feet"),
  15528. weight: math.unit(210, "lb"),
  15529. name: "Back",
  15530. image: {
  15531. source: "./media/characters/hasani/back.svg",
  15532. extra: 244/232,
  15533. bottom: 0.01
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Normal",
  15540. height: math.unit(6 + 1/12, "feet")
  15541. },
  15542. {
  15543. name: "Macro",
  15544. height: math.unit(175, "feet"),
  15545. default: true
  15546. },
  15547. ]
  15548. )
  15549. };
  15550. characterMakers["Nita"] = () => {
  15551. return makeCharacter(
  15552. "Nita",
  15553. "Ich",
  15554. {
  15555. front: {
  15556. height: math.unit(1.82, "meters"),
  15557. weight: math.unit(140, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/nita/front.svg",
  15561. extra: 2473/2363,
  15562. bottom: 0.01
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(1.82, "m")
  15570. },
  15571. {
  15572. name: "Macro",
  15573. height: math.unit(300, "m")
  15574. },
  15575. {
  15576. name: "Mistake Canon",
  15577. height: math.unit(0.5, "miles"),
  15578. default: true
  15579. },
  15580. {
  15581. name: "Big Mistake",
  15582. height: math.unit(13, "miles")
  15583. },
  15584. {
  15585. name: "Playing God",
  15586. height: math.unit(2450, "miles")
  15587. },
  15588. ]
  15589. )
  15590. };
  15591. characterMakers["Shiriko"] = () => {
  15592. return makeCharacter(
  15593. "Shiriko",
  15594. "Shiriko",
  15595. {
  15596. front: {
  15597. height: math.unit(4, "feet"),
  15598. weight: math.unit(120, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/shiriko/front.svg",
  15602. extra: 195/188
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(4, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. )
  15614. };
  15615. characterMakers["Deja"] = () => {
  15616. return makeCharacter(
  15617. "Deja",
  15618. "dejaroo",
  15619. {
  15620. front: {
  15621. height: math.unit(6, "feet"),
  15622. name: "front",
  15623. image: {
  15624. source: "./media/characters/deja/front.svg",
  15625. extra: 926/840,
  15626. bottom: 0.07
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Planck Length",
  15633. height: math.unit(1.6e-35, "meters")
  15634. },
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(30.48, "meters"),
  15638. default: true
  15639. },
  15640. {
  15641. name: "Universal",
  15642. height: math.unit(8.8e26, "meters")
  15643. },
  15644. ]
  15645. )
  15646. };
  15647. characterMakers["Anima"] = () => {
  15648. return makeCharacter(
  15649. "Anima",
  15650. "Anima",
  15651. {
  15652. side: {
  15653. height: math.unit(8, "feet"),
  15654. weight: math.unit(6300, "lb"),
  15655. name: "Side",
  15656. image: {
  15657. source: "./media/characters/anima/side.svg",
  15658. bottom: 0.035
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(8, "feet"),
  15666. default: true
  15667. },
  15668. ]
  15669. )
  15670. };
  15671. characterMakers["Bianca"] = () => {
  15672. return makeCharacter(
  15673. "Bianca",
  15674. "Sdocat",
  15675. {
  15676. front: {
  15677. height: math.unit(8, "feet"),
  15678. weight: math.unit(350, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/bianca/front.svg",
  15682. extra: 234/225,
  15683. bottom: 0.03
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(8, "feet"),
  15691. default: true
  15692. },
  15693. ]
  15694. )
  15695. };
  15696. characterMakers["Adinia"] = () => {
  15697. return makeCharacter(
  15698. "Adinia",
  15699. "Sdocat",
  15700. {
  15701. front: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(150, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/adinia/front.svg",
  15707. extra: 1845/1672,
  15708. bottom: 0.02
  15709. }
  15710. },
  15711. back: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Back",
  15715. image: {
  15716. source: "./media/characters/adinia/back.svg",
  15717. extra: 1845/1672,
  15718. bottom: 0.002
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(11 + 5/12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. )
  15730. };
  15731. characterMakers["Lykasa"] = () => {
  15732. return makeCharacter(
  15733. "Lykasa",
  15734. "Roxas00137",
  15735. {
  15736. front: {
  15737. height: math.unit(3, "meters"),
  15738. weight: math.unit(200, "kg"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/lykasa/front.svg",
  15742. extra: 1076/976,
  15743. bottom: 0.06
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(3, "meters")
  15751. },
  15752. {
  15753. name: "Kaiku",
  15754. height: math.unit(120, "meters"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "Mega Kaiju",
  15759. height: math.unit(240, "km")
  15760. },
  15761. {
  15762. name: "Giga Kaiju",
  15763. height: math.unit(400, "megameters")
  15764. },
  15765. {
  15766. name: "Tera Kaiju",
  15767. height: math.unit(800, "gigameters")
  15768. },
  15769. {
  15770. name: "Kaiju Dragon Goddess",
  15771. height: math.unit(26, "zettaparsecs")
  15772. },
  15773. ]
  15774. )
  15775. };
  15776. characterMakers["Malfaren"] = () => {
  15777. return makeCharacter(
  15778. "Malfaren",
  15779. "Malfaren",
  15780. {
  15781. side: {
  15782. height: math.unit(283/124*6, "feet"),
  15783. weight: math.unit(35000, "lb"),
  15784. name: "Side",
  15785. image: {
  15786. source: "./media/characters/malfaren/side.svg",
  15787. extra: 2500/1010,
  15788. bottom: 0.01
  15789. }
  15790. },
  15791. front: {
  15792. height: math.unit(22.36, "feet"),
  15793. weight: math.unit(35000, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/malfaren/front.svg",
  15797. extra: 1631/1476,
  15798. bottom: 0.01
  15799. }
  15800. },
  15801. maw: {
  15802. height: math.unit(6.9, "feet"),
  15803. name: "Maw",
  15804. image: {
  15805. source: "./media/characters/malfaren/maw.svg"
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Big",
  15812. height: math.unit(283/162*6, "feet"),
  15813. },
  15814. {
  15815. name: "Bigger",
  15816. height: math.unit(283/124*6, "feet")
  15817. },
  15818. {
  15819. name: "Massive",
  15820. height: math.unit(283/92*6, "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "👀💦",
  15825. height: math.unit(283/73*6, "feet"),
  15826. },
  15827. ]
  15828. )
  15829. };
  15830. characterMakers["Kernel"] = () => {
  15831. return makeCharacter(
  15832. "Kernel",
  15833. "KernelDecoy",
  15834. {
  15835. front: {
  15836. height: math.unit(1.7, "m"),
  15837. weight: math.unit(70, "kg"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/kernel/front.svg",
  15841. extra: 222/210,
  15842. bottom: 0.007
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Nano",
  15849. height: math.unit(17, "micrometers")
  15850. },
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(1.7, "mm")
  15854. },
  15855. {
  15856. name: "Small",
  15857. height: math.unit(1.7, "cm")
  15858. },
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(1.7, "m"),
  15862. default: true
  15863. },
  15864. ]
  15865. )
  15866. };
  15867. characterMakers["Jayne Folest"] = () => {
  15868. return makeCharacter(
  15869. "Jayne Folest",
  15870. "JayneFolest",
  15871. {
  15872. front: {
  15873. height: math.unit(1.75, "meters"),
  15874. weight: math.unit(65, "kg"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/jayne-folest/front.svg",
  15878. extra: 2115/2007,
  15879. bottom: 0.02
  15880. }
  15881. },
  15882. back: {
  15883. height: math.unit(1.75, "meters"),
  15884. weight: math.unit(65, "kg"),
  15885. name: "Back",
  15886. image: {
  15887. source: "./media/characters/jayne-folest/back.svg",
  15888. extra: 2115/2007,
  15889. bottom: 0.005
  15890. }
  15891. },
  15892. frontClothed: {
  15893. height: math.unit(1.75, "meters"),
  15894. weight: math.unit(65, "kg"),
  15895. name: "Front (Clothed)",
  15896. image: {
  15897. source: "./media/characters/jayne-folest/front-clothed.svg",
  15898. extra: 2115/2007,
  15899. bottom: 0.035
  15900. }
  15901. },
  15902. hand: {
  15903. height: math.unit(1/1.260, "feet"),
  15904. name: "Hand",
  15905. image: {
  15906. source: "./media/characters/jayne-folest/hand.svg"
  15907. }
  15908. },
  15909. foot: {
  15910. height: math.unit(1/0.918, "feet"),
  15911. name: "Foot",
  15912. image: {
  15913. source: "./media/characters/jayne-folest/foot.svg"
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Micro",
  15920. height: math.unit(4, "cm")
  15921. },
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(1.75, "meters")
  15925. },
  15926. {
  15927. name: "Macro",
  15928. height: math.unit(47.5, "meters"),
  15929. default: true
  15930. },
  15931. ]
  15932. )
  15933. };
  15934. characterMakers["Algier"] = () => {
  15935. return makeCharacter(
  15936. "Algier",
  15937. "Silas",
  15938. {
  15939. front: {
  15940. height: math.unit(180, "cm"),
  15941. weight: math.unit(70, "kg"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/algier/front.svg",
  15945. extra: 596/572,
  15946. bottom: 0.04
  15947. }
  15948. },
  15949. back: {
  15950. height: math.unit(180, "cm"),
  15951. weight: math.unit(70, "kg"),
  15952. name: "Back",
  15953. image: {
  15954. source: "./media/characters/algier/back.svg",
  15955. extra: 596/572,
  15956. bottom: 0.025
  15957. }
  15958. },
  15959. frontdressed: {
  15960. height: math.unit(180, "cm"),
  15961. weight: math.unit(150, "kg"),
  15962. name: "Front-dressed",
  15963. image: {
  15964. source: "./media/characters/algier/front-dressed.svg",
  15965. extra: 596/572,
  15966. bottom: 0.038
  15967. }
  15968. },
  15969. },
  15970. [
  15971. {
  15972. name: "Micro",
  15973. height: math.unit(5, "cm")
  15974. },
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(180, "cm"),
  15978. default: true
  15979. },
  15980. {
  15981. name: "Macro",
  15982. height: math.unit(64, "m")
  15983. },
  15984. ]
  15985. )
  15986. };
  15987. characterMakers["Pretzel"] = () => {
  15988. return makeCharacter(
  15989. "Pretzel",
  15990. "Serpentus",
  15991. {
  15992. upright: {
  15993. height: math.unit(7, "feet"),
  15994. weight: math.unit(300, "lb"),
  15995. name: "Upright",
  15996. image: {
  15997. source: "./media/characters/pretzel/upright.svg",
  15998. extra: 534/522,
  15999. bottom: 0.065
  16000. }
  16001. },
  16002. sprawling: {
  16003. height: math.unit(3.75, "feet"),
  16004. weight: math.unit(300, "lb"),
  16005. name: "Sprawling",
  16006. image: {
  16007. source: "./media/characters/pretzel/sprawling.svg",
  16008. extra: 314/281,
  16009. bottom: 0.1
  16010. }
  16011. },
  16012. tongue: {
  16013. height: math.unit(2, "feet"),
  16014. name: "Tongue",
  16015. image: {
  16016. source: "./media/characters/pretzel/tongue.svg"
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(7, "feet"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Oversized",
  16028. height: math.unit(15, "feet")
  16029. },
  16030. {
  16031. name: "Huge",
  16032. height: math.unit(30, "feet")
  16033. },
  16034. {
  16035. name: "Macro",
  16036. height: math.unit(250, "feet")
  16037. },
  16038. ]
  16039. )
  16040. };
  16041. characterMakers["Roxi"] = () => {
  16042. return makeCharacter(
  16043. "Roxi",
  16044. "carthusflame",
  16045. {
  16046. sideFront: {
  16047. height: math.unit(5 + 2/12, "feet"),
  16048. weight: math.unit(120, "lb"),
  16049. name: "Front Side",
  16050. image: {
  16051. source: "./media/characters/roxi/side-front.svg",
  16052. extra: 2924/2717,
  16053. bottom: 0.08
  16054. }
  16055. },
  16056. sideBack: {
  16057. height: math.unit(5 + 2/12, "feet"),
  16058. weight: math.unit(120, "lb"),
  16059. name: "Back Side",
  16060. image: {
  16061. source: "./media/characters/roxi/side-back.svg",
  16062. extra: 2904/2693,
  16063. bottom: 0.06
  16064. }
  16065. },
  16066. front: {
  16067. height: math.unit(5 + 2/12, "feet"),
  16068. weight: math.unit(120, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/roxi/front.svg",
  16072. extra: 2028/1907,
  16073. bottom: 0.01
  16074. }
  16075. },
  16076. frontAlt: {
  16077. height: math.unit(5 + 2/12, "feet"),
  16078. weight: math.unit(120, "lb"),
  16079. name: "Front (Alt)",
  16080. image: {
  16081. source: "./media/characters/roxi/front-alt.svg",
  16082. extra: 1828/1798,
  16083. bottom: 0.01
  16084. }
  16085. },
  16086. sitting: {
  16087. height: math.unit(2.8, "feet"),
  16088. weight: math.unit(120, "lb"),
  16089. name: "Sitting",
  16090. image: {
  16091. source: "./media/characters/roxi/sitting.svg",
  16092. extra: 2660/2462,
  16093. bottom: 0.1
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Normal",
  16100. height: math.unit(5 + 2/12, "feet"),
  16101. default: true
  16102. },
  16103. ]
  16104. )
  16105. };
  16106. characterMakers["Shadow"] = () => {
  16107. return makeCharacter(
  16108. "Shadow",
  16109. "MKShadowdrake",
  16110. {
  16111. side: {
  16112. height: math.unit(55, "feet"),
  16113. weight: math.unit(153, "tons"),
  16114. name: "Side",
  16115. image: {
  16116. source: "./media/characters/shadow/side.svg",
  16117. extra: 701/628,
  16118. bottom: 0.02
  16119. }
  16120. },
  16121. flying: {
  16122. height: math.unit(145, "feet"),
  16123. weight: math.unit(153, "tons"),
  16124. name: "Flying",
  16125. image: {
  16126. source: "./media/characters/shadow/flying.svg"
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(55, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. )
  16138. };
  16139. characterMakers["Marcie"] = () => {
  16140. return makeCharacter(
  16141. "Marcie",
  16142. "Macroceli",
  16143. {
  16144. front: {
  16145. height: math.unit(6, "feet"),
  16146. weight: math.unit(200, "lb"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/marcie/front.svg",
  16150. extra: 960/876,
  16151. bottom: 58/1017.87
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Macro",
  16158. height: math.unit(1, "mile"),
  16159. default: true
  16160. },
  16161. ]
  16162. )
  16163. };
  16164. characterMakers["Kachina"] = () => {
  16165. return makeCharacter(
  16166. "Kachina",
  16167. "Trisha",
  16168. {
  16169. front: {
  16170. height: math.unit(7, "feet"),
  16171. weight: math.unit(200, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/kachina/front.svg",
  16175. extra: 1290.68/1119,
  16176. bottom: 36.5/1327.18
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(7, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. )
  16188. };
  16189. characterMakers["Kash"] = () => {
  16190. return makeCharacter(
  16191. "Kash",
  16192. "4wrz",
  16193. {
  16194. looking: {
  16195. height: math.unit(2, "meters"),
  16196. weight: math.unit(300, "kg"),
  16197. name: "Looking",
  16198. image: {
  16199. source: "./media/characters/kash/looking.svg",
  16200. extra: 474/344,
  16201. bottom: 0.03
  16202. }
  16203. },
  16204. side: {
  16205. height: math.unit(2, "meters"),
  16206. weight: math.unit(300, "kg"),
  16207. name: "Side",
  16208. image: {
  16209. source: "./media/characters/kash/side.svg",
  16210. extra: 302/251,
  16211. bottom: 0.03
  16212. }
  16213. },
  16214. front: {
  16215. height: math.unit(2, "meters"),
  16216. weight: math.unit(300, "kg"),
  16217. name: "Front",
  16218. image: {
  16219. source: "./media/characters/kash/front.svg",
  16220. extra: 495/360,
  16221. bottom: 0.015
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(2, "meters"),
  16229. default: true
  16230. },
  16231. {
  16232. name: "Big",
  16233. height: math.unit(3, "meters")
  16234. },
  16235. {
  16236. name: "Large",
  16237. height: math.unit(5, "meters")
  16238. },
  16239. ]
  16240. )
  16241. };
  16242. characterMakers["Lalim"] = () => {
  16243. return makeCharacter(
  16244. "Lalim",
  16245. "Bruyaglovae",
  16246. {
  16247. feeding: {
  16248. height: math.unit(6.7, "feet"),
  16249. weight: math.unit(350, "lb"),
  16250. name: "Feeding",
  16251. image: {
  16252. source: "./media/characters/lalim/feeding.svg",
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(6.7, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. )
  16264. };
  16265. characterMakers["De'Vout"] = () => {
  16266. return makeCharacter(
  16267. "De'Vout",
  16268. "Bruyaglovae",
  16269. {
  16270. front: {
  16271. height: math.unit(9.5, "feet"),
  16272. weight: math.unit(600, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/de'vout/front.svg",
  16276. extra: 1443/1328,
  16277. bottom: 0.025
  16278. }
  16279. },
  16280. back: {
  16281. height: math.unit(9.5, "feet"),
  16282. weight: math.unit(600, "lb"),
  16283. name: "Back",
  16284. image: {
  16285. source: "./media/characters/de'vout/back.svg",
  16286. extra: 1443/1328
  16287. }
  16288. },
  16289. frontDressed: {
  16290. height: math.unit(9.5, "feet"),
  16291. weight: math.unit(600, "lb"),
  16292. name: "Front (Dressed",
  16293. image: {
  16294. source: "./media/characters/de'vout/front-dressed.svg",
  16295. extra: 1443/1328,
  16296. bottom: 0.025
  16297. }
  16298. },
  16299. backDressed: {
  16300. height: math.unit(9.5, "feet"),
  16301. weight: math.unit(600, "lb"),
  16302. name: "Back (Dressed",
  16303. image: {
  16304. source: "./media/characters/de'vout/back-dressed.svg",
  16305. extra: 1443/1328
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(9.5, "feet"),
  16313. default: true
  16314. },
  16315. ]
  16316. )
  16317. };
  16318. characterMakers["Talana"] = () => {
  16319. return makeCharacter(
  16320. "Talana",
  16321. "Bruyaglovae",
  16322. {
  16323. front: {
  16324. height: math.unit(8, "feet"),
  16325. weight: math.unit(225, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/talana/front.svg",
  16329. extra: 1410/1300,
  16330. bottom: 0.015
  16331. }
  16332. },
  16333. frontDressed: {
  16334. height: math.unit(8, "feet"),
  16335. weight: math.unit(225, "lb"),
  16336. name: "Front (Dressed",
  16337. image: {
  16338. source: "./media/characters/talana/front-dressed.svg",
  16339. extra: 1410/1300,
  16340. bottom: 0.015
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(8, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. )
  16352. };
  16353. characterMakers["Xeauvok"] = () => {
  16354. return makeCharacter(
  16355. "Xeauvok",
  16356. "Bruyaglovae",
  16357. {
  16358. side: {
  16359. height: math.unit(7.2, "feet"),
  16360. weight: math.unit(150, "lb"),
  16361. name: "Side",
  16362. image: {
  16363. source: "./media/characters/xeauvok/side.svg",
  16364. extra: 1975/1523,
  16365. bottom: 0.07
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(7.2, "feet"),
  16373. default: true
  16374. },
  16375. ]
  16376. )
  16377. };
  16378. characterMakers["Zara"] = () => {
  16379. return makeCharacter(
  16380. "Zara",
  16381. "Dalken",
  16382. {
  16383. side: {
  16384. height: math.unit(10, "feet"),
  16385. weight: math.unit(900, "kg"),
  16386. name: "Side",
  16387. image: {
  16388. source: "./media/characters/zara/side.svg",
  16389. extra: 504/498
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(10, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. )
  16401. };
  16402. characterMakers["Richard (Dragon)"] = () => {
  16403. return makeCharacter(
  16404. "Richard (Dragon)",
  16405. "Xanaomin",
  16406. {
  16407. side: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(150, "lb"),
  16410. name: "Side",
  16411. image: {
  16412. source: "./media/characters/richard-dragon/side.svg",
  16413. extra: 845/340,
  16414. bottom: 0.017
  16415. }
  16416. },
  16417. maw: {
  16418. height: math.unit(2.97, "feet"),
  16419. name: "Maw",
  16420. image: {
  16421. source: "./media/characters/richard-dragon/maw.svg"
  16422. }
  16423. },
  16424. },
  16425. [
  16426. ]
  16427. )
  16428. };
  16429. characterMakers["Richard (Smeargle)"] = () => {
  16430. return makeCharacter(
  16431. "Richard (Smeargle)",
  16432. "Xanaomin",
  16433. {
  16434. front: {
  16435. height: math.unit(4, "feet"),
  16436. weight: math.unit(100, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/richard-smeargle/front.svg",
  16440. extra: 2952/2820,
  16441. bottom: 0.028
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(4, "feet"),
  16449. default: true
  16450. },
  16451. {
  16452. name: "Dynamax",
  16453. height: math.unit(20, "meters")
  16454. },
  16455. ]
  16456. )
  16457. };
  16458. characterMakers["Klay"] = () => {
  16459. return makeCharacter(
  16460. "Klay",
  16461. "klaythebat",
  16462. {
  16463. front: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(110, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/klay/front.svg",
  16469. extra: 962/883,
  16470. bottom: 0.04
  16471. }
  16472. },
  16473. back: {
  16474. height: math.unit(6, "feet"),
  16475. weight: math.unit(110, "lb"),
  16476. name: "Back",
  16477. image: {
  16478. source: "./media/characters/klay/back.svg",
  16479. extra: 962/883
  16480. }
  16481. },
  16482. beans: {
  16483. height: math.unit(1.15, "feet"),
  16484. name: "Beans",
  16485. image: {
  16486. source: "./media/characters/klay/beans.svg"
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Micro",
  16493. height: math.unit(6, "inches")
  16494. },
  16495. {
  16496. name: "Mini",
  16497. height: math.unit(3, "feet")
  16498. },
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(6, "feet"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "Big",
  16506. height: math.unit(25, "feet")
  16507. },
  16508. {
  16509. name: "Macro",
  16510. height: math.unit(100, "feet")
  16511. },
  16512. {
  16513. name: "Megamacro",
  16514. height: math.unit(400, "feet")
  16515. },
  16516. ]
  16517. )
  16518. };
  16519. characterMakers["Marcus"] = () => {
  16520. return makeCharacter(
  16521. "Marcus",
  16522. "klaythebat",
  16523. {
  16524. front: {
  16525. height: math.unit(6, "feet"),
  16526. weight: math.unit(160, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/marcus/front.svg",
  16530. extra: 734/676,
  16531. bottom: 0.03
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Little",
  16538. height: math.unit(6, "feet")
  16539. },
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(110, "feet"),
  16543. default: true
  16544. },
  16545. {
  16546. name: "Macro",
  16547. height: math.unit(250, "feet")
  16548. },
  16549. {
  16550. name: "Megamacro",
  16551. height: math.unit(1000, "feet")
  16552. },
  16553. ]
  16554. )
  16555. };
  16556. characterMakers["Claude DelRoute"] = () => {
  16557. return makeCharacter(
  16558. "Claude DelRoute",
  16559. "Claude",
  16560. {
  16561. front: {
  16562. height: math.unit(7, "feet"),
  16563. weight: math.unit(275, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/claude-delroute/front.svg",
  16567. extra: 230/214,
  16568. bottom: 0.007
  16569. }
  16570. },
  16571. side: {
  16572. height: math.unit(7, "feet"),
  16573. weight: math.unit(275, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/claude-delroute/side.svg",
  16577. extra: 222/214,
  16578. bottom: 0.01
  16579. }
  16580. },
  16581. back: {
  16582. height: math.unit(7, "feet"),
  16583. weight: math.unit(275, "lb"),
  16584. name: "Back",
  16585. image: {
  16586. source: "./media/characters/claude-delroute/back.svg",
  16587. extra: 230/214,
  16588. bottom: 0.015
  16589. }
  16590. },
  16591. maw: {
  16592. height: math.unit(0.6407, "meters"),
  16593. name: "Maw",
  16594. image: {
  16595. source: "./media/characters/claude-delroute/maw.svg"
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(7, "feet"),
  16603. default: true
  16604. },
  16605. {
  16606. name: "Lorge",
  16607. height: math.unit(20, "feet")
  16608. },
  16609. ]
  16610. )
  16611. };
  16612. characterMakers["Dragonien"] = () => {
  16613. return makeCharacter(
  16614. "Dragonien",
  16615. "Dragonien",
  16616. {
  16617. front: {
  16618. height: math.unit(8 + 4/12, "feet"),
  16619. weight: math.unit(600, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/dragonien/front.svg",
  16623. extra: 100/94,
  16624. bottom: 3.3/103.3445
  16625. }
  16626. },
  16627. back: {
  16628. height: math.unit(8 + 4/12, "feet"),
  16629. weight: math.unit(600, "lb"),
  16630. name: "Back",
  16631. image: {
  16632. source: "./media/characters/dragonien/back.svg",
  16633. extra: 776/746,
  16634. bottom: 6.4/782.0616
  16635. }
  16636. },
  16637. foot: {
  16638. height: math.unit(1.54, "feet"),
  16639. name: "Foot",
  16640. image: {
  16641. source: "./media/characters/dragonien/foot.svg",
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(8 + 4/12, "feet"),
  16649. default: true
  16650. },
  16651. {
  16652. name: "Macro",
  16653. height: math.unit(200, "feet")
  16654. },
  16655. {
  16656. name: "Megamacro",
  16657. height: math.unit(1, "mile")
  16658. },
  16659. {
  16660. name: "Gigamacro",
  16661. height: math.unit(1000, "miles")
  16662. },
  16663. ]
  16664. )
  16665. };
  16666. characterMakers["Desta"] = () => {
  16667. return makeCharacter(
  16668. "Desta",
  16669. "Desta",
  16670. {
  16671. front: {
  16672. height: math.unit(5 + 2/12, "feet"),
  16673. weight: math.unit(110, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/desta/front.svg",
  16677. extra: 1482/1417
  16678. }
  16679. },
  16680. side: {
  16681. height: math.unit(5 + 2/12, "feet"),
  16682. weight: math.unit(110, "lb"),
  16683. name: "Side",
  16684. image: {
  16685. source: "./media/characters/desta/side.svg",
  16686. extra: 2579/2491,
  16687. bottom: 0.053
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Micro",
  16694. height: math.unit(6, "inches")
  16695. },
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 2/12, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Macro",
  16703. height: math.unit(62, "feet")
  16704. },
  16705. {
  16706. name: "Megamacro",
  16707. height: math.unit(1800, "feet")
  16708. },
  16709. ]
  16710. )
  16711. };
  16712. characterMakers["Storm Alystar"] = () => {
  16713. return makeCharacter(
  16714. "Storm Alystar",
  16715. "Thunderbum",
  16716. {
  16717. front: {
  16718. height: math.unit(10, "feet"),
  16719. weight: math.unit(700, "lb"),
  16720. name: "Front",
  16721. image: {
  16722. source: "./media/characters/storm-alystar/front.svg",
  16723. extra: 2112/1898,
  16724. bottom: 0.034
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Micro",
  16731. height: math.unit(3.5, "inches")
  16732. },
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(10, "feet"),
  16736. default: true
  16737. },
  16738. {
  16739. name: "Macro",
  16740. height: math.unit(400, "feet")
  16741. },
  16742. {
  16743. name: "Deific",
  16744. height: math.unit(60, "miles")
  16745. },
  16746. ]
  16747. )
  16748. };
  16749. characterMakers["Ilia"] = () => {
  16750. return makeCharacter(
  16751. "Ilia",
  16752. "IliaVulpine",
  16753. {
  16754. front: {
  16755. height: math.unit(2.35, "meters"),
  16756. weight: math.unit(119, "kg"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/ilia/front.svg",
  16760. extra: 1285/1255,
  16761. bottom: 0.06
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(2.35, "meters")
  16769. },
  16770. {
  16771. name: "Macro",
  16772. height: math.unit(140, "meters"),
  16773. default: true
  16774. },
  16775. {
  16776. name: "Megamacro",
  16777. height: math.unit(100, "miles")
  16778. },
  16779. ]
  16780. )
  16781. };
  16782. characterMakers["KingDead"] = () => {
  16783. return makeCharacter(
  16784. "KingDead",
  16785. "KingDead",
  16786. {
  16787. front: {
  16788. height: math.unit(6 + 5/12, "feet"),
  16789. weight: math.unit(190, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/kingdead/front.svg",
  16793. extra: 1228/1177
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Micro",
  16800. height: math.unit(7, "inches")
  16801. },
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(6 + 5/12, "feet")
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(150, "feet"),
  16809. default: true
  16810. },
  16811. {
  16812. name: "Megamacro",
  16813. height: math.unit(200, "miles")
  16814. },
  16815. ]
  16816. )
  16817. };
  16818. characterMakers["Kyrehx"] = () => {
  16819. return makeCharacter(
  16820. "Kyrehx",
  16821. "Kyrehx",
  16822. {
  16823. front: {
  16824. height: math.unit(8, "feet"),
  16825. weight: math.unit(600, "lb"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/kyrehx/front.svg",
  16829. extra: 1195/1095,
  16830. bottom: 0.034
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Micro",
  16837. height: math.unit(2, "inches")
  16838. },
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(8, "feet"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Macro",
  16846. height: math.unit(255, "feet")
  16847. },
  16848. ]
  16849. )
  16850. };
  16851. characterMakers["Xang"] = () => {
  16852. return makeCharacter(
  16853. "Xang",
  16854. "Xangoose",
  16855. {
  16856. front: {
  16857. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16858. weight: math.unit(184, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/xang/front.svg",
  16862. extra: 845/755
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16870. default: true
  16871. },
  16872. {
  16873. name: "Macro",
  16874. height: math.unit(0.935 * 146, "feet")
  16875. },
  16876. {
  16877. name: "Megamacro",
  16878. height: math.unit(0.935 * 3, "miles")
  16879. },
  16880. ]
  16881. )
  16882. };
  16883. characterMakers["Doc Weardno"] = () => {
  16884. return makeCharacter(
  16885. "Doc Weardno",
  16886. "DrWeardno",
  16887. {
  16888. frontDressed: {
  16889. height: math.unit(5 + 7/12, "feet"),
  16890. weight: math.unit(140, "lb"),
  16891. name: "Front (Dressed)",
  16892. image: {
  16893. source: "./media/characters/doc-weardno/front-dressed.svg",
  16894. extra: 263/234
  16895. }
  16896. },
  16897. backDressed: {
  16898. height: math.unit(5 + 7/12, "feet"),
  16899. weight: math.unit(140, "lb"),
  16900. name: "Back (Dressed)",
  16901. image: {
  16902. source: "./media/characters/doc-weardno/back-dressed.svg",
  16903. extra: 266/238
  16904. }
  16905. },
  16906. front: {
  16907. height: math.unit(5 + 7/12, "feet"),
  16908. weight: math.unit(140, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/doc-weardno/front.svg",
  16912. extra: 254/233
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Micro",
  16919. height: math.unit(3, "inches")
  16920. },
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(5 + 7/12, "feet"),
  16924. default: true
  16925. },
  16926. {
  16927. name: "Macro",
  16928. height: math.unit(25, "feet")
  16929. },
  16930. {
  16931. name: "Megamacro",
  16932. height: math.unit(2, "miles")
  16933. },
  16934. ]
  16935. )
  16936. };
  16937. characterMakers["Seth Whilst"] = () => {
  16938. return makeCharacter(
  16939. "Seth Whilst",
  16940. "SethWhilst",
  16941. {
  16942. front: {
  16943. height: math.unit(6 + 2/12, "feet"),
  16944. weight: math.unit(153, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/seth-whilst/front.svg",
  16948. bottom: 0.07
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Micro",
  16955. height: math.unit(5, "inches")
  16956. },
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(6 + 2/12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. )
  16964. };
  16965. characterMakers["Pocket Jabari"] = () => {
  16966. return makeCharacter(
  16967. "Pocket Jabari",
  16968. "PocketJabari",
  16969. {
  16970. front: {
  16971. height: math.unit(3, "inches"),
  16972. weight: math.unit(8, "grams"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/pocket-jabari/front.svg",
  16976. extra: 1024/974,
  16977. bottom: 0.039
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Minimicro",
  16984. height: math.unit(8, "mm")
  16985. },
  16986. {
  16987. name: "Micro",
  16988. height: math.unit(3, "inches"),
  16989. default: true
  16990. },
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(3, "feet")
  16994. },
  16995. ]
  16996. )
  16997. };
  16998. characterMakers["Sapphy"] = () => {
  16999. return makeCharacter(
  17000. "Sapphy",
  17001. "Sapphy",
  17002. {
  17003. front: {
  17004. height: math.unit(15, "feet"),
  17005. weight: math.unit(3280, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/sapphy/front.svg",
  17009. extra: 671/577,
  17010. bottom: 0.085
  17011. }
  17012. },
  17013. back: {
  17014. height: math.unit(15, "feet"),
  17015. weight: math.unit(3280, "lb"),
  17016. name: "Back",
  17017. image: {
  17018. source: "./media/characters/sapphy/back.svg",
  17019. extra: 631/607,
  17020. bottom: 0.045
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(15, "feet")
  17028. },
  17029. {
  17030. name: "Casual Macro",
  17031. height: math.unit(120, "feet")
  17032. },
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(2150, "feet"),
  17036. default: true
  17037. },
  17038. {
  17039. name: "Megamacro",
  17040. height: math.unit(8, "miles")
  17041. },
  17042. {
  17043. name: "Galaxy Mom",
  17044. height: math.unit(6, "megalightyears")
  17045. },
  17046. ]
  17047. )
  17048. };
  17049. characterMakers["Kiro"] = () => {
  17050. return makeCharacter(
  17051. "Kiro",
  17052. "Keeya",
  17053. {
  17054. front: {
  17055. height: math.unit(6, "feet"),
  17056. weight: math.unit(170, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/kiro/front.svg",
  17060. extra: 1064/1012,
  17061. bottom: 0.052
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Micro",
  17068. height: math.unit(6, "inches")
  17069. },
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(6, "feet"),
  17073. default: true
  17074. },
  17075. {
  17076. name: "Macro",
  17077. height: math.unit(72, "feet")
  17078. },
  17079. ]
  17080. )
  17081. };
  17082. characterMakers["Irishfox"] = () => {
  17083. return makeCharacter(
  17084. "Irishfox",
  17085. "IrishFox",
  17086. {
  17087. front: {
  17088. height: math.unit(5 + 9/12, "feet"),
  17089. weight: math.unit(175, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/irishfox/front.svg",
  17093. extra: 1912/1680,
  17094. bottom: 0.02
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Nano",
  17101. height: math.unit(1, "mm")
  17102. },
  17103. {
  17104. name: "Micro",
  17105. height: math.unit(2, "inches")
  17106. },
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(5 + 9/12, "feet"),
  17110. default: true
  17111. },
  17112. {
  17113. name: "Macro",
  17114. height: math.unit(45, "feet")
  17115. },
  17116. ]
  17117. )
  17118. };
  17119. characterMakers["Aronai Sieyes"] = () => {
  17120. return makeCharacter(
  17121. "Aronai Sieyes",
  17122. "Aronai",
  17123. {
  17124. front: {
  17125. height: math.unit(6 + 1/12, "feet"),
  17126. weight: math.unit(150, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/aronai-sieyes/front.svg",
  17130. extra: 1556/1480,
  17131. bottom: 0.015
  17132. }
  17133. },
  17134. side: {
  17135. height: math.unit(6 + 1/12, "feet"),
  17136. weight: math.unit(150, "lb"),
  17137. name: "Side",
  17138. image: {
  17139. source: "./media/characters/aronai-sieyes/side.svg",
  17140. extra: 1433/1390,
  17141. bottom: 0.0393
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(6 + 1/12, "feet"),
  17146. weight: math.unit(150, "lb"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/aronai-sieyes/back.svg",
  17150. extra: 1544/1494,
  17151. bottom: 0.02
  17152. }
  17153. },
  17154. frontClothed: {
  17155. height: math.unit(6 + 1/12, "feet"),
  17156. weight: math.unit(150, "lb"),
  17157. name: "Front (Clothed)",
  17158. image: {
  17159. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17160. extra: 1582/1527
  17161. }
  17162. },
  17163. feral: {
  17164. height: math.unit(18, "feet"),
  17165. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17166. name: "Feral",
  17167. image: {
  17168. source: "./media/characters/aronai-sieyes/feral.svg",
  17169. extra: 1530/1240,
  17170. bottom: 0.035
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Micro",
  17177. height: math.unit(2, "inches")
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(6 + 1/12, "feet"),
  17182. default: true
  17183. }
  17184. ]
  17185. )
  17186. };
  17187. characterMakers["Xuna"] = () => {
  17188. return makeCharacter(
  17189. "Xuna",
  17190. "Xuna",
  17191. {
  17192. front: {
  17193. height: math.unit(12, "feet"),
  17194. weight: math.unit(410, "kg"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/xuna/front.svg",
  17198. extra: 2184/1980
  17199. }
  17200. },
  17201. side: {
  17202. height: math.unit(12, "feet"),
  17203. weight: math.unit(410, "kg"),
  17204. name: "Side",
  17205. image: {
  17206. source: "./media/characters/xuna/side.svg",
  17207. extra: 2184/1980
  17208. }
  17209. },
  17210. back: {
  17211. height: math.unit(12, "feet"),
  17212. weight: math.unit(410, "kg"),
  17213. name: "Back",
  17214. image: {
  17215. source: "./media/characters/xuna/back.svg",
  17216. extra: 2184/1980
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Nano glow",
  17223. height: math.unit(10, "nm")
  17224. },
  17225. {
  17226. name: "Micro floof",
  17227. height: math.unit(0.3, "m")
  17228. },
  17229. {
  17230. name: "Huggable softy boi",
  17231. height: math.unit(3.6576, "m"),
  17232. default: true
  17233. },
  17234. {
  17235. name: "Admirable floof",
  17236. height: math.unit(80, "meters")
  17237. },
  17238. {
  17239. name: "Gentle macro",
  17240. height: math.unit(300, "meters")
  17241. },
  17242. {
  17243. name: "Very careful floof",
  17244. height: math.unit(3200, "meters")
  17245. },
  17246. {
  17247. name: "The mega floof",
  17248. height: math.unit(36000, "meters")
  17249. },
  17250. {
  17251. name: "Giga-fur-Wicker",
  17252. height: math.unit(4800000, "meters")
  17253. },
  17254. {
  17255. name: "Licky world",
  17256. height: math.unit(20000000, "meters")
  17257. },
  17258. {
  17259. name: "Floofy cyan sun",
  17260. height: math.unit(1500000000, "meters")
  17261. },
  17262. {
  17263. name: "Milky Wicker",
  17264. height: math.unit(1000000000000000000000, "meters")
  17265. },
  17266. {
  17267. name: "The observing Wicker",
  17268. height: math.unit(999999999999999999999999999, "meters")
  17269. },
  17270. ]
  17271. )
  17272. };
  17273. characterMakers["Arokha Sieyes"] = () => {
  17274. return makeCharacter(
  17275. "Arokha Sieyes",
  17276. "Aronai",
  17277. {
  17278. front: {
  17279. height: math.unit(5 + 9/12, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/arokha-sieyes/front.svg",
  17284. extra: 1425/1284,
  17285. bottom: 0.05
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(5 + 9/12, "feet")
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(30, "meters"),
  17297. default: true
  17298. },
  17299. ]
  17300. )
  17301. };
  17302. characterMakers["Arokh Sieyes"] = () => {
  17303. return makeCharacter(
  17304. "Arokh Sieyes",
  17305. "Aronai",
  17306. {
  17307. front: {
  17308. height: math.unit(6, "feet"),
  17309. weight: math.unit(180, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/arokh-sieyes/front.svg",
  17313. extra: 1830/1769,
  17314. bottom: 0.01
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(6, "feet")
  17322. },
  17323. {
  17324. name: "Macro",
  17325. height: math.unit(30, "meters"),
  17326. default: true
  17327. },
  17328. ]
  17329. )
  17330. };
  17331. characterMakers["Goldeneye"] = () => {
  17332. return makeCharacter(
  17333. "Goldeneye",
  17334. "Goldeneye Gryphon",
  17335. {
  17336. side: {
  17337. height: math.unit(13 + 1/12, "feet"),
  17338. weight: math.unit(8.5, "tonnes"),
  17339. name: "Side",
  17340. image: {
  17341. source: "./media/characters/goldeneye/side.svg",
  17342. extra: 1182/778,
  17343. bottom: 0.067
  17344. }
  17345. },
  17346. paw: {
  17347. height: math.unit(3.4, "feet"),
  17348. name: "Paw",
  17349. image: {
  17350. source: "./media/characters/goldeneye/paw.svg"
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(13 + 1/12, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. )
  17362. };
  17363. characterMakers["Leonardo Lycheborne"] = () => {
  17364. return makeCharacter(
  17365. "Leonardo Lycheborne",
  17366. "Leo",
  17367. {
  17368. front: {
  17369. height: math.unit(6 + 1/12, "feet"),
  17370. weight: math.unit(210, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/leonardo-lycheborne/front.svg",
  17374. extra: 390/365,
  17375. bottom: 0.032
  17376. }
  17377. },
  17378. side: {
  17379. height: math.unit(6 + 1/12, "feet"),
  17380. weight: math.unit(210, "lb"),
  17381. name: "Side",
  17382. image: {
  17383. source: "./media/characters/leonardo-lycheborne/side.svg",
  17384. extra: 390/365,
  17385. bottom: 0.005
  17386. }
  17387. },
  17388. back: {
  17389. height: math.unit(6 + 1/12, "feet"),
  17390. weight: math.unit(210, "lb"),
  17391. name: "Back",
  17392. image: {
  17393. source: "./media/characters/leonardo-lycheborne/back.svg",
  17394. extra: 392/366,
  17395. bottom: 0.01
  17396. }
  17397. },
  17398. hand: {
  17399. height: math.unit(1.08, "feet"),
  17400. name: "Hand",
  17401. image: {
  17402. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17403. }
  17404. },
  17405. foot: {
  17406. height: math.unit(1.32, "feet"),
  17407. name: "Foot",
  17408. image: {
  17409. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17410. }
  17411. },
  17412. were: {
  17413. height: math.unit(20, "feet"),
  17414. weight: math.unit(7800, "lb"),
  17415. name: "Were",
  17416. image: {
  17417. source: "./media/characters/leonardo-lycheborne/were.svg",
  17418. extra: 308/294,
  17419. bottom: 0.048
  17420. }
  17421. },
  17422. feral: {
  17423. height: math.unit(7.5, "feet"),
  17424. weight: math.unit(600, "lb"),
  17425. name: "Feral",
  17426. image: {
  17427. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17428. extra: 210/186,
  17429. bottom: 0.108
  17430. }
  17431. },
  17432. taur: {
  17433. height: math.unit(11, "feet"),
  17434. weight: math.unit(3300, "lb"),
  17435. name: "Taur",
  17436. image: {
  17437. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17438. extra: 320/303,
  17439. bottom: 0.025
  17440. }
  17441. },
  17442. barghest: {
  17443. height: math.unit(11, "feet"),
  17444. weight: math.unit(1300, "lb"),
  17445. name: "Barghest",
  17446. image: {
  17447. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17448. extra: 323/302,
  17449. bottom: 0.027
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(6 + 1/12, "feet"),
  17457. default: true
  17458. },
  17459. ]
  17460. )
  17461. };
  17462. characterMakers["Jet"] = () => {
  17463. return makeCharacter(
  17464. "Jet",
  17465. "JetHyena",
  17466. {
  17467. front: {
  17468. height: math.unit(10, "feet"),
  17469. weight: math.unit(350, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/jet/front.svg",
  17473. extra: 2050/1980,
  17474. bottom: 0.013
  17475. }
  17476. },
  17477. back: {
  17478. height: math.unit(10, "feet"),
  17479. weight: math.unit(350, "lb"),
  17480. name: "Back",
  17481. image: {
  17482. source: "./media/characters/jet/back.svg",
  17483. extra: 2050/1980,
  17484. bottom: 0.013
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Micro",
  17491. height: math.unit(6, "inches")
  17492. },
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(10, "feet"),
  17496. default: true
  17497. },
  17498. {
  17499. name: "Macro",
  17500. height: math.unit(100, "feet")
  17501. },
  17502. ]
  17503. )
  17504. };
  17505. characterMakers["Tanarath"] = () => {
  17506. return makeCharacter(
  17507. "Tanarath",
  17508. "TanarathDragon",
  17509. {
  17510. front: {
  17511. height: math.unit(15, "feet"),
  17512. weight: math.unit(2800, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/tanarath/front.svg",
  17516. extra: 2392/2220,
  17517. bottom: 0.03
  17518. }
  17519. },
  17520. back: {
  17521. height: math.unit(15, "feet"),
  17522. weight: math.unit(2800, "lb"),
  17523. name: "Back",
  17524. image: {
  17525. source: "./media/characters/tanarath/back.svg",
  17526. extra: 2392/2220,
  17527. bottom: 0.03
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(15, "feet"),
  17535. default: true
  17536. },
  17537. ]
  17538. )
  17539. };
  17540. characterMakers["Patty CattyBatty"] = () => {
  17541. return makeCharacter(
  17542. "Patty CattyBatty",
  17543. "Archangel2100",
  17544. {
  17545. front: {
  17546. height: math.unit(7 + 1/12, "feet"),
  17547. weight: math.unit(175, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/patty-cattybatty/front.svg",
  17551. extra: 908/874,
  17552. bottom: 0.025
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Micro",
  17559. height: math.unit(1, "inch")
  17560. },
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(7 + 1/12, "feet")
  17564. },
  17565. {
  17566. name: "Mini Macro",
  17567. height: math.unit(155, "feet")
  17568. },
  17569. {
  17570. name: "Macro",
  17571. height: math.unit(1077, "feet")
  17572. },
  17573. {
  17574. name: "Mega Macro",
  17575. height: math.unit(47650, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Giga Macro",
  17580. height: math.unit(440, "miles")
  17581. },
  17582. {
  17583. name: "Tera Macro",
  17584. height: math.unit(8700, "miles")
  17585. },
  17586. {
  17587. name: "Planetary Macro",
  17588. height: math.unit(32700, "miles")
  17589. },
  17590. {
  17591. name: "Solar Macro",
  17592. height: math.unit(550000, "miles")
  17593. },
  17594. {
  17595. name: "Celestial Macro",
  17596. height: math.unit(2.5, "AU")
  17597. },
  17598. ]
  17599. )
  17600. };
  17601. characterMakers["Cappu"] = () => {
  17602. return makeCharacter(
  17603. "Cappu",
  17604. "CappuTheSheep",
  17605. {
  17606. front: {
  17607. height: math.unit(4 + 5/12, "feet"),
  17608. weight: math.unit(90, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/cappu/front.svg",
  17612. extra: 1247/1152,
  17613. bottom: 0.012
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(4 + 5/12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. )
  17625. };
  17626. characterMakers["Sebi"] = () => {
  17627. return makeCharacter(
  17628. "Sebi",
  17629. "DeathyWolfi",
  17630. {
  17631. frontDressed: {
  17632. height: math.unit(70, "cm"),
  17633. weight: math.unit(6, "kg"),
  17634. name: "Front (Dressed)",
  17635. image: {
  17636. source: "./media/characters/sebi/front-dressed.svg",
  17637. extra: 713.5/686.5,
  17638. bottom: 0.003
  17639. }
  17640. },
  17641. front: {
  17642. height: math.unit(70, "cm"),
  17643. weight: math.unit(5, "kg"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/sebi/front.svg",
  17647. extra: 713.5/686.5,
  17648. bottom: 0.003
  17649. }
  17650. }
  17651. },
  17652. [
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(70, "cm"),
  17656. default: true
  17657. },
  17658. {
  17659. name: "Macro",
  17660. height: math.unit(8, "meters")
  17661. },
  17662. ]
  17663. )
  17664. };
  17665. characterMakers["Typhek"] = () => {
  17666. return makeCharacter(
  17667. "Typhek",
  17668. "Adam0800",
  17669. {
  17670. front: {
  17671. height: math.unit(6, "feet"),
  17672. weight: math.unit(150, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/typhek/front.svg",
  17676. extra: 1948/1929,
  17677. bottom: 0.025
  17678. }
  17679. },
  17680. side: {
  17681. height: math.unit(6, "feet"),
  17682. weight: math.unit(150, "lb"),
  17683. name: "Side",
  17684. image: {
  17685. source: "./media/characters/typhek/side.svg",
  17686. extra: 2034/2010,
  17687. bottom: 0.003
  17688. }
  17689. },
  17690. back: {
  17691. height: math.unit(6, "feet"),
  17692. weight: math.unit(150, "lb"),
  17693. name: "Back",
  17694. image: {
  17695. source: "./media/characters/typhek/back.svg",
  17696. extra: 2005/1978,
  17697. bottom: 0.004
  17698. }
  17699. },
  17700. palm: {
  17701. height: math.unit(1.2, "feet"),
  17702. name: "Palm",
  17703. image: {
  17704. source: "./media/characters/typhek/palm.svg"
  17705. }
  17706. },
  17707. fist: {
  17708. height: math.unit(1.1, "feet"),
  17709. name: "Fist",
  17710. image: {
  17711. source: "./media/characters/typhek/fist.svg"
  17712. }
  17713. },
  17714. foot: {
  17715. height: math.unit(1.57, "feet"),
  17716. name: "Foot",
  17717. image: {
  17718. source: "./media/characters/typhek/foot.svg"
  17719. }
  17720. },
  17721. sole: {
  17722. height: math.unit(2.05, "feet"),
  17723. name: "Sole",
  17724. image: {
  17725. source: "./media/characters/typhek/sole.svg"
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Macro",
  17732. height: math.unit(40, "stories"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Megamacro",
  17737. height: math.unit(1, "mile")
  17738. },
  17739. {
  17740. name: "Gigamacro",
  17741. height: math.unit(4000, "solarradii")
  17742. },
  17743. {
  17744. name: "Universal",
  17745. height: math.unit(1.1, "universes")
  17746. }
  17747. ]
  17748. )
  17749. };
  17750. characterMakers["Kassy"] = () => {
  17751. return makeCharacter(
  17752. "Kassy",
  17753. "kclt",
  17754. {
  17755. side: {
  17756. height: math.unit(5 + 7/12, "feet"),
  17757. weight: math.unit(150, "lb"),
  17758. name: "Side",
  17759. image: {
  17760. source: "./media/characters/kassy/side.svg",
  17761. extra: 1280/1225,
  17762. bottom: 0.002
  17763. }
  17764. },
  17765. front: {
  17766. height: math.unit(5 + 7/12, "feet"),
  17767. weight: math.unit(150, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/kassy/front.svg",
  17771. extra: 1280/1225,
  17772. bottom: 0.025
  17773. }
  17774. },
  17775. back: {
  17776. height: math.unit(5 + 7/12, "feet"),
  17777. weight: math.unit(150, "lb"),
  17778. name: "Back",
  17779. image: {
  17780. source: "./media/characters/kassy/back.svg",
  17781. extra: 1280/1225,
  17782. bottom: 0.002
  17783. }
  17784. },
  17785. foot: {
  17786. height: math.unit(1.266, "feet"),
  17787. name: "Foot",
  17788. image: {
  17789. source: "./media/characters/kassy/foot.svg"
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(5 + 7/12, "feet")
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(137, "feet"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Megamacro",
  17805. height: math.unit(1, "mile")
  17806. },
  17807. ]
  17808. )
  17809. };
  17810. characterMakers["Neil"] = () => {
  17811. return makeCharacter(
  17812. "Neil",
  17813. "mZmm",
  17814. {
  17815. front: {
  17816. height: math.unit(6 + 1/12, "feet"),
  17817. weight: math.unit(200, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/neil/front.svg",
  17821. extra: 1326/1250,
  17822. bottom: 0.023
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(6 + 1/12, "feet"),
  17830. default: true
  17831. },
  17832. {
  17833. name: "Macro",
  17834. height: math.unit(200, "feet")
  17835. },
  17836. ]
  17837. )
  17838. };
  17839. characterMakers["Atticus"] = () => {
  17840. return makeCharacter(
  17841. "Atticus",
  17842. "mZmm",
  17843. {
  17844. front: {
  17845. height: math.unit(5 + 9/12, "feet"),
  17846. weight: math.unit(190, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/atticus/front.svg",
  17850. extra: 2934/2785,
  17851. bottom: 0.025
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(5 + 9/12, "feet"),
  17859. default: true
  17860. },
  17861. {
  17862. name: "Macro",
  17863. height: math.unit(180, "feet")
  17864. },
  17865. ]
  17866. )
  17867. };
  17868. characterMakers["Milo"] = () => {
  17869. return makeCharacter(
  17870. "Milo",
  17871. "mZmm",
  17872. {
  17873. side: {
  17874. height: math.unit(9, "feet"),
  17875. weight: math.unit(650, "lb"),
  17876. name: "Side",
  17877. image: {
  17878. source: "./media/characters/milo/side.svg",
  17879. extra: 2644/2310,
  17880. bottom: 0.032
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(9, "feet"),
  17888. default: true
  17889. },
  17890. {
  17891. name: "Macro",
  17892. height: math.unit(300, "feet")
  17893. },
  17894. ]
  17895. )
  17896. };
  17897. characterMakers["Ijzer"] = () => {
  17898. return makeCharacter(
  17899. "Ijzer",
  17900. "Ijzer",
  17901. {
  17902. side: {
  17903. height: math.unit(8, "meters"),
  17904. weight: math.unit(90000, "kg"),
  17905. name: "Side",
  17906. image: {
  17907. source: "./media/characters/ijzer/side.svg",
  17908. extra: 2756/1600,
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Small",
  17916. height: math.unit(3, "meters")
  17917. },
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(8, "meters"),
  17921. default: true
  17922. },
  17923. {
  17924. name: "Normal+",
  17925. height: math.unit(10, "meters")
  17926. },
  17927. {
  17928. name: "Bigger",
  17929. height: math.unit(24, "meters")
  17930. },
  17931. {
  17932. name: "Huge",
  17933. height: math.unit(80, "meters")
  17934. },
  17935. ]
  17936. )
  17937. };
  17938. characterMakers["Luca Cervicum"] = () => {
  17939. return makeCharacter(
  17940. "Luca Cervicum",
  17941. "Luca Cervicum",
  17942. {
  17943. front: {
  17944. height: math.unit(6 + 2/12, "feet"),
  17945. weight: math.unit(153, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/luca-cervicum/front.svg",
  17949. extra: 370/327,
  17950. bottom: 0.015
  17951. }
  17952. },
  17953. back: {
  17954. height: math.unit(6 + 2/12, "feet"),
  17955. weight: math.unit(153, "lb"),
  17956. name: "Back",
  17957. image: {
  17958. source: "./media/characters/luca-cervicum/back.svg",
  17959. extra: 367/333,
  17960. bottom: 0.005
  17961. }
  17962. },
  17963. frontGear: {
  17964. height: math.unit(6 + 2/12, "feet"),
  17965. weight: math.unit(173, "lb"),
  17966. name: "Front (Gear)",
  17967. image: {
  17968. source: "./media/characters/luca-cervicum/front-gear.svg",
  17969. extra: 377/333,
  17970. bottom: 0.006
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(6 + 2/12, "feet"),
  17978. default: true
  17979. },
  17980. ]
  17981. )
  17982. };
  17983. characterMakers["Oliver"] = () => {
  17984. return makeCharacter(
  17985. "Oliver",
  17986. "Fidchell",
  17987. {
  17988. front: {
  17989. height: math.unit(6 + 1/12, "feet"),
  17990. weight: math.unit(304, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/oliver/front.svg",
  17994. extra: 157/143,
  17995. bottom: 0.08
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(6 + 1/12, "feet"),
  18003. default: true
  18004. },
  18005. ]
  18006. )
  18007. };
  18008. characterMakers["Shane"] = () => {
  18009. return makeCharacter(
  18010. "Shane",
  18011. "Fidchell",
  18012. {
  18013. front: {
  18014. height: math.unit(5 + 7/12, "feet"),
  18015. weight: math.unit(140, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/shane/front.svg",
  18019. extra: 304/289,
  18020. bottom: 0.005
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(5 + 7/12, "feet"),
  18028. default: true
  18029. },
  18030. ]
  18031. )
  18032. };
  18033. characterMakers["Shin"] = () => {
  18034. return makeCharacter(
  18035. "Shin",
  18036. "Fidchell",
  18037. {
  18038. front: {
  18039. height: math.unit(5 + 9/12, "feet"),
  18040. weight: math.unit(178, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/shin/front.svg",
  18044. extra: 159/151,
  18045. bottom: 0.015
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(5 + 9/12, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. )
  18057. };
  18058. characterMakers["Xerxes"] = () => {
  18059. return makeCharacter(
  18060. "Xerxes",
  18061. "Fidchell",
  18062. {
  18063. front: {
  18064. height: math.unit(5 + 10/12, "feet"),
  18065. weight: math.unit(168, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/xerxes/front.svg",
  18069. extra: 282/260,
  18070. bottom: 0.045
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(5 + 10/12, "feet"),
  18078. default: true
  18079. },
  18080. ]
  18081. )
  18082. };
  18083. characterMakers["Chaska"] = () => {
  18084. return makeCharacter(
  18085. "Chaska",
  18086. "Fidchell",
  18087. {
  18088. front: {
  18089. height: math.unit(6 + 7/12, "feet"),
  18090. weight: math.unit(208, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/chaska/front.svg",
  18094. extra: 332/319,
  18095. bottom: 0.015
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(6 + 7/12, "feet"),
  18103. default: true
  18104. },
  18105. ]
  18106. )
  18107. };
  18108. characterMakers["Enuk"] = () => {
  18109. return makeCharacter(
  18110. "Enuk",
  18111. "Fidchell",
  18112. {
  18113. front: {
  18114. height: math.unit(5 + 8/12, "feet"),
  18115. weight: math.unit(208, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/enuk/front.svg",
  18119. extra: 437/406,
  18120. bottom: 0.02
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(5 + 8/12, "feet"),
  18128. default: true
  18129. },
  18130. ]
  18131. )
  18132. };
  18133. characterMakers["Bruun"] = () => {
  18134. return makeCharacter(
  18135. "Bruun",
  18136. "Fidchell",
  18137. {
  18138. front: {
  18139. height: math.unit(5 + 10/12, "feet"),
  18140. weight: math.unit(252, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/bruun/front.svg",
  18144. extra: 197/187,
  18145. bottom: 0.012
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(5 + 10/12, "feet"),
  18153. default: true
  18154. },
  18155. ]
  18156. )
  18157. };
  18158. characterMakers["Alexeev"] = () => {
  18159. return makeCharacter(
  18160. "Alexeev",
  18161. "Fidchell",
  18162. {
  18163. front: {
  18164. height: math.unit(6 + 10/12, "feet"),
  18165. weight: math.unit(255, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/alexeev/front.svg",
  18169. extra: 213/200,
  18170. bottom: 0.05
  18171. }
  18172. },
  18173. },
  18174. [
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(6 + 10/12, "feet"),
  18178. default: true
  18179. },
  18180. ]
  18181. )
  18182. };
  18183. characterMakers["Evelyn"] = () => {
  18184. return makeCharacter(
  18185. "Evelyn",
  18186. "Fidchell",
  18187. {
  18188. front: {
  18189. height: math.unit(2 + 8/12, "feet"),
  18190. weight: math.unit(22, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/evelyn/front.svg",
  18194. extra: 208/180
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(2 + 8/12, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. )
  18206. };
  18207. characterMakers["Inca"] = () => {
  18208. return makeCharacter(
  18209. "Inca",
  18210. "Fidchell",
  18211. {
  18212. front: {
  18213. height: math.unit(5 + 9/12, "feet"),
  18214. weight: math.unit(139, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/inca/front.svg",
  18218. extra: 294/291,
  18219. bottom: 0.03
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(5 + 9/12, "feet"),
  18227. default: true
  18228. },
  18229. ]
  18230. )
  18231. };
  18232. characterMakers["Magdalene"] = () => {
  18233. return makeCharacter(
  18234. "Magdalene",
  18235. "Fidchell",
  18236. {
  18237. front: {
  18238. height: math.unit(5 + 1/12, "feet"),
  18239. weight: math.unit(84, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/magdalene/front.svg",
  18243. extra: 293/273
  18244. }
  18245. },
  18246. },
  18247. [
  18248. {
  18249. name: "Normal",
  18250. height: math.unit(5 + 1/12, "feet"),
  18251. default: true
  18252. },
  18253. ]
  18254. )
  18255. };
  18256. characterMakers["Mera"] = () => {
  18257. return makeCharacter(
  18258. "Mera",
  18259. "Fidchell",
  18260. {
  18261. front: {
  18262. height: math.unit(6 + 3/12, "feet"),
  18263. weight: math.unit(185, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/mera/front.svg",
  18267. extra: 291/277,
  18268. bottom: 0.03
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Normal",
  18275. height: math.unit(6 + 3/12, "feet"),
  18276. default: true
  18277. },
  18278. ]
  18279. )
  18280. };
  18281. characterMakers["Ceres"] = () => {
  18282. return makeCharacter(
  18283. "Ceres",
  18284. "Radarn",
  18285. {
  18286. front: {
  18287. height: math.unit(6 + 7/12, "feet"),
  18288. weight: math.unit(160, "lb"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/ceres/front.svg",
  18292. extra: 1023/950,
  18293. bottom: 0.027
  18294. }
  18295. },
  18296. back: {
  18297. height: math.unit(6 + 7/12, "feet"),
  18298. weight: math.unit(160, "lb"),
  18299. name: "Back",
  18300. image: {
  18301. source: "./media/characters/ceres/back.svg",
  18302. extra: 1023/950
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(6 + 7/12, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. )
  18314. };
  18315. characterMakers["Kris"] = () => {
  18316. return makeCharacter(
  18317. "Kris",
  18318. "Radarn",
  18319. {
  18320. front: {
  18321. height: math.unit(5 + 10/12, "feet"),
  18322. weight: math.unit(150, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/kris/front.svg",
  18326. extra: 885/803,
  18327. bottom: 0.03
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(5 + 10/12, "feet"),
  18335. default: true
  18336. },
  18337. ]
  18338. )
  18339. };
  18340. characterMakers["Taluthus"] = () => {
  18341. return makeCharacter(
  18342. "Taluthus",
  18343. "Taluthus",
  18344. {
  18345. front: {
  18346. height: math.unit(7, "feet"),
  18347. weight: math.unit(120, "kg"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/taluthus/front.svg",
  18351. extra: 903/833,
  18352. bottom: 0.015
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(7, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(300, "feet")
  18365. },
  18366. ]
  18367. )
  18368. };
  18369. characterMakers["Dawn"] = () => {
  18370. return makeCharacter(
  18371. "Dawn",
  18372. "Radarn",
  18373. {
  18374. front: {
  18375. height: math.unit(5 + 9/12, "feet"),
  18376. weight: math.unit(145, "lb"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/dawn/front.svg",
  18380. extra: 2094/2016,
  18381. bottom: 0.025
  18382. }
  18383. },
  18384. back: {
  18385. height: math.unit(5 + 9/12, "feet"),
  18386. weight: math.unit(160, "lb"),
  18387. name: "Back",
  18388. image: {
  18389. source: "./media/characters/dawn/back.svg",
  18390. extra: 2112/2080,
  18391. bottom: 0.005
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(6 + 7/12, "feet"),
  18399. default: true
  18400. },
  18401. ]
  18402. )
  18403. };
  18404. characterMakers["Arador"] = () => {
  18405. return makeCharacter(
  18406. "Arador",
  18407. "AradorTD",
  18408. {
  18409. anthro: {
  18410. height: math.unit(8 + 3/12, "feet"),
  18411. weight: math.unit(450, "lb"),
  18412. name: "Anthro",
  18413. image: {
  18414. source: "./media/characters/arador/anthro.svg",
  18415. extra: 1835/1718,
  18416. bottom: 0.025
  18417. }
  18418. },
  18419. feral: {
  18420. height: math.unit(4, "feet"),
  18421. weight: math.unit(200, "lb"),
  18422. name: "Feral",
  18423. image: {
  18424. source: "./media/characters/arador/feral.svg",
  18425. extra: 1683/1514,
  18426. bottom: 0.07
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(8 + 3/12, "feet")
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(82.5, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. )
  18442. };
  18443. characterMakers["Dharsi"] = () => {
  18444. return makeCharacter(
  18445. "Dharsi",
  18446. "Dharsi",
  18447. {
  18448. front: {
  18449. height: math.unit(5 + 10/12, "feet"),
  18450. weight: math.unit(125, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/dharsi/front.svg",
  18454. extra: 716/630,
  18455. bottom: 0.035
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Nano",
  18462. height: math.unit(100, "nm")
  18463. },
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(2, "inches")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(5 + 10/12, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(1000, "feet")
  18476. },
  18477. {
  18478. name: "Megamacro",
  18479. height: math.unit(10, "miles")
  18480. },
  18481. {
  18482. name: "Gigamacro",
  18483. height: math.unit(3000, "miles")
  18484. },
  18485. {
  18486. name: "Teramacro",
  18487. height: math.unit(500000, "miles")
  18488. },
  18489. {
  18490. name: "Teramacro+",
  18491. height: math.unit(30, "galaxies")
  18492. },
  18493. ]
  18494. )
  18495. };
  18496. characterMakers["Deathy"] = () => {
  18497. return makeCharacter(
  18498. "Deathy",
  18499. "DeathyWolfi",
  18500. {
  18501. front: {
  18502. height: math.unit(6, "feet"),
  18503. weight: math.unit(150, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/deathy/front.svg",
  18507. extra: 1552/1463,
  18508. bottom: 0.025
  18509. }
  18510. },
  18511. side: {
  18512. height: math.unit(6, "feet"),
  18513. weight: math.unit(150, "lb"),
  18514. name: "Side",
  18515. image: {
  18516. source: "./media/characters/deathy/side.svg",
  18517. extra: 1604/1455,
  18518. bottom: 0.025
  18519. }
  18520. },
  18521. back: {
  18522. height: math.unit(6, "feet"),
  18523. weight: math.unit(150, "lb"),
  18524. name: "Back",
  18525. image: {
  18526. source: "./media/characters/deathy/back.svg",
  18527. extra: 1580/1463,
  18528. bottom: 0.005
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Micro",
  18535. height: math.unit(5, "millimeters")
  18536. },
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(6 + 5/12, "feet"),
  18540. default: true
  18541. },
  18542. ]
  18543. )
  18544. };
  18545. characterMakers["Juniper"] = () => {
  18546. return makeCharacter(
  18547. "Juniper",
  18548. "Dahwchooa",
  18549. {
  18550. front: {
  18551. height: math.unit(16, "feet"),
  18552. weight: math.unit(4000, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/juniper/front.svg",
  18556. bottom: 0.04
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(16, "feet"),
  18564. default: true
  18565. },
  18566. ]
  18567. )
  18568. };
  18569. characterMakers["Hipster"] = () => {
  18570. return makeCharacter(
  18571. "Hipster",
  18572. "Hipsterfox37",
  18573. {
  18574. front: {
  18575. height: math.unit(6, "feet"),
  18576. weight: math.unit(150, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/hipster/front.svg",
  18580. extra: 1312/1209,
  18581. bottom: 0.025
  18582. }
  18583. },
  18584. back: {
  18585. height: math.unit(6, "feet"),
  18586. weight: math.unit(150, "lb"),
  18587. name: "Back",
  18588. image: {
  18589. source: "./media/characters/hipster/back.svg",
  18590. extra: 1281/1196,
  18591. bottom: 0.01
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(1, "mm")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(4, "inches"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(500, "feet")
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(1000, "miles")
  18612. },
  18613. ]
  18614. )
  18615. };
  18616. characterMakers["Tendirmuldr"] = () => {
  18617. return makeCharacter(
  18618. "Tendirmuldr",
  18619. "Tendirmuldr",
  18620. {
  18621. front: {
  18622. height: math.unit(6, "feet"),
  18623. weight: math.unit(150, "lb"),
  18624. name: "Front",
  18625. image: {
  18626. source: "./media/characters/tendirmuldr/front.svg",
  18627. extra: 1878/1772,
  18628. bottom: 0.015
  18629. }
  18630. },
  18631. },
  18632. [
  18633. {
  18634. name: "Megamacro",
  18635. height: math.unit(1500, "miles"),
  18636. default: true
  18637. },
  18638. ]
  18639. )
  18640. };
  18641. characterMakers["Mort"] = () => {
  18642. return makeCharacter(
  18643. "Mort",
  18644. "LemonDeer",
  18645. {
  18646. front: {
  18647. height: math.unit(14, "feet"),
  18648. weight: math.unit(12000, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/mort/front.svg",
  18652. extra: 365/318,
  18653. bottom: 0.01
  18654. }
  18655. },
  18656. side: {
  18657. height: math.unit(14, "feet"),
  18658. weight: math.unit(12000, "lb"),
  18659. name: "Side",
  18660. image: {
  18661. source: "./media/characters/mort/side.svg",
  18662. extra: 365/318,
  18663. bottom: 0.052
  18664. }
  18665. },
  18666. back: {
  18667. height: math.unit(14, "feet"),
  18668. weight: math.unit(12000, "lb"),
  18669. name: "Back",
  18670. image: {
  18671. source: "./media/characters/mort/back.svg",
  18672. extra: 371/332,
  18673. bottom: 0.18
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(14, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. )
  18685. };
  18686. characterMakers["Lycoa"] = () => {
  18687. return makeCharacter(
  18688. "Lycoa",
  18689. "Varden",
  18690. {
  18691. front: {
  18692. height: math.unit(8, "feet"),
  18693. weight: math.unit(1, "ton"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/lycoa/front.svg",
  18697. extra: 1875/1789,
  18698. bottom: 0.022
  18699. }
  18700. },
  18701. back: {
  18702. height: math.unit(8, "feet"),
  18703. weight: math.unit(1, "ton"),
  18704. name: "Back",
  18705. image: {
  18706. source: "./media/characters/lycoa/back.svg",
  18707. extra: 1835/1781,
  18708. bottom: 0.03
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(8, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(30, "feet")
  18721. },
  18722. ]
  18723. )
  18724. };
  18725. characterMakers["Naldara"] = () => {
  18726. return makeCharacter(
  18727. "Naldara",
  18728. "Varden",
  18729. {
  18730. front: {
  18731. height: math.unit(4 + 2/12, "feet"),
  18732. weight: math.unit(70, "lb"),
  18733. name: "Front",
  18734. image: {
  18735. source: "./media/characters/naldara/front.svg",
  18736. extra: 841/720,
  18737. bottom: 0.04
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(4 + 2/12, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. )
  18749. };
  18750. characterMakers["Briar"] = () => {
  18751. return makeCharacter(
  18752. "Briar",
  18753. "Varden",
  18754. {
  18755. front: {
  18756. height: math.unit(13 + 7/12, "feet"),
  18757. weight: math.unit(1500, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/briar/front.svg",
  18761. extra: 626/596,
  18762. bottom: 0.08
  18763. }
  18764. },
  18765. },
  18766. [
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(13 + 7/12, "feet"),
  18770. default: true
  18771. },
  18772. ]
  18773. )
  18774. };
  18775. characterMakers["Vanguard"] = () => {
  18776. return makeCharacter(
  18777. "Vanguard",
  18778. "Varden",
  18779. {
  18780. side: {
  18781. height: math.unit(10, "feet"),
  18782. weight: math.unit(500, "lb"),
  18783. name: "Side",
  18784. image: {
  18785. source: "./media/characters/vanguard/side.svg",
  18786. extra: 502/425,
  18787. bottom: 0.087
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(10, "feet"),
  18795. default: true
  18796. },
  18797. ]
  18798. )
  18799. };
  18800. characterMakers["Artemis"] = () => {
  18801. return makeCharacter(
  18802. "Artemis",
  18803. "Varden",
  18804. {
  18805. front: {
  18806. height: math.unit(7.5, "feet"),
  18807. weight: math.unit(2, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/artemis/front.svg",
  18811. extra: 1192/1075,
  18812. bottom: 0.07
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(7.5, "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Enlarged",
  18824. height: math.unit(12, "feet")
  18825. },
  18826. ]
  18827. )
  18828. };
  18829. characterMakers["Kira"] = () => {
  18830. return makeCharacter(
  18831. "Kira",
  18832. "meep",
  18833. {
  18834. front: {
  18835. height: math.unit(5 + 3/12, "feet"),
  18836. weight: math.unit(160, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/kira/front.svg",
  18840. extra: 906/786,
  18841. bottom: 0.01
  18842. }
  18843. },
  18844. back: {
  18845. height: math.unit(5 + 3/12, "feet"),
  18846. weight: math.unit(160, "lb"),
  18847. name: "Back",
  18848. image: {
  18849. source: "./media/characters/kira/back.svg",
  18850. extra: 882/757,
  18851. bottom: 0.005
  18852. }
  18853. },
  18854. frontDressed: {
  18855. height: math.unit(5 + 3/12, "feet"),
  18856. weight: math.unit(160, "lb"),
  18857. name: "Front (Dressed)",
  18858. image: {
  18859. source: "./media/characters/kira/front-dressed.svg",
  18860. extra: 906/786,
  18861. bottom: 0.01
  18862. }
  18863. },
  18864. beans: {
  18865. height: math.unit(0.92, "feet"),
  18866. name: "Beans",
  18867. image: {
  18868. source: "./media/characters/kira/beans.svg"
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(5 + 3/12, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. )
  18880. };
  18881. characterMakers["Scramble"] = () => {
  18882. return makeCharacter(
  18883. "Scramble",
  18884. "meep",
  18885. {
  18886. front: {
  18887. height: math.unit(5 + 4/12, "feet"),
  18888. weight: math.unit(145, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/scramble/front.svg",
  18892. extra: 763/727,
  18893. bottom: 0.05
  18894. }
  18895. },
  18896. back: {
  18897. height: math.unit(5 + 4/12, "feet"),
  18898. weight: math.unit(145, "lb"),
  18899. name: "Back",
  18900. image: {
  18901. source: "./media/characters/scramble/back.svg",
  18902. extra: 826/737,
  18903. bottom: 0.002
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(5 + 4/12, "feet"),
  18911. default: true
  18912. },
  18913. ]
  18914. )
  18915. };
  18916. characterMakers["Biscuit"] = () => {
  18917. return makeCharacter(
  18918. "Biscuit",
  18919. "meep",
  18920. {
  18921. side: {
  18922. height: math.unit(6 + 2/12, "feet"),
  18923. weight: math.unit(190, "lb"),
  18924. name: "Side",
  18925. image: {
  18926. source: "./media/characters/biscuit/side.svg",
  18927. extra: 858/791,
  18928. bottom: 0.044
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(6 + 2/12, "feet"),
  18936. default: true
  18937. },
  18938. ]
  18939. )
  18940. };
  18941. characterMakers["Poffin"] = () => {
  18942. return makeCharacter(
  18943. "Poffin",
  18944. "meep",
  18945. {
  18946. front: {
  18947. height: math.unit(5 + 2/12, "feet"),
  18948. weight: math.unit(120, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/poffin/front.svg",
  18952. extra: 786/680,
  18953. bottom: 0.005
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(5 + 2/12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. )
  18965. };
  18966. characterMakers["Dhari"] = () => {
  18967. return makeCharacter(
  18968. "Dhari",
  18969. "Dhari",
  18970. {
  18971. front: {
  18972. height: math.unit(6 + 3/12, "feet"),
  18973. weight: math.unit(519, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/dhari/front.svg",
  18977. extra: 1048/946,
  18978. bottom: 0.015
  18979. }
  18980. },
  18981. back: {
  18982. height: math.unit(6 + 3/12, "feet"),
  18983. weight: math.unit(519, "lb"),
  18984. name: "Back",
  18985. image: {
  18986. source: "./media/characters/dhari/back.svg",
  18987. extra: 1048/931,
  18988. bottom: 0.005
  18989. }
  18990. },
  18991. frontDressed: {
  18992. height: math.unit(6 + 3/12, "feet"),
  18993. weight: math.unit(519, "lb"),
  18994. name: "Front (Dressed)",
  18995. image: {
  18996. source: "./media/characters/dhari/front-dressed.svg",
  18997. extra: 1713/1546,
  18998. bottom: 0.02
  18999. }
  19000. },
  19001. backDressed: {
  19002. height: math.unit(6 + 3/12, "feet"),
  19003. weight: math.unit(519, "lb"),
  19004. name: "Back (Dressed)",
  19005. image: {
  19006. source: "./media/characters/dhari/back-dressed.svg",
  19007. extra: 1699/1537,
  19008. bottom: 0.01
  19009. }
  19010. },
  19011. maw: {
  19012. height: math.unit(0.95, "feet"),
  19013. name: "Maw",
  19014. image: {
  19015. source: "./media/characters/dhari/maw.svg"
  19016. }
  19017. },
  19018. wereFront: {
  19019. height: math.unit(12 + 8/12, "feet"),
  19020. weight: math.unit(4000, "lb"),
  19021. name: "Front (Were)",
  19022. image: {
  19023. source: "./media/characters/dhari/were-front.svg",
  19024. extra: 1065/969,
  19025. bottom: 0.015
  19026. }
  19027. },
  19028. wereBack: {
  19029. height: math.unit(12 + 8/12, "feet"),
  19030. weight: math.unit(4000, "lb"),
  19031. name: "Back (Were)",
  19032. image: {
  19033. source: "./media/characters/dhari/were-back.svg",
  19034. extra: 1065/969,
  19035. bottom: 0.012
  19036. }
  19037. },
  19038. wereMaw: {
  19039. height: math.unit(0.625, "meters"),
  19040. name: "Maw (Were)",
  19041. image: {
  19042. source: "./media/characters/dhari/were-maw.svg"
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(6 + 3/12, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. )
  19054. };
  19055. characterMakers["Rena Dyne"] = () => {
  19056. return makeCharacter(
  19057. "Rena Dyne",
  19058. "renadyne",
  19059. {
  19060. anthro: {
  19061. height: math.unit(5 + 7/12, "feet"),
  19062. weight: math.unit(175, "lb"),
  19063. name: "Anthro",
  19064. image: {
  19065. source: "./media/characters/rena-dyne/anthro.svg",
  19066. extra: 1849/1785,
  19067. bottom: 0.005
  19068. }
  19069. },
  19070. taur: {
  19071. height: math.unit(15 + 6/12, "feet"),
  19072. weight: math.unit(8000, "lb"),
  19073. name: "Taur",
  19074. image: {
  19075. source: "./media/characters/rena-dyne/taur.svg",
  19076. extra: 2315/2234,
  19077. bottom: 0.033
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(5 + 7/12, "feet"),
  19085. default: true
  19086. },
  19087. ]
  19088. )
  19089. };
  19090. characterMakers["Weremeep"] = () => {
  19091. return makeCharacter(
  19092. "Weremeep",
  19093. "meep",
  19094. {
  19095. front: {
  19096. height: math.unit(8, "feet"),
  19097. weight: math.unit(600, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/weremeep/front.svg",
  19101. extra: 967/862,
  19102. bottom: 0.01
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(8, "feet"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Lorg",
  19114. height: math.unit(12, "feet")
  19115. },
  19116. {
  19117. name: "Oh Lawd She Comin'",
  19118. height: math.unit(20, "feet")
  19119. },
  19120. ]
  19121. )
  19122. };
  19123. characterMakers["Reza"] = () => {
  19124. return makeCharacter(
  19125. "Reza",
  19126. "rezavax",
  19127. {
  19128. front: {
  19129. height: math.unit(4, "feet"),
  19130. weight: math.unit(90, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/reza/front.svg",
  19134. extra: 1183/1111,
  19135. bottom: 0.017
  19136. }
  19137. },
  19138. back: {
  19139. height: math.unit(4, "feet"),
  19140. weight: math.unit(90, "lb"),
  19141. name: "Back",
  19142. image: {
  19143. source: "./media/characters/reza/back.svg",
  19144. extra: 1183/1111,
  19145. bottom: 0.01
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(4, "feet"),
  19153. default: true
  19154. },
  19155. ]
  19156. )
  19157. };
  19158. characterMakers["Athea"] = () => {
  19159. return makeCharacter(
  19160. "Athea",
  19161. "Athea",
  19162. {
  19163. side: {
  19164. height: math.unit(15, "feet"),
  19165. weight: math.unit(14, "tons"),
  19166. name: "Side",
  19167. image: {
  19168. source: "./media/characters/athea/side.svg",
  19169. extra: 960/540,
  19170. bottom: 0.003
  19171. }
  19172. },
  19173. sitting: {
  19174. height: math.unit(6*2.85, "feet"),
  19175. weight: math.unit(14, "tons"),
  19176. name: "Sitting",
  19177. image: {
  19178. source: "./media/characters/athea/sitting.svg",
  19179. extra: 621/581,
  19180. bottom: 0.075
  19181. }
  19182. },
  19183. maw: {
  19184. height: math.unit(7.59498031496063, "feet"),
  19185. name: "Maw",
  19186. image: {
  19187. source: "./media/characters/athea/maw.svg"
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Lap Cat",
  19194. height: math.unit(2.5, "feet")
  19195. },
  19196. {
  19197. name: "Minimacro",
  19198. height: math.unit(15, "feet"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(120, "feet")
  19204. },
  19205. {
  19206. name: "Macro+",
  19207. height: math.unit(640, "feet")
  19208. },
  19209. ]
  19210. )
  19211. };
  19212. characterMakers["Seroko"] = () => {
  19213. return makeCharacter(
  19214. "Seroko",
  19215. "Seroko",
  19216. {
  19217. front: {
  19218. height: math.unit(8 + 8/12, "feet"),
  19219. weight: math.unit(130, "kg"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/seroko/front.svg",
  19223. extra: 1385/1280,
  19224. bottom: 0.025
  19225. }
  19226. },
  19227. back: {
  19228. height: math.unit(8 + 8/12, "feet"),
  19229. weight: math.unit(130, "kg"),
  19230. name: "Back",
  19231. image: {
  19232. source: "./media/characters/seroko/back.svg",
  19233. extra: 1369/1238,
  19234. bottom: 0.018
  19235. }
  19236. },
  19237. frontDressed: {
  19238. height: math.unit(8 + 8/12, "feet"),
  19239. weight: math.unit(130, "kg"),
  19240. name: "Front (Dressed)",
  19241. image: {
  19242. source: "./media/characters/seroko/front-dressed.svg",
  19243. extra: 1366/1275,
  19244. bottom: 0.03
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(8 + 8/12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. )
  19256. };
  19257. characterMakers["Quatzi"] = () => {
  19258. return makeCharacter(
  19259. "Quatzi",
  19260. "chomp-chi",
  19261. {
  19262. front: {
  19263. height: math.unit(5.5, "feet"),
  19264. weight: math.unit(160, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/quatzi/front.svg",
  19268. extra: 2346/2242,
  19269. bottom: 0.015
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(5.5, "feet"),
  19277. default: true
  19278. },
  19279. {
  19280. name: "Big",
  19281. height: math.unit(7.7, "feet")
  19282. },
  19283. ]
  19284. )
  19285. };
  19286. characterMakers["Sen"] = () => {
  19287. return makeCharacter(
  19288. "Sen",
  19289. "Looneyluna",
  19290. {
  19291. front: {
  19292. height: math.unit(5 + 11/12, "feet"),
  19293. weight: math.unit(180, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/sen/front.svg",
  19297. extra: 1321/1254,
  19298. bottom: 0.015
  19299. }
  19300. },
  19301. side: {
  19302. height: math.unit(5 + 11/12, "feet"),
  19303. weight: math.unit(180, "lb"),
  19304. name: "Side",
  19305. image: {
  19306. source: "./media/characters/sen/side.svg",
  19307. extra: 1321/1254,
  19308. bottom: 0.007
  19309. }
  19310. },
  19311. back: {
  19312. height: math.unit(5 + 11/12, "feet"),
  19313. weight: math.unit(180, "lb"),
  19314. name: "Back",
  19315. image: {
  19316. source: "./media/characters/sen/back.svg",
  19317. extra: 1321/1254
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(5 + 11/12, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. )
  19329. };
  19330. characterMakers["Fruity"] = () => {
  19331. return makeCharacter(
  19332. "Fruity",
  19333. "FruitOfTheDoom",
  19334. {
  19335. front: {
  19336. height: math.unit(166.6, "cm"),
  19337. weight: math.unit(66.6, "kg"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/fruity/front.svg",
  19341. extra: 1510/1386,
  19342. bottom: 0.04
  19343. }
  19344. },
  19345. back: {
  19346. height: math.unit(166.6, "cm"),
  19347. weight: math.unit(66.6, "lb"),
  19348. name: "Back",
  19349. image: {
  19350. source: "./media/characters/fruity/back.svg",
  19351. extra: 1563/1435,
  19352. bottom: 0.005
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(166.6, "cm"),
  19360. default: true
  19361. },
  19362. {
  19363. name: "Demonic",
  19364. height: math.unit(166.6, "feet")
  19365. },
  19366. ]
  19367. )
  19368. };
  19369. characterMakers["Zost"] = () => {
  19370. return makeCharacter(
  19371. "Zost",
  19372. "Varden",
  19373. {
  19374. side: {
  19375. height: math.unit(10, "feet"),
  19376. weight: math.unit(500, "lb"),
  19377. name: "Side",
  19378. image: {
  19379. source: "./media/characters/zost/side.svg",
  19380. extra: 966/880,
  19381. bottom: 0.075
  19382. }
  19383. },
  19384. mawFront: {
  19385. height: math.unit(1.08, "meters"),
  19386. name: "Maw (Front)",
  19387. image: {
  19388. source: "./media/characters/zost/maw-front.svg"
  19389. }
  19390. },
  19391. mawSide: {
  19392. height: math.unit(2.66, "feet"),
  19393. name: "Maw (Side)",
  19394. image: {
  19395. source: "./media/characters/zost/maw-side.svg"
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(10, "feet"),
  19403. default: true
  19404. },
  19405. ]
  19406. )
  19407. };
  19408. characterMakers["Luci"] = () => {
  19409. return makeCharacter(
  19410. "Luci",
  19411. "sydst",
  19412. {
  19413. front: {
  19414. height: math.unit(5 + 4/12, "feet"),
  19415. weight: math.unit(120, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/luci/front.svg",
  19419. extra: 1985/1884,
  19420. bottom: 0.04
  19421. }
  19422. },
  19423. back: {
  19424. height: math.unit(5 + 4/12, "feet"),
  19425. weight: math.unit(120, "lb"),
  19426. name: "Back",
  19427. image: {
  19428. source: "./media/characters/luci/back.svg",
  19429. extra: 1892/1791,
  19430. bottom: 0.002
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(5 + 4/12, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. )
  19442. };
  19443. characterMakers["2th"] = () => {
  19444. return makeCharacter(
  19445. "2th",
  19446. "Kenson",
  19447. {
  19448. front: {
  19449. height: math.unit(1500, "feet"),
  19450. weight: math.unit(3.8e6, "tons"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/2th/front.svg",
  19454. extra: 3489/3350,
  19455. bottom: 0.1
  19456. }
  19457. },
  19458. foot: {
  19459. height: math.unit(461, "feet"),
  19460. name: "Foot",
  19461. image: {
  19462. source: "./media/characters/2th/foot.svg"
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "\"Micro\"",
  19469. height: math.unit(15 + 7/12, "feet")
  19470. },
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(1500, "feet"),
  19474. default: true
  19475. },
  19476. {
  19477. name: "Macro",
  19478. height: math.unit(5000, "feet")
  19479. },
  19480. {
  19481. name: "Megamacro",
  19482. height: math.unit(15, "miles")
  19483. },
  19484. {
  19485. name: "Gigamacro",
  19486. height: math.unit(4000, "miles")
  19487. },
  19488. {
  19489. name: "Galactic",
  19490. height: math.unit(50, "AU")
  19491. },
  19492. ]
  19493. )
  19494. };
  19495. characterMakers["Amethyst"] = () => {
  19496. return makeCharacter(
  19497. "Amethyst",
  19498. "AmethystSnowmew",
  19499. {
  19500. front: {
  19501. height: math.unit(5 + 6/12, "feet"),
  19502. weight: math.unit(220, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/amethyst/front.svg",
  19506. extra: 2078/2040,
  19507. bottom: 0.045
  19508. }
  19509. },
  19510. back: {
  19511. height: math.unit(5 + 6/12, "feet"),
  19512. weight: math.unit(220, "lb"),
  19513. name: "Back",
  19514. image: {
  19515. source: "./media/characters/amethyst/back.svg",
  19516. extra: 2021/1989,
  19517. bottom: 0.02
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(5 + 6/12, "feet"),
  19525. default: true
  19526. },
  19527. ]
  19528. )
  19529. };
  19530. characterMakers["Yumi Akiyama"] = () => {
  19531. return makeCharacter(
  19532. "Yumi Akiyama",
  19533. "Yumi Akiyama",
  19534. {
  19535. front: {
  19536. height: math.unit(4 + 11/12, "feet"),
  19537. weight: math.unit(120, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/yumi-akiyama/front.svg",
  19541. extra: 1327/1235,
  19542. bottom: 0.02
  19543. }
  19544. },
  19545. back: {
  19546. height: math.unit(4 + 11/12, "feet"),
  19547. weight: math.unit(120, "lb"),
  19548. name: "Back",
  19549. image: {
  19550. source: "./media/characters/yumi-akiyama/back.svg",
  19551. extra: 1287/1245,
  19552. bottom: 0.002
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Galactic",
  19559. height: math.unit(50, "galaxies"),
  19560. default: true
  19561. },
  19562. {
  19563. name: "Universal",
  19564. height: math.unit(100, "universes")
  19565. },
  19566. ]
  19567. )
  19568. };
  19569. //characters
  19570. function makeCharacters() {
  19571. const results = [];
  19572. Object.entries(characterMakers).forEach(([key, value]) => {
  19573. results.push({
  19574. name: key,
  19575. constructor: value
  19576. });
  19577. });
  19578. return results;
  19579. }