less copy protection, more size visualization
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

20107 Zeilen
523 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsec", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("parsecs", {
  7. definition: "3.086e16 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("lightyears", {
  11. definition: "9.461e15 meters",
  12. prefixes: "long"
  13. })
  14. math.createUnit("AU", {
  15. definition: "149597870700 meters"
  16. })
  17. math.createUnit("AUs", {
  18. definition: "149597870700 meters"
  19. })
  20. function makeCharacter(name, author, viewInfo, defaultSizes, extraInfo) {
  21. if (extraInfo === undefined) {
  22. extraInfo = {}
  23. }
  24. views = {};
  25. Object.entries(viewInfo).forEach(([key, value]) => {
  26. views[key] = {
  27. attributes: {
  28. height: {
  29. name: "Height",
  30. power: 1,
  31. type: "length",
  32. base: value.height
  33. }
  34. },
  35. image: value.image,
  36. name: value.name,
  37. info: value.info,
  38. rename: value.rename
  39. }
  40. if (value.weight) {
  41. views[key].attributes.weight = {
  42. name: "Mass",
  43. power: 3,
  44. type: "mass",
  45. base: value.weight
  46. };
  47. }
  48. });
  49. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  50. return entity;
  51. }
  52. characterMakers["Fen"] = () => {
  53. return makeCharacter(
  54. "Fen",
  55. "chemicalcrux",
  56. {
  57. back: {
  58. height: math.unit(2.2428, "meter"),
  59. weight: math.unit(124.738, "kg"),
  60. name: "Back",
  61. image: {
  62. source: "./media/characters/fen/back.svg",
  63. extra: 1025/935
  64. },
  65. info: {
  66. description: {
  67. mode: "append",
  68. text: "\n\nHe is not currently looking at you."
  69. }
  70. }
  71. },
  72. full: {
  73. height: math.unit(1.34, "meter"),
  74. weight: math.unit(225, "kg"),
  75. name: "Full",
  76. image: {
  77. source: "./media/characters/fen/full.svg"
  78. },
  79. info: {
  80. description: {
  81. mode: "append",
  82. text: "\n\nMunch."
  83. }
  84. }
  85. },
  86. kneeling: {
  87. height: math.unit(5.4, "feet"),
  88. weight: math.unit(124.738, "kg"),
  89. name: "Kneeling",
  90. image: {
  91. source: "./media/characters/fen/kneeling.svg",
  92. extra: 563/507
  93. }
  94. },
  95. },
  96. [
  97. {
  98. name: "Normal",
  99. height: math.unit(2.2428, "meter")
  100. },
  101. {
  102. name: "Big",
  103. height: math.unit(12, "feet")
  104. },
  105. {
  106. name: "Minimacro",
  107. height: math.unit(30, "meter"),
  108. default: true,
  109. info: {
  110. description: {
  111. mode: "append",
  112. text: "\n\nTOO DAMN BIG"
  113. }
  114. }
  115. },
  116. {
  117. name: "Macro",
  118. height: math.unit(100, "meter"),
  119. info: {
  120. description: {
  121. mode: "append",
  122. text: "\n\nTOO DAMN BIG"
  123. }
  124. }
  125. },
  126. {
  127. name: "Macro+",
  128. height: math.unit(1000, "meter")
  129. },
  130. {
  131. name: "Megamacro",
  132. height: math.unit(10, "miles")
  133. }
  134. ],
  135. {
  136. description: {
  137. title: "Bio",
  138. text: "Very furry. Sheds on everything."
  139. }
  140. }
  141. )
  142. };
  143. characterMakers["Sofia"] = () => {
  144. return makeCharacter(
  145. "Sofia",
  146. "ZakuraTech",
  147. {
  148. front: {
  149. height: math.unit(183, "cm"),
  150. weight: math.unit(80, "kg"),
  151. name: "Front",
  152. image: {
  153. source: "./media/characters/sofia/front.svg",
  154. bottom: 0.01,
  155. extra: 1
  156. }
  157. },
  158. frontAlt: {
  159. height: math.unit(183, "cm"),
  160. weight: math.unit(80, "kg"),
  161. name: "Front (alt)",
  162. image: {
  163. source: "./media/characters/sofia/front-alt.svg"
  164. }
  165. },
  166. back: {
  167. height: math.unit(183, "cm"),
  168. weight: math.unit(80, "kg"),
  169. name: "Back",
  170. image: {
  171. source: "./media/characters/sofia/back.svg"
  172. }
  173. },
  174. },
  175. [
  176. {
  177. name: "Normal",
  178. height: math.unit(1.83, "meter")
  179. },
  180. {
  181. name: "Macro",
  182. height: math.unit(96, "feet"),
  183. default: true
  184. },
  185. {
  186. name: "Megamerger",
  187. height: math.unit(650, "feet")
  188. },
  189. ]
  190. )
  191. };
  192. characterMakers["March"] = () => {
  193. return makeCharacter(
  194. "March",
  195. "March-Dragon",
  196. {
  197. front: {
  198. height: math.unit(7, "feet"),
  199. weight: math.unit(100, "kg"),
  200. name: "Front",
  201. image: {
  202. source: "./media/characters/march/front.svg",
  203. extra: 1,
  204. bottom: 0.015
  205. }
  206. },
  207. foot: {
  208. height: math.unit(0.9, "feet"),
  209. name: "Foot",
  210. image: {
  211. source: "./media/characters/march/foot.svg"
  212. }
  213. },
  214. },
  215. [
  216. {
  217. name: "Normal",
  218. height: math.unit(7.9, "feet")
  219. },
  220. {
  221. name: "Macro",
  222. height: math.unit(220, "meters")
  223. },
  224. {
  225. name: "Megamacro",
  226. height: math.unit(2.98, "km"),
  227. default: true
  228. },
  229. {
  230. name: "Gigamacro",
  231. height: math.unit(15963, "km")
  232. },
  233. {
  234. name: "Teramacro",
  235. height: math.unit(2980000000, "km")
  236. },
  237. {
  238. name: "Examacro",
  239. height: math.unit(250, "parsecs")
  240. },
  241. ]
  242. )
  243. };
  244. characterMakers["Noir"] = () => {
  245. return makeCharacter(
  246. "Noir",
  247. "March-Dragon",
  248. {
  249. front: {
  250. height: math.unit(6, "feet"),
  251. weight: math.unit(60, "kg"),
  252. name: "Front",
  253. image: {
  254. source: "./media/characters/noir/front.svg",
  255. extra: 1,
  256. bottom: 0.032
  257. }
  258. },
  259. },
  260. [
  261. {
  262. name: "Normal",
  263. height: math.unit(6.6, "feet")
  264. },
  265. {
  266. name: "Macro",
  267. height: math.unit(500, "feet")
  268. },
  269. {
  270. name: "Megamacro",
  271. height: math.unit(2.5, "km"),
  272. default: true
  273. },
  274. {
  275. name: "Gigamacro",
  276. height: math.unit(22500, "km")
  277. },
  278. {
  279. name: "Teramacro",
  280. height: math.unit(2500000000, "km")
  281. },
  282. {
  283. name: "Examacro",
  284. height: math.unit(200, "parsecs")
  285. },
  286. ]
  287. )
  288. };
  289. characterMakers["Okuri"] = () => {
  290. return makeCharacter(
  291. "Okuri",
  292. "OrinoMechadragon",
  293. {
  294. front: {
  295. height: math.unit(7, "feet"),
  296. weight: math.unit(100, "kg"),
  297. name: "Front",
  298. image: {
  299. source: "./media/characters/okuri/front.svg",
  300. extra: 1,
  301. bottom: 0.037
  302. }
  303. },
  304. back: {
  305. height: math.unit(7, "feet"),
  306. weight: math.unit(100, "kg"),
  307. name: "Back",
  308. image: {
  309. source: "./media/characters/okuri/back.svg",
  310. extra: 1,
  311. bottom: 0.007
  312. }
  313. },
  314. },
  315. [
  316. {
  317. name: "Megamacro",
  318. height: math.unit(100, "miles"),
  319. default: true
  320. },
  321. ]
  322. )
  323. };
  324. characterMakers["Manny"] = () => {
  325. return makeCharacter(
  326. "Manny",
  327. "Dialuca01",
  328. {
  329. front: {
  330. height: math.unit(7, "feet"),
  331. weight: math.unit(100, "kg"),
  332. name: "Front",
  333. image: {
  334. source: "./media/characters/manny/front.svg",
  335. extra: 1,
  336. bottom: 0.06
  337. }
  338. },
  339. back: {
  340. height: math.unit(7, "feet"),
  341. weight: math.unit(100, "kg"),
  342. name: "Back",
  343. image: {
  344. source: "./media/characters/manny/back.svg",
  345. extra: 1,
  346. bottom: 0.014
  347. }
  348. },
  349. },
  350. [
  351. {
  352. name: "Normal",
  353. height: math.unit(7, "feet"),
  354. },
  355. {
  356. name: "Macro",
  357. height: math.unit(78, "feet"),
  358. default: true
  359. },
  360. {
  361. name: "Macro+",
  362. height: math.unit(300, "meters")
  363. },
  364. {
  365. name: "Macro++",
  366. height: math.unit(2400, "meters")
  367. },
  368. {
  369. name: "Megamacro",
  370. height: math.unit(5167, "meters")
  371. },
  372. {
  373. name: "Gigamacro",
  374. height: math.unit(41769, "miles")
  375. },
  376. ]
  377. )
  378. };
  379. characterMakers["Adake"] = () => {
  380. return makeCharacter(
  381. "Adake",
  382. "Dialuca01",
  383. {
  384. front: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front",
  388. image: {
  389. source: "./media/characters/adake/front-1.svg"
  390. }
  391. },
  392. frontAlt: {
  393. height: math.unit(7, "feet"),
  394. weight: math.unit(100, "kg"),
  395. name: "Front (Alt)",
  396. image: {
  397. source: "./media/characters/adake/front-2.svg",
  398. extra: 1,
  399. bottom: 0.01
  400. }
  401. },
  402. back: {
  403. height: math.unit(7, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Back",
  406. image: {
  407. source: "./media/characters/adake/back.svg",
  408. }
  409. },
  410. kneel: {
  411. height: math.unit(5.385, "feet"),
  412. weight: math.unit(100, "kg"),
  413. name: "Kneeling",
  414. image: {
  415. source: "./media/characters/adake/kneel.svg",
  416. bottom: 0.052
  417. }
  418. },
  419. },
  420. [
  421. {
  422. name: "Normal",
  423. height: math.unit(7, "feet"),
  424. },
  425. {
  426. name: "Macro",
  427. height: math.unit(78, "feet"),
  428. default: true
  429. },
  430. {
  431. name: "Macro+",
  432. height: math.unit(300, "meters")
  433. },
  434. {
  435. name: "Macro++",
  436. height: math.unit(2400, "meters")
  437. },
  438. {
  439. name: "Megamacro",
  440. height: math.unit(5167, "meters")
  441. },
  442. {
  443. name: "Gigamacro",
  444. height: math.unit(41769, "miles")
  445. },
  446. ]
  447. )
  448. };
  449. characterMakers["Elijah"] = () => {
  450. return makeCharacter(
  451. "Elijah",
  452. "Elijah",
  453. {
  454. side: {
  455. height: math.unit(7, "feet"),
  456. weight: math.unit(50, "kg"),
  457. name: "Side",
  458. image: {
  459. source: "./media/characters/elijah/side.svg",
  460. extra: 1,
  461. bottom: 0.065
  462. }
  463. },
  464. foot: {
  465. height: math.unit(2.05, "feet"),
  466. name: "Foot",
  467. image: {
  468. source: "./media/characters/elijah/foot.svg"
  469. }
  470. },
  471. },
  472. [
  473. {
  474. name: "Normal",
  475. height: math.unit(1.65, "meters")
  476. },
  477. {
  478. name: "Macro",
  479. height: math.unit(55, "meters"),
  480. default: true
  481. },
  482. {
  483. name: "Macro+",
  484. height: math.unit(105, "meters")
  485. },
  486. ]
  487. )
  488. };
  489. characterMakers["Rai"] = () => {
  490. return makeCharacter(
  491. "Rai",
  492. "shadowblade945",
  493. {
  494. front: {
  495. height: math.unit(11, "feet"),
  496. weight: math.unit(80, "kg"),
  497. name: "Front",
  498. image: {
  499. source: "./media/characters/rai/front.svg",
  500. extra: 1,
  501. bottom: 0.03
  502. }
  503. },
  504. side: {
  505. height: math.unit(11, "feet"),
  506. weight: math.unit(80, "kg"),
  507. name: "Side",
  508. image: {
  509. source: "./media/characters/rai/side.svg"
  510. }
  511. },
  512. back: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "lb"),
  515. name: "Back",
  516. image: {
  517. source: "./media/characters/rai/back.svg",
  518. extra: 1,
  519. bottom: 0.01
  520. }
  521. },
  522. feral: {
  523. height: math.unit(11, "feet"),
  524. weight: math.unit(800, "lb"),
  525. name: "Feral",
  526. image: {
  527. source: "./media/characters/rai/feral.svg",
  528. extra: 1050/659 ,
  529. bottom: 0.07
  530. }
  531. },
  532. maw: {
  533. height: math.unit(6/3.81416, "feet"),
  534. name: "Maw",
  535. image: {
  536. source: "./media/characters/rai/maw.svg"
  537. }
  538. },
  539. },
  540. [
  541. {
  542. name: "Normal",
  543. height: math.unit(11, "feet")
  544. },
  545. {
  546. name: "Macro",
  547. height: math.unit(302, "feet"),
  548. default: true
  549. },
  550. ]
  551. )
  552. };
  553. characterMakers["Jazzy"] = () => {
  554. return makeCharacter(
  555. "Jazzy",
  556. "JazzyWolf",
  557. {
  558. front: {
  559. height: math.unit(7, "feet"),
  560. weight: math.unit(80, "kg"),
  561. name: "Front",
  562. image: {
  563. source: "./media/characters/jazzy/front.svg",
  564. extra: 1,
  565. bottom: 0.01
  566. }
  567. },
  568. back: {
  569. height: math.unit(7, "feet"),
  570. weight: math.unit(80, "kg"),
  571. name: "Back",
  572. image: {
  573. source: "./media/characters/jazzy/back.svg",
  574. extra: 1,
  575. bottom: 0.01
  576. }
  577. },
  578. },
  579. [
  580. {
  581. name: "Macro",
  582. height: math.unit(216, "feet"),
  583. default: true
  584. },
  585. ]
  586. )
  587. };
  588. characterMakers["Flamm"] = () => {
  589. return makeCharacter(
  590. "Flamm",
  591. "Flamm",
  592. {
  593. front: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Front",
  597. image: {
  598. source: "./media/characters/flamm/front.svg",
  599. extra: 1,
  600. bottom: 0.02
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Normal",
  607. height: math.unit(9.5, "feet")
  608. },
  609. {
  610. name: "Macro",
  611. height: math.unit(200, "feet"),
  612. default: true
  613. },
  614. ]
  615. )
  616. };
  617. characterMakers["Zephiro"] = () => {
  618. return makeCharacter(
  619. "Zephiro",
  620. "Zephiro",
  621. {
  622. front: {
  623. height: math.unit(7, "feet"),
  624. weight: math.unit(80, "kg"),
  625. name: "Front",
  626. image: {
  627. source: "./media/characters/zephiro/front.svg",
  628. extra: 2309/2162 ,
  629. bottom: 0.069
  630. }
  631. },
  632. side: {
  633. height: math.unit(7, "feet"),
  634. weight: math.unit(80, "kg"),
  635. name: "Side",
  636. image: {
  637. source: "./media/characters/zephiro/side.svg",
  638. extra: 2403/2279 ,
  639. bottom: 0.015
  640. }
  641. },
  642. back: {
  643. height: math.unit(7, "feet"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/zephiro/back.svg",
  648. extra: 2373/2244 ,
  649. bottom: 0.013
  650. }
  651. },
  652. },
  653. [
  654. {
  655. name: "Micro",
  656. height: math.unit(3, "inches")
  657. },
  658. {
  659. name: "Normal",
  660. height: math.unit(5 + 3/12, "feet"),
  661. default: true
  662. },
  663. {
  664. name: "Macro",
  665. height: math.unit(118, "feet")
  666. },
  667. ]
  668. )
  669. };
  670. characterMakers["Fory"] = () => {
  671. return makeCharacter(
  672. "Fory",
  673. "Manny",
  674. {
  675. front: {
  676. height: math.unit(7, "feet"),
  677. weight: math.unit(90, "kg"),
  678. name: "Front",
  679. image: {
  680. source: "./media/characters/fory/front.svg",
  681. extra: 1,
  682. bottom: 0.03
  683. }
  684. },
  685. },
  686. [
  687. {
  688. name: "Normal",
  689. height: math.unit(5, "feet")
  690. },
  691. {
  692. name: "Macro",
  693. height: math.unit(50, "feet"),
  694. default: true
  695. },
  696. ]
  697. )
  698. };
  699. characterMakers["Kurrikage"] = () => {
  700. return makeCharacter(
  701. "Kurrikage",
  702. "Kurrikage",
  703. {
  704. front: {
  705. height: math.unit(7, "feet"),
  706. weight: math.unit(90, "kg"),
  707. name: "Front",
  708. image: {
  709. source: "./media/characters/kurrikage/front.svg",
  710. extra: 1,
  711. bottom: 0.035
  712. }
  713. },
  714. back: {
  715. height: math.unit(7, "feet"),
  716. weight: math.unit(90, "lb"),
  717. name: "Back",
  718. image: {
  719. source: "./media/characters/kurrikage/back.svg"
  720. }
  721. },
  722. paw: {
  723. height: math.unit(1.5, "feet"),
  724. name: "Paw",
  725. image: {
  726. source: "./media/characters/kurrikage/paw.svg"
  727. }
  728. },
  729. staff: {
  730. height: math.unit(6.7, "feet"),
  731. name: "Staff",
  732. image: {
  733. source: "./media/characters/kurrikage/staff.svg"
  734. }
  735. },
  736. peek: {
  737. height: math.unit(1.05, "feet"),
  738. name: "Peeking",
  739. image: {
  740. source: "./media/characters/kurrikage/peek.svg",
  741. bottom: 0.08
  742. }
  743. },
  744. },
  745. [
  746. {
  747. name: "Normal",
  748. height: math.unit(12, "feet"),
  749. default: true
  750. },
  751. {
  752. name: "Big",
  753. height: math.unit(20, "feet")
  754. },
  755. {
  756. name: "Macro",
  757. height: math.unit(500, "feet")
  758. },
  759. {
  760. name: "Megamacro",
  761. height: math.unit(20, "miles")
  762. },
  763. ]
  764. )
  765. };
  766. characterMakers["Shingo"] = () => {
  767. return makeCharacter(
  768. "Shingo",
  769. "Shingo",
  770. {
  771. front: {
  772. height: math.unit(6, "feet"),
  773. weight: math.unit(75, "kg"),
  774. name: "Front",
  775. image: {
  776. source: "./media/characters/shingo/front.svg",
  777. extra: 3511/3338 ,
  778. bottom: 0.005
  779. }
  780. },
  781. },
  782. [
  783. {
  784. name: "Micro",
  785. height: math.unit(4, "inches")
  786. },
  787. {
  788. name: "Normal",
  789. height: math.unit(6, "feet"),
  790. default: true
  791. },
  792. {
  793. name: "Macro",
  794. height: math.unit(108, "feet")
  795. }
  796. ]
  797. )
  798. };
  799. function makeAigey() {
  800. const views = {
  801. side: {
  802. attributes: {
  803. height: {
  804. name: "Height",
  805. power: 1,
  806. type: "length",
  807. base: math.unit(6, "feet")
  808. },
  809. weight: {
  810. name: "Weight",
  811. power: 3,
  812. type: "mass",
  813. base: math.unit(75, "kg")
  814. }
  815. },
  816. image: {
  817. source: "./media/characters/aigey/side.svg"
  818. },
  819. name: "Side"
  820. }
  821. };
  822. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  823. entity.sizes.push({
  824. name: "Macro",
  825. height: math.unit(200, "feet")
  826. });
  827. entity.sizes.push({
  828. name: "Megamacro",
  829. height: math.unit(100, "miles")
  830. });
  831. entity.views[entity.defaultView].height = math.unit(200, "feet");
  832. return entity;
  833. }
  834. characterMakers["Natasha"] = () => {
  835. return makeCharacter(
  836. "Natasha",
  837. "MammaAWD",
  838. {
  839. front: {
  840. height: math.unit(5 + 5/12, "feet"),
  841. weight: math.unit(75, "kg"),
  842. name: "Front",
  843. image: {
  844. source: "./media/characters/natasha/front.svg",
  845. extra: 875/846,
  846. bottom: 0.01
  847. }
  848. },
  849. },
  850. [
  851. {
  852. name: "Normal",
  853. height: math.unit(5 + 5/12, "feet")
  854. },
  855. {
  856. name: "Large",
  857. height: math.unit(12, "feet")
  858. },
  859. {
  860. name: "Macro",
  861. height: math.unit(100, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro+",
  866. height: math.unit(260, "feet")
  867. },
  868. {
  869. name: "Macro++",
  870. height: math.unit(1, "mile")
  871. },
  872. ]
  873. )
  874. };
  875. function makeMalik() {
  876. const views = {
  877. front: {
  878. attributes: {
  879. height: {
  880. name: "Height",
  881. power: 1,
  882. type: "length",
  883. base: math.unit(6, "feet")
  884. },
  885. weight: {
  886. name: "Weight",
  887. power: 3,
  888. type: "mass",
  889. base: math.unit(75, "kg")
  890. }
  891. },
  892. image: {
  893. source: "./media/characters/malik/front.svg"
  894. },
  895. name: "Front"
  896. },
  897. side: {
  898. attributes: {
  899. height: {
  900. name: "Height",
  901. power: 1,
  902. type: "length",
  903. base: math.unit(6, "feet")
  904. },
  905. weight: {
  906. name: "Weight",
  907. power: 3,
  908. type: "mass",
  909. base: math.unit(75, "kg")
  910. }
  911. },
  912. image: {
  913. extra: 1.1539,
  914. source: "./media/characters/malik/side.svg"
  915. },
  916. name: "Side"
  917. },
  918. back: {
  919. attributes: {
  920. height: {
  921. name: "Height",
  922. power: 1,
  923. type: "length",
  924. base: math.unit(6, "feet")
  925. },
  926. weight: {
  927. name: "Weight",
  928. power: 3,
  929. type: "mass",
  930. base: math.unit(75, "kg")
  931. }
  932. },
  933. image: {
  934. source: "./media/characters/malik/back.svg"
  935. },
  936. name: "Back"
  937. },
  938. };
  939. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  940. entity.sizes.push({
  941. name: "Macro",
  942. height: math.unit(156, "feet")
  943. });
  944. entity.sizes.push({
  945. name: "Macro+",
  946. height: math.unit(1188, "feet")
  947. });
  948. entity.views[entity.defaultView].height = math.unit(156, "feet");
  949. return entity;
  950. }
  951. function makeSefer() {
  952. const views = {
  953. front: {
  954. attributes: {
  955. height: {
  956. name: "Height",
  957. power: 1,
  958. type: "length",
  959. base: math.unit(6, "feet")
  960. },
  961. weight: {
  962. name: "Weight",
  963. power: 3,
  964. type: "mass",
  965. base: math.unit(75, "kg")
  966. }
  967. },
  968. image: {
  969. source: "./media/characters/sefer/front.svg"
  970. },
  971. name: "Front"
  972. },
  973. back: {
  974. attributes: {
  975. height: {
  976. name: "Height",
  977. power: 1,
  978. type: "length",
  979. base: math.unit(6, "feet")
  980. },
  981. weight: {
  982. name: "Weight",
  983. power: 3,
  984. type: "mass",
  985. base: math.unit(75, "kg")
  986. }
  987. },
  988. image: {
  989. source: "./media/characters/sefer/back.svg"
  990. },
  991. name: "Back"
  992. },
  993. };
  994. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  995. entity.views[entity.defaultView].height = math.unit(6, "feet");
  996. return entity;
  997. }
  998. characterMakers["North"] = () => {
  999. return makeCharacter(
  1000. "North",
  1001. "chemicalcrux",
  1002. {
  1003. body: {
  1004. height: math.unit(2.2428, "meter"),
  1005. weight: math.unit(124.738, "kg"),
  1006. name: "Body",
  1007. image: {
  1008. extra: 1225 / 1050,
  1009. source: "./media/characters/north/front.svg"
  1010. }
  1011. }
  1012. },
  1013. [
  1014. {
  1015. name: "Micro",
  1016. height: math.unit(4, "inches")
  1017. },
  1018. {
  1019. name: "Macro",
  1020. height: math.unit(63, "meters")
  1021. },
  1022. {
  1023. name: "Megamacro",
  1024. height: math.unit(101, "miles"),
  1025. default: true
  1026. }
  1027. ]
  1028. )
  1029. };
  1030. characterMakers["Talan"] = () => {
  1031. return makeCharacter(
  1032. "Talan",
  1033. "talanstrider",
  1034. {
  1035. body: {
  1036. height: math.unit(2, "meter"),
  1037. weight: math.unit(70, "kg"),
  1038. name: "Body",
  1039. image: {
  1040. bottom: 0.02,
  1041. source: "./media/characters/talan/front.svg"
  1042. }
  1043. }
  1044. },
  1045. [
  1046. {
  1047. name: "Normal",
  1048. height: math.unit(4, "meters")
  1049. },
  1050. {
  1051. name: "Macro",
  1052. height: math.unit(100, "meters")
  1053. },
  1054. {
  1055. name: "Megamacro",
  1056. height: math.unit(2, "miles"),
  1057. default: true
  1058. },
  1059. {
  1060. name: "Gigamacro",
  1061. height: math.unit(5000, "miles")
  1062. },
  1063. {
  1064. name: "Teramacro",
  1065. height: math.unit(100, "parsecs")
  1066. }
  1067. ]
  1068. )
  1069. };
  1070. characterMakers["Gael'Rathus"] = () => {
  1071. return makeCharacter(
  1072. "Gael'Rathus",
  1073. "Kurrikage",
  1074. {
  1075. front: {
  1076. height: math.unit(2, "meter"),
  1077. weight: math.unit(90, "kg"),
  1078. name: "Front",
  1079. image: {
  1080. source: "./media/characters/gael'rathus/front.svg"
  1081. }
  1082. },
  1083. frontAlt: {
  1084. height: math.unit(2, "meter"),
  1085. weight: math.unit(90, "kg"),
  1086. name: "Front (alt)",
  1087. image: {
  1088. source: "./media/characters/gael'rathus/front-alt.svg"
  1089. }
  1090. },
  1091. frontAlt2: {
  1092. height: math.unit(2, "meter"),
  1093. weight: math.unit(90, "kg"),
  1094. name: "Front (alt 2)",
  1095. image: {
  1096. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1097. }
  1098. }
  1099. },
  1100. [
  1101. {
  1102. name: "Normal",
  1103. height: math.unit(9, "feet"),
  1104. default: true
  1105. },
  1106. {
  1107. name: "Large",
  1108. height: math.unit(25, "feet")
  1109. },
  1110. {
  1111. name: "Macro",
  1112. height: math.unit(0.25, "miles")
  1113. },
  1114. {
  1115. name: "Megamacro",
  1116. height: math.unit(10, "miles")
  1117. }
  1118. ]
  1119. )
  1120. };
  1121. characterMakers["Sosha"] = () => {
  1122. return makeCharacter(
  1123. "Sosha",
  1124. "Sdocat",
  1125. {
  1126. side: {
  1127. height: math.unit(2, "meter"),
  1128. weight: math.unit(140, "kg"),
  1129. name: "Side",
  1130. image: {
  1131. source: "./media/characters/sosha/side.svg",
  1132. bottom: 0.042
  1133. }
  1134. },
  1135. },
  1136. [
  1137. {
  1138. name: "Normal",
  1139. height: math.unit(12, "feet"),
  1140. default: true
  1141. }
  1142. ]
  1143. )
  1144. };
  1145. characterMakers["RuNNoLa"] = () => {
  1146. return makeCharacter(
  1147. "RuNNoLa",
  1148. "RuNNoLa",
  1149. {
  1150. side: {
  1151. height: math.unit(5 + 5/12, "feet"),
  1152. weight: math.unit(170, "kg"),
  1153. name: "Side",
  1154. image: {
  1155. source: "./media/characters/runnola/side.svg",
  1156. extra: 741/448,
  1157. bottom: 0.05
  1158. }
  1159. },
  1160. },
  1161. [
  1162. {
  1163. name: "Small",
  1164. height: math.unit(3, "feet")
  1165. },
  1166. {
  1167. name: "Normal",
  1168. height: math.unit(5 + 5/12, "feet"),
  1169. default: true
  1170. },
  1171. {
  1172. name: "Big",
  1173. height: math.unit(10, "feet")
  1174. },
  1175. ]
  1176. )
  1177. };
  1178. characterMakers["Kurribird"] = () => {
  1179. return makeCharacter(
  1180. "Kurribird",
  1181. "Kurrikage",
  1182. {
  1183. front: {
  1184. height: math.unit(2, "meter"),
  1185. weight: math.unit(50, "kg"),
  1186. name: "Front",
  1187. image: {
  1188. source: "./media/characters/kurribird/front.svg",
  1189. bottom: 0.015
  1190. }
  1191. },
  1192. frontAlt: {
  1193. height: math.unit(1.5, "meter"),
  1194. weight: math.unit(50, "kg"),
  1195. name: "Front (Alt)",
  1196. image: {
  1197. source: "./media/characters/kurribird/front-alt.svg",
  1198. extra: 1.45
  1199. }
  1200. },
  1201. },
  1202. [
  1203. {
  1204. name: "Normal",
  1205. height: math.unit(7, "feet")
  1206. },
  1207. {
  1208. name: "Big",
  1209. height: math.unit(12, "feet"),
  1210. default: true
  1211. },
  1212. {
  1213. name: "Macro",
  1214. height: math.unit(1500, "feet")
  1215. },
  1216. {
  1217. name: "Megamacro",
  1218. height: math.unit(2, "miles")
  1219. }
  1220. ]
  1221. )
  1222. };
  1223. characterMakers["Elbial"] = () => {
  1224. return makeCharacter(
  1225. "Elbial",
  1226. "Neopuc",
  1227. {
  1228. front: {
  1229. height: math.unit(2, "meter"),
  1230. weight: math.unit(80, "kg"),
  1231. name: "Front",
  1232. image: {
  1233. source: "./media/characters/elbial/front.svg"
  1234. }
  1235. },
  1236. side: {
  1237. height: math.unit(2, "meter"),
  1238. weight: math.unit(80, "kg"),
  1239. name: "Side",
  1240. image: {
  1241. source: "./media/characters/elbial/side.svg"
  1242. }
  1243. },
  1244. back: {
  1245. height: math.unit(2, "meter"),
  1246. weight: math.unit(80, "kg"),
  1247. name: "Back",
  1248. image: {
  1249. source: "./media/characters/elbial/back.svg"
  1250. }
  1251. },
  1252. },
  1253. [
  1254. {
  1255. name: "Large",
  1256. height: math.unit(100, "feet")
  1257. },
  1258. {
  1259. name: "Macro",
  1260. height: math.unit(500, "feet"),
  1261. default: true
  1262. },
  1263. {
  1264. name: "Megamacro",
  1265. height: math.unit(10, "miles")
  1266. },
  1267. {
  1268. name: "Gigamacro",
  1269. height: math.unit(25000, "miles")
  1270. },
  1271. {
  1272. name: "Full-Size",
  1273. height: math.unit(8000000, "gigaparsecs")
  1274. }
  1275. ]
  1276. )
  1277. };
  1278. characterMakers["Noah"] = () => {
  1279. return makeCharacter(
  1280. "Noah",
  1281. "Neopuc",
  1282. {
  1283. front: {
  1284. height: math.unit(2, "meter"),
  1285. weight: math.unit(60, "kg"),
  1286. name: "Front",
  1287. image: {
  1288. source: "./media/characters/noah/front.svg"
  1289. }
  1290. },
  1291. talons: {
  1292. height: math.unit(0.315, "meter"),
  1293. name: "Talons",
  1294. image: {
  1295. source: "./media/characters/noah/talons.svg"
  1296. }
  1297. }
  1298. },
  1299. [
  1300. {
  1301. name: "Large",
  1302. height: math.unit(50, "feet")
  1303. },
  1304. {
  1305. name: "Macro",
  1306. height: math.unit(750, "feet"),
  1307. default: true
  1308. },
  1309. {
  1310. name: "Megamacro",
  1311. height: math.unit(50, "miles")
  1312. },
  1313. {
  1314. name: "Gigamacro",
  1315. height: math.unit(100000, "miles")
  1316. },
  1317. {
  1318. name: "Full-Size",
  1319. height: math.unit(3000000000, "miles")
  1320. }
  1321. ]
  1322. )
  1323. };
  1324. characterMakers["Natalya"] = () => {
  1325. return makeCharacter(
  1326. "Natalya",
  1327. "Neopuc",
  1328. {
  1329. front: {
  1330. height: math.unit(2, "meter"),
  1331. weight: math.unit(80, "kg"),
  1332. name: "Front",
  1333. image: {
  1334. source: "./media/characters/natalya/front.svg"
  1335. }
  1336. },
  1337. back: {
  1338. height: math.unit(2, "meter"),
  1339. weight: math.unit(80, "kg"),
  1340. name: "Back",
  1341. image: {
  1342. source: "./media/characters/natalya/back.svg"
  1343. }
  1344. }
  1345. },
  1346. [
  1347. {
  1348. name: "Normal",
  1349. height: math.unit(150, "feet"),
  1350. default: true
  1351. },
  1352. {
  1353. name: "Megamacro",
  1354. height: math.unit(5, "miles")
  1355. },
  1356. {
  1357. name: "Full-Size",
  1358. height: math.unit(600, "kiloparsecs")
  1359. }
  1360. ]
  1361. )
  1362. };
  1363. characterMakers["Erestrebah"] = () => {
  1364. return makeCharacter(
  1365. "Erestrebah",
  1366. "Kurrikage",
  1367. {
  1368. front: {
  1369. height: math.unit(2, "meter"),
  1370. weight: math.unit(50, "kg"),
  1371. name: "Front",
  1372. image: {
  1373. source: "./media/characters/erestrebah/front.svg",
  1374. extra: 208/193,
  1375. bottom: 0.055
  1376. }
  1377. },
  1378. back: {
  1379. height: math.unit(2, "meter"),
  1380. weight: math.unit(50, "kg"),
  1381. name: "Back",
  1382. image: {
  1383. source: "./media/characters/erestrebah/back.svg",
  1384. extra: 1.3
  1385. }
  1386. }
  1387. },
  1388. [
  1389. {
  1390. name: "Normal",
  1391. height: math.unit(10, "feet")
  1392. },
  1393. {
  1394. name: "Large",
  1395. height: math.unit(50, "feet"),
  1396. default: true
  1397. },
  1398. {
  1399. name: "Macro",
  1400. height: math.unit(300, "feet")
  1401. },
  1402. {
  1403. name: "Macro+",
  1404. height: math.unit(750, "feet")
  1405. },
  1406. {
  1407. name: "Megamacro",
  1408. height: math.unit(3, "miles")
  1409. }
  1410. ]
  1411. )
  1412. };
  1413. characterMakers["Jennifer"] = () => {
  1414. return makeCharacter(
  1415. "Jennifer",
  1416. "Neopuc",
  1417. {
  1418. front: {
  1419. height: math.unit(2, "meter"),
  1420. weight: math.unit(80, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/jennifer/front.svg",
  1424. bottom: 0.11,
  1425. extra: 1.16
  1426. }
  1427. },
  1428. frontAlt: {
  1429. height: math.unit(2, "meter"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Front (Alt)",
  1432. image: {
  1433. source: "./media/characters/jennifer/front-alt.svg"
  1434. }
  1435. }
  1436. },
  1437. [
  1438. {
  1439. name: "Canon Height",
  1440. height: math.unit(120, "feet"),
  1441. default: true
  1442. },
  1443. {
  1444. name: "Macro+",
  1445. height: math.unit(300, "feet")
  1446. },
  1447. {
  1448. name: "Megamacro",
  1449. height: math.unit(20000, "feet")
  1450. }
  1451. ]
  1452. )
  1453. };
  1454. characterMakers["Kalista"] = () => {
  1455. return makeCharacter(
  1456. "Kalista",
  1457. "Kalista",
  1458. {
  1459. front: {
  1460. height: math.unit(2, "meter"),
  1461. weight: math.unit(50, "kg"),
  1462. name: "Front",
  1463. image: {
  1464. source: "./media/characters/kalista/front.svg",
  1465. extra: 1947/1700
  1466. }
  1467. },
  1468. back: {
  1469. height: math.unit(2, "meter"),
  1470. weight: math.unit(50, "kg"),
  1471. name: "Back",
  1472. image: {
  1473. source: "./media/characters/kalista/back.svg",
  1474. extra: 1366/1156
  1475. }
  1476. }
  1477. },
  1478. [
  1479. {
  1480. name: "Uncomfortably Small",
  1481. height: math.unit(10, "feet")
  1482. },
  1483. {
  1484. name: "Small",
  1485. height: math.unit(30, "feet")
  1486. },
  1487. {
  1488. name: "Macro",
  1489. height: math.unit(100, "feet"),
  1490. default: true
  1491. },
  1492. {
  1493. name: "Macro+",
  1494. height: math.unit(2000, "feet")
  1495. },
  1496. {
  1497. name: "True Form",
  1498. height: math.unit(8924, "miles")
  1499. }
  1500. ]
  1501. )
  1502. };
  1503. characterMakers["GiantGrowingVixen"] = () => {
  1504. return makeCharacter(
  1505. "GiantGrowingVixen",
  1506. "GiantGrowingVixen",
  1507. {
  1508. front: {
  1509. height: math.unit(2, "meter"),
  1510. weight: math.unit(120, "kg"),
  1511. name: "Front",
  1512. image: {
  1513. source: "./media/characters/ggv/front.svg"
  1514. }
  1515. },
  1516. side: {
  1517. height: math.unit(2, "meter"),
  1518. weight: math.unit(120, "kg"),
  1519. name: "Side",
  1520. image: {
  1521. source: "./media/characters/ggv/side.svg"
  1522. }
  1523. }
  1524. },
  1525. [
  1526. {
  1527. name: "Extremely Puny",
  1528. height: math.unit(9 + 5 / 12, "feet")
  1529. },
  1530. {
  1531. name: "Horribly Small",
  1532. height: math.unit(47.7, "miles"),
  1533. default: true
  1534. },
  1535. {
  1536. name: "Reasonably Sized",
  1537. height: math.unit(25000, "parsecs")
  1538. },
  1539. {
  1540. name: "Slightly Uncompressed",
  1541. height: math.unit(7.77e31, "parsecs")
  1542. },
  1543. {
  1544. name: "Omniversal",
  1545. height: math.unit(1e300, "meters")
  1546. },
  1547. ]
  1548. )
  1549. };
  1550. characterMakers["Napalm"] = () => {
  1551. return makeCharacter(
  1552. "Napalm",
  1553. "RathDaKrogan",
  1554. {
  1555. front: {
  1556. height: math.unit(2, "meter"),
  1557. weight: math.unit(75, "lb"),
  1558. name: "Front",
  1559. image: {
  1560. source: "./media/characters/napalm/front.svg"
  1561. }
  1562. },
  1563. back: {
  1564. height: math.unit(2, "meter"),
  1565. weight: math.unit(75, "lb"),
  1566. name: "Back",
  1567. image: {
  1568. source: "./media/characters/napalm/back.svg"
  1569. }
  1570. }
  1571. },
  1572. [
  1573. {
  1574. name: "Standard",
  1575. height: math.unit(55, "feet"),
  1576. default: true
  1577. }
  1578. ]
  1579. )
  1580. };
  1581. characterMakers["Asana"] = () => {
  1582. return makeCharacter(
  1583. "Asana",
  1584. "Asana",
  1585. {
  1586. front: {
  1587. height: math.unit(7 + 5 / 6, "feet"),
  1588. weight: math.unit(325, "lb"),
  1589. name: "Front",
  1590. image: {
  1591. source: "./media/characters/asana/front.svg",
  1592. extra: 1128 / 1068
  1593. }
  1594. },
  1595. back: {
  1596. height: math.unit(7 + 5 / 6, "feet"),
  1597. weight: math.unit(325, "lb"),
  1598. name: "Back",
  1599. image: {
  1600. source: "./media/characters/asana/back.svg",
  1601. extra: 1128 / 1068
  1602. }
  1603. },
  1604. },
  1605. [
  1606. {
  1607. name: "Standard",
  1608. height: math.unit(7 + 5 / 6, "feet"),
  1609. default: true
  1610. },
  1611. {
  1612. name: "Large",
  1613. height: math.unit(10, "meters")
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(2500, "meters")
  1618. },
  1619. {
  1620. name: "Megamacro",
  1621. height: math.unit(5e6, "meters")
  1622. },
  1623. {
  1624. name: "Examacro",
  1625. height: math.unit(5e12, "lightyears")
  1626. },
  1627. {
  1628. name: "Max Size",
  1629. height: math.unit(1e31, "lightyears")
  1630. }
  1631. ]
  1632. )
  1633. };
  1634. characterMakers["Ebony"] = () => {
  1635. return makeCharacter(
  1636. "Ebony",
  1637. "Lazerwolf",
  1638. {
  1639. front: {
  1640. height: math.unit(2, "meter"),
  1641. weight: math.unit(60, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/ebony/front.svg",
  1645. bottom: 0.03,
  1646. extra: 1045 / 810 + 0.03
  1647. }
  1648. },
  1649. side: {
  1650. height: math.unit(2, "meter"),
  1651. weight: math.unit(60, "kg"),
  1652. name: "Side",
  1653. image: {
  1654. source: "./media/characters/ebony/side.svg",
  1655. bottom: 0.03,
  1656. extra: 1045 / 810 + 0.03
  1657. }
  1658. },
  1659. back: {
  1660. height: math.unit(2, "meter"),
  1661. weight: math.unit(60, "kg"),
  1662. name: "Back",
  1663. image: {
  1664. source: "./media/characters/ebony/back.svg",
  1665. bottom: 0.01,
  1666. extra: 1045 / 810 + 0.01
  1667. }
  1668. },
  1669. },
  1670. [
  1671. // TODO check why I did this lol
  1672. {
  1673. name: "Standard",
  1674. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1675. default: true
  1676. },
  1677. {
  1678. name: "Macro",
  1679. height: math.unit(200, "feet")
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(13000, "km")
  1684. }
  1685. ]
  1686. )
  1687. };
  1688. characterMakers["Mountain"] = () => {
  1689. return makeCharacter(
  1690. "Mountain",
  1691. "Asana",
  1692. {
  1693. front: {
  1694. height: math.unit(6, "feet"),
  1695. weight: math.unit(175, "lb"),
  1696. name: "Front",
  1697. image: {
  1698. source: "./media/characters/mountain/front.svg"
  1699. }
  1700. },
  1701. back: {
  1702. height: math.unit(6, "feet"),
  1703. weight: math.unit(175, "lb"),
  1704. name: "Back",
  1705. image: {
  1706. source: "./media/characters/mountain/back.svg"
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Large",
  1713. height: math.unit(20, "meters")
  1714. },
  1715. {
  1716. name: "Macro",
  1717. height: math.unit(300, "meters")
  1718. },
  1719. {
  1720. name: "Gigamacro",
  1721. height: math.unit(10000, "km"),
  1722. default: true
  1723. },
  1724. {
  1725. name: "Examacro",
  1726. height: math.unit(10e9, "lightyears")
  1727. }
  1728. ]
  1729. )
  1730. };
  1731. characterMakers["Rick"] = () => {
  1732. return makeCharacter(
  1733. "Rick",
  1734. "Victni",
  1735. {
  1736. front: {
  1737. height: math.unit(8, "feet"),
  1738. weight: math.unit(500, "lb"),
  1739. name: "Front",
  1740. image: {
  1741. source: "./media/characters/rick/front.svg"
  1742. }
  1743. }
  1744. },
  1745. [
  1746. {
  1747. name: "Normal",
  1748. height: math.unit(8, "feet"),
  1749. default: true
  1750. },
  1751. {
  1752. name: "Macro",
  1753. height: math.unit(5, "km")
  1754. }
  1755. ]
  1756. )
  1757. };
  1758. characterMakers["Ona"] = () => {
  1759. return makeCharacter(
  1760. "Ona",
  1761. "Arrogance127",
  1762. {
  1763. front: {
  1764. height: math.unit(8, "feet"),
  1765. weight: math.unit(120, "lb"),
  1766. name: "Front",
  1767. image: {
  1768. source: "./media/characters/ona/front.svg"
  1769. }
  1770. },
  1771. frontAlt: {
  1772. height: math.unit(8, "feet"),
  1773. weight: math.unit(120, "lb"),
  1774. name: "Front (Alt)",
  1775. image: {
  1776. source: "./media/characters/ona/front-alt.svg"
  1777. }
  1778. },
  1779. back: {
  1780. height: math.unit(8, "feet"),
  1781. weight: math.unit(120, "lb"),
  1782. name: "Back",
  1783. image: {
  1784. source: "./media/characters/ona/back.svg"
  1785. }
  1786. },
  1787. foot: {
  1788. height: math.unit(1.1, "feet"),
  1789. name: "Foot",
  1790. image: {
  1791. source: "./media/characters/ona/foot.svg"
  1792. }
  1793. }
  1794. },
  1795. [
  1796. {
  1797. name: "Megamacro",
  1798. height: math.unit(70, "km"),
  1799. default: true
  1800. },
  1801. {
  1802. name: "Gigamacro",
  1803. height: math.unit(681818, "miles")
  1804. },
  1805. {
  1806. name: "Examacro",
  1807. height: math.unit(3800000, "lightyears")
  1808. },
  1809. ]
  1810. )
  1811. };
  1812. characterMakers["Mech"] = () => {
  1813. return makeCharacter(
  1814. "Mech",
  1815. "mechEdragon",
  1816. {
  1817. front: {
  1818. height: math.unit(12, "feet"),
  1819. weight: math.unit(3000, "lb"),
  1820. name: "Front",
  1821. image: {
  1822. source: "./media/characters/mech/front.svg",
  1823. bottom: 0.025,
  1824. }
  1825. },
  1826. back: {
  1827. height: math.unit(12, "feet"),
  1828. weight: math.unit(3000, "lb"),
  1829. name: "Back",
  1830. image: {
  1831. source: "./media/characters/mech/back.svg",
  1832. bottom: 0.03,
  1833. }
  1834. }
  1835. },
  1836. [
  1837. {
  1838. name: "Normal",
  1839. height: math.unit(12, "feet")
  1840. },
  1841. {
  1842. name: "Macro",
  1843. height: math.unit(300, "feet"),
  1844. default: true
  1845. },
  1846. {
  1847. name: "Macro+",
  1848. height: math.unit(1500, "feet")
  1849. },
  1850. ]
  1851. )
  1852. };
  1853. characterMakers["Gregory"] = () => {
  1854. return makeCharacter(
  1855. "Gregory",
  1856. "GregoryKlippenspringer",
  1857. {
  1858. front: {
  1859. height: math.unit(1.3, "meter"),
  1860. weight: math.unit(30, "kg"),
  1861. name: "Front",
  1862. image: {
  1863. source: "./media/characters/gregory/front.svg",
  1864. }
  1865. }
  1866. },
  1867. [
  1868. {
  1869. name: "Normal",
  1870. height: math.unit(1.3, "meter"),
  1871. default: true
  1872. },
  1873. {
  1874. name: "Macro",
  1875. height: math.unit(20, "meter")
  1876. }
  1877. ]
  1878. )
  1879. };
  1880. characterMakers["Elory"] = () => {
  1881. return makeCharacter(
  1882. "Elory",
  1883. "GregoryKlippenspringer",
  1884. {
  1885. front: {
  1886. height: math.unit(2.8, "meter"),
  1887. weight: math.unit(200, "kg"),
  1888. name: "Front",
  1889. image: {
  1890. source: "./media/characters/elory/front.svg",
  1891. }
  1892. }
  1893. },
  1894. [
  1895. {
  1896. name: "Normal",
  1897. height: math.unit(2.8, "meter"),
  1898. default: true
  1899. },
  1900. {
  1901. name: "Macro",
  1902. height: math.unit(38, "meter")
  1903. }
  1904. ]
  1905. )
  1906. };
  1907. characterMakers["Angelpatamon"] = () => {
  1908. return makeCharacter(
  1909. "Angelpatamon",
  1910. "GregoryKlippenspringer",
  1911. {
  1912. front: {
  1913. height: math.unit(470, "feet"),
  1914. weight: math.unit(924, "tons"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/angelpatamon/front.svg",
  1918. }
  1919. }
  1920. },
  1921. [
  1922. {
  1923. name: "Normal",
  1924. height: math.unit(470, "feet"),
  1925. default: true
  1926. },
  1927. {
  1928. name: "Deity Size I",
  1929. height: math.unit(28651.2, "km")
  1930. },
  1931. {
  1932. name: "Deity Size II",
  1933. height: math.unit(171907.2, "km")
  1934. }
  1935. ]
  1936. )
  1937. };
  1938. characterMakers["Cryae"] = () => {
  1939. return makeCharacter(
  1940. "Cryae",
  1941. "GregoryKlippenspringer",
  1942. {
  1943. side: {
  1944. height: math.unit(7.2, "meter"),
  1945. weight: math.unit(8.2, "tons"),
  1946. name: "Side",
  1947. image: {
  1948. source: "./media/characters/cryae/side.svg",
  1949. extra: 3500 / 1500
  1950. }
  1951. }
  1952. },
  1953. [
  1954. {
  1955. name: "Normal",
  1956. height: math.unit(7.2, "meter"),
  1957. default: true
  1958. }
  1959. ]
  1960. )
  1961. };
  1962. characterMakers["Xera"] = () => {
  1963. return makeCharacter(
  1964. "Xera",
  1965. "Asana",
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(175, "lb"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/xera/front.svg",
  1973. extra: 2300 / 2061
  1974. }
  1975. },
  1976. side: {
  1977. height: math.unit(6, "feet"),
  1978. weight: math.unit(175, "lb"),
  1979. name: "Side",
  1980. image: {
  1981. source: "./media/characters/xera/side.svg",
  1982. extra: 2300 / 2061
  1983. }
  1984. },
  1985. back: {
  1986. height: math.unit(6, "feet"),
  1987. weight: math.unit(175, "lb"),
  1988. name: "Back",
  1989. image: {
  1990. source: "./media/characters/xera/back.svg"
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Small",
  1997. height: math.unit(10, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(500, "meters"),
  2002. default: true
  2003. },
  2004. {
  2005. name: "Macro+",
  2006. height: math.unit(10, "km")
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(25000, "km")
  2011. },
  2012. {
  2013. name: "Teramacro",
  2014. height: math.unit(3e6, "km")
  2015. }
  2016. ]
  2017. )
  2018. };
  2019. characterMakers["Nebula"] = () => {
  2020. return makeCharacter(
  2021. "Nebula",
  2022. "Cilenomon",
  2023. {
  2024. front: {
  2025. height: math.unit(6, "feet"),
  2026. weight: math.unit(175, "lb"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/nebula/front.svg",
  2030. extra: 2600 / 2450
  2031. }
  2032. }
  2033. },
  2034. [
  2035. {
  2036. name: "Small",
  2037. height: math.unit(4.5, "meters")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(1500, "meters"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Megamacro",
  2046. height: math.unit(150, "km")
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(27000, "km")
  2051. }
  2052. ]
  2053. )
  2054. };
  2055. characterMakers["Abysgar"] = () => {
  2056. return makeCharacter(
  2057. "Abysgar",
  2058. "Cilenomon",
  2059. {
  2060. front: {
  2061. height: math.unit(6, "feet"),
  2062. weight: math.unit(225, "lb"),
  2063. name: "Front",
  2064. image: {
  2065. source: "./media/characters/abysgar/front.svg"
  2066. }
  2067. }
  2068. },
  2069. [
  2070. {
  2071. name: "Small",
  2072. height: math.unit(4.5, "meters")
  2073. },
  2074. {
  2075. name: "Macro",
  2076. height: math.unit(1250, "meters"),
  2077. default: true
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(125, "km")
  2082. },
  2083. {
  2084. name: "Gigamacro",
  2085. height: math.unit(26000, "km")
  2086. }
  2087. ]
  2088. )
  2089. };
  2090. characterMakers["Yakuz"] = () => {
  2091. return makeCharacter(
  2092. "Yakuz",
  2093. "Cilenomon",
  2094. {
  2095. front: {
  2096. height: math.unit(6, "feet"),
  2097. weight: math.unit(180, "lb"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/yakuz/front.svg"
  2101. }
  2102. }
  2103. },
  2104. [
  2105. {
  2106. name: "Small",
  2107. height: math.unit(5, "meters")
  2108. },
  2109. {
  2110. name: "Macro",
  2111. height: math.unit(1500, "meters"),
  2112. default: true
  2113. },
  2114. {
  2115. name: "Megamacro",
  2116. height: math.unit(200, "km")
  2117. },
  2118. {
  2119. name: "Gigamacro",
  2120. height: math.unit(100000, "km")
  2121. }
  2122. ]
  2123. )
  2124. };
  2125. characterMakers["Mirova"] = () => {
  2126. return makeCharacter(
  2127. "Mirova",
  2128. "Cilenomon",
  2129. {
  2130. front: {
  2131. height: math.unit(6, "feet"),
  2132. weight: math.unit(175, "lb"),
  2133. name: "Front",
  2134. image: {
  2135. source: "./media/characters/mirova/front.svg"
  2136. }
  2137. }
  2138. },
  2139. [
  2140. {
  2141. name: "Small",
  2142. height: math.unit(5, "meters")
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(900, "meters"),
  2147. default: true
  2148. },
  2149. {
  2150. name: "Megamacro",
  2151. height: math.unit(135, "km")
  2152. },
  2153. {
  2154. name: "Gigamacro",
  2155. height: math.unit(20000, "km")
  2156. }
  2157. ]
  2158. )
  2159. };
  2160. characterMakers["Asana (Mech)"] = () => {
  2161. return makeCharacter(
  2162. "Asana (Mech)",
  2163. "Asana",
  2164. {
  2165. side: {
  2166. height: math.unit(28.35, "feet"),
  2167. weight: math.unit(99.75, "tons"),
  2168. name: "Side",
  2169. image: {
  2170. source: "./media/characters/asana-mech/side.svg"
  2171. }
  2172. }
  2173. },
  2174. [
  2175. {
  2176. name: "Normal",
  2177. height: math.unit(28.35, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(2500, "feet")
  2183. },
  2184. {
  2185. name: "Megamacro",
  2186. height: math.unit(25, "miles")
  2187. },
  2188. {
  2189. name: "Examacro",
  2190. height: math.unit(6e8, "lightyears")
  2191. },
  2192. ]
  2193. )
  2194. };
  2195. characterMakers["Ashtrek"] = () => {
  2196. return makeCharacter(
  2197. "Ashtrek",
  2198. "Ashtrek",
  2199. {
  2200. front: {
  2201. height: math.unit(2, "meters"),
  2202. weight: math.unit(70, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/ashtrek/front.svg",
  2206. extra: 560/524 ,
  2207. bottom: 0.01
  2208. }
  2209. },
  2210. frontArmor: {
  2211. height: math.unit(2, "meters"),
  2212. weight: math.unit(76, "kg"),
  2213. name: "Front (Armor)",
  2214. image: {
  2215. source: "./media/characters/ashtrek/front-armor.svg",
  2216. extra: 561/527 ,
  2217. bottom: 0.01
  2218. }
  2219. },
  2220. side: {
  2221. height: math.unit(2, "meters"),
  2222. weight: math.unit(70, "kg"),
  2223. name: "Side",
  2224. image: {
  2225. source: "./media/characters/ashtrek/side.svg",
  2226. extra: 1717/1609 ,
  2227. bottom: 0.005
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(2, "meters"),
  2232. weight: math.unit(70, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/ashtrek/back.svg",
  2236. extra: 1570/1501
  2237. }
  2238. },
  2239. },
  2240. [
  2241. {
  2242. name: "DEFCON 5",
  2243. height: math.unit(5, "meters")
  2244. },
  2245. {
  2246. name: "DEFCON 4",
  2247. height: math.unit(500, "meters"),
  2248. default: true
  2249. },
  2250. {
  2251. name: "DEFCON 3",
  2252. height: math.unit(5, "km")
  2253. },
  2254. {
  2255. name: "DEFCON 2",
  2256. height: math.unit(500, "km")
  2257. },
  2258. {
  2259. name: "DEFCON 1",
  2260. height: math.unit(500000, "km")
  2261. },
  2262. {
  2263. name: "DEFCON 0",
  2264. height: math.unit(3, "gigaparsecs")
  2265. },
  2266. ]
  2267. )
  2268. };
  2269. characterMakers["Gale"] = () => {
  2270. return makeCharacter(
  2271. "Gale",
  2272. "GaleFierre",
  2273. {
  2274. front: {
  2275. height: math.unit(2, "meters"),
  2276. weight: math.unit(76, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/gale/front.svg"
  2280. }
  2281. },
  2282. frontAlt1: {
  2283. height: math.unit(2, "meters"),
  2284. weight: math.unit(76, "kg"),
  2285. name: "Front (Alt 1)",
  2286. image: {
  2287. source: "./media/characters/gale/front-alt-1.svg"
  2288. }
  2289. },
  2290. frontAlt2: {
  2291. height: math.unit(2, "meters"),
  2292. weight: math.unit(76, "kg"),
  2293. name: "Front (Alt 2)",
  2294. image: {
  2295. source: "./media/characters/gale/front-alt-2.svg"
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(7, "feet")
  2303. },
  2304. {
  2305. name: "Macro",
  2306. height: math.unit(150, "feet"),
  2307. default: true
  2308. },
  2309. {
  2310. name: "Macro+",
  2311. height: math.unit(300, "feet")
  2312. },
  2313. ]
  2314. )
  2315. };
  2316. characterMakers["Draylen"] = () => {
  2317. return makeCharacter(
  2318. "Draylen",
  2319. "Longshot Coyote",
  2320. {
  2321. front: {
  2322. height: math.unit(2, "meters"),
  2323. weight: math.unit(76, "kg"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/draylen/front.svg"
  2327. }
  2328. }
  2329. },
  2330. [
  2331. {
  2332. name: "Macro",
  2333. height: math.unit(150, "feet"),
  2334. default: true
  2335. }
  2336. ]
  2337. )
  2338. };
  2339. characterMakers["Chez"] = () => {
  2340. return makeCharacter(
  2341. "Chez",
  2342. "Ashtrek",
  2343. {
  2344. front: {
  2345. height: math.unit(7 + 9 / 12, "feet"),
  2346. weight: math.unit(379, "lbs"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/chez/front.svg"
  2350. }
  2351. },
  2352. side: {
  2353. height: math.unit(7 + 9 / 12, "feet"),
  2354. weight: math.unit(379, "lbs"),
  2355. name: "Side",
  2356. image: {
  2357. source: "./media/characters/chez/side.svg"
  2358. }
  2359. }
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7 + 9 / 12, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "God King",
  2369. height: math.unit(9750000, "meters")
  2370. }
  2371. ]
  2372. )
  2373. };
  2374. characterMakers["Kaylum"] = () => {
  2375. return makeCharacter(
  2376. "Kaylum",
  2377. "DJDarkJaro",
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(275, "lbs"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/kaylum/front.svg",
  2385. bottom: 0.01,
  2386. extra: 1166 / 1031
  2387. }
  2388. },
  2389. frontWingless: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(275, "lbs"),
  2392. name: "Front (Wingless)",
  2393. image: {
  2394. source: "./media/characters/kaylum/front-wingless.svg",
  2395. bottom: 0.01,
  2396. extra: 1117 / 1031
  2397. }
  2398. }
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(3.05, "meters")
  2404. },
  2405. {
  2406. name: "Master",
  2407. height: math.unit(5.5, "meters")
  2408. },
  2409. {
  2410. name: "Rampage",
  2411. height: math.unit(19, "meters")
  2412. },
  2413. {
  2414. name: "Macro Lite",
  2415. height: math.unit(37, "meters")
  2416. },
  2417. {
  2418. name: "Hyper Predator",
  2419. height: math.unit(61, "meters")
  2420. },
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(138, "meters"),
  2424. default: true
  2425. }
  2426. ]
  2427. )
  2428. };
  2429. characterMakers["Geta"] = () => {
  2430. return makeCharacter(
  2431. "Geta",
  2432. "Aeznon",
  2433. {
  2434. front: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(150, "lbs"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/geta/front.svg"
  2440. }
  2441. }
  2442. },
  2443. [
  2444. {
  2445. name: "Micro",
  2446. height: math.unit(3, "inches"),
  2447. default: true
  2448. },
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(5 + 5 / 12, "feet")
  2452. }
  2453. ]
  2454. )
  2455. };
  2456. characterMakers["Tyrnn"] = () => {
  2457. return makeCharacter(
  2458. "Tyrnn",
  2459. "Tyrnn",
  2460. {
  2461. front: {
  2462. height: math.unit(6, "feet"),
  2463. weight: math.unit(300, "lbs"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/tyrnn/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Main Height",
  2473. height: math.unit(355, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Fave. Height",
  2478. height: math.unit(2400, "feet")
  2479. }
  2480. ]
  2481. )
  2482. };
  2483. characterMakers["Apple"] = () => {
  2484. return makeCharacter(
  2485. "Apple",
  2486. "Appledectomy",
  2487. {
  2488. front: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(300, "lbs"),
  2491. name: "Front",
  2492. image: {
  2493. source: "./media/characters/appledectomy/front.svg"
  2494. }
  2495. }
  2496. },
  2497. [
  2498. {
  2499. name: "Macro",
  2500. height: math.unit(2500, "feet")
  2501. },
  2502. {
  2503. name: "Megamacro",
  2504. height: math.unit(50, "miles"),
  2505. default: true
  2506. },
  2507. {
  2508. name: "Gigamacro",
  2509. height: math.unit(5000, "miles")
  2510. },
  2511. {
  2512. name: "Teramacro",
  2513. height: math.unit(250000, "miles")
  2514. },
  2515. ]
  2516. )
  2517. };
  2518. characterMakers["Vulpes"] = () => {
  2519. return makeCharacter(
  2520. "Vulpes",
  2521. "VulpesPawpad",
  2522. {
  2523. front: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(200, "lbs"),
  2526. name: "Front",
  2527. image: {
  2528. source: "./media/characters/vulpes/front.svg",
  2529. extra: 573/543,
  2530. bottom: 0.033
  2531. }
  2532. },
  2533. side: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(200, "lbs"),
  2536. name: "Side",
  2537. image: {
  2538. source: "./media/characters/vulpes/side.svg",
  2539. extra: 573/543,
  2540. bottom: 0.01
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(200, "lbs"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/vulpes/back.svg",
  2549. extra: 573/543,
  2550. }
  2551. },
  2552. feet: {
  2553. height: math.unit(1.276, "feet"),
  2554. name: "Feet",
  2555. image: {
  2556. source: "./media/characters/vulpes/feet.svg"
  2557. }
  2558. },
  2559. maw: {
  2560. height: math.unit(1.18, "feet"),
  2561. name: "Maw",
  2562. image: {
  2563. source: "./media/characters/vulpes/maw.svg"
  2564. }
  2565. },
  2566. },
  2567. [
  2568. {
  2569. name: "Micro",
  2570. height: math.unit(2, "inches")
  2571. },
  2572. {
  2573. name: "Normal",
  2574. height: math.unit(6.3, "feet")
  2575. },
  2576. {
  2577. name: "Macro",
  2578. height: math.unit(850, "feet")
  2579. },
  2580. {
  2581. name: "Megamacro",
  2582. height: math.unit(7500, "feet"),
  2583. default: true
  2584. },
  2585. {
  2586. name: "Gigamacro",
  2587. height: math.unit(570000, "miles")
  2588. }
  2589. ]
  2590. )
  2591. };
  2592. characterMakers["Rain Fallen"] = () => {
  2593. return makeCharacter(
  2594. "Rain Fallen",
  2595. "Rain Fallen",
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(210, "lbs"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/rain-fallen/front.svg"
  2603. }
  2604. },
  2605. side: {
  2606. height: math.unit(6, "feet"),
  2607. weight: math.unit(210, "lbs"),
  2608. name: "Side",
  2609. image: {
  2610. source: "./media/characters/rain-fallen/side.svg"
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(6, "feet"),
  2615. weight: math.unit(210, "lbs"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/rain-fallen/back.svg"
  2619. }
  2620. },
  2621. feral: {
  2622. height: math.unit(9, "feet"),
  2623. weight: math.unit(700, "lbs"),
  2624. name: "Feral",
  2625. image: {
  2626. source: "./media/characters/rain-fallen/feral.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(5, "meter")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(150, "meter"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Megamacro",
  2642. height: math.unit(278e6, "meter")
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(2e9, "meter")
  2647. },
  2648. {
  2649. name: "Teramacro",
  2650. height: math.unit(8e12, "meter")
  2651. },
  2652. {
  2653. name: "Devourer",
  2654. height: math.unit(14, "zettameters")
  2655. },
  2656. {
  2657. name: "Scarlet King",
  2658. height: math.unit(18, "yottameters")
  2659. },
  2660. {
  2661. name: "Void",
  2662. height: math.unit(6.66e66, "yottameters")
  2663. }
  2664. ]
  2665. )
  2666. };
  2667. characterMakers["Zaakira"] = () => {
  2668. return makeCharacter(
  2669. "Zaakira",
  2670. "Jazzywolf",
  2671. {
  2672. standing: {
  2673. height: math.unit(6, "feet"),
  2674. weight: math.unit(180, "lbs"),
  2675. name: "Standing",
  2676. image: {
  2677. source: "./media/characters/zaakira/standing.svg"
  2678. }
  2679. },
  2680. laying: {
  2681. height: math.unit(3, "feet"),
  2682. weight: math.unit(180, "lbs"),
  2683. name: "Laying",
  2684. image: {
  2685. source: "./media/characters/zaakira/laying.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(12, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(279, "feet"),
  2697. default: true
  2698. }
  2699. ]
  2700. )
  2701. };
  2702. characterMakers["Sigvald"] = () => {
  2703. return makeCharacter(
  2704. "Sigvald",
  2705. "Sigvald",
  2706. {
  2707. front: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(250, "lbs"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/sigvald/front.svg",
  2713. extra: 1000 / 850
  2714. }
  2715. },
  2716. back: {
  2717. height: math.unit(6, "feet"),
  2718. weight: math.unit(250, "lbs"),
  2719. name: "Back",
  2720. image: {
  2721. source: "./media/characters/sigvald/back.svg"
  2722. }
  2723. },
  2724. },
  2725. [
  2726. {
  2727. name: "Normal",
  2728. height: math.unit(8, "feet")
  2729. },
  2730. {
  2731. name: "Large",
  2732. height: math.unit(12, "feet")
  2733. },
  2734. {
  2735. name: "Larger",
  2736. height: math.unit(20, "feet")
  2737. },
  2738. {
  2739. name: "Macro",
  2740. height: math.unit(150, "feet")
  2741. },
  2742. {
  2743. name: "Macro+",
  2744. height: math.unit(200, "feet"),
  2745. default: true
  2746. },
  2747. ]
  2748. )
  2749. };
  2750. characterMakers["Scott"] = () => {
  2751. return makeCharacter(
  2752. "Scott",
  2753. "Scott",
  2754. {
  2755. side: {
  2756. height: math.unit(12, "feet"),
  2757. weight: math.unit(3000, "lbs"),
  2758. name: "Side",
  2759. image: {
  2760. source: "./media/characters/scott/side.svg",
  2761. extra: 1,
  2762. bottom: 0.069
  2763. }
  2764. },
  2765. upright: {
  2766. height: math.unit(12, "feet"),
  2767. weight: math.unit(3000, "lbs"),
  2768. name: "Upright",
  2769. image: {
  2770. source: "./media/characters/scott/upright.svg",
  2771. extra: 1,
  2772. bottom: 0.05
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(12, "feet"),
  2780. default: true
  2781. },
  2782. ]
  2783. )
  2784. };
  2785. characterMakers["Tobias"] = () => {
  2786. return makeCharacter(
  2787. "Tobias",
  2788. "Tobias",
  2789. {
  2790. side: {
  2791. height: math.unit(8, "meters"),
  2792. weight: math.unit(84755, "lbs"),
  2793. name: "Side",
  2794. image: {
  2795. source: "./media/characters/tobias/side.svg",
  2796. extra: 5 / 4
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(8, "meters"),
  2804. default: true
  2805. },
  2806. ]
  2807. )
  2808. };
  2809. characterMakers["Kieran"] = () => {
  2810. return makeCharacter(
  2811. "Kieran",
  2812. "Kieran",
  2813. {
  2814. front: {
  2815. height: math.unit(5.5, "feet"),
  2816. weight: math.unit(400, "lbs"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/kieran/front.svg",
  2820. extra: 1.05
  2821. }
  2822. },
  2823. side: {
  2824. height: math.unit(5.5, "feet"),
  2825. weight: math.unit(400, "lbs"),
  2826. name: "Side",
  2827. image: {
  2828. source: "./media/characters/kieran/side.svg",
  2829. extra: 950 / 850
  2830. }
  2831. },
  2832. },
  2833. [
  2834. {
  2835. name: "Normal",
  2836. height: math.unit(5.5, "feet"),
  2837. default: true
  2838. },
  2839. ]
  2840. )
  2841. };
  2842. characterMakers["Sanya"] = () => {
  2843. return makeCharacter(
  2844. "Sanya",
  2845. "BanterGhost",
  2846. {
  2847. side: {
  2848. height: math.unit(2, "meters"),
  2849. weight: math.unit(70, "kg"),
  2850. name: "Side",
  2851. image: {
  2852. source: "./media/characters/sanya/side.svg",
  2853. bottom: 0.02,
  2854. extra: 1.02
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Small",
  2861. height: math.unit(2, "meters")
  2862. },
  2863. {
  2864. name: "Normal",
  2865. height: math.unit(3, "meters")
  2866. },
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(16, "meters"),
  2870. default: true
  2871. },
  2872. ]
  2873. )
  2874. };
  2875. characterMakers["Miranda"] = () => {
  2876. return makeCharacter(
  2877. "Miranda",
  2878. "MirandaArqayla",
  2879. {
  2880. side: {
  2881. height: math.unit(2, "meters"),
  2882. weight: math.unit(120, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/miranda/front.svg",
  2886. extra: 10.6 / 10
  2887. }
  2888. },
  2889. },
  2890. [
  2891. {
  2892. name: "Normal",
  2893. height: math.unit(10, "feet"),
  2894. default: true
  2895. }
  2896. ]
  2897. )
  2898. };
  2899. characterMakers["James"] = () => {
  2900. return makeCharacter(
  2901. "James",
  2902. "MirandaArqayla",
  2903. {
  2904. side: {
  2905. height: math.unit(2, "meters"),
  2906. weight: math.unit(100, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/james/front.svg",
  2910. extra: 10 / 8.5
  2911. }
  2912. },
  2913. },
  2914. [
  2915. {
  2916. name: "Normal",
  2917. height: math.unit(8.5, "feet"),
  2918. default: true
  2919. }
  2920. ]
  2921. )
  2922. };
  2923. characterMakers["Heather"] = () => {
  2924. return makeCharacter(
  2925. "Heather",
  2926. "MirandaArqayla",
  2927. {
  2928. side: {
  2929. height: math.unit(9.5, "feet"),
  2930. weight: math.unit(2500, "lbs"),
  2931. name: "Side",
  2932. image: {
  2933. source: "./media/characters/heather/side.svg"
  2934. }
  2935. },
  2936. },
  2937. [
  2938. {
  2939. name: "Normal",
  2940. height: math.unit(9.5, "feet"),
  2941. default: true
  2942. }
  2943. ]
  2944. )
  2945. };
  2946. characterMakers["Lukas"] = () => {
  2947. return makeCharacter(
  2948. "Lukas",
  2949. "MirandaArqayla",
  2950. {
  2951. side: {
  2952. height: math.unit(6.5, "feet"),
  2953. weight: math.unit(400, "lbs"),
  2954. name: "Side",
  2955. image: {
  2956. source: "./media/characters/lukas/side.svg",
  2957. extra: 7.25 / 6.5
  2958. }
  2959. },
  2960. },
  2961. [
  2962. {
  2963. name: "Normal",
  2964. height: math.unit(6.5, "feet"),
  2965. default: true
  2966. }
  2967. ]
  2968. )
  2969. };
  2970. characterMakers["Louise"] = () => {
  2971. return makeCharacter(
  2972. "Louise",
  2973. "MirandaArqayla",
  2974. {
  2975. side: {
  2976. height: math.unit(5, "feet"),
  2977. weight: math.unit(3000, "lbs"),
  2978. name: "Side",
  2979. image: {
  2980. source: "./media/characters/louise/side.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5, "feet"),
  2988. default: true
  2989. }
  2990. ]
  2991. )
  2992. };
  2993. characterMakers["Ramona"] = () => {
  2994. return makeCharacter(
  2995. "Ramona",
  2996. "ZakuraTech",
  2997. {
  2998. side: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(150, "lbs"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/ramona/side.svg"
  3004. }
  3005. },
  3006. },
  3007. [
  3008. {
  3009. name: "Normal",
  3010. height: math.unit(5.3, "meters"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(20, "stories")
  3016. },
  3017. {
  3018. name: "Macro+",
  3019. height: math.unit(50, "stories")
  3020. },
  3021. ]
  3022. )
  3023. };
  3024. characterMakers["Deerpuff"] = () => {
  3025. return makeCharacter(
  3026. "Deerpuff",
  3027. "Deerpuff",
  3028. {
  3029. standing: {
  3030. height: math.unit(5.75, "feet"),
  3031. weight: math.unit(160, "lbs"),
  3032. name: "Standing",
  3033. image: {
  3034. source: "./media/characters/deerpuff/standing.svg",
  3035. extra: 682 / 624
  3036. }
  3037. },
  3038. sitting: {
  3039. height: math.unit(5.75 / 1.79, "feet"),
  3040. weight: math.unit(160, "lbs"),
  3041. name: "Sitting",
  3042. image: {
  3043. source: "./media/characters/deerpuff/sitting.svg",
  3044. bottom: 44 / 400,
  3045. extra: 1
  3046. }
  3047. },
  3048. taurLaying: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(400, "lbs"),
  3051. name: "Taur (Laying)",
  3052. image: {
  3053. source: "./media/characters/deerpuff/taur-laying.svg"
  3054. }
  3055. },
  3056. },
  3057. [
  3058. {
  3059. name: "Puffball",
  3060. height: math.unit(6, "inches")
  3061. },
  3062. {
  3063. name: "Normalpuff",
  3064. height: math.unit(5.75, "feet")
  3065. },
  3066. {
  3067. name: "Macropuff",
  3068. height: math.unit(1500, "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Megapuff",
  3073. height: math.unit(500, "miles")
  3074. },
  3075. {
  3076. name: "Gigapuff",
  3077. height: math.unit(250000, "miles")
  3078. },
  3079. {
  3080. name: "Omegapuff",
  3081. height: math.unit(1000, "lightyears")
  3082. },
  3083. ]
  3084. )
  3085. };
  3086. characterMakers["Vivian"] = () => {
  3087. return makeCharacter(
  3088. "Vivian",
  3089. "Fauxlacine",
  3090. {
  3091. stomping: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(170, "lbs"),
  3094. name: "Stomping",
  3095. image: {
  3096. source: "./media/characters/vivian/stomping.svg"
  3097. }
  3098. },
  3099. sitting: {
  3100. height: math.unit(6 / 1.75, "feet"),
  3101. weight: math.unit(170, "lbs"),
  3102. name: "Sitting",
  3103. image: {
  3104. source: "./media/characters/vivian/sitting.svg",
  3105. bottom: 1 / 6.4,
  3106. extra: 1,
  3107. }
  3108. },
  3109. },
  3110. [
  3111. {
  3112. name: "Normal",
  3113. height: math.unit(7, "feet"),
  3114. default: true
  3115. },
  3116. {
  3117. name: "Macro",
  3118. height: math.unit(10, "stories")
  3119. },
  3120. {
  3121. name: "Macro+",
  3122. height: math.unit(30, "stories")
  3123. },
  3124. {
  3125. name: "Megamacro",
  3126. height: math.unit(10, "miles")
  3127. },
  3128. {
  3129. name: "Megamacro+",
  3130. height: math.unit(2750000, "meters")
  3131. },
  3132. ]
  3133. )
  3134. };
  3135. characterMakers["Prince"] = () => {
  3136. return makeCharacter(
  3137. "Prince",
  3138. "Kurrikage",
  3139. {
  3140. front: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(160, "lbs"),
  3143. name: "Front",
  3144. image: {
  3145. source: "./media/characters/prince/front.svg",
  3146. extra: 3400/3000
  3147. }
  3148. },
  3149. jumping: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(160, "lbs"),
  3152. name: "Jumping",
  3153. image: {
  3154. source: "./media/characters/prince/jump.svg",
  3155. extra: 2555/2134
  3156. }
  3157. },
  3158. },
  3159. [
  3160. {
  3161. name: "Normal",
  3162. height: math.unit(7.75, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Not cute",
  3167. height: math.unit(17, "feet")
  3168. },
  3169. {
  3170. name: "I said NOT",
  3171. height: math.unit(91, "feet")
  3172. },
  3173. {
  3174. name: "Please stop",
  3175. height: math.unit(560, "feet")
  3176. },
  3177. {
  3178. name: "What have you done",
  3179. height: math.unit(2200, "feet")
  3180. },
  3181. {
  3182. name: "Deer God",
  3183. height: math.unit(3.6, "miles")
  3184. },
  3185. ]
  3186. )
  3187. };
  3188. characterMakers["Psymon"] = () => {
  3189. return makeCharacter(
  3190. "Psymon",
  3191. "Kurrikage",
  3192. {
  3193. standing: {
  3194. height: math.unit(6, "feet"),
  3195. weight: math.unit(300, "lbs"),
  3196. name: "Standing",
  3197. image: {
  3198. source: "./media/characters/psymon/standing.svg",
  3199. extra: 1888/1810,
  3200. bottom: 0.05
  3201. }
  3202. },
  3203. slithering: {
  3204. height: math.unit(6, "feet"),
  3205. weight: math.unit(300, "lbs"),
  3206. name: "Slithering",
  3207. image: {
  3208. source: "./media/characters/psymon/slithering.svg",
  3209. extra: 1330/1224
  3210. }
  3211. },
  3212. slitheringAlt: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(300, "lbs"),
  3215. name: "Slithering (Alt)",
  3216. image: {
  3217. source: "./media/characters/psymon/slithering-alt.svg",
  3218. extra: 1330/1224
  3219. }
  3220. },
  3221. },
  3222. [
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(11.25, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Large",
  3230. height: math.unit(27, "feet")
  3231. },
  3232. {
  3233. name: "Giant",
  3234. height: math.unit(87, "feet")
  3235. },
  3236. {
  3237. name: "Macro",
  3238. height: math.unit(365, "feet")
  3239. },
  3240. {
  3241. name: "Megamacro",
  3242. height: math.unit(3, "miles")
  3243. },
  3244. {
  3245. name: "World Serpent",
  3246. height: math.unit(8000, "miles")
  3247. },
  3248. ]
  3249. )
  3250. };
  3251. characterMakers["Daimos"] = () => {
  3252. return makeCharacter(
  3253. "Daimos",
  3254. "Kurrikage",
  3255. {
  3256. front: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(180, "lbs"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/daimos/front.svg",
  3262. extra: 4160/3897,
  3263. bottom: 0.021
  3264. }
  3265. }
  3266. },
  3267. [
  3268. {
  3269. name: "Normal",
  3270. height: math.unit(8, "feet"),
  3271. default: true
  3272. },
  3273. {
  3274. name: "Big Dog",
  3275. height: math.unit(22, "feet")
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(127, "feet")
  3280. },
  3281. {
  3282. name: "Megamacro",
  3283. height: math.unit(3600, "feet")
  3284. },
  3285. ]
  3286. )
  3287. };
  3288. characterMakers["Blake"] = () => {
  3289. return makeCharacter(
  3290. "Blake",
  3291. "Kurrikage",
  3292. {
  3293. side: {
  3294. height: math.unit(6, "feet"),
  3295. weight: math.unit(180, "lbs"),
  3296. name: "Side",
  3297. image: {
  3298. source: "./media/characters/blake/side.svg",
  3299. extra: 1212/1120 ,
  3300. bottom: 0.05
  3301. }
  3302. },
  3303. crouched: {
  3304. height: math.unit(6*0.57, "feet"),
  3305. weight: math.unit(180, "lbs"),
  3306. name: "Crouched",
  3307. image: {
  3308. source: "./media/characters/blake/crouched.svg",
  3309. extra: 840/587 ,
  3310. bottom: 0.04
  3311. }
  3312. },
  3313. bent: {
  3314. height: math.unit(6*0.75, "feet"),
  3315. weight: math.unit(180, "lbs"),
  3316. name: "Bent",
  3317. image: {
  3318. source: "./media/characters/blake/bent.svg",
  3319. extra: 592/544 ,
  3320. bottom: 0.035
  3321. }
  3322. },
  3323. },
  3324. [
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(8 + 1/6, "feet"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Big Backside",
  3332. height: math.unit(37, "feet")
  3333. },
  3334. {
  3335. name: "Subway Shredder",
  3336. height: math.unit(72, "feet")
  3337. },
  3338. {
  3339. name: "City Carver",
  3340. height: math.unit(1675, "feet")
  3341. },
  3342. {
  3343. name: "Tectonic Tweaker",
  3344. height: math.unit(2300, "miles")
  3345. },
  3346. ]
  3347. )
  3348. };
  3349. characterMakers["Guisetto"] = () => {
  3350. return makeCharacter(
  3351. "Guisetto",
  3352. "Kurrikage",
  3353. {
  3354. front: {
  3355. height: math.unit(6, "feet"),
  3356. weight: math.unit(180, "lbs"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/guisetto/front.svg",
  3360. extra: 856/817,
  3361. bottom: 0.06
  3362. }
  3363. },
  3364. airborne: {
  3365. height: math.unit(6, "feet"),
  3366. weight: math.unit(180, "lbs"),
  3367. name: "Airborne",
  3368. image: {
  3369. source: "./media/characters/guisetto/airborne.svg",
  3370. extra: 584/525
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(10 + 11/12, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Large",
  3382. height: math.unit(35, "feet")
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(475, "feet")
  3387. },
  3388. ]
  3389. )
  3390. };
  3391. characterMakers["Luxor"] = () => {
  3392. return makeCharacter(
  3393. "Luxor",
  3394. "Kurrikage",
  3395. {
  3396. front: {
  3397. height: math.unit(6, "feet"),
  3398. weight: math.unit(180, "lbs"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/luxor/front.svg",
  3402. extra: 2940/2152
  3403. }
  3404. },
  3405. back: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(180, "lbs"),
  3408. name: "Back",
  3409. image: {
  3410. source: "./media/characters/luxor/back.svg",
  3411. extra: 1083/960
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(5 + 5/6, "feet"),
  3419. default: true
  3420. },
  3421. {
  3422. name: "Lamp",
  3423. height: math.unit(50, "feet")
  3424. },
  3425. {
  3426. name: "Lämp",
  3427. height: math.unit(300, "feet")
  3428. },
  3429. {
  3430. name: "The sun is a lamp",
  3431. height: math.unit(250000, "miles")
  3432. },
  3433. ]
  3434. )
  3435. };
  3436. characterMakers["Huoyan"] = () => {
  3437. return makeCharacter(
  3438. "Huoyan",
  3439. "Kurrikage",
  3440. {
  3441. front: {
  3442. height: math.unit(6, "feet"),
  3443. weight: math.unit(50, "lbs"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/huoyan/front.svg"
  3447. }
  3448. },
  3449. side: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(180, "lbs"),
  3452. name: "Side",
  3453. image: {
  3454. source: "./media/characters/huoyan/side.svg"
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Chef",
  3461. height: math.unit(9, "feet")
  3462. },
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(65, "feet"),
  3466. default: true
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(780, "feet")
  3471. },
  3472. {
  3473. name: "Flaming Mountain",
  3474. height: math.unit(4.8, "miles")
  3475. },
  3476. {
  3477. name: "Celestial",
  3478. height: math.unit(765000, "miles")
  3479. },
  3480. ]
  3481. )
  3482. };
  3483. characterMakers["Tails"] = () => {
  3484. return makeCharacter(
  3485. "Tails",
  3486. "Rainier",
  3487. {
  3488. front: {
  3489. height: math.unit(5 + 3/4, "feet"),
  3490. weight: math.unit(120, "lbs"),
  3491. name: "Front",
  3492. image: {
  3493. source: "./media/characters/tails/front.svg"
  3494. }
  3495. }
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(5 + 3/4, "feet"),
  3501. default: true
  3502. }
  3503. ]
  3504. )
  3505. };
  3506. characterMakers["Rainy"] = () => {
  3507. return makeCharacter(
  3508. "Rainy",
  3509. "Rainier",
  3510. {
  3511. front: {
  3512. height: math.unit(4, "feet"),
  3513. weight: math.unit(50, "lbs"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/rainy/front.svg"
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Macro",
  3523. height: math.unit(800, "feet"),
  3524. default: true
  3525. }
  3526. ]
  3527. )
  3528. };
  3529. characterMakers["Rainier"] = () => {
  3530. return makeCharacter(
  3531. "Rainier",
  3532. "Rainier",
  3533. {
  3534. front: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(150, "lbs"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/rainier/front.svg"
  3540. }
  3541. }
  3542. },
  3543. [
  3544. {
  3545. name: "Micro",
  3546. height: math.unit(2, "mm"),
  3547. default: true
  3548. }
  3549. ]
  3550. )
  3551. };
  3552. characterMakers["Andy"] = () => {
  3553. return makeCharacter(
  3554. "Andy",
  3555. "drewbermeister",
  3556. {
  3557. front: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(180, "lbs"),
  3560. name: "Front",
  3561. image: {
  3562. source: "./media/characters/andy/front.svg"
  3563. }
  3564. }
  3565. },
  3566. [
  3567. {
  3568. name: "Normal",
  3569. height: math.unit(8, "feet"),
  3570. default: true
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1000, "feet")
  3575. },
  3576. {
  3577. name: "Megamacro",
  3578. height: math.unit(5, "miles")
  3579. },
  3580. {
  3581. name: "Gigamacro",
  3582. height: math.unit(5000, "miles")
  3583. },
  3584. ]
  3585. )
  3586. };
  3587. characterMakers["Cimmaron"] = () => {
  3588. return makeCharacter(
  3589. "Cimmaron",
  3590. "Cimmaron",
  3591. {
  3592. frontClothed: {
  3593. height: math.unit(6, "feet"),
  3594. weight: math.unit(210, "lbs"),
  3595. name: "Front (Clothed)",
  3596. image: {
  3597. source: "./media/characters/cimmaron/front-clothed.svg",
  3598. extra: 701/676 ,
  3599. bottom: 0.046
  3600. }
  3601. },
  3602. backClothed: {
  3603. height: math.unit(6, "feet"),
  3604. weight: math.unit(210, "lbs"),
  3605. name: "Back (Clothed)",
  3606. image: {
  3607. source: "./media/characters/cimmaron/back-clothed.svg",
  3608. extra: 701/676 ,
  3609. bottom: 0.046
  3610. }
  3611. },
  3612. frontNude: {
  3613. height: math.unit(6, "feet"),
  3614. weight: math.unit(210, "lbs"),
  3615. name: "Front (Nude)",
  3616. image: {
  3617. source: "./media/characters/cimmaron/front-nude.svg",
  3618. extra: 701/676 ,
  3619. bottom: 0.046
  3620. }
  3621. },
  3622. backNude: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(210, "lbs"),
  3625. name: "Back (Nude)",
  3626. image: {
  3627. source: "./media/characters/cimmaron/back-nude.svg",
  3628. extra: 701/676 ,
  3629. bottom: 0.046
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(6, "feet"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Macro Mayor",
  3641. height: math.unit(350, "meters")
  3642. },
  3643. ]
  3644. )
  3645. };
  3646. characterMakers["Akari Kaen"] = () => {
  3647. return makeCharacter(
  3648. "Akari Kaen",
  3649. "Akari",
  3650. {
  3651. front: {
  3652. height: math.unit(6, "feet"),
  3653. weight: math.unit(200, "lbs"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/akari/front.svg",
  3657. extra: 962/901,
  3658. bottom: 0.04
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Micro",
  3665. height: math.unit(5, "inches"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Normal",
  3670. height: math.unit(7, "feet")
  3671. },
  3672. ]
  3673. )
  3674. };
  3675. characterMakers["Cynosura"] = () => {
  3676. return makeCharacter(
  3677. "Cynosura",
  3678. "Cynosura",
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(140, "lbs"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/cynosura/front.svg",
  3686. extra: 896/847
  3687. }
  3688. },
  3689. back: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(140, "lbs"),
  3692. name: "Back",
  3693. image: {
  3694. source: "./media/characters/cynosura/back.svg",
  3695. extra: 1365/1250
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Micro",
  3702. height: math.unit(4, "inches")
  3703. },
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(5.75, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Tall",
  3711. height: math.unit(10, "feet")
  3712. },
  3713. {
  3714. name: "Big",
  3715. height: math.unit(20, "feet")
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(50, "feet")
  3720. },
  3721. ]
  3722. )
  3723. };
  3724. characterMakers["Gin"] = () => {
  3725. return makeCharacter(
  3726. "Gin",
  3727. "Ozzie_gt",
  3728. {
  3729. front: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(170, "lbs"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/gin/front.svg",
  3735. extra: 1.053,
  3736. bottom: 0.025
  3737. }
  3738. },
  3739. foot: {
  3740. height: math.unit(6/4.25, "feet"),
  3741. name: "Foot",
  3742. image: {
  3743. source: "./media/characters/gin/foot.svg"
  3744. }
  3745. },
  3746. sole: {
  3747. height: math.unit(6/4.40, "feet"),
  3748. name: "Sole",
  3749. image: {
  3750. source: "./media/characters/gin/sole.svg"
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(9 + 4/12, "feet")
  3758. },
  3759. {
  3760. name: "Macro",
  3761. height: math.unit(1500, "feet")
  3762. },
  3763. {
  3764. name: "Megamacro",
  3765. height: math.unit(200, "miles"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Gigamacro",
  3770. height: math.unit(500, "megameters")
  3771. },
  3772. {
  3773. name: "Teramacro",
  3774. height: math.unit(15, "lightyears")
  3775. }
  3776. ]
  3777. )
  3778. };
  3779. characterMakers["Guy"] = () => {
  3780. return makeCharacter(
  3781. "Guy",
  3782. "Whatastandupguy",
  3783. {
  3784. front: {
  3785. height: math.unit(6 + 1/6, "feet"),
  3786. weight: math.unit(178, "lbs"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/guy/front.svg"
  3790. }
  3791. }
  3792. },
  3793. [
  3794. {
  3795. name: "Normal",
  3796. height: math.unit(6 + 1/6, "feet"),
  3797. default: true
  3798. },
  3799. {
  3800. name: "Large",
  3801. height: math.unit(25 + 7/12, "feet")
  3802. },
  3803. {
  3804. name: "Macro",
  3805. height: math.unit(60 + 9/12, "feet")
  3806. },
  3807. {
  3808. name: "Macro+",
  3809. height: math.unit(246, "feet")
  3810. },
  3811. {
  3812. name: "Macro++",
  3813. height: math.unit(878, "feet")
  3814. }
  3815. ]
  3816. )
  3817. };
  3818. characterMakers["Tiberius"] = () => {
  3819. return makeCharacter(
  3820. "Tiberius",
  3821. "movler",
  3822. {
  3823. front: {
  3824. height: math.unit(9, "feet"),
  3825. weight: math.unit(800, "lbs"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/tiberius/front.svg",
  3829. extra: 2295/2071
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(9, "feet"),
  3834. weight: math.unit(800, "lbs"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/tiberius/back.svg",
  3838. extra: 2373/2160
  3839. }
  3840. },
  3841. },
  3842. [
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(9, "feet"),
  3846. default: true
  3847. }
  3848. ]
  3849. )
  3850. };
  3851. characterMakers["Surgo"] = () => {
  3852. return makeCharacter(
  3853. "Surgo",
  3854. "movler",
  3855. {
  3856. front: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(600, "lbs"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/surgo/front.svg",
  3862. extra: 3591/2227
  3863. }
  3864. },
  3865. back: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(600, "lbs"),
  3868. name: "Back",
  3869. image: {
  3870. source: "./media/characters/surgo/back.svg",
  3871. extra: 3557/2228
  3872. }
  3873. },
  3874. laying: {
  3875. height: math.unit(6 * 0.85, "feet"),
  3876. weight: math.unit(600, "lbs"),
  3877. name: "Laying",
  3878. image: {
  3879. source: "./media/characters/surgo/laying.svg"
  3880. }
  3881. },
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(6, "feet"),
  3887. default: true
  3888. }
  3889. ]
  3890. )
  3891. };
  3892. characterMakers["Cibus"] = () => {
  3893. return makeCharacter(
  3894. "Cibus",
  3895. "movler",
  3896. {
  3897. side: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(150, "lbs"),
  3900. name: "Side",
  3901. image: {
  3902. source: "./media/characters/cibus/side.svg",
  3903. extra: 800/400
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(6, "feet"),
  3911. default: true
  3912. }
  3913. ]
  3914. )
  3915. };
  3916. characterMakers["Nibbles"] = () => {
  3917. return makeCharacter(
  3918. "Nibbles",
  3919. "movler",
  3920. {
  3921. front: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(240, "lbs"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/nibbles/front.svg"
  3927. }
  3928. },
  3929. side: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(240, "lbs"),
  3932. name: "Side",
  3933. image: {
  3934. source: "./media/characters/nibbles/side.svg"
  3935. }
  3936. },
  3937. },
  3938. [
  3939. {
  3940. name: "Normal",
  3941. height: math.unit(9, "feet"),
  3942. default: true
  3943. }
  3944. ]
  3945. )
  3946. };
  3947. characterMakers["Rikky"] = () => {
  3948. return makeCharacter(
  3949. "Rikky",
  3950. "Quake Yote",
  3951. {
  3952. side: {
  3953. height: math.unit(5 + 1/6, "feet"),
  3954. weight: math.unit(130, "lbs"),
  3955. name: "Side",
  3956. image: {
  3957. source: "./media/characters/rikky/side.svg"
  3958. }
  3959. },
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(5 + 1/6, "feet")
  3965. },
  3966. {
  3967. name: "Macro",
  3968. height: math.unit(152, "feet"),
  3969. default: true
  3970. },
  3971. {
  3972. name: "Megamacro",
  3973. height: math.unit(7, "miles")
  3974. }
  3975. ]
  3976. )
  3977. };
  3978. characterMakers["Malfressa"] = () => {
  3979. return makeCharacter(
  3980. "Malfressa",
  3981. "Scareye",
  3982. {
  3983. side: {
  3984. height: math.unit(370, "cm"),
  3985. weight: math.unit(350, "lbs"),
  3986. name: "Side",
  3987. image: {
  3988. source: "./media/characters/malfressa/side.svg"
  3989. }
  3990. },
  3991. walking: {
  3992. height: math.unit(370, "cm"),
  3993. weight: math.unit(350, "lbs"),
  3994. name: "Walking",
  3995. image: {
  3996. source: "./media/characters/malfressa/walking.svg"
  3997. }
  3998. },
  3999. feral: {
  4000. height: math.unit(2500, "cm"),
  4001. weight: math.unit(100000, "lbs"),
  4002. name: "Feral",
  4003. image: {
  4004. source: "./media/characters/malfressa/feral.svg",
  4005. extra: 2108/837 ,
  4006. bottom: 0.02
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(370, "cm")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(300, "meters"),
  4018. default: true
  4019. }
  4020. ]
  4021. )
  4022. };
  4023. characterMakers["Jaro"] = () => {
  4024. return makeCharacter(
  4025. "Jaro",
  4026. "Jaro",
  4027. {
  4028. front: {
  4029. height: math.unit(6, "feet"),
  4030. weight: math.unit(60, "kg"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/jaro/front.svg"
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(6, "feet"),
  4038. weight: math.unit(60, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/jaro/back.svg"
  4042. }
  4043. },
  4044. },
  4045. [
  4046. {
  4047. name: "Micro",
  4048. height: math.unit(7, "inches")
  4049. },
  4050. {
  4051. name: "Normal",
  4052. height: math.unit(5.5, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Minimacro",
  4057. height: math.unit(20, "feet")
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(200, "meters")
  4062. }
  4063. ]
  4064. )
  4065. };
  4066. characterMakers["Rogue"] = () => {
  4067. return makeCharacter(
  4068. "Rogue",
  4069. "Rogue",
  4070. {
  4071. front: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(195, "lb"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/rogue/front.svg"
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(90, "feet"),
  4084. default: true
  4085. },
  4086. ]
  4087. )
  4088. };
  4089. characterMakers["Piper"] = () => {
  4090. return makeCharacter(
  4091. "Piper",
  4092. "Flyhar",
  4093. {
  4094. front: {
  4095. height: math.unit(5 + 8/12, "feet"),
  4096. weight: math.unit(140, "lb"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/piper/front.svg",
  4100. extra: 3928/3681
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Micro",
  4107. height: math.unit(2, "inches")
  4108. },
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(5 + 8/12, "feet")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(250, "feet"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Megamacro",
  4120. height: math.unit(7, "miles")
  4121. },
  4122. ]
  4123. )
  4124. };
  4125. characterMakers["Gemini"] = () => {
  4126. return makeCharacter(
  4127. "Gemini",
  4128. "lajay",
  4129. {
  4130. front: {
  4131. height: math.unit(6, "feet"),
  4132. weight: math.unit(220, "lb"),
  4133. name: "Front",
  4134. image: {
  4135. source: "./media/characters/gemini/front.svg"
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(6, "feet"),
  4140. weight: math.unit(220, "lb"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/gemini/back.svg"
  4144. }
  4145. },
  4146. kneeling: {
  4147. height: math.unit(6/1.5, "feet"),
  4148. weight: math.unit(220, "lb"),
  4149. name: "Kneeling",
  4150. image: {
  4151. source: "./media/characters/gemini/kneeling.svg",
  4152. bottom: 0.02
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(300, "meters"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(6900, "meters")
  4165. },
  4166. ]
  4167. )
  4168. };
  4169. characterMakers["Alicia"] = () => {
  4170. return makeCharacter(
  4171. "Alicia",
  4172. "LittleBig",
  4173. {
  4174. anthro: {
  4175. height: math.unit(2.35, "meters"),
  4176. weight: math.unit(73, "kg"),
  4177. name: "Anthro",
  4178. image: {
  4179. source: "./media/characters/alicia/anthro.svg"
  4180. }
  4181. },
  4182. feral: {
  4183. height: math.unit(1.69, "meters"),
  4184. weight: math.unit(73, "kg"),
  4185. name: "Feral",
  4186. image: {
  4187. source: "./media/characters/alicia/feral.svg"
  4188. }
  4189. },
  4190. },
  4191. [
  4192. {
  4193. name: "Normal",
  4194. height: math.unit(2.35, "meters")
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(60, "meters"),
  4199. default: true
  4200. },
  4201. {
  4202. name: "Megamacro",
  4203. height: math.unit(10000, "kilometers")
  4204. },
  4205. ]
  4206. )
  4207. };
  4208. characterMakers["Archy"] = () => {
  4209. return makeCharacter(
  4210. "Archy",
  4211. "ArchyD",
  4212. {
  4213. front: {
  4214. height: math.unit(7, "feet"),
  4215. weight: math.unit(250, "lbs"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/archy/front.svg"
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Micro",
  4225. height: math.unit(1, "inch")
  4226. },
  4227. {
  4228. name: "Shorty",
  4229. height: math.unit(5, "feet")
  4230. },
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(7, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(600, "meters"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Megamacro",
  4242. height: math.unit(1, "mile")
  4243. },
  4244. ]
  4245. )
  4246. };
  4247. characterMakers["Berri"] = () => {
  4248. return makeCharacter(
  4249. "Berri",
  4250. "LittleBig",
  4251. {
  4252. front: {
  4253. height: math.unit(1.65, "meters"),
  4254. weight: math.unit(74, "kg"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/berri/front.svg"
  4258. }
  4259. }
  4260. },
  4261. [
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(1.65, "meters")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(60, "m"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Megamacro",
  4273. height: math.unit(9.213, "km")
  4274. },
  4275. {
  4276. name: "Planet Eater",
  4277. height: math.unit(489, "megameters")
  4278. },
  4279. {
  4280. name: "Teramacro",
  4281. height: math.unit(2471635000000, "meters")
  4282. },
  4283. {
  4284. name: "Examacro",
  4285. height: math.unit(8.0624e+26, "meters")
  4286. }
  4287. ]
  4288. )
  4289. };
  4290. characterMakers["Lexi"] = () => {
  4291. return makeCharacter(
  4292. "Lexi",
  4293. "LittleBig",
  4294. {
  4295. front: {
  4296. height: math.unit(1.72, "meters"),
  4297. weight: math.unit(68, "kg"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/lexi/front.svg"
  4301. }
  4302. }
  4303. },
  4304. [
  4305. {
  4306. name: "Very Smol",
  4307. height: math.unit(10, "mm")
  4308. },
  4309. {
  4310. name: "Micro",
  4311. height: math.unit(6.8, "cm"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(1.72, "m")
  4317. }
  4318. ]
  4319. )
  4320. };
  4321. characterMakers["Martin"] = () => {
  4322. return makeCharacter(
  4323. "Martin",
  4324. "LittleBig",
  4325. {
  4326. front: {
  4327. height: math.unit(1.69, "meters"),
  4328. weight: math.unit(68, "kg"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/martin/front.svg",
  4332. extra: 596/581
  4333. }
  4334. }
  4335. },
  4336. [
  4337. {
  4338. name: "Micro",
  4339. height: math.unit(6.85, "cm"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(1.69, "m")
  4345. }
  4346. ]
  4347. )
  4348. };
  4349. characterMakers["Juno"] = () => {
  4350. return makeCharacter(
  4351. "Juno",
  4352. "LittleBig",
  4353. {
  4354. front: {
  4355. height: math.unit(1.69, "meters"),
  4356. weight: math.unit(68, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/juno/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Micro",
  4366. height: math.unit(7, "cm")
  4367. },
  4368. {
  4369. name: "Normal",
  4370. height: math.unit(1.89, "m")
  4371. },
  4372. {
  4373. name: "Macro",
  4374. height: math.unit(353, "meters"),
  4375. default: true
  4376. }
  4377. ]
  4378. )
  4379. };
  4380. characterMakers["Samantha"] = () => {
  4381. return makeCharacter(
  4382. "Samantha",
  4383. "LittleBig",
  4384. {
  4385. front: {
  4386. height: math.unit(1.93, "meters"),
  4387. weight: math.unit(83, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/samantha/front.svg"
  4391. }
  4392. },
  4393. frontClothed: {
  4394. height: math.unit(1.93, "meters"),
  4395. weight: math.unit(83, "kg"),
  4396. name: "Front (Clothed)",
  4397. image: {
  4398. source: "./media/characters/samantha/front-clothed.svg"
  4399. }
  4400. },
  4401. back: {
  4402. height: math.unit(1.93, "meters"),
  4403. weight: math.unit(83, "kg"),
  4404. name: "Back",
  4405. image: {
  4406. source: "./media/characters/samantha/back.svg"
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(1.93, "m")
  4414. },
  4415. {
  4416. name: "Macro",
  4417. height: math.unit(74, "meters"),
  4418. default: true
  4419. },
  4420. {
  4421. name: "Macro+",
  4422. height: math.unit(223, "meters"),
  4423. },
  4424. {
  4425. name: "Megamacro",
  4426. height: math.unit(8381, "meters"),
  4427. },
  4428. {
  4429. name: "Megamacro+",
  4430. height: math.unit(12000, "kilometers")
  4431. },
  4432. ]
  4433. )
  4434. };
  4435. characterMakers["Dr. Clay"] = () => {
  4436. return makeCharacter(
  4437. "Dr. Clay",
  4438. "LittleBig",
  4439. {
  4440. front: {
  4441. height: math.unit(1.92, "meters"),
  4442. weight: math.unit(80, "kg"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/dr-clay/front.svg"
  4446. }
  4447. },
  4448. frontClothed: {
  4449. height: math.unit(1.92, "meters"),
  4450. weight: math.unit(80, "kg"),
  4451. name: "Front (Clothed)",
  4452. image: {
  4453. source: "./media/characters/dr-clay/front-clothed.svg"
  4454. }
  4455. }
  4456. },
  4457. [
  4458. {
  4459. name: "Normal",
  4460. height: math.unit(1.92, "m")
  4461. },
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(214, "meters"),
  4465. default: true
  4466. },
  4467. {
  4468. name: "Macro+",
  4469. height: math.unit(12.237, "meters"),
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(557, "megameters"),
  4474. },
  4475. {
  4476. name: "Unimaginable",
  4477. height: math.unit(120e9, "lightyears")
  4478. },
  4479. ]
  4480. )
  4481. };
  4482. characterMakers["Wyvrn Ripsnarl"] = () => {
  4483. return makeCharacter(
  4484. "Wyvrn Ripsnarl",
  4485. "LoboRaptorLo",
  4486. {
  4487. front: {
  4488. height: math.unit(2, "meters"),
  4489. weight: math.unit(80, "kg"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4493. }
  4494. }
  4495. },
  4496. [
  4497. {
  4498. name: "Teramacro",
  4499. height: math.unit(500000, "lightyears"),
  4500. default: true
  4501. },
  4502. ]
  4503. )
  4504. };
  4505. characterMakers["Vemus"] = () => {
  4506. return makeCharacter(
  4507. "Vemus",
  4508. "Vemus",
  4509. {
  4510. front: {
  4511. height: math.unit(2, "meters"),
  4512. weight: math.unit(150, "kg"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/vemus/front.svg",
  4516. extra: 2384/2084,
  4517. bottom: 0.0123
  4518. }
  4519. }
  4520. },
  4521. [
  4522. {
  4523. name: "Normal",
  4524. height: math.unit(3.75, "meters"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Big",
  4529. height: math.unit(8, "meters")
  4530. },
  4531. {
  4532. name: "Macro",
  4533. height: math.unit(100, "meters")
  4534. },
  4535. {
  4536. name: "Macro+",
  4537. height: math.unit(1500, "meters")
  4538. },
  4539. {
  4540. name: "Stellar",
  4541. height: math.unit(14e8, "meters")
  4542. },
  4543. ]
  4544. )
  4545. };
  4546. characterMakers["Beherit"] = () => {
  4547. return makeCharacter(
  4548. "Beherit",
  4549. "Beherit",
  4550. {
  4551. front: {
  4552. height: math.unit(2, "meters"),
  4553. weight: math.unit(70, "kg"),
  4554. name: "Front",
  4555. image: {
  4556. source: "./media/characters/beherit/front.svg",
  4557. extra: 1408/1242
  4558. }
  4559. }
  4560. },
  4561. [
  4562. {
  4563. name: "Normal",
  4564. height: math.unit(6, "feet")
  4565. },
  4566. {
  4567. name: "Lorg",
  4568. height: math.unit(25, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Lorger",
  4573. height: math.unit(75, "feet")
  4574. },
  4575. {
  4576. name: "Macro",
  4577. height: math.unit(200, "meters")
  4578. },
  4579. ]
  4580. )
  4581. };
  4582. characterMakers["Everett"] = () => {
  4583. return makeCharacter(
  4584. "Everett",
  4585. "Beherit",
  4586. {
  4587. front: {
  4588. height: math.unit(2, "meters"),
  4589. weight: math.unit(150, "kg"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/everett/front.svg",
  4593. extra: 2038/1737 ,
  4594. bottom: 0.03
  4595. }
  4596. },
  4597. paw: {
  4598. height: math.unit(2/3.6, "meters"),
  4599. name: "Paw",
  4600. image: {
  4601. source: "./media/characters/everett/paw.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(15, "feet"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Lorg",
  4613. height: math.unit(70, "feet"),
  4614. default: true
  4615. },
  4616. {
  4617. name: "Lorger",
  4618. height: math.unit(250, "feet")
  4619. },
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(500, "meters")
  4623. },
  4624. ]
  4625. )
  4626. };
  4627. characterMakers["Rose Lion"] = () => {
  4628. return makeCharacter(
  4629. "Rose Lion",
  4630. "Enormouse",
  4631. {
  4632. front: {
  4633. height: math.unit(2, "meters"),
  4634. weight: math.unit(86, "kg"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/rose-lion/front.svg"
  4638. }
  4639. },
  4640. bent: {
  4641. height: math.unit(2/1.4288, "meters"),
  4642. weight: math.unit(86, "kg"),
  4643. name: "Bent",
  4644. image: {
  4645. source: "./media/characters/rose-lion/bent.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Mini-Micro",
  4652. height: math.unit(1, "cm")
  4653. },
  4654. {
  4655. name: "Micro",
  4656. height: math.unit(3.5, "inches"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Normal",
  4661. height: math.unit(6 + 1/6, "feet")
  4662. },
  4663. {
  4664. name: "Mini-Macro",
  4665. height: math.unit(9 + 10/12, "feet")
  4666. },
  4667. ]
  4668. )
  4669. };
  4670. characterMakers["Regal"] = () => {
  4671. return makeCharacter(
  4672. "Regal",
  4673. "Regal Drennen",
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meters"),
  4677. weight: math.unit(350, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/regal/front.svg"
  4681. }
  4682. },
  4683. back: {
  4684. height: math.unit(2, "meters"),
  4685. weight: math.unit(350, "lbs"),
  4686. name: "Back",
  4687. image: {
  4688. source: "./media/characters/regal/back.svg"
  4689. }
  4690. },
  4691. },
  4692. [
  4693. {
  4694. name: "Macro",
  4695. height: math.unit(350, "feet"),
  4696. default: true
  4697. }
  4698. ]
  4699. )
  4700. };
  4701. characterMakers["Opal"] = () => {
  4702. return makeCharacter(
  4703. "Opal",
  4704. "Enormouse",
  4705. {
  4706. front: {
  4707. height: math.unit(4 + 11/12, "feet"),
  4708. weight: math.unit(100, "lbs"),
  4709. name: "Front",
  4710. image: {
  4711. source: "./media/characters/opal/front.svg"
  4712. }
  4713. },
  4714. frontAlt: {
  4715. height: math.unit(4 + 11/12, "feet"),
  4716. weight: math.unit(100, "lbs"),
  4717. name: "Front (Alt)",
  4718. image: {
  4719. source: "./media/characters/opal/front-alt.svg"
  4720. }
  4721. },
  4722. },
  4723. [
  4724. {
  4725. name: "Small",
  4726. height: math.unit(4 + 11/12, "feet")
  4727. },
  4728. {
  4729. name: "Normal",
  4730. height: math.unit(20, "feet"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(120, "feet")
  4736. },
  4737. {
  4738. name: "Megamacro",
  4739. height: math.unit(80, "miles")
  4740. },
  4741. {
  4742. name: "True Size",
  4743. height: math.unit(100000, "lightyears")
  4744. },
  4745. ]
  4746. )
  4747. };
  4748. characterMakers["Vector Wuff"] = () => {
  4749. return makeCharacter(
  4750. "Vector Wuff",
  4751. "Vector",
  4752. {
  4753. front: {
  4754. height: math.unit(6, "feet"),
  4755. weight: math.unit(200, "lbs"),
  4756. name: "Front",
  4757. image: {
  4758. source: "./media/characters/vector-wuff/front.svg"
  4759. }
  4760. }
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(2.8, "meters")
  4766. },
  4767. {
  4768. name: "Macro",
  4769. height: math.unit(450, "meters"),
  4770. default: true
  4771. },
  4772. {
  4773. name: "Megamacro",
  4774. height: math.unit(15, "kilometers")
  4775. }
  4776. ]
  4777. )
  4778. };
  4779. characterMakers["Dannik"] = () => {
  4780. return makeCharacter(
  4781. "Dannik",
  4782. "LuchaLibreLibro",
  4783. {
  4784. front: {
  4785. height: math.unit(6, "feet"),
  4786. weight: math.unit(256, "lbs"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/dannik/front.svg"
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Macro",
  4796. height: math.unit(69.57, "meters"),
  4797. default: true
  4798. },
  4799. ]
  4800. )
  4801. };
  4802. characterMakers["Azura Saharah"] = () => {
  4803. return makeCharacter(
  4804. "Azura Saharah",
  4805. "AzuraSaharah",
  4806. {
  4807. front: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(120, "lbs"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/azura-saharah/front.svg"
  4813. }
  4814. },
  4815. back: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(120, "lbs"),
  4818. name: "Back",
  4819. image: {
  4820. source: "./media/characters/azura-saharah/back.svg"
  4821. }
  4822. },
  4823. },
  4824. [
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(100, "feet"),
  4828. default: true
  4829. },
  4830. ]
  4831. )
  4832. };
  4833. characterMakers["Kennedy"] = () => {
  4834. return makeCharacter(
  4835. "Kennedy",
  4836. "BossVoss",
  4837. {
  4838. side: {
  4839. height: math.unit(5 + 4/12, "feet"),
  4840. weight: math.unit(163, "lbs"),
  4841. name: "Side",
  4842. image: {
  4843. source: "./media/characters/kennedy/side.svg"
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Standard Doggo",
  4850. height: math.unit(5 + 4/12, "feet")
  4851. },
  4852. {
  4853. name: "Big Doggo",
  4854. height: math.unit(25 + 3/12, "feet"),
  4855. default: true
  4856. },
  4857. ]
  4858. )
  4859. };
  4860. characterMakers["Odi Lunar"] = () => {
  4861. return makeCharacter(
  4862. "Odi Lunar",
  4863. "OdiLunar",
  4864. {
  4865. front: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(90, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/odi-lunar/front.svg"
  4871. }
  4872. }
  4873. },
  4874. [
  4875. {
  4876. name: "Micro",
  4877. height: math.unit(3, "inches"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(5.5, "feet")
  4883. }
  4884. ]
  4885. )
  4886. };
  4887. characterMakers["Mandake"] = () => {
  4888. return makeCharacter(
  4889. "Mandake",
  4890. "Dialuca01",
  4891. {
  4892. back: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(220, "lbs"),
  4895. name: "Back",
  4896. image: {
  4897. source: "./media/characters/mandake/back.svg"
  4898. }
  4899. }
  4900. },
  4901. [
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(7, "feet"),
  4905. default: true
  4906. },
  4907. {
  4908. name: "Macro",
  4909. height: math.unit(78, "feet")
  4910. },
  4911. {
  4912. name: "Macro+",
  4913. height: math.unit(300, "meters")
  4914. },
  4915. {
  4916. name: "Macro++",
  4917. height: math.unit(2400, "feet")
  4918. },
  4919. {
  4920. name: "Megamacro",
  4921. height: math.unit(5167, "meters")
  4922. },
  4923. {
  4924. name: "Gigamacro",
  4925. height: math.unit(41769, "miles")
  4926. },
  4927. ]
  4928. )
  4929. };
  4930. characterMakers["Yozey"] = () => {
  4931. return makeCharacter(
  4932. "Yozey",
  4933. "Yozey",
  4934. {
  4935. front: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(120, "lbs"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/yozey/front.svg"
  4941. }
  4942. },
  4943. frontAlt: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(120, "lbs"),
  4946. name: "Front (Alt)",
  4947. image: {
  4948. source: "./media/characters/yozey/front-alt.svg"
  4949. }
  4950. },
  4951. side: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(120, "lbs"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/yozey/side.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Micro",
  4963. height: math.unit(3, "inches"),
  4964. default: true
  4965. },
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(6, "feet")
  4969. }
  4970. ]
  4971. )
  4972. };
  4973. characterMakers["Valeska Voss"] = () => {
  4974. return makeCharacter(
  4975. "Valeska Voss",
  4976. "BossVoss",
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(103, "lbs"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/valeska-voss/front.svg"
  4984. }
  4985. }
  4986. },
  4987. [
  4988. {
  4989. name: "Mini-Sized Sub",
  4990. height: math.unit(3.1, "inches")
  4991. },
  4992. {
  4993. name: "Mid-Sized Sub",
  4994. height: math.unit(6.2, "inches")
  4995. },
  4996. {
  4997. name: "Full-Sized Sub",
  4998. height: math.unit(9.3, "inches")
  4999. },
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(5 + 2/12, "foot"),
  5003. default: true
  5004. },
  5005. ]
  5006. )
  5007. };
  5008. characterMakers["Gene Zeta"] = () => {
  5009. return makeCharacter(
  5010. "Gene Zeta",
  5011. "Xeebes",
  5012. {
  5013. front: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(160, "lbs"),
  5016. name: "Front",
  5017. image: {
  5018. source: "./media/characters/gene-zeta/front.svg",
  5019. bottom: 0.03,
  5020. extra: 1
  5021. }
  5022. }
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(6.25, "foot"),
  5028. default: true
  5029. },
  5030. ]
  5031. )
  5032. };
  5033. characterMakers["Razinox"] = () => {
  5034. return makeCharacter(
  5035. "Razinox",
  5036. "Razinox",
  5037. {
  5038. front: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(350, "lbs"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/razinox/front.svg",
  5044. extra: 1686/1548
  5045. }
  5046. },
  5047. back: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(350, "lbs"),
  5050. name: "Back",
  5051. image: {
  5052. source: "./media/characters/razinox/back.svg",
  5053. extra: 1660/1590
  5054. }
  5055. },
  5056. },
  5057. [
  5058. {
  5059. name: "Normal",
  5060. height: math.unit(10 + 8/12, "foot")
  5061. },
  5062. {
  5063. name: "Minimacro",
  5064. height: math.unit(15, "foot")
  5065. },
  5066. {
  5067. name: "Macro",
  5068. height: math.unit(60, "foot"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Megamacro",
  5073. height: math.unit(5, "miles")
  5074. },
  5075. {
  5076. name: "Gigamacro",
  5077. height: math.unit(6000, "miles")
  5078. },
  5079. ]
  5080. )
  5081. };
  5082. characterMakers["Cobalt"] = () => {
  5083. return makeCharacter(
  5084. "Cobalt",
  5085. "Miateshcha",
  5086. {
  5087. front: {
  5088. height: math.unit(6, "feet"),
  5089. weight: math.unit(150, "lbs"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/cobalt/front.svg"
  5093. }
  5094. }
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(8 + 1/12, "foot")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(111, "foot"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Supracosmic",
  5108. height: math.unit(1e42, "feet")
  5109. },
  5110. ]
  5111. )
  5112. };
  5113. characterMakers["Amanda"] = () => {
  5114. return makeCharacter(
  5115. "Amanda",
  5116. "Amanda",
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(140, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/amanda/front.svg"
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Micro",
  5130. height: math.unit(5, "inches"),
  5131. default: true
  5132. },
  5133. ]
  5134. )
  5135. };
  5136. characterMakers["Teal"] = () => {
  5137. return makeCharacter(
  5138. "Teal",
  5139. "Teal",
  5140. {
  5141. front: {
  5142. height: math.unit(5.59, "feet"),
  5143. weight: math.unit(250, "lbs"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/teal/front.svg"
  5147. }
  5148. },
  5149. frontAlt: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(250, "lbs"),
  5152. name: "Front (Alt)",
  5153. image: {
  5154. source: "./media/characters/teal/front-alt.svg",
  5155. bottom: 0.04,
  5156. extra: 1
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(12, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(300, "feet")
  5169. },
  5170. ]
  5171. )
  5172. };
  5173. characterMakers["Ravin Amulet"] = () => {
  5174. return makeCharacter(
  5175. "Ravin Amulet",
  5176. "Ravin Amulet",
  5177. {
  5178. frontCat: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(180, "lbs"),
  5181. name: "Front (Cat)",
  5182. image: {
  5183. source: "./media/characters/ravin-amulet/front-cat.svg"
  5184. }
  5185. },
  5186. frontCatAlt: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(180, "lbs"),
  5189. name: "Front (Alt, Cat)",
  5190. image: {
  5191. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5192. }
  5193. },
  5194. frontWerewolf: {
  5195. height: math.unit(6*1.2, "feet"),
  5196. weight: math.unit(225, "lbs"),
  5197. name: "Front (Werewolf)",
  5198. image: {
  5199. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5200. }
  5201. },
  5202. backWerewolf: {
  5203. height: math.unit(6*1.2, "feet"),
  5204. weight: math.unit(225, "lbs"),
  5205. name: "Back (Werewolf)",
  5206. image: {
  5207. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Nano",
  5214. height: math.unit(1, "micrometer")
  5215. },
  5216. {
  5217. name: "Micro",
  5218. height: math.unit(1, "inch")
  5219. },
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(6, "feet"),
  5223. default: true
  5224. },
  5225. {
  5226. name: "Macro",
  5227. height: math.unit(60, "feet")
  5228. }
  5229. ]
  5230. )
  5231. };
  5232. characterMakers["Fluoresce"] = () => {
  5233. return makeCharacter(
  5234. "Fluoresce",
  5235. "Ravin Amulet",
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(165, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/fluoresce/front.svg"
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Micro",
  5249. height: math.unit(6, "cm")
  5250. },
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(5 + 7/12, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(56, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(1.9, "miles")
  5263. },
  5264. ]
  5265. )
  5266. };
  5267. characterMakers["Aurora"] = () => {
  5268. return makeCharacter(
  5269. "Aurora",
  5270. "Vonadi",
  5271. {
  5272. front: {
  5273. height: math.unit(9 + 6/12, "feet"),
  5274. weight: math.unit(523, "lbs"),
  5275. name: "Side",
  5276. image: {
  5277. source: "./media/characters/aurora/side.svg"
  5278. }
  5279. }
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(9 + 6/12, "feet")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(96, "feet"),
  5289. default: true
  5290. },
  5291. {
  5292. name: "Macro+",
  5293. height: math.unit(243, "feet")
  5294. },
  5295. ]
  5296. )
  5297. };
  5298. characterMakers["Ranek"] = () => {
  5299. return makeCharacter(
  5300. "Ranek",
  5301. "Ranek",
  5302. {
  5303. front: {
  5304. height: math.unit(194, "cm"),
  5305. weight: math.unit(90, "kg"),
  5306. name: "Front",
  5307. image: {
  5308. source: "./media/characters/ranek/front.svg"
  5309. }
  5310. },
  5311. side: {
  5312. height: math.unit(194, "cm"),
  5313. weight: math.unit(90, "kg"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/ranek/side.svg"
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(194, "cm"),
  5321. weight: math.unit(90, "kg"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/ranek/back.svg"
  5325. }
  5326. },
  5327. feral: {
  5328. height: math.unit(30, "cm"),
  5329. weight: math.unit(1.6, "lbs"),
  5330. name: "Feral",
  5331. image: {
  5332. source: "./media/characters/ranek/feral.svg"
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(194, "cm"),
  5340. default: true
  5341. },
  5342. {
  5343. name: "Macro",
  5344. height: math.unit(100, "meters")
  5345. },
  5346. ]
  5347. )
  5348. };
  5349. characterMakers["Andrew Cooper"] = () => {
  5350. return makeCharacter(
  5351. "Andrew Cooper",
  5352. "Vonadi",
  5353. {
  5354. front: {
  5355. height: math.unit(5 + 6/12, "feet"),
  5356. weight: math.unit(153, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/andrew-cooper/front.svg"
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Nano",
  5366. height: math.unit(1, "mm")
  5367. },
  5368. {
  5369. name: "Micro",
  5370. height: math.unit(2, "inches")
  5371. },
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(5 + 6/12, "feet"),
  5375. default: true
  5376. }
  5377. ]
  5378. )
  5379. };
  5380. characterMakers["Akane Sato"] = () => {
  5381. return makeCharacter(
  5382. "Akane Sato",
  5383. "Vonadi",
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(180, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/akane-sato/front.svg",
  5391. extra: 1219/1140
  5392. }
  5393. },
  5394. back: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(180, "lbs"),
  5397. name: "Back",
  5398. image: {
  5399. source: "./media/characters/akane-sato/back.svg",
  5400. extra: 1219/1170
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(2.5, "meters")
  5408. },
  5409. {
  5410. name: "Macro",
  5411. height: math.unit(250, "meters"),
  5412. default: true
  5413. },
  5414. {
  5415. name: "Megamacro",
  5416. height: math.unit(25, "km")
  5417. },
  5418. ]
  5419. )
  5420. };
  5421. characterMakers["Rook"] = () => {
  5422. return makeCharacter(
  5423. "Rook",
  5424. "Rook",
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(65, "kg"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/rook/front.svg"
  5432. }
  5433. }
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(8.8, "feet")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(88, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(8, "miles")
  5448. },
  5449. ]
  5450. )
  5451. };
  5452. characterMakers["Prodigy"] = () => {
  5453. return makeCharacter(
  5454. "Prodigy",
  5455. "Rook",
  5456. {
  5457. front: {
  5458. height: math.unit(12 + 2/12, "feet"),
  5459. weight: math.unit(808, "lbs"),
  5460. name: "Front",
  5461. image: {
  5462. source: "./media/characters/prodigy/front.svg"
  5463. }
  5464. }
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(12 + 2/12, "feet"),
  5470. default: true
  5471. },
  5472. {
  5473. name: "Macro",
  5474. height: math.unit(143, "feet")
  5475. },
  5476. {
  5477. name: "Macro+",
  5478. height: math.unit(400, "feet")
  5479. },
  5480. ]
  5481. )
  5482. };
  5483. characterMakers["Daniel"] = () => {
  5484. return makeCharacter(
  5485. "Daniel",
  5486. "Galactor",
  5487. {
  5488. front: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(225, "lbs"),
  5491. name: "Front",
  5492. image: {
  5493. source: "./media/characters/daniel/front.svg"
  5494. }
  5495. },
  5496. leaning: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(225, "lbs"),
  5499. name: "Leaning",
  5500. image: {
  5501. source: "./media/characters/daniel/leaning.svg"
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Macro",
  5508. height: math.unit(1000, "feet"),
  5509. default: true
  5510. },
  5511. ]
  5512. )
  5513. };
  5514. characterMakers["Chiros"] = () => {
  5515. return makeCharacter(
  5516. "Chiros",
  5517. "Chiropica",
  5518. {
  5519. front: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(88, "lbs"),
  5522. name: "Front",
  5523. image: {
  5524. source: "./media/characters/chiros/front.svg",
  5525. extra: 306/226
  5526. }
  5527. },
  5528. side: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(88, "lbs"),
  5531. name: "Side",
  5532. image: {
  5533. source: "./media/characters/chiros/side.svg",
  5534. extra: 306/226
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(6, "cm"),
  5542. default: true
  5543. },
  5544. ]
  5545. )
  5546. };
  5547. characterMakers["Selka"] = () => {
  5548. return makeCharacter(
  5549. "Selka",
  5550. "Xelchew",
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(100, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/selka/front.svg",
  5558. extra: 947/887
  5559. }
  5560. }
  5561. },
  5562. [
  5563. {
  5564. name: "Normal",
  5565. height: math.unit(5, "cm"),
  5566. default: true
  5567. },
  5568. ]
  5569. )
  5570. };
  5571. characterMakers["Verin"] = () => {
  5572. return makeCharacter(
  5573. "Verin",
  5574. "Vonadi",
  5575. {
  5576. front: {
  5577. height: math.unit(8 + 3/12, "feet"),
  5578. weight: math.unit(424, "lbs"),
  5579. name: "Front",
  5580. image: {
  5581. source: "./media/characters/verin/front.svg",
  5582. extra: 1845/1550
  5583. }
  5584. },
  5585. frontArmored: {
  5586. height: math.unit(8 + 3/12, "feet"),
  5587. weight: math.unit(424, "lbs"),
  5588. name: "Front (Armored)",
  5589. image: {
  5590. source: "./media/characters/verin/front-armor.svg",
  5591. extra: 1845/1550 ,
  5592. bottom: 0.01
  5593. }
  5594. },
  5595. back: {
  5596. height: math.unit(8 + 3/12, "feet"),
  5597. weight: math.unit(424, "lbs"),
  5598. name: "Back",
  5599. image: {
  5600. source: "./media/characters/verin/back.svg",
  5601. bottom: 0.1,
  5602. extra: 1
  5603. }
  5604. },
  5605. foot: {
  5606. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5607. name: "Foot",
  5608. image: {
  5609. source: "./media/characters/verin/foot.svg"
  5610. }
  5611. },
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(8 + 3/12, "feet")
  5617. },
  5618. {
  5619. name: "Minimacro",
  5620. height: math.unit(21, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(626, "feet")
  5626. },
  5627. ]
  5628. )
  5629. };
  5630. characterMakers["Sovrim Terraquian"] = () => {
  5631. return makeCharacter(
  5632. "Sovrim Terraquian",
  5633. "Sovrim Terraquian",
  5634. {
  5635. front: {
  5636. height: math.unit(2.718, "meters"),
  5637. weight: math.unit(150, "lbs"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/sovrim-terraquian/front.svg"
  5641. }
  5642. },
  5643. back: {
  5644. height: math.unit(2.718, "meters"),
  5645. weight: math.unit(150, "lbs"),
  5646. name: "Back",
  5647. image: {
  5648. source: "./media/characters/sovrim-terraquian/back.svg"
  5649. }
  5650. }
  5651. },
  5652. [
  5653. {
  5654. name: "Micro",
  5655. height: math.unit(2, "inches")
  5656. },
  5657. {
  5658. name: "Small",
  5659. height: math.unit(1, "meter")
  5660. },
  5661. {
  5662. name: "Normal",
  5663. height: math.unit(Math.E, "meters"),
  5664. default: true
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(20, "meters")
  5669. },
  5670. {
  5671. name: "Macro+",
  5672. height: math.unit(400, "meters")
  5673. },
  5674. ]
  5675. )
  5676. };
  5677. characterMakers["Reece Silvermane"] = () => {
  5678. return makeCharacter(
  5679. "Reece Silvermane",
  5680. "Silverhorsey",
  5681. {
  5682. front: {
  5683. height: math.unit(7, "feet"),
  5684. weight: math.unit(489, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/reece-silvermane/front.svg",
  5688. bottom: 0.02,
  5689. extra: 1
  5690. }
  5691. },
  5692. },
  5693. [
  5694. {
  5695. name: "Macro",
  5696. height: math.unit(1.5, "miles"),
  5697. default: true
  5698. },
  5699. ]
  5700. )
  5701. };
  5702. characterMakers["Kane"] = () => {
  5703. return makeCharacter(
  5704. "Kane",
  5705. "LittleBigX110",
  5706. {
  5707. front: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(78, "kg"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/kane/front.svg",
  5713. extra: 978/899
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(2.1, "m"),
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(1, "km"),
  5725. default: true
  5726. },
  5727. ]
  5728. )
  5729. };
  5730. characterMakers["Tegon"] = () => {
  5731. return makeCharacter(
  5732. "Tegon",
  5733. "TegonDragon",
  5734. {
  5735. front: {
  5736. height: math.unit(6, "feet"),
  5737. weight: math.unit(200, "kg"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/tegon/front.svg",
  5741. bottom: 0.01,
  5742. extra: 1
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Micro",
  5749. height: math.unit(1, "inch")
  5750. },
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(6 + 3/12, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Macro",
  5758. height: math.unit(300, "feet")
  5759. },
  5760. {
  5761. name: "Megamacro",
  5762. height: math.unit(69, "miles")
  5763. },
  5764. ]
  5765. )
  5766. };
  5767. characterMakers["Arcturax"] = () => {
  5768. return makeCharacter(
  5769. "Arcturax",
  5770. "Arcturax",
  5771. {
  5772. side: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(2304, "lbs"),
  5775. name: "Side",
  5776. image: {
  5777. source: "./media/characters/arcturax/side.svg",
  5778. extra: 790/376 ,
  5779. bottom: 0.01
  5780. }
  5781. },
  5782. },
  5783. [
  5784. {
  5785. name: "Micro",
  5786. height: math.unit(2, "inch")
  5787. },
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(6, "feet")
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(39, "feet"),
  5795. default: true
  5796. },
  5797. {
  5798. name: "Megamacro",
  5799. height: math.unit(7, "miles")
  5800. },
  5801. ]
  5802. )
  5803. };
  5804. characterMakers["Sentri"] = () => {
  5805. return makeCharacter(
  5806. "Sentri",
  5807. "Sentri",
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(50, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/sentri/front.svg",
  5815. extra: 1750/1570 ,
  5816. bottom: 0.025
  5817. }
  5818. },
  5819. frontAlt: {
  5820. height: math.unit(6, "feet"),
  5821. weight: math.unit(50, "lbs"),
  5822. name: "Front (Alt)",
  5823. image: {
  5824. source: "./media/characters/sentri/front-alt.svg",
  5825. extra: 1750/1570 ,
  5826. bottom: 0.025
  5827. }
  5828. },
  5829. },
  5830. [
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(15, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Macro",
  5838. height: math.unit(2500, "feet")
  5839. }
  5840. ]
  5841. )
  5842. };
  5843. characterMakers["Corvin"] = () => {
  5844. return makeCharacter(
  5845. "Corvin",
  5846. "Sirffuzzylogik",
  5847. {
  5848. front: {
  5849. height: math.unit(5 + 8/12, "feet"),
  5850. weight: math.unit(130, "lbs"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/corvin/front.svg",
  5854. extra: 1803/1629
  5855. }
  5856. },
  5857. frontShirt: {
  5858. height: math.unit(5 + 8/12, "feet"),
  5859. weight: math.unit(130, "lbs"),
  5860. name: "Front (Shirt)",
  5861. image: {
  5862. source: "./media/characters/corvin/front-shirt.svg",
  5863. extra: 1803/1629
  5864. }
  5865. },
  5866. frontPoncho: {
  5867. height: math.unit(5 + 8/12, "feet"),
  5868. weight: math.unit(130, "lbs"),
  5869. name: "Front (Poncho)",
  5870. image: {
  5871. source: "./media/characters/corvin/front-poncho.svg",
  5872. extra: 1803/1629
  5873. }
  5874. },
  5875. side: {
  5876. height: math.unit(5 + 8/12, "feet"),
  5877. weight: math.unit(130, "lbs"),
  5878. name: "Side",
  5879. image: {
  5880. source: "./media/characters/corvin/side.svg",
  5881. extra: 1012/945
  5882. }
  5883. },
  5884. back: {
  5885. height: math.unit(5 + 8/12, "feet"),
  5886. weight: math.unit(130, "lbs"),
  5887. name: "Back",
  5888. image: {
  5889. source: "./media/characters/corvin/back.svg",
  5890. extra: 1803/1629
  5891. }
  5892. },
  5893. },
  5894. [
  5895. {
  5896. name: "Micro",
  5897. height: math.unit(3, "inches")
  5898. },
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(5 + 8/12, "feet")
  5902. },
  5903. {
  5904. name: "Macro",
  5905. height: math.unit(300, "feet"),
  5906. default: true
  5907. },
  5908. {
  5909. name: "Megamacro",
  5910. height: math.unit(500, "miles")
  5911. }
  5912. ]
  5913. )
  5914. };
  5915. characterMakers["Q"] = () => {
  5916. return makeCharacter(
  5917. "Q",
  5918. "Q Walf",
  5919. {
  5920. front: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(135, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/q/front.svg",
  5926. extra: 854/752 ,
  5927. bottom: 0.005
  5928. }
  5929. },
  5930. back: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(130, "lbs"),
  5933. name: "Back",
  5934. image: {
  5935. source: "./media/characters/q/back.svg",
  5936. extra: 854/752
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Macro",
  5943. height: math.unit(90, "feet"),
  5944. default: true
  5945. },
  5946. {
  5947. name: "Extra Macro",
  5948. height: math.unit(300, "feet"),
  5949. },
  5950. {
  5951. name: "BIG WALF",
  5952. height: math.unit(750, "feet"),
  5953. },
  5954. ]
  5955. )
  5956. };
  5957. characterMakers["Carley"] = () => {
  5958. return makeCharacter(
  5959. "Carley",
  5960. "QuakeYote",
  5961. {
  5962. front: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(150, "lbs"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/carley/front.svg",
  5968. extra: 3927/3540 ,
  5969. bottom: 0.03
  5970. }
  5971. }
  5972. },
  5973. [
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(6 + 3/12, "feet")
  5977. },
  5978. {
  5979. name: "Macro",
  5980. height: math.unit(185, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Megamacro",
  5985. height: math.unit(8, "miles"),
  5986. },
  5987. ]
  5988. )
  5989. };
  5990. characterMakers["Citrine"] = () => {
  5991. return makeCharacter(
  5992. "Citrine",
  5993. "thunderstrike23",
  5994. {
  5995. front: {
  5996. height: math.unit(3, "feet"),
  5997. weight: math.unit(28, "lbs"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/citrine/front.svg"
  6001. }
  6002. }
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(3, "feet"),
  6008. default: true
  6009. }
  6010. ]
  6011. )
  6012. };
  6013. characterMakers["Aura Starwind"] = () => {
  6014. return makeCharacter(
  6015. "Aura Starwind",
  6016. "StrikeVixen",
  6017. {
  6018. front: {
  6019. height: math.unit(14, "feet"),
  6020. weight: math.unit(1450, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/aura-starwind/front.svg",
  6024. extra: 1455/1335
  6025. }
  6026. },
  6027. side: {
  6028. height: math.unit(14, "feet"),
  6029. weight: math.unit(1450, "kg"),
  6030. name: "Side",
  6031. image: {
  6032. source: "./media/characters/aura-starwind/side.svg",
  6033. extra: 1654/1497
  6034. }
  6035. },
  6036. taur: {
  6037. height: math.unit(18, "feet"),
  6038. weight: math.unit(5500, "kg"),
  6039. name: "Taur",
  6040. image: {
  6041. source: "./media/characters/aura-starwind/taur.svg",
  6042. extra: 1760/1650
  6043. }
  6044. },
  6045. feral: {
  6046. height: math.unit(46, "feet"),
  6047. weight: math.unit(25000, "kg"),
  6048. name: "Feral",
  6049. image: {
  6050. source: "./media/characters/aura-starwind/feral.svg"
  6051. }
  6052. },
  6053. },
  6054. [
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(14, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(50, "meters")
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(5000, "meters")
  6067. },
  6068. {
  6069. name: "Gigamacro",
  6070. height: math.unit(100000, "kilometers")
  6071. },
  6072. ]
  6073. )
  6074. };
  6075. characterMakers["Rivet"] = () => {
  6076. return makeCharacter(
  6077. "Rivet",
  6078. "Vonadi",
  6079. {
  6080. front: {
  6081. height: math.unit(2 + 7/12, "feet"),
  6082. weight: math.unit(32, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/rivet/front.svg",
  6086. extra: 1716/1658 ,
  6087. bottom: 0.03
  6088. }
  6089. },
  6090. foot: {
  6091. height: math.unit(0.551, "feet"),
  6092. name: "Rivet's Foot",
  6093. image: {
  6094. source: "./media/characters/rivet/foot.svg"
  6095. },
  6096. rename: true
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Micro",
  6102. height: math.unit(1.5, "inches"),
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(2 + 7/12, "feet"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(85, "feet")
  6112. },
  6113. {
  6114. name: "Megamacro",
  6115. height: math.unit(2.2, "km")
  6116. }
  6117. ]
  6118. )
  6119. };
  6120. characterMakers["Coffee"] = () => {
  6121. return makeCharacter(
  6122. "Coffee",
  6123. "CoffeeDoggo",
  6124. {
  6125. front: {
  6126. height: math.unit(5 + 9/12, "feet"),
  6127. weight: math.unit(150, "lbs"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/coffee/front.svg",
  6131. extra: 3666/3032 ,
  6132. bottom: 0.04
  6133. }
  6134. },
  6135. foot: {
  6136. height: math.unit(1.29, "feet"),
  6137. name: "Foot",
  6138. image: {
  6139. source: "./media/characters/coffee/foot.svg"
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Micro",
  6146. height: math.unit(2, "inches"),
  6147. },
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(5 + 9/12, "feet"),
  6151. default: true
  6152. },
  6153. {
  6154. name: "Macro",
  6155. height: math.unit(800, "feet")
  6156. },
  6157. {
  6158. name: "Megamacro",
  6159. height: math.unit(25, "miles")
  6160. }
  6161. ]
  6162. )
  6163. };
  6164. characterMakers["Chari-Gal"] = () => {
  6165. return makeCharacter(
  6166. "Chari-Gal",
  6167. "Knoem",
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(200, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/chari-gal/front.svg",
  6175. extra: 1568/1385 ,
  6176. bottom: 0.047
  6177. }
  6178. },
  6179. gigantamax: {
  6180. height: math.unit(6*16, "feet"),
  6181. weight: math.unit(200*16*16*16, "lbs"),
  6182. name: "Gigantamax",
  6183. image: {
  6184. source: "./media/characters/chari-gal/gigantamax.svg",
  6185. extra: 1124/888 ,
  6186. bottom: 0.03
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(5 + 7/12, "feet")
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(200, "feet"),
  6198. default: true
  6199. }
  6200. ]
  6201. )
  6202. };
  6203. characterMakers["Nova"] = () => {
  6204. return makeCharacter(
  6205. "Nova",
  6206. "CoffeeDoggo",
  6207. {
  6208. front: {
  6209. height: math.unit(6, "feet"),
  6210. weight: math.unit(150, "lbs"),
  6211. name: "Front",
  6212. image: {
  6213. source: "./media/characters/nova/front.svg",
  6214. extra: 5000/4722 ,
  6215. bottom: 0.02
  6216. }
  6217. }
  6218. },
  6219. [
  6220. {
  6221. name: "Micro-",
  6222. height: math.unit(0.8, "inches")
  6223. },
  6224. {
  6225. name: "Micro",
  6226. height: math.unit(2, "inches"),
  6227. default: true
  6228. },
  6229. ]
  6230. )
  6231. };
  6232. characterMakers["Argent"] = () => {
  6233. return makeCharacter(
  6234. "Argent",
  6235. "ArgentVZ",
  6236. {
  6237. front: {
  6238. height: math.unit(3 + 1/12, "feet"),
  6239. weight: math.unit(21.7, "lbs"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/argent/front.svg",
  6243. extra: 1565/1416 ,
  6244. bottom: 0.01
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(2, "inches")
  6252. },
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(3 + 1/12, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(120, "feet")
  6261. },
  6262. ]
  6263. )
  6264. };
  6265. characterMakers["Mira al-Cul"] = () => {
  6266. return makeCharacter(
  6267. "Mira al-Cul",
  6268. "Mariokartsonicriders",
  6269. {
  6270. lamp: {
  6271. height: math.unit(7 * 1559 / 989, "feet"),
  6272. name: "Magic Lamp",
  6273. image: {
  6274. source: "./media/characters/mira-al-cul/lamp.svg",
  6275. extra: 1617/1559
  6276. }
  6277. },
  6278. front: {
  6279. height: math.unit(7, "feet"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/mira-al-cul/front.svg",
  6283. extra: 1044/990
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Heavily Restricted",
  6290. height: math.unit(7 * 1559 / 989, "feet")
  6291. },
  6292. {
  6293. name: "Freshly Freed",
  6294. height: math.unit(50 * 1559 / 989, "feet")
  6295. },
  6296. {
  6297. name: "World Encompassing",
  6298. height: math.unit(10000 * 1559 / 989, "miles")
  6299. },
  6300. {
  6301. name: "Galactic",
  6302. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6303. },
  6304. {
  6305. name: "Palmed Universe",
  6306. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6307. default: true
  6308. },
  6309. {
  6310. name: "Multiversal Matriarch",
  6311. height: math.unit(8.87e10, "yottameters")
  6312. },
  6313. {
  6314. name: "Void Mother",
  6315. height: math.unit(3.14e110, "yottaparsecs")
  6316. },
  6317. ]
  6318. )
  6319. };
  6320. characterMakers["Kuro-shi Uchū"] = () => {
  6321. return makeCharacter(
  6322. "Kuro-shi Uchū",
  6323. "Dragon Shark",
  6324. {
  6325. front: {
  6326. height: math.unit(17 + 1/12, "feet"),
  6327. weight: math.unit(476.2*5, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/kuro-shi-uchū/front.svg",
  6331. extra: 2329/1835 ,
  6332. bottom: 0.02
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Micro",
  6339. height: math.unit(2, "inches")
  6340. },
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(12, "meters")
  6344. },
  6345. {
  6346. name: "Planetary",
  6347. height: math.unit(0.00929, "AU"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Universal",
  6352. height: math.unit(20, "gigaparsecs")
  6353. },
  6354. ]
  6355. )
  6356. };
  6357. characterMakers["Katherine"] = () => {
  6358. return makeCharacter(
  6359. "Katherine",
  6360. "chrisrules123",
  6361. {
  6362. front: {
  6363. height: math.unit(5 + 2/12, "feet"),
  6364. weight: math.unit(120, "lbs"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/katherine/front.svg",
  6368. extra: 2075/1969
  6369. }
  6370. },
  6371. dress: {
  6372. height: math.unit(5 + 2/12, "feet"),
  6373. weight: math.unit(120, "lbs"),
  6374. name: "Dress",
  6375. image: {
  6376. source: "./media/characters/katherine/dress.svg",
  6377. extra: 2258/2064
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Micro",
  6384. height: math.unit(1, "inches"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(5 + 2/12, "feet")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(100, "meters")
  6394. },
  6395. {
  6396. name: "Megamacro",
  6397. height: math.unit(80, "miles")
  6398. },
  6399. ]
  6400. )
  6401. };
  6402. characterMakers["Yevis"] = () => {
  6403. return makeCharacter(
  6404. "Yevis",
  6405. "Mariokartsonicriders",
  6406. {
  6407. front: {
  6408. height: math.unit(7 + 8/12, "feet"),
  6409. weight: math.unit(250, "lbs"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/yevis/front.svg",
  6413. extra: 1938/1755
  6414. }
  6415. }
  6416. },
  6417. [
  6418. {
  6419. name: "Mortal",
  6420. height: math.unit(7 + 8/12, "feet")
  6421. },
  6422. {
  6423. name: "Battle",
  6424. height: math.unit(25 + 11/12, "feet")
  6425. },
  6426. {
  6427. name: "Wrath",
  6428. height: math.unit(1654 + 11/12, "feet")
  6429. },
  6430. {
  6431. name: "Planet Destroyer",
  6432. height: math.unit(12000, "miles")
  6433. },
  6434. {
  6435. name: "Galaxy Conqueror",
  6436. height: math.unit(1.45, "zettameters"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Universal War",
  6441. height: math.unit(184, "gigaparsecs")
  6442. },
  6443. {
  6444. name: "Eternity War",
  6445. height: math.unit(1.98e55, "yottaparsecs")
  6446. },
  6447. ]
  6448. )
  6449. };
  6450. characterMakers["Xavier"] = () => {
  6451. return makeCharacter(
  6452. "Xavier",
  6453. "zmaster587",
  6454. {
  6455. front: {
  6456. height: math.unit(5 + 8/12, "feet"),
  6457. weight: math.unit(63, "kg"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/xavier/front.svg",
  6461. extra: 944/883
  6462. }
  6463. },
  6464. frontStretch: {
  6465. height: math.unit(5 + 8/12, "feet"),
  6466. weight: math.unit(63, "kg"),
  6467. name: "Stretching",
  6468. image: {
  6469. source: "./media/characters/xavier/front-stretch.svg",
  6470. extra: 962/820
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(5 + 8/12, "feet")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(100, "meters"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "McLargeHuge",
  6486. height: math.unit(10, "miles")
  6487. },
  6488. ]
  6489. )
  6490. };
  6491. characterMakers["Joshii"] = () => {
  6492. return makeCharacter(
  6493. "Joshii",
  6494. "DarkieTehJester",
  6495. {
  6496. front: {
  6497. height: math.unit(5 + 5/12, "feet"),
  6498. weight: math.unit(150, "lb"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/joshii/front.svg"
  6502. }
  6503. },
  6504. foot: {
  6505. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6506. name: "Foot",
  6507. image: {
  6508. source: "./media/characters/joshii/foot.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Micro",
  6515. height: math.unit(2, "inches")
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(5 + 5/12, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Macro",
  6524. height: math.unit(785, "feet")
  6525. },
  6526. {
  6527. name: "Megamacro",
  6528. height: math.unit(24.5, "miles")
  6529. },
  6530. ]
  6531. )
  6532. };
  6533. characterMakers["Goddess Elizabeth"] = () => {
  6534. return makeCharacter(
  6535. "Goddess Elizabeth",
  6536. "DarkieTehJester",
  6537. {
  6538. front: {
  6539. height: math.unit(6, "feet"),
  6540. weight: math.unit(150, "lb"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/goddess-elizabeth/front.svg",
  6544. extra: 1800/1525,
  6545. bottom: 0.005
  6546. }
  6547. },
  6548. foot: {
  6549. height: math.unit(6 * 0.25436 * 1800/1525 / 2, "feet"),
  6550. name: "Foot",
  6551. image: {
  6552. source: "./media/characters/goddess-elizabeth/foot.svg"
  6553. }
  6554. },
  6555. },
  6556. [
  6557. {
  6558. name: "Micro",
  6559. height: math.unit(12, "feet")
  6560. },
  6561. {
  6562. name: "Normal",
  6563. height: math.unit(80, "miles"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Macro",
  6568. height: math.unit(15000, "parsecs")
  6569. },
  6570. ]
  6571. )
  6572. };
  6573. characterMakers["Kara"] = () => {
  6574. return makeCharacter(
  6575. "Kara",
  6576. "Vonadi",
  6577. {
  6578. front: {
  6579. height: math.unit(5 + 9/12, "feet"),
  6580. weight: math.unit(144, "lb"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/kara/front.svg"
  6584. }
  6585. },
  6586. feet: {
  6587. height: math.unit(6/6.765, "feet"),
  6588. name: "Kara's Feet",
  6589. rename: true,
  6590. image: {
  6591. source: "./media/characters/kara/feet.svg"
  6592. }
  6593. },
  6594. },
  6595. [
  6596. {
  6597. name: "Normal",
  6598. height: math.unit(5 + 9/12, "feet")
  6599. },
  6600. {
  6601. name: "Macro",
  6602. height: math.unit(174, "feet"),
  6603. default: true
  6604. },
  6605. ]
  6606. )
  6607. };
  6608. characterMakers["Tyrone"] = () => {
  6609. return makeCharacter(
  6610. "Tyrone",
  6611. "nanakisan",
  6612. {
  6613. front: {
  6614. height: math.unit(18, "feet"),
  6615. weight: math.unit(4050, "lb"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/tyrone/front.svg",
  6619. extra: 2520/2402 ,
  6620. bottom: 0.025
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(18, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(300, "feet")
  6633. },
  6634. ]
  6635. )
  6636. };
  6637. characterMakers["Danny"] = () => {
  6638. return makeCharacter(
  6639. "Danny",
  6640. "danny_gryphon",
  6641. {
  6642. front: {
  6643. height: math.unit(7 + 8/12, "feet"),
  6644. weight: math.unit(120, "lb"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/danny/front.svg",
  6648. extra: 1490/1350
  6649. }
  6650. },
  6651. back: {
  6652. height: math.unit(7 + 8/12, "feet"),
  6653. weight: math.unit(120, "lb"),
  6654. name: "Back",
  6655. image: {
  6656. source: "./media/characters/danny/back.svg",
  6657. extra: 1490/1350
  6658. }
  6659. },
  6660. },
  6661. [
  6662. {
  6663. name: "Normal",
  6664. height: math.unit(7 + 8/12, "feet"),
  6665. default: true
  6666. },
  6667. ]
  6668. )
  6669. };
  6670. characterMakers["Mallow"] = () => {
  6671. return makeCharacter(
  6672. "Mallow",
  6673. "Mallowchu",
  6674. {
  6675. front: {
  6676. height: math.unit(3.5, "inches"),
  6677. weight: math.unit(19, "grams"),
  6678. name: "Front",
  6679. image: {
  6680. source: "./media/characters/mallow/front.svg",
  6681. extra: 471/431
  6682. }
  6683. },
  6684. back: {
  6685. height: math.unit(3.5, "inches"),
  6686. weight: math.unit(19, "grams"),
  6687. name: "Back",
  6688. image: {
  6689. source: "./media/characters/mallow/back.svg",
  6690. extra: 471/431
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(3.5, "inches"),
  6698. default: true
  6699. },
  6700. ]
  6701. )
  6702. };
  6703. characterMakers["Starry Aqua"] = () => {
  6704. return makeCharacter(
  6705. "Starry Aqua",
  6706. "StarryAqua",
  6707. {
  6708. front: {
  6709. height: math.unit(9, "feet"),
  6710. weight: math.unit(230, "kg"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/starry-aqua/front.svg"
  6714. }
  6715. },
  6716. back: {
  6717. height: math.unit(9, "feet"),
  6718. weight: math.unit(230, "kg"),
  6719. name: "Back",
  6720. image: {
  6721. source: "./media/characters/starry-aqua/back.svg"
  6722. }
  6723. },
  6724. hand: {
  6725. height: math.unit(9 * 0.1168, "feet"),
  6726. name: "Hand",
  6727. image: {
  6728. source: "./media/characters/starry-aqua/hand.svg"
  6729. }
  6730. },
  6731. foot: {
  6732. height: math.unit(9 * 0.18, "feet"),
  6733. name: "Foot",
  6734. image: {
  6735. source: "./media/characters/starry-aqua/foot.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Micro",
  6742. height: math.unit(3, "inches")
  6743. },
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(9, "feet")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(300, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Megamacro",
  6755. height: math.unit(3200, "feet")
  6756. }
  6757. ]
  6758. )
  6759. };
  6760. characterMakers["Luka"] = () => {
  6761. return makeCharacter(
  6762. "Luka",
  6763. "UmbraHusky",
  6764. {
  6765. front: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(230, "lb"),
  6768. name: "Front",
  6769. image: {
  6770. source: "./media/characters/luka/front.svg",
  6771. extra: 1,
  6772. bottom: 0.025
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(12 + 8/12, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Minimacro",
  6784. height: math.unit(20, "feet")
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(250, "feet")
  6789. },
  6790. {
  6791. name: "Megamacro",
  6792. height: math.unit(5, "miles")
  6793. },
  6794. {
  6795. name: "Gigamacro",
  6796. height: math.unit(8000, "miles")
  6797. },
  6798. ]
  6799. )
  6800. };
  6801. characterMakers["Natalie Nightring"] = () => {
  6802. return makeCharacter(
  6803. "Natalie Nightring",
  6804. "NatEdgecomb",
  6805. {
  6806. front: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(150, "lb"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/natalie-nightring/front.svg",
  6812. extra: 1,
  6813. bottom: 0.06
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Uh Oh",
  6820. height: math.unit(0.1, "mm")
  6821. },
  6822. {
  6823. name: "Small",
  6824. height: math.unit(3, "inches")
  6825. },
  6826. {
  6827. name: "Human Scale",
  6828. height: math.unit(6, "feet")
  6829. },
  6830. {
  6831. name: "Librarian",
  6832. height: math.unit(50, "feet"),
  6833. default: true
  6834. },
  6835. {
  6836. name: "Immense",
  6837. height: math.unit(200, "miles")
  6838. },
  6839. ]
  6840. )
  6841. };
  6842. characterMakers["Danni Rosie"] = () => {
  6843. return makeCharacter(
  6844. "Danni Rosie",
  6845. "colwag",
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(180, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/danni-rosie/front.svg",
  6853. extra: 1260/1128 ,
  6854. bottom: 0.022
  6855. }
  6856. },
  6857. },
  6858. [
  6859. {
  6860. name: "Micro",
  6861. height: math.unit(2, "inches"),
  6862. default: true
  6863. },
  6864. ]
  6865. )
  6866. };
  6867. characterMakers["Samantha Kruse"] = () => {
  6868. return makeCharacter(
  6869. "Samantha Kruse",
  6870. "colwag",
  6871. {
  6872. front: {
  6873. height: math.unit(5 + 9/12, "feet"),
  6874. weight: math.unit(220, "lb"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/samantha-kruse/front.svg",
  6878. extra: (985 / 935) ,
  6879. bottom: 0.03
  6880. }
  6881. },
  6882. frontUndressed: {
  6883. height: math.unit(5 + 9/12, "feet"),
  6884. weight: math.unit(220, "lb"),
  6885. name: "Front (Undressed)",
  6886. image: {
  6887. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6888. extra: (973 / 923) ,
  6889. bottom: 0.025
  6890. }
  6891. },
  6892. fat: {
  6893. height: math.unit(5 + 9/12, "feet"),
  6894. weight: math.unit(900, "lb"),
  6895. name: "Front (Fat)",
  6896. image: {
  6897. source: "./media/characters/samantha-kruse/fat.svg",
  6898. extra: 2688/2561
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Normal",
  6905. height: math.unit(5 + 9/12, "feet"),
  6906. default: true
  6907. }
  6908. ]
  6909. )
  6910. };
  6911. characterMakers["Amelia Rosie"] = () => {
  6912. return makeCharacter(
  6913. "Amelia Rosie",
  6914. "colwag",
  6915. {
  6916. back: {
  6917. height: math.unit(5 + 4/12, "feet"),
  6918. weight: math.unit(4963, "lb"),
  6919. name: "Back",
  6920. image: {
  6921. source: "./media/characters/amelia-rosie/back.svg",
  6922. extra: 1113/963 ,
  6923. bottom: 0.01
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Level 0",
  6930. height: math.unit(5 + 4/12, "feet")
  6931. },
  6932. {
  6933. name: "Level 1",
  6934. height: math.unit(164597, "feet"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Level 2",
  6939. height: math.unit(956243, "miles")
  6940. },
  6941. {
  6942. name: "Level 3",
  6943. height: math.unit(29421709423, "miles")
  6944. },
  6945. {
  6946. name: "Level 4",
  6947. height: math.unit(154, "lightyears")
  6948. },
  6949. {
  6950. name: "Level 5",
  6951. height: math.unit(4738272, "lightyears")
  6952. },
  6953. {
  6954. name: "Level 6",
  6955. height: math.unit(145787152896, "lightyears")
  6956. },
  6957. ]
  6958. )
  6959. };
  6960. characterMakers["Rook Kitara"] = () => {
  6961. return makeCharacter(
  6962. "Rook Kitara",
  6963. "TailsHigh",
  6964. {
  6965. front: {
  6966. height: math.unit(5 + 11/12, "feet"),
  6967. weight: math.unit(65, "kg"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/rook-kitara/front.svg",
  6971. extra: 1347/1274 ,
  6972. bottom: 0.005
  6973. }
  6974. },
  6975. },
  6976. [
  6977. {
  6978. name: "Totally Unfair",
  6979. height: math.unit(1.8, "mm")
  6980. },
  6981. {
  6982. name: "Lap Rookie",
  6983. height: math.unit(1.4, "feet")
  6984. },
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(5 + 11/12, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "How Did This Happen",
  6992. height: math.unit(80, "miles")
  6993. }
  6994. ]
  6995. )
  6996. };
  6997. characterMakers["Pisces"] = () => {
  6998. return makeCharacter(
  6999. "Pisces",
  7000. "Pisces_Kelp",
  7001. {
  7002. front: {
  7003. height: math.unit(7, "feet"),
  7004. weight: math.unit(300, "lb"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/pisces/front.svg",
  7008. extra: 2255/2115 ,
  7009. bottom: 0.03
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(7, "feet"),
  7014. weight: math.unit(300, "lb"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/pisces/back.svg",
  7018. extra: 2146/2055 ,
  7019. bottom: 0.04
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(7, "feet"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Swimming Pool",
  7031. height: math.unit(12.2, "meters")
  7032. },
  7033. {
  7034. name: "Olympic Swimming Pool",
  7035. height: math.unit(56.3, "meters")
  7036. },
  7037. {
  7038. name: "Lake Superior",
  7039. height: math.unit(93900, "meters")
  7040. },
  7041. {
  7042. name: "Mediterranean Sea",
  7043. height: math.unit(644457, "meters")
  7044. },
  7045. {
  7046. name: "World's Oceans",
  7047. height: math.unit(4567491, "meters")
  7048. },
  7049. ]
  7050. )
  7051. };
  7052. characterMakers["Zelas"] = () => {
  7053. return makeCharacter(
  7054. "Zelas",
  7055. "Cirez",
  7056. {
  7057. front: {
  7058. height: math.unit(2.3, "meters"),
  7059. weight: math.unit(120, "kg"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/zelas/front.svg"
  7063. }
  7064. },
  7065. side: {
  7066. height: math.unit(2.3, "meters"),
  7067. weight: math.unit(120, "kg"),
  7068. name: "Side",
  7069. image: {
  7070. source: "./media/characters/zelas/side.svg"
  7071. }
  7072. },
  7073. back: {
  7074. height: math.unit(2.3, "meters"),
  7075. weight: math.unit(120, "kg"),
  7076. name: "Back",
  7077. image: {
  7078. source: "./media/characters/zelas/back.svg"
  7079. }
  7080. },
  7081. foot: {
  7082. height: math.unit(1.116, "feet"),
  7083. name: "Foot",
  7084. image: {
  7085. source: "./media/characters/zelas/foot.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(2.3, "meters")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(30, "meters"),
  7097. default: true
  7098. },
  7099. ]
  7100. )
  7101. };
  7102. characterMakers["Talbot"] = () => {
  7103. return makeCharacter(
  7104. "Talbot",
  7105. "Talbot",
  7106. {
  7107. front: {
  7108. height: math.unit(1, "inch"),
  7109. weight: math.unit(0.21, "grams"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/talbot/front.svg",
  7113. extra: 594/544
  7114. }
  7115. },
  7116. },
  7117. [
  7118. {
  7119. name: "Micro",
  7120. height: math.unit(1, "inch"),
  7121. default: true
  7122. },
  7123. ]
  7124. )
  7125. };
  7126. characterMakers["Fliss"] = () => {
  7127. return makeCharacter(
  7128. "Fliss",
  7129. "Fliss",
  7130. {
  7131. front: {
  7132. height: math.unit(3 + 3/12, "feet"),
  7133. weight: math.unit(51.8, "lb"),
  7134. name: "Front",
  7135. image: {
  7136. source: "./media/characters/fliss/front.svg",
  7137. extra: 840/640
  7138. }
  7139. },
  7140. },
  7141. [
  7142. {
  7143. name: "Teeny Tiny",
  7144. height: math.unit(1, "mm")
  7145. },
  7146. {
  7147. name: "Small",
  7148. height: math.unit(1, "inch"),
  7149. default: true
  7150. },
  7151. {
  7152. name: "Standard Sylveon",
  7153. height: math.unit(3 + 3/12, "feet")
  7154. },
  7155. {
  7156. name: "Large Nuisance",
  7157. height: math.unit(33, "feet")
  7158. },
  7159. {
  7160. name: "City Filler",
  7161. height: math.unit(3000, "feet")
  7162. },
  7163. {
  7164. name: "New Horizon",
  7165. height: math.unit(6000, "miles")
  7166. },
  7167. ]
  7168. )
  7169. };
  7170. characterMakers["Fleta"] = () => {
  7171. return makeCharacter(
  7172. "Fleta",
  7173. "TheFleta",
  7174. {
  7175. front: {
  7176. height: math.unit(5, "cm"),
  7177. weight: math.unit(1.94, "g"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/fleta/front.svg",
  7181. extra: 835/803
  7182. }
  7183. },
  7184. back: {
  7185. height: math.unit(5, "cm"),
  7186. weight: math.unit(1.94, "g"),
  7187. name: "Back",
  7188. image: {
  7189. source: "./media/characters/fleta/back.svg",
  7190. extra: 835/803
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Micro",
  7197. height: math.unit(5, "cm"),
  7198. default: true
  7199. },
  7200. ]
  7201. )
  7202. };
  7203. characterMakers["Dominic"] = () => {
  7204. return makeCharacter(
  7205. "Dominic",
  7206. "HypoTheDerg",
  7207. {
  7208. front: {
  7209. height: math.unit(6, "feet"),
  7210. weight: math.unit(225, "lb"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/dominic/front.svg",
  7214. extra: 1770/1620 ,
  7215. bottom: 0.025
  7216. }
  7217. },
  7218. back: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(225, "lb"),
  7221. name: "Back",
  7222. image: {
  7223. source: "./media/characters/dominic/back.svg",
  7224. extra: 1745/1620 ,
  7225. bottom: 0.065
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Nano",
  7232. height: math.unit(0.1, "mm")
  7233. },
  7234. {
  7235. name: "Micro-",
  7236. height: math.unit(1, "mm")
  7237. },
  7238. {
  7239. name: "Micro",
  7240. height: math.unit(4, "inches")
  7241. },
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(6 + 4/12, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Macro",
  7249. height: math.unit(115, "feet")
  7250. },
  7251. {
  7252. name: "Macro+",
  7253. height: math.unit(955, "feet")
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(8990, "feet")
  7258. },
  7259. {
  7260. name: "Gigmacro",
  7261. height: math.unit(9310, "miles")
  7262. },
  7263. {
  7264. name: "Teramacro",
  7265. height: math.unit(1567005010, "miles")
  7266. },
  7267. {
  7268. name: "Examacro",
  7269. height: math.unit(1425, "parsecs")
  7270. },
  7271. ]
  7272. )
  7273. };
  7274. characterMakers["Major Colonel"] = () => {
  7275. return makeCharacter(
  7276. "Major Colonel",
  7277. "Major Colonel",
  7278. {
  7279. front: {
  7280. height: math.unit(400, "feet"),
  7281. weight: math.unit(44444444, "lb"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/major-colonel/front.svg"
  7285. }
  7286. },
  7287. back: {
  7288. height: math.unit(400, "feet"),
  7289. weight: math.unit(44444444, "lb"),
  7290. name: "Back",
  7291. image: {
  7292. source: "./media/characters/major-colonel/back.svg"
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Macro",
  7299. height: math.unit(400, "feet"),
  7300. default: true
  7301. },
  7302. ]
  7303. )
  7304. };
  7305. characterMakers["Axel Lycan"] = () => {
  7306. return makeCharacter(
  7307. "Axel Lycan",
  7308. "AxelLycan",
  7309. {
  7310. front: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(120, "lb"),
  7313. name: "Front",
  7314. image: {
  7315. source: "./media/characters/axel-lycan/front.svg",
  7316. extra: 1,
  7317. bottom: 0.08
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(1, "km"),
  7325. default: true
  7326. },
  7327. ]
  7328. )
  7329. };
  7330. characterMakers["Vanrel (Hyena)"] = () => {
  7331. return makeCharacter(
  7332. "Vanrel (Hyena)",
  7333. "Vanrel",
  7334. {
  7335. front: {
  7336. height: math.unit(5 + 9/12, "feet"),
  7337. weight: math.unit(175, "lb"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/vanrel-hyena/front.svg",
  7341. extra: 1086/1010 ,
  7342. bottom: 0.04
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(5 + 9/12, "feet"),
  7350. default: true
  7351. },
  7352. ]
  7353. )
  7354. };
  7355. characterMakers["Abbott Absol"] = () => {
  7356. return makeCharacter(
  7357. "Abbott Absol",
  7358. "Abbott Absol",
  7359. {
  7360. front: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(103, "lb"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/abbott-absol/front.svg",
  7366. extra: 2010/1842
  7367. }
  7368. },
  7369. },
  7370. [
  7371. {
  7372. name: "Megamicro",
  7373. height: math.unit(0.1, "mm")
  7374. },
  7375. {
  7376. name: "Micro",
  7377. height: math.unit(1, "inch")
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6, "feet"),
  7382. default: true
  7383. },
  7384. ]
  7385. )
  7386. };
  7387. characterMakers["Hector"] = () => {
  7388. return makeCharacter(
  7389. "Hector",
  7390. "LibragonSlvr",
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(264, "lb"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/hector/front.svg",
  7398. extra: 2280/2130 ,
  7399. bottom: 0.07
  7400. }
  7401. },
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(12.25, "foot"),
  7407. default: true
  7408. },
  7409. {
  7410. name: "Macro",
  7411. height: math.unit(160, "feet")
  7412. },
  7413. ]
  7414. )
  7415. };
  7416. characterMakers["Sal"] = () => {
  7417. return makeCharacter(
  7418. "Sal",
  7419. "Bigdur",
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(150, "lb"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/sal/front.svg",
  7427. extra: 1846/1699 ,
  7428. bottom: 0.04
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Megamacro",
  7435. height: math.unit(10, "miles"),
  7436. default: true
  7437. },
  7438. ]
  7439. )
  7440. };
  7441. characterMakers["Ranger"] = () => {
  7442. return makeCharacter(
  7443. "Ranger",
  7444. "Ranger",
  7445. {
  7446. front: {
  7447. height: math.unit(3, "meters"),
  7448. weight: math.unit(450, "kg"),
  7449. name: "front",
  7450. image: {
  7451. source: "./media/characters/ranger/front.svg",
  7452. extra: 2401/2243 ,
  7453. bottom: 0.05
  7454. }
  7455. },
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(3, "meters"),
  7461. default: true
  7462. },
  7463. ]
  7464. )
  7465. };
  7466. characterMakers["Theresa"] = () => {
  7467. return makeCharacter(
  7468. "Theresa",
  7469. "Ranger",
  7470. {
  7471. front: {
  7472. height: math.unit(14, "feet"),
  7473. weight: math.unit(800, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/theresa/front.svg",
  7477. extra: 3575/3346 ,
  7478. bottom: 0.03
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(14, "feet"),
  7486. default: true
  7487. },
  7488. ]
  7489. )
  7490. };
  7491. characterMakers["Ine"] = () => {
  7492. return makeCharacter(
  7493. "Ine",
  7494. "Ranger",
  7495. {
  7496. front: {
  7497. height: math.unit(6, "feet"),
  7498. weight: math.unit(3, "kg"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/ine/front.svg",
  7502. extra: 678/539 ,
  7503. bottom: 0.023
  7504. }
  7505. },
  7506. },
  7507. [
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(2.265, "feet"),
  7511. default: true
  7512. },
  7513. ]
  7514. )
  7515. };
  7516. characterMakers["Vial"] = () => {
  7517. return makeCharacter(
  7518. "Vial",
  7519. "Ranger",
  7520. {
  7521. front: {
  7522. height: math.unit(5, "feet"),
  7523. weight: math.unit(30, "kg"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/vial/front.svg",
  7527. extra: 1365/1277 ,
  7528. bottom: 0.04
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(5, "feet"),
  7536. default: true
  7537. },
  7538. ]
  7539. )
  7540. };
  7541. characterMakers["Rovoska"] = () => {
  7542. return makeCharacter(
  7543. "Rovoska",
  7544. "Rovoska",
  7545. {
  7546. side: {
  7547. height: math.unit(3.4, "meters"),
  7548. weight: math.unit(1000, "lb"),
  7549. name: "Side",
  7550. image: {
  7551. source: "./media/characters/rovoska/side.svg",
  7552. extra: 4403/1515
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(3.4, "meters"),
  7560. default: true
  7561. },
  7562. ]
  7563. )
  7564. };
  7565. characterMakers["Gunner Rotthbauer"] = () => {
  7566. return makeCharacter(
  7567. "Gunner Rotthbauer",
  7568. "GunnerRott",
  7569. {
  7570. front: {
  7571. height: math.unit(8, "feet"),
  7572. weight: math.unit(315, "lb"),
  7573. name: "Front",
  7574. image: {
  7575. source: "./media/characters/gunner-rotthbauer/front.svg"
  7576. }
  7577. },
  7578. back: {
  7579. height: math.unit(8, "feet"),
  7580. weight: math.unit(315, "lb"),
  7581. name: "Back",
  7582. image: {
  7583. source: "./media/characters/gunner-rotthbauer/back.svg"
  7584. }
  7585. },
  7586. },
  7587. [
  7588. {
  7589. name: "Micro",
  7590. height: math.unit(3.5, "inches")
  7591. },
  7592. {
  7593. name: "Normal",
  7594. height: math.unit(8, "feet"),
  7595. default: true
  7596. },
  7597. {
  7598. name: "Macro",
  7599. height: math.unit(250, "feet")
  7600. },
  7601. {
  7602. name: "Megamacro",
  7603. height: math.unit(1, "AU")
  7604. },
  7605. ]
  7606. )
  7607. };
  7608. characterMakers["Allatia"] = () => {
  7609. return makeCharacter(
  7610. "Allatia",
  7611. "ilikefurrystoo",
  7612. {
  7613. front: {
  7614. height: math.unit(5 + 5/12, "feet"),
  7615. weight: math.unit(140, "lb"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/allatia/front.svg",
  7619. extra: 1227/1180 ,
  7620. bottom: 0.027
  7621. }
  7622. },
  7623. },
  7624. [
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(5 + 5/12, "feet")
  7628. },
  7629. {
  7630. name: "Macro",
  7631. height: math.unit(250, "feet"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Megamacro",
  7636. height: math.unit(8, "miles")
  7637. }
  7638. ]
  7639. )
  7640. };
  7641. characterMakers["Tene"] = () => {
  7642. return makeCharacter(
  7643. "Tene",
  7644. "TenebrisDrox",
  7645. {
  7646. front: {
  7647. height: math.unit(6, "feet"),
  7648. weight: math.unit(120, "lb"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/tene/front.svg",
  7652. extra: 1728/1578 ,
  7653. bottom: 0.022
  7654. }
  7655. },
  7656. stomping: {
  7657. height: math.unit(2.025, "meters"),
  7658. weight: math.unit(120, "lb"),
  7659. name: "Stomping",
  7660. image: {
  7661. source: "./media/characters/tene/stomping.svg",
  7662. extra: 938/873 ,
  7663. bottom: 0.01
  7664. }
  7665. },
  7666. sitting: {
  7667. height: math.unit(1, "meter"),
  7668. weight: math.unit(120, "lb"),
  7669. name: "Sitting",
  7670. image: {
  7671. source: "./media/characters/tene/sitting.svg",
  7672. extra: 437/415 ,
  7673. bottom: 0.1
  7674. }
  7675. },
  7676. feral: {
  7677. height: math.unit(3.9, "feet"),
  7678. weight: math.unit(250, "lb"),
  7679. name: "Feral",
  7680. image: {
  7681. source: "./media/characters/tene/feral.svg",
  7682. extra: 717/458 ,
  7683. bottom: 0.179
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(6, "feet")
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(300, "feet"),
  7695. default: true
  7696. },
  7697. {
  7698. name: "Megamacro",
  7699. height: math.unit(5, "miles")
  7700. },
  7701. ]
  7702. )
  7703. };
  7704. characterMakers["Evander"] = () => {
  7705. return makeCharacter(
  7706. "Evander",
  7707. "KlezmerGryphon",
  7708. {
  7709. side: {
  7710. height: math.unit(6, "feet"),
  7711. name: "Side",
  7712. image: {
  7713. source: "./media/characters/evander/side.svg",
  7714. extra: 877/477
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(0.83, "meters"),
  7722. default: true
  7723. },
  7724. ]
  7725. )
  7726. };
  7727. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7728. return makeCharacter(
  7729. "Ka'Tamra \"Spaz\" Ci'Karan",
  7730. "Spazman",
  7731. {
  7732. front: {
  7733. height: math.unit(12, "feet"),
  7734. weight: math.unit(1000, "lb"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7738. extra: 1762/1611
  7739. }
  7740. },
  7741. back: {
  7742. height: math.unit(12, "feet"),
  7743. weight: math.unit(1000, "lb"),
  7744. name: "Back",
  7745. image: {
  7746. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7747. extra: 1762/1611
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(12, "feet"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Kaiju",
  7759. height: math.unit(150, "feet")
  7760. },
  7761. ]
  7762. )
  7763. };
  7764. characterMakers["Zero Alurus"] = () => {
  7765. return makeCharacter(
  7766. "Zero Alurus",
  7767. "",
  7768. {
  7769. front: {
  7770. height: math.unit(6, "feet"),
  7771. weight: math.unit(150, "lb"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/zero-alurus/front.svg"
  7775. }
  7776. },
  7777. back: {
  7778. height: math.unit(6, "feet"),
  7779. weight: math.unit(150, "lb"),
  7780. name: "Back",
  7781. image: {
  7782. source: "./media/characters/zero-alurus/back.svg"
  7783. }
  7784. },
  7785. },
  7786. [
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(5 + 10/12, "feet")
  7790. },
  7791. {
  7792. name: "Macro",
  7793. height: math.unit(60, "feet"),
  7794. default: true
  7795. },
  7796. {
  7797. name: "Macro+",
  7798. height: math.unit(450, "feet")
  7799. },
  7800. ]
  7801. )
  7802. };
  7803. characterMakers["Mega Shi"] = () => {
  7804. return makeCharacter(
  7805. "Mega Shi",
  7806. "MShi8027",
  7807. {
  7808. front: {
  7809. height: math.unit(6, "feet"),
  7810. weight: math.unit(200, "lb"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/mega-shi/front.svg",
  7814. extra: 1279/1250 ,
  7815. bottom: 0.02
  7816. }
  7817. },
  7818. back: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(200, "lb"),
  7821. name: "Back",
  7822. image: {
  7823. source: "./media/characters/mega-shi/back.svg",
  7824. extra: 1279/1250 ,
  7825. bottom: 0.02
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Micro",
  7832. height: math.unit(16 + 6/12, "feet")
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(660, "feet"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Megamacro",
  7841. height: math.unit(10, "miles")
  7842. },
  7843. {
  7844. name: "Planetary Launch",
  7845. height: math.unit(500, "miles")
  7846. },
  7847. {
  7848. name: "Interstellar",
  7849. height: math.unit(1e9, "miles")
  7850. },
  7851. {
  7852. name: "Leaving the Universe",
  7853. height: math.unit(1, "gigaparsec")
  7854. },
  7855. {
  7856. name: "Travelling Universes",
  7857. height: math.unit(30e15, "parsecs")
  7858. },
  7859. ]
  7860. )
  7861. };
  7862. characterMakers["Odyssey"] = () => {
  7863. return makeCharacter(
  7864. "Odyssey",
  7865. "Freschlauhs",
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(150, "lb"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/odyssey/front.svg",
  7873. extra: 1782/1582 ,
  7874. bottom: 0.01
  7875. }
  7876. },
  7877. side: {
  7878. height: math.unit(5.6, "feet"),
  7879. weight: math.unit(140, "lb"),
  7880. name: "Side",
  7881. image: {
  7882. source: "./media/characters/odyssey/side.svg",
  7883. extra: 6462/5700
  7884. }
  7885. },
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(5 + 4/12, "feet")
  7891. },
  7892. {
  7893. name: "Macro",
  7894. height: math.unit(1, "km")
  7895. },
  7896. {
  7897. name: "Megamacro",
  7898. height: math.unit(3000, "km")
  7899. },
  7900. {
  7901. name: "Gigamacro",
  7902. height: math.unit(1, "AU"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Omniversal",
  7907. height: math.unit(100e14, "lightyears")
  7908. },
  7909. ]
  7910. )
  7911. };
  7912. characterMakers["Mekuto"] = () => {
  7913. return makeCharacter(
  7914. "Mekuto",
  7915. "Mekuto",
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(300, "lb"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/mekuto/front.svg",
  7923. extra: 921/832 ,
  7924. bottom: 0.03
  7925. }
  7926. },
  7927. hand: {
  7928. height: math.unit(6/10.24, "feet"),
  7929. name: "Hand",
  7930. image: {
  7931. source: "./media/characters/mekuto/hand.svg"
  7932. }
  7933. },
  7934. foot: {
  7935. height: math.unit(6/5.05, "feet"),
  7936. name: "Foot",
  7937. image: {
  7938. source: "./media/characters/mekuto/foot.svg"
  7939. }
  7940. },
  7941. },
  7942. [
  7943. {
  7944. name: "Minimicro",
  7945. height: math.unit(0.2, "inches")
  7946. },
  7947. {
  7948. name: "Micro",
  7949. height: math.unit(1.5, "inches")
  7950. },
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(5 + 11/12, "feet"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Minimacro",
  7958. height: math.unit(17 + 9/12, "feet")
  7959. },
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(177.5, "feet")
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(152, "miles")
  7967. },
  7968. ]
  7969. )
  7970. };
  7971. characterMakers["Dafydd Tomos"] = () => {
  7972. return makeCharacter(
  7973. "Dafydd Tomos",
  7974. "SolarfoxArt",
  7975. {
  7976. front: {
  7977. height: math.unit(6.5, "inches"),
  7978. weight: math.unit(13, "oz"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/dafydd-tomos/front.svg",
  7982. extra: 2990/2603 ,
  7983. bottom: 0.03
  7984. }
  7985. },
  7986. },
  7987. [
  7988. {
  7989. name: "Micro",
  7990. height: math.unit(6.5, "inches"),
  7991. default: true
  7992. },
  7993. ]
  7994. )
  7995. };
  7996. characterMakers["Splinter"] = () => {
  7997. return makeCharacter(
  7998. "Splinter",
  7999. "SirSplinter",
  8000. {
  8001. front: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(150, "lb"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/splinter/front.svg",
  8007. extra: 2990/2882 ,
  8008. bottom: 0.04
  8009. }
  8010. },
  8011. back: {
  8012. height: math.unit(6, "feet"),
  8013. weight: math.unit(150, "lb"),
  8014. name: "Back",
  8015. image: {
  8016. source: "./media/characters/splinter/back.svg",
  8017. extra: 2990/2882 ,
  8018. bottom: 0.04
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(6, "feet")
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(230, "meters"),
  8030. default: true
  8031. },
  8032. ]
  8033. )
  8034. };
  8035. characterMakers["SnowGabumon"] = () => {
  8036. return makeCharacter(
  8037. "SnowGabumon",
  8038. "SnowGabumon",
  8039. {
  8040. front: {
  8041. height: math.unit(4 + 10/12, "feet"),
  8042. weight: math.unit(480, "lb"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/snow-gabumon/front.svg",
  8046. extra: 1140/963 ,
  8047. bottom: 0.058
  8048. }
  8049. },
  8050. back: {
  8051. height: math.unit(4 + 10/12, "feet"),
  8052. weight: math.unit(480, "lb"),
  8053. name: "Back",
  8054. image: {
  8055. source: "./media/characters/snow-gabumon/back.svg",
  8056. extra: 1115/962 ,
  8057. bottom: 0.041
  8058. }
  8059. },
  8060. frontUndresed: {
  8061. height: math.unit(4 + 10/12, "feet"),
  8062. weight: math.unit(480, "lb"),
  8063. name: "Front (Undressed)",
  8064. image: {
  8065. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8066. extra: 1061/960 ,
  8067. bottom: 0.045
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Micro",
  8074. height: math.unit(1, "inch")
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(4 + 10/12, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(200, "feet")
  8084. },
  8085. {
  8086. name: "Megamacro",
  8087. height: math.unit(120, "miles")
  8088. },
  8089. {
  8090. name: "Gigamacro",
  8091. height: math.unit(9800, "miles")
  8092. },
  8093. ]
  8094. )
  8095. };
  8096. characterMakers["Moody"] = () => {
  8097. return makeCharacter(
  8098. "Moody",
  8099. "MoodysterDog",
  8100. {
  8101. front: {
  8102. height: math.unit(1.7, "meters"),
  8103. weight: math.unit(140, "lb"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/moody/front.svg",
  8107. extra: 3226/3007 ,
  8108. bottom: 0.087
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Micro",
  8115. height: math.unit(1, "mm")
  8116. },
  8117. {
  8118. name: "Normal",
  8119. height: math.unit(1.7, "meters"),
  8120. default: true
  8121. },
  8122. {
  8123. name: "Macro",
  8124. height: math.unit(80, "meters")
  8125. },
  8126. {
  8127. name: "Macro+",
  8128. height: math.unit(500, "meters")
  8129. },
  8130. ]
  8131. )
  8132. };
  8133. characterMakers["Zyas"] = () => {
  8134. return makeCharacter(
  8135. "Zyas",
  8136. "Delathar",
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(150, "lb"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/zyas/front.svg",
  8144. extra: 1180/1120 ,
  8145. bottom: 0.045
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(10, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(500, "feet")
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(5, "miles")
  8162. },
  8163. {
  8164. name: "Teramacro",
  8165. height: math.unit(150000, "miles")
  8166. },
  8167. ]
  8168. )
  8169. };
  8170. characterMakers["Cuon"] = () => {
  8171. return makeCharacter(
  8172. "Cuon",
  8173. "CollieCuon",
  8174. {
  8175. front: {
  8176. height: math.unit(6, "feet"),
  8177. weight: math.unit(150, "lb"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/cuon/front.svg",
  8181. extra: 1390/1320 ,
  8182. bottom: 0.008
  8183. }
  8184. },
  8185. },
  8186. [
  8187. {
  8188. name: "Micro",
  8189. height: math.unit(3, "inches")
  8190. },
  8191. {
  8192. name: "Normal",
  8193. height: math.unit(18 + 9/12, "feet"),
  8194. default: true
  8195. },
  8196. {
  8197. name: "Macro",
  8198. height: math.unit(360, "feet")
  8199. },
  8200. {
  8201. name: "Megamacro",
  8202. height: math.unit(360, "miles")
  8203. },
  8204. ]
  8205. )
  8206. };
  8207. characterMakers["Nyanuxk"] = () => {
  8208. return makeCharacter(
  8209. "Nyanuxk",
  8210. "Nyanuxk",
  8211. {
  8212. front: {
  8213. height: math.unit(2.4, "meters"),
  8214. weight: math.unit(70, "kg"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/nyanuxk/front.svg",
  8218. extra: 1172/1084 ,
  8219. bottom: 0.065
  8220. }
  8221. },
  8222. side: {
  8223. height: math.unit(2.4, "meters"),
  8224. weight: math.unit(70, "kg"),
  8225. name: "Side",
  8226. image: {
  8227. source: "./media/characters/nyanuxk/side.svg",
  8228. extra: 1190/1132 ,
  8229. bottom: 0.007
  8230. }
  8231. },
  8232. back: {
  8233. height: math.unit(2.4, "meters"),
  8234. weight: math.unit(70, "kg"),
  8235. name: "Back",
  8236. image: {
  8237. source: "./media/characters/nyanuxk/back.svg",
  8238. extra: 1200/1141 ,
  8239. bottom: 0.015
  8240. }
  8241. },
  8242. foot: {
  8243. height: math.unit(0.52, "meters"),
  8244. name: "Foot",
  8245. image: {
  8246. source: "./media/characters/nyanuxk/foot.svg"
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Micro",
  8253. height: math.unit(2, "cm")
  8254. },
  8255. {
  8256. name: "Normal",
  8257. height: math.unit(2.4, "meters"),
  8258. default: true
  8259. },
  8260. {
  8261. name: "Smaller Macro",
  8262. height: math.unit(120, "meters")
  8263. },
  8264. {
  8265. name: "Bigger Macro",
  8266. height: math.unit(1.2, "km")
  8267. },
  8268. {
  8269. name: "Megamacro",
  8270. height: math.unit(15, "kilometers")
  8271. },
  8272. {
  8273. name: "Gigamacro",
  8274. height: math.unit(2000, "km")
  8275. },
  8276. {
  8277. name: "Teramacro",
  8278. height: math.unit(500000, "km")
  8279. },
  8280. ]
  8281. )
  8282. };
  8283. characterMakers["Ailbhe"] = () => {
  8284. return makeCharacter(
  8285. "Ailbhe",
  8286. "KlezmerGryphon",
  8287. {
  8288. side: {
  8289. height: math.unit(6, "feet"),
  8290. name: "Side",
  8291. image: {
  8292. source: "./media/characters/ailbhe/side.svg",
  8293. extra: 757/464 ,
  8294. bottom: 0.041
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(1.07, "meters"),
  8302. default: true
  8303. },
  8304. ]
  8305. )
  8306. };
  8307. characterMakers["Zevulfius"] = () => {
  8308. return makeCharacter(
  8309. "Zevulfius",
  8310. "Nyanuxk",
  8311. {
  8312. front: {
  8313. height: math.unit(6, "feet"),
  8314. weight: math.unit(120, "kg"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/zevulfius/front.svg",
  8318. extra: 965/903
  8319. }
  8320. },
  8321. side: {
  8322. height: math.unit(6, "feet"),
  8323. weight: math.unit(120, "kg"),
  8324. name: "Side",
  8325. image: {
  8326. source: "./media/characters/zevulfius/side.svg",
  8327. extra: 939/900
  8328. }
  8329. },
  8330. back: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(120, "kg"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/zevulfius/back.svg",
  8336. extra: 918/854 ,
  8337. bottom: 0.005
  8338. }
  8339. },
  8340. foot: {
  8341. height: math.unit(6/3.72, "feet"),
  8342. name: "Foot",
  8343. image: {
  8344. source: "./media/characters/zevulfius/foot.svg"
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(750, "meters")
  8352. },
  8353. {
  8354. name: "Megamacro",
  8355. height: math.unit(20, "km"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Gigamacro",
  8360. height: math.unit(2000, "km")
  8361. },
  8362. {
  8363. name: "Teramacro",
  8364. height: math.unit(250000, "km")
  8365. },
  8366. ]
  8367. )
  8368. };
  8369. characterMakers["Rikes"] = () => {
  8370. return makeCharacter(
  8371. "Rikes",
  8372. "VeryLargeDog",
  8373. {
  8374. front: {
  8375. height: math.unit(100, "feet"),
  8376. weight: math.unit(350, "kg"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/rikes/front.svg",
  8380. extra: 1565/1483 ,
  8381. bottom: 0.017
  8382. }
  8383. },
  8384. },
  8385. [
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(100, "feet"),
  8389. default: true
  8390. },
  8391. ]
  8392. )
  8393. };
  8394. characterMakers["Adam Silver-Mane"] = () => {
  8395. return makeCharacter(
  8396. "Adam Silver-Mane",
  8397. "Dragonknightadam",
  8398. {
  8399. anthro: {
  8400. height: math.unit(8, "feet"),
  8401. weight: math.unit(120, "kg"),
  8402. name: "Anthro",
  8403. image: {
  8404. source: "./media/characters/adam-silver-mane/anthro.svg",
  8405. extra: 5743/5339 ,
  8406. bottom: 0.07
  8407. }
  8408. },
  8409. taur: {
  8410. height: math.unit(16, "feet"),
  8411. weight: math.unit(1500, "kg"),
  8412. name: "Taur",
  8413. image: {
  8414. source: "./media/characters/adam-silver-mane/taur.svg",
  8415. extra: 1713/1571 ,
  8416. bottom: 0.01
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(8, "feet")
  8424. },
  8425. {
  8426. name: "Minimacro",
  8427. height: math.unit(80, "feet")
  8428. },
  8429. {
  8430. name: "Macro",
  8431. height: math.unit(800, "feet"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Megamacro",
  8436. height: math.unit(8000, "feet")
  8437. },
  8438. {
  8439. name: "Gigamacro",
  8440. height: math.unit(800, "miles")
  8441. },
  8442. {
  8443. name: "Teramacro",
  8444. height: math.unit(80000, "miles")
  8445. },
  8446. {
  8447. name: "Celestial",
  8448. height: math.unit(8e6, "miles")
  8449. },
  8450. {
  8451. name: "Star Dragon",
  8452. height: math.unit(800000, "parsecs")
  8453. },
  8454. {
  8455. name: "Godly",
  8456. height: math.unit(800, "teraparsecs")
  8457. },
  8458. ]
  8459. )
  8460. };
  8461. characterMakers["Ky'owin"] = () => {
  8462. return makeCharacter(
  8463. "Ky'owin",
  8464. "Kyowin",
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(150, "lb"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/ky'owin/front.svg",
  8472. extra: 3888/3068 ,
  8473. bottom: 0.015
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(6 + 8/12, "feet")
  8481. },
  8482. {
  8483. name: "Large",
  8484. height: math.unit(68, "feet")
  8485. },
  8486. {
  8487. name: "Macro",
  8488. height: math.unit(132, "feet")
  8489. },
  8490. {
  8491. name: "Macro+",
  8492. height: math.unit(340, "feet")
  8493. },
  8494. {
  8495. name: "Macro++",
  8496. height: math.unit(680, "feet"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Megamacro",
  8501. height: math.unit(1, "mile")
  8502. },
  8503. {
  8504. name: "Megamacro+",
  8505. height: math.unit(10, "miles")
  8506. },
  8507. ]
  8508. )
  8509. };
  8510. characterMakers["Mal"] = () => {
  8511. return makeCharacter(
  8512. "Mal",
  8513. "agrosarmadillo",
  8514. {
  8515. front: {
  8516. height: math.unit(4, "feet"),
  8517. weight: math.unit(50, "lb"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/mal/front.svg",
  8521. extra: 785/724 ,
  8522. bottom: 0.07
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Micro",
  8529. height: math.unit(4, "inches")
  8530. },
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(4, "feet"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(200, "feet")
  8539. },
  8540. ]
  8541. )
  8542. };
  8543. characterMakers["Jordan Deware"] = () => {
  8544. return makeCharacter(
  8545. "Jordan Deware",
  8546. "JordanDeware",
  8547. {
  8548. front: {
  8549. height: math.unit(6, "feet"),
  8550. weight: math.unit(150, "lb"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/jordan-deware/front.svg",
  8554. extra: 1191/1012
  8555. }
  8556. },
  8557. },
  8558. [
  8559. {
  8560. name: "Nano",
  8561. height: math.unit(0.01, "mm")
  8562. },
  8563. {
  8564. name: "Minimicro",
  8565. height: math.unit(1, "mm")
  8566. },
  8567. {
  8568. name: "Micro",
  8569. height: math.unit(0.5, "inches")
  8570. },
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(4, "feet"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "Minimacro",
  8578. height: math.unit(40, "meters")
  8579. },
  8580. {
  8581. name: "Small Macro",
  8582. height: math.unit(400, "meters")
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(4, "miles")
  8587. },
  8588. {
  8589. name: "Megamacro",
  8590. height: math.unit(40, "miles")
  8591. },
  8592. {
  8593. name: "Megamacro+",
  8594. height: math.unit(400, "miles")
  8595. },
  8596. {
  8597. name: "Gigamacro",
  8598. height: math.unit(400000, "miles")
  8599. },
  8600. ]
  8601. )
  8602. };
  8603. characterMakers["Kimiko"] = () => {
  8604. return makeCharacter(
  8605. "Kimiko",
  8606. "HypoTheDerg",
  8607. {
  8608. side: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(150, "lb"),
  8611. name: "Side",
  8612. image: {
  8613. source: "./media/characters/kimiko/side.svg",
  8614. extra: 600/358
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(15, "feet"),
  8622. default: true
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(220, "feet")
  8627. },
  8628. {
  8629. name: "Macro+",
  8630. height: math.unit(1450, "feet")
  8631. },
  8632. {
  8633. name: "Megamacro",
  8634. height: math.unit(11500, "feet")
  8635. },
  8636. {
  8637. name: "Gigamacro",
  8638. height: math.unit(9500, "miles")
  8639. },
  8640. {
  8641. name: "Teramacro",
  8642. height: math.unit(2208005005, "miles")
  8643. },
  8644. {
  8645. name: "Examacro",
  8646. height: math.unit(2750, "parsecs")
  8647. },
  8648. {
  8649. name: "Zettamacro",
  8650. height: math.unit(101500, "parsecs")
  8651. },
  8652. ]
  8653. )
  8654. };
  8655. characterMakers["Andrew Sleepy"] = () => {
  8656. return makeCharacter(
  8657. "Andrew Sleepy",
  8658. "Proky",
  8659. {
  8660. front: {
  8661. height: math.unit(6, "feet"),
  8662. weight: math.unit(70, "kg"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/andrew-sleepy/front.svg"
  8666. }
  8667. },
  8668. side: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(70, "kg"),
  8671. name: "Side",
  8672. image: {
  8673. source: "./media/characters/andrew-sleepy/side.svg"
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Micro",
  8680. height: math.unit(1, "mm"),
  8681. default: true
  8682. },
  8683. ]
  8684. )
  8685. };
  8686. characterMakers["Judio"] = () => {
  8687. return makeCharacter(
  8688. "Judio",
  8689. "HypoTheDerg",
  8690. {
  8691. front: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(150, "lb"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/judio/front.svg",
  8697. extra: 1258/1110
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(5 + 6/12, "feet")
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(1000, "feet"),
  8709. default: true
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(10, "miles")
  8714. },
  8715. ]
  8716. )
  8717. };
  8718. characterMakers["Nomaxice"] = () => {
  8719. return makeCharacter(
  8720. "Nomaxice",
  8721. "Nomaxice",
  8722. {
  8723. front: {
  8724. height: math.unit(6, "feet"),
  8725. weight: math.unit(68, "kg"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/nomaxice/front.svg",
  8729. extra: 1498/1073 ,
  8730. bottom: 0.075
  8731. }
  8732. },
  8733. foot: {
  8734. height: math.unit(1.1, "feet"),
  8735. name: "Foot",
  8736. image: {
  8737. source: "./media/characters/nomaxice/foot.svg"
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Micro",
  8744. height: math.unit(8, "cm")
  8745. },
  8746. {
  8747. name: "Norm",
  8748. height: math.unit(1.82, "m")
  8749. },
  8750. {
  8751. name: "Norm+",
  8752. height: math.unit(8.8, "feet")
  8753. },
  8754. {
  8755. name: "Big",
  8756. height: math.unit(8, "meters"),
  8757. default: true
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(18, "meters")
  8762. },
  8763. {
  8764. name: "Macro+",
  8765. height: math.unit(88, "meters")
  8766. },
  8767. ]
  8768. )
  8769. };
  8770. characterMakers["Dydros"] = () => {
  8771. return makeCharacter(
  8772. "Dydros",
  8773. "DatCyberDragon",
  8774. {
  8775. front: {
  8776. height: math.unit(12, "feet"),
  8777. weight: math.unit(1.5, "tons"),
  8778. name: "Front",
  8779. image: {
  8780. source: "./media/characters/dydros/front.svg",
  8781. extra: 863/800 ,
  8782. bottom: 0.015
  8783. }
  8784. },
  8785. back: {
  8786. height: math.unit(12, "feet"),
  8787. weight: math.unit(1.5, "tons"),
  8788. name: "Back",
  8789. image: {
  8790. source: "./media/characters/dydros/back.svg",
  8791. extra: 900/843 ,
  8792. bottom: 0.005
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(12, "feet"),
  8800. default: true
  8801. },
  8802. ]
  8803. )
  8804. };
  8805. characterMakers["Riggi"] = () => {
  8806. return makeCharacter(
  8807. "Riggi",
  8808. "Fyre_ace",
  8809. {
  8810. front: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(100, "kg"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/riggi/front.svg",
  8816. extra: 5787/5303
  8817. }
  8818. },
  8819. hyper: {
  8820. height: math.unit(6*5/3, "feet"),
  8821. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8822. name: "Hyper",
  8823. image: {
  8824. source: "./media/characters/riggi/hyper.svg",
  8825. extra: 3595/3485
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Small Macro",
  8832. height: math.unit(50, "feet")
  8833. },
  8834. {
  8835. name: "Default",
  8836. height: math.unit(200, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Loom",
  8841. height: math.unit(10000, "feet")
  8842. },
  8843. {
  8844. name: "Cruising Altitude",
  8845. height: math.unit(30000, "feet")
  8846. },
  8847. {
  8848. name: "Megamacro",
  8849. height: math.unit(100, "miles")
  8850. },
  8851. {
  8852. name: "Continent Sized",
  8853. height: math.unit(2800, "miles")
  8854. },
  8855. {
  8856. name: "Earth Sized",
  8857. height: math.unit(8000, "miles")
  8858. },
  8859. ]
  8860. )
  8861. };
  8862. characterMakers["Alexi"] = () => {
  8863. return makeCharacter(
  8864. "Alexi",
  8865. "AlexiWerewolf",
  8866. {
  8867. front: {
  8868. height: math.unit(6, "feet"),
  8869. weight: math.unit(250, "lb"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/alexi/front.svg",
  8873. extra: 3483/3291 ,
  8874. bottom: 0.04
  8875. }
  8876. },
  8877. back: {
  8878. height: math.unit(6, "feet"),
  8879. weight: math.unit(250, "lb"),
  8880. name: "Back",
  8881. image: {
  8882. source: "./media/characters/alexi/back.svg",
  8883. extra: 3533/3356 ,
  8884. bottom: 0.021
  8885. }
  8886. },
  8887. frontTransformed: {
  8888. height: math.unit(12.5, "feet"),
  8889. weight: math.unit(4000, "lb"),
  8890. name: "Front (Transformed)",
  8891. image: {
  8892. source: "./media/characters/alexi/front-transformed.svg",
  8893. extra: 5345/5100 ,
  8894. bottom: 0.03
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(3, "meters"),
  8902. default: true
  8903. },
  8904. {
  8905. name: "Minimacro",
  8906. height: math.unit(30, "meters")
  8907. },
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(500, "meters")
  8911. },
  8912. {
  8913. name: "Megamacro",
  8914. height: math.unit(9000, "km")
  8915. },
  8916. {
  8917. name: "Teramacro",
  8918. height: math.unit(384000, "km")
  8919. },
  8920. ]
  8921. )
  8922. };
  8923. characterMakers["Kayroo"] = () => {
  8924. return makeCharacter(
  8925. "Kayroo",
  8926. "Kayroo",
  8927. {
  8928. front: {
  8929. height: math.unit(6, "feet"),
  8930. weight: math.unit(150, "lb"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/kayroo/front.svg",
  8934. extra: 1153/1038 ,
  8935. bottom: 0.06
  8936. }
  8937. },
  8938. foot: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(150, "lb"),
  8941. name: "Foot",
  8942. image: {
  8943. source: "./media/characters/kayroo/foot.svg"
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(8, "feet"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Minimacro",
  8955. height: math.unit(250, "feet")
  8956. },
  8957. {
  8958. name: "Macro",
  8959. height: math.unit(2800, "feet")
  8960. },
  8961. {
  8962. name: "Megamacro",
  8963. height: math.unit(5200, "feet")
  8964. },
  8965. {
  8966. name: "Gigamacro",
  8967. height: math.unit(27000, "feet")
  8968. },
  8969. {
  8970. name: "Omega",
  8971. height: math.unit(45000, "feet")
  8972. },
  8973. ]
  8974. )
  8975. };
  8976. characterMakers["Rhys"] = () => {
  8977. return makeCharacter(
  8978. "Rhys",
  8979. "BigMountainCat",
  8980. {
  8981. front: {
  8982. height: math.unit(18, "feet"),
  8983. weight: math.unit(5800, "lb"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/rhys/front.svg",
  8987. extra: 3386/3090 ,
  8988. bottom: 0.07
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(18, "feet"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Working Size",
  9000. height: math.unit(200, "feet")
  9001. },
  9002. {
  9003. name: "Demolition Size",
  9004. height: math.unit(2000, "feet")
  9005. },
  9006. {
  9007. name: "Maximum Licensed Size",
  9008. height: math.unit(5, "miles")
  9009. },
  9010. {
  9011. name: "Maximum Observed Size",
  9012. height: math.unit(10, "yottameters")
  9013. },
  9014. ]
  9015. )
  9016. };
  9017. characterMakers["Toto"] = () => {
  9018. return makeCharacter(
  9019. "Toto",
  9020. "Totoly_Toto",
  9021. {
  9022. front: {
  9023. height: math.unit(6, "feet"),
  9024. weight: math.unit(250, "lb"),
  9025. name: "Front",
  9026. image: {
  9027. source: "./media/characters/toto/front.svg",
  9028. extra: 527 / 479,
  9029. bottom: 0.05
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Micro",
  9036. height: math.unit(3, "feet")
  9037. },
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(10, "feet")
  9041. },
  9042. {
  9043. name: "Macro",
  9044. height: math.unit(150, "feet"),
  9045. default: true
  9046. },
  9047. {
  9048. name: "Megamacro",
  9049. height: math.unit(1200, "feet")
  9050. },
  9051. ]
  9052. )
  9053. };
  9054. characterMakers["King"] = () => {
  9055. return makeCharacter(
  9056. "King",
  9057. "KingSizedLion",
  9058. {
  9059. back: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(150, "lb"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/king/back.svg"
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Micro",
  9071. height: math.unit(2, "inches")
  9072. },
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(8, "feet")
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(200, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Megamacro",
  9084. height: math.unit(50, "miles")
  9085. },
  9086. ]
  9087. )
  9088. };
  9089. characterMakers["Cordite"] = () => {
  9090. return makeCharacter(
  9091. "Cordite",
  9092. "photonman2",
  9093. {
  9094. anthro: {
  9095. height: math.unit(6 + 5/12, "feet"),
  9096. weight: math.unit(280, "lb"),
  9097. name: "Anthro",
  9098. image: {
  9099. source: "./media/characters/cordite/anthro.svg",
  9100. extra: 1986/1905 ,
  9101. bottom: 0.025
  9102. }
  9103. },
  9104. feral: {
  9105. height: math.unit(2, "feet"),
  9106. weight: math.unit(90, "lb"),
  9107. name: "Feral",
  9108. image: {
  9109. source: "./media/characters/cordite/feral.svg",
  9110. extra: 1260/755 ,
  9111. bottom: 0.05
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(6 + 5/12, "feet"),
  9119. default: true
  9120. },
  9121. ]
  9122. )
  9123. };
  9124. characterMakers["Pianostrong"] = () => {
  9125. return makeCharacter(
  9126. "Pianostrong",
  9127. "Pianostrong",
  9128. {
  9129. front: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(150, "lb"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/pianostrong/front.svg",
  9135. extra: 6577/6254 ,
  9136. bottom: 0.02
  9137. }
  9138. },
  9139. side: {
  9140. height: math.unit(6, "feet"),
  9141. weight: math.unit(150, "lb"),
  9142. name: "Side",
  9143. image: {
  9144. source: "./media/characters/pianostrong/side.svg",
  9145. extra: 6106/5730
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(150, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/pianostrong/back.svg",
  9154. extra: 6085/5733 ,
  9155. bottom: 0.01
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(100, "feet")
  9163. },
  9164. {
  9165. name: "Macro+",
  9166. height: math.unit(300, "feet"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Macro++",
  9171. height: math.unit(1000, "feet")
  9172. },
  9173. ]
  9174. )
  9175. };
  9176. characterMakers["Kona"] = () => {
  9177. return makeCharacter(
  9178. "Kona",
  9179. "Konadh",
  9180. {
  9181. front: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(150, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/kona/front.svg",
  9187. extra: 2960/2629 ,
  9188. bottom: 0.005
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Normal",
  9195. height: math.unit(11 + 8/12, "feet")
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(850, "feet"),
  9200. default: true
  9201. },
  9202. {
  9203. name: "Macro+",
  9204. height: math.unit(1.5, "km"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Megamacro",
  9209. height: math.unit(80, "miles")
  9210. },
  9211. {
  9212. name: "Gigamacro",
  9213. height: math.unit(3500, "miles")
  9214. },
  9215. ]
  9216. )
  9217. };
  9218. characterMakers["Levi"] = () => {
  9219. return makeCharacter(
  9220. "Levi",
  9221. "LeviCurrie",
  9222. {
  9223. side: {
  9224. height: math.unit(1.9, "meters"),
  9225. weight: math.unit(326, "kg"),
  9226. name: "Side",
  9227. image: {
  9228. source: "./media/characters/levi/side.svg",
  9229. extra: 1704/1334 ,
  9230. bottom: 0.02
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(1.9, "meters"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Macro",
  9242. height: math.unit(20, "meters")
  9243. },
  9244. {
  9245. name: "Macro+",
  9246. height: math.unit(200, "meters")
  9247. },
  9248. {
  9249. name: "Megamacro",
  9250. height: math.unit(2, "km")
  9251. },
  9252. {
  9253. name: "Megamacro+",
  9254. height: math.unit(20, "km")
  9255. },
  9256. {
  9257. name: "Gigamacro",
  9258. height: math.unit(2500, "km")
  9259. },
  9260. {
  9261. name: "Gigamacro+",
  9262. height: math.unit(120000, "km")
  9263. },
  9264. {
  9265. name: "Teramacro",
  9266. height: math.unit(7.77e6, "km")
  9267. },
  9268. ]
  9269. )
  9270. };
  9271. characterMakers["BMC"] = () => {
  9272. return makeCharacter(
  9273. "BMC",
  9274. "BigMountainCat",
  9275. {
  9276. front: {
  9277. height: math.unit(6 + 4/12, "feet"),
  9278. weight: math.unit(188, "lb"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/bmc/front.svg",
  9282. extra: 1067/1022 ,
  9283. bottom: 0.047
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Human-sized",
  9290. height: math.unit(6 + 4/12, "feet")
  9291. },
  9292. {
  9293. name: "Small",
  9294. height: math.unit(250, "feet")
  9295. },
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(1250, "feet"),
  9299. default: true
  9300. },
  9301. {
  9302. name: "Good Day",
  9303. height: math.unit(88, "miles")
  9304. },
  9305. {
  9306. name: "Largest Measured Size",
  9307. height: math.unit(11.2e6, "lightyears")
  9308. },
  9309. ]
  9310. )
  9311. };
  9312. characterMakers["Sven the Kaiju"] = () => {
  9313. return makeCharacter(
  9314. "Sven the Kaiju",
  9315. "OfActionMan",
  9316. {
  9317. front: {
  9318. height: math.unit(20, "feet"),
  9319. weight: math.unit(2016, "kg"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/sven-the-kaiju/front.svg",
  9323. extra: 1479/1449 ,
  9324. bottom: 0.05
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Fairy",
  9331. height: math.unit(6, "inches")
  9332. },
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(20, "feet"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Rampage",
  9340. height: math.unit(200, "feet")
  9341. },
  9342. {
  9343. name: "Archfey Forest Guardian",
  9344. height: math.unit(1, "mile")
  9345. },
  9346. ]
  9347. )
  9348. };
  9349. characterMakers["Marik"] = () => {
  9350. return makeCharacter(
  9351. "Marik",
  9352. "Acrarun",
  9353. {
  9354. front: {
  9355. height: math.unit(4, "meters"),
  9356. weight: math.unit(2, "tons"),
  9357. name: "Front",
  9358. image: {
  9359. source: "./media/characters/marik/front.svg",
  9360. extra: 1057/1003 ,
  9361. bottom: 0.08
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(4, "meters"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(20, "meters")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(50, "km")
  9378. },
  9379. {
  9380. name: "Gigamacro",
  9381. height: math.unit(100, "km")
  9382. },
  9383. {
  9384. name: "Alpha Macro",
  9385. height: math.unit(7.88e7, "yottameters")
  9386. },
  9387. ]
  9388. )
  9389. };
  9390. characterMakers["Mel"] = () => {
  9391. return makeCharacter(
  9392. "Mel",
  9393. "SomedayNotSoon",
  9394. {
  9395. front: {
  9396. height: math.unit(6, "feet"),
  9397. weight: math.unit(110, "lb"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/mel/front.svg",
  9401. extra: 736/617 ,
  9402. bottom: 0.017
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Pico",
  9409. height: math.unit(3, "pm")
  9410. },
  9411. {
  9412. name: "Nano",
  9413. height: math.unit(3, "nm")
  9414. },
  9415. {
  9416. name: "Micro",
  9417. height: math.unit(0.3, "mm"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Micro+",
  9422. height: math.unit(3, "mm")
  9423. },
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(5 + 10.5/12, "feet")
  9427. },
  9428. ]
  9429. )
  9430. };
  9431. characterMakers["Lykonous"] = () => {
  9432. return makeCharacter(
  9433. "Lykonous",
  9434. "Lykonous",
  9435. {
  9436. kaiju: {
  9437. height: math.unit(1.75, "meters"),
  9438. weight: math.unit(55, "kg"),
  9439. name: "Kaiju",
  9440. image: {
  9441. source: "./media/characters/lykonous/kaiju.svg",
  9442. extra: 1055/946 ,
  9443. bottom: 0.135
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(2.5, "meters"),
  9451. default: true
  9452. },
  9453. {
  9454. name: "Kaiju Dragon",
  9455. height: math.unit(60, "meters")
  9456. },
  9457. {
  9458. name: "Mega Kaiju",
  9459. height: math.unit(120, "km")
  9460. },
  9461. {
  9462. name: "Giga Kaiju",
  9463. height: math.unit(200, "megameters")
  9464. },
  9465. {
  9466. name: "Terra Kaiju",
  9467. height: math.unit(400, "gigameters")
  9468. },
  9469. {
  9470. name: "Kaiju Dragon God",
  9471. height: math.unit(13000, "exaparsecs")
  9472. },
  9473. ]
  9474. )
  9475. };
  9476. characterMakers["Blü"] = () => {
  9477. return makeCharacter(
  9478. "Blü",
  9479. "BluTheFagon",
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/blü/front.svg",
  9487. extra: 1883/1564 ,
  9488. bottom: 0.031
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(13, "feet"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Big Boi",
  9500. height: math.unit(150, "meters")
  9501. },
  9502. {
  9503. name: "Mini Stomper",
  9504. height: math.unit(300, "meters")
  9505. },
  9506. {
  9507. name: "Macro",
  9508. height: math.unit(1000, "meters")
  9509. },
  9510. {
  9511. name: "Megamacro",
  9512. height: math.unit(11000, "meters")
  9513. },
  9514. {
  9515. name: "Gigamacro",
  9516. height: math.unit(11000, "km")
  9517. },
  9518. {
  9519. name: "Teramacro",
  9520. height: math.unit(420000, "km")
  9521. },
  9522. {
  9523. name: "Examacro",
  9524. height: math.unit(120, "parsecs")
  9525. },
  9526. {
  9527. name: "God Tho",
  9528. height: math.unit(98000000000, "parsecs")
  9529. },
  9530. ]
  9531. )
  9532. };
  9533. characterMakers["Scales"] = () => {
  9534. return makeCharacter(
  9535. "Scales",
  9536. "Scales",
  9537. {
  9538. taurFront: {
  9539. height: math.unit(6, "feet"),
  9540. weight: math.unit(200, "lb"),
  9541. name: "Taur (Front)",
  9542. image: {
  9543. source: "./media/characters/scales/taur-front.svg",
  9544. extra: 1,
  9545. bottom: 0.05
  9546. }
  9547. },
  9548. taurBack: {
  9549. height: math.unit(6, "feet"),
  9550. weight: math.unit(200, "lb"),
  9551. name: "Taur (Back)",
  9552. image: {
  9553. source: "./media/characters/scales/taur-back.svg",
  9554. extra: 1,
  9555. bottom: 0.08
  9556. }
  9557. },
  9558. anthro: {
  9559. height: math.unit(6*7/12, "feet"),
  9560. weight: math.unit(100, "lb"),
  9561. name: "Anthro",
  9562. image: {
  9563. source: "./media/characters/scales/anthro.svg",
  9564. extra: 1,
  9565. bottom: 0.06
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(12, "feet"),
  9573. default: true
  9574. },
  9575. ]
  9576. )
  9577. };
  9578. characterMakers["Koragos"] = () => {
  9579. return makeCharacter(
  9580. "Koragos",
  9581. "Koragos",
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(150, "lb"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/koragos/front.svg",
  9589. extra: 841/794 ,
  9590. bottom: 0.035
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(150, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/koragos/back.svg",
  9599. extra: 841/810 ,
  9600. bottom: 0.022
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(6 + 11/12, "feet"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Macro",
  9612. height: math.unit(490, "feet")
  9613. },
  9614. {
  9615. name: "Megamacro",
  9616. height: math.unit(10, "miles")
  9617. },
  9618. {
  9619. name: "Gigamacro",
  9620. height: math.unit(50, "miles")
  9621. },
  9622. ]
  9623. )
  9624. };
  9625. characterMakers["Xylrem"] = () => {
  9626. return makeCharacter(
  9627. "Xylrem",
  9628. "",
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(250, "lb"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/xylrem/front.svg",
  9636. extra: 3323/3050 ,
  9637. bottom: 0.065
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Micro",
  9644. height: math.unit(4, "feet")
  9645. },
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(16, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(2720, "feet")
  9654. },
  9655. {
  9656. name: "Megamacro",
  9657. height: math.unit(25000, "miles")
  9658. },
  9659. ]
  9660. )
  9661. };
  9662. characterMakers["Ikideru"] = () => {
  9663. return makeCharacter(
  9664. "Ikideru",
  9665. "Ikideru",
  9666. {
  9667. front: {
  9668. height: math.unit(8, "feet"),
  9669. weight: math.unit(250, "kg"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/ikideru/front.svg",
  9673. extra: 930/870 ,
  9674. bottom: 0.087
  9675. }
  9676. },
  9677. back: {
  9678. height: math.unit(8, "feet"),
  9679. weight: math.unit(250, "kg"),
  9680. name: "Back",
  9681. image: {
  9682. source: "./media/characters/ikideru/back.svg",
  9683. extra: 919/852 ,
  9684. bottom: 0.055
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Rare",
  9691. height: math.unit(8, "feet"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "Playful Loom",
  9696. height: math.unit(80, "feet")
  9697. },
  9698. {
  9699. name: "City Leaner",
  9700. height: math.unit(230, "feet")
  9701. },
  9702. {
  9703. name: "Megamacro",
  9704. height: math.unit(2500, "feet")
  9705. },
  9706. {
  9707. name: "Gigamacro",
  9708. height: math.unit(26400, "feet")
  9709. },
  9710. {
  9711. name: "Tectonic Shifter",
  9712. height: math.unit(1.7, "megameters")
  9713. },
  9714. {
  9715. name: "Planet Carer",
  9716. height: math.unit(21, "megameters")
  9717. },
  9718. {
  9719. name: "God",
  9720. height: math.unit(11157.22, "parsecs")
  9721. },
  9722. ]
  9723. )
  9724. };
  9725. characterMakers["Neo"] = () => {
  9726. return makeCharacter(
  9727. "Neo",
  9728. "neonsnake",
  9729. {
  9730. front: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(120, "lb"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/neo/front.svg"
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(2, "inches"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Human Size",
  9747. height: math.unit(5 + 8/12, "feet")
  9748. },
  9749. ]
  9750. )
  9751. };
  9752. characterMakers["Chauncey (Chantz)"] = () => {
  9753. return makeCharacter(
  9754. "Chauncey (Chantz)",
  9755. "RyGaLo",
  9756. {
  9757. front: {
  9758. height: math.unit(13 + 10/12, "feet"),
  9759. weight: math.unit(5320, "lb"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/chauncey-chantz/front.svg",
  9763. extra: 1587/1435 ,
  9764. bottom: 0.02
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(13 + 10/12, "feet"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Macro",
  9776. height: math.unit(45, "feet")
  9777. },
  9778. {
  9779. name: "Megamacro",
  9780. height: math.unit(250, "miles")
  9781. },
  9782. {
  9783. name: "Planetary",
  9784. height: math.unit(10000, "miles")
  9785. },
  9786. {
  9787. name: "Galactic",
  9788. height: math.unit(40000, "parsecs")
  9789. },
  9790. {
  9791. name: "Universal",
  9792. height: math.unit(1, "yottameter")
  9793. },
  9794. ]
  9795. )
  9796. };
  9797. characterMakers["Epifox"] = () => {
  9798. return makeCharacter(
  9799. "Epifox",
  9800. "Epifox",
  9801. {
  9802. front: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(150, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/epifox/front.svg",
  9808. extra: 1,
  9809. bottom: 0.075
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(6, "inches")
  9817. },
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(12, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(3810, "feet")
  9826. },
  9827. {
  9828. name: "Megamacro",
  9829. height: math.unit(500, "miles")
  9830. },
  9831. ]
  9832. )
  9833. };
  9834. characterMakers["Colin T."] = () => {
  9835. return makeCharacter(
  9836. "Colin T.",
  9837. "DragonLugia58",
  9838. {
  9839. front: {
  9840. height: math.unit(1.8796, "m"),
  9841. weight: math.unit(230, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/colin-t/front.svg",
  9845. extra: 1272/1193 ,
  9846. bottom: 0.07
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Micro",
  9853. height: math.unit(0.571, "meters")
  9854. },
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(1.8796, "meters"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Tall",
  9862. height: math.unit(4, "meters")
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(67.241, "meters")
  9867. },
  9868. {
  9869. name: "Megamacro",
  9870. height: math.unit(371.856, "meters")
  9871. },
  9872. {
  9873. name: "Planetary",
  9874. height: math.unit(12631.5689, "km")
  9875. },
  9876. ]
  9877. )
  9878. };
  9879. characterMakers["Matvei"] = () => {
  9880. return makeCharacter(
  9881. "Matvei",
  9882. "Matt_Da_Master",
  9883. {
  9884. front: {
  9885. height: math.unit(1.85, "meters"),
  9886. weight: math.unit(80, "kg"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/matvei/front.svg",
  9890. extra: 614/594 ,
  9891. bottom: 0.01
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(1.85, "meters"),
  9899. default: true
  9900. },
  9901. ]
  9902. )
  9903. };
  9904. characterMakers["Quincy"] = () => {
  9905. return makeCharacter(
  9906. "Quincy",
  9907. "Paradisaea",
  9908. {
  9909. front: {
  9910. height: math.unit(5 + 9/12, "feet"),
  9911. weight: math.unit(70, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/quincy/front.svg",
  9915. extra: 3041/2751
  9916. }
  9917. },
  9918. back: {
  9919. height: math.unit(5 + 9/12, "feet"),
  9920. weight: math.unit(70, "lb"),
  9921. name: "Back",
  9922. image: {
  9923. source: "./media/characters/quincy/back.svg",
  9924. extra: 3041/2751
  9925. }
  9926. },
  9927. flying: {
  9928. height: math.unit(5 + 4/12, "feet"),
  9929. weight: math.unit(70, "lb"),
  9930. name: "Flying",
  9931. image: {
  9932. source: "./media/characters/quincy/flying.svg",
  9933. extra: 1044/930
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Micro",
  9940. height: math.unit(3, "cm")
  9941. },
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(5 + 9/12, "feet")
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(200, "meters"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Megamacro",
  9953. height: math.unit(1000, "meters")
  9954. },
  9955. ]
  9956. )
  9957. };
  9958. characterMakers["Vanrel"] = () => {
  9959. return makeCharacter(
  9960. "Vanrel",
  9961. "KuiPaws",
  9962. {
  9963. front: {
  9964. height: math.unit(4 + 7/12, "feet"),
  9965. weight: math.unit(150, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/vanrel/front.svg",
  9969. extra: 1,
  9970. bottom: 0.02
  9971. }
  9972. },
  9973. side: {
  9974. height: math.unit(4 + 7/12, "feet"),
  9975. weight: math.unit(150, "lb"),
  9976. name: "Side",
  9977. image: {
  9978. source: "./media/characters/vanrel/side.svg",
  9979. extra: 1,
  9980. bottom: 0.025
  9981. }
  9982. },
  9983. tome: {
  9984. height: math.unit(1.35, "feet"),
  9985. weight: math.unit(10, "lb"),
  9986. name: "Vanrel's Tome",
  9987. rename: true,
  9988. image: {
  9989. source: "./media/characters/vanrel/tome.svg"
  9990. }
  9991. },
  9992. beans: {
  9993. height: math.unit(0.89, "feet"),
  9994. name: "Beans",
  9995. image: {
  9996. source: "./media/characters/vanrel/beans.svg"
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(4 + 7/12, "feet"),
  10004. default: true
  10005. },
  10006. ]
  10007. )
  10008. };
  10009. characterMakers["Kuiper Vanrel"] = () => {
  10010. return makeCharacter(
  10011. "Kuiper Vanrel",
  10012. "KuiPaws",
  10013. {
  10014. front: {
  10015. height: math.unit(7 + 5/12, "feet"),
  10016. weight: math.unit(150, "lb"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/kuiper-vanrel/front.svg",
  10020. extra: 1118/1068 ,
  10021. bottom: 0.09
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(0.55, "meters"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/kuiper-vanrel/foot.svg",
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(7 + 5/12, "feet"),
  10036. default: true
  10037. },
  10038. ]
  10039. )
  10040. };
  10041. characterMakers["Keset Vanrel"] = () => {
  10042. return makeCharacter(
  10043. "Keset Vanrel",
  10044. "KuiPaws",
  10045. {
  10046. front: {
  10047. height: math.unit(8 + 5/12, "feet"),
  10048. weight: math.unit(150, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/keset-vanrel/front.svg",
  10052. extra: 1150/1084 ,
  10053. bottom: 0.05
  10054. }
  10055. },
  10056. hand: {
  10057. height: math.unit(0.6, "meters"),
  10058. name: "Hand",
  10059. image: {
  10060. source: "./media/characters/keset-vanrel/hand.svg"
  10061. }
  10062. },
  10063. foot: {
  10064. height: math.unit(0.94978, "meters"),
  10065. name: "Foot",
  10066. image: {
  10067. source: "./media/characters/keset-vanrel/foot.svg"
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(8 + 5/12, "feet"),
  10075. default: true
  10076. },
  10077. ]
  10078. )
  10079. };
  10080. characterMakers["Neos"] = () => {
  10081. return makeCharacter(
  10082. "Neos",
  10083. "CakeyCake",
  10084. {
  10085. front: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(150, "lb"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/neos/front.svg",
  10091. extra: 1696/992 ,
  10092. bottom: 0.14
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(54, "cm"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(100, "m")
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(10, "km")
  10109. },
  10110. {
  10111. name: "Megamacro+",
  10112. height: math.unit(100, "km")
  10113. },
  10114. {
  10115. name: "Gigamacro",
  10116. height: math.unit(100, "Mm")
  10117. },
  10118. {
  10119. name: "Teramacro",
  10120. height: math.unit(100, "Gm")
  10121. },
  10122. {
  10123. name: "Examacro",
  10124. height: math.unit(100, "Em")
  10125. },
  10126. {
  10127. name: "Godly",
  10128. height: math.unit(10000, "Ym")
  10129. },
  10130. {
  10131. name: "Beyond Godly",
  10132. height: math.unit(10000000, "Ym")
  10133. },
  10134. ]
  10135. )
  10136. };
  10137. characterMakers["Sammy Mouse"] = () => {
  10138. return makeCharacter(
  10139. "Sammy Mouse",
  10140. "Piedunk",
  10141. {
  10142. feminine: {
  10143. height: math.unit(5, "feet"),
  10144. weight: math.unit(100, "lb"),
  10145. name: "Feminine",
  10146. image: {
  10147. source: "./media/characters/sammy-mouse/feminine.svg",
  10148. extra: 2526/2425 ,
  10149. bottom: 0.123
  10150. }
  10151. },
  10152. masculine: {
  10153. height: math.unit(5, "feet"),
  10154. weight: math.unit(100, "lb"),
  10155. name: "Masculine",
  10156. image: {
  10157. source: "./media/characters/sammy-mouse/masculine.svg",
  10158. extra: 2526/2425 ,
  10159. bottom: 0.123
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Micro",
  10166. height: math.unit(5, "inches")
  10167. },
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(5, "feet"),
  10171. default: true
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(60, "feet")
  10176. },
  10177. ]
  10178. )
  10179. };
  10180. characterMakers["Kole"] = () => {
  10181. return makeCharacter(
  10182. "Kole",
  10183. "Cats_55",
  10184. {
  10185. front: {
  10186. height: math.unit(4, "feet"),
  10187. weight: math.unit(50, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/kole/front.svg",
  10191. extra: 1423/1303 ,
  10192. bottom: 0.025
  10193. }
  10194. },
  10195. back: {
  10196. height: math.unit(4, "feet"),
  10197. weight: math.unit(50, "lb"),
  10198. name: "Back",
  10199. image: {
  10200. source: "./media/characters/kole/back.svg",
  10201. extra: 1426/1280 ,
  10202. bottom: 0.02
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(4, "feet"),
  10210. default: true
  10211. },
  10212. ]
  10213. )
  10214. };
  10215. characterMakers["Rufran"] = () => {
  10216. return makeCharacter(
  10217. "Rufran",
  10218. "Rufran",
  10219. {
  10220. front: {
  10221. height: math.unit(2 + 6/12, "feet"),
  10222. weight: math.unit(20, "lb"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/rufran/front.svg",
  10226. extra: 2041/1839 ,
  10227. bottom: 0.055
  10228. }
  10229. },
  10230. back: {
  10231. height: math.unit(2 + 6/12, "feet"),
  10232. weight: math.unit(20, "lb"),
  10233. name: "Back",
  10234. image: {
  10235. source: "./media/characters/rufran/back.svg",
  10236. extra: 2054/1839 ,
  10237. bottom: 0.01
  10238. }
  10239. },
  10240. hand: {
  10241. height: math.unit(0.2166, "meters"),
  10242. name: "Hand",
  10243. image: {
  10244. source: "./media/characters/rufran/hand.svg"
  10245. }
  10246. },
  10247. foot: {
  10248. height: math.unit(0.185, "meters"),
  10249. name: "Foot",
  10250. image: {
  10251. source: "./media/characters/rufran/foot.svg"
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Micro",
  10258. height: math.unit(1, "inch")
  10259. },
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(2 + 6/12, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Big",
  10267. height: math.unit(60, "feet")
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(325, "feet")
  10272. },
  10273. ]
  10274. )
  10275. };
  10276. characterMakers["Chip"] = () => {
  10277. return makeCharacter(
  10278. "Chip",
  10279. "Chiptuni",
  10280. {
  10281. front: {
  10282. height: math.unit(0.3, "meters"),
  10283. weight: math.unit(3.5, "kg"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/chip/front.svg",
  10287. extra: 748/674
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Micro",
  10294. height: math.unit(1, "inch"),
  10295. default: true
  10296. },
  10297. ]
  10298. )
  10299. };
  10300. characterMakers["Torvid"] = () => {
  10301. return makeCharacter(
  10302. "Torvid",
  10303. "Torvid",
  10304. {
  10305. side: {
  10306. height: math.unit(2.3, "meters"),
  10307. weight: math.unit(3500, "lb"),
  10308. name: "Side",
  10309. image: {
  10310. source: "./media/characters/torvid/side.svg",
  10311. extra: 1972/722 ,
  10312. bottom: 0.035
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(2.3, "meters"),
  10320. default: true
  10321. },
  10322. ]
  10323. )
  10324. };
  10325. characterMakers["Susan"] = () => {
  10326. return makeCharacter(
  10327. "Susan",
  10328. "Jasmith",
  10329. {
  10330. front: {
  10331. height: math.unit(2, "meters"),
  10332. weight: math.unit(150.5, "kg"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/susan/front.svg",
  10336. extra: 693/635 ,
  10337. bottom: 0.05
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(505, "miles"),
  10345. default: true
  10346. },
  10347. ]
  10348. )
  10349. };
  10350. characterMakers["Raindrops"] = () => {
  10351. return makeCharacter(
  10352. "Raindrops",
  10353. "RaindropsJFL",
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/raindrops/front.svg",
  10361. extra: 2655/2461 ,
  10362. bottom: 0.02
  10363. }
  10364. },
  10365. back: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(150, "lb"),
  10368. name: "Back",
  10369. image: {
  10370. source: "./media/characters/raindrops/back.svg",
  10371. extra: 2574/2400 ,
  10372. bottom: 0.03
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(6, "inches")
  10380. },
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(6 + 2/12, "feet")
  10384. },
  10385. {
  10386. name: "Macro",
  10387. height: math.unit(131, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(15, "miles")
  10393. },
  10394. {
  10395. name: "Gigamacro",
  10396. height: math.unit(4000, "miles")
  10397. },
  10398. {
  10399. name: "Teramacro",
  10400. height: math.unit(315000, "miles")
  10401. },
  10402. ]
  10403. )
  10404. };
  10405. characterMakers["Tezwa"] = () => {
  10406. return makeCharacter(
  10407. "Tezwa",
  10408. "TitanTezwa",
  10409. {
  10410. front: {
  10411. height: math.unit(2.794, "meters"),
  10412. weight: math.unit(325, "kg"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/tezwa/front.svg",
  10416. extra: 2083/1906 ,
  10417. bottom: 0.031
  10418. }
  10419. },
  10420. foot: {
  10421. height: math.unit(0.687, "meters"),
  10422. name: "Foot",
  10423. image: {
  10424. source: "./media/characters/tezwa/foot.svg"
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(9 + 2/12, "feet"),
  10432. default: true
  10433. },
  10434. ]
  10435. )
  10436. };
  10437. characterMakers["Typhus"] = () => {
  10438. return makeCharacter(
  10439. "Typhus",
  10440. "Jasmith",
  10441. {
  10442. front: {
  10443. height: math.unit(58, "feet"),
  10444. weight: math.unit(89000, "lb"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/typhus/front.svg",
  10448. extra: 816/800 ,
  10449. bottom: 0.065
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(58, "feet"),
  10457. default: true
  10458. },
  10459. ]
  10460. )
  10461. };
  10462. characterMakers["Lyra Von Wulf"] = () => {
  10463. return makeCharacter(
  10464. "Lyra Von Wulf",
  10465. "LyraVonWulf",
  10466. {
  10467. front: {
  10468. height: math.unit(12, "feet"),
  10469. weight: math.unit(6, "tonnes"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/lyra-von-wulf/front.svg",
  10473. extra: 1,
  10474. bottom: 0.10
  10475. }
  10476. },
  10477. frontMecha: {
  10478. height: math.unit(12, "feet"),
  10479. weight: math.unit(12, "tonnes"),
  10480. name: "Front (Mecha)",
  10481. image: {
  10482. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10483. extra: 1,
  10484. bottom: 0.042
  10485. }
  10486. },
  10487. maw: {
  10488. height: math.unit(2.2, "feet"),
  10489. name: "Maw",
  10490. image: {
  10491. source: "./media/characters/lyra-von-wulf/maw.svg"
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(12, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Classic",
  10503. height: math.unit(50, "feet")
  10504. },
  10505. {
  10506. name: "Macro",
  10507. height: math.unit(500, "feet")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(1, "mile")
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(400, "miles")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(22000, "miles")
  10520. },
  10521. {
  10522. name: "Solarmacro",
  10523. height: math.unit(8600000, "miles")
  10524. },
  10525. {
  10526. name: "Galactic",
  10527. height: math.unit(1057000, "lightyears")
  10528. },
  10529. ]
  10530. )
  10531. };
  10532. characterMakers["Dixon"] = () => {
  10533. return makeCharacter(
  10534. "Dixon",
  10535. "Seabury",
  10536. {
  10537. front: {
  10538. height: math.unit(6 + 10/12, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/dixon/front.svg",
  10543. extra: 3361/3209 ,
  10544. bottom: 0.01
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(6 + 10/12, "feet"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Big",
  10556. height: math.unit(12, "meters")
  10557. },
  10558. {
  10559. name: "Macro",
  10560. height: math.unit(500, "meters")
  10561. },
  10562. {
  10563. name: "Megamacro",
  10564. height: math.unit(2, "km")
  10565. },
  10566. ]
  10567. )
  10568. };
  10569. characterMakers["Kauko"] = () => {
  10570. return makeCharacter(
  10571. "Kauko",
  10572. "Kauko",
  10573. {
  10574. front: {
  10575. height: math.unit(185, "cm"),
  10576. weight: math.unit(68, "kg"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/kauko/front.svg",
  10580. extra: 1455/1421 ,
  10581. bottom: 0.03
  10582. }
  10583. },
  10584. back: {
  10585. height: math.unit(185, "cm"),
  10586. weight: math.unit(68, "kg"),
  10587. name: "Back",
  10588. image: {
  10589. source: "./media/characters/kauko/back.svg",
  10590. extra: 1455/1421 ,
  10591. bottom: 0.004
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(185, "cm"),
  10599. default: true
  10600. },
  10601. ]
  10602. )
  10603. };
  10604. characterMakers["Varg"] = () => {
  10605. return makeCharacter(
  10606. "Varg",
  10607. "va0027",
  10608. {
  10609. front: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(150, "kg"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/varg/front.svg",
  10615. extra: 1108/1018 ,
  10616. bottom: 0.0375
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(5, "meters")
  10624. },
  10625. {
  10626. name: "Gigamacro",
  10627. height: math.unit(211, "km"),
  10628. default: true
  10629. },
  10630. ]
  10631. )
  10632. };
  10633. characterMakers["Dayza"] = () => {
  10634. return makeCharacter(
  10635. "Dayza",
  10636. "Vonadi",
  10637. {
  10638. front: {
  10639. height: math.unit(7 + 7/12, "feet"),
  10640. weight: math.unit(267, "lb"),
  10641. name: "Front",
  10642. image: {
  10643. source: "./media/characters/dayza/front.svg",
  10644. extra: 1262/1200 ,
  10645. bottom: 0.035
  10646. }
  10647. },
  10648. side: {
  10649. height: math.unit(7 + 7/12, "feet"),
  10650. weight: math.unit(267, "lb"),
  10651. name: "Side",
  10652. image: {
  10653. source: "./media/characters/dayza/side.svg",
  10654. extra: 1295/1245 ,
  10655. bottom: 0.05
  10656. }
  10657. },
  10658. back: {
  10659. height: math.unit(7 + 7/12, "feet"),
  10660. weight: math.unit(267, "lb"),
  10661. name: "Back",
  10662. image: {
  10663. source: "./media/characters/dayza/back.svg",
  10664. extra: 1241/1170
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(7 + 7/12, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(155, "feet")
  10677. },
  10678. ]
  10679. )
  10680. };
  10681. characterMakers["Xanthos"] = () => {
  10682. return makeCharacter(
  10683. "Xanthos",
  10684. "ArgentVZ",
  10685. {
  10686. front: {
  10687. height: math.unit(6 + 5/12, "feet"),
  10688. weight: math.unit(160, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/xanthos/front.svg",
  10692. extra: 1,
  10693. bottom: 0.04
  10694. }
  10695. },
  10696. back: {
  10697. height: math.unit(6 + 5/12, "feet"),
  10698. weight: math.unit(160, "lb"),
  10699. name: "Back",
  10700. image: {
  10701. source: "./media/characters/xanthos/back.svg",
  10702. extra: 1,
  10703. bottom: 0.03
  10704. }
  10705. },
  10706. hand: {
  10707. height: math.unit(0.928, "feet"),
  10708. name: "Hand",
  10709. image: {
  10710. source: "./media/characters/xanthos/hand.svg"
  10711. }
  10712. },
  10713. foot: {
  10714. height: math.unit(1.286, "feet"),
  10715. name: "Foot",
  10716. image: {
  10717. source: "./media/characters/xanthos/foot.svg"
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Normal",
  10724. height: math.unit(6 + 5/12, "feet"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Normal+",
  10729. height: math.unit(6, "meters")
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(40, "feet")
  10734. },
  10735. {
  10736. name: "Macro+",
  10737. height: math.unit(200, "meters")
  10738. },
  10739. {
  10740. name: "Megamacro",
  10741. height: math.unit(20, "km")
  10742. },
  10743. {
  10744. name: "Megamacro+",
  10745. height: math.unit(100, "km")
  10746. },
  10747. ]
  10748. )
  10749. };
  10750. characterMakers["Grynn"] = () => {
  10751. return makeCharacter(
  10752. "Grynn",
  10753. "Grynn",
  10754. {
  10755. front: {
  10756. height: math.unit(6 + 3/12, "feet"),
  10757. weight: math.unit(215, "lb"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/grynn/front.svg",
  10761. extra: 4627/4209 ,
  10762. bottom: 0.047
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Micro",
  10769. height: math.unit(6, "inches")
  10770. },
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(6 + 3/12, "feet"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Big",
  10778. height: math.unit(104, "feet")
  10779. },
  10780. {
  10781. name: "Macro",
  10782. height: math.unit(944, "feet")
  10783. },
  10784. {
  10785. name: "Macro+",
  10786. height: math.unit(9480, "feet")
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(78752, "feet")
  10791. },
  10792. {
  10793. name: "Megamacro+",
  10794. height: math.unit(630128, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro++",
  10798. height: math.unit(3150695, "feet")
  10799. },
  10800. ]
  10801. )
  10802. };
  10803. characterMakers["Mocha Aura"] = () => {
  10804. return makeCharacter(
  10805. "Mocha Aura",
  10806. "Mocha-Aura",
  10807. {
  10808. front: {
  10809. height: math.unit(7 + 5/12, "feet"),
  10810. weight: math.unit(450, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/mocha-aura/front.svg",
  10814. extra: 1907/1817 ,
  10815. bottom: 0.04
  10816. }
  10817. },
  10818. back: {
  10819. height: math.unit(7 + 5/12, "feet"),
  10820. weight: math.unit(450, "lb"),
  10821. name: "Back",
  10822. image: {
  10823. source: "./media/characters/mocha-aura/back.svg",
  10824. extra: 1900/1825 ,
  10825. bottom: 0.045
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Nano",
  10832. height: math.unit(1, "nm")
  10833. },
  10834. {
  10835. name: "Megamicro",
  10836. height: math.unit(1, "mm")
  10837. },
  10838. {
  10839. name: "Micro",
  10840. height: math.unit(3, "inches")
  10841. },
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(7 + 5/12, "feet"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Macro",
  10849. height: math.unit(30, "feet")
  10850. },
  10851. {
  10852. name: "Megamacro",
  10853. height: math.unit(3500, "feet")
  10854. },
  10855. {
  10856. name: "Teramacro",
  10857. height: math.unit(500000, "miles")
  10858. },
  10859. {
  10860. name: "Petamacro",
  10861. height: math.unit(50000000000000000 , "parsecs")
  10862. },
  10863. ]
  10864. )
  10865. };
  10866. characterMakers["Ilisha Devya"] = () => {
  10867. return makeCharacter(
  10868. "Ilisha Devya",
  10869. "Neopuc",
  10870. {
  10871. front: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(150, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/ilisha-devya/front.svg",
  10877. extra: 1,
  10878. bottom: 0.175
  10879. }
  10880. },
  10881. back: {
  10882. height: math.unit(6, "feet"),
  10883. weight: math.unit(150, "lb"),
  10884. name: "Back",
  10885. image: {
  10886. source: "./media/characters/ilisha-devya/back.svg",
  10887. extra: 1,
  10888. bottom: 0.015
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(500, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Megamacro",
  10900. height: math.unit(10, "miles")
  10901. },
  10902. {
  10903. name: "Gigamacro",
  10904. height: math.unit(100000, "miles")
  10905. },
  10906. {
  10907. name: "Examacro",
  10908. height: math.unit(1e9, "lightyears")
  10909. },
  10910. {
  10911. name: "Omniversal",
  10912. height: math.unit(1e33, "lightyears")
  10913. },
  10914. {
  10915. name: "Beyond Infinite",
  10916. height: math.unit(1e100, "lightyears")
  10917. },
  10918. ]
  10919. )
  10920. };
  10921. characterMakers["Mira"] = () => {
  10922. return makeCharacter(
  10923. "Mira",
  10924. "Neopuc",
  10925. {
  10926. Side: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Side",
  10930. image: {
  10931. source: "./media/characters/mira/side.svg",
  10932. extra: 900/799 ,
  10933. bottom: 0.02
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Human Size",
  10940. height: math.unit(6, "feet")
  10941. },
  10942. {
  10943. name: "Macro",
  10944. height: math.unit(100, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Megamacro",
  10949. height: math.unit(10, "miles")
  10950. },
  10951. {
  10952. name: "Gigamacro",
  10953. height: math.unit(25000, "miles")
  10954. },
  10955. {
  10956. name: "Teramacro",
  10957. height: math.unit(300, "AU")
  10958. },
  10959. {
  10960. name: "Full Size",
  10961. height: math.unit(4.5e10, "lightyears")
  10962. },
  10963. ]
  10964. )
  10965. };
  10966. characterMakers["Holly"] = () => {
  10967. return makeCharacter(
  10968. "Holly",
  10969. "Neopuc",
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(150, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/holly/front.svg",
  10977. extra: 639/606
  10978. }
  10979. },
  10980. back: {
  10981. height: math.unit(6, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Back",
  10984. image: {
  10985. source: "./media/characters/holly/back.svg",
  10986. extra: 623/598
  10987. }
  10988. },
  10989. frontWorking: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(150, "lb"),
  10992. name: "Front (Working)",
  10993. image: {
  10994. source: "./media/characters/holly/front-working.svg",
  10995. extra: 607/577 ,
  10996. bottom: 0.048
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(12 + 3/12, "feet"),
  11004. default: true
  11005. },
  11006. ]
  11007. )
  11008. };
  11009. characterMakers["Porter"] = () => {
  11010. return makeCharacter(
  11011. "Porter",
  11012. "Neopuc",
  11013. {
  11014. front: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(150, "lb"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/porter/front.svg",
  11020. extra: 1,
  11021. bottom: 0.01
  11022. }
  11023. },
  11024. frontRobes: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(150, "lb"),
  11027. name: "Front (Robes)",
  11028. image: {
  11029. source: "./media/characters/porter/front-robes.svg",
  11030. extra: 1.01 ,
  11031. bottom: 0.01
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Normal",
  11038. height: math.unit(11 + 9/12, "feet"),
  11039. default: true
  11040. },
  11041. ]
  11042. )
  11043. };
  11044. characterMakers["Lucy"] = () => {
  11045. return makeCharacter(
  11046. "Lucy",
  11047. "Jasmith",
  11048. {
  11049. legendary: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(150, "lb"),
  11052. name: "Legendary",
  11053. image: {
  11054. source: "./media/characters/lucy/legendary.svg",
  11055. extra: 1355/1100 ,
  11056. bottom: 0.045
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Legendary",
  11063. height: math.unit(86882*2, "miles"),
  11064. default: true
  11065. },
  11066. ]
  11067. )
  11068. };
  11069. characterMakers["Drusilla"] = () => {
  11070. return makeCharacter(
  11071. "Drusilla",
  11072. "Neopuc",
  11073. {
  11074. front: {
  11075. height: math.unit(6, "feet"),
  11076. weight: math.unit(150, "lb"),
  11077. name: "Front",
  11078. image: {
  11079. source: "./media/characters/drusilla/front.svg",
  11080. extra: 678/635 ,
  11081. bottom: 0.03
  11082. }
  11083. },
  11084. back: {
  11085. height: math.unit(6, "feet"),
  11086. weight: math.unit(150, "lb"),
  11087. name: "Back",
  11088. image: {
  11089. source: "./media/characters/drusilla/back.svg",
  11090. extra: 678/635 ,
  11091. bottom: 0.005
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(100, "feet")
  11099. },
  11100. {
  11101. name: "Canon Height",
  11102. height: math.unit(2000, "feet"),
  11103. default: true
  11104. },
  11105. ]
  11106. )
  11107. };
  11108. characterMakers["Renard Thatch"] = () => {
  11109. return makeCharacter(
  11110. "Renard Thatch",
  11111. "Renard Thatch",
  11112. {
  11113. front: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(180, "lb"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/renard-thatch/front.svg",
  11119. extra: 2411/2275 ,
  11120. bottom: 0.01
  11121. }
  11122. },
  11123. frontPosing: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(180, "lb"),
  11126. name: "Front (Posing)",
  11127. image: {
  11128. source: "./media/characters/renard-thatch/front-posing.svg",
  11129. extra: 2381/2261 ,
  11130. bottom: 0.01
  11131. }
  11132. },
  11133. back: {
  11134. height: math.unit(6, "feet"),
  11135. weight: math.unit(180, "lb"),
  11136. name: "Back",
  11137. image: {
  11138. source: "./media/characters/renard-thatch/back.svg",
  11139. extra: 2428/2288
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Micro",
  11146. height: math.unit(3, "inches")
  11147. },
  11148. {
  11149. name: "Default",
  11150. height: math.unit(6, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(75, "feet")
  11156. },
  11157. ]
  11158. )
  11159. };
  11160. characterMakers["Sekvra"] = () => {
  11161. return makeCharacter(
  11162. "Sekvra",
  11163. "Neopuc",
  11164. {
  11165. front: {
  11166. height: math.unit(1450, "feet"),
  11167. weight: math.unit(1.21e6, "tons"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/sekvra/front.svg",
  11171. extra: 1,
  11172. bottom: 0.03
  11173. }
  11174. },
  11175. frontClothed: {
  11176. height: math.unit(1450, "feet"),
  11177. weight: math.unit(1.21e6, "tons"),
  11178. name: "Front (Clothed)",
  11179. image: {
  11180. source: "./media/characters/sekvra/front-clothed.svg",
  11181. extra: 1,
  11182. bottom: 0.03
  11183. }
  11184. },
  11185. side: {
  11186. height: math.unit(1450, "feet"),
  11187. weight: math.unit(1.21e6, "tons"),
  11188. name: "Side",
  11189. image: {
  11190. source: "./media/characters/sekvra/side.svg",
  11191. extra: 1,
  11192. bottom: 0.025
  11193. }
  11194. },
  11195. back: {
  11196. height: math.unit(1450, "feet"),
  11197. weight: math.unit(1.21e6, "tons"),
  11198. name: "Back",
  11199. image: {
  11200. source: "./media/characters/sekvra/back.svg",
  11201. extra: 1,
  11202. bottom: 0.005
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Macro",
  11209. height: math.unit(1450, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(15000, "feet")
  11215. },
  11216. ]
  11217. )
  11218. };
  11219. characterMakers["Carmine"] = () => {
  11220. return makeCharacter(
  11221. "Carmine",
  11222. "Neopuc",
  11223. {
  11224. front: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(150, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/carmine/front.svg",
  11230. extra: 1,
  11231. bottom: 0.035
  11232. }
  11233. },
  11234. frontArmor: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(150, "lb"),
  11237. name: "Front (Armor)",
  11238. image: {
  11239. source: "./media/characters/carmine/front-armor.svg",
  11240. extra: 1,
  11241. bottom: 0.035
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Large",
  11248. height: math.unit(1, "mile")
  11249. },
  11250. {
  11251. name: "Huge",
  11252. height: math.unit(40, "miles"),
  11253. default: true
  11254. },
  11255. {
  11256. name: "Colossal",
  11257. height: math.unit(2500, "miles")
  11258. },
  11259. ]
  11260. )
  11261. };
  11262. characterMakers["Elyssia"] = () => {
  11263. return makeCharacter(
  11264. "Elyssia",
  11265. "Neopuc",
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/elyssia/front.svg",
  11273. extra: 2201/2035 ,
  11274. bottom: 0.05
  11275. }
  11276. },
  11277. frontClothed: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Front (Clothed)",
  11281. image: {
  11282. source: "./media/characters/elyssia/front-clothed.svg",
  11283. extra: 2201/2035 ,
  11284. bottom: 0.05
  11285. }
  11286. },
  11287. back: {
  11288. height: math.unit(6, "feet"),
  11289. weight: math.unit(150, "lb"),
  11290. name: "Back",
  11291. image: {
  11292. source: "./media/characters/elyssia/back.svg",
  11293. extra: 2201/2035 ,
  11294. bottom: 0.013
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Smaller",
  11301. height: math.unit(150, "feet")
  11302. },
  11303. {
  11304. name: "Standard",
  11305. height: math.unit(1400, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Distracted",
  11310. height: math.unit(15000, "feet")
  11311. },
  11312. ]
  11313. )
  11314. };
  11315. characterMakers["Geno Maxwell"] = () => {
  11316. return makeCharacter(
  11317. "Geno Maxwell",
  11318. "Geckonori",
  11319. {
  11320. front: {
  11321. height: math.unit(7 + 4/12, "feet"),
  11322. weight: math.unit(500, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/geno-maxwell/front.svg",
  11326. extra: 2207/2040 ,
  11327. bottom: 0.015
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Micro",
  11334. height: math.unit(3, "inches")
  11335. },
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(7 + 4/12, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(220, "feet")
  11344. },
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(11, "miles")
  11348. },
  11349. ]
  11350. )
  11351. };
  11352. characterMakers["Regena Maxwell"] = () => {
  11353. return makeCharacter(
  11354. "Regena Maxwell",
  11355. "Geckonori",
  11356. {
  11357. front: {
  11358. height: math.unit(7 + 4/12, "feet"),
  11359. weight: math.unit(500, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/regena-maxwell/front.svg",
  11363. extra: 3115/2770 ,
  11364. bottom: 0.02
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(7 + 4/12, "feet"),
  11372. default: true
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(220, "feet")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(11, "miles")
  11381. },
  11382. ]
  11383. )
  11384. };
  11385. characterMakers["XGlidingDragonX"] = () => {
  11386. return makeCharacter(
  11387. "XGlidingDragonX",
  11388. "XGlidingDragonX",
  11389. {
  11390. front: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(150, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11396. extra: 860/690 ,
  11397. bottom: 0.03
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Normal",
  11404. height: math.unit(1.7, "meters"),
  11405. default: true
  11406. },
  11407. ]
  11408. )
  11409. };
  11410. characterMakers["Quilly"] = () => {
  11411. return makeCharacter(
  11412. "Quilly",
  11413. "Jasmith",
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/quilly/front.svg",
  11421. extra: 890/776
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Gigamacro",
  11428. height: math.unit(404090, "miles"),
  11429. default: true
  11430. },
  11431. ]
  11432. )
  11433. };
  11434. characterMakers["Tempest"] = () => {
  11435. return makeCharacter(
  11436. "Tempest",
  11437. "XsomeoneX",
  11438. {
  11439. front: {
  11440. height: math.unit(7 + 8/12, "feet"),
  11441. weight: math.unit(350, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/tempest/front.svg",
  11445. extra: 1175/1086 ,
  11446. bottom: 0.02
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(7 + 8/12, "feet"),
  11454. default: true
  11455. },
  11456. ]
  11457. )
  11458. };
  11459. characterMakers["Rodger"] = () => {
  11460. return makeCharacter(
  11461. "Rodger",
  11462. "Guywithastupidname",
  11463. {
  11464. side: {
  11465. height: math.unit(4 + 5/12, "feet"),
  11466. weight: math.unit(80, "lb"),
  11467. name: "Side",
  11468. image: {
  11469. source: "./media/characters/rodger/side.svg",
  11470. extra: 1235/1118
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Micro",
  11477. height: math.unit(1, "inch")
  11478. },
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(4 + 5/12, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(120, "feet")
  11487. },
  11488. ]
  11489. )
  11490. };
  11491. characterMakers["Danyel"] = () => {
  11492. return makeCharacter(
  11493. "Danyel",
  11494. "Danyelx",
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(150, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/danyel/front.svg",
  11502. extra: 1185/1123 ,
  11503. bottom: 0.05
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Shrunken",
  11510. height: math.unit(0.5, "mm")
  11511. },
  11512. {
  11513. name: "Micro",
  11514. height: math.unit(1, "mm"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Upsized",
  11519. height: math.unit(5 + 5/12, "feet")
  11520. },
  11521. ]
  11522. )
  11523. };
  11524. characterMakers["Vivian Bijoux"] = () => {
  11525. return makeCharacter(
  11526. "Vivian Bijoux",
  11527. "Geckonori",
  11528. {
  11529. front: {
  11530. height: math.unit(5 + 6/12, "feet"),
  11531. weight: math.unit(200, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/vivian-bijoux/front.svg",
  11535. extra: 1,
  11536. bottom: 0.072
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(5 + 6/12, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Bad Dream",
  11548. height: math.unit(500, "feet")
  11549. },
  11550. {
  11551. name: "Nightmare",
  11552. height: math.unit(500, "miles")
  11553. },
  11554. ]
  11555. )
  11556. };
  11557. characterMakers["Zeta"] = () => {
  11558. return makeCharacter(
  11559. "Zeta",
  11560. "thenerdherd102",
  11561. {
  11562. front: {
  11563. height: math.unit(6 + 1/12, "feet"),
  11564. weight: math.unit(260, "lb"),
  11565. name: "Front",
  11566. image: {
  11567. source: "./media/characters/zeta/front.svg",
  11568. extra: 1968/1889 ,
  11569. bottom: 0.06
  11570. }
  11571. },
  11572. back: {
  11573. height: math.unit(6 + 1/12, "feet"),
  11574. weight: math.unit(260, "lb"),
  11575. name: "Back",
  11576. image: {
  11577. source: "./media/characters/zeta/back.svg",
  11578. extra: 1944/1858 ,
  11579. bottom: 0.03
  11580. }
  11581. },
  11582. hand: {
  11583. height: math.unit(1.112, "feet"),
  11584. name: "Hand",
  11585. image: {
  11586. source: "./media/characters/zeta/hand.svg"
  11587. }
  11588. },
  11589. foot: {
  11590. height: math.unit(1.48, "feet"),
  11591. name: "Foot",
  11592. image: {
  11593. source: "./media/characters/zeta/foot.svg"
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Micro",
  11600. height: math.unit(6, "inches")
  11601. },
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(6 + 1/12, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(20, "feet")
  11610. },
  11611. ]
  11612. )
  11613. };
  11614. characterMakers["Jamie Larsen"] = () => {
  11615. return makeCharacter(
  11616. "Jamie Larsen",
  11617. "Mt_Jamie_Larsen",
  11618. {
  11619. front: {
  11620. height: math.unit(6, "feet"),
  11621. weight: math.unit(150, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/jamie-larsen/front.svg",
  11625. extra: 962/933 ,
  11626. bottom: 0.02
  11627. }
  11628. },
  11629. back: {
  11630. height: math.unit(6, "feet"),
  11631. weight: math.unit(150, "lb"),
  11632. name: "Back",
  11633. image: {
  11634. source: "./media/characters/jamie-larsen/back.svg",
  11635. extra: 997/946
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Macro",
  11642. height: math.unit(28 + 7/12, "feet"),
  11643. default: true
  11644. },
  11645. {
  11646. name: "Macro+",
  11647. height: math.unit(180, "feet")
  11648. },
  11649. {
  11650. name: "Megamacro",
  11651. height: math.unit(10, "miles")
  11652. },
  11653. {
  11654. name: "Gigamacro",
  11655. height: math.unit(200000, "miles")
  11656. },
  11657. ]
  11658. )
  11659. };
  11660. characterMakers["Vance"] = () => {
  11661. return makeCharacter(
  11662. "Vance",
  11663. "Neopuc",
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(120, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/vance/front.svg",
  11671. extra: 1980/1890 ,
  11672. bottom: 0.09
  11673. }
  11674. },
  11675. back: {
  11676. height: math.unit(6, "feet"),
  11677. weight: math.unit(120, "lb"),
  11678. name: "Back",
  11679. image: {
  11680. source: "./media/characters/vance/back.svg",
  11681. extra: 2081/1994 ,
  11682. bottom: 0.014
  11683. }
  11684. },
  11685. hand: {
  11686. height: math.unit(0.88, "feet"),
  11687. name: "Hand",
  11688. image: {
  11689. source: "./media/characters/vance/hand.svg"
  11690. }
  11691. },
  11692. foot: {
  11693. height: math.unit(0.64, "feet"),
  11694. name: "Foot",
  11695. image: {
  11696. source: "./media/characters/vance/foot.svg"
  11697. }
  11698. },
  11699. },
  11700. [
  11701. {
  11702. name: "Small",
  11703. height: math.unit(90, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(100, "meters")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(15, "miles")
  11713. },
  11714. ]
  11715. )
  11716. };
  11717. characterMakers["Xochitl"] = () => {
  11718. return makeCharacter(
  11719. "Xochitl",
  11720. "Neopuc",
  11721. {
  11722. front: {
  11723. height: math.unit(6, "feet"),
  11724. weight: math.unit(180, "lb"),
  11725. name: "Front",
  11726. image: {
  11727. source: "./media/characters/xochitl/front.svg",
  11728. extra: 2297/2261 ,
  11729. bottom: 0.065
  11730. }
  11731. },
  11732. back: {
  11733. height: math.unit(6, "feet"),
  11734. weight: math.unit(180, "lb"),
  11735. name: "Back",
  11736. image: {
  11737. source: "./media/characters/xochitl/back.svg",
  11738. extra: 2386/2354 ,
  11739. bottom: 0.01
  11740. }
  11741. },
  11742. foot: {
  11743. height: math.unit(6/5 * 1.15, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Foot",
  11746. image: {
  11747. source: "./media/characters/xochitl/foot.svg"
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Macro",
  11754. height: math.unit(80, "feet")
  11755. },
  11756. {
  11757. name: "Macro+",
  11758. height: math.unit(400, "feet"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Gigamacro",
  11763. height: math.unit(80000, "miles")
  11764. },
  11765. {
  11766. name: "Gigamacro+",
  11767. height: math.unit(400000, "miles")
  11768. },
  11769. {
  11770. name: "Teramacro",
  11771. height: math.unit(300, "AU")
  11772. },
  11773. ]
  11774. )
  11775. };
  11776. characterMakers["Vincent"] = () => {
  11777. return makeCharacter(
  11778. "Vincent",
  11779. "Neopuc",
  11780. {
  11781. front: {
  11782. height: math.unit(6, "feet"),
  11783. weight: math.unit(150, "lb"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/vincent/front.svg",
  11787. extra: 1130/1080 ,
  11788. bottom: 0.055
  11789. }
  11790. },
  11791. beak: {
  11792. height: math.unit(6 * 0.1, "feet"),
  11793. name: "Beak",
  11794. image: {
  11795. source: "./media/characters/vincent/beak.svg"
  11796. }
  11797. },
  11798. hand: {
  11799. height: math.unit(6 * 0.85, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Hand",
  11802. image: {
  11803. source: "./media/characters/vincent/hand.svg"
  11804. }
  11805. },
  11806. foot: {
  11807. height: math.unit(6 * 0.19, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Foot",
  11810. image: {
  11811. source: "./media/characters/vincent/foot.svg"
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Base",
  11818. height: math.unit(6 + 5/12, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(300, "feet")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(2, "miles")
  11828. },
  11829. {
  11830. name: "Gigamacro",
  11831. height: math.unit(1000, "miles")
  11832. },
  11833. ]
  11834. )
  11835. };
  11836. characterMakers["Jay"] = () => {
  11837. return makeCharacter(
  11838. "Jay",
  11839. "J-Forse",
  11840. {
  11841. front: {
  11842. height: math.unit(6 + 2/12, "feet"),
  11843. weight: math.unit(65, "lb"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/jay/front.svg",
  11847. extra: 1510/1430 ,
  11848. bottom: 0.042
  11849. }
  11850. },
  11851. back: {
  11852. height: math.unit(6 + 2/12, "feet"),
  11853. weight: math.unit(65, "lb"),
  11854. name: "Back",
  11855. image: {
  11856. source: "./media/characters/jay/back.svg",
  11857. extra: 1510/1430 ,
  11858. bottom: 0.025
  11859. }
  11860. },
  11861. clothed: {
  11862. height: math.unit(6 + 2/12, "feet"),
  11863. weight: math.unit(65, "lb"),
  11864. name: "Front (Clothed)",
  11865. image: {
  11866. source: "./media/characters/jay/clothed.svg",
  11867. extra: 744/699 ,
  11868. bottom: 0.043
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Micro",
  11875. height: math.unit(1, "inch")
  11876. },
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(6 + 2/12, "feet"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(1, "mile")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(100, "miles")
  11889. },
  11890. ]
  11891. )
  11892. };
  11893. characterMakers["Coatl"] = () => {
  11894. return makeCharacter(
  11895. "Coatl",
  11896. "Jagaz",
  11897. {
  11898. front: {
  11899. height: math.unit(2, "meters"),
  11900. weight: math.unit(500 , "kg"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/coatl/front.svg",
  11904. extra: 3948 / 3500 ,
  11905. bottom: 0.082
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(4, "meters")
  11913. },
  11914. {
  11915. name: "Macro",
  11916. height: math.unit(100, "meters"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Macro+",
  11921. height: math.unit(300, "meters")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(3, "gigameters")
  11926. },
  11927. {
  11928. name: "Megamacro+",
  11929. height: math.unit(300, "terameters")
  11930. },
  11931. {
  11932. name: "Megamacro++",
  11933. height: math.unit(3, "lightyears")
  11934. },
  11935. ]
  11936. )
  11937. };
  11938. characterMakers["Shiroryu"] = () => {
  11939. return makeCharacter(
  11940. "Shiroryu",
  11941. "Roxas00137",
  11942. {
  11943. front: {
  11944. height: math.unit(6, "feet"),
  11945. weight: math.unit(50, "kg"),
  11946. name: "front",
  11947. image: {
  11948. source: "./media/characters/shiroryu/front.svg",
  11949. extra: 1990/1935
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Mortal Mingling",
  11956. height: math.unit(3, "meters")
  11957. },
  11958. {
  11959. name: "Kaiju-ish",
  11960. height: math.unit(250, "meters")
  11961. },
  11962. {
  11963. name: "Somewhat Godly",
  11964. height: math.unit(400, "km"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Planetary",
  11969. height: math.unit(300, "megameters")
  11970. },
  11971. {
  11972. name: "Galaxy-dwarfing",
  11973. height: math.unit(450, "kiloparsecs")
  11974. },
  11975. {
  11976. name: "Universe Eater",
  11977. height: math.unit(150, "gigaparsecs")
  11978. },
  11979. {
  11980. name: "Almost Immeasurable",
  11981. height: math.unit(1.3e266, "yottaparsecs")
  11982. },
  11983. ]
  11984. )
  11985. };
  11986. characterMakers["Umeko"] = () => {
  11987. return makeCharacter(
  11988. "Umeko",
  11989. "Neopuc",
  11990. {
  11991. front: {
  11992. height: math.unit(6, "feet"),
  11993. weight: math.unit(150, "lb"),
  11994. name: "Front",
  11995. image: {
  11996. source: "./media/characters/umeko/front.svg",
  11997. extra: 1,
  11998. bottom: 0.019
  11999. }
  12000. },
  12001. frontArmored: {
  12002. height: math.unit(6, "feet"),
  12003. weight: math.unit(150, "lb"),
  12004. name: "Front (Armored)",
  12005. image: {
  12006. source: "./media/characters/umeko/front-armored.svg",
  12007. extra: 1,
  12008. bottom: 0.021
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(220, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Guardian Dragon",
  12020. height: math.unit(50, "miles")
  12021. },
  12022. {
  12023. name: "Cosmic",
  12024. height: math.unit(800000, "miles")
  12025. },
  12026. ]
  12027. )
  12028. };
  12029. characterMakers["Cassidy"] = () => {
  12030. return makeCharacter(
  12031. "Cassidy",
  12032. "Neopuc",
  12033. {
  12034. front: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(150, "lb"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/cassidy/front.svg",
  12040. extra: 1,
  12041. bottom: 0.043
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Canon Height",
  12048. height: math.unit(120, "feet"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Macro+",
  12053. height: math.unit(400, "feet")
  12054. },
  12055. {
  12056. name: "Macro++",
  12057. height: math.unit(4000, "feet")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(3, "miles")
  12062. },
  12063. ]
  12064. )
  12065. };
  12066. characterMakers["Isaac"] = () => {
  12067. return makeCharacter(
  12068. "Isaac",
  12069. "Neopuc",
  12070. {
  12071. front: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(150, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/isaac/front.svg",
  12077. extra: 896/815 ,
  12078. bottom: 0.11
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Human Size",
  12085. height: math.unit(8, "feet"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(400, "feet")
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(50, "miles")
  12095. },
  12096. {
  12097. name: "Canon Height",
  12098. height: math.unit(200, "AU")
  12099. },
  12100. ]
  12101. )
  12102. };
  12103. characterMakers["Sleekit"] = () => {
  12104. return makeCharacter(
  12105. "Sleekit",
  12106. "AnAnonymousIndividual",
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(72, "kg"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/sleekit/front.svg",
  12114. extra: 4693/4487 ,
  12115. bottom: 0.012
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Minimum Height",
  12122. height: math.unit(10, "meters")
  12123. },
  12124. {
  12125. name: "Smaller",
  12126. height: math.unit(25, "meters")
  12127. },
  12128. {
  12129. name: "Larger",
  12130. height: math.unit(38, "meters"),
  12131. default: true
  12132. },
  12133. {
  12134. name: "Maximum height",
  12135. height: math.unit(100, "meters")
  12136. },
  12137. ]
  12138. )
  12139. };
  12140. characterMakers["Nillia"] = () => {
  12141. return makeCharacter(
  12142. "Nillia",
  12143. "Neopuc",
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/nillia/front.svg",
  12151. extra: 2195/2037 ,
  12152. bottom: 0.005
  12153. }
  12154. },
  12155. back: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(150, "lb"),
  12158. name: "Back",
  12159. image: {
  12160. source: "./media/characters/nillia/back.svg",
  12161. extra: 2195/2037 ,
  12162. bottom: 0.005
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Canon Height",
  12169. height: math.unit(489, "feet"),
  12170. default: true
  12171. }
  12172. ]
  12173. )
  12174. };
  12175. characterMakers["Mesmyriza"] = () => {
  12176. return makeCharacter(
  12177. "Mesmyriza",
  12178. "-fluffy-",
  12179. {
  12180. front: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/mesmyriza/front.svg",
  12186. extra: 2067/1784 ,
  12187. bottom: 0.035
  12188. }
  12189. },
  12190. foot: {
  12191. height: math.unit(6/(250/35), "feet"),
  12192. name: "Foot",
  12193. image: {
  12194. source: "./media/characters/mesmyriza/foot.svg"
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Macro",
  12201. height: math.unit(457, "meters"),
  12202. default: true
  12203. },
  12204. {
  12205. name: "Megamacro",
  12206. height: math.unit(8, "megameters")
  12207. },
  12208. ]
  12209. )
  12210. };
  12211. characterMakers["Saudade"] = () => {
  12212. return makeCharacter(
  12213. "Saudade",
  12214. "lordbo",
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(250, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/saudade/front.svg",
  12222. extra: 1172/1139 ,
  12223. bottom: 0.035
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(3, "inches")
  12231. },
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(6, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Macro",
  12239. height: math.unit(50, "feet")
  12240. },
  12241. {
  12242. name: "Megamacro",
  12243. height: math.unit(2800, "feet")
  12244. },
  12245. ]
  12246. )
  12247. };
  12248. characterMakers["Keireer"] = () => {
  12249. return makeCharacter(
  12250. "Keireer",
  12251. "teedash",
  12252. {
  12253. front: {
  12254. height: math.unit(5 + 4/12, "feet"),
  12255. weight: math.unit(100, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/keireer/front.svg",
  12259. extra: 716/666 ,
  12260. bottom: 0.05
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(5 + 4/12, "feet"),
  12268. default: true
  12269. },
  12270. ]
  12271. )
  12272. };
  12273. characterMakers["Mirja"] = () => {
  12274. return makeCharacter(
  12275. "Mirja",
  12276. "vabad",
  12277. {
  12278. front: {
  12279. height: math.unit(6, "feet"),
  12280. weight: math.unit(90, "kg"),
  12281. name: "Front",
  12282. image: {
  12283. source: "./media/characters/mirja/front.svg",
  12284. extra: 1789/1683 ,
  12285. bottom: 0.05
  12286. }
  12287. },
  12288. frontDressed: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(90, "lb"),
  12291. name: "Front (Dressed)",
  12292. image: {
  12293. source: "./media/characters/mirja/front-dressed.svg",
  12294. extra: 1789/1683 ,
  12295. bottom: 0.05
  12296. }
  12297. },
  12298. back: {
  12299. height: math.unit(6, "feet"),
  12300. weight: math.unit(90, "lb"),
  12301. name: "Back",
  12302. image: {
  12303. source: "./media/characters/mirja/back.svg",
  12304. extra: 953/917 ,
  12305. bottom: 0.017
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "\"Incognito\"",
  12312. height: math.unit(3, "meters")
  12313. },
  12314. {
  12315. name: "Strolling Size",
  12316. height: math.unit(15, "km")
  12317. },
  12318. {
  12319. name: "Larger Strolling Size",
  12320. height: math.unit(400, "km")
  12321. },
  12322. {
  12323. name: "Preferred Size",
  12324. height: math.unit(5000, "km")
  12325. },
  12326. {
  12327. name: "True Size",
  12328. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12329. default: true
  12330. },
  12331. ]
  12332. )
  12333. };
  12334. characterMakers["Nightraver"] = () => {
  12335. return makeCharacter(
  12336. "Nightraver",
  12337. "Nightraver",
  12338. {
  12339. front: {
  12340. height: math.unit(15, "feet"),
  12341. weight: math.unit(880, "kg"),
  12342. name: "Front",
  12343. image: {
  12344. source: "./media/characters/nightraver/front.svg",
  12345. extra: 2444/2160 ,
  12346. bottom: 0.027
  12347. }
  12348. },
  12349. back: {
  12350. height: math.unit(15, "feet"),
  12351. weight: math.unit(880, "kg"),
  12352. name: "Back",
  12353. image: {
  12354. source: "./media/characters/nightraver/back.svg",
  12355. extra: 2309/2180 ,
  12356. bottom: 0.005
  12357. }
  12358. },
  12359. sole: {
  12360. height: math.unit(2.878, "feet"),
  12361. name: "Sole",
  12362. image: {
  12363. source: "./media/characters/nightraver/sole.svg"
  12364. }
  12365. },
  12366. foot: {
  12367. height: math.unit(2.285, "feet"),
  12368. name: "Foot",
  12369. image: {
  12370. source: "./media/characters/nightraver/foot.svg"
  12371. }
  12372. },
  12373. maw: {
  12374. height: math.unit(2.67, "feet"),
  12375. name: "Maw",
  12376. image: {
  12377. source: "./media/characters/nightraver/maw.svg"
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Micro",
  12384. height: math.unit(1, "cm")
  12385. },
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(15, "feet"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Macro",
  12393. height: math.unit(300, "feet")
  12394. },
  12395. {
  12396. name: "Megamacro",
  12397. height: math.unit(300, "miles")
  12398. },
  12399. {
  12400. name: "Gigamacro",
  12401. height: math.unit(10000, "miles")
  12402. },
  12403. ]
  12404. )
  12405. };
  12406. characterMakers["Arc"] = () => {
  12407. return makeCharacter(
  12408. "Arc",
  12409. "DinoKiddo",
  12410. {
  12411. side: {
  12412. height: math.unit(2, "inches"),
  12413. weight: math.unit(5, "grams"),
  12414. name: "Side",
  12415. image: {
  12416. source: "./media/characters/arc/side.svg"
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Micro",
  12423. height: math.unit(2, "inches"),
  12424. default: true
  12425. },
  12426. ]
  12427. )
  12428. };
  12429. characterMakers["Nebula Shahar"] = () => {
  12430. return makeCharacter(
  12431. "Nebula Shahar",
  12432. "Kypleo",
  12433. {
  12434. front: {
  12435. height: math.unit(1.1938, "meters"),
  12436. weight: math.unit(54, "kg"),
  12437. name: "Front",
  12438. image: {
  12439. source: "./media/characters/nebula-shahar/front.svg",
  12440. extra: 1642/1436 ,
  12441. bottom: 0.06
  12442. }
  12443. },
  12444. },
  12445. [
  12446. {
  12447. name: "Megamicro",
  12448. height: math.unit(0.3, "mm")
  12449. },
  12450. {
  12451. name: "Micro",
  12452. height: math.unit(3, "cm")
  12453. },
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(138, "cm"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Macro",
  12461. height: math.unit(30, "m")
  12462. },
  12463. ]
  12464. )
  12465. };
  12466. characterMakers["Shayla"] = () => {
  12467. return makeCharacter(
  12468. "Shayla",
  12469. "Ziralkia",
  12470. {
  12471. front: {
  12472. height: math.unit(5.24, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/shayla/front.svg",
  12477. extra: 1512/1414 ,
  12478. bottom: 0.01
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(5.24, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/shayla/back.svg",
  12487. extra: 1512/1414
  12488. }
  12489. },
  12490. hand: {
  12491. height: math.unit(0.7781496062992126, "feet"),
  12492. name: "Hand",
  12493. image: {
  12494. source: "./media/characters/shayla/hand.svg"
  12495. }
  12496. },
  12497. foot: {
  12498. height: math.unit(1.4206036745406823, "feet"),
  12499. name: "Foot",
  12500. image: {
  12501. source: "./media/characters/shayla/foot.svg"
  12502. }
  12503. },
  12504. },
  12505. [
  12506. {
  12507. name: "Micro",
  12508. height: math.unit(0.32, "feet")
  12509. },
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(5.24, "feet"),
  12513. default: true
  12514. },
  12515. {
  12516. name: "Macro",
  12517. height: math.unit(492.12, "feet")
  12518. },
  12519. {
  12520. name: "Megamacro",
  12521. height: math.unit(186.41, "miles")
  12522. },
  12523. ]
  12524. )
  12525. };
  12526. characterMakers["Pia Jr."] = () => {
  12527. return makeCharacter(
  12528. "Pia Jr.",
  12529. "Ziralkia",
  12530. {
  12531. front: {
  12532. height: math.unit(2.2, "m"),
  12533. weight: math.unit(120, "kg"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/pia-jr/front.svg",
  12537. extra: 1000/970 ,
  12538. bottom: 0.035
  12539. }
  12540. },
  12541. hand: {
  12542. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12543. name: "Hand",
  12544. image: {
  12545. source: "./media/characters/pia-jr/hand.svg"
  12546. }
  12547. },
  12548. paw: {
  12549. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12550. name: "Paw",
  12551. image: {
  12552. source: "./media/characters/pia-jr/paw.svg"
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Micro",
  12559. height: math.unit(1.2, "cm")
  12560. },
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(2.2, "m"),
  12564. default: true
  12565. },
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(180, "m")
  12569. },
  12570. {
  12571. name: "Megamacro",
  12572. height: math.unit(420, "km")
  12573. },
  12574. ]
  12575. )
  12576. };
  12577. characterMakers["Pia Sr."] = () => {
  12578. return makeCharacter(
  12579. "Pia Sr.",
  12580. "Ziralkia",
  12581. {
  12582. front: {
  12583. height: math.unit(2, "m"),
  12584. weight: math.unit(115, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/pia-sr/front.svg",
  12588. extra: 760/730 ,
  12589. bottom: 0.015
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(2, "m"),
  12594. weight: math.unit(115, "kg"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/pia-sr/back.svg",
  12598. extra: 760/730 ,
  12599. bottom: 0.01
  12600. }
  12601. },
  12602. hand: {
  12603. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12604. name: "Hand",
  12605. image: {
  12606. source: "./media/characters/pia-sr/hand.svg"
  12607. }
  12608. },
  12609. foot: {
  12610. height: math.unit(1.83, "feet"),
  12611. name: "Foot",
  12612. image: {
  12613. source: "./media/characters/pia-sr/foot.svg"
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Micro",
  12620. height: math.unit(88, "mm")
  12621. },
  12622. {
  12623. name: "Normal",
  12624. height: math.unit(2, "m"),
  12625. default: true
  12626. },
  12627. {
  12628. name: "Macro",
  12629. height: math.unit(200, "m")
  12630. },
  12631. {
  12632. name: "Megamacro",
  12633. height: math.unit(420, "km")
  12634. },
  12635. ]
  12636. )
  12637. };
  12638. characterMakers["KIBIBYTE"] = () => {
  12639. return makeCharacter(
  12640. "KIBIBYTE",
  12641. "gamefreak1215",
  12642. {
  12643. front: {
  12644. height: math.unit(8 + 2/12, "feet"),
  12645. weight: math.unit(300, "lb"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/kibibyte/front.svg",
  12649. extra: 2221/2098 ,
  12650. bottom: 0.04
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Normal",
  12657. height: math.unit(8 + 2/12, "feet"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Socialable Macro",
  12662. height: math.unit(50, "feet")
  12663. },
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(300, "feet")
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(500, "miles")
  12671. },
  12672. ]
  12673. )
  12674. };
  12675. characterMakers["Felix"] = () => {
  12676. return makeCharacter(
  12677. "Felix",
  12678. "MeanDumpsterCat",
  12679. {
  12680. front: {
  12681. height: math.unit(6, "feet"),
  12682. weight: math.unit(150, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/felix/front.svg",
  12686. extra: 762/722 ,
  12687. bottom: 0.02
  12688. }
  12689. },
  12690. frontClothed: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front (Clothed)",
  12694. image: {
  12695. source: "./media/characters/felix/front-clothed.svg",
  12696. extra: 762/722 ,
  12697. bottom: 0.02
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Normal",
  12704. height: math.unit(6 + 8/12, "feet"),
  12705. default: true
  12706. },
  12707. {
  12708. name: "Macro",
  12709. height: math.unit(2600, "feet")
  12710. },
  12711. {
  12712. name: "Megamacro",
  12713. height: math.unit(450, "miles")
  12714. },
  12715. ]
  12716. )
  12717. };
  12718. characterMakers["Tobo"] = () => {
  12719. return makeCharacter(
  12720. "Tobo",
  12721. "Naoya_Raichi",
  12722. {
  12723. front: {
  12724. height: math.unit(6 + 1/12, "feet"),
  12725. weight: math.unit(250, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/tobo/front.svg",
  12729. extra: 608/586 ,
  12730. bottom: 0.023
  12731. }
  12732. },
  12733. back: {
  12734. height: math.unit(6 + 1/12, "feet"),
  12735. weight: math.unit(250, "lb"),
  12736. name: "Back",
  12737. image: {
  12738. source: "./media/characters/tobo/back.svg",
  12739. extra: 608/586
  12740. }
  12741. },
  12742. },
  12743. [
  12744. {
  12745. name: "Nano",
  12746. height: math.unit(2, "nm")
  12747. },
  12748. {
  12749. name: "Megamicro",
  12750. height: math.unit(0.1, "mm")
  12751. },
  12752. {
  12753. name: "Micro",
  12754. height: math.unit(1, "inch"),
  12755. default: true
  12756. },
  12757. {
  12758. name: "Human-sized",
  12759. height: math.unit(6 + 1/12, "feet")
  12760. },
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(250, "feet")
  12764. },
  12765. {
  12766. name: "Megamacro",
  12767. height: math.unit(75, "miles")
  12768. },
  12769. {
  12770. name: "Texas-sized",
  12771. height: math.unit(750, "miles")
  12772. },
  12773. {
  12774. name: "Teramacro",
  12775. height: math.unit(50000, "miles")
  12776. },
  12777. ]
  12778. )
  12779. };
  12780. characterMakers["Danny Kapowsky"] = () => {
  12781. return makeCharacter(
  12782. "Danny Kapowsky",
  12783. "nh63879",
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(269, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/danny-kapowsky/front.svg",
  12791. extra: 766/736 ,
  12792. bottom: 0.044
  12793. }
  12794. },
  12795. back: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(269, "lb"),
  12798. name: "Back",
  12799. image: {
  12800. source: "./media/characters/danny-kapowsky/back.svg",
  12801. extra: 797/760 ,
  12802. bottom: 0.025
  12803. }
  12804. },
  12805. },
  12806. [
  12807. {
  12808. name: "Macro",
  12809. height: math.unit(150, "feet"),
  12810. default: true
  12811. },
  12812. {
  12813. name: "Macro+",
  12814. height: math.unit(200, "feet")
  12815. },
  12816. {
  12817. name: "Macro++",
  12818. height: math.unit(300, "feet")
  12819. },
  12820. {
  12821. name: "Macro+++",
  12822. height: math.unit(400, "feet")
  12823. },
  12824. ]
  12825. )
  12826. };
  12827. characterMakers["Finn"] = () => {
  12828. return makeCharacter(
  12829. "Finn",
  12830. "Finn-The-Fennecfox",
  12831. {
  12832. side: {
  12833. height: math.unit(6, "feet"),
  12834. weight: math.unit(170, "lb"),
  12835. name: "Side",
  12836. image: {
  12837. source: "./media/characters/finn/side.svg",
  12838. extra: 1953/1807 ,
  12839. bottom: 0.057
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Megamacro",
  12846. height: math.unit(14445, "feet"),
  12847. default: true
  12848. },
  12849. ]
  12850. )
  12851. };
  12852. characterMakers["Roy"] = () => {
  12853. return makeCharacter(
  12854. "Roy",
  12855. "dracodare",
  12856. {
  12857. front: {
  12858. height: math.unit(5 + 6/12, "feet"),
  12859. weight: math.unit(125, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/roy/front.svg",
  12863. extra: 1,
  12864. bottom: 0.11
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Micro",
  12871. height: math.unit(3, "inches"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(5 + 6/12, "feet")
  12877. },
  12878. {
  12879. name: "Lesser Macro",
  12880. height: math.unit(60, "feet")
  12881. },
  12882. {
  12883. name: "Greater Macro",
  12884. height: math.unit(120, "feet")
  12885. },
  12886. ]
  12887. )
  12888. };
  12889. characterMakers["Aevsivs"] = () => {
  12890. return makeCharacter(
  12891. "Aevsivs",
  12892. "Aevsivs",
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(100, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/aevsivs/front.svg",
  12900. extra: 1,
  12901. bottom: 0.03
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(100, "lb"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/aevsivs/back.svg"
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Micro",
  12916. height: math.unit(2, "inches"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(5, "feet")
  12922. },
  12923. ]
  12924. )
  12925. };
  12926. characterMakers["Hildegard"] = () => {
  12927. return makeCharacter(
  12928. "Hildegard",
  12929. "Fidchell",
  12930. {
  12931. front: {
  12932. height: math.unit(5 + 7/12, "feet"),
  12933. weight: math.unit(159, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/hildegard/front.svg",
  12937. extra: 312/286 ,
  12938. bottom: 0.005
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(5 + 7/12, "feet"),
  12946. default: true
  12947. },
  12948. ]
  12949. )
  12950. };
  12951. characterMakers["Bernard & Wilder"] = () => {
  12952. return makeCharacter(
  12953. "Bernard & Wilder",
  12954. "Fidchell",
  12955. {
  12956. bernard: {
  12957. height: math.unit(2 + 7/12, "feet"),
  12958. weight: math.unit(66, "lb"),
  12959. name: "Bernard",
  12960. rename: true,
  12961. image: {
  12962. source: "./media/characters/bernard-wilder/bernard.svg",
  12963. extra: 192/128 ,
  12964. bottom: 0.05
  12965. }
  12966. },
  12967. wilder: {
  12968. height: math.unit(5 + 8/12, "feet"),
  12969. weight: math.unit(143, "lb"),
  12970. name: "Wilder",
  12971. rename: true,
  12972. image: {
  12973. source: "./media/characters/bernard-wilder/wilder.svg",
  12974. extra: 361/312 ,
  12975. bottom: 0.02
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(2 + 7/12, "feet"),
  12983. default: true
  12984. },
  12985. ]
  12986. )
  12987. };
  12988. characterMakers["Hearth"] = () => {
  12989. return makeCharacter(
  12990. "Hearth",
  12991. "Fidchell",
  12992. {
  12993. anthro: {
  12994. height: math.unit(6 + 1/12, "feet"),
  12995. weight: math.unit(155, "lb"),
  12996. name: "Anthro",
  12997. image: {
  12998. source: "./media/characters/hearth/anthro.svg",
  12999. extra: 260/250 ,
  13000. bottom: 0.02
  13001. }
  13002. },
  13003. feral: {
  13004. height: math.unit(3.78, "feet"),
  13005. weight: math.unit(35, "kg"),
  13006. name: "Feral",
  13007. image: {
  13008. source: "./media/characters/hearth/feral.svg",
  13009. extra: 153/135 ,
  13010. bottom: 0.03
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(6 + 1/12, "feet"),
  13018. default: true
  13019. },
  13020. ]
  13021. )
  13022. };
  13023. characterMakers["Ingrid"] = () => {
  13024. return makeCharacter(
  13025. "Ingrid",
  13026. "Fidchell",
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(182, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/ingrid/front.svg",
  13034. extra: 294/268 ,
  13035. bottom: 0.027
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(6, "feet"),
  13043. default: true
  13044. },
  13045. ]
  13046. )
  13047. };
  13048. characterMakers["Malgam"] = () => {
  13049. return makeCharacter(
  13050. "Malgam",
  13051. "Fidchell",
  13052. {
  13053. eevee: {
  13054. height: math.unit(2 + 10/12, "feet"),
  13055. weight: math.unit(86, "lb"),
  13056. name: "Malgam",
  13057. image: {
  13058. source: "./media/characters/malgam/eevee.svg",
  13059. extra: 218/180 ,
  13060. bottom: 0.2
  13061. }
  13062. },
  13063. sylveon: {
  13064. height: math.unit(4, "feet"),
  13065. weight: math.unit(101, "lb"),
  13066. name: "Future Malgam",
  13067. rename: true,
  13068. image: {
  13069. source: "./media/characters/malgam/sylveon.svg",
  13070. extra: 371/325 ,
  13071. bottom: 0.015
  13072. }
  13073. },
  13074. gigantamax: {
  13075. height: math.unit(50, "feet"),
  13076. name: "Gigantamax Malgam",
  13077. rename: true,
  13078. image: {
  13079. source: "./media/characters/malgam/gigantamax.svg"
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(2 + 10/12, "feet"),
  13087. default: true
  13088. },
  13089. ]
  13090. )
  13091. };
  13092. characterMakers["Fleur"] = () => {
  13093. return makeCharacter(
  13094. "Fleur",
  13095. "Fidchell",
  13096. {
  13097. front: {
  13098. height: math.unit(5 + 11/12, "feet"),
  13099. weight: math.unit(188, "lb"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/fleur/front.svg",
  13103. extra: 309/283 ,
  13104. bottom: 0.007
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Normal",
  13111. height: math.unit(5 + 11/12, "feet"),
  13112. default: true
  13113. },
  13114. ]
  13115. )
  13116. };
  13117. characterMakers["Jude"] = () => {
  13118. return makeCharacter(
  13119. "Jude",
  13120. "Fidchell",
  13121. {
  13122. front: {
  13123. height: math.unit(5 + 4/12, "feet"),
  13124. weight: math.unit(122, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/jude/front.svg",
  13128. extra: 288/273 ,
  13129. bottom: 0.03
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Normal",
  13136. height: math.unit(5 + 4/12, "feet"),
  13137. default: true
  13138. },
  13139. ]
  13140. )
  13141. };
  13142. characterMakers["Seara"] = () => {
  13143. return makeCharacter(
  13144. "Seara",
  13145. "Fidchell",
  13146. {
  13147. front: {
  13148. height: math.unit(5 + 11/12, "feet"),
  13149. weight: math.unit(190, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/seara/front.svg",
  13153. extra: 1,
  13154. bottom: 0.05
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Normal",
  13161. height: math.unit(5 + 11/12, "feet"),
  13162. default: true
  13163. },
  13164. ]
  13165. )
  13166. };
  13167. characterMakers["Caspian"] = () => {
  13168. return makeCharacter(
  13169. "Caspian",
  13170. "Fidchell",
  13171. {
  13172. front: {
  13173. height: math.unit(16 + 5/12, "feet"),
  13174. weight: math.unit(524, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/caspian/front.svg",
  13178. extra: 1,
  13179. bottom: 0.04
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(16 + 5/12, "feet"),
  13187. default: true
  13188. },
  13189. ]
  13190. )
  13191. };
  13192. characterMakers["Mika"] = () => {
  13193. return makeCharacter(
  13194. "Mika",
  13195. "Fidchell",
  13196. {
  13197. front: {
  13198. height: math.unit(5 + 7/12, "feet"),
  13199. weight: math.unit(170, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/mika/front.svg",
  13203. extra: 1,
  13204. bottom: 0.016
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(5 + 7/12, "feet"),
  13212. default: true
  13213. },
  13214. ]
  13215. )
  13216. };
  13217. characterMakers["Sol"] = () => {
  13218. return makeCharacter(
  13219. "Sol",
  13220. "Fidchell",
  13221. {
  13222. front: {
  13223. height: math.unit(6 + 2/12, "feet"),
  13224. weight: math.unit(268, "lb"),
  13225. name: "Front",
  13226. image: {
  13227. source: "./media/characters/sol/front.svg",
  13228. extra: 247/231 ,
  13229. bottom: 0.05
  13230. }
  13231. },
  13232. },
  13233. [
  13234. {
  13235. name: "Normal",
  13236. height: math.unit(6 + 2/12, "feet"),
  13237. default: true
  13238. },
  13239. ]
  13240. )
  13241. };
  13242. characterMakers["Umiko"] = () => {
  13243. return makeCharacter(
  13244. "Umiko",
  13245. "Fidchell",
  13246. {
  13247. buizel: {
  13248. height: math.unit(2 + 5/12, "feet"),
  13249. weight: math.unit(87, "lb"),
  13250. name: "Buizel",
  13251. image: {
  13252. source: "./media/characters/umiko/buizel.svg",
  13253. extra: 172/157 ,
  13254. bottom: 0.01
  13255. }
  13256. },
  13257. floatzel: {
  13258. height: math.unit(5 + 9/12, "feet"),
  13259. weight: math.unit(250, "lb"),
  13260. name: "Floatzel",
  13261. image: {
  13262. source: "./media/characters/umiko/floatzel.svg",
  13263. extra: 262/248
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(2 + 5/12, "feet"),
  13271. default: true
  13272. },
  13273. ]
  13274. )
  13275. };
  13276. characterMakers["Iliac"] = () => {
  13277. return makeCharacter(
  13278. "Iliac",
  13279. "Fidchell",
  13280. {
  13281. front: {
  13282. height: math.unit(6 + 2/12, "feet"),
  13283. weight: math.unit(146, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/iliac/front.svg",
  13287. extra: 389/365 ,
  13288. bottom: 0.035
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(6 + 2/12, "feet"),
  13296. default: true
  13297. },
  13298. ]
  13299. )
  13300. };
  13301. characterMakers["Topaz"] = () => {
  13302. return makeCharacter(
  13303. "Topaz",
  13304. "Fidchell",
  13305. {
  13306. front: {
  13307. height: math.unit(6, "feet"),
  13308. weight: math.unit(170, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/topaz/front.svg",
  13312. extra: 317/303 ,
  13313. bottom: 0.055
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(6, "feet"),
  13321. default: true
  13322. },
  13323. ]
  13324. )
  13325. };
  13326. characterMakers["Gabriel"] = () => {
  13327. return makeCharacter(
  13328. "Gabriel",
  13329. "Fidchell",
  13330. {
  13331. front: {
  13332. height: math.unit(5 + 11/12, "feet"),
  13333. weight: math.unit(144, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/gabriel/front.svg",
  13337. extra: 285/262 ,
  13338. bottom: 0.004
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(5 + 11/12, "feet"),
  13346. default: true
  13347. },
  13348. ]
  13349. )
  13350. };
  13351. characterMakers["Tempest (Suicune)"] = () => {
  13352. return makeCharacter(
  13353. "Tempest (Suicune)",
  13354. "Fidchell",
  13355. {
  13356. side: {
  13357. height: math.unit(6 + 5/12, "feet"),
  13358. weight: math.unit(300, "lb"),
  13359. name: "Side",
  13360. image: {
  13361. source: "./media/characters/tempest-suicune/side.svg",
  13362. extra: 195/154 ,
  13363. bottom: 0.04
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(6 + 5/12, "feet"),
  13371. default: true
  13372. },
  13373. ]
  13374. )
  13375. };
  13376. characterMakers["Vulcan"] = () => {
  13377. return makeCharacter(
  13378. "Vulcan",
  13379. "Fidchell",
  13380. {
  13381. front: {
  13382. height: math.unit(7 + 2/12, "feet"),
  13383. weight: math.unit(322, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/vulcan/front.svg",
  13387. extra: 154/147 ,
  13388. bottom: 0.04
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(7 + 2/12, "feet"),
  13396. default: true
  13397. },
  13398. ]
  13399. )
  13400. };
  13401. characterMakers["Gault"] = () => {
  13402. return makeCharacter(
  13403. "Gault",
  13404. "Fidchell",
  13405. {
  13406. front: {
  13407. height: math.unit(5 + 10/12, "feet"),
  13408. weight: math.unit(264, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/gault/front.svg",
  13412. extra: 161/140 ,
  13413. bottom: 0.028
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(5 + 10/12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. )
  13425. };
  13426. characterMakers["Shard"] = () => {
  13427. return makeCharacter(
  13428. "Shard",
  13429. "Fidchell",
  13430. {
  13431. front: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(150, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/shard/front.svg",
  13437. extra: 273/238 ,
  13438. bottom: 0.02
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Normal",
  13445. height: math.unit(3 + 6/12, "feet"),
  13446. default: true
  13447. },
  13448. ]
  13449. )
  13450. };
  13451. characterMakers["Ashe"] = () => {
  13452. return makeCharacter(
  13453. "Ashe",
  13454. "Fidchell",
  13455. {
  13456. front: {
  13457. height: math.unit(5 + 11/12, "feet"),
  13458. weight: math.unit(146, "lb"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/ashe/front.svg",
  13462. extra: 400/373 ,
  13463. bottom: 0.01
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(5 + 11/12, "feet"),
  13471. default: true
  13472. },
  13473. ]
  13474. )
  13475. };
  13476. characterMakers["Beatrix"] = () => {
  13477. return makeCharacter(
  13478. "Beatrix",
  13479. "Fidchell",
  13480. {
  13481. front: {
  13482. height: math.unit(5 + 5/12, "feet"),
  13483. weight: math.unit(135, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/beatrix/front.svg",
  13487. extra: 392/379 ,
  13488. bottom: 0.01
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Normal",
  13495. height: math.unit(6, "feet"),
  13496. default: true
  13497. },
  13498. ]
  13499. )
  13500. };
  13501. characterMakers["Ignatius"] = () => {
  13502. return makeCharacter(
  13503. "Ignatius",
  13504. "Fidchell",
  13505. {
  13506. front: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/ignatius/front.svg",
  13512. extra: 245/222 ,
  13513. bottom: 0.01
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(5 + 5/12, "feet"),
  13521. default: true
  13522. },
  13523. ]
  13524. )
  13525. };
  13526. characterMakers["Mei Li"] = () => {
  13527. return makeCharacter(
  13528. "Mei Li",
  13529. "Fidchell",
  13530. {
  13531. front: {
  13532. height: math.unit(6 + 2/12, "feet"),
  13533. weight: math.unit(138, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/mei-li/front.svg",
  13537. extra: 237/229 ,
  13538. bottom: 0.03
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(6 + 2/12, "feet"),
  13546. default: true
  13547. },
  13548. ]
  13549. )
  13550. };
  13551. characterMakers["Puru"] = () => {
  13552. return makeCharacter(
  13553. "Puru",
  13554. "Fidchell",
  13555. {
  13556. front: {
  13557. height: math.unit(2 + 4/12, "feet"),
  13558. weight: math.unit(62, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/puru/front.svg",
  13562. extra: 206/149 ,
  13563. bottom: 0.06
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(2 + 4/12, "feet"),
  13571. default: true
  13572. },
  13573. ]
  13574. )
  13575. };
  13576. characterMakers["Kee"] = () => {
  13577. return makeCharacter(
  13578. "Kee",
  13579. "AardwolfKee",
  13580. {
  13581. taur: {
  13582. height: math.unit(11, "feet"),
  13583. weight: math.unit(500, "lb"),
  13584. name: "Taur",
  13585. image: {
  13586. source: "./media/characters/kee/taur.svg",
  13587. extra: 1,
  13588. bottom: 0.04
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(11, "feet"),
  13596. default: true
  13597. },
  13598. ]
  13599. )
  13600. };
  13601. characterMakers["Cobalt (Dracha)"] = () => {
  13602. return makeCharacter(
  13603. "Cobalt (Dracha)",
  13604. "Fidchell",
  13605. {
  13606. anthro: {
  13607. height: math.unit(7, "feet"),
  13608. weight: math.unit(190, "lb"),
  13609. name: "Anthro",
  13610. image: {
  13611. source: "./media/characters/cobalt-dracha/anthro.svg",
  13612. extra: 231/225 ,
  13613. bottom: 0.04
  13614. }
  13615. },
  13616. feral: {
  13617. height: math.unit(9 + 7/12, "feet"),
  13618. weight: math.unit(294, "lb"),
  13619. name: "Feral",
  13620. image: {
  13621. source: "./media/characters/cobalt-dracha/feral.svg",
  13622. extra: 692/633 ,
  13623. bottom: 0.05
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(7, "feet"),
  13631. default: true
  13632. },
  13633. ]
  13634. )
  13635. };
  13636. characterMakers["Java"] = () => {
  13637. return makeCharacter(
  13638. "Java",
  13639. "Fidchell",
  13640. {
  13641. fallen: {
  13642. height: math.unit(11 + 8/12, "feet"),
  13643. weight: math.unit(485, "lb"),
  13644. name: "Java (Fallen)",
  13645. rename: true,
  13646. image: {
  13647. source: "./media/characters/java/fallen.svg",
  13648. extra: 226/208 ,
  13649. bottom: 0.005
  13650. }
  13651. },
  13652. godkin: {
  13653. height: math.unit(10 + 6/12, "feet"),
  13654. weight: math.unit(328, "lb"),
  13655. name: "Java (Godkin)",
  13656. rename: true,
  13657. image: {
  13658. source: "./media/characters/java/godkin.svg",
  13659. extra: 270/262 ,
  13660. bottom: 0.02
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Normal",
  13667. height: math.unit(11 + 8/12, "feet"),
  13668. default: true
  13669. },
  13670. ]
  13671. )
  13672. };
  13673. characterMakers["Skoll"] = () => {
  13674. return makeCharacter(
  13675. "Skoll",
  13676. "Fidchell",
  13677. {
  13678. front: {
  13679. height: math.unit(7 + 8/12, "feet"),
  13680. weight: math.unit(320, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/skoll/front.svg",
  13684. extra: 232/220 ,
  13685. bottom: 0.02
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(7 + 8/12, "feet"),
  13693. default: true
  13694. },
  13695. ]
  13696. )
  13697. };
  13698. characterMakers["Purna"] = () => {
  13699. return makeCharacter(
  13700. "Purna",
  13701. "Fidchell",
  13702. {
  13703. front: {
  13704. height: math.unit(5 + 9/12, "feet"),
  13705. weight: math.unit(170, "lb"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/purna/front.svg",
  13709. extra: 239/229 ,
  13710. bottom: 0.01
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(5 + 9/12, "feet"),
  13718. default: true
  13719. },
  13720. ]
  13721. )
  13722. };
  13723. characterMakers["Kuva"] = () => {
  13724. return makeCharacter(
  13725. "Kuva",
  13726. "Fidchell",
  13727. {
  13728. front: {
  13729. height: math.unit(5 + 9/12, "feet"),
  13730. weight: math.unit(142, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/kuva/front.svg",
  13734. extra: 281/271 ,
  13735. bottom: 0.006
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(5 + 9/12, "feet"),
  13743. default: true
  13744. },
  13745. ]
  13746. )
  13747. };
  13748. characterMakers["Embra"] = () => {
  13749. return makeCharacter(
  13750. "Embra",
  13751. "Fidchell",
  13752. {
  13753. anthro: {
  13754. height: math.unit(9 + 2/12, "feet"),
  13755. weight: math.unit(270, "lb"),
  13756. name: "Anthro",
  13757. image: {
  13758. source: "./media/characters/embra/anthro.svg",
  13759. extra: 200/187 ,
  13760. bottom: 0.02
  13761. }
  13762. },
  13763. feral: {
  13764. height: math.unit(18 + 8/12, "feet"),
  13765. weight: math.unit(576, "lb"),
  13766. name: "Feral",
  13767. image: {
  13768. source: "./media/characters/embra/feral.svg",
  13769. extra: 152/137 ,
  13770. bottom: 0.037
  13771. }
  13772. },
  13773. },
  13774. [
  13775. {
  13776. name: "Normal",
  13777. height: math.unit(9 + 2/12, "feet"),
  13778. default: true
  13779. },
  13780. ]
  13781. )
  13782. };
  13783. characterMakers["Grottos"] = () => {
  13784. return makeCharacter(
  13785. "Grottos",
  13786. "Fidchell",
  13787. {
  13788. anthro: {
  13789. height: math.unit(10 + 9/12, "feet"),
  13790. weight: math.unit(224, "lb"),
  13791. name: "Anthro",
  13792. image: {
  13793. source: "./media/characters/grottos/anthro.svg",
  13794. extra: 350/332 ,
  13795. bottom: 0.045
  13796. }
  13797. },
  13798. feral: {
  13799. height: math.unit(20 + 7/12, "feet"),
  13800. weight: math.unit(629, "lb"),
  13801. name: "Feral",
  13802. image: {
  13803. source: "./media/characters/grottos/feral.svg",
  13804. extra: 207/190 ,
  13805. bottom: 0.05
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(10 + 9/12, "feet"),
  13813. default: true
  13814. },
  13815. ]
  13816. )
  13817. };
  13818. characterMakers["Frifna"] = () => {
  13819. return makeCharacter(
  13820. "Frifna",
  13821. "Fidchell",
  13822. {
  13823. anthro: {
  13824. height: math.unit(9 + 6/12, "feet"),
  13825. weight: math.unit(298, "lb"),
  13826. name: "Anthro",
  13827. image: {
  13828. source: "./media/characters/frifna/anthro.svg",
  13829. extra: 282/269 ,
  13830. bottom: 0.015
  13831. }
  13832. },
  13833. feral: {
  13834. height: math.unit(16 + 2/12, "feet"),
  13835. weight: math.unit(624, "lb"),
  13836. name: "Feral",
  13837. image: {
  13838. source: "./media/characters/frifna/feral.svg"
  13839. }
  13840. },
  13841. },
  13842. [
  13843. {
  13844. name: "Normal",
  13845. height: math.unit(9 + 6/12, "feet"),
  13846. default: true
  13847. },
  13848. ]
  13849. )
  13850. };
  13851. characterMakers["Elise"] = () => {
  13852. return makeCharacter(
  13853. "Elise",
  13854. "Fidchell",
  13855. {
  13856. front: {
  13857. height: math.unit(6 + 2/12, "feet"),
  13858. weight: math.unit(168, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/elise/front.svg",
  13862. extra: 276/271
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(6 + 2/12, "feet"),
  13870. default: true
  13871. },
  13872. ]
  13873. )
  13874. };
  13875. characterMakers["Glade"] = () => {
  13876. return makeCharacter(
  13877. "Glade",
  13878. "Fidchell",
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 10/12, "feet"),
  13882. weight: math.unit(210, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/glade/front.svg",
  13886. extra: 258/247 ,
  13887. bottom: 0.008
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(5 + 10/12, "feet"),
  13895. default: true
  13896. },
  13897. ]
  13898. )
  13899. };
  13900. characterMakers["Rina"] = () => {
  13901. return makeCharacter(
  13902. "Rina",
  13903. "Fidchell",
  13904. {
  13905. front: {
  13906. height: math.unit(5 + 10/12, "feet"),
  13907. weight: math.unit(129, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/rina/front.svg",
  13911. extra: 266/255 ,
  13912. bottom: 0.005
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(5 + 10/12, "feet"),
  13920. default: true
  13921. },
  13922. ]
  13923. )
  13924. };
  13925. characterMakers["Veronica"] = () => {
  13926. return makeCharacter(
  13927. "Veronica",
  13928. "Fidchell",
  13929. {
  13930. front: {
  13931. height: math.unit(6 + 1/12, "feet"),
  13932. weight: math.unit(192, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/veronica/front.svg",
  13936. extra: 319/309 ,
  13937. bottom: 0.005
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(6 + 1/12, "feet"),
  13945. default: true
  13946. },
  13947. ]
  13948. )
  13949. };
  13950. characterMakers["Braxton"] = () => {
  13951. return makeCharacter(
  13952. "Braxton",
  13953. "jdolbear",
  13954. {
  13955. front: {
  13956. height: math.unit(9 + 3/12, "feet"),
  13957. weight: math.unit(1100, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/braxton/front.svg",
  13961. extra: 1057/984 ,
  13962. bottom: 0.05
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Normal",
  13969. height: math.unit(9 + 3/12, "feet")
  13970. },
  13971. {
  13972. name: "Giant",
  13973. height: math.unit(300, "feet"),
  13974. default: true
  13975. },
  13976. {
  13977. name: "Macro",
  13978. height: math.unit(700, "feet")
  13979. },
  13980. {
  13981. name: "Megamacro",
  13982. height: math.unit(6000, "feet")
  13983. },
  13984. ]
  13985. )
  13986. };
  13987. characterMakers["Blue Feyonics"] = () => {
  13988. return makeCharacter(
  13989. "Blue Feyonics",
  13990. "bluefiremarkii",
  13991. {
  13992. front: {
  13993. height: math.unit(6 + 7/12, "feet"),
  13994. weight: math.unit(150, "lb"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/blue-feyonics/front.svg",
  13998. extra: 1403/1306 ,
  13999. bottom: 0.047
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(6 + 7/12, "feet"),
  14007. default: true
  14008. },
  14009. ]
  14010. )
  14011. };
  14012. characterMakers["Maxwell"] = () => {
  14013. return makeCharacter(
  14014. "Maxwell",
  14015. "Ruby_02",
  14016. {
  14017. front: {
  14018. height: math.unit(1.8, "meters"),
  14019. weight: math.unit(60, "kg"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/maxwell/front.svg",
  14023. extra: 2060/1873
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Micro",
  14030. height: math.unit(1, "mm")
  14031. },
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(1.8, "meter"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(30, "meters")
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(10, "km")
  14044. },
  14045. ]
  14046. )
  14047. };
  14048. characterMakers["Jack"] = () => {
  14049. return makeCharacter(
  14050. "Jack",
  14051. "Jasmith",
  14052. {
  14053. front: {
  14054. height: math.unit(6, "feet"),
  14055. weight: math.unit(150, "lb"),
  14056. name: "Front",
  14057. image: {
  14058. source: "./media/characters/jack/front.svg",
  14059. extra: 1754/1640,
  14060. bottom: 0.01
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(80000, "feet"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Max size",
  14072. height: math.unit(10, "lightyears")
  14073. },
  14074. ]
  14075. )
  14076. };
  14077. characterMakers["Cafat"] = () => {
  14078. return makeCharacter(
  14079. "Cafat",
  14080. "Dalken",
  14081. {
  14082. upright: {
  14083. height: math.unit(7, "feet"),
  14084. weight: math.unit(170, "lb"),
  14085. name: "Upright",
  14086. image: {
  14087. source: "./media/characters/cafat/upright.svg",
  14088. bottom: 0.01
  14089. }
  14090. },
  14091. uprightFull: {
  14092. height: math.unit(7, "feet"),
  14093. weight: math.unit(170, "lb"),
  14094. name: "Upright (Full)",
  14095. image: {
  14096. source: "./media/characters/cafat/upright-full.svg",
  14097. bottom: 0.01
  14098. }
  14099. },
  14100. side: {
  14101. height: math.unit(5, "feet"),
  14102. weight: math.unit(150, "lb"),
  14103. name: "Side",
  14104. image: {
  14105. source: "./media/characters/cafat/side.svg"
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Small",
  14112. height: math.unit(7, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Large",
  14117. height: math.unit(15.5, "feet")
  14118. },
  14119. ]
  14120. )
  14121. };
  14122. characterMakers["Verin Raharra"] = () => {
  14123. return makeCharacter(
  14124. "Verin Raharra",
  14125. "Virgo113",
  14126. {
  14127. front: {
  14128. height: math.unit(6, "feet"),
  14129. weight: math.unit(150, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/verin-raharra/front.svg",
  14133. extra: 5019/4835,
  14134. bottom: 0.023
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Normal",
  14141. height: math.unit(7 + 5/12, "feet"),
  14142. default: true
  14143. },
  14144. {
  14145. name: "Upsized",
  14146. height: math.unit(20, "feet")
  14147. },
  14148. ]
  14149. )
  14150. };
  14151. characterMakers["Nakata"] = () => {
  14152. return makeCharacter(
  14153. "Nakata",
  14154. "Dalken",
  14155. {
  14156. front: {
  14157. height: math.unit(7, "feet"),
  14158. weight: math.unit(230, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/nakata/front.svg",
  14162. extra: 1.005,
  14163. bottom: 0.01
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(7, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Big",
  14175. height: math.unit(14, "feet")
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(400, "feet")
  14180. },
  14181. ]
  14182. )
  14183. };
  14184. characterMakers["Lily"] = () => {
  14185. return makeCharacter(
  14186. "Lily",
  14187. "nexcg",
  14188. {
  14189. front: {
  14190. height: math.unit(4.91, "feet"),
  14191. weight: math.unit(100, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/lily/front.svg",
  14195. extra: 1585/1415,
  14196. bottom: 0.02
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(4.91, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. )
  14208. };
  14209. characterMakers["Sheila"] = () => {
  14210. return makeCharacter(
  14211. "Sheila",
  14212. "Miststalker",
  14213. {
  14214. laying: {
  14215. height: math.unit(4 + 4/12, "feet"),
  14216. weight: math.unit(600, "lb"),
  14217. name: "Laying",
  14218. image: {
  14219. source: "./media/characters/sheila/laying.svg",
  14220. extra: 1333/1265,
  14221. bottom: 0.16
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(4 + 4/12, "feet"),
  14229. default: true
  14230. },
  14231. ]
  14232. )
  14233. };
  14234. characterMakers["Sax"] = () => {
  14235. return makeCharacter(
  14236. "Sax",
  14237. "Counts-His-Toes",
  14238. {
  14239. front: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(190, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/sax/front.svg",
  14245. extra: 1187/973,
  14246. bottom: 0.042
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Micro",
  14253. height: math.unit(4, "inches"),
  14254. default: true
  14255. },
  14256. ]
  14257. )
  14258. };
  14259. characterMakers["Pandora"] = () => {
  14260. return makeCharacter(
  14261. "Pandora",
  14262. "Pandora's Fox",
  14263. {
  14264. front: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(150, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/pandora/front.svg",
  14270. extra: 2720/2556,
  14271. bottom: 0.015
  14272. }
  14273. },
  14274. back: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Back",
  14278. image: {
  14279. source: "./media/characters/pandora/back.svg",
  14280. extra: 2720/2556,
  14281. bottom: 0.01
  14282. }
  14283. },
  14284. beans: {
  14285. height: math.unit(6/8, "feet"),
  14286. name: "Beans",
  14287. image: {
  14288. source: "./media/characters/pandora/beans.svg"
  14289. }
  14290. },
  14291. skirt: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(150, "lb"),
  14294. name: "Skirt",
  14295. image: {
  14296. source: "./media/characters/pandora/skirt.svg",
  14297. extra: 1622/1525,
  14298. bottom: 0.015
  14299. }
  14300. },
  14301. hoodie: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(150, "lb"),
  14304. name: "Hoodie",
  14305. image: {
  14306. source: "./media/characters/pandora/hoodie.svg",
  14307. extra: 1622/1525,
  14308. bottom: 0.015
  14309. }
  14310. },
  14311. casual: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Casual",
  14315. image: {
  14316. source: "./media/characters/pandora/casual.svg",
  14317. extra: 1622/1525,
  14318. bottom: 0.015
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(6, "feet")
  14326. },
  14327. {
  14328. name: "Big Steppy",
  14329. height: math.unit(1, "km"),
  14330. default: true
  14331. },
  14332. ]
  14333. )
  14334. };
  14335. characterMakers["Venio Darcony"] = () => {
  14336. return makeCharacter(
  14337. "Venio Darcony",
  14338. "redblackdragon",
  14339. {
  14340. side: {
  14341. height: math.unit(10, "feet"),
  14342. weight: math.unit(800, "kg"),
  14343. name: "Side",
  14344. image: {
  14345. source: "./media/characters/venio-darcony/side.svg",
  14346. extra: 1373/1003,
  14347. bottom: 0.037
  14348. }
  14349. },
  14350. front: {
  14351. height: math.unit(19, "feet"),
  14352. weight: math.unit(800, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/venio-darcony/front.svg"
  14356. }
  14357. },
  14358. back: {
  14359. height: math.unit(19, "feet"),
  14360. weight: math.unit(800, "kg"),
  14361. name: "Back",
  14362. image: {
  14363. source: "./media/characters/venio-darcony/back.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(10, "feet")
  14371. },
  14372. {
  14373. name: "Macro",
  14374. height: math.unit(130, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro+",
  14379. height: math.unit(240, "feet")
  14380. },
  14381. ]
  14382. )
  14383. };
  14384. characterMakers["Veski"] = () => {
  14385. return makeCharacter(
  14386. "Veski",
  14387. "Veski",
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(150, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/veski/front.svg",
  14395. extra: 1299/1225,
  14396. bottom: 0.04
  14397. }
  14398. },
  14399. back: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Back",
  14403. image: {
  14404. source: "./media/characters/veski/back.svg",
  14405. extra: 1299/1225,
  14406. bottom: 0.008
  14407. }
  14408. },
  14409. maw: {
  14410. height: math.unit(1.5 * 1.21, "feet"),
  14411. name: "Maw",
  14412. image: {
  14413. source: "./media/characters/veski/maw.svg"
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(2, "km"),
  14421. default: true
  14422. },
  14423. ]
  14424. )
  14425. };
  14426. characterMakers["Isabelle"] = () => {
  14427. return makeCharacter(
  14428. "Isabelle",
  14429. "evilwithin",
  14430. {
  14431. front: {
  14432. height: math.unit(5 + 7/12, "feet"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/isabelle/front.svg",
  14436. extra: 2130/1976,
  14437. bottom: 0.05
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Supermicro",
  14444. height: math.unit(10, "micrometers")
  14445. },
  14446. {
  14447. name: "Micro",
  14448. height: math.unit(1, "inch")
  14449. },
  14450. {
  14451. name: "Tiny",
  14452. height: math.unit(5, "inches")
  14453. },
  14454. {
  14455. name: "Standard",
  14456. height: math.unit(5 + 7/12, "inches")
  14457. },
  14458. {
  14459. name: "Macro",
  14460. height: math.unit(80, "meters"),
  14461. default: true
  14462. },
  14463. {
  14464. name: "Megamacro",
  14465. height: math.unit(250, "meters")
  14466. },
  14467. {
  14468. name: "Gigamacro",
  14469. height: math.unit(5, "km")
  14470. },
  14471. {
  14472. name: "Cosmic",
  14473. height: math.unit(2.5e6, "miles")
  14474. },
  14475. ]
  14476. )
  14477. };
  14478. characterMakers["Hanzo"] = () => {
  14479. return makeCharacter(
  14480. "Hanzo",
  14481. "dragondruid",
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/hanzo/front.svg",
  14489. extra: 374/344,
  14490. bottom: 0.02
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(8, "feet"),
  14498. default: true
  14499. },
  14500. ]
  14501. )
  14502. };
  14503. characterMakers["Anna"] = () => {
  14504. return makeCharacter(
  14505. "Anna",
  14506. "dragondruid",
  14507. {
  14508. front: {
  14509. height: math.unit(7, "feet"),
  14510. weight: math.unit(130, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/anna/front.svg",
  14514. extra: 169/145,
  14515. bottom: 0.06
  14516. }
  14517. },
  14518. full: {
  14519. height: math.unit(4.96, "feet"),
  14520. weight: math.unit(220, "lb"),
  14521. name: "Full",
  14522. image: {
  14523. source: "./media/characters/anna/full.svg",
  14524. extra: 138/114,
  14525. bottom: 0.15
  14526. }
  14527. },
  14528. tongue: {
  14529. height: math.unit(2.53, "feet"),
  14530. name: "Tongue",
  14531. image: {
  14532. source: "./media/characters/anna/tongue.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(7, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. )
  14544. };
  14545. characterMakers["Ian Corvid"] = () => {
  14546. return makeCharacter(
  14547. "Ian Corvid",
  14548. "IanCorvid",
  14549. {
  14550. front: {
  14551. height: math.unit(7, "feet"),
  14552. weight: math.unit(150, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/ian-corvid/front.svg",
  14556. extra: 150/142,
  14557. bottom: 0.02
  14558. }
  14559. },
  14560. back: {
  14561. height: math.unit(7, "feet"),
  14562. weight: math.unit(150, "lb"),
  14563. name: "Back",
  14564. image: {
  14565. source: "./media/characters/ian-corvid/back.svg",
  14566. extra: 150/143,
  14567. bottom: 0.01
  14568. }
  14569. },
  14570. stomping: {
  14571. height: math.unit(7, "feet"),
  14572. weight: math.unit(150, "lb"),
  14573. name: "Stomping",
  14574. image: {
  14575. source: "./media/characters/ian-corvid/stomping.svg",
  14576. extra: 76/72
  14577. }
  14578. },
  14579. sitting: {
  14580. height: math.unit(7/1.8, "feet"),
  14581. weight: math.unit(150, "lb"),
  14582. name: "Sitting",
  14583. image: {
  14584. source: "./media/characters/ian-corvid/sitting.svg",
  14585. extra: 1400/1269,
  14586. bottom: 0.15
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Tiny Microw",
  14593. height: math.unit(1, "inch")
  14594. },
  14595. {
  14596. name: "Microw",
  14597. height: math.unit(6, "inches")
  14598. },
  14599. {
  14600. name: "Crow",
  14601. height: math.unit(7 + 1/12, "feet"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Macrow",
  14606. height: math.unit(176, "feet")
  14607. },
  14608. ]
  14609. )
  14610. };
  14611. characterMakers["Natalie Kellon"] = () => {
  14612. return makeCharacter(
  14613. "Natalie Kellon",
  14614. "lestrange110",
  14615. {
  14616. front: {
  14617. height: math.unit(5 + 7/12, "feet"),
  14618. weight: math.unit(147, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/natalie-kellon/front.svg",
  14622. extra: 1214/1141,
  14623. bottom: 0.02
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Micro",
  14630. height: math.unit(1/16, "inch")
  14631. },
  14632. {
  14633. name: "Tiny",
  14634. height: math.unit(4, "inches")
  14635. },
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(5 + 7/12, "feet"),
  14639. default: true
  14640. },
  14641. {
  14642. name: "Amazon",
  14643. height: math.unit(12, "feet")
  14644. },
  14645. {
  14646. name: "Giantess",
  14647. height: math.unit(160, "meters")
  14648. },
  14649. {
  14650. name: "Titaness",
  14651. height: math.unit(800, "meters")
  14652. },
  14653. ]
  14654. )
  14655. };
  14656. characterMakers["Alluria"] = () => {
  14657. return makeCharacter(
  14658. "Alluria",
  14659. "Sir--Raptor",
  14660. {
  14661. front: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(150, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/alluria/front.svg",
  14667. extra: 806/738,
  14668. bottom: 0.01
  14669. }
  14670. },
  14671. side: {
  14672. height: math.unit(6, "feet"),
  14673. weight: math.unit(150, "lb"),
  14674. name: "Side",
  14675. image: {
  14676. source: "./media/characters/alluria/side.svg",
  14677. extra: 800/750,
  14678. }
  14679. },
  14680. back: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Back",
  14684. image: {
  14685. source: "./media/characters/alluria/back.svg",
  14686. extra: 806/738,
  14687. }
  14688. },
  14689. frontMaid: {
  14690. height: math.unit(6, "feet"),
  14691. weight: math.unit(150, "lb"),
  14692. name: "Front (Maid)",
  14693. image: {
  14694. source: "./media/characters/alluria/front-maid.svg",
  14695. extra: 806/738,
  14696. bottom: 0.01
  14697. }
  14698. },
  14699. sideMaid: {
  14700. height: math.unit(6, "feet"),
  14701. weight: math.unit(150, "lb"),
  14702. name: "Side (Maid)",
  14703. image: {
  14704. source: "./media/characters/alluria/side-maid.svg",
  14705. extra: 800/750,
  14706. bottom: 0.005
  14707. }
  14708. },
  14709. backMaid: {
  14710. height: math.unit(6, "feet"),
  14711. weight: math.unit(150, "lb"),
  14712. name: "Back (Maid)",
  14713. image: {
  14714. source: "./media/characters/alluria/back-maid.svg",
  14715. extra: 806/738,
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Micro",
  14722. height: math.unit(6, "inches"),
  14723. default: true
  14724. },
  14725. ]
  14726. )
  14727. };
  14728. characterMakers["Kyle"] = () => {
  14729. return makeCharacter(
  14730. "Kyle",
  14731. "Jasmith",
  14732. {
  14733. front: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(150, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/kyle/front.svg",
  14739. extra: 1069/962,
  14740. bottom: 77.228/1727.45
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Macro",
  14747. height: math.unit(150, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. )
  14752. };
  14753. characterMakers["Duncan"] = () => {
  14754. return makeCharacter(
  14755. "Duncan",
  14756. "Duncan",
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(300, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/duncan/front.svg",
  14764. extra: 1650/1482,
  14765. bottom: 0.05
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Macro",
  14772. height: math.unit(100, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. )
  14777. };
  14778. characterMakers["Memory"] = () => {
  14779. return makeCharacter(
  14780. "Memory",
  14781. "boringcactus",
  14782. {
  14783. front: {
  14784. height: math.unit(5 + 4/12, "feet"),
  14785. weight: math.unit(220, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/memory/front.svg",
  14789. extra: 3641/3545,
  14790. bottom: 0.03
  14791. }
  14792. },
  14793. back: {
  14794. height: math.unit(5 + 4/12, "feet"),
  14795. weight: math.unit(220, "lb"),
  14796. name: "Back",
  14797. image: {
  14798. source: "./media/characters/memory/back.svg",
  14799. extra: 3641/3545,
  14800. bottom: 0.025
  14801. }
  14802. },
  14803. frontSkirt: {
  14804. height: math.unit(5 + 4/12, "feet"),
  14805. weight: math.unit(220, "lb"),
  14806. name: "Front (Skirt)",
  14807. image: {
  14808. source: "./media/characters/memory/front-skirt.svg",
  14809. extra: 3641/3545,
  14810. bottom: 0.03
  14811. }
  14812. },
  14813. frontDress: {
  14814. height: math.unit(5 + 4/12, "feet"),
  14815. weight: math.unit(220, "lb"),
  14816. name: "Front (Dress)",
  14817. image: {
  14818. source: "./media/characters/memory/front-dress.svg",
  14819. extra: 3641/3545,
  14820. bottom: 0.03
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Micro",
  14827. height: math.unit(6, "inches"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Normal",
  14832. height: math.unit(5 + 4/12, "feet")
  14833. },
  14834. ]
  14835. )
  14836. };
  14837. characterMakers["Luno"] = () => {
  14838. return makeCharacter(
  14839. "Luno",
  14840. "Jamesy",
  14841. {
  14842. front: {
  14843. height: math.unit(4 + 11/12, "feet"),
  14844. weight: math.unit(100, "lb"),
  14845. name: "Front",
  14846. image: {
  14847. source: "./media/characters/luno/front.svg",
  14848. extra: 1535/1487,
  14849. bottom: 0.03
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Micro",
  14856. height: math.unit(3, "inches")
  14857. },
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(4 + 11/12, "feet"),
  14861. default: true
  14862. },
  14863. {
  14864. name: "Macro",
  14865. height: math.unit(300, "feet")
  14866. },
  14867. {
  14868. name: "Megamacro",
  14869. height: math.unit(700, "miles")
  14870. },
  14871. ]
  14872. )
  14873. };
  14874. characterMakers["Jamesy"] = () => {
  14875. return makeCharacter(
  14876. "Jamesy",
  14877. "Jamesy",
  14878. {
  14879. front: {
  14880. height: math.unit(6 + 2/12, "feet"),
  14881. weight: math.unit(170, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/jamesy/front.svg",
  14885. extra: 440/382,
  14886. bottom: 0.005
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Micro",
  14893. height: math.unit(3, "inches")
  14894. },
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 2/12, "feet"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(300, "feet")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(700, "miles")
  14907. },
  14908. ]
  14909. )
  14910. };
  14911. characterMakers["Mark"] = () => {
  14912. return makeCharacter(
  14913. "Mark",
  14914. "ich",
  14915. {
  14916. front: {
  14917. height: math.unit(6, "feet"),
  14918. weight: math.unit(160, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/mark/front.svg",
  14922. extra: 3300/3100,
  14923. bottom: 136.42/3440.47
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Macro",
  14930. height: math.unit(120, "meters")
  14931. },
  14932. {
  14933. name: "Bigger Macro",
  14934. height: math.unit(350, "meters")
  14935. },
  14936. {
  14937. name: "Megamacro",
  14938. height: math.unit(8, "km"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Continental",
  14943. height: math.unit(4550, "km")
  14944. },
  14945. {
  14946. name: "Planetary",
  14947. height: math.unit(65000, "km")
  14948. },
  14949. ]
  14950. )
  14951. };
  14952. characterMakers["Mac"] = () => {
  14953. return makeCharacter(
  14954. "Mac",
  14955. "Macroceli",
  14956. {
  14957. front: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(400, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/mac/front.svg",
  14963. extra: 1048/987.7,
  14964. bottom: 60/1107.6,
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Macro",
  14971. height: math.unit(500, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. )
  14976. };
  14977. characterMakers["Bari"] = () => {
  14978. return makeCharacter(
  14979. "Bari",
  14980. "Bariamph",
  14981. {
  14982. front: {
  14983. height: math.unit(5 + 2/12, "feet"),
  14984. weight: math.unit(190, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/bari/front.svg",
  14988. extra: 3156/2880,
  14989. bottom: 0.03
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(5 + 2/12, "feet"),
  14994. weight: math.unit(190, "lb"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/bari/back.svg",
  14998. extra: 3260/2834,
  14999. bottom: 0.025
  15000. }
  15001. },
  15002. frontPlush: {
  15003. height: math.unit(5 + 2/12, "feet"),
  15004. weight: math.unit(190, "lb"),
  15005. name: "Front (Plush)",
  15006. image: {
  15007. source: "./media/characters/bari/front-plush.svg",
  15008. extra: 1112/1061,
  15009. bottom: 0.002
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Micro",
  15016. height: math.unit(3, "inches")
  15017. },
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(5 + 2/12, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Macro",
  15025. height: math.unit(20, "feet")
  15026. },
  15027. ]
  15028. )
  15029. };
  15030. characterMakers["Hunter Misha Raven"] = () => {
  15031. return makeCharacter(
  15032. "Hunter Misha Raven",
  15033. "ashtrek",
  15034. {
  15035. front: {
  15036. height: math.unit(6 + 1/12, "feet"),
  15037. weight: math.unit(275, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/hunter-misha-raven/front.svg"
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Mortal",
  15047. height: math.unit(6 + 1/12, "feet")
  15048. },
  15049. {
  15050. name: "Divine",
  15051. height: math.unit(1.12134e34, "parsecs"),
  15052. default: true
  15053. },
  15054. ]
  15055. )
  15056. };
  15057. characterMakers["Max Calore"] = () => {
  15058. return makeCharacter(
  15059. "Max Calore",
  15060. "flamestar",
  15061. {
  15062. front: {
  15063. height: math.unit(6 + 3/12, "feet"),
  15064. weight: math.unit(220, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/max-calore/front.svg",
  15068. extra: 1700/1648,
  15069. bottom: 0.01
  15070. }
  15071. },
  15072. back: {
  15073. height: math.unit(6 + 3/12, "feet"),
  15074. weight: math.unit(220, "lb"),
  15075. name: "Back",
  15076. image: {
  15077. source: "./media/characters/max-calore/back.svg",
  15078. extra: 1700/1648,
  15079. bottom: 0.01
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(6 + 3/12, "feet"),
  15087. default: true
  15088. },
  15089. ]
  15090. )
  15091. };
  15092. characterMakers["Aspen"] = () => {
  15093. return makeCharacter(
  15094. "Aspen",
  15095. "Fidchell",
  15096. {
  15097. side: {
  15098. height: math.unit(2 + 8/12, "feet"),
  15099. weight: math.unit(99, "lb"),
  15100. name: "Side",
  15101. image: {
  15102. source: "./media/characters/aspen/side.svg",
  15103. extra: 152/138,
  15104. bottom: 0.032
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(2 + 8/12, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. )
  15116. };
  15117. characterMakers["Sheila (Wolf)"] = () => {
  15118. return makeCharacter(
  15119. "Sheila (Wolf)",
  15120. "Fidchell",
  15121. {
  15122. side: {
  15123. height: math.unit(3 + 2/12, "feet"),
  15124. weight: math.unit(224, "lb"),
  15125. name: "Side",
  15126. image: {
  15127. source: "./media/characters/sheila-wolf/side.svg",
  15128. extra: 179/166,
  15129. bottom: 0.03
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(3 + 2/12, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. )
  15141. };
  15142. characterMakers["Michelle"] = () => {
  15143. return makeCharacter(
  15144. "Michelle",
  15145. "Fidchell",
  15146. {
  15147. side: {
  15148. height: math.unit(1 + 9/12, "feet"),
  15149. weight: math.unit(38, "lb"),
  15150. name: "Side",
  15151. image: {
  15152. source: "./media/characters/michelle/side.svg",
  15153. extra: 147/136.7,
  15154. bottom: 0.03
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(1 + 9/12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. )
  15166. };
  15167. characterMakers["Nino"] = () => {
  15168. return makeCharacter(
  15169. "Nino",
  15170. "Fidchell",
  15171. {
  15172. front: {
  15173. height: math.unit(1 + 1/12, "feet"),
  15174. weight: math.unit(18, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/nino/front.svg"
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(1 + 1/12, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. )
  15189. };
  15190. characterMakers["Viola"] = () => {
  15191. return makeCharacter(
  15192. "Viola",
  15193. "Fidchell",
  15194. {
  15195. front: {
  15196. height: math.unit(1, "feet"),
  15197. weight: math.unit(16, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/viola/front.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(1, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. )
  15212. };
  15213. characterMakers["Atlas"] = () => {
  15214. return makeCharacter(
  15215. "Atlas",
  15216. "Fidchell",
  15217. {
  15218. front: {
  15219. height: math.unit(6 + 5/12, "feet"),
  15220. weight: math.unit(580, "lb"),
  15221. name: "Front",
  15222. image: {
  15223. source: "./media/characters/atlas/front.svg",
  15224. extra: 298.5/290,
  15225. bottom: 0.015
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(6 + 5/12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. )
  15237. };
  15238. characterMakers["Davy"] = () => {
  15239. return makeCharacter(
  15240. "Davy",
  15241. "Fidchell",
  15242. {
  15243. side: {
  15244. height: math.unit(1 + 10/12, "feet"),
  15245. weight: math.unit(25, "lb"),
  15246. name: "Side",
  15247. image: {
  15248. source: "./media/characters/davy/side.svg",
  15249. extra: 200/170,
  15250. bottom: 0.01
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(1 + 10/12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. )
  15262. };
  15263. characterMakers["Fiona"] = () => {
  15264. return makeCharacter(
  15265. "Fiona",
  15266. "Fidchell",
  15267. {
  15268. side: {
  15269. height: math.unit(4 + 8/12, "feet"),
  15270. weight: math.unit(166, "lb"),
  15271. name: "Side",
  15272. image: {
  15273. source: "./media/characters/fiona/side.svg",
  15274. extra: 232/220,
  15275. bottom: 0.03
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(4 + 8/12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. )
  15287. };
  15288. characterMakers["Lyla"] = () => {
  15289. return makeCharacter(
  15290. "Lyla",
  15291. "Fidchell",
  15292. {
  15293. front: {
  15294. height: math.unit(2, "feet"),
  15295. weight: math.unit(62, "lb"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/lyla/front.svg",
  15299. bottom: 0.1
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(2, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. )
  15311. };
  15312. characterMakers["Perseus"] = () => {
  15313. return makeCharacter(
  15314. "Perseus",
  15315. "Fidchell",
  15316. {
  15317. side: {
  15318. height: math.unit(1.8, "feet"),
  15319. weight: math.unit(44, "lb"),
  15320. name: "Side",
  15321. image: {
  15322. source: "./media/characters/perseus/side.svg",
  15323. bottom: 0.21
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(1.8, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. )
  15335. };
  15336. characterMakers["Remus"] = () => {
  15337. return makeCharacter(
  15338. "Remus",
  15339. "Fidchell",
  15340. {
  15341. side: {
  15342. height: math.unit(4 + 2/12, "feet"),
  15343. weight: math.unit(20, "lb"),
  15344. name: "Side",
  15345. image: {
  15346. source: "./media/characters/remus/side.svg"
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(4 + 2/12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. )
  15358. };
  15359. characterMakers["Raf"] = () => {
  15360. return makeCharacter(
  15361. "Raf",
  15362. "the_raf",
  15363. {
  15364. front: {
  15365. height: math.unit(4 + 11/12, "feet"),
  15366. weight: math.unit(114, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/raf/front.svg",
  15370. bottom: 0.01
  15371. }
  15372. },
  15373. side: {
  15374. height: math.unit(4 + 11/12, "feet"),
  15375. weight: math.unit(114, "lb"),
  15376. name: "Side",
  15377. image: {
  15378. source: "./media/characters/raf/side.svg",
  15379. bottom: 0.005
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Micro",
  15386. height: math.unit(2, "inches")
  15387. },
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(4 + 11/12, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro",
  15395. height: math.unit(70, "feet")
  15396. },
  15397. ]
  15398. )
  15399. };
  15400. characterMakers["Liam Einarr"] = () => {
  15401. return makeCharacter(
  15402. "Liam Einarr",
  15403. "LiamEinarr",
  15404. {
  15405. front: {
  15406. height: math.unit(1.5, "meters"),
  15407. weight: math.unit(68, "kg"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/liam-einarr/front.svg",
  15411. extra: 2822/2666
  15412. }
  15413. },
  15414. back: {
  15415. height: math.unit(1.5, "meters"),
  15416. weight: math.unit(68, "kg"),
  15417. name: "Back",
  15418. image: {
  15419. source: "./media/characters/liam-einarr/back.svg",
  15420. extra: 2822/2666,
  15421. bottom: 0.015
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(1.5, "meters"),
  15429. default: true
  15430. },
  15431. {
  15432. name: "Macro",
  15433. height: math.unit(150, "meters")
  15434. },
  15435. {
  15436. name: "Megamacro",
  15437. height: math.unit(35, "km")
  15438. },
  15439. ]
  15440. )
  15441. };
  15442. characterMakers["Linda"] = () => {
  15443. return makeCharacter(
  15444. "Linda",
  15445. "Dalken",
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(75, "kg"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/linda/front.svg",
  15453. extra: 930/874,
  15454. bottom: 0.004
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(6, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. )
  15466. };
  15467. characterMakers["Caylex"] = () => {
  15468. return makeCharacter(
  15469. "Caylex",
  15470. "ArgentVZ",
  15471. {
  15472. front: {
  15473. height: math.unit(6 + 8/12, "feet"),
  15474. weight: math.unit(220, "lb"),
  15475. name: "Front",
  15476. image: {
  15477. source: "./media/characters/caylex/front.svg",
  15478. extra: 821/772,
  15479. bottom: 0.07
  15480. }
  15481. },
  15482. back: {
  15483. height: math.unit(6 + 8/12, "feet"),
  15484. weight: math.unit(220, "lb"),
  15485. name: "Back",
  15486. image: {
  15487. source: "./media/characters/caylex/back.svg",
  15488. extra: 821/772,
  15489. bottom: 0.022
  15490. }
  15491. },
  15492. hand: {
  15493. height: math.unit(1.25, "feet"),
  15494. name: "Hand",
  15495. image: {
  15496. source: "./media/characters/caylex/hand.svg"
  15497. }
  15498. },
  15499. foot: {
  15500. height: math.unit(1.6, "feet"),
  15501. name: "Foot",
  15502. image: {
  15503. source: "./media/characters/caylex/foot.svg"
  15504. }
  15505. },
  15506. armored: {
  15507. height: math.unit(6 + 8/12, "feet"),
  15508. weight: math.unit(250, "lb"),
  15509. name: "Armored",
  15510. image: {
  15511. source: "./media/characters/caylex/armored.svg",
  15512. extra: 1420/1310,
  15513. bottom: 0.045
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(6 + 8/12, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Normal+",
  15525. height: math.unit(12, "feet")
  15526. },
  15527. ]
  15528. )
  15529. };
  15530. characterMakers["Alana"] = () => {
  15531. return makeCharacter(
  15532. "Alana",
  15533. "Adeleide",
  15534. {
  15535. front: {
  15536. height: math.unit(7 + 6/12, "feet"),
  15537. weight: math.unit(288, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/alana/front.svg",
  15541. extra: 679/653,
  15542. bottom: 22.5/701
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(7 + 6/12, "feet")
  15550. },
  15551. {
  15552. name: "Large",
  15553. height: math.unit(50, "feet")
  15554. },
  15555. {
  15556. name: "Macro",
  15557. height: math.unit(100, "feet"),
  15558. default: true
  15559. },
  15560. {
  15561. name: "Macro+",
  15562. height: math.unit(200, "feet")
  15563. },
  15564. ]
  15565. )
  15566. };
  15567. characterMakers["Hasani"] = () => {
  15568. return makeCharacter(
  15569. "Hasani",
  15570. "BishopBun",
  15571. {
  15572. front: {
  15573. height: math.unit(6 + 1/12, "feet"),
  15574. weight: math.unit(210, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/hasani/front.svg",
  15578. extra: 244/232,
  15579. bottom: 0.01
  15580. }
  15581. },
  15582. back: {
  15583. height: math.unit(6 + 1/12, "feet"),
  15584. weight: math.unit(210, "lb"),
  15585. name: "Back",
  15586. image: {
  15587. source: "./media/characters/hasani/back.svg",
  15588. extra: 244/232,
  15589. bottom: 0.01
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(6 + 1/12, "feet")
  15597. },
  15598. {
  15599. name: "Macro",
  15600. height: math.unit(175, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. )
  15605. };
  15606. characterMakers["Nita"] = () => {
  15607. return makeCharacter(
  15608. "Nita",
  15609. "Ich",
  15610. {
  15611. front: {
  15612. height: math.unit(1.82, "meters"),
  15613. weight: math.unit(140, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/nita/front.svg",
  15617. extra: 2473/2363,
  15618. bottom: 0.01
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(1.82, "m")
  15626. },
  15627. {
  15628. name: "Macro",
  15629. height: math.unit(300, "m")
  15630. },
  15631. {
  15632. name: "Mistake Canon",
  15633. height: math.unit(0.5, "miles"),
  15634. default: true
  15635. },
  15636. {
  15637. name: "Big Mistake",
  15638. height: math.unit(13, "miles")
  15639. },
  15640. {
  15641. name: "Playing God",
  15642. height: math.unit(2450, "miles")
  15643. },
  15644. ]
  15645. )
  15646. };
  15647. characterMakers["Shiriko"] = () => {
  15648. return makeCharacter(
  15649. "Shiriko",
  15650. "Shiriko",
  15651. {
  15652. front: {
  15653. height: math.unit(4, "feet"),
  15654. weight: math.unit(120, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/shiriko/front.svg",
  15658. extra: 195/188
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(4, "feet"),
  15666. default: true
  15667. },
  15668. ]
  15669. )
  15670. };
  15671. characterMakers["Deja"] = () => {
  15672. return makeCharacter(
  15673. "Deja",
  15674. "dejaroo",
  15675. {
  15676. front: {
  15677. height: math.unit(6, "feet"),
  15678. name: "front",
  15679. image: {
  15680. source: "./media/characters/deja/front.svg",
  15681. extra: 926/840,
  15682. bottom: 0.07
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Planck Length",
  15689. height: math.unit(1.6e-35, "meters")
  15690. },
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(30.48, "meters"),
  15694. default: true
  15695. },
  15696. {
  15697. name: "Universal",
  15698. height: math.unit(8.8e26, "meters")
  15699. },
  15700. ]
  15701. )
  15702. };
  15703. characterMakers["Anima"] = () => {
  15704. return makeCharacter(
  15705. "Anima",
  15706. "Anima",
  15707. {
  15708. side: {
  15709. height: math.unit(8, "feet"),
  15710. weight: math.unit(6300, "lb"),
  15711. name: "Side",
  15712. image: {
  15713. source: "./media/characters/anima/side.svg",
  15714. bottom: 0.035
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(8, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. )
  15726. };
  15727. characterMakers["Bianca"] = () => {
  15728. return makeCharacter(
  15729. "Bianca",
  15730. "Sdocat",
  15731. {
  15732. front: {
  15733. height: math.unit(8, "feet"),
  15734. weight: math.unit(350, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/bianca/front.svg",
  15738. extra: 234/225,
  15739. bottom: 0.03
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(8, "feet"),
  15747. default: true
  15748. },
  15749. ]
  15750. )
  15751. };
  15752. characterMakers["Adinia"] = () => {
  15753. return makeCharacter(
  15754. "Adinia",
  15755. "Sdocat",
  15756. {
  15757. front: {
  15758. height: math.unit(6, "feet"),
  15759. weight: math.unit(150, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/adinia/front.svg",
  15763. extra: 1845/1672,
  15764. bottom: 0.02
  15765. }
  15766. },
  15767. back: {
  15768. height: math.unit(6, "feet"),
  15769. weight: math.unit(150, "lb"),
  15770. name: "Back",
  15771. image: {
  15772. source: "./media/characters/adinia/back.svg",
  15773. extra: 1845/1672,
  15774. bottom: 0.002
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(11 + 5/12, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. )
  15786. };
  15787. characterMakers["Lykasa"] = () => {
  15788. return makeCharacter(
  15789. "Lykasa",
  15790. "Roxas00137",
  15791. {
  15792. front: {
  15793. height: math.unit(3, "meters"),
  15794. weight: math.unit(200, "kg"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/lykasa/front.svg",
  15798. extra: 1076/976,
  15799. bottom: 0.06
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(3, "meters")
  15807. },
  15808. {
  15809. name: "Kaiku",
  15810. height: math.unit(120, "meters"),
  15811. default: true
  15812. },
  15813. {
  15814. name: "Mega Kaiju",
  15815. height: math.unit(240, "km")
  15816. },
  15817. {
  15818. name: "Giga Kaiju",
  15819. height: math.unit(400, "megameters")
  15820. },
  15821. {
  15822. name: "Tera Kaiju",
  15823. height: math.unit(800, "gigameters")
  15824. },
  15825. {
  15826. name: "Kaiju Dragon Goddess",
  15827. height: math.unit(26, "zettaparsecs")
  15828. },
  15829. ]
  15830. )
  15831. };
  15832. characterMakers["Malfaren"] = () => {
  15833. return makeCharacter(
  15834. "Malfaren",
  15835. "Malfaren",
  15836. {
  15837. side: {
  15838. height: math.unit(283/124*6, "feet"),
  15839. weight: math.unit(35000, "lb"),
  15840. name: "Side",
  15841. image: {
  15842. source: "./media/characters/malfaren/side.svg",
  15843. extra: 2500/1010,
  15844. bottom: 0.01
  15845. }
  15846. },
  15847. front: {
  15848. height: math.unit(22.36, "feet"),
  15849. weight: math.unit(35000, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/malfaren/front.svg",
  15853. extra: 1631/1476,
  15854. bottom: 0.01
  15855. }
  15856. },
  15857. maw: {
  15858. height: math.unit(6.9, "feet"),
  15859. name: "Maw",
  15860. image: {
  15861. source: "./media/characters/malfaren/maw.svg"
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Big",
  15868. height: math.unit(283/162*6, "feet"),
  15869. },
  15870. {
  15871. name: "Bigger",
  15872. height: math.unit(283/124*6, "feet")
  15873. },
  15874. {
  15875. name: "Massive",
  15876. height: math.unit(283/92*6, "feet"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "👀💦",
  15881. height: math.unit(283/73*6, "feet"),
  15882. },
  15883. ]
  15884. )
  15885. };
  15886. characterMakers["Kernel"] = () => {
  15887. return makeCharacter(
  15888. "Kernel",
  15889. "KernelDecoy",
  15890. {
  15891. front: {
  15892. height: math.unit(1.7, "m"),
  15893. weight: math.unit(70, "kg"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/kernel/front.svg",
  15897. extra: 222/210,
  15898. bottom: 0.007
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Nano",
  15905. height: math.unit(17, "micrometers")
  15906. },
  15907. {
  15908. name: "Micro",
  15909. height: math.unit(1.7, "mm")
  15910. },
  15911. {
  15912. name: "Small",
  15913. height: math.unit(1.7, "cm")
  15914. },
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(1.7, "m"),
  15918. default: true
  15919. },
  15920. ]
  15921. )
  15922. };
  15923. characterMakers["Jayne Folest"] = () => {
  15924. return makeCharacter(
  15925. "Jayne Folest",
  15926. "JayneFolest",
  15927. {
  15928. front: {
  15929. height: math.unit(1.75, "meters"),
  15930. weight: math.unit(65, "kg"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/jayne-folest/front.svg",
  15934. extra: 2115/2007,
  15935. bottom: 0.02
  15936. }
  15937. },
  15938. back: {
  15939. height: math.unit(1.75, "meters"),
  15940. weight: math.unit(65, "kg"),
  15941. name: "Back",
  15942. image: {
  15943. source: "./media/characters/jayne-folest/back.svg",
  15944. extra: 2115/2007,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. frontClothed: {
  15949. height: math.unit(1.75, "meters"),
  15950. weight: math.unit(65, "kg"),
  15951. name: "Front (Clothed)",
  15952. image: {
  15953. source: "./media/characters/jayne-folest/front-clothed.svg",
  15954. extra: 2115/2007,
  15955. bottom: 0.035
  15956. }
  15957. },
  15958. hand: {
  15959. height: math.unit(1/1.260, "feet"),
  15960. name: "Hand",
  15961. image: {
  15962. source: "./media/characters/jayne-folest/hand.svg"
  15963. }
  15964. },
  15965. foot: {
  15966. height: math.unit(1/0.918, "feet"),
  15967. name: "Foot",
  15968. image: {
  15969. source: "./media/characters/jayne-folest/foot.svg"
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Micro",
  15976. height: math.unit(4, "cm")
  15977. },
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(1.75, "meters")
  15981. },
  15982. {
  15983. name: "Macro",
  15984. height: math.unit(47.5, "meters"),
  15985. default: true
  15986. },
  15987. ]
  15988. )
  15989. };
  15990. characterMakers["Algier"] = () => {
  15991. return makeCharacter(
  15992. "Algier",
  15993. "Silas",
  15994. {
  15995. front: {
  15996. height: math.unit(180, "cm"),
  15997. weight: math.unit(70, "kg"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/algier/front.svg",
  16001. extra: 596/572,
  16002. bottom: 0.04
  16003. }
  16004. },
  16005. back: {
  16006. height: math.unit(180, "cm"),
  16007. weight: math.unit(70, "kg"),
  16008. name: "Back",
  16009. image: {
  16010. source: "./media/characters/algier/back.svg",
  16011. extra: 596/572,
  16012. bottom: 0.025
  16013. }
  16014. },
  16015. frontdressed: {
  16016. height: math.unit(180, "cm"),
  16017. weight: math.unit(150, "kg"),
  16018. name: "Front-dressed",
  16019. image: {
  16020. source: "./media/characters/algier/front-dressed.svg",
  16021. extra: 596/572,
  16022. bottom: 0.038
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(5, "cm")
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(180, "cm"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(64, "m")
  16039. },
  16040. ]
  16041. )
  16042. };
  16043. characterMakers["Pretzel"] = () => {
  16044. return makeCharacter(
  16045. "Pretzel",
  16046. "Serpentus",
  16047. {
  16048. upright: {
  16049. height: math.unit(7, "feet"),
  16050. weight: math.unit(300, "lb"),
  16051. name: "Upright",
  16052. image: {
  16053. source: "./media/characters/pretzel/upright.svg",
  16054. extra: 534/522,
  16055. bottom: 0.065
  16056. }
  16057. },
  16058. sprawling: {
  16059. height: math.unit(3.75, "feet"),
  16060. weight: math.unit(300, "lb"),
  16061. name: "Sprawling",
  16062. image: {
  16063. source: "./media/characters/pretzel/sprawling.svg",
  16064. extra: 314/281,
  16065. bottom: 0.1
  16066. }
  16067. },
  16068. tongue: {
  16069. height: math.unit(2, "feet"),
  16070. name: "Tongue",
  16071. image: {
  16072. source: "./media/characters/pretzel/tongue.svg"
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(7, "feet"),
  16080. default: true
  16081. },
  16082. {
  16083. name: "Oversized",
  16084. height: math.unit(15, "feet")
  16085. },
  16086. {
  16087. name: "Huge",
  16088. height: math.unit(30, "feet")
  16089. },
  16090. {
  16091. name: "Macro",
  16092. height: math.unit(250, "feet")
  16093. },
  16094. ]
  16095. )
  16096. };
  16097. characterMakers["Roxi"] = () => {
  16098. return makeCharacter(
  16099. "Roxi",
  16100. "carthusflame",
  16101. {
  16102. sideFront: {
  16103. height: math.unit(5 + 2/12, "feet"),
  16104. weight: math.unit(120, "lb"),
  16105. name: "Front Side",
  16106. image: {
  16107. source: "./media/characters/roxi/side-front.svg",
  16108. extra: 2924/2717,
  16109. bottom: 0.08
  16110. }
  16111. },
  16112. sideBack: {
  16113. height: math.unit(5 + 2/12, "feet"),
  16114. weight: math.unit(120, "lb"),
  16115. name: "Back Side",
  16116. image: {
  16117. source: "./media/characters/roxi/side-back.svg",
  16118. extra: 2904/2693,
  16119. bottom: 0.06
  16120. }
  16121. },
  16122. front: {
  16123. height: math.unit(5 + 2/12, "feet"),
  16124. weight: math.unit(120, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/roxi/front.svg",
  16128. extra: 2028/1907,
  16129. bottom: 0.01
  16130. }
  16131. },
  16132. frontAlt: {
  16133. height: math.unit(5 + 2/12, "feet"),
  16134. weight: math.unit(120, "lb"),
  16135. name: "Front (Alt)",
  16136. image: {
  16137. source: "./media/characters/roxi/front-alt.svg",
  16138. extra: 1828/1798,
  16139. bottom: 0.01
  16140. }
  16141. },
  16142. sitting: {
  16143. height: math.unit(2.8, "feet"),
  16144. weight: math.unit(120, "lb"),
  16145. name: "Sitting",
  16146. image: {
  16147. source: "./media/characters/roxi/sitting.svg",
  16148. extra: 2660/2462,
  16149. bottom: 0.1
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(5 + 2/12, "feet"),
  16157. default: true
  16158. },
  16159. ]
  16160. )
  16161. };
  16162. characterMakers["Shadow"] = () => {
  16163. return makeCharacter(
  16164. "Shadow",
  16165. "MKShadowdrake",
  16166. {
  16167. side: {
  16168. height: math.unit(55, "feet"),
  16169. weight: math.unit(153, "tons"),
  16170. name: "Side",
  16171. image: {
  16172. source: "./media/characters/shadow/side.svg",
  16173. extra: 701/628,
  16174. bottom: 0.02
  16175. }
  16176. },
  16177. flying: {
  16178. height: math.unit(145, "feet"),
  16179. weight: math.unit(153, "tons"),
  16180. name: "Flying",
  16181. image: {
  16182. source: "./media/characters/shadow/flying.svg"
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(55, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. )
  16194. };
  16195. characterMakers["Marcie"] = () => {
  16196. return makeCharacter(
  16197. "Marcie",
  16198. "Macroceli",
  16199. {
  16200. front: {
  16201. height: math.unit(6, "feet"),
  16202. weight: math.unit(200, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/marcie/front.svg",
  16206. extra: 960/876,
  16207. bottom: 58/1017.87
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Macro",
  16214. height: math.unit(1, "mile"),
  16215. default: true
  16216. },
  16217. ]
  16218. )
  16219. };
  16220. characterMakers["Kachina"] = () => {
  16221. return makeCharacter(
  16222. "Kachina",
  16223. "Trisha",
  16224. {
  16225. front: {
  16226. height: math.unit(7, "feet"),
  16227. weight: math.unit(200, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/kachina/front.svg",
  16231. extra: 1290.68/1119,
  16232. bottom: 36.5/1327.18
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(7, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. )
  16244. };
  16245. characterMakers["Kash"] = () => {
  16246. return makeCharacter(
  16247. "Kash",
  16248. "4wrz",
  16249. {
  16250. looking: {
  16251. height: math.unit(2, "meters"),
  16252. weight: math.unit(300, "kg"),
  16253. name: "Looking",
  16254. image: {
  16255. source: "./media/characters/kash/looking.svg",
  16256. extra: 474/344,
  16257. bottom: 0.03
  16258. }
  16259. },
  16260. side: {
  16261. height: math.unit(2, "meters"),
  16262. weight: math.unit(300, "kg"),
  16263. name: "Side",
  16264. image: {
  16265. source: "./media/characters/kash/side.svg",
  16266. extra: 302/251,
  16267. bottom: 0.03
  16268. }
  16269. },
  16270. front: {
  16271. height: math.unit(2, "meters"),
  16272. weight: math.unit(300, "kg"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/kash/front.svg",
  16276. extra: 495/360,
  16277. bottom: 0.015
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(2, "meters"),
  16285. default: true
  16286. },
  16287. {
  16288. name: "Big",
  16289. height: math.unit(3, "meters")
  16290. },
  16291. {
  16292. name: "Large",
  16293. height: math.unit(5, "meters")
  16294. },
  16295. ]
  16296. )
  16297. };
  16298. characterMakers["Lalim"] = () => {
  16299. return makeCharacter(
  16300. "Lalim",
  16301. "Bruyaglovae",
  16302. {
  16303. feeding: {
  16304. height: math.unit(6.7, "feet"),
  16305. weight: math.unit(350, "lb"),
  16306. name: "Feeding",
  16307. image: {
  16308. source: "./media/characters/lalim/feeding.svg",
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(6.7, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. )
  16320. };
  16321. characterMakers["De'Vout"] = () => {
  16322. return makeCharacter(
  16323. "De'Vout",
  16324. "Bruyaglovae",
  16325. {
  16326. front: {
  16327. height: math.unit(9.5, "feet"),
  16328. weight: math.unit(600, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/de'vout/front.svg",
  16332. extra: 1443/1328,
  16333. bottom: 0.025
  16334. }
  16335. },
  16336. back: {
  16337. height: math.unit(9.5, "feet"),
  16338. weight: math.unit(600, "lb"),
  16339. name: "Back",
  16340. image: {
  16341. source: "./media/characters/de'vout/back.svg",
  16342. extra: 1443/1328
  16343. }
  16344. },
  16345. frontDressed: {
  16346. height: math.unit(9.5, "feet"),
  16347. weight: math.unit(600, "lb"),
  16348. name: "Front (Dressed",
  16349. image: {
  16350. source: "./media/characters/de'vout/front-dressed.svg",
  16351. extra: 1443/1328,
  16352. bottom: 0.025
  16353. }
  16354. },
  16355. backDressed: {
  16356. height: math.unit(9.5, "feet"),
  16357. weight: math.unit(600, "lb"),
  16358. name: "Back (Dressed",
  16359. image: {
  16360. source: "./media/characters/de'vout/back-dressed.svg",
  16361. extra: 1443/1328
  16362. }
  16363. },
  16364. },
  16365. [
  16366. {
  16367. name: "Normal",
  16368. height: math.unit(9.5, "feet"),
  16369. default: true
  16370. },
  16371. ]
  16372. )
  16373. };
  16374. characterMakers["Talana"] = () => {
  16375. return makeCharacter(
  16376. "Talana",
  16377. "Bruyaglovae",
  16378. {
  16379. front: {
  16380. height: math.unit(8, "feet"),
  16381. weight: math.unit(225, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/talana/front.svg",
  16385. extra: 1410/1300,
  16386. bottom: 0.015
  16387. }
  16388. },
  16389. frontDressed: {
  16390. height: math.unit(8, "feet"),
  16391. weight: math.unit(225, "lb"),
  16392. name: "Front (Dressed",
  16393. image: {
  16394. source: "./media/characters/talana/front-dressed.svg",
  16395. extra: 1410/1300,
  16396. bottom: 0.015
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(8, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. )
  16408. };
  16409. characterMakers["Xeauvok"] = () => {
  16410. return makeCharacter(
  16411. "Xeauvok",
  16412. "Bruyaglovae",
  16413. {
  16414. side: {
  16415. height: math.unit(7.2, "feet"),
  16416. weight: math.unit(150, "lb"),
  16417. name: "Side",
  16418. image: {
  16419. source: "./media/characters/xeauvok/side.svg",
  16420. extra: 1975/1523,
  16421. bottom: 0.07
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(7.2, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. )
  16433. };
  16434. characterMakers["Zara"] = () => {
  16435. return makeCharacter(
  16436. "Zara",
  16437. "Dalken",
  16438. {
  16439. side: {
  16440. height: math.unit(10, "feet"),
  16441. weight: math.unit(900, "kg"),
  16442. name: "Side",
  16443. image: {
  16444. source: "./media/characters/zara/side.svg",
  16445. extra: 504/498
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(10, "feet"),
  16453. default: true
  16454. },
  16455. ]
  16456. )
  16457. };
  16458. characterMakers["Richard (Dragon)"] = () => {
  16459. return makeCharacter(
  16460. "Richard (Dragon)",
  16461. "Xanaomin",
  16462. {
  16463. side: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(150, "lb"),
  16466. name: "Side",
  16467. image: {
  16468. source: "./media/characters/richard-dragon/side.svg",
  16469. extra: 845/340,
  16470. bottom: 0.017
  16471. }
  16472. },
  16473. maw: {
  16474. height: math.unit(2.97, "feet"),
  16475. name: "Maw",
  16476. image: {
  16477. source: "./media/characters/richard-dragon/maw.svg"
  16478. }
  16479. },
  16480. },
  16481. [
  16482. ]
  16483. )
  16484. };
  16485. characterMakers["Richard (Smeargle)"] = () => {
  16486. return makeCharacter(
  16487. "Richard (Smeargle)",
  16488. "Xanaomin",
  16489. {
  16490. front: {
  16491. height: math.unit(4, "feet"),
  16492. weight: math.unit(100, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/richard-smeargle/front.svg",
  16496. extra: 2952/2820,
  16497. bottom: 0.028
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(4, "feet"),
  16505. default: true
  16506. },
  16507. {
  16508. name: "Dynamax",
  16509. height: math.unit(20, "meters")
  16510. },
  16511. ]
  16512. )
  16513. };
  16514. characterMakers["Klay"] = () => {
  16515. return makeCharacter(
  16516. "Klay",
  16517. "klaythebat",
  16518. {
  16519. front: {
  16520. height: math.unit(6, "feet"),
  16521. weight: math.unit(110, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/klay/front.svg",
  16525. extra: 962/883,
  16526. bottom: 0.04
  16527. }
  16528. },
  16529. back: {
  16530. height: math.unit(6, "feet"),
  16531. weight: math.unit(110, "lb"),
  16532. name: "Back",
  16533. image: {
  16534. source: "./media/characters/klay/back.svg",
  16535. extra: 962/883
  16536. }
  16537. },
  16538. beans: {
  16539. height: math.unit(1.15, "feet"),
  16540. name: "Beans",
  16541. image: {
  16542. source: "./media/characters/klay/beans.svg"
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Micro",
  16549. height: math.unit(6, "inches")
  16550. },
  16551. {
  16552. name: "Mini",
  16553. height: math.unit(3, "feet")
  16554. },
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(6, "feet"),
  16558. default: true
  16559. },
  16560. {
  16561. name: "Big",
  16562. height: math.unit(25, "feet")
  16563. },
  16564. {
  16565. name: "Macro",
  16566. height: math.unit(100, "feet")
  16567. },
  16568. {
  16569. name: "Megamacro",
  16570. height: math.unit(400, "feet")
  16571. },
  16572. ]
  16573. )
  16574. };
  16575. characterMakers["Marcus"] = () => {
  16576. return makeCharacter(
  16577. "Marcus",
  16578. "klaythebat",
  16579. {
  16580. front: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(160, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/marcus/front.svg",
  16586. extra: 734/676,
  16587. bottom: 0.03
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Little",
  16594. height: math.unit(6, "feet")
  16595. },
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(110, "feet"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Macro",
  16603. height: math.unit(250, "feet")
  16604. },
  16605. {
  16606. name: "Megamacro",
  16607. height: math.unit(1000, "feet")
  16608. },
  16609. ]
  16610. )
  16611. };
  16612. characterMakers["Claude DelRoute"] = () => {
  16613. return makeCharacter(
  16614. "Claude DelRoute",
  16615. "Claude",
  16616. {
  16617. front: {
  16618. height: math.unit(7, "feet"),
  16619. weight: math.unit(275, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/claude-delroute/front.svg",
  16623. extra: 230/214,
  16624. bottom: 0.007
  16625. }
  16626. },
  16627. side: {
  16628. height: math.unit(7, "feet"),
  16629. weight: math.unit(275, "lb"),
  16630. name: "Side",
  16631. image: {
  16632. source: "./media/characters/claude-delroute/side.svg",
  16633. extra: 222/214,
  16634. bottom: 0.01
  16635. }
  16636. },
  16637. back: {
  16638. height: math.unit(7, "feet"),
  16639. weight: math.unit(275, "lb"),
  16640. name: "Back",
  16641. image: {
  16642. source: "./media/characters/claude-delroute/back.svg",
  16643. extra: 230/214,
  16644. bottom: 0.015
  16645. }
  16646. },
  16647. maw: {
  16648. height: math.unit(0.6407, "meters"),
  16649. name: "Maw",
  16650. image: {
  16651. source: "./media/characters/claude-delroute/maw.svg"
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(7, "feet"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Lorge",
  16663. height: math.unit(20, "feet")
  16664. },
  16665. ]
  16666. )
  16667. };
  16668. characterMakers["Dragonien"] = () => {
  16669. return makeCharacter(
  16670. "Dragonien",
  16671. "Dragonien",
  16672. {
  16673. front: {
  16674. height: math.unit(8 + 4/12, "feet"),
  16675. weight: math.unit(600, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/dragonien/front.svg",
  16679. extra: 100/94,
  16680. bottom: 3.3/103.3445
  16681. }
  16682. },
  16683. back: {
  16684. height: math.unit(8 + 4/12, "feet"),
  16685. weight: math.unit(600, "lb"),
  16686. name: "Back",
  16687. image: {
  16688. source: "./media/characters/dragonien/back.svg",
  16689. extra: 776/746,
  16690. bottom: 6.4/782.0616
  16691. }
  16692. },
  16693. foot: {
  16694. height: math.unit(1.54, "feet"),
  16695. name: "Foot",
  16696. image: {
  16697. source: "./media/characters/dragonien/foot.svg",
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(8 + 4/12, "feet"),
  16705. default: true
  16706. },
  16707. {
  16708. name: "Macro",
  16709. height: math.unit(200, "feet")
  16710. },
  16711. {
  16712. name: "Megamacro",
  16713. height: math.unit(1, "mile")
  16714. },
  16715. {
  16716. name: "Gigamacro",
  16717. height: math.unit(1000, "miles")
  16718. },
  16719. ]
  16720. )
  16721. };
  16722. characterMakers["Desta"] = () => {
  16723. return makeCharacter(
  16724. "Desta",
  16725. "Desta",
  16726. {
  16727. front: {
  16728. height: math.unit(5 + 2/12, "feet"),
  16729. weight: math.unit(110, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/desta/front.svg",
  16733. extra: 1482/1417
  16734. }
  16735. },
  16736. side: {
  16737. height: math.unit(5 + 2/12, "feet"),
  16738. weight: math.unit(110, "lb"),
  16739. name: "Side",
  16740. image: {
  16741. source: "./media/characters/desta/side.svg",
  16742. extra: 2579/2491,
  16743. bottom: 0.053
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Micro",
  16750. height: math.unit(6, "inches")
  16751. },
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(5 + 2/12, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Macro",
  16759. height: math.unit(62, "feet")
  16760. },
  16761. {
  16762. name: "Megamacro",
  16763. height: math.unit(1800, "feet")
  16764. },
  16765. ]
  16766. )
  16767. };
  16768. characterMakers["Storm Alystar"] = () => {
  16769. return makeCharacter(
  16770. "Storm Alystar",
  16771. "Thunderbum",
  16772. {
  16773. front: {
  16774. height: math.unit(10, "feet"),
  16775. weight: math.unit(700, "lb"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/storm-alystar/front.svg",
  16779. extra: 2112/1898,
  16780. bottom: 0.034
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Micro",
  16787. height: math.unit(3.5, "inches")
  16788. },
  16789. {
  16790. name: "Normal",
  16791. height: math.unit(10, "feet"),
  16792. default: true
  16793. },
  16794. {
  16795. name: "Macro",
  16796. height: math.unit(400, "feet")
  16797. },
  16798. {
  16799. name: "Deific",
  16800. height: math.unit(60, "miles")
  16801. },
  16802. ]
  16803. )
  16804. };
  16805. characterMakers["Ilia"] = () => {
  16806. return makeCharacter(
  16807. "Ilia",
  16808. "IliaVulpine",
  16809. {
  16810. front: {
  16811. height: math.unit(2.35, "meters"),
  16812. weight: math.unit(119, "kg"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/ilia/front.svg",
  16816. extra: 1285/1255,
  16817. bottom: 0.06
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(2.35, "meters")
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(140, "meters"),
  16829. default: true
  16830. },
  16831. {
  16832. name: "Megamacro",
  16833. height: math.unit(100, "miles")
  16834. },
  16835. ]
  16836. )
  16837. };
  16838. characterMakers["KingDead"] = () => {
  16839. return makeCharacter(
  16840. "KingDead",
  16841. "KingDead",
  16842. {
  16843. front: {
  16844. height: math.unit(6 + 5/12, "feet"),
  16845. weight: math.unit(190, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/kingdead/front.svg",
  16849. extra: 1228/1177
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Micro",
  16856. height: math.unit(7, "inches")
  16857. },
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(6 + 5/12, "feet")
  16861. },
  16862. {
  16863. name: "Macro",
  16864. height: math.unit(150, "feet"),
  16865. default: true
  16866. },
  16867. {
  16868. name: "Megamacro",
  16869. height: math.unit(200, "miles")
  16870. },
  16871. ]
  16872. )
  16873. };
  16874. characterMakers["Kyrehx"] = () => {
  16875. return makeCharacter(
  16876. "Kyrehx",
  16877. "Kyrehx",
  16878. {
  16879. front: {
  16880. height: math.unit(8, "feet"),
  16881. weight: math.unit(600, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/kyrehx/front.svg",
  16885. extra: 1195/1095,
  16886. bottom: 0.034
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Micro",
  16893. height: math.unit(2, "inches")
  16894. },
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(8, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macro",
  16902. height: math.unit(255, "feet")
  16903. },
  16904. ]
  16905. )
  16906. };
  16907. characterMakers["Xang"] = () => {
  16908. return makeCharacter(
  16909. "Xang",
  16910. "Xangoose",
  16911. {
  16912. front: {
  16913. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16914. weight: math.unit(184, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/xang/front.svg",
  16918. extra: 845/755
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16926. default: true
  16927. },
  16928. {
  16929. name: "Macro",
  16930. height: math.unit(0.935 * 146, "feet")
  16931. },
  16932. {
  16933. name: "Megamacro",
  16934. height: math.unit(0.935 * 3, "miles")
  16935. },
  16936. ]
  16937. )
  16938. };
  16939. characterMakers["Doc Weardno"] = () => {
  16940. return makeCharacter(
  16941. "Doc Weardno",
  16942. "DrWeardno",
  16943. {
  16944. frontDressed: {
  16945. height: math.unit(5 + 7/12, "feet"),
  16946. weight: math.unit(140, "lb"),
  16947. name: "Front (Dressed)",
  16948. image: {
  16949. source: "./media/characters/doc-weardno/front-dressed.svg",
  16950. extra: 263/234
  16951. }
  16952. },
  16953. backDressed: {
  16954. height: math.unit(5 + 7/12, "feet"),
  16955. weight: math.unit(140, "lb"),
  16956. name: "Back (Dressed)",
  16957. image: {
  16958. source: "./media/characters/doc-weardno/back-dressed.svg",
  16959. extra: 266/238
  16960. }
  16961. },
  16962. front: {
  16963. height: math.unit(5 + 7/12, "feet"),
  16964. weight: math.unit(140, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/doc-weardno/front.svg",
  16968. extra: 254/233
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Micro",
  16975. height: math.unit(3, "inches")
  16976. },
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(5 + 7/12, "feet"),
  16980. default: true
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(25, "feet")
  16985. },
  16986. {
  16987. name: "Megamacro",
  16988. height: math.unit(2, "miles")
  16989. },
  16990. ]
  16991. )
  16992. };
  16993. characterMakers["Seth Whilst"] = () => {
  16994. return makeCharacter(
  16995. "Seth Whilst",
  16996. "SethWhilst",
  16997. {
  16998. front: {
  16999. height: math.unit(6 + 2/12, "feet"),
  17000. weight: math.unit(153, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/seth-whilst/front.svg",
  17004. bottom: 0.07
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Micro",
  17011. height: math.unit(5, "inches")
  17012. },
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(6 + 2/12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. )
  17020. };
  17021. characterMakers["Pocket Jabari"] = () => {
  17022. return makeCharacter(
  17023. "Pocket Jabari",
  17024. "PocketJabari",
  17025. {
  17026. front: {
  17027. height: math.unit(3, "inches"),
  17028. weight: math.unit(8, "grams"),
  17029. name: "Front",
  17030. image: {
  17031. source: "./media/characters/pocket-jabari/front.svg",
  17032. extra: 1024/974,
  17033. bottom: 0.039
  17034. }
  17035. },
  17036. },
  17037. [
  17038. {
  17039. name: "Minimicro",
  17040. height: math.unit(8, "mm")
  17041. },
  17042. {
  17043. name: "Micro",
  17044. height: math.unit(3, "inches"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(3, "feet")
  17050. },
  17051. ]
  17052. )
  17053. };
  17054. characterMakers["Sapphy"] = () => {
  17055. return makeCharacter(
  17056. "Sapphy",
  17057. "Sapphy",
  17058. {
  17059. front: {
  17060. height: math.unit(15, "feet"),
  17061. weight: math.unit(3280, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/sapphy/front.svg",
  17065. extra: 671/577,
  17066. bottom: 0.085
  17067. }
  17068. },
  17069. back: {
  17070. height: math.unit(15, "feet"),
  17071. weight: math.unit(3280, "lb"),
  17072. name: "Back",
  17073. image: {
  17074. source: "./media/characters/sapphy/back.svg",
  17075. extra: 631/607,
  17076. bottom: 0.045
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(15, "feet")
  17084. },
  17085. {
  17086. name: "Casual Macro",
  17087. height: math.unit(120, "feet")
  17088. },
  17089. {
  17090. name: "Macro",
  17091. height: math.unit(2150, "feet"),
  17092. default: true
  17093. },
  17094. {
  17095. name: "Megamacro",
  17096. height: math.unit(8, "miles")
  17097. },
  17098. {
  17099. name: "Galaxy Mom",
  17100. height: math.unit(6, "megalightyears")
  17101. },
  17102. ]
  17103. )
  17104. };
  17105. characterMakers["Kiro"] = () => {
  17106. return makeCharacter(
  17107. "Kiro",
  17108. "Keeya",
  17109. {
  17110. front: {
  17111. height: math.unit(6, "feet"),
  17112. weight: math.unit(170, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/kiro/front.svg",
  17116. extra: 1064/1012,
  17117. bottom: 0.052
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Micro",
  17124. height: math.unit(6, "inches")
  17125. },
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(6, "feet"),
  17129. default: true
  17130. },
  17131. {
  17132. name: "Macro",
  17133. height: math.unit(72, "feet")
  17134. },
  17135. ]
  17136. )
  17137. };
  17138. characterMakers["Irishfox"] = () => {
  17139. return makeCharacter(
  17140. "Irishfox",
  17141. "IrishFox",
  17142. {
  17143. front: {
  17144. height: math.unit(5 + 9/12, "feet"),
  17145. weight: math.unit(175, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/irishfox/front.svg",
  17149. extra: 1912/1680,
  17150. bottom: 0.02
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Nano",
  17157. height: math.unit(1, "mm")
  17158. },
  17159. {
  17160. name: "Micro",
  17161. height: math.unit(2, "inches")
  17162. },
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(5 + 9/12, "feet"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Macro",
  17170. height: math.unit(45, "feet")
  17171. },
  17172. ]
  17173. )
  17174. };
  17175. characterMakers["Aronai Sieyes"] = () => {
  17176. return makeCharacter(
  17177. "Aronai Sieyes",
  17178. "Aronai",
  17179. {
  17180. front: {
  17181. height: math.unit(6 + 1/12, "feet"),
  17182. weight: math.unit(150, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/aronai-sieyes/front.svg",
  17186. extra: 1556/1480,
  17187. bottom: 0.015
  17188. }
  17189. },
  17190. side: {
  17191. height: math.unit(6 + 1/12, "feet"),
  17192. weight: math.unit(150, "lb"),
  17193. name: "Side",
  17194. image: {
  17195. source: "./media/characters/aronai-sieyes/side.svg",
  17196. extra: 1433/1390,
  17197. bottom: 0.0393
  17198. }
  17199. },
  17200. back: {
  17201. height: math.unit(6 + 1/12, "feet"),
  17202. weight: math.unit(150, "lb"),
  17203. name: "Back",
  17204. image: {
  17205. source: "./media/characters/aronai-sieyes/back.svg",
  17206. extra: 1544/1494,
  17207. bottom: 0.02
  17208. }
  17209. },
  17210. frontClothed: {
  17211. height: math.unit(6 + 1/12, "feet"),
  17212. weight: math.unit(150, "lb"),
  17213. name: "Front (Clothed)",
  17214. image: {
  17215. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17216. extra: 1582/1527
  17217. }
  17218. },
  17219. feral: {
  17220. height: math.unit(18, "feet"),
  17221. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17222. name: "Feral",
  17223. image: {
  17224. source: "./media/characters/aronai-sieyes/feral.svg",
  17225. extra: 1530/1240,
  17226. bottom: 0.035
  17227. }
  17228. },
  17229. },
  17230. [
  17231. {
  17232. name: "Micro",
  17233. height: math.unit(2, "inches")
  17234. },
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(6 + 1/12, "feet"),
  17238. default: true
  17239. }
  17240. ]
  17241. )
  17242. };
  17243. characterMakers["Xuna"] = () => {
  17244. return makeCharacter(
  17245. "Xuna",
  17246. "Xuna",
  17247. {
  17248. front: {
  17249. height: math.unit(12, "feet"),
  17250. weight: math.unit(410, "kg"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/xuna/front.svg",
  17254. extra: 2184/1980
  17255. }
  17256. },
  17257. side: {
  17258. height: math.unit(12, "feet"),
  17259. weight: math.unit(410, "kg"),
  17260. name: "Side",
  17261. image: {
  17262. source: "./media/characters/xuna/side.svg",
  17263. extra: 2184/1980
  17264. }
  17265. },
  17266. back: {
  17267. height: math.unit(12, "feet"),
  17268. weight: math.unit(410, "kg"),
  17269. name: "Back",
  17270. image: {
  17271. source: "./media/characters/xuna/back.svg",
  17272. extra: 2184/1980
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Nano glow",
  17279. height: math.unit(10, "nm")
  17280. },
  17281. {
  17282. name: "Micro floof",
  17283. height: math.unit(0.3, "m")
  17284. },
  17285. {
  17286. name: "Huggable softy boi",
  17287. height: math.unit(3.6576, "m"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "Admirable floof",
  17292. height: math.unit(80, "meters")
  17293. },
  17294. {
  17295. name: "Gentle macro",
  17296. height: math.unit(300, "meters")
  17297. },
  17298. {
  17299. name: "Very careful floof",
  17300. height: math.unit(3200, "meters")
  17301. },
  17302. {
  17303. name: "The mega floof",
  17304. height: math.unit(36000, "meters")
  17305. },
  17306. {
  17307. name: "Giga-fur-Wicker",
  17308. height: math.unit(4800000, "meters")
  17309. },
  17310. {
  17311. name: "Licky world",
  17312. height: math.unit(20000000, "meters")
  17313. },
  17314. {
  17315. name: "Floofy cyan sun",
  17316. height: math.unit(1500000000, "meters")
  17317. },
  17318. {
  17319. name: "Milky Wicker",
  17320. height: math.unit(1000000000000000000000, "meters")
  17321. },
  17322. {
  17323. name: "The observing Wicker",
  17324. height: math.unit(999999999999999999999999999, "meters")
  17325. },
  17326. ]
  17327. )
  17328. };
  17329. characterMakers["Arokha Sieyes"] = () => {
  17330. return makeCharacter(
  17331. "Arokha Sieyes",
  17332. "Aronai",
  17333. {
  17334. front: {
  17335. height: math.unit(5 + 9/12, "feet"),
  17336. weight: math.unit(150, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/arokha-sieyes/front.svg",
  17340. extra: 1425/1284,
  17341. bottom: 0.05
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(5 + 9/12, "feet")
  17349. },
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(30, "meters"),
  17353. default: true
  17354. },
  17355. ]
  17356. )
  17357. };
  17358. characterMakers["Arokh Sieyes"] = () => {
  17359. return makeCharacter(
  17360. "Arokh Sieyes",
  17361. "Aronai",
  17362. {
  17363. front: {
  17364. height: math.unit(6, "feet"),
  17365. weight: math.unit(180, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/arokh-sieyes/front.svg",
  17369. extra: 1830/1769,
  17370. bottom: 0.01
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(6, "feet")
  17378. },
  17379. {
  17380. name: "Macro",
  17381. height: math.unit(30, "meters"),
  17382. default: true
  17383. },
  17384. ]
  17385. )
  17386. };
  17387. characterMakers["Goldeneye"] = () => {
  17388. return makeCharacter(
  17389. "Goldeneye",
  17390. "Goldeneye Gryphon",
  17391. {
  17392. side: {
  17393. height: math.unit(13 + 1/12, "feet"),
  17394. weight: math.unit(8.5, "tonnes"),
  17395. name: "Side",
  17396. image: {
  17397. source: "./media/characters/goldeneye/side.svg",
  17398. extra: 1182/778,
  17399. bottom: 0.067
  17400. }
  17401. },
  17402. paw: {
  17403. height: math.unit(3.4, "feet"),
  17404. name: "Paw",
  17405. image: {
  17406. source: "./media/characters/goldeneye/paw.svg"
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(13 + 1/12, "feet"),
  17414. default: true
  17415. },
  17416. ]
  17417. )
  17418. };
  17419. characterMakers["Leonardo Lycheborne"] = () => {
  17420. return makeCharacter(
  17421. "Leonardo Lycheborne",
  17422. "Leo",
  17423. {
  17424. front: {
  17425. height: math.unit(6 + 1/12, "feet"),
  17426. weight: math.unit(210, "lb"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/leonardo-lycheborne/front.svg",
  17430. extra: 390/365,
  17431. bottom: 0.032
  17432. }
  17433. },
  17434. side: {
  17435. height: math.unit(6 + 1/12, "feet"),
  17436. weight: math.unit(210, "lb"),
  17437. name: "Side",
  17438. image: {
  17439. source: "./media/characters/leonardo-lycheborne/side.svg",
  17440. extra: 390/365,
  17441. bottom: 0.005
  17442. }
  17443. },
  17444. back: {
  17445. height: math.unit(6 + 1/12, "feet"),
  17446. weight: math.unit(210, "lb"),
  17447. name: "Back",
  17448. image: {
  17449. source: "./media/characters/leonardo-lycheborne/back.svg",
  17450. extra: 392/366,
  17451. bottom: 0.01
  17452. }
  17453. },
  17454. hand: {
  17455. height: math.unit(1.08, "feet"),
  17456. name: "Hand",
  17457. image: {
  17458. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17459. }
  17460. },
  17461. foot: {
  17462. height: math.unit(1.32, "feet"),
  17463. name: "Foot",
  17464. image: {
  17465. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17466. }
  17467. },
  17468. were: {
  17469. height: math.unit(20, "feet"),
  17470. weight: math.unit(7800, "lb"),
  17471. name: "Were",
  17472. image: {
  17473. source: "./media/characters/leonardo-lycheborne/were.svg",
  17474. extra: 308/294,
  17475. bottom: 0.048
  17476. }
  17477. },
  17478. feral: {
  17479. height: math.unit(7.5, "feet"),
  17480. weight: math.unit(600, "lb"),
  17481. name: "Feral",
  17482. image: {
  17483. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17484. extra: 210/186,
  17485. bottom: 0.108
  17486. }
  17487. },
  17488. taur: {
  17489. height: math.unit(11, "feet"),
  17490. weight: math.unit(3300, "lb"),
  17491. name: "Taur",
  17492. image: {
  17493. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17494. extra: 320/303,
  17495. bottom: 0.025
  17496. }
  17497. },
  17498. barghest: {
  17499. height: math.unit(11, "feet"),
  17500. weight: math.unit(1300, "lb"),
  17501. name: "Barghest",
  17502. image: {
  17503. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17504. extra: 323/302,
  17505. bottom: 0.027
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(6 + 1/12, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. )
  17517. };
  17518. characterMakers["Jet"] = () => {
  17519. return makeCharacter(
  17520. "Jet",
  17521. "JetHyena",
  17522. {
  17523. front: {
  17524. height: math.unit(10, "feet"),
  17525. weight: math.unit(350, "lb"),
  17526. name: "Front",
  17527. image: {
  17528. source: "./media/characters/jet/front.svg",
  17529. extra: 2050/1980,
  17530. bottom: 0.013
  17531. }
  17532. },
  17533. back: {
  17534. height: math.unit(10, "feet"),
  17535. weight: math.unit(350, "lb"),
  17536. name: "Back",
  17537. image: {
  17538. source: "./media/characters/jet/back.svg",
  17539. extra: 2050/1980,
  17540. bottom: 0.013
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Micro",
  17547. height: math.unit(6, "inches")
  17548. },
  17549. {
  17550. name: "Normal",
  17551. height: math.unit(10, "feet"),
  17552. default: true
  17553. },
  17554. {
  17555. name: "Macro",
  17556. height: math.unit(100, "feet")
  17557. },
  17558. ]
  17559. )
  17560. };
  17561. characterMakers["Tanarath"] = () => {
  17562. return makeCharacter(
  17563. "Tanarath",
  17564. "TanarathDragon",
  17565. {
  17566. front: {
  17567. height: math.unit(15, "feet"),
  17568. weight: math.unit(2800, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/tanarath/front.svg",
  17572. extra: 2392/2220,
  17573. bottom: 0.03
  17574. }
  17575. },
  17576. back: {
  17577. height: math.unit(15, "feet"),
  17578. weight: math.unit(2800, "lb"),
  17579. name: "Back",
  17580. image: {
  17581. source: "./media/characters/tanarath/back.svg",
  17582. extra: 2392/2220,
  17583. bottom: 0.03
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(15, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. )
  17595. };
  17596. characterMakers["Patty CattyBatty"] = () => {
  17597. return makeCharacter(
  17598. "Patty CattyBatty",
  17599. "Archangel2100",
  17600. {
  17601. front: {
  17602. height: math.unit(7 + 1/12, "feet"),
  17603. weight: math.unit(175, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/patty-cattybatty/front.svg",
  17607. extra: 908/874,
  17608. bottom: 0.025
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Micro",
  17615. height: math.unit(1, "inch")
  17616. },
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(7 + 1/12, "feet")
  17620. },
  17621. {
  17622. name: "Mini Macro",
  17623. height: math.unit(155, "feet")
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(1077, "feet")
  17628. },
  17629. {
  17630. name: "Mega Macro",
  17631. height: math.unit(47650, "feet"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Giga Macro",
  17636. height: math.unit(440, "miles")
  17637. },
  17638. {
  17639. name: "Tera Macro",
  17640. height: math.unit(8700, "miles")
  17641. },
  17642. {
  17643. name: "Planetary Macro",
  17644. height: math.unit(32700, "miles")
  17645. },
  17646. {
  17647. name: "Solar Macro",
  17648. height: math.unit(550000, "miles")
  17649. },
  17650. {
  17651. name: "Celestial Macro",
  17652. height: math.unit(2.5, "AU")
  17653. },
  17654. ]
  17655. )
  17656. };
  17657. characterMakers["Cappu"] = () => {
  17658. return makeCharacter(
  17659. "Cappu",
  17660. "CappuTheSheep",
  17661. {
  17662. front: {
  17663. height: math.unit(4 + 5/12, "feet"),
  17664. weight: math.unit(90, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/cappu/front.svg",
  17668. extra: 1247/1152,
  17669. bottom: 0.012
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(4 + 5/12, "feet"),
  17677. default: true
  17678. },
  17679. ]
  17680. )
  17681. };
  17682. characterMakers["Sebi"] = () => {
  17683. return makeCharacter(
  17684. "Sebi",
  17685. "DeathyWolfi",
  17686. {
  17687. frontDressed: {
  17688. height: math.unit(70, "cm"),
  17689. weight: math.unit(6, "kg"),
  17690. name: "Front (Dressed)",
  17691. image: {
  17692. source: "./media/characters/sebi/front-dressed.svg",
  17693. extra: 713.5/686.5,
  17694. bottom: 0.003
  17695. }
  17696. },
  17697. front: {
  17698. height: math.unit(70, "cm"),
  17699. weight: math.unit(5, "kg"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/sebi/front.svg",
  17703. extra: 713.5/686.5,
  17704. bottom: 0.003
  17705. }
  17706. }
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(70, "cm"),
  17712. default: true
  17713. },
  17714. {
  17715. name: "Macro",
  17716. height: math.unit(8, "meters")
  17717. },
  17718. ]
  17719. )
  17720. };
  17721. characterMakers["Typhek"] = () => {
  17722. return makeCharacter(
  17723. "Typhek",
  17724. "Adam0800",
  17725. {
  17726. front: {
  17727. height: math.unit(6, "feet"),
  17728. weight: math.unit(150, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/typhek/front.svg",
  17732. extra: 1948/1929,
  17733. bottom: 0.025
  17734. }
  17735. },
  17736. side: {
  17737. height: math.unit(6, "feet"),
  17738. weight: math.unit(150, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/typhek/side.svg",
  17742. extra: 2034/2010,
  17743. bottom: 0.003
  17744. }
  17745. },
  17746. back: {
  17747. height: math.unit(6, "feet"),
  17748. weight: math.unit(150, "lb"),
  17749. name: "Back",
  17750. image: {
  17751. source: "./media/characters/typhek/back.svg",
  17752. extra: 2005/1978,
  17753. bottom: 0.004
  17754. }
  17755. },
  17756. palm: {
  17757. height: math.unit(1.2, "feet"),
  17758. name: "Palm",
  17759. image: {
  17760. source: "./media/characters/typhek/palm.svg"
  17761. }
  17762. },
  17763. fist: {
  17764. height: math.unit(1.1, "feet"),
  17765. name: "Fist",
  17766. image: {
  17767. source: "./media/characters/typhek/fist.svg"
  17768. }
  17769. },
  17770. foot: {
  17771. height: math.unit(1.57, "feet"),
  17772. name: "Foot",
  17773. image: {
  17774. source: "./media/characters/typhek/foot.svg"
  17775. }
  17776. },
  17777. sole: {
  17778. height: math.unit(2.05, "feet"),
  17779. name: "Sole",
  17780. image: {
  17781. source: "./media/characters/typhek/sole.svg"
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(40, "stories"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "Megamacro",
  17793. height: math.unit(1, "mile")
  17794. },
  17795. {
  17796. name: "Gigamacro",
  17797. height: math.unit(4000, "solarradii")
  17798. },
  17799. {
  17800. name: "Universal",
  17801. height: math.unit(1.1, "universes")
  17802. }
  17803. ]
  17804. )
  17805. };
  17806. characterMakers["Kassy"] = () => {
  17807. return makeCharacter(
  17808. "Kassy",
  17809. "kclt",
  17810. {
  17811. side: {
  17812. height: math.unit(5 + 7/12, "feet"),
  17813. weight: math.unit(150, "lb"),
  17814. name: "Side",
  17815. image: {
  17816. source: "./media/characters/kassy/side.svg",
  17817. extra: 1280/1225,
  17818. bottom: 0.002
  17819. }
  17820. },
  17821. front: {
  17822. height: math.unit(5 + 7/12, "feet"),
  17823. weight: math.unit(150, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/kassy/front.svg",
  17827. extra: 1280/1225,
  17828. bottom: 0.025
  17829. }
  17830. },
  17831. back: {
  17832. height: math.unit(5 + 7/12, "feet"),
  17833. weight: math.unit(150, "lb"),
  17834. name: "Back",
  17835. image: {
  17836. source: "./media/characters/kassy/back.svg",
  17837. extra: 1280/1225,
  17838. bottom: 0.002
  17839. }
  17840. },
  17841. foot: {
  17842. height: math.unit(1.266, "feet"),
  17843. name: "Foot",
  17844. image: {
  17845. source: "./media/characters/kassy/foot.svg"
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(5 + 7/12, "feet")
  17853. },
  17854. {
  17855. name: "Macro",
  17856. height: math.unit(137, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Megamacro",
  17861. height: math.unit(1, "mile")
  17862. },
  17863. ]
  17864. )
  17865. };
  17866. characterMakers["Neil"] = () => {
  17867. return makeCharacter(
  17868. "Neil",
  17869. "mZmm",
  17870. {
  17871. front: {
  17872. height: math.unit(6 + 1/12, "feet"),
  17873. weight: math.unit(200, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/neil/front.svg",
  17877. extra: 1326/1250,
  17878. bottom: 0.023
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(6 + 1/12, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Macro",
  17890. height: math.unit(200, "feet")
  17891. },
  17892. ]
  17893. )
  17894. };
  17895. characterMakers["Atticus"] = () => {
  17896. return makeCharacter(
  17897. "Atticus",
  17898. "mZmm",
  17899. {
  17900. front: {
  17901. height: math.unit(5 + 9/12, "feet"),
  17902. weight: math.unit(190, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/atticus/front.svg",
  17906. extra: 2934/2785,
  17907. bottom: 0.025
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(5 + 9/12, "feet"),
  17915. default: true
  17916. },
  17917. {
  17918. name: "Macro",
  17919. height: math.unit(180, "feet")
  17920. },
  17921. ]
  17922. )
  17923. };
  17924. characterMakers["Milo"] = () => {
  17925. return makeCharacter(
  17926. "Milo",
  17927. "mZmm",
  17928. {
  17929. side: {
  17930. height: math.unit(9, "feet"),
  17931. weight: math.unit(650, "lb"),
  17932. name: "Side",
  17933. image: {
  17934. source: "./media/characters/milo/side.svg",
  17935. extra: 2644/2310,
  17936. bottom: 0.032
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(9, "feet"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Macro",
  17948. height: math.unit(300, "feet")
  17949. },
  17950. ]
  17951. )
  17952. };
  17953. characterMakers["Ijzer"] = () => {
  17954. return makeCharacter(
  17955. "Ijzer",
  17956. "Ijzer",
  17957. {
  17958. side: {
  17959. height: math.unit(8, "meters"),
  17960. weight: math.unit(90000, "kg"),
  17961. name: "Side",
  17962. image: {
  17963. source: "./media/characters/ijzer/side.svg",
  17964. extra: 2756/1600,
  17965. bottom: 0.01
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Small",
  17972. height: math.unit(3, "meters")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(8, "meters"),
  17977. default: true
  17978. },
  17979. {
  17980. name: "Normal+",
  17981. height: math.unit(10, "meters")
  17982. },
  17983. {
  17984. name: "Bigger",
  17985. height: math.unit(24, "meters")
  17986. },
  17987. {
  17988. name: "Huge",
  17989. height: math.unit(80, "meters")
  17990. },
  17991. ]
  17992. )
  17993. };
  17994. characterMakers["Luca Cervicum"] = () => {
  17995. return makeCharacter(
  17996. "Luca Cervicum",
  17997. "Luca Cervicum",
  17998. {
  17999. front: {
  18000. height: math.unit(6 + 2/12, "feet"),
  18001. weight: math.unit(153, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/luca-cervicum/front.svg",
  18005. extra: 370/327,
  18006. bottom: 0.015
  18007. }
  18008. },
  18009. back: {
  18010. height: math.unit(6 + 2/12, "feet"),
  18011. weight: math.unit(153, "lb"),
  18012. name: "Back",
  18013. image: {
  18014. source: "./media/characters/luca-cervicum/back.svg",
  18015. extra: 367/333,
  18016. bottom: 0.005
  18017. }
  18018. },
  18019. frontGear: {
  18020. height: math.unit(6 + 2/12, "feet"),
  18021. weight: math.unit(173, "lb"),
  18022. name: "Front (Gear)",
  18023. image: {
  18024. source: "./media/characters/luca-cervicum/front-gear.svg",
  18025. extra: 377/333,
  18026. bottom: 0.006
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(6 + 2/12, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. )
  18038. };
  18039. characterMakers["Oliver"] = () => {
  18040. return makeCharacter(
  18041. "Oliver",
  18042. "Fidchell",
  18043. {
  18044. front: {
  18045. height: math.unit(6 + 1/12, "feet"),
  18046. weight: math.unit(304, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/oliver/front.svg",
  18050. extra: 157/143,
  18051. bottom: 0.08
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(6 + 1/12, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. )
  18063. };
  18064. characterMakers["Shane"] = () => {
  18065. return makeCharacter(
  18066. "Shane",
  18067. "Fidchell",
  18068. {
  18069. front: {
  18070. height: math.unit(5 + 7/12, "feet"),
  18071. weight: math.unit(140, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/shane/front.svg",
  18075. extra: 304/289,
  18076. bottom: 0.005
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(5 + 7/12, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. )
  18088. };
  18089. characterMakers["Shin"] = () => {
  18090. return makeCharacter(
  18091. "Shin",
  18092. "Fidchell",
  18093. {
  18094. front: {
  18095. height: math.unit(5 + 9/12, "feet"),
  18096. weight: math.unit(178, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/shin/front.svg",
  18100. extra: 159/151,
  18101. bottom: 0.015
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(5 + 9/12, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. )
  18113. };
  18114. characterMakers["Xerxes"] = () => {
  18115. return makeCharacter(
  18116. "Xerxes",
  18117. "Fidchell",
  18118. {
  18119. front: {
  18120. height: math.unit(5 + 10/12, "feet"),
  18121. weight: math.unit(168, "lb"),
  18122. name: "Front",
  18123. image: {
  18124. source: "./media/characters/xerxes/front.svg",
  18125. extra: 282/260,
  18126. bottom: 0.045
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(5 + 10/12, "feet"),
  18134. default: true
  18135. },
  18136. ]
  18137. )
  18138. };
  18139. characterMakers["Chaska"] = () => {
  18140. return makeCharacter(
  18141. "Chaska",
  18142. "Fidchell",
  18143. {
  18144. front: {
  18145. height: math.unit(6 + 7/12, "feet"),
  18146. weight: math.unit(208, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/chaska/front.svg",
  18150. extra: 332/319,
  18151. bottom: 0.015
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(6 + 7/12, "feet"),
  18159. default: true
  18160. },
  18161. ]
  18162. )
  18163. };
  18164. characterMakers["Enuk"] = () => {
  18165. return makeCharacter(
  18166. "Enuk",
  18167. "Fidchell",
  18168. {
  18169. front: {
  18170. height: math.unit(5 + 8/12, "feet"),
  18171. weight: math.unit(208, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/enuk/front.svg",
  18175. extra: 437/406,
  18176. bottom: 0.02
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(5 + 8/12, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. )
  18188. };
  18189. characterMakers["Bruun"] = () => {
  18190. return makeCharacter(
  18191. "Bruun",
  18192. "Fidchell",
  18193. {
  18194. front: {
  18195. height: math.unit(5 + 10/12, "feet"),
  18196. weight: math.unit(252, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/bruun/front.svg",
  18200. extra: 197/187,
  18201. bottom: 0.012
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(5 + 10/12, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. )
  18213. };
  18214. characterMakers["Alexeev"] = () => {
  18215. return makeCharacter(
  18216. "Alexeev",
  18217. "Fidchell",
  18218. {
  18219. front: {
  18220. height: math.unit(6 + 10/12, "feet"),
  18221. weight: math.unit(255, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/alexeev/front.svg",
  18225. extra: 213/200,
  18226. bottom: 0.05
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(6 + 10/12, "feet"),
  18234. default: true
  18235. },
  18236. ]
  18237. )
  18238. };
  18239. characterMakers["Evelyn"] = () => {
  18240. return makeCharacter(
  18241. "Evelyn",
  18242. "Fidchell",
  18243. {
  18244. front: {
  18245. height: math.unit(2 + 8/12, "feet"),
  18246. weight: math.unit(22, "lb"),
  18247. name: "Front",
  18248. image: {
  18249. source: "./media/characters/evelyn/front.svg",
  18250. extra: 208/180
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(2 + 8/12, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. )
  18262. };
  18263. characterMakers["Inca"] = () => {
  18264. return makeCharacter(
  18265. "Inca",
  18266. "Fidchell",
  18267. {
  18268. front: {
  18269. height: math.unit(5 + 9/12, "feet"),
  18270. weight: math.unit(139, "lb"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/inca/front.svg",
  18274. extra: 294/291,
  18275. bottom: 0.03
  18276. }
  18277. },
  18278. },
  18279. [
  18280. {
  18281. name: "Normal",
  18282. height: math.unit(5 + 9/12, "feet"),
  18283. default: true
  18284. },
  18285. ]
  18286. )
  18287. };
  18288. characterMakers["Magdalene"] = () => {
  18289. return makeCharacter(
  18290. "Magdalene",
  18291. "Fidchell",
  18292. {
  18293. front: {
  18294. height: math.unit(5 + 1/12, "feet"),
  18295. weight: math.unit(84, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/magdalene/front.svg",
  18299. extra: 293/273
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(5 + 1/12, "feet"),
  18307. default: true
  18308. },
  18309. ]
  18310. )
  18311. };
  18312. characterMakers["Mera"] = () => {
  18313. return makeCharacter(
  18314. "Mera",
  18315. "Fidchell",
  18316. {
  18317. front: {
  18318. height: math.unit(6 + 3/12, "feet"),
  18319. weight: math.unit(185, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/mera/front.svg",
  18323. extra: 291/277,
  18324. bottom: 0.03
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(6 + 3/12, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. )
  18336. };
  18337. characterMakers["Ceres"] = () => {
  18338. return makeCharacter(
  18339. "Ceres",
  18340. "Radarn",
  18341. {
  18342. front: {
  18343. height: math.unit(6 + 7/12, "feet"),
  18344. weight: math.unit(160, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/ceres/front.svg",
  18348. extra: 1023/950,
  18349. bottom: 0.027
  18350. }
  18351. },
  18352. back: {
  18353. height: math.unit(6 + 7/12, "feet"),
  18354. weight: math.unit(160, "lb"),
  18355. name: "Back",
  18356. image: {
  18357. source: "./media/characters/ceres/back.svg",
  18358. extra: 1023/950
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Normal",
  18365. height: math.unit(6 + 7/12, "feet"),
  18366. default: true
  18367. },
  18368. ]
  18369. )
  18370. };
  18371. characterMakers["Kris"] = () => {
  18372. return makeCharacter(
  18373. "Kris",
  18374. "Radarn",
  18375. {
  18376. front: {
  18377. height: math.unit(5 + 10/12, "feet"),
  18378. weight: math.unit(150, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/kris/front.svg",
  18382. extra: 885/803,
  18383. bottom: 0.03
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(5 + 10/12, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. )
  18395. };
  18396. characterMakers["Taluthus"] = () => {
  18397. return makeCharacter(
  18398. "Taluthus",
  18399. "Taluthus",
  18400. {
  18401. front: {
  18402. height: math.unit(7, "feet"),
  18403. weight: math.unit(120, "kg"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/taluthus/front.svg",
  18407. extra: 903/833,
  18408. bottom: 0.015
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(7, "feet"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(300, "feet")
  18421. },
  18422. ]
  18423. )
  18424. };
  18425. characterMakers["Dawn"] = () => {
  18426. return makeCharacter(
  18427. "Dawn",
  18428. "Radarn",
  18429. {
  18430. front: {
  18431. height: math.unit(5 + 9/12, "feet"),
  18432. weight: math.unit(145, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/dawn/front.svg",
  18436. extra: 2094/2016,
  18437. bottom: 0.025
  18438. }
  18439. },
  18440. back: {
  18441. height: math.unit(5 + 9/12, "feet"),
  18442. weight: math.unit(160, "lb"),
  18443. name: "Back",
  18444. image: {
  18445. source: "./media/characters/dawn/back.svg",
  18446. extra: 2112/2080,
  18447. bottom: 0.005
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(6 + 7/12, "feet"),
  18455. default: true
  18456. },
  18457. ]
  18458. )
  18459. };
  18460. characterMakers["Arador"] = () => {
  18461. return makeCharacter(
  18462. "Arador",
  18463. "AradorTD",
  18464. {
  18465. anthro: {
  18466. height: math.unit(8 + 3/12, "feet"),
  18467. weight: math.unit(450, "lb"),
  18468. name: "Anthro",
  18469. image: {
  18470. source: "./media/characters/arador/anthro.svg",
  18471. extra: 1835/1718,
  18472. bottom: 0.025
  18473. }
  18474. },
  18475. feral: {
  18476. height: math.unit(4, "feet"),
  18477. weight: math.unit(200, "lb"),
  18478. name: "Feral",
  18479. image: {
  18480. source: "./media/characters/arador/feral.svg",
  18481. extra: 1683/1514,
  18482. bottom: 0.07
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(8 + 3/12, "feet")
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(82.5, "feet"),
  18494. default: true
  18495. },
  18496. ]
  18497. )
  18498. };
  18499. characterMakers["Dharsi"] = () => {
  18500. return makeCharacter(
  18501. "Dharsi",
  18502. "Dharsi",
  18503. {
  18504. front: {
  18505. height: math.unit(5 + 10/12, "feet"),
  18506. weight: math.unit(125, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/dharsi/front.svg",
  18510. extra: 716/630,
  18511. bottom: 0.035
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Nano",
  18518. height: math.unit(100, "nm")
  18519. },
  18520. {
  18521. name: "Micro",
  18522. height: math.unit(2, "inches")
  18523. },
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(5 + 10/12, "feet"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Macro",
  18531. height: math.unit(1000, "feet")
  18532. },
  18533. {
  18534. name: "Megamacro",
  18535. height: math.unit(10, "miles")
  18536. },
  18537. {
  18538. name: "Gigamacro",
  18539. height: math.unit(3000, "miles")
  18540. },
  18541. {
  18542. name: "Teramacro",
  18543. height: math.unit(500000, "miles")
  18544. },
  18545. {
  18546. name: "Teramacro+",
  18547. height: math.unit(30, "galaxies")
  18548. },
  18549. ]
  18550. )
  18551. };
  18552. characterMakers["Deathy"] = () => {
  18553. return makeCharacter(
  18554. "Deathy",
  18555. "DeathyWolfi",
  18556. {
  18557. front: {
  18558. height: math.unit(6, "feet"),
  18559. weight: math.unit(150, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/deathy/front.svg",
  18563. extra: 1552/1463,
  18564. bottom: 0.025
  18565. }
  18566. },
  18567. side: {
  18568. height: math.unit(6, "feet"),
  18569. weight: math.unit(150, "lb"),
  18570. name: "Side",
  18571. image: {
  18572. source: "./media/characters/deathy/side.svg",
  18573. extra: 1604/1455,
  18574. bottom: 0.025
  18575. }
  18576. },
  18577. back: {
  18578. height: math.unit(6, "feet"),
  18579. weight: math.unit(150, "lb"),
  18580. name: "Back",
  18581. image: {
  18582. source: "./media/characters/deathy/back.svg",
  18583. extra: 1580/1463,
  18584. bottom: 0.005
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Micro",
  18591. height: math.unit(5, "millimeters")
  18592. },
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(6 + 5/12, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. )
  18600. };
  18601. characterMakers["Juniper"] = () => {
  18602. return makeCharacter(
  18603. "Juniper",
  18604. "Dahwchooa",
  18605. {
  18606. front: {
  18607. height: math.unit(16, "feet"),
  18608. weight: math.unit(4000, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/juniper/front.svg",
  18612. bottom: 0.04
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(16, "feet"),
  18620. default: true
  18621. },
  18622. ]
  18623. )
  18624. };
  18625. characterMakers["Hipster"] = () => {
  18626. return makeCharacter(
  18627. "Hipster",
  18628. "Hipsterfox37",
  18629. {
  18630. front: {
  18631. height: math.unit(6, "feet"),
  18632. weight: math.unit(150, "lb"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/hipster/front.svg",
  18636. extra: 1312/1209,
  18637. bottom: 0.025
  18638. }
  18639. },
  18640. back: {
  18641. height: math.unit(6, "feet"),
  18642. weight: math.unit(150, "lb"),
  18643. name: "Back",
  18644. image: {
  18645. source: "./media/characters/hipster/back.svg",
  18646. extra: 1281/1196,
  18647. bottom: 0.01
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Micro",
  18654. height: math.unit(1, "mm")
  18655. },
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(4, "inches"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Macro",
  18663. height: math.unit(500, "feet")
  18664. },
  18665. {
  18666. name: "Megamacro",
  18667. height: math.unit(1000, "miles")
  18668. },
  18669. ]
  18670. )
  18671. };
  18672. characterMakers["Tendirmuldr"] = () => {
  18673. return makeCharacter(
  18674. "Tendirmuldr",
  18675. "Tendirmuldr",
  18676. {
  18677. front: {
  18678. height: math.unit(6, "feet"),
  18679. weight: math.unit(150, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/tendirmuldr/front.svg",
  18683. extra: 1878/1772,
  18684. bottom: 0.015
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Megamacro",
  18691. height: math.unit(1500, "miles"),
  18692. default: true
  18693. },
  18694. ]
  18695. )
  18696. };
  18697. characterMakers["Mort"] = () => {
  18698. return makeCharacter(
  18699. "Mort",
  18700. "LemonDeer",
  18701. {
  18702. front: {
  18703. height: math.unit(14, "feet"),
  18704. weight: math.unit(12000, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/mort/front.svg",
  18708. extra: 365/318,
  18709. bottom: 0.01
  18710. }
  18711. },
  18712. side: {
  18713. height: math.unit(14, "feet"),
  18714. weight: math.unit(12000, "lb"),
  18715. name: "Side",
  18716. image: {
  18717. source: "./media/characters/mort/side.svg",
  18718. extra: 365/318,
  18719. bottom: 0.052
  18720. }
  18721. },
  18722. back: {
  18723. height: math.unit(14, "feet"),
  18724. weight: math.unit(12000, "lb"),
  18725. name: "Back",
  18726. image: {
  18727. source: "./media/characters/mort/back.svg",
  18728. extra: 371/332,
  18729. bottom: 0.18
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(14, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. )
  18741. };
  18742. characterMakers["Lycoa"] = () => {
  18743. return makeCharacter(
  18744. "Lycoa",
  18745. "Varden",
  18746. {
  18747. front: {
  18748. height: math.unit(8, "feet"),
  18749. weight: math.unit(1, "ton"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/lycoa/front.svg",
  18753. extra: 1875/1789,
  18754. bottom: 0.022
  18755. }
  18756. },
  18757. back: {
  18758. height: math.unit(8, "feet"),
  18759. weight: math.unit(1, "ton"),
  18760. name: "Back",
  18761. image: {
  18762. source: "./media/characters/lycoa/back.svg",
  18763. extra: 1835/1781,
  18764. bottom: 0.03
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(8, "feet"),
  18772. default: true
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(30, "feet")
  18777. },
  18778. ]
  18779. )
  18780. };
  18781. characterMakers["Naldara"] = () => {
  18782. return makeCharacter(
  18783. "Naldara",
  18784. "Varden",
  18785. {
  18786. front: {
  18787. height: math.unit(4 + 2/12, "feet"),
  18788. weight: math.unit(70, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/naldara/front.svg",
  18792. extra: 841/720,
  18793. bottom: 0.04
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(4 + 2/12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. )
  18805. };
  18806. characterMakers["Briar"] = () => {
  18807. return makeCharacter(
  18808. "Briar",
  18809. "Varden",
  18810. {
  18811. front: {
  18812. height: math.unit(13 + 7/12, "feet"),
  18813. weight: math.unit(1500, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/briar/front.svg",
  18817. extra: 626/596,
  18818. bottom: 0.08
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(13 + 7/12, "feet"),
  18826. default: true
  18827. },
  18828. ]
  18829. )
  18830. };
  18831. characterMakers["Vanguard"] = () => {
  18832. return makeCharacter(
  18833. "Vanguard",
  18834. "Varden",
  18835. {
  18836. side: {
  18837. height: math.unit(10, "feet"),
  18838. weight: math.unit(500, "lb"),
  18839. name: "Side",
  18840. image: {
  18841. source: "./media/characters/vanguard/side.svg",
  18842. extra: 502/425,
  18843. bottom: 0.087
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(10, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. )
  18855. };
  18856. characterMakers["Artemis"] = () => {
  18857. return makeCharacter(
  18858. "Artemis",
  18859. "Varden",
  18860. {
  18861. front: {
  18862. height: math.unit(7.5, "feet"),
  18863. weight: math.unit(2, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/artemis/front.svg",
  18867. extra: 1192/1075,
  18868. bottom: 0.07
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(7.5, "feet"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Enlarged",
  18880. height: math.unit(12, "feet")
  18881. },
  18882. ]
  18883. )
  18884. };
  18885. characterMakers["Kira"] = () => {
  18886. return makeCharacter(
  18887. "Kira",
  18888. "meep",
  18889. {
  18890. front: {
  18891. height: math.unit(5 + 3/12, "feet"),
  18892. weight: math.unit(160, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/kira/front.svg",
  18896. extra: 906/786,
  18897. bottom: 0.01
  18898. }
  18899. },
  18900. back: {
  18901. height: math.unit(5 + 3/12, "feet"),
  18902. weight: math.unit(160, "lb"),
  18903. name: "Back",
  18904. image: {
  18905. source: "./media/characters/kira/back.svg",
  18906. extra: 882/757,
  18907. bottom: 0.005
  18908. }
  18909. },
  18910. frontDressed: {
  18911. height: math.unit(5 + 3/12, "feet"),
  18912. weight: math.unit(160, "lb"),
  18913. name: "Front (Dressed)",
  18914. image: {
  18915. source: "./media/characters/kira/front-dressed.svg",
  18916. extra: 906/786,
  18917. bottom: 0.01
  18918. }
  18919. },
  18920. beans: {
  18921. height: math.unit(0.92, "feet"),
  18922. name: "Beans",
  18923. image: {
  18924. source: "./media/characters/kira/beans.svg"
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(5 + 3/12, "feet"),
  18932. default: true
  18933. },
  18934. ]
  18935. )
  18936. };
  18937. characterMakers["Scramble"] = () => {
  18938. return makeCharacter(
  18939. "Scramble",
  18940. "meep",
  18941. {
  18942. front: {
  18943. height: math.unit(5 + 4/12, "feet"),
  18944. weight: math.unit(145, "lb"),
  18945. name: "Front",
  18946. image: {
  18947. source: "./media/characters/scramble/front.svg",
  18948. extra: 763/727,
  18949. bottom: 0.05
  18950. }
  18951. },
  18952. back: {
  18953. height: math.unit(5 + 4/12, "feet"),
  18954. weight: math.unit(145, "lb"),
  18955. name: "Back",
  18956. image: {
  18957. source: "./media/characters/scramble/back.svg",
  18958. extra: 826/737,
  18959. bottom: 0.002
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(5 + 4/12, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. )
  18971. };
  18972. characterMakers["Biscuit"] = () => {
  18973. return makeCharacter(
  18974. "Biscuit",
  18975. "meep",
  18976. {
  18977. side: {
  18978. height: math.unit(6 + 2/12, "feet"),
  18979. weight: math.unit(190, "lb"),
  18980. name: "Side",
  18981. image: {
  18982. source: "./media/characters/biscuit/side.svg",
  18983. extra: 858/791,
  18984. bottom: 0.044
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(6 + 2/12, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. )
  18996. };
  18997. characterMakers["Poffin"] = () => {
  18998. return makeCharacter(
  18999. "Poffin",
  19000. "meep",
  19001. {
  19002. front: {
  19003. height: math.unit(5 + 2/12, "feet"),
  19004. weight: math.unit(120, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/poffin/front.svg",
  19008. extra: 786/680,
  19009. bottom: 0.005
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(5 + 2/12, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. )
  19021. };
  19022. characterMakers["Dhari"] = () => {
  19023. return makeCharacter(
  19024. "Dhari",
  19025. "Dhari",
  19026. {
  19027. front: {
  19028. height: math.unit(6 + 3/12, "feet"),
  19029. weight: math.unit(519, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/dhari/front.svg",
  19033. extra: 1048/946,
  19034. bottom: 0.015
  19035. }
  19036. },
  19037. back: {
  19038. height: math.unit(6 + 3/12, "feet"),
  19039. weight: math.unit(519, "lb"),
  19040. name: "Back",
  19041. image: {
  19042. source: "./media/characters/dhari/back.svg",
  19043. extra: 1048/931,
  19044. bottom: 0.005
  19045. }
  19046. },
  19047. frontDressed: {
  19048. height: math.unit(6 + 3/12, "feet"),
  19049. weight: math.unit(519, "lb"),
  19050. name: "Front (Dressed)",
  19051. image: {
  19052. source: "./media/characters/dhari/front-dressed.svg",
  19053. extra: 1713/1546,
  19054. bottom: 0.02
  19055. }
  19056. },
  19057. backDressed: {
  19058. height: math.unit(6 + 3/12, "feet"),
  19059. weight: math.unit(519, "lb"),
  19060. name: "Back (Dressed)",
  19061. image: {
  19062. source: "./media/characters/dhari/back-dressed.svg",
  19063. extra: 1699/1537,
  19064. bottom: 0.01
  19065. }
  19066. },
  19067. maw: {
  19068. height: math.unit(0.95, "feet"),
  19069. name: "Maw",
  19070. image: {
  19071. source: "./media/characters/dhari/maw.svg"
  19072. }
  19073. },
  19074. wereFront: {
  19075. height: math.unit(12 + 8/12, "feet"),
  19076. weight: math.unit(4000, "lb"),
  19077. name: "Front (Were)",
  19078. image: {
  19079. source: "./media/characters/dhari/were-front.svg",
  19080. extra: 1065/969,
  19081. bottom: 0.015
  19082. }
  19083. },
  19084. wereBack: {
  19085. height: math.unit(12 + 8/12, "feet"),
  19086. weight: math.unit(4000, "lb"),
  19087. name: "Back (Were)",
  19088. image: {
  19089. source: "./media/characters/dhari/were-back.svg",
  19090. extra: 1065/969,
  19091. bottom: 0.012
  19092. }
  19093. },
  19094. wereMaw: {
  19095. height: math.unit(0.625, "meters"),
  19096. name: "Maw (Were)",
  19097. image: {
  19098. source: "./media/characters/dhari/were-maw.svg"
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(6 + 3/12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. )
  19110. };
  19111. characterMakers["Rena Dyne"] = () => {
  19112. return makeCharacter(
  19113. "Rena Dyne",
  19114. "renadyne",
  19115. {
  19116. anthro: {
  19117. height: math.unit(5 + 7/12, "feet"),
  19118. weight: math.unit(175, "lb"),
  19119. name: "Anthro",
  19120. image: {
  19121. source: "./media/characters/rena-dyne/anthro.svg",
  19122. extra: 1849/1785,
  19123. bottom: 0.005
  19124. }
  19125. },
  19126. taur: {
  19127. height: math.unit(15 + 6/12, "feet"),
  19128. weight: math.unit(8000, "lb"),
  19129. name: "Taur",
  19130. image: {
  19131. source: "./media/characters/rena-dyne/taur.svg",
  19132. extra: 2315/2234,
  19133. bottom: 0.033
  19134. }
  19135. },
  19136. },
  19137. [
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(5 + 7/12, "feet"),
  19141. default: true
  19142. },
  19143. ]
  19144. )
  19145. };
  19146. characterMakers["Weremeep"] = () => {
  19147. return makeCharacter(
  19148. "Weremeep",
  19149. "meep",
  19150. {
  19151. front: {
  19152. height: math.unit(8, "feet"),
  19153. weight: math.unit(600, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/weremeep/front.svg",
  19157. extra: 967/862,
  19158. bottom: 0.01
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(8, "feet"),
  19166. default: true
  19167. },
  19168. {
  19169. name: "Lorg",
  19170. height: math.unit(12, "feet")
  19171. },
  19172. {
  19173. name: "Oh Lawd She Comin'",
  19174. height: math.unit(20, "feet")
  19175. },
  19176. ]
  19177. )
  19178. };
  19179. characterMakers["Reza"] = () => {
  19180. return makeCharacter(
  19181. "Reza",
  19182. "rezavax",
  19183. {
  19184. front: {
  19185. height: math.unit(4, "feet"),
  19186. weight: math.unit(90, "lb"),
  19187. name: "Front",
  19188. image: {
  19189. source: "./media/characters/reza/front.svg",
  19190. extra: 1183/1111,
  19191. bottom: 0.017
  19192. }
  19193. },
  19194. back: {
  19195. height: math.unit(4, "feet"),
  19196. weight: math.unit(90, "lb"),
  19197. name: "Back",
  19198. image: {
  19199. source: "./media/characters/reza/back.svg",
  19200. extra: 1183/1111,
  19201. bottom: 0.01
  19202. }
  19203. },
  19204. },
  19205. [
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(4, "feet"),
  19209. default: true
  19210. },
  19211. ]
  19212. )
  19213. };
  19214. characterMakers["Athea"] = () => {
  19215. return makeCharacter(
  19216. "Athea",
  19217. "Athea",
  19218. {
  19219. side: {
  19220. height: math.unit(15, "feet"),
  19221. weight: math.unit(14, "tons"),
  19222. name: "Side",
  19223. image: {
  19224. source: "./media/characters/athea/side.svg",
  19225. extra: 960/540,
  19226. bottom: 0.003
  19227. }
  19228. },
  19229. sitting: {
  19230. height: math.unit(6*2.85, "feet"),
  19231. weight: math.unit(14, "tons"),
  19232. name: "Sitting",
  19233. image: {
  19234. source: "./media/characters/athea/sitting.svg",
  19235. extra: 621/581,
  19236. bottom: 0.075
  19237. }
  19238. },
  19239. maw: {
  19240. height: math.unit(7.59498031496063, "feet"),
  19241. name: "Maw",
  19242. image: {
  19243. source: "./media/characters/athea/maw.svg"
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Lap Cat",
  19250. height: math.unit(2.5, "feet")
  19251. },
  19252. {
  19253. name: "Minimacro",
  19254. height: math.unit(15, "feet"),
  19255. default: true
  19256. },
  19257. {
  19258. name: "Macro",
  19259. height: math.unit(120, "feet")
  19260. },
  19261. {
  19262. name: "Macro+",
  19263. height: math.unit(640, "feet")
  19264. },
  19265. ]
  19266. )
  19267. };
  19268. characterMakers["Seroko"] = () => {
  19269. return makeCharacter(
  19270. "Seroko",
  19271. "Seroko",
  19272. {
  19273. front: {
  19274. height: math.unit(8 + 8/12, "feet"),
  19275. weight: math.unit(130, "kg"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/seroko/front.svg",
  19279. extra: 1385/1280,
  19280. bottom: 0.025
  19281. }
  19282. },
  19283. back: {
  19284. height: math.unit(8 + 8/12, "feet"),
  19285. weight: math.unit(130, "kg"),
  19286. name: "Back",
  19287. image: {
  19288. source: "./media/characters/seroko/back.svg",
  19289. extra: 1369/1238,
  19290. bottom: 0.018
  19291. }
  19292. },
  19293. frontDressed: {
  19294. height: math.unit(8 + 8/12, "feet"),
  19295. weight: math.unit(130, "kg"),
  19296. name: "Front (Dressed)",
  19297. image: {
  19298. source: "./media/characters/seroko/front-dressed.svg",
  19299. extra: 1366/1275,
  19300. bottom: 0.03
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(8 + 8/12, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. )
  19312. };
  19313. characterMakers["Quatzi"] = () => {
  19314. return makeCharacter(
  19315. "Quatzi",
  19316. "chomp-chi",
  19317. {
  19318. front: {
  19319. height: math.unit(5.5, "feet"),
  19320. weight: math.unit(160, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/quatzi/front.svg",
  19324. extra: 2346/2242,
  19325. bottom: 0.015
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(5.5, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Big",
  19337. height: math.unit(7.7, "feet")
  19338. },
  19339. ]
  19340. )
  19341. };
  19342. characterMakers["Sen"] = () => {
  19343. return makeCharacter(
  19344. "Sen",
  19345. "Looneyluna",
  19346. {
  19347. front: {
  19348. height: math.unit(5 + 11/12, "feet"),
  19349. weight: math.unit(180, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/sen/front.svg",
  19353. extra: 1321/1254,
  19354. bottom: 0.015
  19355. }
  19356. },
  19357. side: {
  19358. height: math.unit(5 + 11/12, "feet"),
  19359. weight: math.unit(180, "lb"),
  19360. name: "Side",
  19361. image: {
  19362. source: "./media/characters/sen/side.svg",
  19363. extra: 1321/1254,
  19364. bottom: 0.007
  19365. }
  19366. },
  19367. back: {
  19368. height: math.unit(5 + 11/12, "feet"),
  19369. weight: math.unit(180, "lb"),
  19370. name: "Back",
  19371. image: {
  19372. source: "./media/characters/sen/back.svg",
  19373. extra: 1321/1254
  19374. }
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(5 + 11/12, "feet"),
  19381. default: true
  19382. },
  19383. ]
  19384. )
  19385. };
  19386. characterMakers["Fruity"] = () => {
  19387. return makeCharacter(
  19388. "Fruity",
  19389. "FruitOfTheDoom",
  19390. {
  19391. front: {
  19392. height: math.unit(166.6, "cm"),
  19393. weight: math.unit(66.6, "kg"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/fruity/front.svg",
  19397. extra: 1510/1386,
  19398. bottom: 0.04
  19399. }
  19400. },
  19401. back: {
  19402. height: math.unit(166.6, "cm"),
  19403. weight: math.unit(66.6, "lb"),
  19404. name: "Back",
  19405. image: {
  19406. source: "./media/characters/fruity/back.svg",
  19407. extra: 1563/1435,
  19408. bottom: 0.005
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(166.6, "cm"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Demonic",
  19420. height: math.unit(166.6, "feet")
  19421. },
  19422. ]
  19423. )
  19424. };
  19425. characterMakers["Zost"] = () => {
  19426. return makeCharacter(
  19427. "Zost",
  19428. "Varden",
  19429. {
  19430. side: {
  19431. height: math.unit(10, "feet"),
  19432. weight: math.unit(500, "lb"),
  19433. name: "Side",
  19434. image: {
  19435. source: "./media/characters/zost/side.svg",
  19436. extra: 966/880,
  19437. bottom: 0.075
  19438. }
  19439. },
  19440. mawFront: {
  19441. height: math.unit(1.08, "meters"),
  19442. name: "Maw (Front)",
  19443. image: {
  19444. source: "./media/characters/zost/maw-front.svg"
  19445. }
  19446. },
  19447. mawSide: {
  19448. height: math.unit(2.66, "feet"),
  19449. name: "Maw (Side)",
  19450. image: {
  19451. source: "./media/characters/zost/maw-side.svg"
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(10, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. )
  19463. };
  19464. characterMakers["Luci"] = () => {
  19465. return makeCharacter(
  19466. "Luci",
  19467. "sydst",
  19468. {
  19469. front: {
  19470. height: math.unit(5 + 4/12, "feet"),
  19471. weight: math.unit(120, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/luci/front.svg",
  19475. extra: 1985/1884,
  19476. bottom: 0.04
  19477. }
  19478. },
  19479. back: {
  19480. height: math.unit(5 + 4/12, "feet"),
  19481. weight: math.unit(120, "lb"),
  19482. name: "Back",
  19483. image: {
  19484. source: "./media/characters/luci/back.svg",
  19485. extra: 1892/1791,
  19486. bottom: 0.002
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(5 + 4/12, "feet"),
  19494. default: true
  19495. },
  19496. ]
  19497. )
  19498. };
  19499. characterMakers["2th"] = () => {
  19500. return makeCharacter(
  19501. "2th",
  19502. "Kenson",
  19503. {
  19504. front: {
  19505. height: math.unit(1500, "feet"),
  19506. weight: math.unit(3.8e6, "tons"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/2th/front.svg",
  19510. extra: 3489/3350,
  19511. bottom: 0.1
  19512. }
  19513. },
  19514. foot: {
  19515. height: math.unit(461, "feet"),
  19516. name: "Foot",
  19517. image: {
  19518. source: "./media/characters/2th/foot.svg"
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "\"Micro\"",
  19525. height: math.unit(15 + 7/12, "feet")
  19526. },
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(1500, "feet"),
  19530. default: true
  19531. },
  19532. {
  19533. name: "Macro",
  19534. height: math.unit(5000, "feet")
  19535. },
  19536. {
  19537. name: "Megamacro",
  19538. height: math.unit(15, "miles")
  19539. },
  19540. {
  19541. name: "Gigamacro",
  19542. height: math.unit(4000, "miles")
  19543. },
  19544. {
  19545. name: "Galactic",
  19546. height: math.unit(50, "AU")
  19547. },
  19548. ]
  19549. )
  19550. };
  19551. //characters
  19552. function makeCharacters() {
  19553. const results = [];
  19554. Object.entries(characterMakers).forEach(([key, value]) => {
  19555. results.push({
  19556. name: key,
  19557. constructor: value
  19558. });
  19559. });
  19560. results.push({
  19561. name: "Aigey",
  19562. constructor: makeAigey
  19563. });
  19564. results.push({
  19565. name: "Malik",
  19566. constructor: makeMalik
  19567. });
  19568. results.push({
  19569. name: "Sefer",
  19570. constructor: makeSefer
  19571. });
  19572. return results;
  19573. }