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

18836 строки
490 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. }
  2530. },
  2531. side: {
  2532. height: math.unit(6, "feet"),
  2533. weight: math.unit(200, "lbs"),
  2534. name: "Side",
  2535. image: {
  2536. source: "./media/characters/vulpes/side.svg"
  2537. }
  2538. },
  2539. back: {
  2540. height: math.unit(6, "feet"),
  2541. weight: math.unit(200, "lbs"),
  2542. name: "Back",
  2543. image: {
  2544. source: "./media/characters/vulpes/back.svg"
  2545. }
  2546. },
  2547. feet: {
  2548. height: math.unit(1.276, "feet"),
  2549. name: "Feet",
  2550. image: {
  2551. source: "./media/characters/vulpes/feet.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Micro",
  2558. height: math.unit(2, "inches")
  2559. },
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(6.3, "feet")
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(850, "feet")
  2567. },
  2568. {
  2569. name: "Megamacro",
  2570. height: math.unit(7500, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Gigamacro",
  2575. height: math.unit(570000, "miles")
  2576. }
  2577. ]
  2578. )
  2579. };
  2580. characterMakers["Rain Fallen"] = () => {
  2581. return makeCharacter(
  2582. "Rain Fallen",
  2583. "Rain Fallen",
  2584. {
  2585. front: {
  2586. height: math.unit(6, "feet"),
  2587. weight: math.unit(210, "lbs"),
  2588. name: "Front",
  2589. image: {
  2590. source: "./media/characters/rain/front.svg"
  2591. }
  2592. },
  2593. side: {
  2594. height: math.unit(6, "feet"),
  2595. weight: math.unit(210, "lbs"),
  2596. name: "Side",
  2597. image: {
  2598. source: "./media/characters/rain/side.svg"
  2599. }
  2600. },
  2601. back: {
  2602. height: math.unit(6, "feet"),
  2603. weight: math.unit(210, "lbs"),
  2604. name: "Back",
  2605. image: {
  2606. source: "./media/characters/rain/back.svg"
  2607. }
  2608. },
  2609. feral: {
  2610. height: math.unit(9, "feet"),
  2611. weight: math.unit(700, "lbs"),
  2612. name: "Feral",
  2613. image: {
  2614. source: "./media/characters/rain/feral.svg"
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(5, "meter")
  2622. },
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(150, "meter"),
  2626. default: true
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(278e6, "meter")
  2631. },
  2632. {
  2633. name: "Gigamacro",
  2634. height: math.unit(2e9, "meter")
  2635. },
  2636. {
  2637. name: "Teramacro",
  2638. height: math.unit(8e12, "meter")
  2639. },
  2640. {
  2641. name: "Devourer",
  2642. height: math.unit(14, "zettameters")
  2643. },
  2644. {
  2645. name: "Scarlet King",
  2646. height: math.unit(18, "yottameters")
  2647. },
  2648. {
  2649. name: "Void",
  2650. height: math.unit(6.66e66, "yottameters")
  2651. }
  2652. ]
  2653. )
  2654. };
  2655. characterMakers["Zaakira"] = () => {
  2656. return makeCharacter(
  2657. "Zaakira",
  2658. "Jazzywolf",
  2659. {
  2660. standing: {
  2661. height: math.unit(6, "feet"),
  2662. weight: math.unit(180, "lbs"),
  2663. name: "Standing",
  2664. image: {
  2665. source: "./media/characters/zaakira/standing.svg"
  2666. }
  2667. },
  2668. laying: {
  2669. height: math.unit(3, "feet"),
  2670. weight: math.unit(180, "lbs"),
  2671. name: "Laying",
  2672. image: {
  2673. source: "./media/characters/zaakira/laying.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(12, "feet")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(279, "feet"),
  2685. default: true
  2686. }
  2687. ]
  2688. )
  2689. };
  2690. characterMakers["Sigvald"] = () => {
  2691. return makeCharacter(
  2692. "Sigvald",
  2693. "Sigvald",
  2694. {
  2695. front: {
  2696. height: math.unit(6, "feet"),
  2697. weight: math.unit(250, "lbs"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/sigvald/front.svg",
  2701. extra: 1000 / 850
  2702. }
  2703. },
  2704. back: {
  2705. height: math.unit(6, "feet"),
  2706. weight: math.unit(250, "lbs"),
  2707. name: "Back",
  2708. image: {
  2709. source: "./media/characters/sigvald/back.svg"
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(8, "feet")
  2717. },
  2718. {
  2719. name: "Large",
  2720. height: math.unit(12, "feet")
  2721. },
  2722. {
  2723. name: "Larger",
  2724. height: math.unit(20, "feet")
  2725. },
  2726. {
  2727. name: "Macro",
  2728. height: math.unit(150, "feet")
  2729. },
  2730. {
  2731. name: "Macro+",
  2732. height: math.unit(200, "feet"),
  2733. default: true
  2734. },
  2735. ]
  2736. )
  2737. };
  2738. characterMakers["Scott"] = () => {
  2739. return makeCharacter(
  2740. "Scott",
  2741. "Scott",
  2742. {
  2743. side: {
  2744. height: math.unit(12, "feet"),
  2745. weight: math.unit(3000, "lbs"),
  2746. name: "Side",
  2747. image: {
  2748. source: "./media/characters/scott/side.svg",
  2749. extra: 1,
  2750. bottom: 0.069
  2751. }
  2752. },
  2753. upright: {
  2754. height: math.unit(12, "feet"),
  2755. weight: math.unit(3000, "lbs"),
  2756. name: "Upright",
  2757. image: {
  2758. source: "./media/characters/scott/upright.svg",
  2759. extra: 1,
  2760. bottom: 0.05
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(12, "feet"),
  2768. default: true
  2769. },
  2770. ]
  2771. )
  2772. };
  2773. characterMakers["Tobias"] = () => {
  2774. return makeCharacter(
  2775. "Tobias",
  2776. "Tobias",
  2777. {
  2778. side: {
  2779. height: math.unit(8, "meters"),
  2780. weight: math.unit(84755, "lbs"),
  2781. name: "Side",
  2782. image: {
  2783. source: "./media/characters/tobias/side.svg",
  2784. extra: 5 / 4
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Normal",
  2791. height: math.unit(8, "meters"),
  2792. default: true
  2793. },
  2794. ]
  2795. )
  2796. };
  2797. characterMakers["Kieran"] = () => {
  2798. return makeCharacter(
  2799. "Kieran",
  2800. "Kieran",
  2801. {
  2802. front: {
  2803. height: math.unit(5.5, "feet"),
  2804. weight: math.unit(400, "lbs"),
  2805. name: "Front",
  2806. image: {
  2807. source: "./media/characters/kieran/front.svg",
  2808. extra: 1.05
  2809. }
  2810. },
  2811. side: {
  2812. height: math.unit(5.5, "feet"),
  2813. weight: math.unit(400, "lbs"),
  2814. name: "Side",
  2815. image: {
  2816. source: "./media/characters/kieran/side.svg",
  2817. extra: 950 / 850
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(5.5, "feet"),
  2825. default: true
  2826. },
  2827. ]
  2828. )
  2829. };
  2830. characterMakers["Sanya"] = () => {
  2831. return makeCharacter(
  2832. "Sanya",
  2833. "BanterGhost",
  2834. {
  2835. side: {
  2836. height: math.unit(2, "meters"),
  2837. weight: math.unit(70, "kg"),
  2838. name: "Side",
  2839. image: {
  2840. source: "./media/characters/sanya/side.svg",
  2841. bottom: 0.02,
  2842. extra: 1.02
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Small",
  2849. height: math.unit(2, "meters")
  2850. },
  2851. {
  2852. name: "Normal",
  2853. height: math.unit(3, "meters")
  2854. },
  2855. {
  2856. name: "Macro",
  2857. height: math.unit(16, "meters"),
  2858. default: true
  2859. },
  2860. ]
  2861. )
  2862. };
  2863. characterMakers["Miranda"] = () => {
  2864. return makeCharacter(
  2865. "Miranda",
  2866. "MirandaArqayla",
  2867. {
  2868. side: {
  2869. height: math.unit(2, "meters"),
  2870. weight: math.unit(120, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/miranda/front.svg",
  2874. extra: 10.6 / 10
  2875. }
  2876. },
  2877. },
  2878. [
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(10, "feet"),
  2882. default: true
  2883. }
  2884. ]
  2885. )
  2886. };
  2887. characterMakers["James"] = () => {
  2888. return makeCharacter(
  2889. "James",
  2890. "MirandaArqayla",
  2891. {
  2892. side: {
  2893. height: math.unit(2, "meters"),
  2894. weight: math.unit(100, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/james/front.svg",
  2898. extra: 10 / 8.5
  2899. }
  2900. },
  2901. },
  2902. [
  2903. {
  2904. name: "Normal",
  2905. height: math.unit(8.5, "feet"),
  2906. default: true
  2907. }
  2908. ]
  2909. )
  2910. };
  2911. characterMakers["Heather"] = () => {
  2912. return makeCharacter(
  2913. "Heather",
  2914. "MirandaArqayla",
  2915. {
  2916. side: {
  2917. height: math.unit(9.5, "feet"),
  2918. weight: math.unit(2500, "lbs"),
  2919. name: "Side",
  2920. image: {
  2921. source: "./media/characters/heather/side.svg"
  2922. }
  2923. },
  2924. },
  2925. [
  2926. {
  2927. name: "Normal",
  2928. height: math.unit(9.5, "feet"),
  2929. default: true
  2930. }
  2931. ]
  2932. )
  2933. };
  2934. characterMakers["Lukas"] = () => {
  2935. return makeCharacter(
  2936. "Lukas",
  2937. "MirandaArqayla",
  2938. {
  2939. side: {
  2940. height: math.unit(6.5, "feet"),
  2941. weight: math.unit(400, "lbs"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/lukas/side.svg",
  2945. extra: 7.25 / 6.5
  2946. }
  2947. },
  2948. },
  2949. [
  2950. {
  2951. name: "Normal",
  2952. height: math.unit(6.5, "feet"),
  2953. default: true
  2954. }
  2955. ]
  2956. )
  2957. };
  2958. characterMakers["Louise"] = () => {
  2959. return makeCharacter(
  2960. "Louise",
  2961. "MirandaArqayla",
  2962. {
  2963. side: {
  2964. height: math.unit(5, "feet"),
  2965. weight: math.unit(3000, "lbs"),
  2966. name: "Side",
  2967. image: {
  2968. source: "./media/characters/louise/side.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5, "feet"),
  2976. default: true
  2977. }
  2978. ]
  2979. )
  2980. };
  2981. characterMakers["Ramona"] = () => {
  2982. return makeCharacter(
  2983. "Ramona",
  2984. "ZakuraTech",
  2985. {
  2986. side: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(150, "lbs"),
  2989. name: "Side",
  2990. image: {
  2991. source: "./media/characters/ramona/side.svg"
  2992. }
  2993. },
  2994. },
  2995. [
  2996. {
  2997. name: "Normal",
  2998. height: math.unit(5.3, "meters"),
  2999. default: true
  3000. },
  3001. {
  3002. name: "Macro",
  3003. height: math.unit(20, "stories")
  3004. },
  3005. {
  3006. name: "Macro+",
  3007. height: math.unit(50, "stories")
  3008. },
  3009. ]
  3010. )
  3011. };
  3012. characterMakers["Deerpuff"] = () => {
  3013. return makeCharacter(
  3014. "Deerpuff",
  3015. "Deerpuff",
  3016. {
  3017. standing: {
  3018. height: math.unit(5.75, "feet"),
  3019. weight: math.unit(160, "lbs"),
  3020. name: "Standing",
  3021. image: {
  3022. source: "./media/characters/deerpuff/standing.svg",
  3023. extra: 682 / 624
  3024. }
  3025. },
  3026. sitting: {
  3027. height: math.unit(5.75 / 1.79, "feet"),
  3028. weight: math.unit(160, "lbs"),
  3029. name: "Sitting",
  3030. image: {
  3031. source: "./media/characters/deerpuff/sitting.svg",
  3032. bottom: 44 / 400,
  3033. extra: 1
  3034. }
  3035. },
  3036. taurLaying: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(400, "lbs"),
  3039. name: "Taur (Laying)",
  3040. image: {
  3041. source: "./media/characters/deerpuff/taur-laying.svg"
  3042. }
  3043. },
  3044. },
  3045. [
  3046. {
  3047. name: "Puffball",
  3048. height: math.unit(6, "inches")
  3049. },
  3050. {
  3051. name: "Normalpuff",
  3052. height: math.unit(5.75, "feet")
  3053. },
  3054. {
  3055. name: "Macropuff",
  3056. height: math.unit(1500, "feet"),
  3057. default: true
  3058. },
  3059. {
  3060. name: "Megapuff",
  3061. height: math.unit(500, "miles")
  3062. },
  3063. {
  3064. name: "Gigapuff",
  3065. height: math.unit(250000, "miles")
  3066. },
  3067. {
  3068. name: "Omegapuff",
  3069. height: math.unit(1000, "lightyears")
  3070. },
  3071. ]
  3072. )
  3073. };
  3074. characterMakers["Vivian"] = () => {
  3075. return makeCharacter(
  3076. "Vivian",
  3077. "Fauxlacine",
  3078. {
  3079. stomping: {
  3080. height: math.unit(6, "feet"),
  3081. weight: math.unit(170, "lbs"),
  3082. name: "Stomping",
  3083. image: {
  3084. source: "./media/characters/vivian/stomping.svg"
  3085. }
  3086. },
  3087. sitting: {
  3088. height: math.unit(6 / 1.75, "feet"),
  3089. weight: math.unit(170, "lbs"),
  3090. name: "Sitting",
  3091. image: {
  3092. source: "./media/characters/vivian/sitting.svg",
  3093. bottom: 1 / 6.4,
  3094. extra: 1,
  3095. }
  3096. },
  3097. },
  3098. [
  3099. {
  3100. name: "Normal",
  3101. height: math.unit(7, "feet"),
  3102. default: true
  3103. },
  3104. {
  3105. name: "Macro",
  3106. height: math.unit(10, "stories")
  3107. },
  3108. {
  3109. name: "Macro+",
  3110. height: math.unit(30, "stories")
  3111. },
  3112. {
  3113. name: "Megamacro",
  3114. height: math.unit(10, "miles")
  3115. },
  3116. {
  3117. name: "Megamacro+",
  3118. height: math.unit(2750000, "meters")
  3119. },
  3120. ]
  3121. )
  3122. };
  3123. characterMakers["Prince"] = () => {
  3124. return makeCharacter(
  3125. "Prince",
  3126. "Kurrikage",
  3127. {
  3128. front: {
  3129. height: math.unit(6, "feet"),
  3130. weight: math.unit(160, "lbs"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/prince/front.svg",
  3134. extra: 3400/3000
  3135. }
  3136. },
  3137. jumping: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(160, "lbs"),
  3140. name: "Jumping",
  3141. image: {
  3142. source: "./media/characters/prince/jump.svg",
  3143. extra: 2555/2134
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(7.75, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Not cute",
  3155. height: math.unit(17, "feet")
  3156. },
  3157. {
  3158. name: "I said NOT",
  3159. height: math.unit(91, "feet")
  3160. },
  3161. {
  3162. name: "Please stop",
  3163. height: math.unit(560, "feet")
  3164. },
  3165. {
  3166. name: "What have you done",
  3167. height: math.unit(2200, "feet")
  3168. },
  3169. {
  3170. name: "Deer God",
  3171. height: math.unit(3.6, "miles")
  3172. },
  3173. ]
  3174. )
  3175. };
  3176. characterMakers["Psymon"] = () => {
  3177. return makeCharacter(
  3178. "Psymon",
  3179. "Kurrikage",
  3180. {
  3181. standing: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(300, "lbs"),
  3184. name: "Standing",
  3185. image: {
  3186. source: "./media/characters/psymon/standing.svg",
  3187. extra: 1888/1810,
  3188. bottom: 0.05
  3189. }
  3190. },
  3191. slithering: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(300, "lbs"),
  3194. name: "Slithering",
  3195. image: {
  3196. source: "./media/characters/psymon/slithering.svg",
  3197. extra: 1330/1224
  3198. }
  3199. },
  3200. slitheringAlt: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(300, "lbs"),
  3203. name: "Slithering (Alt)",
  3204. image: {
  3205. source: "./media/characters/psymon/slithering-alt.svg",
  3206. extra: 1330/1224
  3207. }
  3208. },
  3209. },
  3210. [
  3211. {
  3212. name: "Normal",
  3213. height: math.unit(11.25, "feet"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Large",
  3218. height: math.unit(27, "feet")
  3219. },
  3220. {
  3221. name: "Giant",
  3222. height: math.unit(87, "feet")
  3223. },
  3224. {
  3225. name: "Macro",
  3226. height: math.unit(365, "feet")
  3227. },
  3228. {
  3229. name: "Megamacro",
  3230. height: math.unit(3, "miles")
  3231. },
  3232. {
  3233. name: "World Serpent",
  3234. height: math.unit(8000, "miles")
  3235. },
  3236. ]
  3237. )
  3238. };
  3239. characterMakers["Daimos"] = () => {
  3240. return makeCharacter(
  3241. "Daimos",
  3242. "Kurrikage",
  3243. {
  3244. front: {
  3245. height: math.unit(6, "feet"),
  3246. weight: math.unit(180, "lbs"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/daimos/front.svg",
  3250. extra: 4160/3897,
  3251. bottom: 0.021
  3252. }
  3253. }
  3254. },
  3255. [
  3256. {
  3257. name: "Normal",
  3258. height: math.unit(8, "feet"),
  3259. default: true
  3260. },
  3261. {
  3262. name: "Big Dog",
  3263. height: math.unit(22, "feet")
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(127, "feet")
  3268. },
  3269. {
  3270. name: "Megamacro",
  3271. height: math.unit(3600, "feet")
  3272. },
  3273. ]
  3274. )
  3275. };
  3276. characterMakers["Blake"] = () => {
  3277. return makeCharacter(
  3278. "Blake",
  3279. "Kurrikage",
  3280. {
  3281. side: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(180, "lbs"),
  3284. name: "Side",
  3285. image: {
  3286. source: "./media/characters/blake/side.svg",
  3287. extra: 1212/1120 ,
  3288. bottom: 0.05
  3289. }
  3290. },
  3291. crouched: {
  3292. height: math.unit(6*0.57, "feet"),
  3293. weight: math.unit(180, "lbs"),
  3294. name: "Crouched",
  3295. image: {
  3296. source: "./media/characters/blake/crouched.svg",
  3297. extra: 840/587 ,
  3298. bottom: 0.04
  3299. }
  3300. },
  3301. bent: {
  3302. height: math.unit(6*0.75, "feet"),
  3303. weight: math.unit(180, "lbs"),
  3304. name: "Bent",
  3305. image: {
  3306. source: "./media/characters/blake/bent.svg",
  3307. extra: 592/544 ,
  3308. bottom: 0.035
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(8 + 1/6, "feet"),
  3316. default: true
  3317. },
  3318. {
  3319. name: "Big Backside",
  3320. height: math.unit(37, "feet")
  3321. },
  3322. {
  3323. name: "Subway Shredder",
  3324. height: math.unit(72, "feet")
  3325. },
  3326. {
  3327. name: "City Carver",
  3328. height: math.unit(1675, "feet")
  3329. },
  3330. {
  3331. name: "Tectonic Tweaker",
  3332. height: math.unit(2300, "miles")
  3333. },
  3334. ]
  3335. )
  3336. };
  3337. characterMakers["Guisetto"] = () => {
  3338. return makeCharacter(
  3339. "Guisetto",
  3340. "Kurrikage",
  3341. {
  3342. front: {
  3343. height: math.unit(6, "feet"),
  3344. weight: math.unit(180, "lbs"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/guisetto/front.svg",
  3348. extra: 856/817,
  3349. bottom: 0.06
  3350. }
  3351. },
  3352. airborne: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(180, "lbs"),
  3355. name: "Airborne",
  3356. image: {
  3357. source: "./media/characters/guisetto/airborne.svg",
  3358. extra: 584/525
  3359. }
  3360. },
  3361. },
  3362. [
  3363. {
  3364. name: "Normal",
  3365. height: math.unit(10 + 11/12, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Large",
  3370. height: math.unit(35, "feet")
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(475, "feet")
  3375. },
  3376. ]
  3377. )
  3378. };
  3379. characterMakers["Luxor"] = () => {
  3380. return makeCharacter(
  3381. "Luxor",
  3382. "Kurrikage",
  3383. {
  3384. front: {
  3385. height: math.unit(6, "feet"),
  3386. weight: math.unit(180, "lbs"),
  3387. name: "Front",
  3388. image: {
  3389. source: "./media/characters/luxor/front.svg",
  3390. extra: 2940/2152
  3391. }
  3392. },
  3393. back: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(180, "lbs"),
  3396. name: "Back",
  3397. image: {
  3398. source: "./media/characters/luxor/back.svg",
  3399. extra: 1083/960
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(5 + 5/6, "feet"),
  3407. default: true
  3408. },
  3409. {
  3410. name: "Lamp",
  3411. height: math.unit(50, "feet")
  3412. },
  3413. {
  3414. name: "Lämp",
  3415. height: math.unit(300, "feet")
  3416. },
  3417. {
  3418. name: "The sun is a lamp",
  3419. height: math.unit(250000, "miles")
  3420. },
  3421. ]
  3422. )
  3423. };
  3424. characterMakers["Huoyan"] = () => {
  3425. return makeCharacter(
  3426. "Huoyan",
  3427. "Kurrikage",
  3428. {
  3429. front: {
  3430. height: math.unit(6, "feet"),
  3431. weight: math.unit(50, "lbs"),
  3432. name: "Front",
  3433. image: {
  3434. source: "./media/characters/huoyan/front.svg"
  3435. }
  3436. },
  3437. side: {
  3438. height: math.unit(6, "feet"),
  3439. weight: math.unit(180, "lbs"),
  3440. name: "Side",
  3441. image: {
  3442. source: "./media/characters/huoyan/side.svg"
  3443. }
  3444. },
  3445. },
  3446. [
  3447. {
  3448. name: "Chef",
  3449. height: math.unit(9, "feet")
  3450. },
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(65, "feet"),
  3454. default: true
  3455. },
  3456. {
  3457. name: "Macro",
  3458. height: math.unit(780, "feet")
  3459. },
  3460. {
  3461. name: "Flaming Mountain",
  3462. height: math.unit(4.8, "miles")
  3463. },
  3464. {
  3465. name: "Celestial",
  3466. height: math.unit(765000, "miles")
  3467. },
  3468. ]
  3469. )
  3470. };
  3471. characterMakers["Tails"] = () => {
  3472. return makeCharacter(
  3473. "Tails",
  3474. "Rainier",
  3475. {
  3476. front: {
  3477. height: math.unit(5 + 3/4, "feet"),
  3478. weight: math.unit(120, "lbs"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/tails/front.svg"
  3482. }
  3483. }
  3484. },
  3485. [
  3486. {
  3487. name: "Normal",
  3488. height: math.unit(5 + 3/4, "feet"),
  3489. default: true
  3490. }
  3491. ]
  3492. )
  3493. };
  3494. characterMakers["Rainy"] = () => {
  3495. return makeCharacter(
  3496. "Rainy",
  3497. "Rainier",
  3498. {
  3499. front: {
  3500. height: math.unit(4, "feet"),
  3501. weight: math.unit(50, "lbs"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/rainy/front.svg"
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(800, "feet"),
  3512. default: true
  3513. }
  3514. ]
  3515. )
  3516. };
  3517. characterMakers["Rainier"] = () => {
  3518. return makeCharacter(
  3519. "Rainier",
  3520. "Rainier",
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lbs"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/rainier/front.svg"
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Micro",
  3534. height: math.unit(2, "mm"),
  3535. default: true
  3536. }
  3537. ]
  3538. )
  3539. };
  3540. characterMakers["Andy"] = () => {
  3541. return makeCharacter(
  3542. "Andy",
  3543. "drewbermeister",
  3544. {
  3545. front: {
  3546. height: math.unit(6, "feet"),
  3547. weight: math.unit(180, "lbs"),
  3548. name: "Front",
  3549. image: {
  3550. source: "./media/characters/andy/front.svg"
  3551. }
  3552. }
  3553. },
  3554. [
  3555. {
  3556. name: "Normal",
  3557. height: math.unit(8, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(1000, "feet")
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(5, "miles")
  3567. },
  3568. {
  3569. name: "Gigamacro",
  3570. height: math.unit(5000, "miles")
  3571. },
  3572. ]
  3573. )
  3574. };
  3575. characterMakers["Cimmaron"] = () => {
  3576. return makeCharacter(
  3577. "Cimmaron",
  3578. "Cimmaron",
  3579. {
  3580. frontClothed: {
  3581. height: math.unit(6, "feet"),
  3582. weight: math.unit(210, "lbs"),
  3583. name: "Front (Clothed)",
  3584. image: {
  3585. source: "./media/characters/cimmaron/front-clothed.svg",
  3586. extra: 701/676 ,
  3587. bottom: 0.046
  3588. }
  3589. },
  3590. backClothed: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(210, "lbs"),
  3593. name: "Back (Clothed)",
  3594. image: {
  3595. source: "./media/characters/cimmaron/back-clothed.svg",
  3596. extra: 701/676 ,
  3597. bottom: 0.046
  3598. }
  3599. },
  3600. frontNude: {
  3601. height: math.unit(6, "feet"),
  3602. weight: math.unit(210, "lbs"),
  3603. name: "Front (Nude)",
  3604. image: {
  3605. source: "./media/characters/cimmaron/front-nude.svg",
  3606. extra: 701/676 ,
  3607. bottom: 0.046
  3608. }
  3609. },
  3610. backNude: {
  3611. height: math.unit(6, "feet"),
  3612. weight: math.unit(210, "lbs"),
  3613. name: "Back (Nude)",
  3614. image: {
  3615. source: "./media/characters/cimmaron/back-nude.svg",
  3616. extra: 701/676 ,
  3617. bottom: 0.046
  3618. }
  3619. }
  3620. },
  3621. [
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(6, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro Mayor",
  3629. height: math.unit(350, "meters")
  3630. },
  3631. ]
  3632. )
  3633. };
  3634. characterMakers["Akari Kaen"] = () => {
  3635. return makeCharacter(
  3636. "Akari Kaen",
  3637. "Akari",
  3638. {
  3639. front: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(200, "lbs"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/akari/front.svg",
  3645. extra: 962/901,
  3646. bottom: 0.04
  3647. }
  3648. }
  3649. },
  3650. [
  3651. {
  3652. name: "Micro",
  3653. height: math.unit(5, "inches"),
  3654. default: true
  3655. },
  3656. {
  3657. name: "Normal",
  3658. height: math.unit(7, "feet")
  3659. },
  3660. ]
  3661. )
  3662. };
  3663. characterMakers["Cynosura"] = () => {
  3664. return makeCharacter(
  3665. "Cynosura",
  3666. "Cynosura",
  3667. {
  3668. front: {
  3669. height: math.unit(6, "feet"),
  3670. weight: math.unit(140, "lbs"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/cynosura/front.svg",
  3674. extra: 896/847
  3675. }
  3676. },
  3677. back: {
  3678. height: math.unit(6, "feet"),
  3679. weight: math.unit(140, "lbs"),
  3680. name: "Back",
  3681. image: {
  3682. source: "./media/characters/cynosura/back.svg",
  3683. extra: 1365/1250
  3684. }
  3685. },
  3686. },
  3687. [
  3688. {
  3689. name: "Micro",
  3690. height: math.unit(4, "inches")
  3691. },
  3692. {
  3693. name: "Normal",
  3694. height: math.unit(5.75, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Tall",
  3699. height: math.unit(10, "feet")
  3700. },
  3701. {
  3702. name: "Big",
  3703. height: math.unit(20, "feet")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(50, "feet")
  3708. },
  3709. ]
  3710. )
  3711. };
  3712. characterMakers["Gin"] = () => {
  3713. return makeCharacter(
  3714. "Gin",
  3715. "Ozzie_gt",
  3716. {
  3717. front: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(170, "lbs"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/gin/front.svg"
  3723. }
  3724. },
  3725. foot: {
  3726. height: math.unit(6/4.25, "feet"),
  3727. name: "Foot",
  3728. image: {
  3729. source: "./media/characters/gin/foot.svg"
  3730. }
  3731. },
  3732. sole: {
  3733. height: math.unit(6/4.40, "feet"),
  3734. name: "Sole",
  3735. image: {
  3736. source: "./media/characters/gin/sole.svg"
  3737. }
  3738. },
  3739. },
  3740. [
  3741. {
  3742. name: "Normal",
  3743. height: math.unit(9 + 4/12, "feet")
  3744. },
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(1500, "feet")
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(200, "miles"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Gigamacro",
  3756. height: math.unit(500, "megameters")
  3757. },
  3758. {
  3759. name: "Teramacro",
  3760. height: math.unit(15, "lightyears")
  3761. }
  3762. ]
  3763. )
  3764. };
  3765. characterMakers["Guy"] = () => {
  3766. return makeCharacter(
  3767. "Guy",
  3768. "Whatastandupguy",
  3769. {
  3770. front: {
  3771. height: math.unit(6 + 1/6, "feet"),
  3772. weight: math.unit(178, "lbs"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/guy/front.svg"
  3776. }
  3777. }
  3778. },
  3779. [
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(6 + 1/6, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Large",
  3787. height: math.unit(25 + 7/12, "feet")
  3788. },
  3789. {
  3790. name: "Macro",
  3791. height: math.unit(60 + 9/12, "feet")
  3792. },
  3793. {
  3794. name: "Macro+",
  3795. height: math.unit(246, "feet")
  3796. },
  3797. {
  3798. name: "Macro++",
  3799. height: math.unit(878, "feet")
  3800. }
  3801. ]
  3802. )
  3803. };
  3804. characterMakers["Tiberius"] = () => {
  3805. return makeCharacter(
  3806. "Tiberius",
  3807. "movler",
  3808. {
  3809. front: {
  3810. height: math.unit(9, "feet"),
  3811. weight: math.unit(800, "lbs"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/tiberius/front.svg",
  3815. extra: 2295/2071
  3816. }
  3817. },
  3818. back: {
  3819. height: math.unit(9, "feet"),
  3820. weight: math.unit(800, "lbs"),
  3821. name: "Back",
  3822. image: {
  3823. source: "./media/characters/tiberius/back.svg",
  3824. extra: 2373/2160
  3825. }
  3826. },
  3827. },
  3828. [
  3829. {
  3830. name: "Normal",
  3831. height: math.unit(9, "feet"),
  3832. default: true
  3833. }
  3834. ]
  3835. )
  3836. };
  3837. characterMakers["Surgo"] = () => {
  3838. return makeCharacter(
  3839. "Surgo",
  3840. "movler",
  3841. {
  3842. front: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(600, "lbs"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/surgo/front.svg",
  3848. extra: 3591/2227
  3849. }
  3850. },
  3851. back: {
  3852. height: math.unit(6, "feet"),
  3853. weight: math.unit(600, "lbs"),
  3854. name: "Back",
  3855. image: {
  3856. source: "./media/characters/surgo/back.svg",
  3857. extra: 3557/2228
  3858. }
  3859. },
  3860. laying: {
  3861. height: math.unit(6 * 0.85, "feet"),
  3862. weight: math.unit(600, "lbs"),
  3863. name: "Laying",
  3864. image: {
  3865. source: "./media/characters/surgo/laying.svg"
  3866. }
  3867. },
  3868. },
  3869. [
  3870. {
  3871. name: "Normal",
  3872. height: math.unit(6, "feet"),
  3873. default: true
  3874. }
  3875. ]
  3876. )
  3877. };
  3878. characterMakers["Cibus"] = () => {
  3879. return makeCharacter(
  3880. "Cibus",
  3881. "movler",
  3882. {
  3883. side: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(150, "lbs"),
  3886. name: "Side",
  3887. image: {
  3888. source: "./media/characters/cibus/side.svg",
  3889. extra: 800/400
  3890. }
  3891. },
  3892. },
  3893. [
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(6, "feet"),
  3897. default: true
  3898. }
  3899. ]
  3900. )
  3901. };
  3902. characterMakers["Nibbles"] = () => {
  3903. return makeCharacter(
  3904. "Nibbles",
  3905. "movler",
  3906. {
  3907. front: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(240, "lbs"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/nibbles/front.svg"
  3913. }
  3914. },
  3915. side: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(240, "lbs"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/nibbles/side.svg"
  3921. }
  3922. },
  3923. },
  3924. [
  3925. {
  3926. name: "Normal",
  3927. height: math.unit(9, "feet"),
  3928. default: true
  3929. }
  3930. ]
  3931. )
  3932. };
  3933. characterMakers["Rikky"] = () => {
  3934. return makeCharacter(
  3935. "Rikky",
  3936. "Quake Yote",
  3937. {
  3938. side: {
  3939. height: math.unit(5 + 1/6, "feet"),
  3940. weight: math.unit(130, "lbs"),
  3941. name: "Side",
  3942. image: {
  3943. source: "./media/characters/rikky/side.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(5 + 1/6, "feet")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(152, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(7, "miles")
  3960. }
  3961. ]
  3962. )
  3963. };
  3964. characterMakers["Malfressa"] = () => {
  3965. return makeCharacter(
  3966. "Malfressa",
  3967. "Scareye",
  3968. {
  3969. side: {
  3970. height: math.unit(370, "cm"),
  3971. weight: math.unit(350, "lbs"),
  3972. name: "Side",
  3973. image: {
  3974. source: "./media/characters/malfressa/side.svg"
  3975. }
  3976. },
  3977. walking: {
  3978. height: math.unit(370, "cm"),
  3979. weight: math.unit(350, "lbs"),
  3980. name: "Walking",
  3981. image: {
  3982. source: "./media/characters/malfressa/walking.svg"
  3983. }
  3984. },
  3985. feral: {
  3986. height: math.unit(2500, "cm"),
  3987. weight: math.unit(100000, "lbs"),
  3988. name: "Feral",
  3989. image: {
  3990. source: "./media/characters/malfressa/feral.svg",
  3991. extra: 2108/837 ,
  3992. bottom: 0.02
  3993. }
  3994. },
  3995. },
  3996. [
  3997. {
  3998. name: "Normal",
  3999. height: math.unit(370, "cm")
  4000. },
  4001. {
  4002. name: "Macro",
  4003. height: math.unit(300, "meters"),
  4004. default: true
  4005. }
  4006. ]
  4007. )
  4008. };
  4009. characterMakers["Jaro"] = () => {
  4010. return makeCharacter(
  4011. "Jaro",
  4012. "Jaro",
  4013. {
  4014. front: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/jaro/front.svg"
  4020. }
  4021. },
  4022. back: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(60, "kg"),
  4025. name: "Back",
  4026. image: {
  4027. source: "./media/characters/jaro/back.svg"
  4028. }
  4029. },
  4030. },
  4031. [
  4032. {
  4033. name: "Micro",
  4034. height: math.unit(7, "inches")
  4035. },
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(5.5, "feet"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Minimacro",
  4043. height: math.unit(20, "feet")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(200, "meters")
  4048. }
  4049. ]
  4050. )
  4051. };
  4052. characterMakers["Rogue"] = () => {
  4053. return makeCharacter(
  4054. "Rogue",
  4055. "Rogue",
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(195, "lb"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/rogue/front.svg"
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(90, "feet"),
  4070. default: true
  4071. },
  4072. ]
  4073. )
  4074. };
  4075. characterMakers["Piper"] = () => {
  4076. return makeCharacter(
  4077. "Piper",
  4078. "Flyhar",
  4079. {
  4080. front: {
  4081. height: math.unit(5 + 8/12, "feet"),
  4082. weight: math.unit(140, "lb"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/piper/front.svg",
  4086. extra: 3928/3681
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Micro",
  4093. height: math.unit(2, "inches")
  4094. },
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(5 + 8/12, "feet")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(250, "feet"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Megamacro",
  4106. height: math.unit(7, "miles")
  4107. },
  4108. ]
  4109. )
  4110. };
  4111. characterMakers["Gemini"] = () => {
  4112. return makeCharacter(
  4113. "Gemini",
  4114. "lajay",
  4115. {
  4116. front: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(220, "lb"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/gemini/front.svg"
  4122. }
  4123. },
  4124. back: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(220, "lb"),
  4127. name: "Back",
  4128. image: {
  4129. source: "./media/characters/gemini/back.svg"
  4130. }
  4131. },
  4132. kneeling: {
  4133. height: math.unit(6/1.5, "feet"),
  4134. weight: math.unit(220, "lb"),
  4135. name: "Kneeling",
  4136. image: {
  4137. source: "./media/characters/gemini/kneeling.svg",
  4138. bottom: 0.02
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(300, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(6900, "meters")
  4151. },
  4152. ]
  4153. )
  4154. };
  4155. characterMakers["Alicia"] = () => {
  4156. return makeCharacter(
  4157. "Alicia",
  4158. "LittleBig",
  4159. {
  4160. anthro: {
  4161. height: math.unit(2.35, "meters"),
  4162. weight: math.unit(73, "kg"),
  4163. name: "Anthro",
  4164. image: {
  4165. source: "./media/characters/alicia/anthro.svg"
  4166. }
  4167. },
  4168. feral: {
  4169. height: math.unit(1.69, "meters"),
  4170. weight: math.unit(73, "kg"),
  4171. name: "Feral",
  4172. image: {
  4173. source: "./media/characters/alicia/feral.svg"
  4174. }
  4175. },
  4176. },
  4177. [
  4178. {
  4179. name: "Normal",
  4180. height: math.unit(2.35, "meters")
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(60, "meters"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Megamacro",
  4189. height: math.unit(10000, "kilometers")
  4190. },
  4191. ]
  4192. )
  4193. };
  4194. characterMakers["Archy"] = () => {
  4195. return makeCharacter(
  4196. "Archy",
  4197. "ArchyD",
  4198. {
  4199. front: {
  4200. height: math.unit(7, "feet"),
  4201. weight: math.unit(250, "lbs"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/archy/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Micro",
  4211. height: math.unit(1, "inch")
  4212. },
  4213. {
  4214. name: "Shorty",
  4215. height: math.unit(5, "feet")
  4216. },
  4217. {
  4218. name: "Normal",
  4219. height: math.unit(7, "feet")
  4220. },
  4221. {
  4222. name: "Macro",
  4223. height: math.unit(600, "meters"),
  4224. default: true
  4225. },
  4226. {
  4227. name: "Megamacro",
  4228. height: math.unit(1, "mile")
  4229. },
  4230. ]
  4231. )
  4232. };
  4233. characterMakers["Berri"] = () => {
  4234. return makeCharacter(
  4235. "Berri",
  4236. "LittleBig",
  4237. {
  4238. front: {
  4239. height: math.unit(1.65, "meters"),
  4240. weight: math.unit(74, "kg"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/berri/front.svg"
  4244. }
  4245. }
  4246. },
  4247. [
  4248. {
  4249. name: "Normal",
  4250. height: math.unit(1.65, "meters")
  4251. },
  4252. {
  4253. name: "Macro",
  4254. height: math.unit(60, "m"),
  4255. default: true
  4256. },
  4257. {
  4258. name: "Megamacro",
  4259. height: math.unit(9.213, "km")
  4260. },
  4261. {
  4262. name: "Planet Eater",
  4263. height: math.unit(489, "megameters")
  4264. },
  4265. {
  4266. name: "Teramacro",
  4267. height: math.unit(2471635000000, "meters")
  4268. },
  4269. {
  4270. name: "Examacro",
  4271. height: math.unit(8.0624e+26, "meters")
  4272. }
  4273. ]
  4274. )
  4275. };
  4276. characterMakers["Lexi"] = () => {
  4277. return makeCharacter(
  4278. "Lexi",
  4279. "LittleBig",
  4280. {
  4281. front: {
  4282. height: math.unit(1.72, "meters"),
  4283. weight: math.unit(68, "kg"),
  4284. name: "Front",
  4285. image: {
  4286. source: "./media/characters/lexi/front.svg"
  4287. }
  4288. }
  4289. },
  4290. [
  4291. {
  4292. name: "Very Smol",
  4293. height: math.unit(10, "mm")
  4294. },
  4295. {
  4296. name: "Micro",
  4297. height: math.unit(6.8, "cm"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(1.72, "m")
  4303. }
  4304. ]
  4305. )
  4306. };
  4307. characterMakers["Martin"] = () => {
  4308. return makeCharacter(
  4309. "Martin",
  4310. "LittleBig",
  4311. {
  4312. front: {
  4313. height: math.unit(1.69, "meters"),
  4314. weight: math.unit(68, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/martin/front.svg",
  4318. extra: 596/581
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Micro",
  4325. height: math.unit(6.85, "cm"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(1.69, "m")
  4331. }
  4332. ]
  4333. )
  4334. };
  4335. characterMakers["Juno"] = () => {
  4336. return makeCharacter(
  4337. "Juno",
  4338. "LittleBig",
  4339. {
  4340. front: {
  4341. height: math.unit(1.69, "meters"),
  4342. weight: math.unit(68, "kg"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/juno/front.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Micro",
  4352. height: math.unit(7, "cm")
  4353. },
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(1.89, "m")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(353, "meters"),
  4361. default: true
  4362. }
  4363. ]
  4364. )
  4365. };
  4366. characterMakers["Samantha"] = () => {
  4367. return makeCharacter(
  4368. "Samantha",
  4369. "LittleBig",
  4370. {
  4371. front: {
  4372. height: math.unit(1.93, "meters"),
  4373. weight: math.unit(83, "kg"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/samantha/front.svg"
  4377. }
  4378. },
  4379. frontClothed: {
  4380. height: math.unit(1.93, "meters"),
  4381. weight: math.unit(83, "kg"),
  4382. name: "Front (Clothed)",
  4383. image: {
  4384. source: "./media/characters/samantha/front-clothed.svg"
  4385. }
  4386. },
  4387. back: {
  4388. height: math.unit(1.93, "meters"),
  4389. weight: math.unit(83, "kg"),
  4390. name: "Back",
  4391. image: {
  4392. source: "./media/characters/samantha/back.svg"
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(1.93, "m")
  4400. },
  4401. {
  4402. name: "Macro",
  4403. height: math.unit(74, "meters"),
  4404. default: true
  4405. },
  4406. {
  4407. name: "Macro+",
  4408. height: math.unit(223, "meters"),
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(8381, "meters"),
  4413. },
  4414. {
  4415. name: "Megamacro+",
  4416. height: math.unit(12000, "kilometers")
  4417. },
  4418. ]
  4419. )
  4420. };
  4421. characterMakers["Dr. Clay"] = () => {
  4422. return makeCharacter(
  4423. "Dr. Clay",
  4424. "LittleBig",
  4425. {
  4426. front: {
  4427. height: math.unit(1.92, "meters"),
  4428. weight: math.unit(80, "kg"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/dr-clay/front.svg"
  4432. }
  4433. },
  4434. frontClothed: {
  4435. height: math.unit(1.92, "meters"),
  4436. weight: math.unit(80, "kg"),
  4437. name: "Front (Clothed)",
  4438. image: {
  4439. source: "./media/characters/dr-clay/front-clothed.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Normal",
  4446. height: math.unit(1.92, "m")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(214, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Macro+",
  4455. height: math.unit(12.237, "meters"),
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(557, "megameters"),
  4460. },
  4461. {
  4462. name: "Unimaginable",
  4463. height: math.unit(120e9, "lightyears")
  4464. },
  4465. ]
  4466. )
  4467. };
  4468. characterMakers["Wyvrn Ripsnarl"] = () => {
  4469. return makeCharacter(
  4470. "Wyvrn Ripsnarl",
  4471. "LoboRaptorLo",
  4472. {
  4473. front: {
  4474. height: math.unit(2, "meters"),
  4475. weight: math.unit(80, "kg"),
  4476. name: "Front",
  4477. image: {
  4478. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4479. }
  4480. }
  4481. },
  4482. [
  4483. {
  4484. name: "Teramacro",
  4485. height: math.unit(500000, "lightyears"),
  4486. default: true
  4487. },
  4488. ]
  4489. )
  4490. };
  4491. characterMakers["Vemus"] = () => {
  4492. return makeCharacter(
  4493. "Vemus",
  4494. "Vemus",
  4495. {
  4496. front: {
  4497. height: math.unit(2, "meters"),
  4498. weight: math.unit(150, "kg"),
  4499. name: "Front",
  4500. image: {
  4501. source: "./media/characters/vemus/front.svg",
  4502. extra: 2384/2084
  4503. }
  4504. }
  4505. },
  4506. [
  4507. {
  4508. name: "Normal",
  4509. height: math.unit(3, "meters"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Lorg",
  4514. height: math.unit(7, "meters")
  4515. },
  4516. {
  4517. name: "More Lorg",
  4518. height: math.unit(250, "meters")
  4519. },
  4520. ]
  4521. )
  4522. };
  4523. characterMakers["Beherit"] = () => {
  4524. return makeCharacter(
  4525. "Beherit",
  4526. "Beherit",
  4527. {
  4528. front: {
  4529. height: math.unit(2, "meters"),
  4530. weight: math.unit(70, "kg"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/beherit/front.svg",
  4534. extra: 1408/1242
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(6, "feet")
  4542. },
  4543. {
  4544. name: "Lorg",
  4545. height: math.unit(25, "feet"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Lorger",
  4550. height: math.unit(75, "feet")
  4551. },
  4552. {
  4553. name: "Macro",
  4554. height: math.unit(200, "meters")
  4555. },
  4556. ]
  4557. )
  4558. };
  4559. characterMakers["Everett"] = () => {
  4560. return makeCharacter(
  4561. "Everett",
  4562. "Beherit",
  4563. {
  4564. front: {
  4565. height: math.unit(2, "meters"),
  4566. weight: math.unit(150, "kg"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/everett/front.svg",
  4570. extra: 2038/1737 ,
  4571. bottom: 0.03
  4572. }
  4573. },
  4574. paw: {
  4575. height: math.unit(2/3.6, "meters"),
  4576. name: "Paw",
  4577. image: {
  4578. source: "./media/characters/everett/paw.svg"
  4579. }
  4580. },
  4581. },
  4582. [
  4583. {
  4584. name: "Normal",
  4585. height: math.unit(15, "feet"),
  4586. default: true
  4587. },
  4588. {
  4589. name: "Lorg",
  4590. height: math.unit(70, "feet"),
  4591. default: true
  4592. },
  4593. {
  4594. name: "Lorger",
  4595. height: math.unit(250, "feet")
  4596. },
  4597. {
  4598. name: "Macro",
  4599. height: math.unit(500, "meters")
  4600. },
  4601. ]
  4602. )
  4603. };
  4604. characterMakers["Rose Lion"] = () => {
  4605. return makeCharacter(
  4606. "Rose Lion",
  4607. "Enormouse",
  4608. {
  4609. front: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(86, "kg"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/rose-lion/front.svg"
  4615. }
  4616. },
  4617. bent: {
  4618. height: math.unit(2/1.4288, "meters"),
  4619. weight: math.unit(86, "kg"),
  4620. name: "Bent",
  4621. image: {
  4622. source: "./media/characters/rose-lion/bent.svg"
  4623. }
  4624. }
  4625. },
  4626. [
  4627. {
  4628. name: "Mini-Micro",
  4629. height: math.unit(1, "cm")
  4630. },
  4631. {
  4632. name: "Micro",
  4633. height: math.unit(3.5, "inches"),
  4634. default: true
  4635. },
  4636. {
  4637. name: "Normal",
  4638. height: math.unit(6 + 1/6, "feet")
  4639. },
  4640. {
  4641. name: "Mini-Macro",
  4642. height: math.unit(9 + 10/12, "feet")
  4643. },
  4644. ]
  4645. )
  4646. };
  4647. characterMakers["Regal"] = () => {
  4648. return makeCharacter(
  4649. "Regal",
  4650. "Regal Drennen",
  4651. {
  4652. front: {
  4653. height: math.unit(2, "meters"),
  4654. weight: math.unit(350, "lbs"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/regal/front.svg"
  4658. }
  4659. },
  4660. back: {
  4661. height: math.unit(2, "meters"),
  4662. weight: math.unit(350, "lbs"),
  4663. name: "Back",
  4664. image: {
  4665. source: "./media/characters/regal/back.svg"
  4666. }
  4667. },
  4668. },
  4669. [
  4670. {
  4671. name: "Macro",
  4672. height: math.unit(350, "feet"),
  4673. default: true
  4674. }
  4675. ]
  4676. )
  4677. };
  4678. characterMakers["Opal"] = () => {
  4679. return makeCharacter(
  4680. "Opal",
  4681. "Enormouse",
  4682. {
  4683. front: {
  4684. height: math.unit(4 + 11/12, "feet"),
  4685. weight: math.unit(100, "lbs"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/opal/front.svg"
  4689. }
  4690. },
  4691. frontAlt: {
  4692. height: math.unit(4 + 11/12, "feet"),
  4693. weight: math.unit(100, "lbs"),
  4694. name: "Front (Alt)",
  4695. image: {
  4696. source: "./media/characters/opal/front-alt.svg"
  4697. }
  4698. },
  4699. },
  4700. [
  4701. {
  4702. name: "Small",
  4703. height: math.unit(4 + 11/12, "feet")
  4704. },
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(20, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(120, "feet")
  4713. },
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(80, "miles")
  4717. },
  4718. {
  4719. name: "True Size",
  4720. height: math.unit(100000, "lightyears")
  4721. },
  4722. ]
  4723. )
  4724. };
  4725. characterMakers["Vector Wuff"] = () => {
  4726. return makeCharacter(
  4727. "Vector Wuff",
  4728. "Vector",
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(200, "lbs"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/vector-wuff/front.svg"
  4736. }
  4737. }
  4738. },
  4739. [
  4740. {
  4741. name: "Normal",
  4742. height: math.unit(2.8, "meters")
  4743. },
  4744. {
  4745. name: "Macro",
  4746. height: math.unit(450, "meters"),
  4747. default: true
  4748. },
  4749. {
  4750. name: "Megamacro",
  4751. height: math.unit(15, "kilometers")
  4752. }
  4753. ]
  4754. )
  4755. };
  4756. characterMakers["Dannik"] = () => {
  4757. return makeCharacter(
  4758. "Dannik",
  4759. "LuchaLibreLibro",
  4760. {
  4761. front: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(256, "lbs"),
  4764. name: "Front",
  4765. image: {
  4766. source: "./media/characters/dannik/front.svg"
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(69.57, "meters"),
  4774. default: true
  4775. },
  4776. ]
  4777. )
  4778. };
  4779. characterMakers["Azura Saharah"] = () => {
  4780. return makeCharacter(
  4781. "Azura Saharah",
  4782. "AzuraSaharah",
  4783. {
  4784. front: {
  4785. height: math.unit(6, "feet"),
  4786. weight: math.unit(120, "lbs"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/azura-saharah/front.svg"
  4790. }
  4791. },
  4792. back: {
  4793. height: math.unit(6, "feet"),
  4794. weight: math.unit(120, "lbs"),
  4795. name: "Back",
  4796. image: {
  4797. source: "./media/characters/azura-saharah/back.svg"
  4798. }
  4799. },
  4800. },
  4801. [
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(100, "feet"),
  4805. default: true
  4806. },
  4807. ]
  4808. )
  4809. };
  4810. characterMakers["Kennedy"] = () => {
  4811. return makeCharacter(
  4812. "Kennedy",
  4813. "BossVoss",
  4814. {
  4815. side: {
  4816. height: math.unit(5 + 4/12, "feet"),
  4817. weight: math.unit(163, "lbs"),
  4818. name: "Side",
  4819. image: {
  4820. source: "./media/characters/kennedy/side.svg"
  4821. }
  4822. }
  4823. },
  4824. [
  4825. {
  4826. name: "Standard Doggo",
  4827. height: math.unit(5 + 4/12, "feet")
  4828. },
  4829. {
  4830. name: "Big Doggo",
  4831. height: math.unit(25 + 3/12, "feet"),
  4832. default: true
  4833. },
  4834. ]
  4835. )
  4836. };
  4837. characterMakers["Odi Lunar"] = () => {
  4838. return makeCharacter(
  4839. "Odi Lunar",
  4840. "OdiLunar",
  4841. {
  4842. front: {
  4843. height: math.unit(6, "feet"),
  4844. weight: math.unit(90, "lbs"),
  4845. name: "Front",
  4846. image: {
  4847. source: "./media/characters/odi-lunar/front.svg"
  4848. }
  4849. }
  4850. },
  4851. [
  4852. {
  4853. name: "Micro",
  4854. height: math.unit(3, "inches"),
  4855. default: true
  4856. },
  4857. {
  4858. name: "Normal",
  4859. height: math.unit(5.5, "feet")
  4860. }
  4861. ]
  4862. )
  4863. };
  4864. characterMakers["Mandake"] = () => {
  4865. return makeCharacter(
  4866. "Mandake",
  4867. "Dialuca01",
  4868. {
  4869. back: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(220, "lbs"),
  4872. name: "Back",
  4873. image: {
  4874. source: "./media/characters/mandake/back.svg"
  4875. }
  4876. }
  4877. },
  4878. [
  4879. {
  4880. name: "Normal",
  4881. height: math.unit(7, "feet"),
  4882. default: true
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(78, "feet")
  4887. },
  4888. {
  4889. name: "Macro+",
  4890. height: math.unit(300, "meters")
  4891. },
  4892. {
  4893. name: "Macro++",
  4894. height: math.unit(2400, "feet")
  4895. },
  4896. {
  4897. name: "Megamacro",
  4898. height: math.unit(5167, "meters")
  4899. },
  4900. {
  4901. name: "Gigamacro",
  4902. height: math.unit(41769, "miles")
  4903. },
  4904. ]
  4905. )
  4906. };
  4907. characterMakers["Yozey"] = () => {
  4908. return makeCharacter(
  4909. "Yozey",
  4910. "Yozey",
  4911. {
  4912. front: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(120, "lbs"),
  4915. name: "Front",
  4916. image: {
  4917. source: "./media/characters/yozey/front.svg"
  4918. }
  4919. },
  4920. frontAlt: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(120, "lbs"),
  4923. name: "Front (Alt)",
  4924. image: {
  4925. source: "./media/characters/yozey/front-alt.svg"
  4926. }
  4927. },
  4928. side: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(120, "lbs"),
  4931. name: "Side",
  4932. image: {
  4933. source: "./media/characters/yozey/side.svg"
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Micro",
  4940. height: math.unit(3, "inches"),
  4941. default: true
  4942. },
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(6, "feet")
  4946. }
  4947. ]
  4948. )
  4949. };
  4950. characterMakers["Valeska Voss"] = () => {
  4951. return makeCharacter(
  4952. "Valeska Voss",
  4953. "BossVoss",
  4954. {
  4955. front: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(103, "lbs"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/valeska-voss/front.svg"
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Mini-Sized Sub",
  4967. height: math.unit(3.1, "inches")
  4968. },
  4969. {
  4970. name: "Mid-Sized Sub",
  4971. height: math.unit(6.2, "inches")
  4972. },
  4973. {
  4974. name: "Full-Sized Sub",
  4975. height: math.unit(9.3, "inches")
  4976. },
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(5 + 2/12, "foot"),
  4980. default: true
  4981. },
  4982. ]
  4983. )
  4984. };
  4985. characterMakers["Gene Zeta"] = () => {
  4986. return makeCharacter(
  4987. "Gene Zeta",
  4988. "Xeebes",
  4989. {
  4990. front: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(160, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/gene-zeta/front.svg",
  4996. bottom: 0.03,
  4997. extra: 1
  4998. }
  4999. }
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(6.25, "foot"),
  5005. default: true
  5006. },
  5007. ]
  5008. )
  5009. };
  5010. characterMakers["Razinox"] = () => {
  5011. return makeCharacter(
  5012. "Razinox",
  5013. "Razinox",
  5014. {
  5015. front: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(350, "lbs"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/razinox/front.svg",
  5021. extra: 1686/1548
  5022. }
  5023. },
  5024. back: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(350, "lbs"),
  5027. name: "Back",
  5028. image: {
  5029. source: "./media/characters/razinox/back.svg",
  5030. extra: 1660/1590
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(10 + 8/12, "foot")
  5038. },
  5039. {
  5040. name: "Minimacro",
  5041. height: math.unit(15, "foot")
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(60, "foot"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Megamacro",
  5050. height: math.unit(5, "miles")
  5051. },
  5052. {
  5053. name: "Gigamacro",
  5054. height: math.unit(6000, "miles")
  5055. },
  5056. ]
  5057. )
  5058. };
  5059. characterMakers["Cobalt"] = () => {
  5060. return makeCharacter(
  5061. "Cobalt",
  5062. "Miateshcha",
  5063. {
  5064. front: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(150, "lbs"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/cobalt/front.svg"
  5070. }
  5071. }
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(8 + 1/12, "foot")
  5077. },
  5078. {
  5079. name: "Macro",
  5080. height: math.unit(111, "foot"),
  5081. default: true
  5082. },
  5083. {
  5084. name: "Supracosmic",
  5085. height: math.unit(1e42, "feet")
  5086. },
  5087. ]
  5088. )
  5089. };
  5090. characterMakers["Amanda"] = () => {
  5091. return makeCharacter(
  5092. "Amanda",
  5093. "Amanda",
  5094. {
  5095. front: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(140, "lbs"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/amanda/front.svg"
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Micro",
  5107. height: math.unit(5, "inches"),
  5108. default: true
  5109. },
  5110. ]
  5111. )
  5112. };
  5113. characterMakers["Teal"] = () => {
  5114. return makeCharacter(
  5115. "Teal",
  5116. "Teal",
  5117. {
  5118. front: {
  5119. height: math.unit(5.59, "feet"),
  5120. weight: math.unit(250, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/teal/front.svg"
  5124. }
  5125. },
  5126. frontAlt: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(250, "lbs"),
  5129. name: "Front (Alt)",
  5130. image: {
  5131. source: "./media/characters/teal/front-alt.svg",
  5132. bottom: 0.04,
  5133. extra: 1
  5134. }
  5135. },
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(12, "feet"),
  5141. default: true
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(300, "feet")
  5146. },
  5147. ]
  5148. )
  5149. };
  5150. characterMakers["Ravin Amulet"] = () => {
  5151. return makeCharacter(
  5152. "Ravin Amulet",
  5153. "Ravin Amulet",
  5154. {
  5155. frontCat: {
  5156. height: math.unit(6, "feet"),
  5157. weight: math.unit(180, "lbs"),
  5158. name: "Front (Cat)",
  5159. image: {
  5160. source: "./media/characters/ravin-amulet/front-cat.svg"
  5161. }
  5162. },
  5163. frontCatAlt: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(180, "lbs"),
  5166. name: "Front (Alt, Cat)",
  5167. image: {
  5168. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5169. }
  5170. },
  5171. frontWerewolf: {
  5172. height: math.unit(6*1.2, "feet"),
  5173. weight: math.unit(225, "lbs"),
  5174. name: "Front (Werewolf)",
  5175. image: {
  5176. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5177. }
  5178. },
  5179. backWerewolf: {
  5180. height: math.unit(6*1.2, "feet"),
  5181. weight: math.unit(225, "lbs"),
  5182. name: "Back (Werewolf)",
  5183. image: {
  5184. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Nano",
  5191. height: math.unit(1, "micrometer")
  5192. },
  5193. {
  5194. name: "Micro",
  5195. height: math.unit(1, "inch")
  5196. },
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(6, "feet"),
  5200. default: true
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(60, "feet")
  5205. }
  5206. ]
  5207. )
  5208. };
  5209. characterMakers["Fluoresce"] = () => {
  5210. return makeCharacter(
  5211. "Fluoresce",
  5212. "Ravin Amulet",
  5213. {
  5214. front: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(165, "lbs"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/fluoresce/front.svg"
  5220. }
  5221. }
  5222. },
  5223. [
  5224. {
  5225. name: "Micro",
  5226. height: math.unit(6, "cm")
  5227. },
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(5 + 7/12, "feet"),
  5231. default: true
  5232. },
  5233. {
  5234. name: "Macro",
  5235. height: math.unit(56, "feet")
  5236. },
  5237. {
  5238. name: "Megamacro",
  5239. height: math.unit(1.9, "miles")
  5240. },
  5241. ]
  5242. )
  5243. };
  5244. characterMakers["Aurora"] = () => {
  5245. return makeCharacter(
  5246. "Aurora",
  5247. "Vonadi",
  5248. {
  5249. front: {
  5250. height: math.unit(9 + 6/12, "feet"),
  5251. weight: math.unit(523, "lbs"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/aurora/side.svg"
  5255. }
  5256. }
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(9 + 6/12, "feet")
  5262. },
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(96, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro+",
  5270. height: math.unit(243, "feet")
  5271. },
  5272. ]
  5273. )
  5274. };
  5275. characterMakers["Ranek"] = () => {
  5276. return makeCharacter(
  5277. "Ranek",
  5278. "Ranek",
  5279. {
  5280. front: {
  5281. height: math.unit(194, "cm"),
  5282. weight: math.unit(90, "kg"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/ranek/front.svg"
  5286. }
  5287. },
  5288. side: {
  5289. height: math.unit(194, "cm"),
  5290. weight: math.unit(90, "kg"),
  5291. name: "Side",
  5292. image: {
  5293. source: "./media/characters/ranek/side.svg"
  5294. }
  5295. },
  5296. back: {
  5297. height: math.unit(194, "cm"),
  5298. weight: math.unit(90, "kg"),
  5299. name: "Back",
  5300. image: {
  5301. source: "./media/characters/ranek/back.svg"
  5302. }
  5303. },
  5304. feral: {
  5305. height: math.unit(30, "cm"),
  5306. weight: math.unit(1.6, "lbs"),
  5307. name: "Feral",
  5308. image: {
  5309. source: "./media/characters/ranek/feral.svg"
  5310. }
  5311. },
  5312. },
  5313. [
  5314. {
  5315. name: "Normal",
  5316. height: math.unit(194, "cm"),
  5317. default: true
  5318. },
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(100, "meters")
  5322. },
  5323. ]
  5324. )
  5325. };
  5326. characterMakers["Andrew Cooper"] = () => {
  5327. return makeCharacter(
  5328. "Andrew Cooper",
  5329. "Vonadi",
  5330. {
  5331. front: {
  5332. height: math.unit(5 + 6/12, "feet"),
  5333. weight: math.unit(153, "lbs"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/andrew-cooper/front.svg"
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Nano",
  5343. height: math.unit(1, "mm")
  5344. },
  5345. {
  5346. name: "Micro",
  5347. height: math.unit(2, "inches")
  5348. },
  5349. {
  5350. name: "Normal",
  5351. height: math.unit(5 + 6/12, "feet"),
  5352. default: true
  5353. }
  5354. ]
  5355. )
  5356. };
  5357. characterMakers["Akane Sato"] = () => {
  5358. return makeCharacter(
  5359. "Akane Sato",
  5360. "Vonadi",
  5361. {
  5362. front: {
  5363. height: math.unit(6, "feet"),
  5364. weight: math.unit(180, "lbs"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/akane-sato/front.svg",
  5368. extra: 1219/1140
  5369. }
  5370. },
  5371. back: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(180, "lbs"),
  5374. name: "Back",
  5375. image: {
  5376. source: "./media/characters/akane-sato/back.svg",
  5377. extra: 1219/1170
  5378. }
  5379. },
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(2.5, "meters")
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(250, "meters"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Megamacro",
  5393. height: math.unit(25, "km")
  5394. },
  5395. ]
  5396. )
  5397. };
  5398. characterMakers["Rook"] = () => {
  5399. return makeCharacter(
  5400. "Rook",
  5401. "Rook",
  5402. {
  5403. front: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(65, "kg"),
  5406. name: "Front",
  5407. image: {
  5408. source: "./media/characters/rook/front.svg"
  5409. }
  5410. }
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(8.8, "feet")
  5416. },
  5417. {
  5418. name: "Macro",
  5419. height: math.unit(88, "feet"),
  5420. default: true
  5421. },
  5422. {
  5423. name: "Megamacro",
  5424. height: math.unit(8, "miles")
  5425. },
  5426. ]
  5427. )
  5428. };
  5429. characterMakers["Prodigy"] = () => {
  5430. return makeCharacter(
  5431. "Prodigy",
  5432. "Rook",
  5433. {
  5434. front: {
  5435. height: math.unit(12 + 2/12, "feet"),
  5436. weight: math.unit(808, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/prodigy/front.svg"
  5440. }
  5441. }
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(12 + 2/12, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(143, "feet")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(400, "feet")
  5456. },
  5457. ]
  5458. )
  5459. };
  5460. characterMakers["Daniel"] = () => {
  5461. return makeCharacter(
  5462. "Daniel",
  5463. "Galactor",
  5464. {
  5465. front: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(225, "lbs"),
  5468. name: "Front",
  5469. image: {
  5470. source: "./media/characters/daniel/front.svg"
  5471. }
  5472. },
  5473. leaning: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(225, "lbs"),
  5476. name: "Leaning",
  5477. image: {
  5478. source: "./media/characters/daniel/leaning.svg"
  5479. }
  5480. },
  5481. },
  5482. [
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(1000, "feet"),
  5486. default: true
  5487. },
  5488. ]
  5489. )
  5490. };
  5491. characterMakers["Chiros"] = () => {
  5492. return makeCharacter(
  5493. "Chiros",
  5494. "Chiropica",
  5495. {
  5496. front: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(88, "lbs"),
  5499. name: "Front",
  5500. image: {
  5501. source: "./media/characters/chiros/front.svg",
  5502. extra: 306/226
  5503. }
  5504. },
  5505. side: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(88, "lbs"),
  5508. name: "Side",
  5509. image: {
  5510. source: "./media/characters/chiros/side.svg",
  5511. extra: 306/226
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(6, "cm"),
  5519. default: true
  5520. },
  5521. ]
  5522. )
  5523. };
  5524. characterMakers["Selka"] = () => {
  5525. return makeCharacter(
  5526. "Selka",
  5527. "Xelchew",
  5528. {
  5529. front: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(100, "lbs"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/selka/front.svg",
  5535. extra: 947/887
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(5, "cm"),
  5543. default: true
  5544. },
  5545. ]
  5546. )
  5547. };
  5548. characterMakers["Verin"] = () => {
  5549. return makeCharacter(
  5550. "Verin",
  5551. "Vonadi",
  5552. {
  5553. front: {
  5554. height: math.unit(8 + 3/12, "feet"),
  5555. weight: math.unit(424, "lbs"),
  5556. name: "Front",
  5557. image: {
  5558. source: "./media/characters/verin/front.svg",
  5559. extra: 1845/1550
  5560. }
  5561. },
  5562. frontArmored: {
  5563. height: math.unit(8 + 3/12, "feet"),
  5564. weight: math.unit(424, "lbs"),
  5565. name: "Front (Armored)",
  5566. image: {
  5567. source: "./media/characters/verin/front-armor.svg",
  5568. extra: 1845/1550 ,
  5569. bottom: 0.01
  5570. }
  5571. },
  5572. back: {
  5573. height: math.unit(8 + 3/12, "feet"),
  5574. weight: math.unit(424, "lbs"),
  5575. name: "Back",
  5576. image: {
  5577. source: "./media/characters/verin/back.svg",
  5578. bottom: 0.1,
  5579. extra: 1
  5580. }
  5581. },
  5582. foot: {
  5583. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5584. name: "Foot",
  5585. image: {
  5586. source: "./media/characters/verin/foot.svg"
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(8 + 3/12, "feet")
  5594. },
  5595. {
  5596. name: "Minimacro",
  5597. height: math.unit(21, "feet"),
  5598. default: true
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(626, "feet")
  5603. },
  5604. ]
  5605. )
  5606. };
  5607. characterMakers["Sovrim Terraquian"] = () => {
  5608. return makeCharacter(
  5609. "Sovrim Terraquian",
  5610. "Sovrim Terraquian",
  5611. {
  5612. front: {
  5613. height: math.unit(2.718, "meters"),
  5614. weight: math.unit(150, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/sovrim-terraquian/front.svg"
  5618. }
  5619. },
  5620. back: {
  5621. height: math.unit(2.718, "meters"),
  5622. weight: math.unit(150, "lbs"),
  5623. name: "Back",
  5624. image: {
  5625. source: "./media/characters/sovrim-terraquian/back.svg"
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Micro",
  5632. height: math.unit(2, "inches")
  5633. },
  5634. {
  5635. name: "Small",
  5636. height: math.unit(1, "meter")
  5637. },
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(Math.E, "meters"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(20, "meters")
  5646. },
  5647. {
  5648. name: "Macro+",
  5649. height: math.unit(400, "meters")
  5650. },
  5651. ]
  5652. )
  5653. };
  5654. characterMakers["Reece Silvermane"] = () => {
  5655. return makeCharacter(
  5656. "Reece Silvermane",
  5657. "Silverhorsey",
  5658. {
  5659. front: {
  5660. height: math.unit(7, "feet"),
  5661. weight: math.unit(489, "lbs"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/reece-silvermane/front.svg",
  5665. bottom: 0.02,
  5666. extra: 1
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Macro",
  5673. height: math.unit(1.5, "miles"),
  5674. default: true
  5675. },
  5676. ]
  5677. )
  5678. };
  5679. characterMakers["Kane"] = () => {
  5680. return makeCharacter(
  5681. "Kane",
  5682. "LittleBigX110",
  5683. {
  5684. front: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(78, "kg"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/kane/front.svg",
  5690. extra: 978/899
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(2.1, "m"),
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(1, "km"),
  5702. default: true
  5703. },
  5704. ]
  5705. )
  5706. };
  5707. characterMakers["Tegon"] = () => {
  5708. return makeCharacter(
  5709. "Tegon",
  5710. "TegonDragon",
  5711. {
  5712. front: {
  5713. height: math.unit(6, "feet"),
  5714. weight: math.unit(200, "kg"),
  5715. name: "Front",
  5716. image: {
  5717. source: "./media/characters/tegon/front.svg",
  5718. bottom: 0.01,
  5719. extra: 1
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Micro",
  5726. height: math.unit(1, "inch")
  5727. },
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(6 + 3/12, "feet"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Macro",
  5735. height: math.unit(300, "feet")
  5736. },
  5737. {
  5738. name: "Megamacro",
  5739. height: math.unit(69, "miles")
  5740. },
  5741. ]
  5742. )
  5743. };
  5744. characterMakers["Arcturax"] = () => {
  5745. return makeCharacter(
  5746. "Arcturax",
  5747. "Arcturax",
  5748. {
  5749. side: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(2304, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/arcturax/side.svg",
  5755. extra: 790/376 ,
  5756. bottom: 0.01
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Micro",
  5763. height: math.unit(2, "inch")
  5764. },
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(6, "feet")
  5768. },
  5769. {
  5770. name: "Macro",
  5771. height: math.unit(39, "feet"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Megamacro",
  5776. height: math.unit(7, "miles")
  5777. },
  5778. ]
  5779. )
  5780. };
  5781. characterMakers["Sentri"] = () => {
  5782. return makeCharacter(
  5783. "Sentri",
  5784. "Sentri",
  5785. {
  5786. front: {
  5787. height: math.unit(6, "feet"),
  5788. weight: math.unit(50, "lbs"),
  5789. name: "Front",
  5790. image: {
  5791. source: "./media/characters/sentri/front.svg",
  5792. extra: 1750/1570 ,
  5793. bottom: 0.025
  5794. }
  5795. },
  5796. frontAlt: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(50, "lbs"),
  5799. name: "Front (Alt)",
  5800. image: {
  5801. source: "./media/characters/sentri/front-alt.svg",
  5802. extra: 1750/1570 ,
  5803. bottom: 0.025
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(15, "feet"),
  5811. default: true
  5812. },
  5813. {
  5814. name: "Macro",
  5815. height: math.unit(2500, "feet")
  5816. }
  5817. ]
  5818. )
  5819. };
  5820. characterMakers["Corvin"] = () => {
  5821. return makeCharacter(
  5822. "Corvin",
  5823. "Sirffuzzylogik",
  5824. {
  5825. front: {
  5826. height: math.unit(5 + 8/12, "feet"),
  5827. weight: math.unit(130, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/corvin/front.svg",
  5831. extra: 1803/1629
  5832. }
  5833. },
  5834. frontShirt: {
  5835. height: math.unit(5 + 8/12, "feet"),
  5836. weight: math.unit(130, "lbs"),
  5837. name: "Front (Shirt)",
  5838. image: {
  5839. source: "./media/characters/corvin/front-shirt.svg",
  5840. extra: 1803/1629
  5841. }
  5842. },
  5843. frontPoncho: {
  5844. height: math.unit(5 + 8/12, "feet"),
  5845. weight: math.unit(130, "lbs"),
  5846. name: "Front (Poncho)",
  5847. image: {
  5848. source: "./media/characters/corvin/front-poncho.svg",
  5849. extra: 1803/1629
  5850. }
  5851. },
  5852. side: {
  5853. height: math.unit(5 + 8/12, "feet"),
  5854. weight: math.unit(130, "lbs"),
  5855. name: "Side",
  5856. image: {
  5857. source: "./media/characters/corvin/side.svg",
  5858. extra: 1012/945
  5859. }
  5860. },
  5861. back: {
  5862. height: math.unit(5 + 8/12, "feet"),
  5863. weight: math.unit(130, "lbs"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/corvin/back.svg",
  5867. extra: 1803/1629
  5868. }
  5869. },
  5870. },
  5871. [
  5872. {
  5873. name: "Micro",
  5874. height: math.unit(3, "inches")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(5 + 8/12, "feet")
  5879. },
  5880. {
  5881. name: "Macro",
  5882. height: math.unit(300, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Megamacro",
  5887. height: math.unit(500, "miles")
  5888. }
  5889. ]
  5890. )
  5891. };
  5892. characterMakers["Q"] = () => {
  5893. return makeCharacter(
  5894. "Q",
  5895. "Q Walf",
  5896. {
  5897. front: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(135, "lbs"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/q/front.svg",
  5903. extra: 854/752 ,
  5904. bottom: 0.005
  5905. }
  5906. },
  5907. back: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(130, "lbs"),
  5910. name: "Back",
  5911. image: {
  5912. source: "./media/characters/q/back.svg",
  5913. extra: 854/752
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(90, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Extra Macro",
  5925. height: math.unit(300, "feet"),
  5926. },
  5927. {
  5928. name: "BIG WALF",
  5929. height: math.unit(750, "feet"),
  5930. },
  5931. ]
  5932. )
  5933. };
  5934. characterMakers["Carley"] = () => {
  5935. return makeCharacter(
  5936. "Carley",
  5937. "QuakeYote",
  5938. {
  5939. front: {
  5940. height: math.unit(6, "feet"),
  5941. weight: math.unit(150, "lbs"),
  5942. name: "Front",
  5943. image: {
  5944. source: "./media/characters/carley/front.svg",
  5945. extra: 3927/3540 ,
  5946. bottom: 0.03
  5947. }
  5948. }
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(6 + 3/12, "feet")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(185, "feet"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Megamacro",
  5962. height: math.unit(8, "miles"),
  5963. },
  5964. ]
  5965. )
  5966. };
  5967. characterMakers["Citrine"] = () => {
  5968. return makeCharacter(
  5969. "Citrine",
  5970. "thunderstrike23",
  5971. {
  5972. front: {
  5973. height: math.unit(3, "feet"),
  5974. weight: math.unit(28, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/citrine/front.svg"
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(3, "feet"),
  5985. default: true
  5986. }
  5987. ]
  5988. )
  5989. };
  5990. characterMakers["Aura Starwind"] = () => {
  5991. return makeCharacter(
  5992. "Aura Starwind",
  5993. "StrikeVixen",
  5994. {
  5995. front: {
  5996. height: math.unit(14, "feet"),
  5997. weight: math.unit(1450, "kg"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/aura-starwind/front.svg",
  6001. extra: 1455/1335
  6002. }
  6003. },
  6004. side: {
  6005. height: math.unit(14, "feet"),
  6006. weight: math.unit(1450, "kg"),
  6007. name: "Side",
  6008. image: {
  6009. source: "./media/characters/aura-starwind/side.svg",
  6010. extra: 1654/1497
  6011. }
  6012. },
  6013. taur: {
  6014. height: math.unit(18, "feet"),
  6015. weight: math.unit(5500, "kg"),
  6016. name: "Taur",
  6017. image: {
  6018. source: "./media/characters/aura-starwind/taur.svg",
  6019. extra: 1760/1650
  6020. }
  6021. },
  6022. feral: {
  6023. height: math.unit(46, "feet"),
  6024. weight: math.unit(25000, "kg"),
  6025. name: "Feral",
  6026. image: {
  6027. source: "./media/characters/aura-starwind/feral.svg"
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(14, "feet"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(50, "meters")
  6040. },
  6041. {
  6042. name: "Megamacro",
  6043. height: math.unit(5000, "meters")
  6044. },
  6045. {
  6046. name: "Gigamacro",
  6047. height: math.unit(100000, "kilometers")
  6048. },
  6049. ]
  6050. )
  6051. };
  6052. characterMakers["Rivet"] = () => {
  6053. return makeCharacter(
  6054. "Rivet",
  6055. "Vonadi",
  6056. {
  6057. front: {
  6058. height: math.unit(2 + 7/12, "feet"),
  6059. weight: math.unit(32, "lbs"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/rivet/front.svg",
  6063. extra: 1716/1658 ,
  6064. bottom: 0.03
  6065. }
  6066. },
  6067. foot: {
  6068. height: math.unit(0.551, "feet"),
  6069. name: "Rivet's Foot",
  6070. image: {
  6071. source: "./media/characters/rivet/foot.svg"
  6072. },
  6073. rename: true
  6074. }
  6075. },
  6076. [
  6077. {
  6078. name: "Micro",
  6079. height: math.unit(1.5, "inches"),
  6080. },
  6081. {
  6082. name: "Normal",
  6083. height: math.unit(2 + 7/12, "feet"),
  6084. default: true
  6085. },
  6086. {
  6087. name: "Macro",
  6088. height: math.unit(85, "feet")
  6089. },
  6090. {
  6091. name: "Megamacro",
  6092. height: math.unit(2.2, "km")
  6093. }
  6094. ]
  6095. )
  6096. };
  6097. characterMakers["Coffee"] = () => {
  6098. return makeCharacter(
  6099. "Coffee",
  6100. "CoffeeDoggo",
  6101. {
  6102. front: {
  6103. height: math.unit(5 + 9/12, "feet"),
  6104. weight: math.unit(150, "lbs"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/coffee/front.svg",
  6108. extra: 3666/3032 ,
  6109. bottom: 0.04
  6110. }
  6111. },
  6112. foot: {
  6113. height: math.unit(1.29, "feet"),
  6114. name: "Foot",
  6115. image: {
  6116. source: "./media/characters/coffee/foot.svg"
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Micro",
  6123. height: math.unit(2, "inches"),
  6124. },
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(5 + 9/12, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(800, "feet")
  6133. },
  6134. {
  6135. name: "Megamacro",
  6136. height: math.unit(25, "miles")
  6137. }
  6138. ]
  6139. )
  6140. };
  6141. characterMakers["Chari-Gal"] = () => {
  6142. return makeCharacter(
  6143. "Chari-Gal",
  6144. "Knoem",
  6145. {
  6146. front: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(200, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/chari-gal/front.svg",
  6152. extra: 1568/1385 ,
  6153. bottom: 0.047
  6154. }
  6155. },
  6156. gigantamax: {
  6157. height: math.unit(6*16, "feet"),
  6158. weight: math.unit(200*16*16*16, "lbs"),
  6159. name: "Gigantamax",
  6160. image: {
  6161. source: "./media/characters/chari-gal/gigantamax.svg",
  6162. extra: 1124/888 ,
  6163. bottom: 0.03
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(5 + 7/12, "feet")
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(200, "feet"),
  6175. default: true
  6176. }
  6177. ]
  6178. )
  6179. };
  6180. characterMakers["Nova"] = () => {
  6181. return makeCharacter(
  6182. "Nova",
  6183. "CoffeeDoggo",
  6184. {
  6185. front: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(150, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/nova/front.svg",
  6191. extra: 5000/4722 ,
  6192. bottom: 0.02
  6193. }
  6194. }
  6195. },
  6196. [
  6197. {
  6198. name: "Micro-",
  6199. height: math.unit(0.8, "inches")
  6200. },
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(2, "inches"),
  6204. default: true
  6205. },
  6206. ]
  6207. )
  6208. };
  6209. characterMakers["Argent"] = () => {
  6210. return makeCharacter(
  6211. "Argent",
  6212. "ArgentVZ",
  6213. {
  6214. front: {
  6215. height: math.unit(3 + 1/12, "feet"),
  6216. weight: math.unit(21.7, "lbs"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/argent/front.svg",
  6220. extra: 1565/1416 ,
  6221. bottom: 0.01
  6222. }
  6223. }
  6224. },
  6225. [
  6226. {
  6227. name: "Micro",
  6228. height: math.unit(2, "inches")
  6229. },
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(3 + 1/12, "feet"),
  6233. default: true
  6234. },
  6235. {
  6236. name: "Macro",
  6237. height: math.unit(120, "feet")
  6238. },
  6239. ]
  6240. )
  6241. };
  6242. characterMakers["Mira al-Cul"] = () => {
  6243. return makeCharacter(
  6244. "Mira al-Cul",
  6245. "Mariokartsonicriders",
  6246. {
  6247. lamp: {
  6248. height: math.unit(7 * 1559 / 989, "feet"),
  6249. name: "Magic Lamp",
  6250. image: {
  6251. source: "./media/characters/mira-al-cul/lamp.svg",
  6252. extra: 1617/1559
  6253. }
  6254. },
  6255. front: {
  6256. height: math.unit(7, "feet"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/mira-al-cul/front.svg",
  6260. extra: 1044/990
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Heavily Restricted",
  6267. height: math.unit(7 * 1559 / 989, "feet")
  6268. },
  6269. {
  6270. name: "Freshly Freed",
  6271. height: math.unit(50 * 1559 / 989, "feet")
  6272. },
  6273. {
  6274. name: "World Encompassing",
  6275. height: math.unit(10000 * 1559 / 989, "miles")
  6276. },
  6277. {
  6278. name: "Galactic",
  6279. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6280. },
  6281. {
  6282. name: "Palmed Universe",
  6283. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6284. default: true
  6285. },
  6286. {
  6287. name: "Multiversal Matriarch",
  6288. height: math.unit(8.87e10, "yottameters")
  6289. },
  6290. {
  6291. name: "Void Mother",
  6292. height: math.unit(3.14e110, "yottaparsecs")
  6293. },
  6294. ]
  6295. )
  6296. };
  6297. characterMakers["Kuro-shi Uchū"] = () => {
  6298. return makeCharacter(
  6299. "Kuro-shi Uchū",
  6300. "Dragon Shark",
  6301. {
  6302. front: {
  6303. height: math.unit(17 + 1/12, "feet"),
  6304. weight: math.unit(476.2*5, "lbs"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/kuro-shi-uchū/front.svg",
  6308. extra: 2329/1835 ,
  6309. bottom: 0.02
  6310. }
  6311. },
  6312. },
  6313. [
  6314. {
  6315. name: "Micro",
  6316. height: math.unit(2, "inches")
  6317. },
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(12, "meters")
  6321. },
  6322. {
  6323. name: "Planetary",
  6324. height: math.unit(0.00929, "AU"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Universal",
  6329. height: math.unit(20, "gigaparsecs")
  6330. },
  6331. ]
  6332. )
  6333. };
  6334. characterMakers["Katherine"] = () => {
  6335. return makeCharacter(
  6336. "Katherine",
  6337. "chrisrules123",
  6338. {
  6339. front: {
  6340. height: math.unit(5 + 2/12, "feet"),
  6341. weight: math.unit(120, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/katherine/front.svg",
  6345. extra: 2075/1969
  6346. }
  6347. },
  6348. dress: {
  6349. height: math.unit(5 + 2/12, "feet"),
  6350. weight: math.unit(120, "lbs"),
  6351. name: "Dress",
  6352. image: {
  6353. source: "./media/characters/katherine/dress.svg",
  6354. extra: 2258/2064
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Micro",
  6361. height: math.unit(1, "inches"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5 + 2/12, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(100, "meters")
  6371. },
  6372. {
  6373. name: "Megamacro",
  6374. height: math.unit(80, "miles")
  6375. },
  6376. ]
  6377. )
  6378. };
  6379. characterMakers["Yevis"] = () => {
  6380. return makeCharacter(
  6381. "Yevis",
  6382. "Mariokartsonicriders",
  6383. {
  6384. front: {
  6385. height: math.unit(7 + 8/12, "feet"),
  6386. weight: math.unit(250, "lbs"),
  6387. name: "Front",
  6388. image: {
  6389. source: "./media/characters/yevis/front.svg",
  6390. extra: 1938/1755
  6391. }
  6392. }
  6393. },
  6394. [
  6395. {
  6396. name: "Mortal",
  6397. height: math.unit(7 + 8/12, "feet")
  6398. },
  6399. {
  6400. name: "Battle",
  6401. height: math.unit(25 + 11/12, "feet")
  6402. },
  6403. {
  6404. name: "Wrath",
  6405. height: math.unit(1654 + 11/12, "feet")
  6406. },
  6407. {
  6408. name: "Planet Destroyer",
  6409. height: math.unit(12000, "miles")
  6410. },
  6411. {
  6412. name: "Galaxy Conqueror",
  6413. height: math.unit(1.45, "zettameters"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Universal War",
  6418. height: math.unit(184, "gigaparsecs")
  6419. },
  6420. {
  6421. name: "Eternity War",
  6422. height: math.unit(1.98e55, "yottaparsecs")
  6423. },
  6424. ]
  6425. )
  6426. };
  6427. characterMakers["Xavier"] = () => {
  6428. return makeCharacter(
  6429. "Xavier",
  6430. "zmaster587",
  6431. {
  6432. front: {
  6433. height: math.unit(5 + 8/12, "feet"),
  6434. weight: math.unit(63, "kg"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/xavier/front.svg",
  6438. extra: 944/883
  6439. }
  6440. },
  6441. frontStretch: {
  6442. height: math.unit(5 + 8/12, "feet"),
  6443. weight: math.unit(63, "kg"),
  6444. name: "Stretching",
  6445. image: {
  6446. source: "./media/characters/xavier/front-stretch.svg",
  6447. extra: 962/820
  6448. }
  6449. },
  6450. },
  6451. [
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(5 + 8/12, "feet")
  6455. },
  6456. {
  6457. name: "Macro",
  6458. height: math.unit(100, "meters"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "McLargeHuge",
  6463. height: math.unit(10, "miles")
  6464. },
  6465. ]
  6466. )
  6467. };
  6468. characterMakers["Joshii"] = () => {
  6469. return makeCharacter(
  6470. "Joshii",
  6471. "DarkieTehJester",
  6472. {
  6473. front: {
  6474. height: math.unit(5 + 5/12, "feet"),
  6475. weight: math.unit(150, "lb"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/joshii/front.svg"
  6479. }
  6480. },
  6481. foot: {
  6482. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6483. name: "Foot",
  6484. image: {
  6485. source: "./media/characters/joshii/foot.svg"
  6486. }
  6487. },
  6488. },
  6489. [
  6490. {
  6491. name: "Micro",
  6492. height: math.unit(2, "inches")
  6493. },
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(5 + 5/12, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(785, "feet")
  6502. },
  6503. {
  6504. name: "Megamacro",
  6505. height: math.unit(24.5, "miles")
  6506. },
  6507. ]
  6508. )
  6509. };
  6510. characterMakers["Goddess Elizabeth"] = () => {
  6511. return makeCharacter(
  6512. "Goddess Elizabeth",
  6513. "DarkieTehJester",
  6514. {
  6515. front: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(150, "lb"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/goddess-elizabeth/front.svg"
  6521. }
  6522. },
  6523. foot: {
  6524. height: math.unit(6 * 0.25436 / 2, "feet"),
  6525. name: "Foot",
  6526. image: {
  6527. source: "./media/characters/goddess-elizabeth/foot.svg"
  6528. }
  6529. },
  6530. },
  6531. [
  6532. {
  6533. name: "Micro",
  6534. height: math.unit(12, "feet")
  6535. },
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(80, "miles"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(15000, "parsecs")
  6544. },
  6545. ]
  6546. )
  6547. };
  6548. characterMakers["Kara"] = () => {
  6549. return makeCharacter(
  6550. "Kara",
  6551. "Vonadi",
  6552. {
  6553. front: {
  6554. height: math.unit(5 + 9/12, "feet"),
  6555. weight: math.unit(144, "lb"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/kara/front.svg"
  6559. }
  6560. },
  6561. feet: {
  6562. height: math.unit(6/6.765, "feet"),
  6563. name: "Kara's Feet",
  6564. rename: true,
  6565. image: {
  6566. source: "./media/characters/kara/feet.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(5 + 9/12, "feet")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(174, "feet"),
  6578. default: true
  6579. },
  6580. ]
  6581. )
  6582. };
  6583. characterMakers["Tyrone"] = () => {
  6584. return makeCharacter(
  6585. "Tyrone",
  6586. "nanakisan",
  6587. {
  6588. front: {
  6589. height: math.unit(18, "feet"),
  6590. weight: math.unit(4050, "lb"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/tyrone/front.svg",
  6594. extra: 2520/2402 ,
  6595. bottom: 0.025
  6596. }
  6597. },
  6598. },
  6599. [
  6600. {
  6601. name: "Normal",
  6602. height: math.unit(18, "feet"),
  6603. default: true
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(300, "feet")
  6608. },
  6609. ]
  6610. )
  6611. };
  6612. characterMakers["Danny"] = () => {
  6613. return makeCharacter(
  6614. "Danny",
  6615. "danny_gryphon",
  6616. {
  6617. front: {
  6618. height: math.unit(7 + 8/12, "feet"),
  6619. weight: math.unit(120, "lb"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/danny/front.svg",
  6623. extra: 1490/1350
  6624. }
  6625. },
  6626. back: {
  6627. height: math.unit(7 + 8/12, "feet"),
  6628. weight: math.unit(120, "lb"),
  6629. name: "Back",
  6630. image: {
  6631. source: "./media/characters/danny/back.svg",
  6632. extra: 1490/1350
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(7 + 8/12, "feet"),
  6640. default: true
  6641. },
  6642. ]
  6643. )
  6644. };
  6645. characterMakers["Mallow"] = () => {
  6646. return makeCharacter(
  6647. "Mallow",
  6648. "Mallowchu",
  6649. {
  6650. front: {
  6651. height: math.unit(3.5, "inches"),
  6652. weight: math.unit(19, "grams"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/mallow/front.svg",
  6656. extra: 471/431
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(3.5, "inches"),
  6661. weight: math.unit(19, "grams"),
  6662. name: "Back",
  6663. image: {
  6664. source: "./media/characters/mallow/back.svg",
  6665. extra: 471/431
  6666. }
  6667. },
  6668. },
  6669. [
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(3.5, "inches"),
  6673. default: true
  6674. },
  6675. ]
  6676. )
  6677. };
  6678. characterMakers["Starry Aqua"] = () => {
  6679. return makeCharacter(
  6680. "Starry Aqua",
  6681. "StarryAqua",
  6682. {
  6683. front: {
  6684. height: math.unit(9, "feet"),
  6685. weight: math.unit(230, "kg"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/starry-aqua/front.svg"
  6689. }
  6690. },
  6691. back: {
  6692. height: math.unit(9, "feet"),
  6693. weight: math.unit(230, "kg"),
  6694. name: "Back",
  6695. image: {
  6696. source: "./media/characters/starry-aqua/back.svg"
  6697. }
  6698. },
  6699. hand: {
  6700. height: math.unit(9 * 0.1168, "feet"),
  6701. name: "Hand",
  6702. image: {
  6703. source: "./media/characters/starry-aqua/hand.svg"
  6704. }
  6705. },
  6706. foot: {
  6707. height: math.unit(9 * 0.18, "feet"),
  6708. name: "Foot",
  6709. image: {
  6710. source: "./media/characters/starry-aqua/foot.svg"
  6711. }
  6712. }
  6713. },
  6714. [
  6715. {
  6716. name: "Micro",
  6717. height: math.unit(3, "inches")
  6718. },
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(9, "feet")
  6722. },
  6723. {
  6724. name: "Macro",
  6725. height: math.unit(300, "feet"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Megamacro",
  6730. height: math.unit(3200, "feet")
  6731. }
  6732. ]
  6733. )
  6734. };
  6735. characterMakers["Luka"] = () => {
  6736. return makeCharacter(
  6737. "Luka",
  6738. "UmbraHusky",
  6739. {
  6740. front: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(230, "lb"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/luka/front.svg",
  6746. extra: 1,
  6747. bottom: 0.025
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(12 + 8/12, "feet"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Minimacro",
  6759. height: math.unit(20, "feet")
  6760. },
  6761. {
  6762. name: "Macro",
  6763. height: math.unit(250, "feet")
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(5, "miles")
  6768. },
  6769. {
  6770. name: "Gigamacro",
  6771. height: math.unit(8000, "miles")
  6772. },
  6773. ]
  6774. )
  6775. };
  6776. characterMakers["Natalie Nightring"] = () => {
  6777. return makeCharacter(
  6778. "Natalie Nightring",
  6779. "NatEdgecomb",
  6780. {
  6781. front: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(150, "lb"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/natalie-nightring/front.svg",
  6787. extra: 1,
  6788. bottom: 0.06
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Uh Oh",
  6795. height: math.unit(0.1, "mm")
  6796. },
  6797. {
  6798. name: "Small",
  6799. height: math.unit(3, "inches")
  6800. },
  6801. {
  6802. name: "Human Scale",
  6803. height: math.unit(6, "feet")
  6804. },
  6805. {
  6806. name: "Librarian",
  6807. height: math.unit(50, "feet"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Immense",
  6812. height: math.unit(200, "miles")
  6813. },
  6814. ]
  6815. )
  6816. };
  6817. characterMakers["Danni Rosie"] = () => {
  6818. return makeCharacter(
  6819. "Danni Rosie",
  6820. "colwag",
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(180, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/danni-rosie/front.svg",
  6828. extra: 1260/1128 ,
  6829. bottom: 0.022
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Micro",
  6836. height: math.unit(2, "inches"),
  6837. default: true
  6838. },
  6839. ]
  6840. )
  6841. };
  6842. characterMakers["Samantha Kruse"] = () => {
  6843. return makeCharacter(
  6844. "Samantha Kruse",
  6845. "colwag",
  6846. {
  6847. front: {
  6848. height: math.unit(5 + 9/12, "feet"),
  6849. weight: math.unit(220, "lb"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/samantha-kruse/front.svg",
  6853. extra: (985 / 935) ,
  6854. bottom: 0.03
  6855. }
  6856. },
  6857. frontUndressed: {
  6858. height: math.unit(5 + 9/12, "feet"),
  6859. weight: math.unit(220, "lb"),
  6860. name: "Front (Undressed)",
  6861. image: {
  6862. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6863. extra: (973 / 923) ,
  6864. bottom: 0.025
  6865. }
  6866. },
  6867. fat: {
  6868. height: math.unit(5 + 9/12, "feet"),
  6869. weight: math.unit(900, "lb"),
  6870. name: "Front (Fat)",
  6871. image: {
  6872. source: "./media/characters/samantha-kruse/fat.svg",
  6873. extra: 2688/2561
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(5 + 9/12, "feet"),
  6881. default: true
  6882. }
  6883. ]
  6884. )
  6885. };
  6886. characterMakers["Amelia Rosie"] = () => {
  6887. return makeCharacter(
  6888. "Amelia Rosie",
  6889. "colwag",
  6890. {
  6891. back: {
  6892. height: math.unit(5 + 4/12, "feet"),
  6893. weight: math.unit(4963, "lb"),
  6894. name: "Back",
  6895. image: {
  6896. source: "./media/characters/amelia-rosie/back.svg",
  6897. extra: 1113/963 ,
  6898. bottom: 0.01
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Level 0",
  6905. height: math.unit(5 + 4/12, "feet")
  6906. },
  6907. {
  6908. name: "Level 1",
  6909. height: math.unit(164597, "feet"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Level 2",
  6914. height: math.unit(956243, "miles")
  6915. },
  6916. {
  6917. name: "Level 3",
  6918. height: math.unit(29421709423, "miles")
  6919. },
  6920. {
  6921. name: "Level 4",
  6922. height: math.unit(154, "lightyears")
  6923. },
  6924. {
  6925. name: "Level 5",
  6926. height: math.unit(4738272, "lightyears")
  6927. },
  6928. {
  6929. name: "Level 6",
  6930. height: math.unit(145787152896, "lightyears")
  6931. },
  6932. ]
  6933. )
  6934. };
  6935. characterMakers["Rook Kitara"] = () => {
  6936. return makeCharacter(
  6937. "Rook Kitara",
  6938. "TailsHigh",
  6939. {
  6940. front: {
  6941. height: math.unit(5 + 11/12, "feet"),
  6942. weight: math.unit(65, "kg"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/rook-kitara/front.svg",
  6946. extra: 1347/1274 ,
  6947. bottom: 0.005
  6948. }
  6949. },
  6950. },
  6951. [
  6952. {
  6953. name: "Totally Unfair",
  6954. height: math.unit(1.8, "mm")
  6955. },
  6956. {
  6957. name: "Lap Rookie",
  6958. height: math.unit(1.4, "feet")
  6959. },
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(5 + 11/12, "feet"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "How Did This Happen",
  6967. height: math.unit(80, "miles")
  6968. }
  6969. ]
  6970. )
  6971. };
  6972. characterMakers["Pisces"] = () => {
  6973. return makeCharacter(
  6974. "Pisces",
  6975. "Pisces_Kelp",
  6976. {
  6977. front: {
  6978. height: math.unit(7, "feet"),
  6979. weight: math.unit(300, "lb"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/pisces/front.svg",
  6983. extra: 2255/2115 ,
  6984. bottom: 0.03
  6985. }
  6986. },
  6987. back: {
  6988. height: math.unit(7, "feet"),
  6989. weight: math.unit(300, "lb"),
  6990. name: "Back",
  6991. image: {
  6992. source: "./media/characters/pisces/back.svg",
  6993. extra: 2146/2055 ,
  6994. bottom: 0.04
  6995. }
  6996. },
  6997. },
  6998. [
  6999. {
  7000. name: "Normal",
  7001. height: math.unit(7, "feet"),
  7002. default: true
  7003. },
  7004. {
  7005. name: "Swimming Pool",
  7006. height: math.unit(12.2, "meters")
  7007. },
  7008. {
  7009. name: "Olympic Swimming Pool",
  7010. height: math.unit(56.3, "meters")
  7011. },
  7012. {
  7013. name: "Lake Superior",
  7014. height: math.unit(93900, "meters")
  7015. },
  7016. {
  7017. name: "Mediterranean Sea",
  7018. height: math.unit(644457, "meters")
  7019. },
  7020. {
  7021. name: "World's Oceans",
  7022. height: math.unit(4567491, "meters")
  7023. },
  7024. ]
  7025. )
  7026. };
  7027. characterMakers["Zelas"] = () => {
  7028. return makeCharacter(
  7029. "Zelas",
  7030. "Cirez",
  7031. {
  7032. front: {
  7033. height: math.unit(2.3, "meters"),
  7034. weight: math.unit(120, "kg"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/zelas/front.svg"
  7038. }
  7039. },
  7040. side: {
  7041. height: math.unit(2.3, "meters"),
  7042. weight: math.unit(120, "kg"),
  7043. name: "Side",
  7044. image: {
  7045. source: "./media/characters/zelas/side.svg"
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(2.3, "meters"),
  7050. weight: math.unit(120, "kg"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/zelas/back.svg"
  7054. }
  7055. },
  7056. foot: {
  7057. height: math.unit(1.116, "feet"),
  7058. name: "Foot",
  7059. image: {
  7060. source: "./media/characters/zelas/foot.svg"
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(2.3, "meters")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(30, "meters"),
  7072. default: true
  7073. },
  7074. ]
  7075. )
  7076. };
  7077. characterMakers["Talbot"] = () => {
  7078. return makeCharacter(
  7079. "Talbot",
  7080. "Talbot",
  7081. {
  7082. front: {
  7083. height: math.unit(1, "inch"),
  7084. weight: math.unit(0.21, "grams"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/talbot/front.svg",
  7088. extra: 594/544
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Micro",
  7095. height: math.unit(1, "inch"),
  7096. default: true
  7097. },
  7098. ]
  7099. )
  7100. };
  7101. characterMakers["Fliss"] = () => {
  7102. return makeCharacter(
  7103. "Fliss",
  7104. "Fliss",
  7105. {
  7106. front: {
  7107. height: math.unit(3 + 3/12, "feet"),
  7108. weight: math.unit(51.8, "lb"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/fliss/front.svg",
  7112. extra: 840/640
  7113. }
  7114. },
  7115. },
  7116. [
  7117. {
  7118. name: "Teeny Tiny",
  7119. height: math.unit(1, "mm")
  7120. },
  7121. {
  7122. name: "Small",
  7123. height: math.unit(1, "inch"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Standard Sylveon",
  7128. height: math.unit(3 + 3/12, "feet")
  7129. },
  7130. {
  7131. name: "Large Nuisance",
  7132. height: math.unit(33, "feet")
  7133. },
  7134. {
  7135. name: "City Filler",
  7136. height: math.unit(3000, "feet")
  7137. },
  7138. {
  7139. name: "New Horizon",
  7140. height: math.unit(6000, "miles")
  7141. },
  7142. ]
  7143. )
  7144. };
  7145. characterMakers["Fleta"] = () => {
  7146. return makeCharacter(
  7147. "Fleta",
  7148. "TheFleta",
  7149. {
  7150. front: {
  7151. height: math.unit(5, "cm"),
  7152. weight: math.unit(1.94, "g"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/fleta/front.svg",
  7156. extra: 835/803
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(5, "cm"),
  7161. weight: math.unit(1.94, "g"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/fleta/back.svg",
  7165. extra: 835/803
  7166. }
  7167. },
  7168. },
  7169. [
  7170. {
  7171. name: "Micro",
  7172. height: math.unit(5, "cm"),
  7173. default: true
  7174. },
  7175. ]
  7176. )
  7177. };
  7178. characterMakers["Dominic"] = () => {
  7179. return makeCharacter(
  7180. "Dominic",
  7181. "HypoTheDerg",
  7182. {
  7183. front: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(225, "lb"),
  7186. name: "Front",
  7187. image: {
  7188. source: "./media/characters/dominic/front.svg",
  7189. extra: 1770/1620 ,
  7190. bottom: 0.025
  7191. }
  7192. },
  7193. back: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(225, "lb"),
  7196. name: "Back",
  7197. image: {
  7198. source: "./media/characters/dominic/back.svg",
  7199. extra: 1745/1620 ,
  7200. bottom: 0.065
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Nano",
  7207. height: math.unit(0.1, "mm")
  7208. },
  7209. {
  7210. name: "Micro-",
  7211. height: math.unit(1, "mm")
  7212. },
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(4, "inches")
  7216. },
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(6 + 4/12, "feet"),
  7220. default: true
  7221. },
  7222. {
  7223. name: "Macro",
  7224. height: math.unit(115, "feet")
  7225. },
  7226. {
  7227. name: "Macro+",
  7228. height: math.unit(955, "feet")
  7229. },
  7230. {
  7231. name: "Megamacro",
  7232. height: math.unit(8990, "feet")
  7233. },
  7234. {
  7235. name: "Gigmacro",
  7236. height: math.unit(9310, "miles")
  7237. },
  7238. {
  7239. name: "Teramacro",
  7240. height: math.unit(1567005010, "miles")
  7241. },
  7242. {
  7243. name: "Examacro",
  7244. height: math.unit(1425, "parsecs")
  7245. },
  7246. ]
  7247. )
  7248. };
  7249. characterMakers["Major Colonel"] = () => {
  7250. return makeCharacter(
  7251. "Major Colonel",
  7252. "Major Colonel",
  7253. {
  7254. front: {
  7255. height: math.unit(400, "feet"),
  7256. weight: math.unit(44444444, "lb"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/major-colonel/front.svg"
  7260. }
  7261. },
  7262. back: {
  7263. height: math.unit(400, "feet"),
  7264. weight: math.unit(44444444, "lb"),
  7265. name: "Back",
  7266. image: {
  7267. source: "./media/characters/major-colonel/back.svg"
  7268. }
  7269. },
  7270. },
  7271. [
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(400, "feet"),
  7275. default: true
  7276. },
  7277. ]
  7278. )
  7279. };
  7280. characterMakers["Axel Lycan"] = () => {
  7281. return makeCharacter(
  7282. "Axel Lycan",
  7283. "AxelLycan",
  7284. {
  7285. front: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(120, "lb"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/axel-lycan/front.svg",
  7291. extra: 1,
  7292. bottom: 0.08
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Macro",
  7299. height: math.unit(1, "km"),
  7300. default: true
  7301. },
  7302. ]
  7303. )
  7304. };
  7305. characterMakers["Vanrel (Hyena)"] = () => {
  7306. return makeCharacter(
  7307. "Vanrel (Hyena)",
  7308. "Vanrel",
  7309. {
  7310. front: {
  7311. height: math.unit(5 + 9/12, "feet"),
  7312. weight: math.unit(175, "lb"),
  7313. name: "Front",
  7314. image: {
  7315. source: "./media/characters/vanrel-hyena/front.svg",
  7316. extra: 1086/1010 ,
  7317. bottom: 0.04
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(5 + 9/12, "feet"),
  7325. default: true
  7326. },
  7327. ]
  7328. )
  7329. };
  7330. characterMakers["Abbott Absol"] = () => {
  7331. return makeCharacter(
  7332. "Abbott Absol",
  7333. "Abbott Absol",
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(103, "lb"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/abbott-absol/front.svg",
  7341. extra: 2010/1842
  7342. }
  7343. },
  7344. },
  7345. [
  7346. {
  7347. name: "Megamicro",
  7348. height: math.unit(0.1, "mm")
  7349. },
  7350. {
  7351. name: "Micro",
  7352. height: math.unit(1, "inch")
  7353. },
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(6, "feet"),
  7357. default: true
  7358. },
  7359. ]
  7360. )
  7361. };
  7362. characterMakers["Hector"] = () => {
  7363. return makeCharacter(
  7364. "Hector",
  7365. "LibragonSlvr",
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(264, "lb"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/hector/front.svg",
  7373. extra: 2280/2130 ,
  7374. bottom: 0.07
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(12.25, "foot"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(160, "feet")
  7387. },
  7388. ]
  7389. )
  7390. };
  7391. characterMakers["Sal"] = () => {
  7392. return makeCharacter(
  7393. "Sal",
  7394. "Bigdur",
  7395. {
  7396. front: {
  7397. height: math.unit(6, "feet"),
  7398. weight: math.unit(150, "lb"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/sal/front.svg",
  7402. extra: 1846/1699 ,
  7403. bottom: 0.04
  7404. }
  7405. },
  7406. },
  7407. [
  7408. {
  7409. name: "Megamacro",
  7410. height: math.unit(10, "miles"),
  7411. default: true
  7412. },
  7413. ]
  7414. )
  7415. };
  7416. characterMakers["Ranger"] = () => {
  7417. return makeCharacter(
  7418. "Ranger",
  7419. "Ranger",
  7420. {
  7421. front: {
  7422. height: math.unit(3, "meters"),
  7423. weight: math.unit(450, "kg"),
  7424. name: "front",
  7425. image: {
  7426. source: "./media/characters/ranger/front.svg",
  7427. extra: 2401/2243 ,
  7428. bottom: 0.05
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(3, "meters"),
  7436. default: true
  7437. },
  7438. ]
  7439. )
  7440. };
  7441. characterMakers["Theresa"] = () => {
  7442. return makeCharacter(
  7443. "Theresa",
  7444. "Ranger",
  7445. {
  7446. front: {
  7447. height: math.unit(14, "feet"),
  7448. weight: math.unit(800, "kg"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/theresa/front.svg",
  7452. extra: 3575/3346 ,
  7453. bottom: 0.03
  7454. }
  7455. },
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(14, "feet"),
  7461. default: true
  7462. },
  7463. ]
  7464. )
  7465. };
  7466. characterMakers["Ine"] = () => {
  7467. return makeCharacter(
  7468. "Ine",
  7469. "Ranger",
  7470. {
  7471. front: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(3, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/ine/front.svg",
  7477. extra: 678/539 ,
  7478. bottom: 0.023
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(2.265, "feet"),
  7486. default: true
  7487. },
  7488. ]
  7489. )
  7490. };
  7491. characterMakers["Vial"] = () => {
  7492. return makeCharacter(
  7493. "Vial",
  7494. "Ranger",
  7495. {
  7496. front: {
  7497. height: math.unit(5, "feet"),
  7498. weight: math.unit(30, "kg"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/vial/front.svg",
  7502. extra: 1365/1277 ,
  7503. bottom: 0.04
  7504. }
  7505. },
  7506. },
  7507. [
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(5, "feet"),
  7511. default: true
  7512. },
  7513. ]
  7514. )
  7515. };
  7516. characterMakers["Rovoska"] = () => {
  7517. return makeCharacter(
  7518. "Rovoska",
  7519. "Rovoska",
  7520. {
  7521. side: {
  7522. height: math.unit(3.4, "meters"),
  7523. weight: math.unit(1000, "lb"),
  7524. name: "Side",
  7525. image: {
  7526. source: "./media/characters/rovoska/side.svg",
  7527. extra: 4403/1515
  7528. }
  7529. },
  7530. },
  7531. [
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(3.4, "meters"),
  7535. default: true
  7536. },
  7537. ]
  7538. )
  7539. };
  7540. characterMakers["Gunner Rotthbauer"] = () => {
  7541. return makeCharacter(
  7542. "Gunner Rotthbauer",
  7543. "GunnerRott",
  7544. {
  7545. front: {
  7546. height: math.unit(8, "feet"),
  7547. weight: math.unit(315, "lb"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/gunner-rotthbauer/front.svg"
  7551. }
  7552. },
  7553. back: {
  7554. height: math.unit(8, "feet"),
  7555. weight: math.unit(315, "lb"),
  7556. name: "Back",
  7557. image: {
  7558. source: "./media/characters/gunner-rotthbauer/back.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Micro",
  7565. height: math.unit(3.5, "inches")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(8, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(250, "feet")
  7575. },
  7576. {
  7577. name: "Megamacro",
  7578. height: math.unit(1, "AU")
  7579. },
  7580. ]
  7581. )
  7582. };
  7583. characterMakers["Allatia"] = () => {
  7584. return makeCharacter(
  7585. "Allatia",
  7586. "ilikefurrystoo",
  7587. {
  7588. front: {
  7589. height: math.unit(5 + 5/12, "feet"),
  7590. weight: math.unit(140, "lb"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/allatia/front.svg",
  7594. extra: 1227/1180 ,
  7595. bottom: 0.027
  7596. }
  7597. },
  7598. },
  7599. [
  7600. {
  7601. name: "Normal",
  7602. height: math.unit(5 + 5/12, "feet")
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(250, "feet"),
  7607. default: true
  7608. },
  7609. {
  7610. name: "Megamacro",
  7611. height: math.unit(8, "miles")
  7612. }
  7613. ]
  7614. )
  7615. };
  7616. characterMakers["Tene"] = () => {
  7617. return makeCharacter(
  7618. "Tene",
  7619. "TenebrisDrox",
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(120, "lb"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/tene/front.svg",
  7627. extra: 1728/1578 ,
  7628. bottom: 0.022
  7629. }
  7630. },
  7631. stomping: {
  7632. height: math.unit(2.025, "meters"),
  7633. weight: math.unit(120, "lb"),
  7634. name: "Stomping",
  7635. image: {
  7636. source: "./media/characters/tene/stomping.svg",
  7637. extra: 938/873 ,
  7638. bottom: 0.01
  7639. }
  7640. },
  7641. sitting: {
  7642. height: math.unit(1, "meter"),
  7643. weight: math.unit(120, "lb"),
  7644. name: "Sitting",
  7645. image: {
  7646. source: "./media/characters/tene/sitting.svg",
  7647. extra: 437/415 ,
  7648. bottom: 0.1
  7649. }
  7650. },
  7651. feral: {
  7652. height: math.unit(3.9, "feet"),
  7653. weight: math.unit(250, "lb"),
  7654. name: "Feral",
  7655. image: {
  7656. source: "./media/characters/tene/feral.svg",
  7657. extra: 717/458 ,
  7658. bottom: 0.179
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(6, "feet")
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(300, "feet"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Megamacro",
  7674. height: math.unit(5, "miles")
  7675. },
  7676. ]
  7677. )
  7678. };
  7679. characterMakers["Evander"] = () => {
  7680. return makeCharacter(
  7681. "Evander",
  7682. "KlezmerGryphon",
  7683. {
  7684. side: {
  7685. height: math.unit(6, "feet"),
  7686. name: "Side",
  7687. image: {
  7688. source: "./media/characters/evander/side.svg",
  7689. extra: 877/477
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(0.83, "meters"),
  7697. default: true
  7698. },
  7699. ]
  7700. )
  7701. };
  7702. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7703. return makeCharacter(
  7704. "Ka'Tamra \"Spaz\" Ci'Karan",
  7705. "Spazman",
  7706. {
  7707. front: {
  7708. height: math.unit(12, "feet"),
  7709. weight: math.unit(1000, "lb"),
  7710. name: "Front",
  7711. image: {
  7712. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7713. extra: 1762/1611
  7714. }
  7715. },
  7716. back: {
  7717. height: math.unit(12, "feet"),
  7718. weight: math.unit(1000, "lb"),
  7719. name: "Back",
  7720. image: {
  7721. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7722. extra: 1762/1611
  7723. }
  7724. },
  7725. },
  7726. [
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(12, "feet"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Kaiju",
  7734. height: math.unit(150, "feet")
  7735. },
  7736. ]
  7737. )
  7738. };
  7739. characterMakers["Zero Alurus"] = () => {
  7740. return makeCharacter(
  7741. "Zero Alurus",
  7742. "",
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(150, "lb"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/zero-alurus/front.svg"
  7750. }
  7751. },
  7752. back: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(150, "lb"),
  7755. name: "Back",
  7756. image: {
  7757. source: "./media/characters/zero-alurus/back.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(5 + 10/12, "feet")
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(60, "feet"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Macro+",
  7773. height: math.unit(450, "feet")
  7774. },
  7775. ]
  7776. )
  7777. };
  7778. characterMakers["Mega Shi"] = () => {
  7779. return makeCharacter(
  7780. "Mega Shi",
  7781. "MShi8027",
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(200, "lb"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/mega-shi/front.svg",
  7789. extra: 1279/1250 ,
  7790. bottom: 0.02
  7791. }
  7792. },
  7793. back: {
  7794. height: math.unit(6, "feet"),
  7795. weight: math.unit(200, "lb"),
  7796. name: "Back",
  7797. image: {
  7798. source: "./media/characters/mega-shi/back.svg",
  7799. extra: 1279/1250 ,
  7800. bottom: 0.02
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Micro",
  7807. height: math.unit(16 + 6/12, "feet")
  7808. },
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(660, "feet"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(10, "miles")
  7817. },
  7818. {
  7819. name: "Planetary Launch",
  7820. height: math.unit(500, "miles")
  7821. },
  7822. {
  7823. name: "Interstellar",
  7824. height: math.unit(1e9, "miles")
  7825. },
  7826. {
  7827. name: "Leaving the Universe",
  7828. height: math.unit(1, "gigaparsec")
  7829. },
  7830. {
  7831. name: "Travelling Universes",
  7832. height: math.unit(30e15, "parsecs")
  7833. },
  7834. ]
  7835. )
  7836. };
  7837. characterMakers["Odyssey"] = () => {
  7838. return makeCharacter(
  7839. "Odyssey",
  7840. "Freschlauhs",
  7841. {
  7842. front: {
  7843. height: math.unit(6, "feet"),
  7844. weight: math.unit(150, "lb"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/odyssey/front.svg",
  7848. extra: 1782/1582 ,
  7849. bottom: 0.01
  7850. }
  7851. },
  7852. side: {
  7853. height: math.unit(5.6, "feet"),
  7854. weight: math.unit(140, "lb"),
  7855. name: "Side",
  7856. image: {
  7857. source: "./media/characters/odyssey/side.svg",
  7858. extra: 6462/5700
  7859. }
  7860. },
  7861. },
  7862. [
  7863. {
  7864. name: "Normal",
  7865. height: math.unit(5 + 4/12, "feet")
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(1, "km")
  7870. },
  7871. {
  7872. name: "Megamacro",
  7873. height: math.unit(3000, "km")
  7874. },
  7875. {
  7876. name: "Gigamacro",
  7877. height: math.unit(1, "AU"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Omniversal",
  7882. height: math.unit(100e14, "lightyears")
  7883. },
  7884. ]
  7885. )
  7886. };
  7887. characterMakers["Mekuto"] = () => {
  7888. return makeCharacter(
  7889. "Mekuto",
  7890. "Mekuto",
  7891. {
  7892. front: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(300, "lb"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/mekuto/front.svg",
  7898. extra: 921/832 ,
  7899. bottom: 0.03
  7900. }
  7901. },
  7902. hand: {
  7903. height: math.unit(6/10.24, "feet"),
  7904. name: "Hand",
  7905. image: {
  7906. source: "./media/characters/mekuto/hand.svg"
  7907. }
  7908. },
  7909. foot: {
  7910. height: math.unit(6/5.05, "feet"),
  7911. name: "Foot",
  7912. image: {
  7913. source: "./media/characters/mekuto/foot.svg"
  7914. }
  7915. },
  7916. },
  7917. [
  7918. {
  7919. name: "Minimicro",
  7920. height: math.unit(0.2, "inches")
  7921. },
  7922. {
  7923. name: "Micro",
  7924. height: math.unit(1.5, "inches")
  7925. },
  7926. {
  7927. name: "Normal",
  7928. height: math.unit(5 + 11/12, "feet"),
  7929. default: true
  7930. },
  7931. {
  7932. name: "Minimacro",
  7933. height: math.unit(17 + 9/12, "feet")
  7934. },
  7935. {
  7936. name: "Macro",
  7937. height: math.unit(177.5, "feet")
  7938. },
  7939. {
  7940. name: "Megamacro",
  7941. height: math.unit(152, "miles")
  7942. },
  7943. ]
  7944. )
  7945. };
  7946. characterMakers["Dafydd Tomos"] = () => {
  7947. return makeCharacter(
  7948. "Dafydd Tomos",
  7949. "SolarfoxArt",
  7950. {
  7951. front: {
  7952. height: math.unit(6.5, "inches"),
  7953. weight: math.unit(13, "oz"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/dafydd-tomos/front.svg",
  7957. extra: 2990/2603 ,
  7958. bottom: 0.03
  7959. }
  7960. },
  7961. },
  7962. [
  7963. {
  7964. name: "Micro",
  7965. height: math.unit(6.5, "inches"),
  7966. default: true
  7967. },
  7968. ]
  7969. )
  7970. };
  7971. characterMakers["Splinter"] = () => {
  7972. return makeCharacter(
  7973. "Splinter",
  7974. "SirSplinter",
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(150, "lb"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/splinter/front.svg",
  7982. extra: 2990/2882 ,
  7983. bottom: 0.04
  7984. }
  7985. },
  7986. back: {
  7987. height: math.unit(6, "feet"),
  7988. weight: math.unit(150, "lb"),
  7989. name: "Back",
  7990. image: {
  7991. source: "./media/characters/splinter/back.svg",
  7992. extra: 2990/2882 ,
  7993. bottom: 0.04
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(6, "feet")
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(230, "meters"),
  8005. default: true
  8006. },
  8007. ]
  8008. )
  8009. };
  8010. characterMakers["SnowGabumon"] = () => {
  8011. return makeCharacter(
  8012. "SnowGabumon",
  8013. "SnowGabumon",
  8014. {
  8015. front: {
  8016. height: math.unit(4 + 10/12, "feet"),
  8017. weight: math.unit(480, "lb"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/snow-gabumon/front.svg",
  8021. extra: 1140/963 ,
  8022. bottom: 0.058
  8023. }
  8024. },
  8025. back: {
  8026. height: math.unit(4 + 10/12, "feet"),
  8027. weight: math.unit(480, "lb"),
  8028. name: "Back",
  8029. image: {
  8030. source: "./media/characters/snow-gabumon/back.svg",
  8031. extra: 1115/962 ,
  8032. bottom: 0.041
  8033. }
  8034. },
  8035. frontUndresed: {
  8036. height: math.unit(4 + 10/12, "feet"),
  8037. weight: math.unit(480, "lb"),
  8038. name: "Front (Undressed)",
  8039. image: {
  8040. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8041. extra: 1061/960 ,
  8042. bottom: 0.045
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(1, "inch")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(4 + 10/12, "feet"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(200, "feet")
  8059. },
  8060. {
  8061. name: "Megamacro",
  8062. height: math.unit(120, "miles")
  8063. },
  8064. {
  8065. name: "Gigamacro",
  8066. height: math.unit(9800, "miles")
  8067. },
  8068. ]
  8069. )
  8070. };
  8071. characterMakers["Moody"] = () => {
  8072. return makeCharacter(
  8073. "Moody",
  8074. "MoodysterDog",
  8075. {
  8076. front: {
  8077. height: math.unit(1.7, "meters"),
  8078. weight: math.unit(140, "lb"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/moody/front.svg",
  8082. extra: 3226/3007 ,
  8083. bottom: 0.087
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Micro",
  8090. height: math.unit(1, "mm")
  8091. },
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(1.7, "meters"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(80, "meters")
  8100. },
  8101. {
  8102. name: "Macro+",
  8103. height: math.unit(500, "meters")
  8104. },
  8105. ]
  8106. )
  8107. };
  8108. characterMakers["Zyas"] = () => {
  8109. return makeCharacter(
  8110. "Zyas",
  8111. "Delathar",
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(150, "lb"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/zyas/front.svg",
  8119. extra: 1180/1120 ,
  8120. bottom: 0.045
  8121. }
  8122. },
  8123. },
  8124. [
  8125. {
  8126. name: "Normal",
  8127. height: math.unit(10, "feet"),
  8128. default: true
  8129. },
  8130. {
  8131. name: "Macro",
  8132. height: math.unit(500, "feet")
  8133. },
  8134. {
  8135. name: "Megamacro",
  8136. height: math.unit(5, "miles")
  8137. },
  8138. {
  8139. name: "Teramacro",
  8140. height: math.unit(150000, "miles")
  8141. },
  8142. ]
  8143. )
  8144. };
  8145. characterMakers["Cuon"] = () => {
  8146. return makeCharacter(
  8147. "Cuon",
  8148. "CollieCuon",
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(150, "lb"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/cuon/front.svg",
  8156. extra: 1390/1320 ,
  8157. bottom: 0.008
  8158. }
  8159. },
  8160. },
  8161. [
  8162. {
  8163. name: "Micro",
  8164. height: math.unit(3, "inches")
  8165. },
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(18 + 9/12, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(360, "feet")
  8174. },
  8175. {
  8176. name: "Megamacro",
  8177. height: math.unit(360, "miles")
  8178. },
  8179. ]
  8180. )
  8181. };
  8182. characterMakers["Nyanuxk"] = () => {
  8183. return makeCharacter(
  8184. "Nyanuxk",
  8185. "Nyanuxk",
  8186. {
  8187. front: {
  8188. height: math.unit(2.4, "meters"),
  8189. weight: math.unit(70, "kg"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/nyanuxk/front.svg",
  8193. extra: 1172/1084 ,
  8194. bottom: 0.065
  8195. }
  8196. },
  8197. side: {
  8198. height: math.unit(2.4, "meters"),
  8199. weight: math.unit(70, "kg"),
  8200. name: "Side",
  8201. image: {
  8202. source: "./media/characters/nyanuxk/side.svg",
  8203. extra: 1190/1132 ,
  8204. bottom: 0.007
  8205. }
  8206. },
  8207. back: {
  8208. height: math.unit(2.4, "meters"),
  8209. weight: math.unit(70, "kg"),
  8210. name: "Back",
  8211. image: {
  8212. source: "./media/characters/nyanuxk/back.svg",
  8213. extra: 1200/1141 ,
  8214. bottom: 0.015
  8215. }
  8216. },
  8217. foot: {
  8218. height: math.unit(0.52, "meters"),
  8219. name: "Foot",
  8220. image: {
  8221. source: "./media/characters/nyanuxk/foot.svg"
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Micro",
  8228. height: math.unit(2, "cm")
  8229. },
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(2.4, "meters"),
  8233. default: true
  8234. },
  8235. {
  8236. name: "Smaller Macro",
  8237. height: math.unit(120, "meters")
  8238. },
  8239. {
  8240. name: "Bigger Macro",
  8241. height: math.unit(1.2, "km")
  8242. },
  8243. {
  8244. name: "Megamacro",
  8245. height: math.unit(15, "kilometers")
  8246. },
  8247. {
  8248. name: "Gigamacro",
  8249. height: math.unit(2000, "km")
  8250. },
  8251. {
  8252. name: "Teramacro",
  8253. height: math.unit(500000, "km")
  8254. },
  8255. ]
  8256. )
  8257. };
  8258. characterMakers["Ailbhe"] = () => {
  8259. return makeCharacter(
  8260. "Ailbhe",
  8261. "KlezmerGryphon",
  8262. {
  8263. side: {
  8264. height: math.unit(6, "feet"),
  8265. name: "Side",
  8266. image: {
  8267. source: "./media/characters/ailbhe/side.svg",
  8268. extra: 757/464 ,
  8269. bottom: 0.041
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(1.07, "meters"),
  8277. default: true
  8278. },
  8279. ]
  8280. )
  8281. };
  8282. characterMakers["Zevulfius"] = () => {
  8283. return makeCharacter(
  8284. "Zevulfius",
  8285. "Nyanuxk",
  8286. {
  8287. front: {
  8288. height: math.unit(6, "feet"),
  8289. weight: math.unit(120, "kg"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/zevulfius/front.svg",
  8293. extra: 965/903
  8294. }
  8295. },
  8296. side: {
  8297. height: math.unit(6, "feet"),
  8298. weight: math.unit(120, "kg"),
  8299. name: "Side",
  8300. image: {
  8301. source: "./media/characters/zevulfius/side.svg",
  8302. extra: 939/900
  8303. }
  8304. },
  8305. back: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(120, "kg"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/zevulfius/back.svg",
  8311. extra: 918/854 ,
  8312. bottom: 0.005
  8313. }
  8314. },
  8315. foot: {
  8316. height: math.unit(6/3.72, "feet"),
  8317. name: "Foot",
  8318. image: {
  8319. source: "./media/characters/zevulfius/foot.svg"
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(750, "meters")
  8327. },
  8328. {
  8329. name: "Megamacro",
  8330. height: math.unit(20, "km"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Gigamacro",
  8335. height: math.unit(2000, "km")
  8336. },
  8337. {
  8338. name: "Teramacro",
  8339. height: math.unit(250000, "km")
  8340. },
  8341. ]
  8342. )
  8343. };
  8344. characterMakers["Rikes"] = () => {
  8345. return makeCharacter(
  8346. "Rikes",
  8347. "VeryLargeDog",
  8348. {
  8349. front: {
  8350. height: math.unit(100, "feet"),
  8351. weight: math.unit(350, "kg"),
  8352. name: "Front",
  8353. image: {
  8354. source: "./media/characters/rikes/front.svg",
  8355. extra: 1565/1483 ,
  8356. bottom: 0.017
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(100, "feet"),
  8364. default: true
  8365. },
  8366. ]
  8367. )
  8368. };
  8369. characterMakers["Adam Silver-Mane"] = () => {
  8370. return makeCharacter(
  8371. "Adam Silver-Mane",
  8372. "Dragonknightadam",
  8373. {
  8374. anthro: {
  8375. height: math.unit(8, "feet"),
  8376. weight: math.unit(120, "kg"),
  8377. name: "Anthro",
  8378. image: {
  8379. source: "./media/characters/adam-silver-mane/anthro.svg",
  8380. extra: 5743/5339 ,
  8381. bottom: 0.07
  8382. }
  8383. },
  8384. taur: {
  8385. height: math.unit(16, "feet"),
  8386. weight: math.unit(1500, "kg"),
  8387. name: "Taur",
  8388. image: {
  8389. source: "./media/characters/adam-silver-mane/taur.svg",
  8390. extra: 1713/1571 ,
  8391. bottom: 0.01
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(8, "feet")
  8399. },
  8400. {
  8401. name: "Minimacro",
  8402. height: math.unit(80, "feet")
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(800, "feet"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(8000, "feet")
  8412. },
  8413. {
  8414. name: "Gigamacro",
  8415. height: math.unit(800, "miles")
  8416. },
  8417. {
  8418. name: "Teramacro",
  8419. height: math.unit(80000, "miles")
  8420. },
  8421. {
  8422. name: "Celestial",
  8423. height: math.unit(8e6, "miles")
  8424. },
  8425. {
  8426. name: "Star Dragon",
  8427. height: math.unit(800000, "parsecs")
  8428. },
  8429. {
  8430. name: "Godly",
  8431. height: math.unit(800, "teraparsecs")
  8432. },
  8433. ]
  8434. )
  8435. };
  8436. characterMakers["Ky'owin"] = () => {
  8437. return makeCharacter(
  8438. "Ky'owin",
  8439. "Kyowin",
  8440. {
  8441. front: {
  8442. height: math.unit(6, "feet"),
  8443. weight: math.unit(150, "lb"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/ky'owin/front.svg",
  8447. extra: 3888/3068 ,
  8448. bottom: 0.015
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(6 + 8/12, "feet")
  8456. },
  8457. {
  8458. name: "Large",
  8459. height: math.unit(68, "feet")
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(132, "feet")
  8464. },
  8465. {
  8466. name: "Macro+",
  8467. height: math.unit(340, "feet")
  8468. },
  8469. {
  8470. name: "Macro++",
  8471. height: math.unit(680, "feet"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Megamacro",
  8476. height: math.unit(1, "mile")
  8477. },
  8478. {
  8479. name: "Megamacro+",
  8480. height: math.unit(10, "miles")
  8481. },
  8482. ]
  8483. )
  8484. };
  8485. characterMakers["Mal"] = () => {
  8486. return makeCharacter(
  8487. "Mal",
  8488. "agrosarmadillo",
  8489. {
  8490. front: {
  8491. height: math.unit(4, "feet"),
  8492. weight: math.unit(50, "lb"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/mal/front.svg",
  8496. extra: 785/724 ,
  8497. bottom: 0.07
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Micro",
  8504. height: math.unit(4, "inches")
  8505. },
  8506. {
  8507. name: "Normal",
  8508. height: math.unit(4, "feet"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(200, "feet")
  8514. },
  8515. ]
  8516. )
  8517. };
  8518. characterMakers["Jordan Deware"] = () => {
  8519. return makeCharacter(
  8520. "Jordan Deware",
  8521. "JordanDeware",
  8522. {
  8523. front: {
  8524. height: math.unit(6, "feet"),
  8525. weight: math.unit(150, "lb"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/jordan-deware/front.svg",
  8529. extra: 1191/1012
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Nano",
  8536. height: math.unit(0.01, "mm")
  8537. },
  8538. {
  8539. name: "Minimicro",
  8540. height: math.unit(1, "mm")
  8541. },
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(0.5, "inches")
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(4, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Minimacro",
  8553. height: math.unit(40, "meters")
  8554. },
  8555. {
  8556. name: "Small Macro",
  8557. height: math.unit(400, "meters")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(4, "miles")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(40, "miles")
  8566. },
  8567. {
  8568. name: "Megamacro+",
  8569. height: math.unit(400, "miles")
  8570. },
  8571. {
  8572. name: "Gigamacro",
  8573. height: math.unit(400000, "miles")
  8574. },
  8575. ]
  8576. )
  8577. };
  8578. characterMakers["Kimiko"] = () => {
  8579. return makeCharacter(
  8580. "Kimiko",
  8581. "HypoTheDerg",
  8582. {
  8583. side: {
  8584. height: math.unit(6, "feet"),
  8585. weight: math.unit(150, "lb"),
  8586. name: "Side",
  8587. image: {
  8588. source: "./media/characters/kimiko/side.svg",
  8589. extra: 600/358
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Normal",
  8596. height: math.unit(15, "feet"),
  8597. default: true
  8598. },
  8599. {
  8600. name: "Macro",
  8601. height: math.unit(220, "feet")
  8602. },
  8603. {
  8604. name: "Macro+",
  8605. height: math.unit(1450, "feet")
  8606. },
  8607. {
  8608. name: "Megamacro",
  8609. height: math.unit(11500, "feet")
  8610. },
  8611. {
  8612. name: "Gigamacro",
  8613. height: math.unit(9500, "miles")
  8614. },
  8615. {
  8616. name: "Teramacro",
  8617. height: math.unit(2208005005, "miles")
  8618. },
  8619. {
  8620. name: "Examacro",
  8621. height: math.unit(2750, "parsecs")
  8622. },
  8623. {
  8624. name: "Zettamacro",
  8625. height: math.unit(101500, "parsecs")
  8626. },
  8627. ]
  8628. )
  8629. };
  8630. characterMakers["Andrew Sleepy"] = () => {
  8631. return makeCharacter(
  8632. "Andrew Sleepy",
  8633. "Proky",
  8634. {
  8635. front: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(70, "kg"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/andrew-sleepy/front.svg"
  8641. }
  8642. },
  8643. side: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(70, "kg"),
  8646. name: "Side",
  8647. image: {
  8648. source: "./media/characters/andrew-sleepy/side.svg"
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Micro",
  8655. height: math.unit(1, "mm"),
  8656. default: true
  8657. },
  8658. ]
  8659. )
  8660. };
  8661. characterMakers["Judio"] = () => {
  8662. return makeCharacter(
  8663. "Judio",
  8664. "HypoTheDerg",
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(150, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/judio/front.svg",
  8672. extra: 1258/1110
  8673. }
  8674. },
  8675. },
  8676. [
  8677. {
  8678. name: "Normal",
  8679. height: math.unit(5 + 6/12, "feet")
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(1000, "feet"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Megamacro",
  8688. height: math.unit(10, "miles")
  8689. },
  8690. ]
  8691. )
  8692. };
  8693. characterMakers["Nomaxice"] = () => {
  8694. return makeCharacter(
  8695. "Nomaxice",
  8696. "Nomaxice",
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(68, "kg"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/nomaxice/front.svg",
  8704. extra: 1498/1073 ,
  8705. bottom: 0.075
  8706. }
  8707. },
  8708. foot: {
  8709. height: math.unit(1.1, "feet"),
  8710. name: "Foot",
  8711. image: {
  8712. source: "./media/characters/nomaxice/foot.svg"
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Micro",
  8719. height: math.unit(8, "cm")
  8720. },
  8721. {
  8722. name: "Norm",
  8723. height: math.unit(1.82, "m")
  8724. },
  8725. {
  8726. name: "Norm+",
  8727. height: math.unit(8.8, "feet")
  8728. },
  8729. {
  8730. name: "Big",
  8731. height: math.unit(8, "meters"),
  8732. default: true
  8733. },
  8734. {
  8735. name: "Macro",
  8736. height: math.unit(18, "meters")
  8737. },
  8738. {
  8739. name: "Macro+",
  8740. height: math.unit(88, "meters")
  8741. },
  8742. ]
  8743. )
  8744. };
  8745. characterMakers["Dydros"] = () => {
  8746. return makeCharacter(
  8747. "Dydros",
  8748. "DatCyberDragon",
  8749. {
  8750. front: {
  8751. height: math.unit(12, "feet"),
  8752. weight: math.unit(1.5, "tons"),
  8753. name: "Front",
  8754. image: {
  8755. source: "./media/characters/dydros/front.svg",
  8756. extra: 863/800 ,
  8757. bottom: 0.015
  8758. }
  8759. },
  8760. back: {
  8761. height: math.unit(12, "feet"),
  8762. weight: math.unit(1.5, "tons"),
  8763. name: "Back",
  8764. image: {
  8765. source: "./media/characters/dydros/back.svg",
  8766. extra: 900/843 ,
  8767. bottom: 0.005
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(12, "feet"),
  8775. default: true
  8776. },
  8777. ]
  8778. )
  8779. };
  8780. characterMakers["Riggi"] = () => {
  8781. return makeCharacter(
  8782. "Riggi",
  8783. "Fyre_ace",
  8784. {
  8785. front: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(100, "kg"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/riggi/front.svg",
  8791. extra: 5787/5303
  8792. }
  8793. },
  8794. hyper: {
  8795. height: math.unit(6*5/3, "feet"),
  8796. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8797. name: "Hyper",
  8798. image: {
  8799. source: "./media/characters/riggi/hyper.svg",
  8800. extra: 3595/3485
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Small Macro",
  8807. height: math.unit(50, "feet")
  8808. },
  8809. {
  8810. name: "Default",
  8811. height: math.unit(200, "feet"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Loom",
  8816. height: math.unit(10000, "feet")
  8817. },
  8818. {
  8819. name: "Cruising Altitude",
  8820. height: math.unit(30000, "feet")
  8821. },
  8822. {
  8823. name: "Megamacro",
  8824. height: math.unit(100, "miles")
  8825. },
  8826. {
  8827. name: "Continent Sized",
  8828. height: math.unit(2800, "miles")
  8829. },
  8830. {
  8831. name: "Earth Sized",
  8832. height: math.unit(8000, "miles")
  8833. },
  8834. ]
  8835. )
  8836. };
  8837. characterMakers["Alexi"] = () => {
  8838. return makeCharacter(
  8839. "Alexi",
  8840. "AlexiWerewolf",
  8841. {
  8842. front: {
  8843. height: math.unit(6, "feet"),
  8844. weight: math.unit(250, "lb"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/alexi/front.svg",
  8848. extra: 3483/3291 ,
  8849. bottom: 0.04
  8850. }
  8851. },
  8852. back: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(250, "lb"),
  8855. name: "Back",
  8856. image: {
  8857. source: "./media/characters/alexi/back.svg",
  8858. extra: 3533/3356 ,
  8859. bottom: 0.021
  8860. }
  8861. },
  8862. frontTransformed: {
  8863. height: math.unit(12.5, "feet"),
  8864. weight: math.unit(4000, "lb"),
  8865. name: "Front (Transformed)",
  8866. image: {
  8867. source: "./media/characters/alexi/front-transformed.svg",
  8868. extra: 5345/5100 ,
  8869. bottom: 0.03
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(3, "meters"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Minimacro",
  8881. height: math.unit(30, "meters")
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(500, "meters")
  8886. },
  8887. {
  8888. name: "Megamacro",
  8889. height: math.unit(9000, "km")
  8890. },
  8891. {
  8892. name: "Teramacro",
  8893. height: math.unit(384000, "km")
  8894. },
  8895. ]
  8896. )
  8897. };
  8898. characterMakers["Kayroo"] = () => {
  8899. return makeCharacter(
  8900. "Kayroo",
  8901. "Kayroo",
  8902. {
  8903. front: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(150, "lb"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/kayroo/front.svg",
  8909. extra: 1153/1038 ,
  8910. bottom: 0.06
  8911. }
  8912. },
  8913. foot: {
  8914. height: math.unit(6, "feet"),
  8915. weight: math.unit(150, "lb"),
  8916. name: "Foot",
  8917. image: {
  8918. source: "./media/characters/kayroo/foot.svg"
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(8, "feet"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Minimacro",
  8930. height: math.unit(250, "feet")
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(2800, "feet")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(5200, "feet")
  8939. },
  8940. {
  8941. name: "Gigamacro",
  8942. height: math.unit(27000, "feet")
  8943. },
  8944. {
  8945. name: "Omega",
  8946. height: math.unit(45000, "feet")
  8947. },
  8948. ]
  8949. )
  8950. };
  8951. characterMakers["Rhys"] = () => {
  8952. return makeCharacter(
  8953. "Rhys",
  8954. "BigMountainCat",
  8955. {
  8956. front: {
  8957. height: math.unit(18, "feet"),
  8958. weight: math.unit(5800, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/rhys/front.svg",
  8962. extra: 3386/3090 ,
  8963. bottom: 0.07
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(18, "feet"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Working Size",
  8975. height: math.unit(200, "feet")
  8976. },
  8977. {
  8978. name: "Demolition Size",
  8979. height: math.unit(2000, "feet")
  8980. },
  8981. {
  8982. name: "Maximum Licensed Size",
  8983. height: math.unit(5, "miles")
  8984. },
  8985. {
  8986. name: "Maximum Observed Size",
  8987. height: math.unit(10, "yottameters")
  8988. },
  8989. ]
  8990. )
  8991. };
  8992. characterMakers["Toto"] = () => {
  8993. return makeCharacter(
  8994. "Toto",
  8995. "Totoly_Toto",
  8996. {
  8997. front: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(250, "lb"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/toto/front.svg",
  9003. extra: 527 / 479,
  9004. bottom: 0.05
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(3, "feet")
  9012. },
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(10, "feet")
  9016. },
  9017. {
  9018. name: "Macro",
  9019. height: math.unit(150, "feet"),
  9020. default: true
  9021. },
  9022. {
  9023. name: "Megamacro",
  9024. height: math.unit(1200, "feet")
  9025. },
  9026. ]
  9027. )
  9028. };
  9029. characterMakers["King"] = () => {
  9030. return makeCharacter(
  9031. "King",
  9032. "KingSizedLion",
  9033. {
  9034. back: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(150, "lb"),
  9037. name: "Back",
  9038. image: {
  9039. source: "./media/characters/king/back.svg"
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Micro",
  9046. height: math.unit(2, "inches")
  9047. },
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(8, "feet")
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(200, "feet"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Megamacro",
  9059. height: math.unit(50, "miles")
  9060. },
  9061. ]
  9062. )
  9063. };
  9064. characterMakers["Cordite"] = () => {
  9065. return makeCharacter(
  9066. "Cordite",
  9067. "photonman2",
  9068. {
  9069. anthro: {
  9070. height: math.unit(6 + 5/12, "feet"),
  9071. weight: math.unit(280, "lb"),
  9072. name: "Anthro",
  9073. image: {
  9074. source: "./media/characters/cordite/anthro.svg",
  9075. extra: 1986/1905 ,
  9076. bottom: 0.025
  9077. }
  9078. },
  9079. feral: {
  9080. height: math.unit(2, "feet"),
  9081. weight: math.unit(90, "lb"),
  9082. name: "Feral",
  9083. image: {
  9084. source: "./media/characters/cordite/feral.svg",
  9085. extra: 1260/755 ,
  9086. bottom: 0.05
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Normal",
  9093. height: math.unit(6 + 5/12, "feet"),
  9094. default: true
  9095. },
  9096. ]
  9097. )
  9098. };
  9099. characterMakers["Pianostrong"] = () => {
  9100. return makeCharacter(
  9101. "Pianostrong",
  9102. "Pianostrong",
  9103. {
  9104. front: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(150, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/pianostrong/front.svg",
  9110. extra: 6577/6254 ,
  9111. bottom: 0.02
  9112. }
  9113. },
  9114. side: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(150, "lb"),
  9117. name: "Side",
  9118. image: {
  9119. source: "./media/characters/pianostrong/side.svg",
  9120. extra: 6106/5730
  9121. }
  9122. },
  9123. back: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(150, "lb"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/pianostrong/back.svg",
  9129. extra: 6085/5733 ,
  9130. bottom: 0.01
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(100, "feet")
  9138. },
  9139. {
  9140. name: "Macro+",
  9141. height: math.unit(300, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Macro++",
  9146. height: math.unit(1000, "feet")
  9147. },
  9148. ]
  9149. )
  9150. };
  9151. characterMakers["Kona"] = () => {
  9152. return makeCharacter(
  9153. "Kona",
  9154. "Konadh",
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(150, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/kona/front.svg",
  9162. extra: 2960/2629 ,
  9163. bottom: 0.005
  9164. }
  9165. },
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(11 + 8/12, "feet")
  9171. },
  9172. {
  9173. name: "Macro",
  9174. height: math.unit(850, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(1.5, "km"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(80, "miles")
  9185. },
  9186. {
  9187. name: "Gigamacro",
  9188. height: math.unit(3500, "miles")
  9189. },
  9190. ]
  9191. )
  9192. };
  9193. characterMakers["Levi"] = () => {
  9194. return makeCharacter(
  9195. "Levi",
  9196. "LeviCurrie",
  9197. {
  9198. side: {
  9199. height: math.unit(1.9, "meters"),
  9200. weight: math.unit(326, "kg"),
  9201. name: "Side",
  9202. image: {
  9203. source: "./media/characters/levi/side.svg",
  9204. extra: 1704/1334 ,
  9205. bottom: 0.02
  9206. }
  9207. },
  9208. },
  9209. [
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(1.9, "meters"),
  9213. default: true
  9214. },
  9215. {
  9216. name: "Macro",
  9217. height: math.unit(20, "meters")
  9218. },
  9219. {
  9220. name: "Macro+",
  9221. height: math.unit(200, "meters")
  9222. },
  9223. {
  9224. name: "Megamacro",
  9225. height: math.unit(2, "km")
  9226. },
  9227. {
  9228. name: "Megamacro+",
  9229. height: math.unit(20, "km")
  9230. },
  9231. {
  9232. name: "Gigamacro",
  9233. height: math.unit(2500, "km")
  9234. },
  9235. {
  9236. name: "Gigamacro+",
  9237. height: math.unit(120000, "km")
  9238. },
  9239. {
  9240. name: "Teramacro",
  9241. height: math.unit(7.77e6, "km")
  9242. },
  9243. ]
  9244. )
  9245. };
  9246. characterMakers["BMC"] = () => {
  9247. return makeCharacter(
  9248. "BMC",
  9249. "BigMountainCat",
  9250. {
  9251. front: {
  9252. height: math.unit(6 + 4/12, "feet"),
  9253. weight: math.unit(188, "lb"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/bmc/front.svg",
  9257. extra: 1067/1022 ,
  9258. bottom: 0.047
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Human-sized",
  9265. height: math.unit(6 + 4/12, "feet")
  9266. },
  9267. {
  9268. name: "Small",
  9269. height: math.unit(250, "feet")
  9270. },
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(1250, "feet"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Good Day",
  9278. height: math.unit(88, "miles")
  9279. },
  9280. {
  9281. name: "Largest Measured Size",
  9282. height: math.unit(11.2e6, "lightyears")
  9283. },
  9284. ]
  9285. )
  9286. };
  9287. characterMakers["Sven the Kaiju"] = () => {
  9288. return makeCharacter(
  9289. "Sven the Kaiju",
  9290. "OfActionMan",
  9291. {
  9292. front: {
  9293. height: math.unit(20, "feet"),
  9294. weight: math.unit(2016, "kg"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/sven-the-kaiju/front.svg",
  9298. extra: 1479/1449 ,
  9299. bottom: 0.05
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Fairy",
  9306. height: math.unit(6, "inches")
  9307. },
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(20, "feet"),
  9311. default: true
  9312. },
  9313. {
  9314. name: "Rampage",
  9315. height: math.unit(200, "feet")
  9316. },
  9317. {
  9318. name: "Archfey Forest Guardian",
  9319. height: math.unit(1, "mile")
  9320. },
  9321. ]
  9322. )
  9323. };
  9324. characterMakers["Marik"] = () => {
  9325. return makeCharacter(
  9326. "Marik",
  9327. "Acrarun",
  9328. {
  9329. front: {
  9330. height: math.unit(4, "meters"),
  9331. weight: math.unit(2, "tons"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/marik/front.svg",
  9335. extra: 1057/1003 ,
  9336. bottom: 0.08
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(4, "meters"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(20, "meters")
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(50, "km")
  9353. },
  9354. {
  9355. name: "Gigamacro",
  9356. height: math.unit(100, "km")
  9357. },
  9358. {
  9359. name: "Alpha Macro",
  9360. height: math.unit(7.88e7, "yottameters")
  9361. },
  9362. ]
  9363. )
  9364. };
  9365. characterMakers["Mel"] = () => {
  9366. return makeCharacter(
  9367. "Mel",
  9368. "SomedayNotSoon",
  9369. {
  9370. front: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(110, "lb"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/mel/front.svg",
  9376. extra: 736/617 ,
  9377. bottom: 0.017
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Pico",
  9384. height: math.unit(3, "pm")
  9385. },
  9386. {
  9387. name: "Nano",
  9388. height: math.unit(3, "nm")
  9389. },
  9390. {
  9391. name: "Micro",
  9392. height: math.unit(0.3, "mm"),
  9393. default: true
  9394. },
  9395. {
  9396. name: "Micro+",
  9397. height: math.unit(3, "mm")
  9398. },
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(5 + 10.5/12, "feet")
  9402. },
  9403. ]
  9404. )
  9405. };
  9406. characterMakers["Lykonous"] = () => {
  9407. return makeCharacter(
  9408. "Lykonous",
  9409. "Lykonous",
  9410. {
  9411. kaiju: {
  9412. height: math.unit(1.75, "meters"),
  9413. weight: math.unit(55, "kg"),
  9414. name: "Kaiju",
  9415. image: {
  9416. source: "./media/characters/lykonous/kaiju.svg",
  9417. extra: 1055/946 ,
  9418. bottom: 0.135
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(2.5, "meters"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Kaiju Dragon",
  9430. height: math.unit(60, "meters")
  9431. },
  9432. {
  9433. name: "Mega Kaiju",
  9434. height: math.unit(120, "km")
  9435. },
  9436. {
  9437. name: "Giga Kaiju",
  9438. height: math.unit(200, "megameters")
  9439. },
  9440. {
  9441. name: "Terra Kaiju",
  9442. height: math.unit(400, "gigameters")
  9443. },
  9444. {
  9445. name: "Kaiju Dragon God",
  9446. height: math.unit(13000, "exaparsecs")
  9447. },
  9448. ]
  9449. )
  9450. };
  9451. characterMakers["Blü"] = () => {
  9452. return makeCharacter(
  9453. "Blü",
  9454. "BluTheFagon",
  9455. {
  9456. front: {
  9457. height: math.unit(6, "feet"),
  9458. weight: math.unit(150, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/blü/front.svg",
  9462. extra: 1883/1564 ,
  9463. bottom: 0.031
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(13, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Big Boi",
  9475. height: math.unit(150, "meters")
  9476. },
  9477. {
  9478. name: "Mini Stomper",
  9479. height: math.unit(300, "meters")
  9480. },
  9481. {
  9482. name: "Macro",
  9483. height: math.unit(1000, "meters")
  9484. },
  9485. {
  9486. name: "Megamacro",
  9487. height: math.unit(11000, "meters")
  9488. },
  9489. {
  9490. name: "Gigamacro",
  9491. height: math.unit(11000, "km")
  9492. },
  9493. {
  9494. name: "Teramacro",
  9495. height: math.unit(420000, "km")
  9496. },
  9497. {
  9498. name: "Examacro",
  9499. height: math.unit(120, "parsecs")
  9500. },
  9501. {
  9502. name: "God Tho",
  9503. height: math.unit(98000000000, "parsecs")
  9504. },
  9505. ]
  9506. )
  9507. };
  9508. characterMakers["Scales"] = () => {
  9509. return makeCharacter(
  9510. "Scales",
  9511. "Scales",
  9512. {
  9513. taurFront: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(200, "lb"),
  9516. name: "Taur (Front)",
  9517. image: {
  9518. source: "./media/characters/scales/taur-front.svg",
  9519. extra: 1,
  9520. bottom: 0.05
  9521. }
  9522. },
  9523. taurBack: {
  9524. height: math.unit(6, "feet"),
  9525. weight: math.unit(200, "lb"),
  9526. name: "Taur (Back)",
  9527. image: {
  9528. source: "./media/characters/scales/taur-back.svg",
  9529. extra: 1,
  9530. bottom: 0.08
  9531. }
  9532. },
  9533. anthro: {
  9534. height: math.unit(6*7/12, "feet"),
  9535. weight: math.unit(100, "lb"),
  9536. name: "Anthro",
  9537. image: {
  9538. source: "./media/characters/scales/anthro.svg",
  9539. extra: 1,
  9540. bottom: 0.06
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(12, "feet"),
  9548. default: true
  9549. },
  9550. ]
  9551. )
  9552. };
  9553. characterMakers["Koragos"] = () => {
  9554. return makeCharacter(
  9555. "Koragos",
  9556. "Koragos",
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(150, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/koragos/front.svg",
  9564. extra: 841/794 ,
  9565. bottom: 0.035
  9566. }
  9567. },
  9568. back: {
  9569. height: math.unit(6, "feet"),
  9570. weight: math.unit(150, "lb"),
  9571. name: "Back",
  9572. image: {
  9573. source: "./media/characters/koragos/back.svg",
  9574. extra: 841/810 ,
  9575. bottom: 0.022
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(6 + 11/12, "feet"),
  9583. default: true
  9584. },
  9585. {
  9586. name: "Macro",
  9587. height: math.unit(490, "feet")
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(10, "miles")
  9592. },
  9593. {
  9594. name: "Gigamacro",
  9595. height: math.unit(50, "miles")
  9596. },
  9597. ]
  9598. )
  9599. };
  9600. characterMakers["Xylrem"] = () => {
  9601. return makeCharacter(
  9602. "Xylrem",
  9603. "",
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(250, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/xylrem/front.svg",
  9611. extra: 3323/3050 ,
  9612. bottom: 0.065
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(4, "feet")
  9620. },
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(16, "feet"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(2720, "feet")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(25000, "miles")
  9633. },
  9634. ]
  9635. )
  9636. };
  9637. characterMakers["Ikideru"] = () => {
  9638. return makeCharacter(
  9639. "Ikideru",
  9640. "Ikideru",
  9641. {
  9642. front: {
  9643. height: math.unit(8, "feet"),
  9644. weight: math.unit(250, "kg"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/ikideru/front.svg",
  9648. extra: 930/870 ,
  9649. bottom: 0.087
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(8, "feet"),
  9654. weight: math.unit(250, "kg"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/ikideru/back.svg",
  9658. extra: 919/852 ,
  9659. bottom: 0.055
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Rare",
  9666. height: math.unit(8, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Playful Loom",
  9671. height: math.unit(80, "feet")
  9672. },
  9673. {
  9674. name: "City Leaner",
  9675. height: math.unit(230, "feet")
  9676. },
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(2500, "feet")
  9680. },
  9681. {
  9682. name: "Gigamacro",
  9683. height: math.unit(26400, "feet")
  9684. },
  9685. {
  9686. name: "Tectonic Shifter",
  9687. height: math.unit(1.7, "megameters")
  9688. },
  9689. {
  9690. name: "Planet Carer",
  9691. height: math.unit(21, "megameters")
  9692. },
  9693. {
  9694. name: "God",
  9695. height: math.unit(11157.22, "parsecs")
  9696. },
  9697. ]
  9698. )
  9699. };
  9700. characterMakers["Neo"] = () => {
  9701. return makeCharacter(
  9702. "Neo",
  9703. "neonsnake",
  9704. {
  9705. front: {
  9706. height: math.unit(6, "feet"),
  9707. weight: math.unit(120, "lb"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/neo/front.svg"
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Micro",
  9717. height: math.unit(2, "inches"),
  9718. default: true
  9719. },
  9720. {
  9721. name: "Human Size",
  9722. height: math.unit(5 + 8/12, "feet")
  9723. },
  9724. ]
  9725. )
  9726. };
  9727. characterMakers["Chauncey (Chantz)"] = () => {
  9728. return makeCharacter(
  9729. "Chauncey (Chantz)",
  9730. "RyGaLo",
  9731. {
  9732. front: {
  9733. height: math.unit(13 + 10/12, "feet"),
  9734. weight: math.unit(5320, "lb"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/chauncey-chantz/front.svg",
  9738. extra: 1587/1435 ,
  9739. bottom: 0.02
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(13 + 10/12, "feet"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Macro",
  9751. height: math.unit(45, "feet")
  9752. },
  9753. {
  9754. name: "Megamacro",
  9755. height: math.unit(250, "miles")
  9756. },
  9757. {
  9758. name: "Planetary",
  9759. height: math.unit(10000, "miles")
  9760. },
  9761. {
  9762. name: "Galactic",
  9763. height: math.unit(40000, "parsecs")
  9764. },
  9765. {
  9766. name: "Universal",
  9767. height: math.unit(1, "yottameter")
  9768. },
  9769. ]
  9770. )
  9771. };
  9772. characterMakers["Epifox"] = () => {
  9773. return makeCharacter(
  9774. "Epifox",
  9775. "Epifox",
  9776. {
  9777. front: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(150, "lb"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/epifox/front.svg",
  9783. extra: 1,
  9784. bottom: 0.075
  9785. }
  9786. },
  9787. },
  9788. [
  9789. {
  9790. name: "Micro",
  9791. height: math.unit(6, "inches")
  9792. },
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(12, "feet"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(3810, "feet")
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(500, "miles")
  9805. },
  9806. ]
  9807. )
  9808. };
  9809. characterMakers["Colin T."] = () => {
  9810. return makeCharacter(
  9811. "Colin T.",
  9812. "DragonLugia58",
  9813. {
  9814. front: {
  9815. height: math.unit(1.8796, "m"),
  9816. weight: math.unit(230, "lb"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/colin-t/front.svg",
  9820. extra: 1272/1193 ,
  9821. bottom: 0.07
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Micro",
  9828. height: math.unit(0.571, "meters")
  9829. },
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(1.8796, "meters"),
  9833. default: true
  9834. },
  9835. {
  9836. name: "Tall",
  9837. height: math.unit(4, "meters")
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(67.241, "meters")
  9842. },
  9843. {
  9844. name: "Megamacro",
  9845. height: math.unit(371.856, "meters")
  9846. },
  9847. {
  9848. name: "Planetary",
  9849. height: math.unit(12631.5689, "km")
  9850. },
  9851. ]
  9852. )
  9853. };
  9854. characterMakers["Matvei"] = () => {
  9855. return makeCharacter(
  9856. "Matvei",
  9857. "Matt_Da_Master",
  9858. {
  9859. front: {
  9860. height: math.unit(1.85, "meters"),
  9861. weight: math.unit(80, "kg"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/matvei/front.svg",
  9865. extra: 614/594 ,
  9866. bottom: 0.01
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(1.85, "meters"),
  9874. default: true
  9875. },
  9876. ]
  9877. )
  9878. };
  9879. characterMakers["Quincy"] = () => {
  9880. return makeCharacter(
  9881. "Quincy",
  9882. "Paradisaea",
  9883. {
  9884. front: {
  9885. height: math.unit(5 + 9/12, "feet"),
  9886. weight: math.unit(70, "lb"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/quincy/front.svg",
  9890. extra: 3041/2751
  9891. }
  9892. },
  9893. back: {
  9894. height: math.unit(5 + 9/12, "feet"),
  9895. weight: math.unit(70, "lb"),
  9896. name: "Back",
  9897. image: {
  9898. source: "./media/characters/quincy/back.svg",
  9899. extra: 3041/2751
  9900. }
  9901. },
  9902. flying: {
  9903. height: math.unit(5 + 4/12, "feet"),
  9904. weight: math.unit(70, "lb"),
  9905. name: "Flying",
  9906. image: {
  9907. source: "./media/characters/quincy/flying.svg",
  9908. extra: 1044/930
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Micro",
  9915. height: math.unit(3, "cm")
  9916. },
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(5 + 9/12, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(200, "meters"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(1000, "meters")
  9929. },
  9930. ]
  9931. )
  9932. };
  9933. characterMakers["Vanrel"] = () => {
  9934. return makeCharacter(
  9935. "Vanrel",
  9936. "KuiPaws",
  9937. {
  9938. front: {
  9939. height: math.unit(4 + 7/12, "feet"),
  9940. weight: math.unit(150, "lb"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/vanrel/front.svg",
  9944. extra: 1,
  9945. bottom: 0.02
  9946. }
  9947. },
  9948. side: {
  9949. height: math.unit(4 + 7/12, "feet"),
  9950. weight: math.unit(150, "lb"),
  9951. name: "Side",
  9952. image: {
  9953. source: "./media/characters/vanrel/side.svg",
  9954. extra: 1,
  9955. bottom: 0.025
  9956. }
  9957. },
  9958. tome: {
  9959. height: math.unit(1.35, "feet"),
  9960. weight: math.unit(10, "lb"),
  9961. name: "Vanrel's Tome",
  9962. rename: true,
  9963. image: {
  9964. source: "./media/characters/vanrel/tome.svg"
  9965. }
  9966. },
  9967. beans: {
  9968. height: math.unit(0.89, "feet"),
  9969. name: "Beans",
  9970. image: {
  9971. source: "./media/characters/vanrel/beans.svg"
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(4 + 7/12, "feet"),
  9979. default: true
  9980. },
  9981. ]
  9982. )
  9983. };
  9984. characterMakers["Kuiper Vanrel"] = () => {
  9985. return makeCharacter(
  9986. "Kuiper Vanrel",
  9987. "KuiPaws",
  9988. {
  9989. front: {
  9990. height: math.unit(7 + 5/12, "feet"),
  9991. weight: math.unit(150, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/kuiper-vanrel/front.svg",
  9995. extra: 1118/1068 ,
  9996. bottom: 0.09
  9997. }
  9998. },
  9999. foot: {
  10000. height: math.unit(0.55, "meters"),
  10001. name: "Foot",
  10002. image: {
  10003. source: "./media/characters/kuiper-vanrel/foot.svg",
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(7 + 5/12, "feet"),
  10011. default: true
  10012. },
  10013. ]
  10014. )
  10015. };
  10016. characterMakers["Keset Vanrel"] = () => {
  10017. return makeCharacter(
  10018. "Keset Vanrel",
  10019. "KuiPaws",
  10020. {
  10021. front: {
  10022. height: math.unit(8 + 5/12, "feet"),
  10023. weight: math.unit(150, "lb"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/keset-vanrel/front.svg",
  10027. extra: 1150/1084 ,
  10028. bottom: 0.05
  10029. }
  10030. },
  10031. hand: {
  10032. height: math.unit(0.6, "meters"),
  10033. name: "Hand",
  10034. image: {
  10035. source: "./media/characters/keset-vanrel/hand.svg"
  10036. }
  10037. },
  10038. foot: {
  10039. height: math.unit(0.94978, "meters"),
  10040. name: "Foot",
  10041. image: {
  10042. source: "./media/characters/keset-vanrel/foot.svg"
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Normal",
  10049. height: math.unit(8 + 5/12, "feet"),
  10050. default: true
  10051. },
  10052. ]
  10053. )
  10054. };
  10055. characterMakers["Neos"] = () => {
  10056. return makeCharacter(
  10057. "Neos",
  10058. "CakeyCake",
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(150, "lb"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/neos/front.svg",
  10066. extra: 1696/992 ,
  10067. bottom: 0.14
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(54, "cm"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(100, "m")
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(10, "km")
  10084. },
  10085. {
  10086. name: "Megamacro+",
  10087. height: math.unit(100, "km")
  10088. },
  10089. {
  10090. name: "Gigamacro",
  10091. height: math.unit(100, "Mm")
  10092. },
  10093. {
  10094. name: "Teramacro",
  10095. height: math.unit(100, "Gm")
  10096. },
  10097. {
  10098. name: "Examacro",
  10099. height: math.unit(100, "Em")
  10100. },
  10101. {
  10102. name: "Godly",
  10103. height: math.unit(10000, "Ym")
  10104. },
  10105. {
  10106. name: "Beyond Godly",
  10107. height: math.unit(10000000, "Ym")
  10108. },
  10109. ]
  10110. )
  10111. };
  10112. characterMakers["Sammy Mouse"] = () => {
  10113. return makeCharacter(
  10114. "Sammy Mouse",
  10115. "Piedunk",
  10116. {
  10117. feminine: {
  10118. height: math.unit(5, "feet"),
  10119. weight: math.unit(100, "lb"),
  10120. name: "Feminine",
  10121. image: {
  10122. source: "./media/characters/sammy-mouse/feminine.svg",
  10123. extra: 2526/2425 ,
  10124. bottom: 0.123
  10125. }
  10126. },
  10127. masculine: {
  10128. height: math.unit(5, "feet"),
  10129. weight: math.unit(100, "lb"),
  10130. name: "Masculine",
  10131. image: {
  10132. source: "./media/characters/sammy-mouse/masculine.svg",
  10133. extra: 2526/2425 ,
  10134. bottom: 0.123
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(5, "inches")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(5, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Macro",
  10150. height: math.unit(60, "feet")
  10151. },
  10152. ]
  10153. )
  10154. };
  10155. characterMakers["Kole"] = () => {
  10156. return makeCharacter(
  10157. "Kole",
  10158. "Cats_55",
  10159. {
  10160. front: {
  10161. height: math.unit(4, "feet"),
  10162. weight: math.unit(50, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/kole/front.svg",
  10166. extra: 1423/1303 ,
  10167. bottom: 0.025
  10168. }
  10169. },
  10170. back: {
  10171. height: math.unit(4, "feet"),
  10172. weight: math.unit(50, "lb"),
  10173. name: "Back",
  10174. image: {
  10175. source: "./media/characters/kole/back.svg",
  10176. extra: 1426/1280 ,
  10177. bottom: 0.02
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(4, "feet"),
  10185. default: true
  10186. },
  10187. ]
  10188. )
  10189. };
  10190. characterMakers["Rufran"] = () => {
  10191. return makeCharacter(
  10192. "Rufran",
  10193. "Rufran",
  10194. {
  10195. front: {
  10196. height: math.unit(2 + 6/12, "feet"),
  10197. weight: math.unit(20, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/rufran/front.svg",
  10201. extra: 2041/1839 ,
  10202. bottom: 0.055
  10203. }
  10204. },
  10205. back: {
  10206. height: math.unit(2 + 6/12, "feet"),
  10207. weight: math.unit(20, "lb"),
  10208. name: "Back",
  10209. image: {
  10210. source: "./media/characters/rufran/back.svg",
  10211. extra: 2054/1839 ,
  10212. bottom: 0.01
  10213. }
  10214. },
  10215. hand: {
  10216. height: math.unit(0.2166, "meters"),
  10217. name: "Hand",
  10218. image: {
  10219. source: "./media/characters/rufran/hand.svg"
  10220. }
  10221. },
  10222. foot: {
  10223. height: math.unit(0.185, "meters"),
  10224. name: "Foot",
  10225. image: {
  10226. source: "./media/characters/rufran/foot.svg"
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Micro",
  10233. height: math.unit(1, "inch")
  10234. },
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(2 + 6/12, "feet"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Big",
  10242. height: math.unit(60, "feet")
  10243. },
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(325, "feet")
  10247. },
  10248. ]
  10249. )
  10250. };
  10251. characterMakers["Chip"] = () => {
  10252. return makeCharacter(
  10253. "Chip",
  10254. "Chiptuni",
  10255. {
  10256. front: {
  10257. height: math.unit(0.3, "meters"),
  10258. weight: math.unit(3.5, "kg"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/chip/front.svg",
  10262. extra: 748/674
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Micro",
  10269. height: math.unit(1, "inch"),
  10270. default: true
  10271. },
  10272. ]
  10273. )
  10274. };
  10275. characterMakers["Torvid"] = () => {
  10276. return makeCharacter(
  10277. "Torvid",
  10278. "Torvid",
  10279. {
  10280. side: {
  10281. height: math.unit(2.3, "meters"),
  10282. weight: math.unit(3500, "lb"),
  10283. name: "Side",
  10284. image: {
  10285. source: "./media/characters/torvid/side.svg",
  10286. extra: 1972/722 ,
  10287. bottom: 0.035
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(2.3, "meters"),
  10295. default: true
  10296. },
  10297. ]
  10298. )
  10299. };
  10300. characterMakers["Susan"] = () => {
  10301. return makeCharacter(
  10302. "Susan",
  10303. "Jasmith",
  10304. {
  10305. front: {
  10306. height: math.unit(2, "meters"),
  10307. weight: math.unit(150.5, "kg"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/susan/front.svg",
  10311. extra: 693/635 ,
  10312. bottom: 0.05
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Megamacro",
  10319. height: math.unit(505, "miles"),
  10320. default: true
  10321. },
  10322. ]
  10323. )
  10324. };
  10325. characterMakers["Raindrops"] = () => {
  10326. return makeCharacter(
  10327. "Raindrops",
  10328. "RaindropsJFL",
  10329. {
  10330. front: {
  10331. height: math.unit(6, "feet"),
  10332. weight: math.unit(150, "lb"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/raindrops/front.svg",
  10336. extra: 2655/2461 ,
  10337. bottom: 0.02
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(150, "lb"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/raindrops/back.svg",
  10346. extra: 2574/2400 ,
  10347. bottom: 0.03
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Micro",
  10354. height: math.unit(6, "inches")
  10355. },
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(6 + 2/12, "feet")
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(131, "feet"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Megamacro",
  10367. height: math.unit(15, "miles")
  10368. },
  10369. {
  10370. name: "Gigamacro",
  10371. height: math.unit(4000, "miles")
  10372. },
  10373. {
  10374. name: "Teramacro",
  10375. height: math.unit(315000, "miles")
  10376. },
  10377. ]
  10378. )
  10379. };
  10380. characterMakers["Tezwa"] = () => {
  10381. return makeCharacter(
  10382. "Tezwa",
  10383. "TitanTezwa",
  10384. {
  10385. front: {
  10386. height: math.unit(2.794, "meters"),
  10387. weight: math.unit(325, "kg"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/tezwa/front.svg",
  10391. extra: 2083/1906 ,
  10392. bottom: 0.031
  10393. }
  10394. },
  10395. foot: {
  10396. height: math.unit(0.687, "meters"),
  10397. name: "Foot",
  10398. image: {
  10399. source: "./media/characters/tezwa/foot.svg"
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(9 + 2/12, "feet"),
  10407. default: true
  10408. },
  10409. ]
  10410. )
  10411. };
  10412. characterMakers["Typhus"] = () => {
  10413. return makeCharacter(
  10414. "Typhus",
  10415. "Jasmith",
  10416. {
  10417. front: {
  10418. height: math.unit(58, "feet"),
  10419. weight: math.unit(89000, "lb"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/typhus/front.svg",
  10423. extra: 816/800 ,
  10424. bottom: 0.065
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(58, "feet"),
  10432. default: true
  10433. },
  10434. ]
  10435. )
  10436. };
  10437. characterMakers["Lyra Von Wulf"] = () => {
  10438. return makeCharacter(
  10439. "Lyra Von Wulf",
  10440. "LyraVonWulf",
  10441. {
  10442. front: {
  10443. height: math.unit(12, "feet"),
  10444. weight: math.unit(6, "tonnes"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/lyra-von-wulf/front.svg",
  10448. extra: 1,
  10449. bottom: 0.10
  10450. }
  10451. },
  10452. frontMecha: {
  10453. height: math.unit(12, "feet"),
  10454. weight: math.unit(12, "tonnes"),
  10455. name: "Front (Mecha)",
  10456. image: {
  10457. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10458. extra: 1,
  10459. bottom: 0.042
  10460. }
  10461. },
  10462. maw: {
  10463. height: math.unit(2.2, "feet"),
  10464. name: "Maw",
  10465. image: {
  10466. source: "./media/characters/lyra-von-wulf/maw.svg"
  10467. }
  10468. },
  10469. },
  10470. [
  10471. {
  10472. name: "Normal",
  10473. height: math.unit(12, "feet"),
  10474. default: true
  10475. },
  10476. {
  10477. name: "Classic",
  10478. height: math.unit(50, "feet")
  10479. },
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(500, "feet")
  10483. },
  10484. {
  10485. name: "Megamacro",
  10486. height: math.unit(1, "mile")
  10487. },
  10488. {
  10489. name: "Gigamacro",
  10490. height: math.unit(400, "miles")
  10491. },
  10492. {
  10493. name: "Teramacro",
  10494. height: math.unit(22000, "miles")
  10495. },
  10496. {
  10497. name: "Solarmacro",
  10498. height: math.unit(8600000, "miles")
  10499. },
  10500. {
  10501. name: "Galactic",
  10502. height: math.unit(1057000, "lightyears")
  10503. },
  10504. ]
  10505. )
  10506. };
  10507. characterMakers["Dixon"] = () => {
  10508. return makeCharacter(
  10509. "Dixon",
  10510. "Seabury",
  10511. {
  10512. front: {
  10513. height: math.unit(6 + 10/12, "feet"),
  10514. weight: math.unit(150, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/dixon/front.svg",
  10518. extra: 3361/3209 ,
  10519. bottom: 0.01
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(6 + 10/12, "feet"),
  10527. default: true
  10528. },
  10529. {
  10530. name: "Big",
  10531. height: math.unit(12, "meters")
  10532. },
  10533. {
  10534. name: "Macro",
  10535. height: math.unit(500, "meters")
  10536. },
  10537. {
  10538. name: "Megamacro",
  10539. height: math.unit(2, "km")
  10540. },
  10541. ]
  10542. )
  10543. };
  10544. characterMakers["Kauko"] = () => {
  10545. return makeCharacter(
  10546. "Kauko",
  10547. "Kauko",
  10548. {
  10549. front: {
  10550. height: math.unit(185, "cm"),
  10551. weight: math.unit(68, "kg"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/kauko/front.svg",
  10555. extra: 1455/1421 ,
  10556. bottom: 0.03
  10557. }
  10558. },
  10559. back: {
  10560. height: math.unit(185, "cm"),
  10561. weight: math.unit(68, "kg"),
  10562. name: "Back",
  10563. image: {
  10564. source: "./media/characters/kauko/back.svg",
  10565. extra: 1455/1421 ,
  10566. bottom: 0.004
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(185, "cm"),
  10574. default: true
  10575. },
  10576. ]
  10577. )
  10578. };
  10579. characterMakers["Varg"] = () => {
  10580. return makeCharacter(
  10581. "Varg",
  10582. "va0027",
  10583. {
  10584. front: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(150, "kg"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/varg/front.svg",
  10590. extra: 1108/1018 ,
  10591. bottom: 0.0375
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(5, "meters")
  10599. },
  10600. {
  10601. name: "Gigamacro",
  10602. height: math.unit(211, "km"),
  10603. default: true
  10604. },
  10605. ]
  10606. )
  10607. };
  10608. characterMakers["Dayza"] = () => {
  10609. return makeCharacter(
  10610. "Dayza",
  10611. "Vonadi",
  10612. {
  10613. front: {
  10614. height: math.unit(7 + 7/12, "feet"),
  10615. weight: math.unit(267, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/dayza/front.svg",
  10619. extra: 1262/1200 ,
  10620. bottom: 0.035
  10621. }
  10622. },
  10623. side: {
  10624. height: math.unit(7 + 7/12, "feet"),
  10625. weight: math.unit(267, "lb"),
  10626. name: "Side",
  10627. image: {
  10628. source: "./media/characters/dayza/side.svg",
  10629. extra: 1295/1245 ,
  10630. bottom: 0.05
  10631. }
  10632. },
  10633. back: {
  10634. height: math.unit(7 + 7/12, "feet"),
  10635. weight: math.unit(267, "lb"),
  10636. name: "Back",
  10637. image: {
  10638. source: "./media/characters/dayza/back.svg",
  10639. extra: 1241/1170
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(7 + 7/12, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(155, "feet")
  10652. },
  10653. ]
  10654. )
  10655. };
  10656. characterMakers["Xanthos"] = () => {
  10657. return makeCharacter(
  10658. "Xanthos",
  10659. "ArgentVZ",
  10660. {
  10661. front: {
  10662. height: math.unit(6 + 5/12, "feet"),
  10663. weight: math.unit(160, "lb"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/xanthos/front.svg",
  10667. extra: 1,
  10668. bottom: 0.04
  10669. }
  10670. },
  10671. back: {
  10672. height: math.unit(6 + 5/12, "feet"),
  10673. weight: math.unit(160, "lb"),
  10674. name: "Back",
  10675. image: {
  10676. source: "./media/characters/xanthos/back.svg",
  10677. extra: 1,
  10678. bottom: 0.03
  10679. }
  10680. },
  10681. hand: {
  10682. height: math.unit(0.928, "feet"),
  10683. name: "Hand",
  10684. image: {
  10685. source: "./media/characters/xanthos/hand.svg"
  10686. }
  10687. },
  10688. foot: {
  10689. height: math.unit(1.286, "feet"),
  10690. name: "Foot",
  10691. image: {
  10692. source: "./media/characters/xanthos/foot.svg"
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(6 + 5/12, "feet"),
  10700. default: true
  10701. },
  10702. {
  10703. name: "Normal+",
  10704. height: math.unit(6, "meters")
  10705. },
  10706. {
  10707. name: "Macro",
  10708. height: math.unit(40, "feet")
  10709. },
  10710. {
  10711. name: "Macro+",
  10712. height: math.unit(200, "meters")
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(20, "km")
  10717. },
  10718. {
  10719. name: "Megamacro+",
  10720. height: math.unit(100, "km")
  10721. },
  10722. ]
  10723. )
  10724. };
  10725. characterMakers["Grynn"] = () => {
  10726. return makeCharacter(
  10727. "Grynn",
  10728. "Grynn",
  10729. {
  10730. front: {
  10731. height: math.unit(6 + 3/12, "feet"),
  10732. weight: math.unit(215, "lb"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/grynn/front.svg",
  10736. extra: 4627/4209 ,
  10737. bottom: 0.047
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Micro",
  10744. height: math.unit(6, "inches")
  10745. },
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(6 + 3/12, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Big",
  10753. height: math.unit(104, "feet")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(944, "feet")
  10758. },
  10759. {
  10760. name: "Macro+",
  10761. height: math.unit(9480, "feet")
  10762. },
  10763. {
  10764. name: "Megamacro",
  10765. height: math.unit(78752, "feet")
  10766. },
  10767. {
  10768. name: "Megamacro+",
  10769. height: math.unit(630128, "feet")
  10770. },
  10771. {
  10772. name: "Megamacro++",
  10773. height: math.unit(3150695, "feet")
  10774. },
  10775. ]
  10776. )
  10777. };
  10778. characterMakers["Mocha Aura"] = () => {
  10779. return makeCharacter(
  10780. "Mocha Aura",
  10781. "Mocha-Aura",
  10782. {
  10783. front: {
  10784. height: math.unit(7 + 5/12, "feet"),
  10785. weight: math.unit(450, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/mocha-aura/front.svg",
  10789. extra: 1907/1817 ,
  10790. bottom: 0.04
  10791. }
  10792. },
  10793. back: {
  10794. height: math.unit(7 + 5/12, "feet"),
  10795. weight: math.unit(450, "lb"),
  10796. name: "Back",
  10797. image: {
  10798. source: "./media/characters/mocha-aura/back.svg",
  10799. extra: 1900/1825 ,
  10800. bottom: 0.045
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Nano",
  10807. height: math.unit(1, "nm")
  10808. },
  10809. {
  10810. name: "Megamicro",
  10811. height: math.unit(1, "mm")
  10812. },
  10813. {
  10814. name: "Micro",
  10815. height: math.unit(3, "inches")
  10816. },
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(7 + 5/12, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(30, "feet")
  10825. },
  10826. {
  10827. name: "Megamacro",
  10828. height: math.unit(3500, "feet")
  10829. },
  10830. {
  10831. name: "Teramacro",
  10832. height: math.unit(500000, "miles")
  10833. },
  10834. {
  10835. name: "Petamacro",
  10836. height: math.unit(50000000000000000 , "parsecs")
  10837. },
  10838. ]
  10839. )
  10840. };
  10841. characterMakers["Ilisha Devya"] = () => {
  10842. return makeCharacter(
  10843. "Ilisha Devya",
  10844. "Neopuc",
  10845. {
  10846. front: {
  10847. height: math.unit(6, "feet"),
  10848. weight: math.unit(150, "lb"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/ilisha-devya/front.svg",
  10852. extra: 1,
  10853. bottom: 0.175
  10854. }
  10855. },
  10856. back: {
  10857. height: math.unit(6, "feet"),
  10858. weight: math.unit(150, "lb"),
  10859. name: "Back",
  10860. image: {
  10861. source: "./media/characters/ilisha-devya/back.svg",
  10862. extra: 1,
  10863. bottom: 0.015
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Macro",
  10870. height: math.unit(500, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(10, "miles")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(100000, "miles")
  10880. },
  10881. {
  10882. name: "Examacro",
  10883. height: math.unit(1e9, "lightyears")
  10884. },
  10885. {
  10886. name: "Omniversal",
  10887. height: math.unit(1e33, "lightyears")
  10888. },
  10889. {
  10890. name: "Beyond Infinite",
  10891. height: math.unit(1e100, "lightyears")
  10892. },
  10893. ]
  10894. )
  10895. };
  10896. characterMakers["Mira"] = () => {
  10897. return makeCharacter(
  10898. "Mira",
  10899. "Neopuc",
  10900. {
  10901. Side: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(150, "lb"),
  10904. name: "Side",
  10905. image: {
  10906. source: "./media/characters/mira/side.svg",
  10907. extra: 900/799 ,
  10908. bottom: 0.02
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Human Size",
  10915. height: math.unit(6, "feet")
  10916. },
  10917. {
  10918. name: "Macro",
  10919. height: math.unit(100, "feet"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(10, "miles")
  10925. },
  10926. {
  10927. name: "Gigamacro",
  10928. height: math.unit(25000, "miles")
  10929. },
  10930. {
  10931. name: "Teramacro",
  10932. height: math.unit(300, "AU")
  10933. },
  10934. {
  10935. name: "Full Size",
  10936. height: math.unit(4.5e10, "lightyears")
  10937. },
  10938. ]
  10939. )
  10940. };
  10941. characterMakers["Holly"] = () => {
  10942. return makeCharacter(
  10943. "Holly",
  10944. "Neopuc",
  10945. {
  10946. front: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(150, "lb"),
  10949. name: "Front",
  10950. image: {
  10951. source: "./media/characters/holly/front.svg",
  10952. extra: 639/606
  10953. }
  10954. },
  10955. back: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Back",
  10959. image: {
  10960. source: "./media/characters/holly/back.svg",
  10961. extra: 623/598
  10962. }
  10963. },
  10964. frontWorking: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Front (Working)",
  10968. image: {
  10969. source: "./media/characters/holly/front-working.svg",
  10970. extra: 607/577 ,
  10971. bottom: 0.048
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(12 + 3/12, "feet"),
  10979. default: true
  10980. },
  10981. ]
  10982. )
  10983. };
  10984. characterMakers["Porter"] = () => {
  10985. return makeCharacter(
  10986. "Porter",
  10987. "Neopuc",
  10988. {
  10989. front: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(150, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/porter/front.svg",
  10995. extra: 1,
  10996. bottom: 0.01
  10997. }
  10998. },
  10999. frontRobes: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Front (Robes)",
  11003. image: {
  11004. source: "./media/characters/porter/front-robes.svg",
  11005. extra: 1.01 ,
  11006. bottom: 0.01
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(11 + 9/12, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. )
  11018. };
  11019. characterMakers["Lucy"] = () => {
  11020. return makeCharacter(
  11021. "Lucy",
  11022. "Jasmith",
  11023. {
  11024. legendary: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(150, "lb"),
  11027. name: "Legendary",
  11028. image: {
  11029. source: "./media/characters/lucy/legendary.svg",
  11030. extra: 1355/1100 ,
  11031. bottom: 0.045
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Legendary",
  11038. height: math.unit(86882*2, "miles"),
  11039. default: true
  11040. },
  11041. ]
  11042. )
  11043. };
  11044. characterMakers["Drusilla"] = () => {
  11045. return makeCharacter(
  11046. "Drusilla",
  11047. "Neopuc",
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(150, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/drusilla/front.svg",
  11055. extra: 678/635 ,
  11056. bottom: 0.03
  11057. }
  11058. },
  11059. back: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(150, "lb"),
  11062. name: "Back",
  11063. image: {
  11064. source: "./media/characters/drusilla/back.svg",
  11065. extra: 678/635 ,
  11066. bottom: 0.005
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(100, "feet")
  11074. },
  11075. {
  11076. name: "Canon Height",
  11077. height: math.unit(2000, "feet"),
  11078. default: true
  11079. },
  11080. ]
  11081. )
  11082. };
  11083. characterMakers["Renard Thatch"] = () => {
  11084. return makeCharacter(
  11085. "Renard Thatch",
  11086. "Renard Thatch",
  11087. {
  11088. front: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(180, "lb"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/renard-thatch/front.svg",
  11094. extra: 2411/2275 ,
  11095. bottom: 0.01
  11096. }
  11097. },
  11098. frontPosing: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(180, "lb"),
  11101. name: "Front (Posing)",
  11102. image: {
  11103. source: "./media/characters/renard-thatch/front-posing.svg",
  11104. extra: 2381/2261 ,
  11105. bottom: 0.01
  11106. }
  11107. },
  11108. back: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(180, "lb"),
  11111. name: "Back",
  11112. image: {
  11113. source: "./media/characters/renard-thatch/back.svg",
  11114. extra: 2428/2288
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Micro",
  11121. height: math.unit(3, "inches")
  11122. },
  11123. {
  11124. name: "Default",
  11125. height: math.unit(6, "feet"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Macro",
  11130. height: math.unit(75, "feet")
  11131. },
  11132. ]
  11133. )
  11134. };
  11135. characterMakers["Sekvra"] = () => {
  11136. return makeCharacter(
  11137. "Sekvra",
  11138. "Neopuc",
  11139. {
  11140. front: {
  11141. height: math.unit(1450, "feet"),
  11142. weight: math.unit(1.21e6, "tons"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/sekvra/front.svg",
  11146. extra: 1,
  11147. bottom: 0.03
  11148. }
  11149. },
  11150. frontClothed: {
  11151. height: math.unit(1450, "feet"),
  11152. weight: math.unit(1.21e6, "tons"),
  11153. name: "Front (Clothed)",
  11154. image: {
  11155. source: "./media/characters/sekvra/front-clothed.svg",
  11156. extra: 1,
  11157. bottom: 0.03
  11158. }
  11159. },
  11160. side: {
  11161. height: math.unit(1450, "feet"),
  11162. weight: math.unit(1.21e6, "tons"),
  11163. name: "Side",
  11164. image: {
  11165. source: "./media/characters/sekvra/side.svg",
  11166. extra: 1,
  11167. bottom: 0.025
  11168. }
  11169. },
  11170. back: {
  11171. height: math.unit(1450, "feet"),
  11172. weight: math.unit(1.21e6, "tons"),
  11173. name: "Back",
  11174. image: {
  11175. source: "./media/characters/sekvra/back.svg",
  11176. extra: 1,
  11177. bottom: 0.005
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(1450, "feet"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Megamacro",
  11189. height: math.unit(15000, "feet")
  11190. },
  11191. ]
  11192. )
  11193. };
  11194. characterMakers["Carmine"] = () => {
  11195. return makeCharacter(
  11196. "Carmine",
  11197. "Neopuc",
  11198. {
  11199. front: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(150, "lb"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/carmine/front.svg",
  11205. extra: 1,
  11206. bottom: 0.035
  11207. }
  11208. },
  11209. frontArmor: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(150, "lb"),
  11212. name: "Front (Armor)",
  11213. image: {
  11214. source: "./media/characters/carmine/front-armor.svg",
  11215. extra: 1,
  11216. bottom: 0.035
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Large",
  11223. height: math.unit(1, "mile")
  11224. },
  11225. {
  11226. name: "Huge",
  11227. height: math.unit(40, "miles"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Colossal",
  11232. height: math.unit(2500, "miles")
  11233. },
  11234. ]
  11235. )
  11236. };
  11237. characterMakers["Elyssia"] = () => {
  11238. return makeCharacter(
  11239. "Elyssia",
  11240. "Neopuc",
  11241. {
  11242. front: {
  11243. height: math.unit(6, "feet"),
  11244. weight: math.unit(150, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/elyssia/front.svg",
  11248. extra: 2201/2035 ,
  11249. bottom: 0.05
  11250. }
  11251. },
  11252. frontClothed: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Front (Clothed)",
  11256. image: {
  11257. source: "./media/characters/elyssia/front-clothed.svg",
  11258. extra: 2201/2035 ,
  11259. bottom: 0.05
  11260. }
  11261. },
  11262. back: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Back",
  11266. image: {
  11267. source: "./media/characters/elyssia/back.svg",
  11268. extra: 2201/2035 ,
  11269. bottom: 0.013
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Smaller",
  11276. height: math.unit(150, "feet")
  11277. },
  11278. {
  11279. name: "Standard",
  11280. height: math.unit(1400, "feet"),
  11281. default: true
  11282. },
  11283. {
  11284. name: "Distracted",
  11285. height: math.unit(15000, "feet")
  11286. },
  11287. ]
  11288. )
  11289. };
  11290. characterMakers["Geno Maxwell"] = () => {
  11291. return makeCharacter(
  11292. "Geno Maxwell",
  11293. "Geckonori",
  11294. {
  11295. front: {
  11296. height: math.unit(7 + 4/12, "feet"),
  11297. weight: math.unit(500, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/geno-maxwell/front.svg",
  11301. extra: 2207/2040 ,
  11302. bottom: 0.015
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Micro",
  11309. height: math.unit(3, "inches")
  11310. },
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(7 + 4/12, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(220, "feet")
  11319. },
  11320. {
  11321. name: "Megamacro",
  11322. height: math.unit(11, "miles")
  11323. },
  11324. ]
  11325. )
  11326. };
  11327. characterMakers["Regena Maxwell"] = () => {
  11328. return makeCharacter(
  11329. "Regena Maxwell",
  11330. "Geckonori",
  11331. {
  11332. front: {
  11333. height: math.unit(7 + 4/12, "feet"),
  11334. weight: math.unit(500, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/regena-maxwell/front.svg",
  11338. extra: 3115/2770 ,
  11339. bottom: 0.02
  11340. }
  11341. },
  11342. },
  11343. [
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(7 + 4/12, "feet"),
  11347. default: true
  11348. },
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(220, "feet")
  11352. },
  11353. {
  11354. name: "Megamacro",
  11355. height: math.unit(11, "miles")
  11356. },
  11357. ]
  11358. )
  11359. };
  11360. characterMakers["XGlidingDragonX"] = () => {
  11361. return makeCharacter(
  11362. "XGlidingDragonX",
  11363. "XGlidingDragonX",
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11371. extra: 860/690 ,
  11372. bottom: 0.03
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(1.7, "meters"),
  11380. default: true
  11381. },
  11382. ]
  11383. )
  11384. };
  11385. characterMakers["Quilly"] = () => {
  11386. return makeCharacter(
  11387. "Quilly",
  11388. "Jasmith",
  11389. {
  11390. front: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(150, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/quilly/front.svg",
  11396. extra: 890/776
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Gigamacro",
  11403. height: math.unit(404090, "miles"),
  11404. default: true
  11405. },
  11406. ]
  11407. )
  11408. };
  11409. characterMakers["Tempest"] = () => {
  11410. return makeCharacter(
  11411. "Tempest",
  11412. "XsomeoneX",
  11413. {
  11414. front: {
  11415. height: math.unit(7 + 8/12, "feet"),
  11416. weight: math.unit(350, "lb"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/tempest/front.svg",
  11420. extra: 1175/1086 ,
  11421. bottom: 0.02
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Normal",
  11428. height: math.unit(7 + 8/12, "feet"),
  11429. default: true
  11430. },
  11431. ]
  11432. )
  11433. };
  11434. characterMakers["Rodger"] = () => {
  11435. return makeCharacter(
  11436. "Rodger",
  11437. "Guywithastupidname",
  11438. {
  11439. side: {
  11440. height: math.unit(4 + 5/12, "feet"),
  11441. weight: math.unit(80, "lb"),
  11442. name: "Side",
  11443. image: {
  11444. source: "./media/characters/rodger/side.svg",
  11445. extra: 1235/1118
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Micro",
  11452. height: math.unit(1, "inch")
  11453. },
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(4 + 5/12, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Macro",
  11461. height: math.unit(120, "feet")
  11462. },
  11463. ]
  11464. )
  11465. };
  11466. characterMakers["Danyel"] = () => {
  11467. return makeCharacter(
  11468. "Danyel",
  11469. "Danyelx",
  11470. {
  11471. front: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/danyel/front.svg",
  11477. extra: 1185/1123 ,
  11478. bottom: 0.05
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Shrunken",
  11485. height: math.unit(0.5, "mm")
  11486. },
  11487. {
  11488. name: "Micro",
  11489. height: math.unit(1, "mm"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Upsized",
  11494. height: math.unit(5 + 5/12, "feet")
  11495. },
  11496. ]
  11497. )
  11498. };
  11499. characterMakers["Vivian Bijoux"] = () => {
  11500. return makeCharacter(
  11501. "Vivian Bijoux",
  11502. "Geckonori",
  11503. {
  11504. front: {
  11505. height: math.unit(5 + 6/12, "feet"),
  11506. weight: math.unit(200, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/vivian-bijoux/front.svg",
  11510. extra: 1,
  11511. bottom: 0.072
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(5 + 6/12, "feet"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Bad Dream",
  11523. height: math.unit(500, "feet")
  11524. },
  11525. {
  11526. name: "Nightmare",
  11527. height: math.unit(500, "miles")
  11528. },
  11529. ]
  11530. )
  11531. };
  11532. characterMakers["Zeta"] = () => {
  11533. return makeCharacter(
  11534. "Zeta",
  11535. "thenerdherd102",
  11536. {
  11537. front: {
  11538. height: math.unit(6 + 1/12, "feet"),
  11539. weight: math.unit(260, "lb"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/zeta/front.svg",
  11543. extra: 1968/1889 ,
  11544. bottom: 0.06
  11545. }
  11546. },
  11547. back: {
  11548. height: math.unit(6 + 1/12, "feet"),
  11549. weight: math.unit(260, "lb"),
  11550. name: "Back",
  11551. image: {
  11552. source: "./media/characters/zeta/back.svg",
  11553. extra: 1944/1858 ,
  11554. bottom: 0.03
  11555. }
  11556. },
  11557. hand: {
  11558. height: math.unit(1.112, "feet"),
  11559. name: "Hand",
  11560. image: {
  11561. source: "./media/characters/zeta/hand.svg"
  11562. }
  11563. },
  11564. foot: {
  11565. height: math.unit(1.48, "feet"),
  11566. name: "Foot",
  11567. image: {
  11568. source: "./media/characters/zeta/foot.svg"
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(6, "inches")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(6 + 1/12, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(20, "feet")
  11585. },
  11586. ]
  11587. )
  11588. };
  11589. characterMakers["Jamie Larsen"] = () => {
  11590. return makeCharacter(
  11591. "Jamie Larsen",
  11592. "Mt_Jamie_Larsen",
  11593. {
  11594. front: {
  11595. height: math.unit(6, "feet"),
  11596. weight: math.unit(150, "lb"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/jamie-larsen/front.svg",
  11600. extra: 962/933 ,
  11601. bottom: 0.02
  11602. }
  11603. },
  11604. back: {
  11605. height: math.unit(6, "feet"),
  11606. weight: math.unit(150, "lb"),
  11607. name: "Back",
  11608. image: {
  11609. source: "./media/characters/jamie-larsen/back.svg",
  11610. extra: 997/946
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Macro",
  11617. height: math.unit(28 + 7/12, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Macro+",
  11622. height: math.unit(180, "feet")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(10, "miles")
  11627. },
  11628. {
  11629. name: "Gigamacro",
  11630. height: math.unit(200000, "miles")
  11631. },
  11632. ]
  11633. )
  11634. };
  11635. characterMakers["Vance"] = () => {
  11636. return makeCharacter(
  11637. "Vance",
  11638. "Neopuc",
  11639. {
  11640. front: {
  11641. height: math.unit(6, "feet"),
  11642. weight: math.unit(120, "lb"),
  11643. name: "Front",
  11644. image: {
  11645. source: "./media/characters/vance/front.svg",
  11646. extra: 1980/1890 ,
  11647. bottom: 0.09
  11648. }
  11649. },
  11650. back: {
  11651. height: math.unit(6, "feet"),
  11652. weight: math.unit(120, "lb"),
  11653. name: "Back",
  11654. image: {
  11655. source: "./media/characters/vance/back.svg",
  11656. extra: 2081/1994 ,
  11657. bottom: 0.014
  11658. }
  11659. },
  11660. hand: {
  11661. height: math.unit(0.88, "feet"),
  11662. name: "Hand",
  11663. image: {
  11664. source: "./media/characters/vance/hand.svg"
  11665. }
  11666. },
  11667. foot: {
  11668. height: math.unit(0.64, "feet"),
  11669. name: "Foot",
  11670. image: {
  11671. source: "./media/characters/vance/foot.svg"
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Small",
  11678. height: math.unit(90, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(100, "meters")
  11684. },
  11685. {
  11686. name: "Megamacro",
  11687. height: math.unit(15, "miles")
  11688. },
  11689. ]
  11690. )
  11691. };
  11692. characterMakers["Xochitl"] = () => {
  11693. return makeCharacter(
  11694. "Xochitl",
  11695. "Neopuc",
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(180, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/xochitl/front.svg",
  11703. extra: 2297/2261 ,
  11704. bottom: 0.065
  11705. }
  11706. },
  11707. back: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(180, "lb"),
  11710. name: "Back",
  11711. image: {
  11712. source: "./media/characters/xochitl/back.svg",
  11713. extra: 2386/2354 ,
  11714. bottom: 0.01
  11715. }
  11716. },
  11717. foot: {
  11718. height: math.unit(6/5 * 1.15, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Foot",
  11721. image: {
  11722. source: "./media/characters/xochitl/foot.svg"
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(80, "feet")
  11730. },
  11731. {
  11732. name: "Macro+",
  11733. height: math.unit(400, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Gigamacro",
  11738. height: math.unit(80000, "miles")
  11739. },
  11740. {
  11741. name: "Gigamacro+",
  11742. height: math.unit(400000, "miles")
  11743. },
  11744. {
  11745. name: "Teramacro",
  11746. height: math.unit(300, "AU")
  11747. },
  11748. ]
  11749. )
  11750. };
  11751. characterMakers["Vincent"] = () => {
  11752. return makeCharacter(
  11753. "Vincent",
  11754. "Neopuc",
  11755. {
  11756. front: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(150, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/vincent/front.svg",
  11762. extra: 1130/1080 ,
  11763. bottom: 0.055
  11764. }
  11765. },
  11766. beak: {
  11767. height: math.unit(6 * 0.1, "feet"),
  11768. name: "Beak",
  11769. image: {
  11770. source: "./media/characters/vincent/beak.svg"
  11771. }
  11772. },
  11773. hand: {
  11774. height: math.unit(6 * 0.85, "feet"),
  11775. weight: math.unit(150, "lb"),
  11776. name: "Hand",
  11777. image: {
  11778. source: "./media/characters/vincent/hand.svg"
  11779. }
  11780. },
  11781. foot: {
  11782. height: math.unit(6 * 0.19, "feet"),
  11783. weight: math.unit(150, "lb"),
  11784. name: "Foot",
  11785. image: {
  11786. source: "./media/characters/vincent/foot.svg"
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Base",
  11793. height: math.unit(6 + 5/12, "feet"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(300, "feet")
  11799. },
  11800. {
  11801. name: "Megamacro",
  11802. height: math.unit(2, "miles")
  11803. },
  11804. {
  11805. name: "Gigamacro",
  11806. height: math.unit(1000, "miles")
  11807. },
  11808. ]
  11809. )
  11810. };
  11811. characterMakers["Jay"] = () => {
  11812. return makeCharacter(
  11813. "Jay",
  11814. "J-Forse",
  11815. {
  11816. front: {
  11817. height: math.unit(6 + 2/12, "feet"),
  11818. weight: math.unit(65, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/jay/front.svg",
  11822. extra: 1510/1430 ,
  11823. bottom: 0.042
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(6 + 2/12, "feet"),
  11828. weight: math.unit(65, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/jay/back.svg",
  11832. extra: 1510/1430 ,
  11833. bottom: 0.025
  11834. }
  11835. },
  11836. clothed: {
  11837. height: math.unit(6 + 2/12, "feet"),
  11838. weight: math.unit(65, "lb"),
  11839. name: "Front (Clothed)",
  11840. image: {
  11841. source: "./media/characters/jay/clothed.svg",
  11842. extra: 744/699 ,
  11843. bottom: 0.043
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(1, "inch")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(6 + 2/12, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(1, "mile")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(100, "miles")
  11864. },
  11865. ]
  11866. )
  11867. };
  11868. characterMakers["Coatl"] = () => {
  11869. return makeCharacter(
  11870. "Coatl",
  11871. "Jagaz",
  11872. {
  11873. front: {
  11874. height: math.unit(2, "meters"),
  11875. weight: math.unit(500 , "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/coatl/front.svg",
  11879. extra: 3948 / 3500 ,
  11880. bottom: 0.082
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Normal",
  11887. height: math.unit(4, "meters")
  11888. },
  11889. {
  11890. name: "Macro",
  11891. height: math.unit(100, "meters"),
  11892. default: true
  11893. },
  11894. {
  11895. name: "Macro+",
  11896. height: math.unit(300, "meters")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(3, "gigameters")
  11901. },
  11902. {
  11903. name: "Megamacro+",
  11904. height: math.unit(300, "terameters")
  11905. },
  11906. {
  11907. name: "Megamacro++",
  11908. height: math.unit(3, "lightyears")
  11909. },
  11910. ]
  11911. )
  11912. };
  11913. characterMakers["Shiroryu"] = () => {
  11914. return makeCharacter(
  11915. "Shiroryu",
  11916. "Roxas00137",
  11917. {
  11918. front: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(50, "kg"),
  11921. name: "front",
  11922. image: {
  11923. source: "./media/characters/shiroryu/front.svg",
  11924. extra: 1990/1935
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Mortal Mingling",
  11931. height: math.unit(3, "meters")
  11932. },
  11933. {
  11934. name: "Kaiju-ish",
  11935. height: math.unit(250, "meters")
  11936. },
  11937. {
  11938. name: "Somewhat Godly",
  11939. height: math.unit(400, "km"),
  11940. default: true
  11941. },
  11942. {
  11943. name: "Planetary",
  11944. height: math.unit(300, "megameters")
  11945. },
  11946. {
  11947. name: "Galaxy-dwarfing",
  11948. height: math.unit(450, "kiloparsecs")
  11949. },
  11950. {
  11951. name: "Universe Eater",
  11952. height: math.unit(150, "gigaparsecs")
  11953. },
  11954. {
  11955. name: "Almost Immeasurable",
  11956. height: math.unit(1.3e266, "yottaparsecs")
  11957. },
  11958. ]
  11959. )
  11960. };
  11961. characterMakers["Umeko"] = () => {
  11962. return makeCharacter(
  11963. "Umeko",
  11964. "Neopuc",
  11965. {
  11966. front: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/umeko/front.svg",
  11972. extra: 1,
  11973. bottom: 0.019
  11974. }
  11975. },
  11976. frontArmored: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front (Armored)",
  11980. image: {
  11981. source: "./media/characters/umeko/front-armored.svg",
  11982. extra: 1,
  11983. bottom: 0.021
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(220, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Guardian Dragon",
  11995. height: math.unit(50, "miles")
  11996. },
  11997. {
  11998. name: "Cosmic",
  11999. height: math.unit(800000, "miles")
  12000. },
  12001. ]
  12002. )
  12003. };
  12004. characterMakers["Cassidy"] = () => {
  12005. return makeCharacter(
  12006. "Cassidy",
  12007. "Neopuc",
  12008. {
  12009. front: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(150, "lb"),
  12012. name: "Front",
  12013. image: {
  12014. source: "./media/characters/cassidy/front.svg",
  12015. extra: 1,
  12016. bottom: 0.043
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Canon Height",
  12023. height: math.unit(120, "feet"),
  12024. default: true
  12025. },
  12026. {
  12027. name: "Macro+",
  12028. height: math.unit(400, "feet")
  12029. },
  12030. {
  12031. name: "Macro++",
  12032. height: math.unit(4000, "feet")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(3, "miles")
  12037. },
  12038. ]
  12039. )
  12040. };
  12041. characterMakers["Isaac"] = () => {
  12042. return makeCharacter(
  12043. "Isaac",
  12044. "Neopuc",
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/isaac/front.svg",
  12052. extra: 896/815 ,
  12053. bottom: 0.11
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Human Size",
  12060. height: math.unit(8, "feet"),
  12061. default: true
  12062. },
  12063. {
  12064. name: "Macro",
  12065. height: math.unit(400, "feet")
  12066. },
  12067. {
  12068. name: "Megamacro",
  12069. height: math.unit(50, "miles")
  12070. },
  12071. {
  12072. name: "Canon Height",
  12073. height: math.unit(200, "AU")
  12074. },
  12075. ]
  12076. )
  12077. };
  12078. characterMakers["Sleekit"] = () => {
  12079. return makeCharacter(
  12080. "Sleekit",
  12081. "AnAnonymousIndividual",
  12082. {
  12083. front: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(72, "kg"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/sleekit/front.svg",
  12089. extra: 4693/4487 ,
  12090. bottom: 0.012
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Minimum Height",
  12097. height: math.unit(10, "meters")
  12098. },
  12099. {
  12100. name: "Smaller",
  12101. height: math.unit(25, "meters")
  12102. },
  12103. {
  12104. name: "Larger",
  12105. height: math.unit(38, "meters"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Maximum height",
  12110. height: math.unit(100, "meters")
  12111. },
  12112. ]
  12113. )
  12114. };
  12115. characterMakers["Nillia"] = () => {
  12116. return makeCharacter(
  12117. "Nillia",
  12118. "Neopuc",
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/nillia/front.svg",
  12126. extra: 2195/2037 ,
  12127. bottom: 0.005
  12128. }
  12129. },
  12130. back: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Back",
  12134. image: {
  12135. source: "./media/characters/nillia/back.svg",
  12136. extra: 2195/2037 ,
  12137. bottom: 0.005
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Canon Height",
  12144. height: math.unit(489, "feet"),
  12145. default: true
  12146. }
  12147. ]
  12148. )
  12149. };
  12150. characterMakers["Mesmyriza"] = () => {
  12151. return makeCharacter(
  12152. "Mesmyriza",
  12153. "-fluffy-",
  12154. {
  12155. front: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(150, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/mesmyriza/front.svg",
  12161. extra: 2067/1784 ,
  12162. bottom: 0.035
  12163. }
  12164. },
  12165. foot: {
  12166. height: math.unit(6/(250/35), "feet"),
  12167. name: "Foot",
  12168. image: {
  12169. source: "./media/characters/mesmyriza/foot.svg"
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Macro",
  12176. height: math.unit(457, "meters"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Megamacro",
  12181. height: math.unit(8, "megameters")
  12182. },
  12183. ]
  12184. )
  12185. };
  12186. characterMakers["Saudade"] = () => {
  12187. return makeCharacter(
  12188. "Saudade",
  12189. "lordbo",
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(250, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/saudade/front.svg",
  12197. extra: 1172/1139 ,
  12198. bottom: 0.035
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Micro",
  12205. height: math.unit(3, "inches")
  12206. },
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(6, "feet"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(50, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro",
  12218. height: math.unit(2800, "feet")
  12219. },
  12220. ]
  12221. )
  12222. };
  12223. characterMakers["Keireer"] = () => {
  12224. return makeCharacter(
  12225. "Keireer",
  12226. "teedash",
  12227. {
  12228. front: {
  12229. height: math.unit(5 + 4/12, "feet"),
  12230. weight: math.unit(100, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/keireer/front.svg",
  12234. extra: 716/666 ,
  12235. bottom: 0.05
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Normal",
  12242. height: math.unit(5 + 4/12, "feet"),
  12243. default: true
  12244. },
  12245. ]
  12246. )
  12247. };
  12248. characterMakers["Mirja"] = () => {
  12249. return makeCharacter(
  12250. "Mirja",
  12251. "vabad",
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(90, "kg"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/mirja/front.svg",
  12259. extra: 1789/1683 ,
  12260. bottom: 0.05
  12261. }
  12262. },
  12263. frontDressed: {
  12264. height: math.unit(6, "feet"),
  12265. weight: math.unit(90, "lb"),
  12266. name: "Front (Dressed)",
  12267. image: {
  12268. source: "./media/characters/mirja/front-dressed.svg",
  12269. extra: 1789/1683 ,
  12270. bottom: 0.05
  12271. }
  12272. },
  12273. back: {
  12274. height: math.unit(6, "feet"),
  12275. weight: math.unit(90, "lb"),
  12276. name: "Back",
  12277. image: {
  12278. source: "./media/characters/mirja/back.svg",
  12279. extra: 953/917 ,
  12280. bottom: 0.017
  12281. }
  12282. },
  12283. },
  12284. [
  12285. {
  12286. name: "\"Incognito\"",
  12287. height: math.unit(3, "meters")
  12288. },
  12289. {
  12290. name: "Strolling Size",
  12291. height: math.unit(15, "km")
  12292. },
  12293. {
  12294. name: "Larger Strolling Size",
  12295. height: math.unit(400, "km")
  12296. },
  12297. {
  12298. name: "Preferred Size",
  12299. height: math.unit(5000, "km")
  12300. },
  12301. {
  12302. name: "True Size",
  12303. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12304. default: true
  12305. },
  12306. ]
  12307. )
  12308. };
  12309. characterMakers["Nightraver"] = () => {
  12310. return makeCharacter(
  12311. "Nightraver",
  12312. "Nightraver",
  12313. {
  12314. front: {
  12315. height: math.unit(15, "feet"),
  12316. weight: math.unit(880, "kg"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/nightraver/front.svg",
  12320. extra: 2444/2160 ,
  12321. bottom: 0.027
  12322. }
  12323. },
  12324. back: {
  12325. height: math.unit(15, "feet"),
  12326. weight: math.unit(880, "kg"),
  12327. name: "Back",
  12328. image: {
  12329. source: "./media/characters/nightraver/back.svg",
  12330. extra: 2309/2180 ,
  12331. bottom: 0.005
  12332. }
  12333. },
  12334. sole: {
  12335. height: math.unit(2.878, "feet"),
  12336. name: "Sole",
  12337. image: {
  12338. source: "./media/characters/nightraver/sole.svg"
  12339. }
  12340. },
  12341. foot: {
  12342. height: math.unit(2.285, "feet"),
  12343. name: "Foot",
  12344. image: {
  12345. source: "./media/characters/nightraver/foot.svg"
  12346. }
  12347. },
  12348. maw: {
  12349. height: math.unit(2.67, "feet"),
  12350. name: "Maw",
  12351. image: {
  12352. source: "./media/characters/nightraver/maw.svg"
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Micro",
  12359. height: math.unit(1, "cm")
  12360. },
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(15, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(300, "feet")
  12369. },
  12370. {
  12371. name: "Megamacro",
  12372. height: math.unit(300, "miles")
  12373. },
  12374. {
  12375. name: "Gigamacro",
  12376. height: math.unit(10000, "miles")
  12377. },
  12378. ]
  12379. )
  12380. };
  12381. characterMakers["Arc"] = () => {
  12382. return makeCharacter(
  12383. "Arc",
  12384. "DinoKiddo",
  12385. {
  12386. side: {
  12387. height: math.unit(2, "inches"),
  12388. weight: math.unit(5, "grams"),
  12389. name: "Side",
  12390. image: {
  12391. source: "./media/characters/arc/side.svg"
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Micro",
  12398. height: math.unit(2, "inches"),
  12399. default: true
  12400. },
  12401. ]
  12402. )
  12403. };
  12404. characterMakers["Nebula Shahar"] = () => {
  12405. return makeCharacter(
  12406. "Nebula Shahar",
  12407. "Kypleo",
  12408. {
  12409. front: {
  12410. height: math.unit(1.1938, "meters"),
  12411. weight: math.unit(54, "kg"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/nebula-shahar/front.svg",
  12415. extra: 1642/1436 ,
  12416. bottom: 0.06
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Megamicro",
  12423. height: math.unit(0.3, "mm")
  12424. },
  12425. {
  12426. name: "Micro",
  12427. height: math.unit(3, "cm")
  12428. },
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(138, "cm"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(30, "m")
  12437. },
  12438. ]
  12439. )
  12440. };
  12441. characterMakers["Shayla"] = () => {
  12442. return makeCharacter(
  12443. "Shayla",
  12444. "Ziralkia",
  12445. {
  12446. front: {
  12447. height: math.unit(5.24, "feet"),
  12448. weight: math.unit(150, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/shayla/front.svg",
  12452. extra: 1512/1414 ,
  12453. bottom: 0.01
  12454. }
  12455. },
  12456. back: {
  12457. height: math.unit(5.24, "feet"),
  12458. weight: math.unit(150, "lb"),
  12459. name: "Back",
  12460. image: {
  12461. source: "./media/characters/shayla/back.svg",
  12462. extra: 1512/1414
  12463. }
  12464. },
  12465. hand: {
  12466. height: math.unit(0.7781496062992126, "feet"),
  12467. name: "Hand",
  12468. image: {
  12469. source: "./media/characters/shayla/hand.svg"
  12470. }
  12471. },
  12472. foot: {
  12473. height: math.unit(1.4206036745406823, "feet"),
  12474. name: "Foot",
  12475. image: {
  12476. source: "./media/characters/shayla/foot.svg"
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Micro",
  12483. height: math.unit(0.32, "feet")
  12484. },
  12485. {
  12486. name: "Normal",
  12487. height: math.unit(5.24, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Macro",
  12492. height: math.unit(492.12, "feet")
  12493. },
  12494. {
  12495. name: "Megamacro",
  12496. height: math.unit(186.41, "miles")
  12497. },
  12498. ]
  12499. )
  12500. };
  12501. characterMakers["Pia Jr."] = () => {
  12502. return makeCharacter(
  12503. "Pia Jr.",
  12504. "Ziralkia",
  12505. {
  12506. front: {
  12507. height: math.unit(2.2, "m"),
  12508. weight: math.unit(120, "kg"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/pia-jr/front.svg",
  12512. extra: 1000/970 ,
  12513. bottom: 0.035
  12514. }
  12515. },
  12516. hand: {
  12517. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12518. name: "Hand",
  12519. image: {
  12520. source: "./media/characters/pia-jr/hand.svg"
  12521. }
  12522. },
  12523. paw: {
  12524. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12525. name: "Paw",
  12526. image: {
  12527. source: "./media/characters/pia-jr/paw.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Micro",
  12534. height: math.unit(1.2, "cm")
  12535. },
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(2.2, "m"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(180, "m")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(420, "km")
  12548. },
  12549. ]
  12550. )
  12551. };
  12552. characterMakers["Pia Sr."] = () => {
  12553. return makeCharacter(
  12554. "Pia Sr.",
  12555. "Ziralkia",
  12556. {
  12557. front: {
  12558. height: math.unit(2, "m"),
  12559. weight: math.unit(115, "kg"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/pia-sr/front.svg",
  12563. extra: 760/730 ,
  12564. bottom: 0.015
  12565. }
  12566. },
  12567. back: {
  12568. height: math.unit(2, "m"),
  12569. weight: math.unit(115, "kg"),
  12570. name: "Back",
  12571. image: {
  12572. source: "./media/characters/pia-sr/back.svg",
  12573. extra: 760/730 ,
  12574. bottom: 0.01
  12575. }
  12576. },
  12577. hand: {
  12578. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12579. name: "Hand",
  12580. image: {
  12581. source: "./media/characters/pia-sr/hand.svg"
  12582. }
  12583. },
  12584. foot: {
  12585. height: math.unit(1.83, "feet"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/pia-sr/foot.svg"
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Micro",
  12595. height: math.unit(88, "mm")
  12596. },
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(2, "m"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(200, "m")
  12605. },
  12606. {
  12607. name: "Megamacro",
  12608. height: math.unit(420, "km")
  12609. },
  12610. ]
  12611. )
  12612. };
  12613. characterMakers["KIBIBYTE"] = () => {
  12614. return makeCharacter(
  12615. "KIBIBYTE",
  12616. "gamefreak1215",
  12617. {
  12618. front: {
  12619. height: math.unit(8 + 2/12, "feet"),
  12620. weight: math.unit(300, "lb"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/kibibyte/front.svg",
  12624. extra: 2221/2098 ,
  12625. bottom: 0.04
  12626. }
  12627. },
  12628. },
  12629. [
  12630. {
  12631. name: "Normal",
  12632. height: math.unit(8 + 2/12, "feet"),
  12633. default: true
  12634. },
  12635. {
  12636. name: "Socialable Macro",
  12637. height: math.unit(50, "feet")
  12638. },
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(300, "feet")
  12642. },
  12643. {
  12644. name: "Megamacro",
  12645. height: math.unit(500, "miles")
  12646. },
  12647. ]
  12648. )
  12649. };
  12650. characterMakers["Felix"] = () => {
  12651. return makeCharacter(
  12652. "Felix",
  12653. "MeanDumpsterCat",
  12654. {
  12655. front: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(150, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/felix/front.svg",
  12661. extra: 762/722 ,
  12662. bottom: 0.02
  12663. }
  12664. },
  12665. frontClothed: {
  12666. height: math.unit(6, "feet"),
  12667. weight: math.unit(150, "lb"),
  12668. name: "Front (Clothed)",
  12669. image: {
  12670. source: "./media/characters/felix/front-clothed.svg",
  12671. extra: 762/722 ,
  12672. bottom: 0.02
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(6 + 8/12, "feet"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Macro",
  12684. height: math.unit(2600, "feet")
  12685. },
  12686. {
  12687. name: "Megamacro",
  12688. height: math.unit(450, "miles")
  12689. },
  12690. ]
  12691. )
  12692. };
  12693. characterMakers["Tobo"] = () => {
  12694. return makeCharacter(
  12695. "Tobo",
  12696. "Naoya_Raichi",
  12697. {
  12698. front: {
  12699. height: math.unit(6 + 1/12, "feet"),
  12700. weight: math.unit(250, "lb"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/tobo/front.svg",
  12704. extra: 608/586 ,
  12705. bottom: 0.023
  12706. }
  12707. },
  12708. back: {
  12709. height: math.unit(6 + 1/12, "feet"),
  12710. weight: math.unit(250, "lb"),
  12711. name: "Back",
  12712. image: {
  12713. source: "./media/characters/tobo/back.svg",
  12714. extra: 608/586
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Nano",
  12721. height: math.unit(2, "nm")
  12722. },
  12723. {
  12724. name: "Megamicro",
  12725. height: math.unit(0.1, "mm")
  12726. },
  12727. {
  12728. name: "Micro",
  12729. height: math.unit(1, "inch"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Human-sized",
  12734. height: math.unit(6 + 1/12, "feet")
  12735. },
  12736. {
  12737. name: "Macro",
  12738. height: math.unit(250, "feet")
  12739. },
  12740. {
  12741. name: "Megamacro",
  12742. height: math.unit(75, "miles")
  12743. },
  12744. {
  12745. name: "Texas-sized",
  12746. height: math.unit(750, "miles")
  12747. },
  12748. {
  12749. name: "Teramacro",
  12750. height: math.unit(50000, "miles")
  12751. },
  12752. ]
  12753. )
  12754. };
  12755. characterMakers["Danny Kapowsky"] = () => {
  12756. return makeCharacter(
  12757. "Danny Kapowsky",
  12758. "nh63879",
  12759. {
  12760. front: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(269, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/danny-kapowsky/front.svg",
  12766. extra: 766/736 ,
  12767. bottom: 0.044
  12768. }
  12769. },
  12770. back: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(269, "lb"),
  12773. name: "Back",
  12774. image: {
  12775. source: "./media/characters/danny-kapowsky/back.svg",
  12776. extra: 797/760 ,
  12777. bottom: 0.025
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Macro",
  12784. height: math.unit(150, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Macro+",
  12789. height: math.unit(200, "feet")
  12790. },
  12791. {
  12792. name: "Macro++",
  12793. height: math.unit(300, "feet")
  12794. },
  12795. {
  12796. name: "Macro+++",
  12797. height: math.unit(400, "feet")
  12798. },
  12799. ]
  12800. )
  12801. };
  12802. characterMakers["Finn"] = () => {
  12803. return makeCharacter(
  12804. "Finn",
  12805. "Finn-The-Fennecfox",
  12806. {
  12807. side: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(170, "lb"),
  12810. name: "Side",
  12811. image: {
  12812. source: "./media/characters/finn/side.svg",
  12813. extra: 1953/1807 ,
  12814. bottom: 0.057
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Megamacro",
  12821. height: math.unit(14445, "feet"),
  12822. default: true
  12823. },
  12824. ]
  12825. )
  12826. };
  12827. characterMakers["Roy"] = () => {
  12828. return makeCharacter(
  12829. "Roy",
  12830. "dracodare",
  12831. {
  12832. front: {
  12833. height: math.unit(5 + 6/12, "feet"),
  12834. weight: math.unit(125, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/roy/front.svg",
  12838. extra: 1,
  12839. bottom: 0.11
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Micro",
  12846. height: math.unit(3, "inches"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Normal",
  12851. height: math.unit(5 + 6/12, "feet")
  12852. },
  12853. {
  12854. name: "Lesser Macro",
  12855. height: math.unit(60, "feet")
  12856. },
  12857. {
  12858. name: "Greater Macro",
  12859. height: math.unit(120, "feet")
  12860. },
  12861. ]
  12862. )
  12863. };
  12864. characterMakers["Aevsivs"] = () => {
  12865. return makeCharacter(
  12866. "Aevsivs",
  12867. "Aevsivs",
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(100, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/aevsivs/front.svg",
  12875. extra: 1,
  12876. bottom: 0.03
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(100, "lb"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/aevsivs/back.svg"
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Micro",
  12891. height: math.unit(2, "inches"),
  12892. default: true
  12893. },
  12894. {
  12895. name: "Normal",
  12896. height: math.unit(5, "feet")
  12897. },
  12898. ]
  12899. )
  12900. };
  12901. characterMakers["Hildegard"] = () => {
  12902. return makeCharacter(
  12903. "Hildegard",
  12904. "Fidchell",
  12905. {
  12906. front: {
  12907. height: math.unit(5 + 7/12, "feet"),
  12908. weight: math.unit(159, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/hildegard/front.svg",
  12912. extra: 312/286 ,
  12913. bottom: 0.005
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Normal",
  12920. height: math.unit(5 + 7/12, "feet"),
  12921. default: true
  12922. },
  12923. ]
  12924. )
  12925. };
  12926. characterMakers["Bernard & Wilder"] = () => {
  12927. return makeCharacter(
  12928. "Bernard & Wilder",
  12929. "Fidchell",
  12930. {
  12931. bernard: {
  12932. height: math.unit(2 + 7/12, "feet"),
  12933. weight: math.unit(66, "lb"),
  12934. name: "Bernard",
  12935. rename: true,
  12936. image: {
  12937. source: "./media/characters/bernard-wilder/bernard.svg",
  12938. extra: 192/128 ,
  12939. bottom: 0.05
  12940. }
  12941. },
  12942. wilder: {
  12943. height: math.unit(5 + 8/12, "feet"),
  12944. weight: math.unit(143, "lb"),
  12945. name: "Wilder",
  12946. rename: true,
  12947. image: {
  12948. source: "./media/characters/bernard-wilder/wilder.svg",
  12949. extra: 361/312 ,
  12950. bottom: 0.02
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(2 + 7/12, "feet"),
  12958. default: true
  12959. },
  12960. ]
  12961. )
  12962. };
  12963. characterMakers["Hearth"] = () => {
  12964. return makeCharacter(
  12965. "Hearth",
  12966. "Fidchell",
  12967. {
  12968. anthro: {
  12969. height: math.unit(6 + 1/12, "feet"),
  12970. weight: math.unit(155, "lb"),
  12971. name: "Anthro",
  12972. image: {
  12973. source: "./media/characters/hearth/anthro.svg",
  12974. extra: 260/250 ,
  12975. bottom: 0.02
  12976. }
  12977. },
  12978. feral: {
  12979. height: math.unit(3.78, "feet"),
  12980. weight: math.unit(35, "kg"),
  12981. name: "Feral",
  12982. image: {
  12983. source: "./media/characters/hearth/feral.svg",
  12984. extra: 153/135 ,
  12985. bottom: 0.03
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(6 + 1/12, "feet"),
  12993. default: true
  12994. },
  12995. ]
  12996. )
  12997. };
  12998. characterMakers["Ingrid"] = () => {
  12999. return makeCharacter(
  13000. "Ingrid",
  13001. "Fidchell",
  13002. {
  13003. front: {
  13004. height: math.unit(6, "feet"),
  13005. weight: math.unit(182, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/ingrid/front.svg",
  13009. extra: 294/268 ,
  13010. bottom: 0.027
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(6, "feet"),
  13018. default: true
  13019. },
  13020. ]
  13021. )
  13022. };
  13023. characterMakers["Malgam"] = () => {
  13024. return makeCharacter(
  13025. "Malgam",
  13026. "Fidchell",
  13027. {
  13028. eevee: {
  13029. height: math.unit(2 + 10/12, "feet"),
  13030. weight: math.unit(86, "lb"),
  13031. name: "Malgam",
  13032. image: {
  13033. source: "./media/characters/malgam/eevee.svg",
  13034. extra: 218/180 ,
  13035. bottom: 0.2
  13036. }
  13037. },
  13038. sylveon: {
  13039. height: math.unit(4, "feet"),
  13040. weight: math.unit(101, "lb"),
  13041. name: "Future Malgam",
  13042. rename: true,
  13043. image: {
  13044. source: "./media/characters/malgam/sylveon.svg",
  13045. extra: 371/325 ,
  13046. bottom: 0.015
  13047. }
  13048. },
  13049. gigantamax: {
  13050. height: math.unit(50, "feet"),
  13051. name: "Gigantamax Malgam",
  13052. rename: true,
  13053. image: {
  13054. source: "./media/characters/malgam/gigantamax.svg"
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(2 + 10/12, "feet"),
  13062. default: true
  13063. },
  13064. ]
  13065. )
  13066. };
  13067. characterMakers["Fleur"] = () => {
  13068. return makeCharacter(
  13069. "Fleur",
  13070. "Fidchell",
  13071. {
  13072. front: {
  13073. height: math.unit(5 + 11/12, "feet"),
  13074. weight: math.unit(188, "lb"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/fleur/front.svg",
  13078. extra: 309/283 ,
  13079. bottom: 0.007
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(5 + 11/12, "feet"),
  13087. default: true
  13088. },
  13089. ]
  13090. )
  13091. };
  13092. characterMakers["Jude"] = () => {
  13093. return makeCharacter(
  13094. "Jude",
  13095. "Fidchell",
  13096. {
  13097. front: {
  13098. height: math.unit(5 + 4/12, "feet"),
  13099. weight: math.unit(122, "lb"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/jude/front.svg",
  13103. extra: 288/273 ,
  13104. bottom: 0.03
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Normal",
  13111. height: math.unit(5 + 4/12, "feet"),
  13112. default: true
  13113. },
  13114. ]
  13115. )
  13116. };
  13117. characterMakers["Seara"] = () => {
  13118. return makeCharacter(
  13119. "Seara",
  13120. "Fidchell",
  13121. {
  13122. front: {
  13123. height: math.unit(5 + 11/12, "feet"),
  13124. weight: math.unit(190, "lb"),
  13125. name: "Front",
  13126. image: {
  13127. source: "./media/characters/seara/front.svg",
  13128. extra: 1,
  13129. bottom: 0.05
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Normal",
  13136. height: math.unit(5 + 11/12, "feet"),
  13137. default: true
  13138. },
  13139. ]
  13140. )
  13141. };
  13142. characterMakers["Caspian"] = () => {
  13143. return makeCharacter(
  13144. "Caspian",
  13145. "Fidchell",
  13146. {
  13147. front: {
  13148. height: math.unit(16 + 5/12, "feet"),
  13149. weight: math.unit(524, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/caspian/front.svg",
  13153. extra: 1,
  13154. bottom: 0.04
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Normal",
  13161. height: math.unit(16 + 5/12, "feet"),
  13162. default: true
  13163. },
  13164. ]
  13165. )
  13166. };
  13167. characterMakers["Mika"] = () => {
  13168. return makeCharacter(
  13169. "Mika",
  13170. "Fidchell",
  13171. {
  13172. front: {
  13173. height: math.unit(5 + 7/12, "feet"),
  13174. weight: math.unit(170, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/mika/front.svg",
  13178. extra: 1,
  13179. bottom: 0.016
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(5 + 7/12, "feet"),
  13187. default: true
  13188. },
  13189. ]
  13190. )
  13191. };
  13192. characterMakers["Sol"] = () => {
  13193. return makeCharacter(
  13194. "Sol",
  13195. "Fidchell",
  13196. {
  13197. front: {
  13198. height: math.unit(6 + 2/12, "feet"),
  13199. weight: math.unit(268, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/sol/front.svg",
  13203. extra: 247/231 ,
  13204. bottom: 0.05
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(6 + 2/12, "feet"),
  13212. default: true
  13213. },
  13214. ]
  13215. )
  13216. };
  13217. characterMakers["Umiko"] = () => {
  13218. return makeCharacter(
  13219. "Umiko",
  13220. "Fidchell",
  13221. {
  13222. buizel: {
  13223. height: math.unit(2 + 5/12, "feet"),
  13224. weight: math.unit(87, "lb"),
  13225. name: "Buizel",
  13226. image: {
  13227. source: "./media/characters/umiko/buizel.svg",
  13228. extra: 172/157 ,
  13229. bottom: 0.01
  13230. }
  13231. },
  13232. floatzel: {
  13233. height: math.unit(5 + 9/12, "feet"),
  13234. weight: math.unit(250, "lb"),
  13235. name: "Floatzel",
  13236. image: {
  13237. source: "./media/characters/umiko/floatzel.svg",
  13238. extra: 262/248
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Normal",
  13245. height: math.unit(2 + 5/12, "feet"),
  13246. default: true
  13247. },
  13248. ]
  13249. )
  13250. };
  13251. characterMakers["Iliac"] = () => {
  13252. return makeCharacter(
  13253. "Iliac",
  13254. "Fidchell",
  13255. {
  13256. front: {
  13257. height: math.unit(6 + 2/12, "feet"),
  13258. weight: math.unit(146, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/iliac/front.svg",
  13262. extra: 389/365 ,
  13263. bottom: 0.035
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(6 + 2/12, "feet"),
  13271. default: true
  13272. },
  13273. ]
  13274. )
  13275. };
  13276. characterMakers["Topaz"] = () => {
  13277. return makeCharacter(
  13278. "Topaz",
  13279. "Fidchell",
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(170, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/topaz/front.svg",
  13287. extra: 317/303 ,
  13288. bottom: 0.055
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(6, "feet"),
  13296. default: true
  13297. },
  13298. ]
  13299. )
  13300. };
  13301. characterMakers["Gabriel"] = () => {
  13302. return makeCharacter(
  13303. "Gabriel",
  13304. "Fidchell",
  13305. {
  13306. front: {
  13307. height: math.unit(5 + 11/12, "feet"),
  13308. weight: math.unit(144, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/gabriel/front.svg",
  13312. extra: 285/262 ,
  13313. bottom: 0.004
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(5 + 11/12, "feet"),
  13321. default: true
  13322. },
  13323. ]
  13324. )
  13325. };
  13326. characterMakers["Tempest (Suicune)"] = () => {
  13327. return makeCharacter(
  13328. "Tempest (Suicune)",
  13329. "Fidchell",
  13330. {
  13331. side: {
  13332. height: math.unit(6 + 5/12, "feet"),
  13333. weight: math.unit(300, "lb"),
  13334. name: "Side",
  13335. image: {
  13336. source: "./media/characters/tempest-suicune/side.svg",
  13337. extra: 195/154 ,
  13338. bottom: 0.04
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(6 + 5/12, "feet"),
  13346. default: true
  13347. },
  13348. ]
  13349. )
  13350. };
  13351. characterMakers["Vulcan"] = () => {
  13352. return makeCharacter(
  13353. "Vulcan",
  13354. "Fidchell",
  13355. {
  13356. front: {
  13357. height: math.unit(7 + 2/12, "feet"),
  13358. weight: math.unit(322, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/vulcan/front.svg",
  13362. extra: 154/147 ,
  13363. bottom: 0.04
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(7 + 2/12, "feet"),
  13371. default: true
  13372. },
  13373. ]
  13374. )
  13375. };
  13376. characterMakers["Gault"] = () => {
  13377. return makeCharacter(
  13378. "Gault",
  13379. "Fidchell",
  13380. {
  13381. front: {
  13382. height: math.unit(5 + 10/12, "feet"),
  13383. weight: math.unit(264, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/gault/front.svg",
  13387. extra: 161/140 ,
  13388. bottom: 0.028
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(5 + 10/12, "feet"),
  13396. default: true
  13397. },
  13398. ]
  13399. )
  13400. };
  13401. characterMakers["Shard"] = () => {
  13402. return makeCharacter(
  13403. "Shard",
  13404. "Fidchell",
  13405. {
  13406. front: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(150, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/shard/front.svg",
  13412. extra: 273/238 ,
  13413. bottom: 0.02
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(3 + 6/12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. )
  13425. };
  13426. characterMakers["Ashe"] = () => {
  13427. return makeCharacter(
  13428. "Ashe",
  13429. "Fidchell",
  13430. {
  13431. front: {
  13432. height: math.unit(5 + 11/12, "feet"),
  13433. weight: math.unit(146, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/ashe/front.svg",
  13437. extra: 400/373 ,
  13438. bottom: 0.01
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Normal",
  13445. height: math.unit(5 + 11/12, "feet"),
  13446. default: true
  13447. },
  13448. ]
  13449. )
  13450. };
  13451. characterMakers["Beatrix"] = () => {
  13452. return makeCharacter(
  13453. "Beatrix",
  13454. "Fidchell",
  13455. {
  13456. front: {
  13457. height: math.unit(5 + 5/12, "feet"),
  13458. weight: math.unit(135, "lb"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/beatrix/front.svg",
  13462. extra: 392/379 ,
  13463. bottom: 0.01
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(6, "feet"),
  13471. default: true
  13472. },
  13473. ]
  13474. )
  13475. };
  13476. characterMakers["Ignatius"] = () => {
  13477. return makeCharacter(
  13478. "Ignatius",
  13479. "Fidchell",
  13480. {
  13481. front: {
  13482. height: math.unit(6, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/ignatius/front.svg",
  13487. extra: 245/222 ,
  13488. bottom: 0.01
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Normal",
  13495. height: math.unit(5 + 5/12, "feet"),
  13496. default: true
  13497. },
  13498. ]
  13499. )
  13500. };
  13501. characterMakers["Mei Li"] = () => {
  13502. return makeCharacter(
  13503. "Mei Li",
  13504. "Fidchell",
  13505. {
  13506. front: {
  13507. height: math.unit(6 + 2/12, "feet"),
  13508. weight: math.unit(138, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/mei-li/front.svg",
  13512. extra: 237/229 ,
  13513. bottom: 0.03
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(6 + 2/12, "feet"),
  13521. default: true
  13522. },
  13523. ]
  13524. )
  13525. };
  13526. characterMakers["Puru"] = () => {
  13527. return makeCharacter(
  13528. "Puru",
  13529. "Fidchell",
  13530. {
  13531. front: {
  13532. height: math.unit(2 + 4/12, "feet"),
  13533. weight: math.unit(62, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/puru/front.svg",
  13537. extra: 206/149 ,
  13538. bottom: 0.06
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(2 + 4/12, "feet"),
  13546. default: true
  13547. },
  13548. ]
  13549. )
  13550. };
  13551. characterMakers["Kee"] = () => {
  13552. return makeCharacter(
  13553. "Kee",
  13554. "AardwolfKee",
  13555. {
  13556. taur: {
  13557. height: math.unit(11, "feet"),
  13558. weight: math.unit(500, "lb"),
  13559. name: "Taur",
  13560. image: {
  13561. source: "./media/characters/kee/taur.svg",
  13562. extra: 1,
  13563. bottom: 0.04
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(11, "feet"),
  13571. default: true
  13572. },
  13573. ]
  13574. )
  13575. };
  13576. characterMakers["Cobalt (Dracha)"] = () => {
  13577. return makeCharacter(
  13578. "Cobalt (Dracha)",
  13579. "Fidchell",
  13580. {
  13581. anthro: {
  13582. height: math.unit(7, "feet"),
  13583. weight: math.unit(190, "lb"),
  13584. name: "Anthro",
  13585. image: {
  13586. source: "./media/characters/cobalt-dracha/anthro.svg",
  13587. extra: 231/225 ,
  13588. bottom: 0.04
  13589. }
  13590. },
  13591. feral: {
  13592. height: math.unit(9 + 7/12, "feet"),
  13593. weight: math.unit(294, "lb"),
  13594. name: "Feral",
  13595. image: {
  13596. source: "./media/characters/cobalt-dracha/feral.svg",
  13597. extra: 692/633 ,
  13598. bottom: 0.05
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(7, "feet"),
  13606. default: true
  13607. },
  13608. ]
  13609. )
  13610. };
  13611. characterMakers["Java"] = () => {
  13612. return makeCharacter(
  13613. "Java",
  13614. "Fidchell",
  13615. {
  13616. fallen: {
  13617. height: math.unit(11 + 8/12, "feet"),
  13618. weight: math.unit(485, "lb"),
  13619. name: "Java (Fallen)",
  13620. rename: true,
  13621. image: {
  13622. source: "./media/characters/java/fallen.svg",
  13623. extra: 226/208 ,
  13624. bottom: 0.005
  13625. }
  13626. },
  13627. godkin: {
  13628. height: math.unit(10 + 6/12, "feet"),
  13629. weight: math.unit(328, "lb"),
  13630. name: "Java (Godkin)",
  13631. rename: true,
  13632. image: {
  13633. source: "./media/characters/java/godkin.svg",
  13634. extra: 270/262 ,
  13635. bottom: 0.02
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Normal",
  13642. height: math.unit(11 + 8/12, "feet"),
  13643. default: true
  13644. },
  13645. ]
  13646. )
  13647. };
  13648. characterMakers["Skoll"] = () => {
  13649. return makeCharacter(
  13650. "Skoll",
  13651. "Fidchell",
  13652. {
  13653. front: {
  13654. height: math.unit(7 + 8/12, "feet"),
  13655. weight: math.unit(320, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/skoll/front.svg",
  13659. extra: 232/220 ,
  13660. bottom: 0.02
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Normal",
  13667. height: math.unit(7 + 8/12, "feet"),
  13668. default: true
  13669. },
  13670. ]
  13671. )
  13672. };
  13673. characterMakers["Purna"] = () => {
  13674. return makeCharacter(
  13675. "Purna",
  13676. "Fidchell",
  13677. {
  13678. front: {
  13679. height: math.unit(5 + 9/12, "feet"),
  13680. weight: math.unit(170, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/purna/front.svg",
  13684. extra: 239/229 ,
  13685. bottom: 0.01
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(5 + 9/12, "feet"),
  13693. default: true
  13694. },
  13695. ]
  13696. )
  13697. };
  13698. characterMakers["Kuva"] = () => {
  13699. return makeCharacter(
  13700. "Kuva",
  13701. "Fidchell",
  13702. {
  13703. front: {
  13704. height: math.unit(5 + 9/12, "feet"),
  13705. weight: math.unit(142, "lb"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/kuva/front.svg",
  13709. extra: 281/271 ,
  13710. bottom: 0.006
  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["Embra"] = () => {
  13724. return makeCharacter(
  13725. "Embra",
  13726. "Fidchell",
  13727. {
  13728. anthro: {
  13729. height: math.unit(9 + 2/12, "feet"),
  13730. weight: math.unit(270, "lb"),
  13731. name: "Anthro",
  13732. image: {
  13733. source: "./media/characters/embra/anthro.svg",
  13734. extra: 200/187 ,
  13735. bottom: 0.02
  13736. }
  13737. },
  13738. feral: {
  13739. height: math.unit(18 + 8/12, "feet"),
  13740. weight: math.unit(576, "lb"),
  13741. name: "Feral",
  13742. image: {
  13743. source: "./media/characters/embra/feral.svg",
  13744. extra: 152/137 ,
  13745. bottom: 0.037
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(9 + 2/12, "feet"),
  13753. default: true
  13754. },
  13755. ]
  13756. )
  13757. };
  13758. characterMakers["Grottos"] = () => {
  13759. return makeCharacter(
  13760. "Grottos",
  13761. "Fidchell",
  13762. {
  13763. anthro: {
  13764. height: math.unit(10 + 9/12, "feet"),
  13765. weight: math.unit(224, "lb"),
  13766. name: "Anthro",
  13767. image: {
  13768. source: "./media/characters/grottos/anthro.svg",
  13769. extra: 350/332 ,
  13770. bottom: 0.045
  13771. }
  13772. },
  13773. feral: {
  13774. height: math.unit(20 + 7/12, "feet"),
  13775. weight: math.unit(629, "lb"),
  13776. name: "Feral",
  13777. image: {
  13778. source: "./media/characters/grottos/feral.svg",
  13779. extra: 207/190 ,
  13780. bottom: 0.05
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(10 + 9/12, "feet"),
  13788. default: true
  13789. },
  13790. ]
  13791. )
  13792. };
  13793. characterMakers["Frifna"] = () => {
  13794. return makeCharacter(
  13795. "Frifna",
  13796. "Fidchell",
  13797. {
  13798. anthro: {
  13799. height: math.unit(9 + 6/12, "feet"),
  13800. weight: math.unit(298, "lb"),
  13801. name: "Anthro",
  13802. image: {
  13803. source: "./media/characters/frifna/anthro.svg",
  13804. extra: 282/269 ,
  13805. bottom: 0.015
  13806. }
  13807. },
  13808. feral: {
  13809. height: math.unit(16 + 2/12, "feet"),
  13810. weight: math.unit(624, "lb"),
  13811. name: "Feral",
  13812. image: {
  13813. source: "./media/characters/frifna/feral.svg"
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Normal",
  13820. height: math.unit(9 + 6/12, "feet"),
  13821. default: true
  13822. },
  13823. ]
  13824. )
  13825. };
  13826. characterMakers["Elise"] = () => {
  13827. return makeCharacter(
  13828. "Elise",
  13829. "Fidchell",
  13830. {
  13831. front: {
  13832. height: math.unit(6 + 2/12, "feet"),
  13833. weight: math.unit(168, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/elise/front.svg",
  13837. extra: 276/271
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Normal",
  13844. height: math.unit(6 + 2/12, "feet"),
  13845. default: true
  13846. },
  13847. ]
  13848. )
  13849. };
  13850. characterMakers["Glade"] = () => {
  13851. return makeCharacter(
  13852. "Glade",
  13853. "Fidchell",
  13854. {
  13855. front: {
  13856. height: math.unit(5 + 10/12, "feet"),
  13857. weight: math.unit(210, "lb"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/glade/front.svg",
  13861. extra: 258/247 ,
  13862. bottom: 0.008
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(5 + 10/12, "feet"),
  13870. default: true
  13871. },
  13872. ]
  13873. )
  13874. };
  13875. characterMakers["Rina"] = () => {
  13876. return makeCharacter(
  13877. "Rina",
  13878. "Fidchell",
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 10/12, "feet"),
  13882. weight: math.unit(129, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/rina/front.svg",
  13886. extra: 266/255 ,
  13887. bottom: 0.005
  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["Veronica"] = () => {
  13901. return makeCharacter(
  13902. "Veronica",
  13903. "Fidchell",
  13904. {
  13905. front: {
  13906. height: math.unit(6 + 1/12, "feet"),
  13907. weight: math.unit(192, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/veronica/front.svg",
  13911. extra: 319/309 ,
  13912. bottom: 0.005
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(6 + 1/12, "feet"),
  13920. default: true
  13921. },
  13922. ]
  13923. )
  13924. };
  13925. characterMakers["Braxton"] = () => {
  13926. return makeCharacter(
  13927. "Braxton",
  13928. "jdolbear",
  13929. {
  13930. front: {
  13931. height: math.unit(9 + 3/12, "feet"),
  13932. weight: math.unit(1100, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/braxton/front.svg",
  13936. extra: 1057/984 ,
  13937. bottom: 0.05
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(9 + 3/12, "feet")
  13945. },
  13946. {
  13947. name: "Giant",
  13948. height: math.unit(300, "feet"),
  13949. default: true
  13950. },
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(700, "feet")
  13954. },
  13955. {
  13956. name: "Megamacro",
  13957. height: math.unit(6000, "feet")
  13958. },
  13959. ]
  13960. )
  13961. };
  13962. characterMakers["Blue Feyonics"] = () => {
  13963. return makeCharacter(
  13964. "Blue Feyonics",
  13965. "bluefiremarkii",
  13966. {
  13967. front: {
  13968. height: math.unit(6 + 7/12, "feet"),
  13969. weight: math.unit(150, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/blue-feyonics/front.svg",
  13973. extra: 1403/1306 ,
  13974. bottom: 0.047
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(6 + 7/12, "feet"),
  13982. default: true
  13983. },
  13984. ]
  13985. )
  13986. };
  13987. characterMakers["Maxwell"] = () => {
  13988. return makeCharacter(
  13989. "Maxwell",
  13990. "Ruby_02",
  13991. {
  13992. front: {
  13993. height: math.unit(1.8, "meters"),
  13994. weight: math.unit(60, "kg"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/maxwell/front.svg",
  13998. extra: 2060/1873
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Micro",
  14005. height: math.unit(1, "mm")
  14006. },
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(1.8, "meter"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Macro",
  14014. height: math.unit(30, "meters")
  14015. },
  14016. {
  14017. name: "Megamacro",
  14018. height: math.unit(10, "km")
  14019. },
  14020. ]
  14021. )
  14022. };
  14023. characterMakers["Jack"] = () => {
  14024. return makeCharacter(
  14025. "Jack",
  14026. "Jasmith",
  14027. {
  14028. front: {
  14029. height: math.unit(6, "feet"),
  14030. weight: math.unit(150, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/jack/front.svg",
  14034. extra: 1754/1640,
  14035. bottom: 0.01
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(80000, "feet"),
  14043. default: true
  14044. },
  14045. {
  14046. name: "Max size",
  14047. height: math.unit(10, "lightyears")
  14048. },
  14049. ]
  14050. )
  14051. };
  14052. characterMakers["Cafat"] = () => {
  14053. return makeCharacter(
  14054. "Cafat",
  14055. "Dalken",
  14056. {
  14057. upright: {
  14058. height: math.unit(7, "feet"),
  14059. weight: math.unit(170, "lb"),
  14060. name: "Upright",
  14061. image: {
  14062. source: "./media/characters/cafat/upright.svg",
  14063. bottom: 0.01
  14064. }
  14065. },
  14066. uprightFull: {
  14067. height: math.unit(7, "feet"),
  14068. weight: math.unit(170, "lb"),
  14069. name: "Upright (Full)",
  14070. image: {
  14071. source: "./media/characters/cafat/upright-full.svg",
  14072. bottom: 0.01
  14073. }
  14074. },
  14075. side: {
  14076. height: math.unit(5, "feet"),
  14077. weight: math.unit(150, "lb"),
  14078. name: "Side",
  14079. image: {
  14080. source: "./media/characters/cafat/side.svg"
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Small",
  14087. height: math.unit(7, "feet"),
  14088. default: true
  14089. },
  14090. {
  14091. name: "Large",
  14092. height: math.unit(15.5, "feet")
  14093. },
  14094. ]
  14095. )
  14096. };
  14097. characterMakers["Verin Raharra"] = () => {
  14098. return makeCharacter(
  14099. "Verin Raharra",
  14100. "Virgo113",
  14101. {
  14102. front: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(150, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/verin-raharra/front.svg",
  14108. extra: 5019/4835,
  14109. bottom: 0.023
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(7 + 5/12, "feet"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Upsized",
  14121. height: math.unit(20, "feet")
  14122. },
  14123. ]
  14124. )
  14125. };
  14126. characterMakers["Nakata"] = () => {
  14127. return makeCharacter(
  14128. "Nakata",
  14129. "Dalken",
  14130. {
  14131. front: {
  14132. height: math.unit(7, "feet"),
  14133. weight: math.unit(230, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/nakata/front.svg",
  14137. extra: 1.005,
  14138. bottom: 0.01
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(7, "feet"),
  14146. default: true
  14147. },
  14148. {
  14149. name: "Big",
  14150. height: math.unit(14, "feet")
  14151. },
  14152. {
  14153. name: "Macro",
  14154. height: math.unit(400, "feet")
  14155. },
  14156. ]
  14157. )
  14158. };
  14159. characterMakers["Lily"] = () => {
  14160. return makeCharacter(
  14161. "Lily",
  14162. "nexcg",
  14163. {
  14164. front: {
  14165. height: math.unit(4.91, "feet"),
  14166. weight: math.unit(100, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/lily/front.svg",
  14170. extra: 1585/1415,
  14171. bottom: 0.02
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(4.91, "feet"),
  14179. default: true
  14180. },
  14181. ]
  14182. )
  14183. };
  14184. characterMakers["Sheila"] = () => {
  14185. return makeCharacter(
  14186. "Sheila",
  14187. "Miststalker",
  14188. {
  14189. laying: {
  14190. height: math.unit(4 + 4/12, "feet"),
  14191. weight: math.unit(600, "lb"),
  14192. name: "Laying",
  14193. image: {
  14194. source: "./media/characters/sheila/laying.svg",
  14195. extra: 1333/1265,
  14196. bottom: 0.16
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(4 + 4/12, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. )
  14208. };
  14209. characterMakers["Sax"] = () => {
  14210. return makeCharacter(
  14211. "Sax",
  14212. "Counts-His-Toes",
  14213. {
  14214. front: {
  14215. height: math.unit(6, "feet"),
  14216. weight: math.unit(190, "lb"),
  14217. name: "Front",
  14218. image: {
  14219. source: "./media/characters/sax/front.svg",
  14220. extra: 1187/973,
  14221. bottom: 0.042
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Micro",
  14228. height: math.unit(4, "inches"),
  14229. default: true
  14230. },
  14231. ]
  14232. )
  14233. };
  14234. characterMakers["Pandora"] = () => {
  14235. return makeCharacter(
  14236. "Pandora",
  14237. "Pandora's Fox",
  14238. {
  14239. front: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(150, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/pandora/front.svg",
  14245. extra: 2720/2556,
  14246. bottom: 0.015
  14247. }
  14248. },
  14249. back: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/pandora/back.svg",
  14255. extra: 2720/2556,
  14256. bottom: 0.01
  14257. }
  14258. },
  14259. beans: {
  14260. height: math.unit(6/8, "feet"),
  14261. name: "Beans",
  14262. image: {
  14263. source: "./media/characters/pandora/beans.svg"
  14264. }
  14265. },
  14266. skirt: {
  14267. height: math.unit(6, "feet"),
  14268. weight: math.unit(150, "lb"),
  14269. name: "Skirt",
  14270. image: {
  14271. source: "./media/characters/pandora/skirt.svg",
  14272. extra: 1622/1525,
  14273. bottom: 0.015
  14274. }
  14275. },
  14276. hoodie: {
  14277. height: math.unit(6, "feet"),
  14278. weight: math.unit(150, "lb"),
  14279. name: "Hoodie",
  14280. image: {
  14281. source: "./media/characters/pandora/hoodie.svg",
  14282. extra: 1622/1525,
  14283. bottom: 0.015
  14284. }
  14285. },
  14286. casual: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(150, "lb"),
  14289. name: "Casual",
  14290. image: {
  14291. source: "./media/characters/pandora/casual.svg",
  14292. extra: 1622/1525,
  14293. bottom: 0.015
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(6, "feet")
  14301. },
  14302. {
  14303. name: "Big Steppy",
  14304. height: math.unit(1, "km"),
  14305. default: true
  14306. },
  14307. ]
  14308. )
  14309. };
  14310. characterMakers["Venio Darcony"] = () => {
  14311. return makeCharacter(
  14312. "Venio Darcony",
  14313. "redblackdragon",
  14314. {
  14315. side: {
  14316. height: math.unit(10, "feet"),
  14317. weight: math.unit(800, "kg"),
  14318. name: "Side",
  14319. image: {
  14320. source: "./media/characters/venio-darcony/side.svg",
  14321. extra: 1373/1003,
  14322. bottom: 0.037
  14323. }
  14324. },
  14325. front: {
  14326. height: math.unit(19, "feet"),
  14327. weight: math.unit(800, "kg"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/venio-darcony/front.svg"
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(19, "feet"),
  14335. weight: math.unit(800, "kg"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/venio-darcony/back.svg"
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Normal",
  14345. height: math.unit(10, "feet")
  14346. },
  14347. {
  14348. name: "Macro",
  14349. height: math.unit(130, "feet"),
  14350. default: true
  14351. },
  14352. {
  14353. name: "Macro+",
  14354. height: math.unit(240, "feet")
  14355. },
  14356. ]
  14357. )
  14358. };
  14359. characterMakers["Veski"] = () => {
  14360. return makeCharacter(
  14361. "Veski",
  14362. "Veski",
  14363. {
  14364. front: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/veski/front.svg",
  14370. extra: 1299/1225,
  14371. bottom: 0.04
  14372. }
  14373. },
  14374. back: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Back",
  14378. image: {
  14379. source: "./media/characters/veski/back.svg",
  14380. extra: 1299/1225,
  14381. bottom: 0.008
  14382. }
  14383. },
  14384. maw: {
  14385. height: math.unit(1.5 * 1.21, "feet"),
  14386. name: "Maw",
  14387. image: {
  14388. source: "./media/characters/veski/maw.svg"
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(2, "km"),
  14396. default: true
  14397. },
  14398. ]
  14399. )
  14400. };
  14401. characterMakers["Isabelle"] = () => {
  14402. return makeCharacter(
  14403. "Isabelle",
  14404. "evilwithin",
  14405. {
  14406. front: {
  14407. height: math.unit(5 + 7/12, "feet"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/isabelle/front.svg",
  14411. extra: 2130/1976,
  14412. bottom: 0.05
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Supermicro",
  14419. height: math.unit(10, "micrometers")
  14420. },
  14421. {
  14422. name: "Micro",
  14423. height: math.unit(1, "inch")
  14424. },
  14425. {
  14426. name: "Tiny",
  14427. height: math.unit(5, "inches")
  14428. },
  14429. {
  14430. name: "Standard",
  14431. height: math.unit(5 + 7/12, "inches")
  14432. },
  14433. {
  14434. name: "Macro",
  14435. height: math.unit(80, "meters"),
  14436. default: true
  14437. },
  14438. {
  14439. name: "Megamacro",
  14440. height: math.unit(250, "meters")
  14441. },
  14442. {
  14443. name: "Gigamacro",
  14444. height: math.unit(5, "km")
  14445. },
  14446. {
  14447. name: "Cosmic",
  14448. height: math.unit(2.5e6, "miles")
  14449. },
  14450. ]
  14451. )
  14452. };
  14453. characterMakers["Hanzo"] = () => {
  14454. return makeCharacter(
  14455. "Hanzo",
  14456. "dragondruid",
  14457. {
  14458. front: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/hanzo/front.svg",
  14464. extra: 374/344,
  14465. bottom: 0.02
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(8, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. )
  14477. };
  14478. characterMakers["Anna"] = () => {
  14479. return makeCharacter(
  14480. "Anna",
  14481. "dragondruid",
  14482. {
  14483. front: {
  14484. height: math.unit(7, "feet"),
  14485. weight: math.unit(130, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/anna/front.svg",
  14489. extra: 169/145,
  14490. bottom: 0.06
  14491. }
  14492. },
  14493. full: {
  14494. height: math.unit(4.96, "feet"),
  14495. weight: math.unit(220, "lb"),
  14496. name: "Full",
  14497. image: {
  14498. source: "./media/characters/anna/full.svg",
  14499. extra: 138/114,
  14500. bottom: 0.15
  14501. }
  14502. },
  14503. tongue: {
  14504. height: math.unit(2.53, "feet"),
  14505. name: "Tongue",
  14506. image: {
  14507. source: "./media/characters/anna/tongue.svg"
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(7, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. )
  14519. };
  14520. characterMakers["Ian Corvid"] = () => {
  14521. return makeCharacter(
  14522. "Ian Corvid",
  14523. "IanCorvid",
  14524. {
  14525. front: {
  14526. height: math.unit(7, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/ian-corvid/front.svg",
  14531. extra: 150/142,
  14532. bottom: 0.02
  14533. }
  14534. },
  14535. back: {
  14536. height: math.unit(7, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Back",
  14539. image: {
  14540. source: "./media/characters/ian-corvid/back.svg",
  14541. extra: 150/143,
  14542. bottom: 0.01
  14543. }
  14544. },
  14545. stomping: {
  14546. height: math.unit(7, "feet"),
  14547. weight: math.unit(150, "lb"),
  14548. name: "Stomping",
  14549. image: {
  14550. source: "./media/characters/ian-corvid/stomping.svg",
  14551. extra: 76/72
  14552. }
  14553. },
  14554. sitting: {
  14555. height: math.unit(7/1.8, "feet"),
  14556. weight: math.unit(150, "lb"),
  14557. name: "Sitting",
  14558. image: {
  14559. source: "./media/characters/ian-corvid/sitting.svg",
  14560. extra: 1400/1269,
  14561. bottom: 0.15
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Tiny Microw",
  14568. height: math.unit(1, "inch")
  14569. },
  14570. {
  14571. name: "Microw",
  14572. height: math.unit(6, "inches")
  14573. },
  14574. {
  14575. name: "Crow",
  14576. height: math.unit(7 + 1/12, "feet"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Macrow",
  14581. height: math.unit(176, "feet")
  14582. },
  14583. ]
  14584. )
  14585. };
  14586. characterMakers["Natalie Kellon"] = () => {
  14587. return makeCharacter(
  14588. "Natalie Kellon",
  14589. "lestrange110",
  14590. {
  14591. front: {
  14592. height: math.unit(5 + 7/12, "feet"),
  14593. weight: math.unit(147, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/natalie-kellon/front.svg",
  14597. extra: 1214/1141,
  14598. bottom: 0.02
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(1/16, "inch")
  14606. },
  14607. {
  14608. name: "Tiny",
  14609. height: math.unit(4, "inches")
  14610. },
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(5 + 7/12, "feet"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Amazon",
  14618. height: math.unit(12, "feet")
  14619. },
  14620. {
  14621. name: "Giantess",
  14622. height: math.unit(160, "meters")
  14623. },
  14624. {
  14625. name: "Titaness",
  14626. height: math.unit(800, "meters")
  14627. },
  14628. ]
  14629. )
  14630. };
  14631. characterMakers["Alluria"] = () => {
  14632. return makeCharacter(
  14633. "Alluria",
  14634. "Sir--Raptor",
  14635. {
  14636. front: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(150, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/alluria/front.svg",
  14642. extra: 806/738,
  14643. bottom: 0.01
  14644. }
  14645. },
  14646. side: {
  14647. height: math.unit(6, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Side",
  14650. image: {
  14651. source: "./media/characters/alluria/side.svg",
  14652. extra: 800/750,
  14653. }
  14654. },
  14655. back: {
  14656. height: math.unit(6, "feet"),
  14657. weight: math.unit(150, "lb"),
  14658. name: "Back",
  14659. image: {
  14660. source: "./media/characters/alluria/back.svg",
  14661. extra: 806/738,
  14662. }
  14663. },
  14664. frontMaid: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Front (Maid)",
  14668. image: {
  14669. source: "./media/characters/alluria/front-maid.svg",
  14670. extra: 806/738,
  14671. bottom: 0.01
  14672. }
  14673. },
  14674. sideMaid: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Side (Maid)",
  14678. image: {
  14679. source: "./media/characters/alluria/side-maid.svg",
  14680. extra: 800/750,
  14681. bottom: 0.005
  14682. }
  14683. },
  14684. backMaid: {
  14685. height: math.unit(6, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Back (Maid)",
  14688. image: {
  14689. source: "./media/characters/alluria/back-maid.svg",
  14690. extra: 806/738,
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Micro",
  14697. height: math.unit(6, "inches"),
  14698. default: true
  14699. },
  14700. ]
  14701. )
  14702. };
  14703. characterMakers["Kyle"] = () => {
  14704. return makeCharacter(
  14705. "Kyle",
  14706. "Jasmith",
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/kyle/front.svg",
  14714. extra: 1069/962,
  14715. bottom: 77.228/1727.45
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Macro",
  14722. height: math.unit(150, "feet"),
  14723. default: true
  14724. },
  14725. ]
  14726. )
  14727. };
  14728. characterMakers["Duncan"] = () => {
  14729. return makeCharacter(
  14730. "Duncan",
  14731. "Duncan",
  14732. {
  14733. front: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(300, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/duncan/front.svg",
  14739. extra: 1650/1482,
  14740. bottom: 0.05
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Macro",
  14747. height: math.unit(100, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. )
  14752. };
  14753. characterMakers["Memory"] = () => {
  14754. return makeCharacter(
  14755. "Memory",
  14756. "boringcactus",
  14757. {
  14758. front: {
  14759. height: math.unit(5 + 4/12, "feet"),
  14760. weight: math.unit(220, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/memory/front.svg",
  14764. extra: 3641/3545,
  14765. bottom: 0.03
  14766. }
  14767. },
  14768. back: {
  14769. height: math.unit(5 + 4/12, "feet"),
  14770. weight: math.unit(220, "lb"),
  14771. name: "Back",
  14772. image: {
  14773. source: "./media/characters/memory/back.svg",
  14774. extra: 3641/3545,
  14775. bottom: 0.025
  14776. }
  14777. },
  14778. frontSkirt: {
  14779. height: math.unit(5 + 4/12, "feet"),
  14780. weight: math.unit(220, "lb"),
  14781. name: "Front (Skirt)",
  14782. image: {
  14783. source: "./media/characters/memory/front-skirt.svg",
  14784. extra: 3641/3545,
  14785. bottom: 0.03
  14786. }
  14787. },
  14788. frontDress: {
  14789. height: math.unit(5 + 4/12, "feet"),
  14790. weight: math.unit(220, "lb"),
  14791. name: "Front (Dress)",
  14792. image: {
  14793. source: "./media/characters/memory/front-dress.svg",
  14794. extra: 3641/3545,
  14795. bottom: 0.03
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Micro",
  14802. height: math.unit(6, "inches"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(5 + 4/12, "feet")
  14808. },
  14809. ]
  14810. )
  14811. };
  14812. characterMakers["Luno"] = () => {
  14813. return makeCharacter(
  14814. "Luno",
  14815. "Jamesy",
  14816. {
  14817. front: {
  14818. height: math.unit(4 + 11/12, "feet"),
  14819. weight: math.unit(100, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/luno/front.svg",
  14823. extra: 1535/1487,
  14824. bottom: 0.03
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Micro",
  14831. height: math.unit(3, "inches")
  14832. },
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(4 + 11/12, "feet"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(300, "feet")
  14841. },
  14842. {
  14843. name: "Megamacro",
  14844. height: math.unit(700, "miles")
  14845. },
  14846. ]
  14847. )
  14848. };
  14849. characterMakers["Jamesy"] = () => {
  14850. return makeCharacter(
  14851. "Jamesy",
  14852. "Jamesy",
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 2/12, "feet"),
  14856. weight: math.unit(170, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/jamesy/front.svg",
  14860. extra: 440/382,
  14861. bottom: 0.005
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Micro",
  14868. height: math.unit(3, "inches")
  14869. },
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(6 + 2/12, "feet"),
  14873. default: true
  14874. },
  14875. {
  14876. name: "Macro",
  14877. height: math.unit(300, "feet")
  14878. },
  14879. {
  14880. name: "Megamacro",
  14881. height: math.unit(700, "miles")
  14882. },
  14883. ]
  14884. )
  14885. };
  14886. characterMakers["Mark"] = () => {
  14887. return makeCharacter(
  14888. "Mark",
  14889. "ich",
  14890. {
  14891. front: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(160, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/mark/front.svg",
  14897. extra: 3300/3100,
  14898. bottom: 136.42/3440.47
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Macro",
  14905. height: math.unit(120, "meters")
  14906. },
  14907. {
  14908. name: "Bigger Macro",
  14909. height: math.unit(350, "meters")
  14910. },
  14911. {
  14912. name: "Megamacro",
  14913. height: math.unit(8, "km"),
  14914. default: true
  14915. },
  14916. {
  14917. name: "Continental",
  14918. height: math.unit(4550, "km")
  14919. },
  14920. {
  14921. name: "Planetary",
  14922. height: math.unit(65000, "km")
  14923. },
  14924. ]
  14925. )
  14926. };
  14927. characterMakers["Mac"] = () => {
  14928. return makeCharacter(
  14929. "Mac",
  14930. "Macroceli",
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(400, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/mac/front.svg",
  14938. extra: 1048/987.7,
  14939. bottom: 60/1107.6,
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(500, "feet"),
  14947. default: true
  14948. },
  14949. ]
  14950. )
  14951. };
  14952. characterMakers["Bari"] = () => {
  14953. return makeCharacter(
  14954. "Bari",
  14955. "Bariamph",
  14956. {
  14957. front: {
  14958. height: math.unit(5 + 2/12, "feet"),
  14959. weight: math.unit(190, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/bari/front.svg",
  14963. extra: 3156/2880,
  14964. bottom: 0.03
  14965. }
  14966. },
  14967. back: {
  14968. height: math.unit(5 + 2/12, "feet"),
  14969. weight: math.unit(190, "lb"),
  14970. name: "Back",
  14971. image: {
  14972. source: "./media/characters/bari/back.svg",
  14973. extra: 3260/2834,
  14974. bottom: 0.025
  14975. }
  14976. },
  14977. frontPlush: {
  14978. height: math.unit(5 + 2/12, "feet"),
  14979. weight: math.unit(190, "lb"),
  14980. name: "Front (Plush)",
  14981. image: {
  14982. source: "./media/characters/bari/front-plush.svg",
  14983. extra: 1112/1061,
  14984. bottom: 0.002
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Micro",
  14991. height: math.unit(3, "inches")
  14992. },
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(5 + 2/12, "feet"),
  14996. default: true
  14997. },
  14998. {
  14999. name: "Macro",
  15000. height: math.unit(20, "feet")
  15001. },
  15002. ]
  15003. )
  15004. };
  15005. characterMakers["Hunter Misha Raven"] = () => {
  15006. return makeCharacter(
  15007. "Hunter Misha Raven",
  15008. "ashtrek",
  15009. {
  15010. front: {
  15011. height: math.unit(6 + 1/12, "feet"),
  15012. weight: math.unit(275, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/hunter-misha-raven/front.svg"
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Mortal",
  15022. height: math.unit(6 + 1/12, "feet")
  15023. },
  15024. {
  15025. name: "Divine",
  15026. height: math.unit(1.12134e34, "parsecs"),
  15027. default: true
  15028. },
  15029. ]
  15030. )
  15031. };
  15032. characterMakers["Max Calore"] = () => {
  15033. return makeCharacter(
  15034. "Max Calore",
  15035. "flamestar",
  15036. {
  15037. front: {
  15038. height: math.unit(6 + 3/12, "feet"),
  15039. weight: math.unit(220, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/max-calore/front.svg",
  15043. extra: 1700/1648,
  15044. bottom: 0.01
  15045. }
  15046. },
  15047. back: {
  15048. height: math.unit(6 + 3/12, "feet"),
  15049. weight: math.unit(220, "lb"),
  15050. name: "Back",
  15051. image: {
  15052. source: "./media/characters/max-calore/back.svg",
  15053. extra: 1700/1648,
  15054. bottom: 0.01
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(6 + 3/12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. )
  15066. };
  15067. characterMakers["Aspen"] = () => {
  15068. return makeCharacter(
  15069. "Aspen",
  15070. "Fidchell",
  15071. {
  15072. side: {
  15073. height: math.unit(2 + 8/12, "feet"),
  15074. weight: math.unit(99, "lb"),
  15075. name: "Side",
  15076. image: {
  15077. source: "./media/characters/aspen/side.svg",
  15078. extra: 152/138,
  15079. bottom: 0.032
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(2 + 8/12, "feet"),
  15087. default: true
  15088. },
  15089. ]
  15090. )
  15091. };
  15092. characterMakers["Sheila (Wolf)"] = () => {
  15093. return makeCharacter(
  15094. "Sheila (Wolf)",
  15095. "Fidchell",
  15096. {
  15097. side: {
  15098. height: math.unit(3 + 2/12, "feet"),
  15099. weight: math.unit(224, "lb"),
  15100. name: "Side",
  15101. image: {
  15102. source: "./media/characters/sheila-wolf/side.svg",
  15103. extra: 179/166,
  15104. bottom: 0.03
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(3 + 2/12, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. )
  15116. };
  15117. characterMakers["Michelle"] = () => {
  15118. return makeCharacter(
  15119. "Michelle",
  15120. "Fidchell",
  15121. {
  15122. side: {
  15123. height: math.unit(1 + 9/12, "feet"),
  15124. weight: math.unit(38, "lb"),
  15125. name: "Side",
  15126. image: {
  15127. source: "./media/characters/michelle/side.svg",
  15128. extra: 147/136.7,
  15129. bottom: 0.03
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(1 + 9/12, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. )
  15141. };
  15142. characterMakers["Nino"] = () => {
  15143. return makeCharacter(
  15144. "Nino",
  15145. "Fidchell",
  15146. {
  15147. front: {
  15148. height: math.unit(1 + 1/12, "feet"),
  15149. weight: math.unit(18, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/nino/front.svg"
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(1 + 1/12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. )
  15164. };
  15165. characterMakers["Viola"] = () => {
  15166. return makeCharacter(
  15167. "Viola",
  15168. "Fidchell",
  15169. {
  15170. front: {
  15171. height: math.unit(1, "feet"),
  15172. weight: math.unit(16, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/viola/front.svg"
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(1, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. )
  15187. };
  15188. characterMakers["Atlas"] = () => {
  15189. return makeCharacter(
  15190. "Atlas",
  15191. "Fidchell",
  15192. {
  15193. front: {
  15194. height: math.unit(6 + 5/12, "feet"),
  15195. weight: math.unit(580, "lb"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/atlas/front.svg",
  15199. extra: 298.5/290,
  15200. bottom: 0.015
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(6 + 5/12, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. )
  15212. };
  15213. characterMakers["Davy"] = () => {
  15214. return makeCharacter(
  15215. "Davy",
  15216. "Fidchell",
  15217. {
  15218. side: {
  15219. height: math.unit(1 + 10/12, "feet"),
  15220. weight: math.unit(25, "lb"),
  15221. name: "Side",
  15222. image: {
  15223. source: "./media/characters/davy/side.svg",
  15224. extra: 200/170,
  15225. bottom: 0.01
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(1 + 10/12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. )
  15237. };
  15238. characterMakers["Fiona"] = () => {
  15239. return makeCharacter(
  15240. "Fiona",
  15241. "Fidchell",
  15242. {
  15243. side: {
  15244. height: math.unit(4 + 8/12, "feet"),
  15245. weight: math.unit(166, "lb"),
  15246. name: "Side",
  15247. image: {
  15248. source: "./media/characters/fiona/side.svg",
  15249. extra: 232/220,
  15250. bottom: 0.03
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(4 + 8/12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. )
  15262. };
  15263. characterMakers["Lyla"] = () => {
  15264. return makeCharacter(
  15265. "Lyla",
  15266. "Fidchell",
  15267. {
  15268. front: {
  15269. height: math.unit(2, "feet"),
  15270. weight: math.unit(62, "lb"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/lyla/front.svg",
  15274. bottom: 0.1
  15275. }
  15276. },
  15277. },
  15278. [
  15279. {
  15280. name: "Normal",
  15281. height: math.unit(2, "feet"),
  15282. default: true
  15283. },
  15284. ]
  15285. )
  15286. };
  15287. characterMakers["Perseus"] = () => {
  15288. return makeCharacter(
  15289. "Perseus",
  15290. "Fidchell",
  15291. {
  15292. side: {
  15293. height: math.unit(1.8, "feet"),
  15294. weight: math.unit(44, "lb"),
  15295. name: "Side",
  15296. image: {
  15297. source: "./media/characters/perseus/side.svg",
  15298. bottom: 0.21
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(1.8, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. )
  15310. };
  15311. characterMakers["Remus"] = () => {
  15312. return makeCharacter(
  15313. "Remus",
  15314. "Fidchell",
  15315. {
  15316. side: {
  15317. height: math.unit(4 + 2/12, "feet"),
  15318. weight: math.unit(20, "lb"),
  15319. name: "Side",
  15320. image: {
  15321. source: "./media/characters/remus/side.svg"
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(4 + 2/12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. )
  15333. };
  15334. characterMakers["Raf"] = () => {
  15335. return makeCharacter(
  15336. "Raf",
  15337. "the_raf",
  15338. {
  15339. front: {
  15340. height: math.unit(4 + 11/12, "feet"),
  15341. weight: math.unit(114, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/raf/front.svg",
  15345. bottom: 0.01
  15346. }
  15347. },
  15348. side: {
  15349. height: math.unit(4 + 11/12, "feet"),
  15350. weight: math.unit(114, "lb"),
  15351. name: "Side",
  15352. image: {
  15353. source: "./media/characters/raf/side.svg",
  15354. bottom: 0.005
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Micro",
  15361. height: math.unit(2, "inches")
  15362. },
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(4 + 11/12, "feet"),
  15366. default: true
  15367. },
  15368. {
  15369. name: "Macro",
  15370. height: math.unit(70, "feet")
  15371. },
  15372. ]
  15373. )
  15374. };
  15375. characterMakers["Liam Einarr"] = () => {
  15376. return makeCharacter(
  15377. "Liam Einarr",
  15378. "LiamEinarr",
  15379. {
  15380. front: {
  15381. height: math.unit(1.5, "meters"),
  15382. weight: math.unit(68, "kg"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/liam-einarr/front.svg",
  15386. extra: 2822/2666
  15387. }
  15388. },
  15389. back: {
  15390. height: math.unit(1.5, "meters"),
  15391. weight: math.unit(68, "kg"),
  15392. name: "Back",
  15393. image: {
  15394. source: "./media/characters/liam-einarr/back.svg",
  15395. extra: 2822/2666,
  15396. bottom: 0.015
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(1.5, "meters"),
  15404. default: true
  15405. },
  15406. {
  15407. name: "Macro",
  15408. height: math.unit(150, "meters")
  15409. },
  15410. {
  15411. name: "Megamacro",
  15412. height: math.unit(35, "km")
  15413. },
  15414. ]
  15415. )
  15416. };
  15417. characterMakers["Linda"] = () => {
  15418. return makeCharacter(
  15419. "Linda",
  15420. "Dalken",
  15421. {
  15422. front: {
  15423. height: math.unit(6, "feet"),
  15424. weight: math.unit(75, "kg"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/linda/front.svg",
  15428. extra: 930/874,
  15429. bottom: 0.004
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(6, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. )
  15441. };
  15442. characterMakers["Caylex"] = () => {
  15443. return makeCharacter(
  15444. "Caylex",
  15445. "ArgentVZ",
  15446. {
  15447. front: {
  15448. height: math.unit(6 + 8/12, "feet"),
  15449. weight: math.unit(220, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/caylex/front.svg",
  15453. extra: 821/772,
  15454. bottom: 0.07
  15455. }
  15456. },
  15457. back: {
  15458. height: math.unit(6 + 8/12, "feet"),
  15459. weight: math.unit(220, "lb"),
  15460. name: "Back",
  15461. image: {
  15462. source: "./media/characters/caylex/back.svg",
  15463. extra: 821/772,
  15464. bottom: 0.022
  15465. }
  15466. },
  15467. hand: {
  15468. height: math.unit(1.25, "feet"),
  15469. name: "Hand",
  15470. image: {
  15471. source: "./media/characters/caylex/hand.svg"
  15472. }
  15473. },
  15474. foot: {
  15475. height: math.unit(1.6, "feet"),
  15476. name: "Foot",
  15477. image: {
  15478. source: "./media/characters/caylex/foot.svg"
  15479. }
  15480. },
  15481. armored: {
  15482. height: math.unit(6 + 8/12, "feet"),
  15483. weight: math.unit(250, "lb"),
  15484. name: "Armored",
  15485. image: {
  15486. source: "./media/characters/caylex/armored.svg",
  15487. extra: 1420/1310,
  15488. bottom: 0.045
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(6 + 8/12, "feet"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Normal+",
  15500. height: math.unit(12, "feet")
  15501. },
  15502. ]
  15503. )
  15504. };
  15505. characterMakers["Alana"] = () => {
  15506. return makeCharacter(
  15507. "Alana",
  15508. "Adeleide",
  15509. {
  15510. front: {
  15511. height: math.unit(7 + 6/12, "feet"),
  15512. weight: math.unit(288, "lb"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/alana/front.svg",
  15516. extra: 679/653,
  15517. bottom: 22.5/701
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(7 + 6/12, "feet")
  15525. },
  15526. {
  15527. name: "Large",
  15528. height: math.unit(50, "feet")
  15529. },
  15530. {
  15531. name: "Macro",
  15532. height: math.unit(100, "feet"),
  15533. default: true
  15534. },
  15535. {
  15536. name: "Macro+",
  15537. height: math.unit(200, "feet")
  15538. },
  15539. ]
  15540. )
  15541. };
  15542. characterMakers["Hasani"] = () => {
  15543. return makeCharacter(
  15544. "Hasani",
  15545. "BishopBun",
  15546. {
  15547. front: {
  15548. height: math.unit(6 + 1/12, "feet"),
  15549. weight: math.unit(210, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/hasani/front.svg",
  15553. extra: 244/232,
  15554. bottom: 0.01
  15555. }
  15556. },
  15557. back: {
  15558. height: math.unit(6 + 1/12, "feet"),
  15559. weight: math.unit(210, "lb"),
  15560. name: "Back",
  15561. image: {
  15562. source: "./media/characters/hasani/back.svg",
  15563. extra: 244/232,
  15564. bottom: 0.01
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(6 + 1/12, "feet")
  15572. },
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(175, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. )
  15580. };
  15581. characterMakers["Nita"] = () => {
  15582. return makeCharacter(
  15583. "Nita",
  15584. "Ich",
  15585. {
  15586. front: {
  15587. height: math.unit(1.82, "meters"),
  15588. weight: math.unit(140, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/nita/front.svg",
  15592. extra: 2473/2363,
  15593. bottom: 0.01
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(1.82, "m")
  15601. },
  15602. {
  15603. name: "Macro",
  15604. height: math.unit(300, "m")
  15605. },
  15606. {
  15607. name: "Mistake Canon",
  15608. height: math.unit(0.5, "miles"),
  15609. default: true
  15610. },
  15611. {
  15612. name: "Big Mistake",
  15613. height: math.unit(13, "miles")
  15614. },
  15615. {
  15616. name: "Playing God",
  15617. height: math.unit(2450, "miles")
  15618. },
  15619. ]
  15620. )
  15621. };
  15622. characterMakers["Shiriko"] = () => {
  15623. return makeCharacter(
  15624. "Shiriko",
  15625. "Shiriko",
  15626. {
  15627. front: {
  15628. height: math.unit(4, "feet"),
  15629. weight: math.unit(120, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/shiriko/front.svg",
  15633. extra: 195/188
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(4, "feet"),
  15641. default: true
  15642. },
  15643. ]
  15644. )
  15645. };
  15646. characterMakers["Deja"] = () => {
  15647. return makeCharacter(
  15648. "Deja",
  15649. "dejaroo",
  15650. {
  15651. front: {
  15652. height: math.unit(6, "feet"),
  15653. name: "front",
  15654. image: {
  15655. source: "./media/characters/deja/front.svg",
  15656. extra: 926/840,
  15657. bottom: 0.07
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Planck Length",
  15664. height: math.unit(1.6e-35, "meters")
  15665. },
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(30.48, "meters"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Universal",
  15673. height: math.unit(8.8e26, "meters")
  15674. },
  15675. ]
  15676. )
  15677. };
  15678. characterMakers["Anima"] = () => {
  15679. return makeCharacter(
  15680. "Anima",
  15681. "Anima",
  15682. {
  15683. side: {
  15684. height: math.unit(8, "feet"),
  15685. weight: math.unit(6300, "lb"),
  15686. name: "Side",
  15687. image: {
  15688. source: "./media/characters/anima/side.svg",
  15689. bottom: 0.035
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(8, "feet"),
  15697. default: true
  15698. },
  15699. ]
  15700. )
  15701. };
  15702. characterMakers["Bianca"] = () => {
  15703. return makeCharacter(
  15704. "Bianca",
  15705. "Sdocat",
  15706. {
  15707. front: {
  15708. height: math.unit(8, "feet"),
  15709. weight: math.unit(350, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/bianca/front.svg",
  15713. extra: 234/225,
  15714. bottom: 0.03
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(8, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. )
  15726. };
  15727. characterMakers["Adinia"] = () => {
  15728. return makeCharacter(
  15729. "Adinia",
  15730. "Sdocat",
  15731. {
  15732. front: {
  15733. height: math.unit(6, "feet"),
  15734. weight: math.unit(150, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/adinia/front.svg",
  15738. extra: 1845/1672,
  15739. bottom: 0.02
  15740. }
  15741. },
  15742. back: {
  15743. height: math.unit(6, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Back",
  15746. image: {
  15747. source: "./media/characters/adinia/back.svg",
  15748. extra: 1845/1672,
  15749. bottom: 0.002
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(11 + 5/12, "feet"),
  15757. default: true
  15758. },
  15759. ]
  15760. )
  15761. };
  15762. characterMakers["Lykasa"] = () => {
  15763. return makeCharacter(
  15764. "Lykasa",
  15765. "Roxas00137",
  15766. {
  15767. front: {
  15768. height: math.unit(3, "meters"),
  15769. weight: math.unit(200, "kg"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/lykasa/front.svg",
  15773. extra: 1076/976,
  15774. bottom: 0.06
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(3, "meters")
  15782. },
  15783. {
  15784. name: "Kaiku",
  15785. height: math.unit(120, "meters"),
  15786. default: true
  15787. },
  15788. {
  15789. name: "Mega Kaiju",
  15790. height: math.unit(240, "km")
  15791. },
  15792. {
  15793. name: "Giga Kaiju",
  15794. height: math.unit(400, "megameters")
  15795. },
  15796. {
  15797. name: "Tera Kaiju",
  15798. height: math.unit(800, "gigameters")
  15799. },
  15800. {
  15801. name: "Kaiju Dragon Goddess",
  15802. height: math.unit(26, "zettaparsecs")
  15803. },
  15804. ]
  15805. )
  15806. };
  15807. characterMakers["Malfaren"] = () => {
  15808. return makeCharacter(
  15809. "Malfaren",
  15810. "Malfaren",
  15811. {
  15812. side: {
  15813. height: math.unit(283/124*6, "feet"),
  15814. weight: math.unit(35000, "lb"),
  15815. name: "Side",
  15816. image: {
  15817. source: "./media/characters/malfaren/side.svg",
  15818. extra: 2500/1010,
  15819. bottom: 0.01
  15820. }
  15821. },
  15822. front: {
  15823. height: math.unit(22.36, "feet"),
  15824. weight: math.unit(35000, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/malfaren/front.svg",
  15828. extra: 1631/1476,
  15829. bottom: 0.01
  15830. }
  15831. },
  15832. maw: {
  15833. height: math.unit(6.9, "feet"),
  15834. name: "Maw",
  15835. image: {
  15836. source: "./media/characters/malfaren/maw.svg"
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Big",
  15843. height: math.unit(283/162*6, "feet"),
  15844. },
  15845. {
  15846. name: "Bigger",
  15847. height: math.unit(283/124*6, "feet")
  15848. },
  15849. {
  15850. name: "Massive",
  15851. height: math.unit(283/92*6, "feet"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "👀💦",
  15856. height: math.unit(283/73*6, "feet"),
  15857. },
  15858. ]
  15859. )
  15860. };
  15861. characterMakers["Kernel"] = () => {
  15862. return makeCharacter(
  15863. "Kernel",
  15864. "KernelDecoy",
  15865. {
  15866. front: {
  15867. height: math.unit(1.7, "m"),
  15868. weight: math.unit(70, "kg"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/kernel/front.svg",
  15872. extra: 222/210,
  15873. bottom: 0.007
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Nano",
  15880. height: math.unit(17, "micrometers")
  15881. },
  15882. {
  15883. name: "Micro",
  15884. height: math.unit(1.7, "mm")
  15885. },
  15886. {
  15887. name: "Small",
  15888. height: math.unit(1.7, "cm")
  15889. },
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(1.7, "m"),
  15893. default: true
  15894. },
  15895. ]
  15896. )
  15897. };
  15898. characterMakers["Jayne Folest"] = () => {
  15899. return makeCharacter(
  15900. "Jayne Folest",
  15901. "JayneFolest",
  15902. {
  15903. front: {
  15904. height: math.unit(1.75, "meters"),
  15905. weight: math.unit(65, "kg"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/jayne-folest/front.svg",
  15909. extra: 2115/2007,
  15910. bottom: 0.02
  15911. }
  15912. },
  15913. back: {
  15914. height: math.unit(1.75, "meters"),
  15915. weight: math.unit(65, "kg"),
  15916. name: "Back",
  15917. image: {
  15918. source: "./media/characters/jayne-folest/back.svg",
  15919. extra: 2115/2007,
  15920. bottom: 0.005
  15921. }
  15922. },
  15923. frontClothed: {
  15924. height: math.unit(1.75, "meters"),
  15925. weight: math.unit(65, "kg"),
  15926. name: "Front (Clothed)",
  15927. image: {
  15928. source: "./media/characters/jayne-folest/front-clothed.svg",
  15929. extra: 2115/2007,
  15930. bottom: 0.035
  15931. }
  15932. },
  15933. hand: {
  15934. height: math.unit(1/1.260, "feet"),
  15935. name: "Hand",
  15936. image: {
  15937. source: "./media/characters/jayne-folest/hand.svg"
  15938. }
  15939. },
  15940. foot: {
  15941. height: math.unit(1/0.918, "feet"),
  15942. name: "Foot",
  15943. image: {
  15944. source: "./media/characters/jayne-folest/foot.svg"
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Micro",
  15951. height: math.unit(4, "cm")
  15952. },
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(1.75, "meters")
  15956. },
  15957. {
  15958. name: "Macro",
  15959. height: math.unit(47.5, "meters"),
  15960. default: true
  15961. },
  15962. ]
  15963. )
  15964. };
  15965. characterMakers["Algier"] = () => {
  15966. return makeCharacter(
  15967. "Algier",
  15968. "Silas",
  15969. {
  15970. front: {
  15971. height: math.unit(180, "cm"),
  15972. weight: math.unit(70, "kg"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/algier/front.svg",
  15976. extra: 596/572,
  15977. bottom: 0.04
  15978. }
  15979. },
  15980. back: {
  15981. height: math.unit(180, "cm"),
  15982. weight: math.unit(70, "kg"),
  15983. name: "Back",
  15984. image: {
  15985. source: "./media/characters/algier/back.svg",
  15986. extra: 596/572,
  15987. bottom: 0.025
  15988. }
  15989. },
  15990. frontdressed: {
  15991. height: math.unit(180, "cm"),
  15992. weight: math.unit(150, "kg"),
  15993. name: "Front-dressed",
  15994. image: {
  15995. source: "./media/characters/algier/front-dressed.svg",
  15996. extra: 596/572,
  15997. bottom: 0.038
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Micro",
  16004. height: math.unit(5, "cm")
  16005. },
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(180, "cm"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Macro",
  16013. height: math.unit(64, "m")
  16014. },
  16015. ]
  16016. )
  16017. };
  16018. characterMakers["Pretzel"] = () => {
  16019. return makeCharacter(
  16020. "Pretzel",
  16021. "Serpentus",
  16022. {
  16023. upright: {
  16024. height: math.unit(7, "feet"),
  16025. weight: math.unit(300, "lb"),
  16026. name: "Upright",
  16027. image: {
  16028. source: "./media/characters/pretzel/upright.svg",
  16029. extra: 534/522,
  16030. bottom: 0.065
  16031. }
  16032. },
  16033. sprawling: {
  16034. height: math.unit(3.75, "feet"),
  16035. weight: math.unit(300, "lb"),
  16036. name: "Sprawling",
  16037. image: {
  16038. source: "./media/characters/pretzel/sprawling.svg",
  16039. extra: 314/281,
  16040. bottom: 0.1
  16041. }
  16042. },
  16043. tongue: {
  16044. height: math.unit(2, "feet"),
  16045. name: "Tongue",
  16046. image: {
  16047. source: "./media/characters/pretzel/tongue.svg"
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(7, "feet"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Oversized",
  16059. height: math.unit(15, "feet")
  16060. },
  16061. {
  16062. name: "Huge",
  16063. height: math.unit(30, "feet")
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(250, "feet")
  16068. },
  16069. ]
  16070. )
  16071. };
  16072. characterMakers["Roxi"] = () => {
  16073. return makeCharacter(
  16074. "Roxi",
  16075. "carthusflame",
  16076. {
  16077. sideFront: {
  16078. height: math.unit(5 + 2/12, "feet"),
  16079. weight: math.unit(120, "lb"),
  16080. name: "Front Side",
  16081. image: {
  16082. source: "./media/characters/roxi/side-front.svg",
  16083. extra: 2924/2717,
  16084. bottom: 0.08
  16085. }
  16086. },
  16087. sideBack: {
  16088. height: math.unit(5 + 2/12, "feet"),
  16089. weight: math.unit(120, "lb"),
  16090. name: "Back Side",
  16091. image: {
  16092. source: "./media/characters/roxi/side-back.svg",
  16093. extra: 2904/2693,
  16094. bottom: 0.06
  16095. }
  16096. },
  16097. front: {
  16098. height: math.unit(5 + 2/12, "feet"),
  16099. weight: math.unit(120, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/roxi/front.svg",
  16103. extra: 2028/1907,
  16104. bottom: 0.01
  16105. }
  16106. },
  16107. frontAlt: {
  16108. height: math.unit(5 + 2/12, "feet"),
  16109. weight: math.unit(120, "lb"),
  16110. name: "Front (Alt)",
  16111. image: {
  16112. source: "./media/characters/roxi/front-alt.svg",
  16113. extra: 1828/1798,
  16114. bottom: 0.01
  16115. }
  16116. },
  16117. sitting: {
  16118. height: math.unit(2.8, "feet"),
  16119. weight: math.unit(120, "lb"),
  16120. name: "Sitting",
  16121. image: {
  16122. source: "./media/characters/roxi/sitting.svg",
  16123. extra: 2660/2462,
  16124. bottom: 0.1
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(5 + 2/12, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. )
  16136. };
  16137. characterMakers["Shadow"] = () => {
  16138. return makeCharacter(
  16139. "Shadow",
  16140. "MKShadowdrake",
  16141. {
  16142. side: {
  16143. height: math.unit(55, "feet"),
  16144. weight: math.unit(153, "tons"),
  16145. name: "Side",
  16146. image: {
  16147. source: "./media/characters/shadow/side.svg",
  16148. extra: 701/628,
  16149. bottom: 0.02
  16150. }
  16151. },
  16152. flying: {
  16153. height: math.unit(145, "feet"),
  16154. weight: math.unit(153, "tons"),
  16155. name: "Flying",
  16156. image: {
  16157. source: "./media/characters/shadow/flying.svg"
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(55, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. )
  16169. };
  16170. characterMakers["Marcie"] = () => {
  16171. return makeCharacter(
  16172. "Marcie",
  16173. "Macroceli",
  16174. {
  16175. front: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(200, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/marcie/front.svg",
  16181. extra: 960/876,
  16182. bottom: 58/1017.87
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Macro",
  16189. height: math.unit(1, "mile"),
  16190. default: true
  16191. },
  16192. ]
  16193. )
  16194. };
  16195. characterMakers["Kachina"] = () => {
  16196. return makeCharacter(
  16197. "Kachina",
  16198. "Trisha",
  16199. {
  16200. front: {
  16201. height: math.unit(7, "feet"),
  16202. weight: math.unit(200, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/kachina/front.svg",
  16206. extra: 1290.68/1119,
  16207. bottom: 36.5/1327.18
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(7, "feet"),
  16215. default: true
  16216. },
  16217. ]
  16218. )
  16219. };
  16220. characterMakers["Kash"] = () => {
  16221. return makeCharacter(
  16222. "Kash",
  16223. "4wrz",
  16224. {
  16225. looking: {
  16226. height: math.unit(2, "meters"),
  16227. weight: math.unit(300, "kg"),
  16228. name: "Looking",
  16229. image: {
  16230. source: "./media/characters/kash/looking.svg",
  16231. extra: 474/344,
  16232. bottom: 0.03
  16233. }
  16234. },
  16235. side: {
  16236. height: math.unit(2, "meters"),
  16237. weight: math.unit(300, "kg"),
  16238. name: "Side",
  16239. image: {
  16240. source: "./media/characters/kash/side.svg",
  16241. extra: 302/251,
  16242. bottom: 0.03
  16243. }
  16244. },
  16245. front: {
  16246. height: math.unit(2, "meters"),
  16247. weight: math.unit(300, "kg"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/kash/front.svg",
  16251. extra: 495/360,
  16252. bottom: 0.015
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(2, "meters"),
  16260. default: true
  16261. },
  16262. {
  16263. name: "Big",
  16264. height: math.unit(3, "meters")
  16265. },
  16266. {
  16267. name: "Large",
  16268. height: math.unit(5, "meters")
  16269. },
  16270. ]
  16271. )
  16272. };
  16273. characterMakers["Lalim"] = () => {
  16274. return makeCharacter(
  16275. "Lalim",
  16276. "Bruyaglovae",
  16277. {
  16278. feeding: {
  16279. height: math.unit(6.7, "feet"),
  16280. weight: math.unit(350, "lb"),
  16281. name: "Feeding",
  16282. image: {
  16283. source: "./media/characters/lalim/feeding.svg",
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(6.7, "feet"),
  16291. default: true
  16292. },
  16293. ]
  16294. )
  16295. };
  16296. characterMakers["De'Vout"] = () => {
  16297. return makeCharacter(
  16298. "De'Vout",
  16299. "Bruyaglovae",
  16300. {
  16301. front: {
  16302. height: math.unit(9.5, "feet"),
  16303. weight: math.unit(600, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/de'vout/front.svg",
  16307. extra: 1443/1328,
  16308. bottom: 0.025
  16309. }
  16310. },
  16311. back: {
  16312. height: math.unit(9.5, "feet"),
  16313. weight: math.unit(600, "lb"),
  16314. name: "Back",
  16315. image: {
  16316. source: "./media/characters/de'vout/back.svg",
  16317. extra: 1443/1328
  16318. }
  16319. },
  16320. frontDressed: {
  16321. height: math.unit(9.5, "feet"),
  16322. weight: math.unit(600, "lb"),
  16323. name: "Front (Dressed",
  16324. image: {
  16325. source: "./media/characters/de'vout/front-dressed.svg",
  16326. extra: 1443/1328,
  16327. bottom: 0.025
  16328. }
  16329. },
  16330. backDressed: {
  16331. height: math.unit(9.5, "feet"),
  16332. weight: math.unit(600, "lb"),
  16333. name: "Back (Dressed",
  16334. image: {
  16335. source: "./media/characters/de'vout/back-dressed.svg",
  16336. extra: 1443/1328
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(9.5, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. )
  16348. };
  16349. characterMakers["Talana"] = () => {
  16350. return makeCharacter(
  16351. "Talana",
  16352. "Bruyaglovae",
  16353. {
  16354. front: {
  16355. height: math.unit(8, "feet"),
  16356. weight: math.unit(225, "lb"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/talana/front.svg",
  16360. extra: 1410/1300,
  16361. bottom: 0.015
  16362. }
  16363. },
  16364. frontDressed: {
  16365. height: math.unit(8, "feet"),
  16366. weight: math.unit(225, "lb"),
  16367. name: "Front (Dressed",
  16368. image: {
  16369. source: "./media/characters/talana/front-dressed.svg",
  16370. extra: 1410/1300,
  16371. bottom: 0.015
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(8, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. )
  16383. };
  16384. characterMakers["Xeauvok"] = () => {
  16385. return makeCharacter(
  16386. "Xeauvok",
  16387. "Bruyaglovae",
  16388. {
  16389. side: {
  16390. height: math.unit(7.2, "feet"),
  16391. weight: math.unit(150, "lb"),
  16392. name: "Side",
  16393. image: {
  16394. source: "./media/characters/xeauvok/side.svg",
  16395. extra: 1975/1523,
  16396. bottom: 0.07
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(7.2, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. )
  16408. };
  16409. characterMakers["Zara"] = () => {
  16410. return makeCharacter(
  16411. "Zara",
  16412. "Dalken",
  16413. {
  16414. side: {
  16415. height: math.unit(10, "feet"),
  16416. weight: math.unit(900, "kg"),
  16417. name: "Side",
  16418. image: {
  16419. source: "./media/characters/zara/side.svg",
  16420. extra: 504/498
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(10, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. )
  16432. };
  16433. characterMakers["Richard (Dragon)"] = () => {
  16434. return makeCharacter(
  16435. "Richard (Dragon)",
  16436. "Xanaomin",
  16437. {
  16438. side: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Side",
  16442. image: {
  16443. source: "./media/characters/richard-dragon/side.svg",
  16444. extra: 845/340,
  16445. bottom: 0.017
  16446. }
  16447. },
  16448. maw: {
  16449. height: math.unit(2.97, "feet"),
  16450. name: "Maw",
  16451. image: {
  16452. source: "./media/characters/richard-dragon/maw.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. ]
  16458. )
  16459. };
  16460. characterMakers["Richard (Smeargle)"] = () => {
  16461. return makeCharacter(
  16462. "Richard (Smeargle)",
  16463. "Xanaomin",
  16464. {
  16465. front: {
  16466. height: math.unit(4, "feet"),
  16467. weight: math.unit(100, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/richard-smeargle/front.svg",
  16471. extra: 2952/2820,
  16472. bottom: 0.028
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(4, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Dynamax",
  16484. height: math.unit(20, "meters")
  16485. },
  16486. ]
  16487. )
  16488. };
  16489. characterMakers["Klay"] = () => {
  16490. return makeCharacter(
  16491. "Klay",
  16492. "klaythebat",
  16493. {
  16494. front: {
  16495. height: math.unit(6, "feet"),
  16496. weight: math.unit(110, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/klay/front.svg",
  16500. extra: 962/883,
  16501. bottom: 0.04
  16502. }
  16503. },
  16504. back: {
  16505. height: math.unit(6, "feet"),
  16506. weight: math.unit(110, "lb"),
  16507. name: "Back",
  16508. image: {
  16509. source: "./media/characters/klay/back.svg",
  16510. extra: 962/883
  16511. }
  16512. },
  16513. beans: {
  16514. height: math.unit(1.15, "feet"),
  16515. name: "Beans",
  16516. image: {
  16517. source: "./media/characters/klay/beans.svg"
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Micro",
  16524. height: math.unit(6, "inches")
  16525. },
  16526. {
  16527. name: "Mini",
  16528. height: math.unit(3, "feet")
  16529. },
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(6, "feet"),
  16533. default: true
  16534. },
  16535. {
  16536. name: "Big",
  16537. height: math.unit(25, "feet")
  16538. },
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(100, "feet")
  16542. },
  16543. {
  16544. name: "Megamacro",
  16545. height: math.unit(400, "feet")
  16546. },
  16547. ]
  16548. )
  16549. };
  16550. characterMakers["Marcus"] = () => {
  16551. return makeCharacter(
  16552. "Marcus",
  16553. "klaythebat",
  16554. {
  16555. front: {
  16556. height: math.unit(6, "feet"),
  16557. weight: math.unit(160, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/marcus/front.svg",
  16561. extra: 734/676,
  16562. bottom: 0.03
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Little",
  16569. height: math.unit(6, "feet")
  16570. },
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(110, "feet"),
  16574. default: true
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(250, "feet")
  16579. },
  16580. {
  16581. name: "Megamacro",
  16582. height: math.unit(1000, "feet")
  16583. },
  16584. ]
  16585. )
  16586. };
  16587. characterMakers["Claude DelRoute"] = () => {
  16588. return makeCharacter(
  16589. "Claude DelRoute",
  16590. "Claude",
  16591. {
  16592. front: {
  16593. height: math.unit(7, "feet"),
  16594. weight: math.unit(275, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/claude-delroute/front.svg",
  16598. extra: 230/214,
  16599. bottom: 0.007
  16600. }
  16601. },
  16602. side: {
  16603. height: math.unit(7, "feet"),
  16604. weight: math.unit(275, "lb"),
  16605. name: "Side",
  16606. image: {
  16607. source: "./media/characters/claude-delroute/side.svg",
  16608. extra: 222/214,
  16609. bottom: 0.01
  16610. }
  16611. },
  16612. back: {
  16613. height: math.unit(7, "feet"),
  16614. weight: math.unit(275, "lb"),
  16615. name: "Back",
  16616. image: {
  16617. source: "./media/characters/claude-delroute/back.svg",
  16618. extra: 230/214,
  16619. bottom: 0.015
  16620. }
  16621. },
  16622. maw: {
  16623. height: math.unit(0.6407, "meters"),
  16624. name: "Maw",
  16625. image: {
  16626. source: "./media/characters/claude-delroute/maw.svg"
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(7, "feet"),
  16634. default: true
  16635. },
  16636. {
  16637. name: "Lorge",
  16638. height: math.unit(20, "feet")
  16639. },
  16640. ]
  16641. )
  16642. };
  16643. characterMakers["Dragonien"] = () => {
  16644. return makeCharacter(
  16645. "Dragonien",
  16646. "Dragonien",
  16647. {
  16648. front: {
  16649. height: math.unit(8 + 4/12, "feet"),
  16650. weight: math.unit(600, "lb"),
  16651. name: "Front",
  16652. image: {
  16653. source: "./media/characters/dragonien/front.svg",
  16654. extra: 100/94,
  16655. bottom: 3.3/103.3445
  16656. }
  16657. },
  16658. back: {
  16659. height: math.unit(8 + 4/12, "feet"),
  16660. weight: math.unit(600, "lb"),
  16661. name: "Back",
  16662. image: {
  16663. source: "./media/characters/dragonien/back.svg",
  16664. extra: 776/746,
  16665. bottom: 6.4/782.0616
  16666. }
  16667. },
  16668. foot: {
  16669. height: math.unit(1.54, "feet"),
  16670. name: "Foot",
  16671. image: {
  16672. source: "./media/characters/dragonien/foot.svg",
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(8 + 4/12, "feet"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(200, "feet")
  16685. },
  16686. {
  16687. name: "Megamacro",
  16688. height: math.unit(1, "mile")
  16689. },
  16690. {
  16691. name: "Gigamacro",
  16692. height: math.unit(1000, "miles")
  16693. },
  16694. ]
  16695. )
  16696. };
  16697. characterMakers["Desta"] = () => {
  16698. return makeCharacter(
  16699. "Desta",
  16700. "Desta",
  16701. {
  16702. front: {
  16703. height: math.unit(5 + 2/12, "feet"),
  16704. weight: math.unit(110, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/desta/front.svg",
  16708. extra: 1482/1417
  16709. }
  16710. },
  16711. side: {
  16712. height: math.unit(5 + 2/12, "feet"),
  16713. weight: math.unit(110, "lb"),
  16714. name: "Side",
  16715. image: {
  16716. source: "./media/characters/desta/side.svg",
  16717. extra: 2579/2491,
  16718. bottom: 0.053
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Micro",
  16725. height: math.unit(6, "inches")
  16726. },
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(5 + 2/12, "feet"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Macro",
  16734. height: math.unit(62, "feet")
  16735. },
  16736. {
  16737. name: "Megamacro",
  16738. height: math.unit(1800, "feet")
  16739. },
  16740. ]
  16741. )
  16742. };
  16743. characterMakers["Storm Alystar"] = () => {
  16744. return makeCharacter(
  16745. "Storm Alystar",
  16746. "Thunderbum",
  16747. {
  16748. front: {
  16749. height: math.unit(10, "feet"),
  16750. weight: math.unit(700, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/storm-alystar/front.svg",
  16754. extra: 2112/1898,
  16755. bottom: 0.034
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Micro",
  16762. height: math.unit(3.5, "inches")
  16763. },
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(10, "feet"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "Macro",
  16771. height: math.unit(400, "feet")
  16772. },
  16773. {
  16774. name: "Deific",
  16775. height: math.unit(60, "miles")
  16776. },
  16777. ]
  16778. )
  16779. };
  16780. characterMakers["Ilia"] = () => {
  16781. return makeCharacter(
  16782. "Ilia",
  16783. "IliaVulpine",
  16784. {
  16785. front: {
  16786. height: math.unit(2.35, "meters"),
  16787. weight: math.unit(119, "kg"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/ilia/front.svg",
  16791. extra: 1285/1255,
  16792. bottom: 0.06
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(2.35, "meters")
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(140, "meters"),
  16804. default: true
  16805. },
  16806. {
  16807. name: "Megamacro",
  16808. height: math.unit(100, "miles")
  16809. },
  16810. ]
  16811. )
  16812. };
  16813. characterMakers["KingDead"] = () => {
  16814. return makeCharacter(
  16815. "KingDead",
  16816. "KingDead",
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 5/12, "feet"),
  16820. weight: math.unit(190, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/kingdead/front.svg",
  16824. extra: 1228/1177
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Micro",
  16831. height: math.unit(7, "inches")
  16832. },
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(6 + 5/12, "feet")
  16836. },
  16837. {
  16838. name: "Macro",
  16839. height: math.unit(150, "feet"),
  16840. default: true
  16841. },
  16842. {
  16843. name: "Megamacro",
  16844. height: math.unit(200, "miles")
  16845. },
  16846. ]
  16847. )
  16848. };
  16849. characterMakers["Kyrehx"] = () => {
  16850. return makeCharacter(
  16851. "Kyrehx",
  16852. "Kyrehx",
  16853. {
  16854. front: {
  16855. height: math.unit(8, "feet"),
  16856. weight: math.unit(600, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/kyrehx/front.svg",
  16860. extra: 1195/1095,
  16861. bottom: 0.034
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Micro",
  16868. height: math.unit(2, "inches")
  16869. },
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(8, "feet"),
  16873. default: true
  16874. },
  16875. {
  16876. name: "Macro",
  16877. height: math.unit(255, "feet")
  16878. },
  16879. ]
  16880. )
  16881. };
  16882. characterMakers["Xang"] = () => {
  16883. return makeCharacter(
  16884. "Xang",
  16885. "Xangoose",
  16886. {
  16887. front: {
  16888. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16889. weight: math.unit(184, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/xang/front.svg",
  16893. extra: 845/755
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16901. default: true
  16902. },
  16903. {
  16904. name: "Macro",
  16905. height: math.unit(0.935 * 146, "feet")
  16906. },
  16907. {
  16908. name: "Megamacro",
  16909. height: math.unit(0.935 * 3, "miles")
  16910. },
  16911. ]
  16912. )
  16913. };
  16914. characterMakers["Doc Weardno"] = () => {
  16915. return makeCharacter(
  16916. "Doc Weardno",
  16917. "DrWeardno",
  16918. {
  16919. frontDressed: {
  16920. height: math.unit(5 + 7/12, "feet"),
  16921. weight: math.unit(140, "lb"),
  16922. name: "Front (Dressed)",
  16923. image: {
  16924. source: "./media/characters/doc-weardno/front-dressed.svg",
  16925. extra: 263/234
  16926. }
  16927. },
  16928. backDressed: {
  16929. height: math.unit(5 + 7/12, "feet"),
  16930. weight: math.unit(140, "lb"),
  16931. name: "Back (Dressed)",
  16932. image: {
  16933. source: "./media/characters/doc-weardno/back-dressed.svg",
  16934. extra: 266/238
  16935. }
  16936. },
  16937. front: {
  16938. height: math.unit(5 + 7/12, "feet"),
  16939. weight: math.unit(140, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/doc-weardno/front.svg",
  16943. extra: 254/233
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Micro",
  16950. height: math.unit(3, "inches")
  16951. },
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(5 + 7/12, "feet"),
  16955. default: true
  16956. },
  16957. {
  16958. name: "Macro",
  16959. height: math.unit(25, "feet")
  16960. },
  16961. {
  16962. name: "Megamacro",
  16963. height: math.unit(2, "miles")
  16964. },
  16965. ]
  16966. )
  16967. };
  16968. characterMakers["Seth Whilst"] = () => {
  16969. return makeCharacter(
  16970. "Seth Whilst",
  16971. "SethWhilst",
  16972. {
  16973. front: {
  16974. height: math.unit(6 + 2/12, "feet"),
  16975. weight: math.unit(153, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/seth-whilst/front.svg",
  16979. bottom: 0.07
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Micro",
  16986. height: math.unit(5, "inches")
  16987. },
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(6 + 2/12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. )
  16995. };
  16996. characterMakers["Pocket Jabari"] = () => {
  16997. return makeCharacter(
  16998. "Pocket Jabari",
  16999. "PocketJabari",
  17000. {
  17001. front: {
  17002. height: math.unit(3, "inches"),
  17003. weight: math.unit(8, "grams"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/pocket-jabari/front.svg",
  17007. extra: 1024/974,
  17008. bottom: 0.039
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Minimicro",
  17015. height: math.unit(8, "mm")
  17016. },
  17017. {
  17018. name: "Micro",
  17019. height: math.unit(3, "inches"),
  17020. default: true
  17021. },
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(3, "feet")
  17025. },
  17026. ]
  17027. )
  17028. };
  17029. characterMakers["Sapphy"] = () => {
  17030. return makeCharacter(
  17031. "Sapphy",
  17032. "Sapphy",
  17033. {
  17034. front: {
  17035. height: math.unit(15, "feet"),
  17036. weight: math.unit(3280, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/sapphy/front.svg",
  17040. extra: 671/577,
  17041. bottom: 0.085
  17042. }
  17043. },
  17044. back: {
  17045. height: math.unit(15, "feet"),
  17046. weight: math.unit(3280, "lb"),
  17047. name: "Back",
  17048. image: {
  17049. source: "./media/characters/sapphy/back.svg",
  17050. extra: 631/607,
  17051. bottom: 0.045
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(15, "feet")
  17059. },
  17060. {
  17061. name: "Casual Macro",
  17062. height: math.unit(120, "feet")
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(2150, "feet"),
  17067. default: true
  17068. },
  17069. {
  17070. name: "Megamacro",
  17071. height: math.unit(8, "miles")
  17072. },
  17073. {
  17074. name: "Galaxy Mom",
  17075. height: math.unit(6, "megalightyears")
  17076. },
  17077. ]
  17078. )
  17079. };
  17080. characterMakers["Kiro"] = () => {
  17081. return makeCharacter(
  17082. "Kiro",
  17083. "Keeya",
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(170, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/kiro/front.svg",
  17091. extra: 1064/1012,
  17092. bottom: 0.052
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Micro",
  17099. height: math.unit(6, "inches")
  17100. },
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(6, "feet"),
  17104. default: true
  17105. },
  17106. {
  17107. name: "Macro",
  17108. height: math.unit(72, "feet")
  17109. },
  17110. ]
  17111. )
  17112. };
  17113. characterMakers["Irishfox"] = () => {
  17114. return makeCharacter(
  17115. "Irishfox",
  17116. "IrishFox",
  17117. {
  17118. front: {
  17119. height: math.unit(5 + 9/12, "feet"),
  17120. weight: math.unit(175, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/irishfox/front.svg",
  17124. extra: 1912/1680,
  17125. bottom: 0.02
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Nano",
  17132. height: math.unit(1, "mm")
  17133. },
  17134. {
  17135. name: "Micro",
  17136. height: math.unit(2, "inches")
  17137. },
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(5 + 9/12, "feet"),
  17141. default: true
  17142. },
  17143. {
  17144. name: "Macro",
  17145. height: math.unit(45, "feet")
  17146. },
  17147. ]
  17148. )
  17149. };
  17150. characterMakers["Aronai Sieyes"] = () => {
  17151. return makeCharacter(
  17152. "Aronai Sieyes",
  17153. "Aronai",
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 1/12, "feet"),
  17157. weight: math.unit(150, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/aronai-sieyes/front.svg",
  17161. extra: 1556/1480,
  17162. bottom: 0.015
  17163. }
  17164. },
  17165. side: {
  17166. height: math.unit(6 + 1/12, "feet"),
  17167. weight: math.unit(150, "lb"),
  17168. name: "Side",
  17169. image: {
  17170. source: "./media/characters/aronai-sieyes/side.svg",
  17171. extra: 1433/1390,
  17172. bottom: 0.0393
  17173. }
  17174. },
  17175. back: {
  17176. height: math.unit(6 + 1/12, "feet"),
  17177. weight: math.unit(150, "lb"),
  17178. name: "Back",
  17179. image: {
  17180. source: "./media/characters/aronai-sieyes/back.svg",
  17181. extra: 1544/1494,
  17182. bottom: 0.02
  17183. }
  17184. },
  17185. frontClothed: {
  17186. height: math.unit(6 + 1/12, "feet"),
  17187. weight: math.unit(150, "lb"),
  17188. name: "Front (Clothed)",
  17189. image: {
  17190. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17191. extra: 1582/1527
  17192. }
  17193. },
  17194. feral: {
  17195. height: math.unit(18, "feet"),
  17196. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17197. name: "Feral",
  17198. image: {
  17199. source: "./media/characters/aronai-sieyes/feral.svg",
  17200. extra: 1530/1240,
  17201. bottom: 0.035
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(2, "inches")
  17209. },
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(6 + 1/12, "feet"),
  17213. default: true
  17214. }
  17215. ]
  17216. )
  17217. };
  17218. characterMakers["Xuna"] = () => {
  17219. return makeCharacter(
  17220. "Xuna",
  17221. "Xuna",
  17222. {
  17223. front: {
  17224. height: math.unit(12, "feet"),
  17225. weight: math.unit(410, "kg"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/xuna/front.svg",
  17229. extra: 2184/1980
  17230. }
  17231. },
  17232. side: {
  17233. height: math.unit(12, "feet"),
  17234. weight: math.unit(410, "kg"),
  17235. name: "Side",
  17236. image: {
  17237. source: "./media/characters/xuna/side.svg",
  17238. extra: 2184/1980
  17239. }
  17240. },
  17241. back: {
  17242. height: math.unit(12, "feet"),
  17243. weight: math.unit(410, "kg"),
  17244. name: "Back",
  17245. image: {
  17246. source: "./media/characters/xuna/back.svg",
  17247. extra: 2184/1980
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Nano glow",
  17254. height: math.unit(10, "nm")
  17255. },
  17256. {
  17257. name: "Micro floof",
  17258. height: math.unit(0.3, "m")
  17259. },
  17260. {
  17261. name: "Huggable softy boi",
  17262. height: math.unit(3.6576, "m"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Admirable floof",
  17267. height: math.unit(80, "meters")
  17268. },
  17269. {
  17270. name: "Gentle macro",
  17271. height: math.unit(300, "meters")
  17272. },
  17273. {
  17274. name: "Very careful floof",
  17275. height: math.unit(3200, "meters")
  17276. },
  17277. {
  17278. name: "The mega floof",
  17279. height: math.unit(36000, "meters")
  17280. },
  17281. {
  17282. name: "Giga-fur-Wicker",
  17283. height: math.unit(4800000, "meters")
  17284. },
  17285. {
  17286. name: "Licky world",
  17287. height: math.unit(20000000, "meters")
  17288. },
  17289. {
  17290. name: "Floofy cyan sun",
  17291. height: math.unit(1500000000, "meters")
  17292. },
  17293. {
  17294. name: "Milky Wicker",
  17295. height: math.unit(1000000000000000000000, "meters")
  17296. },
  17297. {
  17298. name: "The observing Wicker",
  17299. height: math.unit(999999999999999999999999999, "meters")
  17300. },
  17301. ]
  17302. )
  17303. };
  17304. characterMakers["Arokha Sieyes"] = () => {
  17305. return makeCharacter(
  17306. "Arokha Sieyes",
  17307. "Aronai",
  17308. {
  17309. front: {
  17310. height: math.unit(5 + 9/12, "feet"),
  17311. weight: math.unit(150, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/arokha-sieyes/front.svg",
  17315. extra: 1425/1284,
  17316. bottom: 0.05
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(5 + 9/12, "feet")
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(30, "meters"),
  17328. default: true
  17329. },
  17330. ]
  17331. )
  17332. };
  17333. characterMakers["Arokh Sieyes"] = () => {
  17334. return makeCharacter(
  17335. "Arokh Sieyes",
  17336. "Aronai",
  17337. {
  17338. front: {
  17339. height: math.unit(6, "feet"),
  17340. weight: math.unit(180, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/arokh-sieyes/front.svg",
  17344. extra: 1830/1769,
  17345. bottom: 0.01
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(6, "feet")
  17353. },
  17354. {
  17355. name: "Macro",
  17356. height: math.unit(30, "meters"),
  17357. default: true
  17358. },
  17359. ]
  17360. )
  17361. };
  17362. characterMakers["Goldeneye"] = () => {
  17363. return makeCharacter(
  17364. "Goldeneye",
  17365. "Goldeneye Gryphon",
  17366. {
  17367. side: {
  17368. height: math.unit(13 + 1/12, "feet"),
  17369. weight: math.unit(8.5, "tonnes"),
  17370. name: "Side",
  17371. image: {
  17372. source: "./media/characters/goldeneye/side.svg",
  17373. extra: 1182/778,
  17374. bottom: 0.067
  17375. }
  17376. },
  17377. paw: {
  17378. height: math.unit(3.4, "feet"),
  17379. name: "Paw",
  17380. image: {
  17381. source: "./media/characters/goldeneye/paw.svg"
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(13 + 1/12, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. )
  17393. };
  17394. characterMakers["Leonardo Lycheborne"] = () => {
  17395. return makeCharacter(
  17396. "Leonardo Lycheborne",
  17397. "Leo",
  17398. {
  17399. front: {
  17400. height: math.unit(6 + 1/12, "feet"),
  17401. weight: math.unit(210, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/leonardo-lycheborne/front.svg",
  17405. extra: 390/365,
  17406. bottom: 0.032
  17407. }
  17408. },
  17409. side: {
  17410. height: math.unit(6 + 1/12, "feet"),
  17411. weight: math.unit(210, "lb"),
  17412. name: "Side",
  17413. image: {
  17414. source: "./media/characters/leonardo-lycheborne/side.svg",
  17415. extra: 390/365,
  17416. bottom: 0.005
  17417. }
  17418. },
  17419. back: {
  17420. height: math.unit(6 + 1/12, "feet"),
  17421. weight: math.unit(210, "lb"),
  17422. name: "Back",
  17423. image: {
  17424. source: "./media/characters/leonardo-lycheborne/back.svg",
  17425. extra: 392/366,
  17426. bottom: 0.01
  17427. }
  17428. },
  17429. hand: {
  17430. height: math.unit(1.08, "feet"),
  17431. name: "Hand",
  17432. image: {
  17433. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17434. }
  17435. },
  17436. foot: {
  17437. height: math.unit(1.32, "feet"),
  17438. name: "Foot",
  17439. image: {
  17440. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17441. }
  17442. },
  17443. were: {
  17444. height: math.unit(20, "feet"),
  17445. weight: math.unit(7800, "lb"),
  17446. name: "Were",
  17447. image: {
  17448. source: "./media/characters/leonardo-lycheborne/were.svg",
  17449. extra: 308/294,
  17450. bottom: 0.048
  17451. }
  17452. },
  17453. feral: {
  17454. height: math.unit(7.5, "feet"),
  17455. weight: math.unit(600, "lb"),
  17456. name: "Feral",
  17457. image: {
  17458. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17459. extra: 210/186,
  17460. bottom: 0.108
  17461. }
  17462. },
  17463. taur: {
  17464. height: math.unit(11, "feet"),
  17465. weight: math.unit(3300, "lb"),
  17466. name: "Taur",
  17467. image: {
  17468. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17469. extra: 320/303,
  17470. bottom: 0.025
  17471. }
  17472. },
  17473. barghest: {
  17474. height: math.unit(11, "feet"),
  17475. weight: math.unit(1300, "lb"),
  17476. name: "Barghest",
  17477. image: {
  17478. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17479. extra: 323/302,
  17480. bottom: 0.027
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(6 + 1/12, "feet"),
  17488. default: true
  17489. },
  17490. ]
  17491. )
  17492. };
  17493. characterMakers["Jet"] = () => {
  17494. return makeCharacter(
  17495. "Jet",
  17496. "JetHyena",
  17497. {
  17498. front: {
  17499. height: math.unit(10, "feet"),
  17500. weight: math.unit(350, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/jet/front.svg",
  17504. extra: 2050/1980,
  17505. bottom: 0.013
  17506. }
  17507. },
  17508. back: {
  17509. height: math.unit(10, "feet"),
  17510. weight: math.unit(350, "lb"),
  17511. name: "Back",
  17512. image: {
  17513. source: "./media/characters/jet/back.svg",
  17514. extra: 2050/1980,
  17515. bottom: 0.013
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Micro",
  17522. height: math.unit(6, "inches")
  17523. },
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(10, "feet"),
  17527. default: true
  17528. },
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(100, "feet")
  17532. },
  17533. ]
  17534. )
  17535. };
  17536. characterMakers["Tanarath"] = () => {
  17537. return makeCharacter(
  17538. "Tanarath",
  17539. "TanarathDragon",
  17540. {
  17541. front: {
  17542. height: math.unit(15, "feet"),
  17543. weight: math.unit(2800, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/tanarath/front.svg",
  17547. extra: 2392/2220,
  17548. bottom: 0.03
  17549. }
  17550. },
  17551. back: {
  17552. height: math.unit(15, "feet"),
  17553. weight: math.unit(2800, "lb"),
  17554. name: "Back",
  17555. image: {
  17556. source: "./media/characters/tanarath/back.svg",
  17557. extra: 2392/2220,
  17558. bottom: 0.03
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(15, "feet"),
  17566. default: true
  17567. },
  17568. ]
  17569. )
  17570. };
  17571. characterMakers["Patty CattyBatty"] = () => {
  17572. return makeCharacter(
  17573. "Patty CattyBatty",
  17574. "Archangel2100",
  17575. {
  17576. front: {
  17577. height: math.unit(7 + 1/12, "feet"),
  17578. weight: math.unit(175, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/patty-cattybatty/front.svg",
  17582. extra: 908/874,
  17583. bottom: 0.025
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Micro",
  17590. height: math.unit(1, "inch")
  17591. },
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(7 + 1/12, "feet")
  17595. },
  17596. {
  17597. name: "Mini Macro",
  17598. height: math.unit(155, "feet")
  17599. },
  17600. {
  17601. name: "Macro",
  17602. height: math.unit(1077, "feet")
  17603. },
  17604. {
  17605. name: "Mega Macro",
  17606. height: math.unit(47650, "feet"),
  17607. default: true
  17608. },
  17609. {
  17610. name: "Giga Macro",
  17611. height: math.unit(440, "miles")
  17612. },
  17613. {
  17614. name: "Tera Macro",
  17615. height: math.unit(8700, "miles")
  17616. },
  17617. {
  17618. name: "Planetary Macro",
  17619. height: math.unit(32700, "miles")
  17620. },
  17621. {
  17622. name: "Solar Macro",
  17623. height: math.unit(550000, "miles")
  17624. },
  17625. {
  17626. name: "Celestial Macro",
  17627. height: math.unit(2.5, "AU")
  17628. },
  17629. ]
  17630. )
  17631. };
  17632. characterMakers["Cappu"] = () => {
  17633. return makeCharacter(
  17634. "Cappu",
  17635. "CappuTheSheep",
  17636. {
  17637. front: {
  17638. height: math.unit(4 + 5/12, "feet"),
  17639. weight: math.unit(90, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/cappu/front.svg",
  17643. extra: 1247/1152,
  17644. bottom: 0.012
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(4 + 5/12, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. )
  17656. };
  17657. characterMakers["Sebi"] = () => {
  17658. return makeCharacter(
  17659. "Sebi",
  17660. "DeathyWolfi",
  17661. {
  17662. frontDressed: {
  17663. height: math.unit(70, "cm"),
  17664. weight: math.unit(6, "kg"),
  17665. name: "Front (Dressed)",
  17666. image: {
  17667. source: "./media/characters/sebi/front-dressed.svg",
  17668. extra: 713.5/686.5,
  17669. bottom: 0.003
  17670. }
  17671. },
  17672. front: {
  17673. height: math.unit(70, "cm"),
  17674. weight: math.unit(5, "kg"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/sebi/front.svg",
  17678. extra: 713.5/686.5,
  17679. bottom: 0.003
  17680. }
  17681. }
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(70, "cm"),
  17687. default: true
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(8, "meters")
  17692. },
  17693. ]
  17694. )
  17695. };
  17696. characterMakers["Typhek"] = () => {
  17697. return makeCharacter(
  17698. "Typhek",
  17699. "Adam0800",
  17700. {
  17701. front: {
  17702. height: math.unit(6, "feet"),
  17703. weight: math.unit(150, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/typhek/front.svg",
  17707. extra: 1948/1929,
  17708. bottom: 0.025
  17709. }
  17710. },
  17711. side: {
  17712. height: math.unit(6, "feet"),
  17713. weight: math.unit(150, "lb"),
  17714. name: "Side",
  17715. image: {
  17716. source: "./media/characters/typhek/side.svg",
  17717. extra: 2034/2010,
  17718. bottom: 0.003
  17719. }
  17720. },
  17721. back: {
  17722. height: math.unit(6, "feet"),
  17723. weight: math.unit(150, "lb"),
  17724. name: "Back",
  17725. image: {
  17726. source: "./media/characters/typhek/back.svg",
  17727. extra: 2005/1978,
  17728. bottom: 0.004
  17729. }
  17730. },
  17731. palm: {
  17732. height: math.unit(1.2, "feet"),
  17733. name: "Palm",
  17734. image: {
  17735. source: "./media/characters/typhek/palm.svg"
  17736. }
  17737. },
  17738. fist: {
  17739. height: math.unit(1.1, "feet"),
  17740. name: "Fist",
  17741. image: {
  17742. source: "./media/characters/typhek/fist.svg"
  17743. }
  17744. },
  17745. foot: {
  17746. height: math.unit(1.57, "feet"),
  17747. name: "Foot",
  17748. image: {
  17749. source: "./media/characters/typhek/foot.svg"
  17750. }
  17751. },
  17752. sole: {
  17753. height: math.unit(2.05, "feet"),
  17754. name: "Sole",
  17755. image: {
  17756. source: "./media/characters/typhek/sole.svg"
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(40, "stories"),
  17764. default: true
  17765. },
  17766. {
  17767. name: "Megamacro",
  17768. height: math.unit(1, "mile")
  17769. },
  17770. {
  17771. name: "Gigamacro",
  17772. height: math.unit(4000, "solarradii")
  17773. },
  17774. {
  17775. name: "Universal",
  17776. height: math.unit(1.1, "universes")
  17777. }
  17778. ]
  17779. )
  17780. };
  17781. characterMakers["Kassy"] = () => {
  17782. return makeCharacter(
  17783. "Kassy",
  17784. "kclt",
  17785. {
  17786. side: {
  17787. height: math.unit(5 + 7/12, "feet"),
  17788. weight: math.unit(150, "lb"),
  17789. name: "Side",
  17790. image: {
  17791. source: "./media/characters/kassy/side.svg",
  17792. extra: 1280/1225,
  17793. bottom: 0.002
  17794. }
  17795. },
  17796. front: {
  17797. height: math.unit(5 + 7/12, "feet"),
  17798. weight: math.unit(150, "lb"),
  17799. name: "Front",
  17800. image: {
  17801. source: "./media/characters/kassy/front.svg",
  17802. extra: 1280/1225,
  17803. bottom: 0.025
  17804. }
  17805. },
  17806. back: {
  17807. height: math.unit(5 + 7/12, "feet"),
  17808. weight: math.unit(150, "lb"),
  17809. name: "Back",
  17810. image: {
  17811. source: "./media/characters/kassy/back.svg",
  17812. extra: 1280/1225,
  17813. bottom: 0.002
  17814. }
  17815. },
  17816. foot: {
  17817. height: math.unit(1.266, "feet"),
  17818. name: "Foot",
  17819. image: {
  17820. source: "./media/characters/kassy/foot.svg"
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(5 + 7/12, "feet")
  17828. },
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(137, "feet"),
  17832. default: true
  17833. },
  17834. {
  17835. name: "Megamacro",
  17836. height: math.unit(1, "mile")
  17837. },
  17838. ]
  17839. )
  17840. };
  17841. characterMakers["Neil"] = () => {
  17842. return makeCharacter(
  17843. "Neil",
  17844. "mZmm",
  17845. {
  17846. front: {
  17847. height: math.unit(6 + 1/12, "feet"),
  17848. weight: math.unit(200, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/neil/front.svg",
  17852. extra: 1326/1250,
  17853. bottom: 0.023
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(6 + 1/12, "feet"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Macro",
  17865. height: math.unit(200, "feet")
  17866. },
  17867. ]
  17868. )
  17869. };
  17870. characterMakers["Atticus"] = () => {
  17871. return makeCharacter(
  17872. "Atticus",
  17873. "mZmm",
  17874. {
  17875. front: {
  17876. height: math.unit(5 + 9/12, "feet"),
  17877. weight: math.unit(190, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/atticus/front.svg",
  17881. extra: 2934/2785,
  17882. bottom: 0.025
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(5 + 9/12, "feet"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(180, "feet")
  17895. },
  17896. ]
  17897. )
  17898. };
  17899. characterMakers["Milo"] = () => {
  17900. return makeCharacter(
  17901. "Milo",
  17902. "mZmm",
  17903. {
  17904. side: {
  17905. height: math.unit(9, "feet"),
  17906. weight: math.unit(650, "lb"),
  17907. name: "Side",
  17908. image: {
  17909. source: "./media/characters/milo/side.svg",
  17910. extra: 2644/2310,
  17911. bottom: 0.032
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(9, "feet"),
  17919. default: true
  17920. },
  17921. {
  17922. name: "Macro",
  17923. height: math.unit(300, "feet")
  17924. },
  17925. ]
  17926. )
  17927. };
  17928. characterMakers["Ijzer"] = () => {
  17929. return makeCharacter(
  17930. "Ijzer",
  17931. "Ijzer",
  17932. {
  17933. side: {
  17934. height: math.unit(8, "meters"),
  17935. weight: math.unit(90000, "kg"),
  17936. name: "Side",
  17937. image: {
  17938. source: "./media/characters/ijzer/side.svg",
  17939. extra: 2756/1600,
  17940. bottom: 0.01
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Small",
  17947. height: math.unit(3, "meters")
  17948. },
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(8, "meters"),
  17952. default: true
  17953. },
  17954. {
  17955. name: "Normal+",
  17956. height: math.unit(10, "meters")
  17957. },
  17958. {
  17959. name: "Bigger",
  17960. height: math.unit(24, "meters")
  17961. },
  17962. {
  17963. name: "Huge",
  17964. height: math.unit(80, "meters")
  17965. },
  17966. ]
  17967. )
  17968. };
  17969. characterMakers["Luca Cervicum"] = () => {
  17970. return makeCharacter(
  17971. "Luca Cervicum",
  17972. "Luca Cervicum",
  17973. {
  17974. front: {
  17975. height: math.unit(6 + 2/12, "feet"),
  17976. weight: math.unit(153, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/luca-cervicum/front.svg",
  17980. extra: 370/327,
  17981. bottom: 0.015
  17982. }
  17983. },
  17984. back: {
  17985. height: math.unit(6 + 2/12, "feet"),
  17986. weight: math.unit(153, "lb"),
  17987. name: "Back",
  17988. image: {
  17989. source: "./media/characters/luca-cervicum/back.svg",
  17990. extra: 367/333,
  17991. bottom: 0.005
  17992. }
  17993. },
  17994. frontGear: {
  17995. height: math.unit(6 + 2/12, "feet"),
  17996. weight: math.unit(173, "lb"),
  17997. name: "Front (Gear)",
  17998. image: {
  17999. source: "./media/characters/luca-cervicum/front-gear.svg",
  18000. extra: 377/333,
  18001. bottom: 0.006
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(6 + 2/12, "feet"),
  18009. default: true
  18010. },
  18011. ]
  18012. )
  18013. };
  18014. characterMakers["Oliver"] = () => {
  18015. return makeCharacter(
  18016. "Oliver",
  18017. "Fidchell",
  18018. {
  18019. front: {
  18020. height: math.unit(6 + 1/12, "feet"),
  18021. weight: math.unit(304, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/oliver/front.svg",
  18025. extra: 157/143,
  18026. bottom: 0.08
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(6 + 1/12, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. )
  18038. };
  18039. characterMakers["Shane"] = () => {
  18040. return makeCharacter(
  18041. "Shane",
  18042. "Fidchell",
  18043. {
  18044. front: {
  18045. height: math.unit(5 + 7/12, "feet"),
  18046. weight: math.unit(140, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/shane/front.svg",
  18050. extra: 304/289,
  18051. bottom: 0.005
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(5 + 7/12, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. )
  18063. };
  18064. characterMakers["Shin"] = () => {
  18065. return makeCharacter(
  18066. "Shin",
  18067. "Fidchell",
  18068. {
  18069. front: {
  18070. height: math.unit(5 + 9/12, "feet"),
  18071. weight: math.unit(178, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/shin/front.svg",
  18075. extra: 159/151,
  18076. bottom: 0.015
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(5 + 9/12, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. )
  18088. };
  18089. characterMakers["Xerxes"] = () => {
  18090. return makeCharacter(
  18091. "Xerxes",
  18092. "Fidchell",
  18093. {
  18094. front: {
  18095. height: math.unit(5 + 10/12, "feet"),
  18096. weight: math.unit(168, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/xerxes/front.svg",
  18100. extra: 282/260,
  18101. bottom: 0.045
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(5 + 10/12, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. )
  18113. };
  18114. characterMakers["Chaska"] = () => {
  18115. return makeCharacter(
  18116. "Chaska",
  18117. "Fidchell",
  18118. {
  18119. front: {
  18120. height: math.unit(6 + 7/12, "feet"),
  18121. weight: math.unit(208, "lb"),
  18122. name: "Front",
  18123. image: {
  18124. source: "./media/characters/chaska/front.svg",
  18125. extra: 332/319,
  18126. bottom: 0.015
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(6 + 7/12, "feet"),
  18134. default: true
  18135. },
  18136. ]
  18137. )
  18138. };
  18139. characterMakers["Enuk"] = () => {
  18140. return makeCharacter(
  18141. "Enuk",
  18142. "Fidchell",
  18143. {
  18144. front: {
  18145. height: math.unit(5 + 8/12, "feet"),
  18146. weight: math.unit(208, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/enuk/front.svg",
  18150. extra: 437/406,
  18151. bottom: 0.02
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(5 + 8/12, "feet"),
  18159. default: true
  18160. },
  18161. ]
  18162. )
  18163. };
  18164. characterMakers["Bruun"] = () => {
  18165. return makeCharacter(
  18166. "Bruun",
  18167. "Fidchell",
  18168. {
  18169. front: {
  18170. height: math.unit(5 + 10/12, "feet"),
  18171. weight: math.unit(252, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/bruun/front.svg",
  18175. extra: 197/187,
  18176. bottom: 0.012
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(5 + 10/12, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. )
  18188. };
  18189. characterMakers["Alexeev"] = () => {
  18190. return makeCharacter(
  18191. "Alexeev",
  18192. "Fidchell",
  18193. {
  18194. front: {
  18195. height: math.unit(6 + 10/12, "feet"),
  18196. weight: math.unit(255, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/alexeev/front.svg",
  18200. extra: 213/200,
  18201. bottom: 0.05
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(6 + 10/12, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. )
  18213. };
  18214. characterMakers["Evelyn"] = () => {
  18215. return makeCharacter(
  18216. "Evelyn",
  18217. "Fidchell",
  18218. {
  18219. front: {
  18220. height: math.unit(2 + 8/12, "feet"),
  18221. weight: math.unit(22, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/evelyn/front.svg",
  18225. extra: 208/180
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(2 + 8/12, "feet"),
  18233. default: true
  18234. },
  18235. ]
  18236. )
  18237. };
  18238. characterMakers["Inca"] = () => {
  18239. return makeCharacter(
  18240. "Inca",
  18241. "Fidchell",
  18242. {
  18243. front: {
  18244. height: math.unit(5 + 9/12, "feet"),
  18245. weight: math.unit(139, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/inca/front.svg",
  18249. extra: 294/291,
  18250. bottom: 0.03
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(5 + 9/12, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. )
  18262. };
  18263. characterMakers["Magdalene"] = () => {
  18264. return makeCharacter(
  18265. "Magdalene",
  18266. "Fidchell",
  18267. {
  18268. front: {
  18269. height: math.unit(5 + 1/12, "feet"),
  18270. weight: math.unit(84, "lb"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/magdalene/front.svg",
  18274. extra: 293/273
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(5 + 1/12, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. )
  18286. };
  18287. characterMakers["Mera"] = () => {
  18288. return makeCharacter(
  18289. "Mera",
  18290. "Fidchell",
  18291. {
  18292. front: {
  18293. height: math.unit(6 + 3/12, "feet"),
  18294. weight: math.unit(185, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/mera/front.svg",
  18298. extra: 291/277,
  18299. bottom: 0.03
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(6 + 3/12, "feet"),
  18307. default: true
  18308. },
  18309. ]
  18310. )
  18311. };
  18312. //characters
  18313. function makeCharacters() {
  18314. const results = [];
  18315. Object.entries(characterMakers).forEach(([key, value]) => {
  18316. results.push({
  18317. name: key,
  18318. constructor: value
  18319. });
  18320. });
  18321. results.push({
  18322. name: "Aigey",
  18323. constructor: makeAigey
  18324. });
  18325. results.push({
  18326. name: "Malik",
  18327. constructor: makeMalik
  18328. });
  18329. results.push({
  18330. name: "Sefer",
  18331. constructor: makeSefer
  18332. });
  18333. return results;
  18334. }