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

18341 строка
477 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. }
  1375. },
  1376. back: {
  1377. height: math.unit(2, "meter"),
  1378. weight: math.unit(50, "kg"),
  1379. name: "Back",
  1380. image: {
  1381. source: "./media/characters/erestrebah/back.svg",
  1382. extra: 1.2139
  1383. }
  1384. }
  1385. },
  1386. [
  1387. {
  1388. name: "Normal",
  1389. height: math.unit(10, "feet")
  1390. },
  1391. {
  1392. name: "Large",
  1393. height: math.unit(50, "feet"),
  1394. default: true
  1395. },
  1396. {
  1397. name: "Macro",
  1398. height: math.unit(300, "feet")
  1399. },
  1400. {
  1401. name: "Macro+",
  1402. height: math.unit(750, "feet")
  1403. },
  1404. {
  1405. name: "Megamacro",
  1406. height: math.unit(3, "miles")
  1407. }
  1408. ]
  1409. )
  1410. };
  1411. characterMakers["Jennifer"] = () => {
  1412. return makeCharacter(
  1413. "Jennifer",
  1414. "Neopuc",
  1415. {
  1416. front: {
  1417. height: math.unit(2, "meter"),
  1418. weight: math.unit(80, "kg"),
  1419. name: "Front",
  1420. image: {
  1421. source: "./media/characters/jennifer/front.svg",
  1422. bottom: 0.11,
  1423. extra: 1.16
  1424. }
  1425. },
  1426. frontAlt: {
  1427. height: math.unit(2, "meter"),
  1428. weight: math.unit(80, "kg"),
  1429. name: "Front (Alt)",
  1430. image: {
  1431. source: "./media/characters/jennifer/front-alt.svg"
  1432. }
  1433. }
  1434. },
  1435. [
  1436. {
  1437. name: "Canon Height",
  1438. height: math.unit(120, "feet"),
  1439. default: true
  1440. },
  1441. {
  1442. name: "Macro+",
  1443. height: math.unit(300, "feet")
  1444. },
  1445. {
  1446. name: "Megamacro",
  1447. height: math.unit(20000, "feet")
  1448. }
  1449. ]
  1450. )
  1451. };
  1452. characterMakers["Kalista"] = () => {
  1453. return makeCharacter(
  1454. "Kalista",
  1455. "Kalista",
  1456. {
  1457. front: {
  1458. height: math.unit(2, "meter"),
  1459. weight: math.unit(50, "kg"),
  1460. name: "Front",
  1461. image: {
  1462. source: "./media/characters/kalista/front.svg",
  1463. extra: 1947/1700
  1464. }
  1465. },
  1466. back: {
  1467. height: math.unit(2, "meter"),
  1468. weight: math.unit(50, "kg"),
  1469. name: "Back",
  1470. image: {
  1471. source: "./media/characters/kalista/back.svg",
  1472. extra: 1366/1156
  1473. }
  1474. }
  1475. },
  1476. [
  1477. {
  1478. name: "Uncomfortably Small",
  1479. height: math.unit(10, "feet")
  1480. },
  1481. {
  1482. name: "Small",
  1483. height: math.unit(30, "feet")
  1484. },
  1485. {
  1486. name: "Macro",
  1487. height: math.unit(100, "feet"),
  1488. default: true
  1489. },
  1490. {
  1491. name: "Macro+",
  1492. height: math.unit(2000, "feet")
  1493. },
  1494. {
  1495. name: "True Form",
  1496. height: math.unit(8924, "miles")
  1497. }
  1498. ]
  1499. )
  1500. };
  1501. characterMakers["GiantGrowingVixen"] = () => {
  1502. return makeCharacter(
  1503. "GiantGrowingVixen",
  1504. "GiantGrowingVixen",
  1505. {
  1506. front: {
  1507. height: math.unit(2, "meter"),
  1508. weight: math.unit(120, "kg"),
  1509. name: "Front",
  1510. image: {
  1511. source: "./media/characters/ggv/front.svg"
  1512. }
  1513. },
  1514. side: {
  1515. height: math.unit(2, "meter"),
  1516. weight: math.unit(120, "kg"),
  1517. name: "Side",
  1518. image: {
  1519. source: "./media/characters/ggv/side.svg"
  1520. }
  1521. }
  1522. },
  1523. [
  1524. {
  1525. name: "Extremely Puny",
  1526. height: math.unit(9 + 5 / 12, "feet")
  1527. },
  1528. {
  1529. name: "Horribly Small",
  1530. height: math.unit(47.7, "miles"),
  1531. default: true
  1532. },
  1533. {
  1534. name: "Reasonably Sized",
  1535. height: math.unit(25000, "parsecs")
  1536. },
  1537. {
  1538. name: "Slightly Uncompressed",
  1539. height: math.unit(7.77e31, "parsecs")
  1540. },
  1541. {
  1542. name: "Omniversal",
  1543. height: math.unit(1e300, "meters")
  1544. },
  1545. ]
  1546. )
  1547. };
  1548. characterMakers["Napalm"] = () => {
  1549. return makeCharacter(
  1550. "Napalm",
  1551. "RathDaKrogan",
  1552. {
  1553. front: {
  1554. height: math.unit(2, "meter"),
  1555. weight: math.unit(75, "lb"),
  1556. name: "Front",
  1557. image: {
  1558. source: "./media/characters/napalm/front.svg"
  1559. }
  1560. },
  1561. back: {
  1562. height: math.unit(2, "meter"),
  1563. weight: math.unit(75, "lb"),
  1564. name: "Back",
  1565. image: {
  1566. source: "./media/characters/napalm/back.svg"
  1567. }
  1568. }
  1569. },
  1570. [
  1571. {
  1572. name: "Standard",
  1573. height: math.unit(55, "feet"),
  1574. default: true
  1575. }
  1576. ]
  1577. )
  1578. };
  1579. characterMakers["Asana"] = () => {
  1580. return makeCharacter(
  1581. "Asana",
  1582. "Asana",
  1583. {
  1584. front: {
  1585. height: math.unit(7 + 5 / 6, "feet"),
  1586. weight: math.unit(325, "lb"),
  1587. name: "Front",
  1588. image: {
  1589. source: "./media/characters/asana/front.svg",
  1590. extra: 1128 / 1068
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7 + 5 / 6, "feet"),
  1595. weight: math.unit(325, "lb"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/asana/back.svg",
  1599. extra: 1128 / 1068
  1600. }
  1601. },
  1602. },
  1603. [
  1604. {
  1605. name: "Standard",
  1606. height: math.unit(7 + 5 / 6, "feet"),
  1607. default: true
  1608. },
  1609. {
  1610. name: "Large",
  1611. height: math.unit(10, "meters")
  1612. },
  1613. {
  1614. name: "Macro",
  1615. height: math.unit(2500, "meters")
  1616. },
  1617. {
  1618. name: "Megamacro",
  1619. height: math.unit(5e6, "meters")
  1620. },
  1621. {
  1622. name: "Examacro",
  1623. height: math.unit(5e12, "lightyears")
  1624. },
  1625. {
  1626. name: "Max Size",
  1627. height: math.unit(1e31, "lightyears")
  1628. }
  1629. ]
  1630. )
  1631. };
  1632. characterMakers["Ebony"] = () => {
  1633. return makeCharacter(
  1634. "Ebony",
  1635. "Lazerwolf",
  1636. {
  1637. front: {
  1638. height: math.unit(2, "meter"),
  1639. weight: math.unit(60, "kg"),
  1640. name: "Front",
  1641. image: {
  1642. source: "./media/characters/ebony/front.svg",
  1643. bottom: 0.03,
  1644. extra: 1045 / 810 + 0.03
  1645. }
  1646. },
  1647. side: {
  1648. height: math.unit(2, "meter"),
  1649. weight: math.unit(60, "kg"),
  1650. name: "Side",
  1651. image: {
  1652. source: "./media/characters/ebony/side.svg",
  1653. bottom: 0.03,
  1654. extra: 1045 / 810 + 0.03
  1655. }
  1656. },
  1657. back: {
  1658. height: math.unit(2, "meter"),
  1659. weight: math.unit(60, "kg"),
  1660. name: "Back",
  1661. image: {
  1662. source: "./media/characters/ebony/back.svg",
  1663. bottom: 0.01,
  1664. extra: 1045 / 810 + 0.01
  1665. }
  1666. },
  1667. },
  1668. [
  1669. // TODO check why I did this lol
  1670. {
  1671. name: "Standard",
  1672. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1673. default: true
  1674. },
  1675. {
  1676. name: "Macro",
  1677. height: math.unit(200, "feet")
  1678. },
  1679. {
  1680. name: "Gigamacro",
  1681. height: math.unit(13000, "km")
  1682. }
  1683. ]
  1684. )
  1685. };
  1686. characterMakers["Mountain"] = () => {
  1687. return makeCharacter(
  1688. "Mountain",
  1689. "Asana",
  1690. {
  1691. front: {
  1692. height: math.unit(6, "feet"),
  1693. weight: math.unit(175, "lb"),
  1694. name: "Front",
  1695. image: {
  1696. source: "./media/characters/mountain/front.svg"
  1697. }
  1698. },
  1699. back: {
  1700. height: math.unit(6, "feet"),
  1701. weight: math.unit(175, "lb"),
  1702. name: "Back",
  1703. image: {
  1704. source: "./media/characters/mountain/back.svg"
  1705. }
  1706. },
  1707. },
  1708. [
  1709. {
  1710. name: "Large",
  1711. height: math.unit(20, "meters")
  1712. },
  1713. {
  1714. name: "Macro",
  1715. height: math.unit(300, "meters")
  1716. },
  1717. {
  1718. name: "Gigamacro",
  1719. height: math.unit(10000, "km"),
  1720. default: true
  1721. },
  1722. {
  1723. name: "Examacro",
  1724. height: math.unit(10e9, "lightyears")
  1725. }
  1726. ]
  1727. )
  1728. };
  1729. characterMakers["Rick"] = () => {
  1730. return makeCharacter(
  1731. "Rick",
  1732. "Victni",
  1733. {
  1734. front: {
  1735. height: math.unit(8, "feet"),
  1736. weight: math.unit(500, "lb"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/rick/front.svg"
  1740. }
  1741. }
  1742. },
  1743. [
  1744. {
  1745. name: "Normal",
  1746. height: math.unit(8, "feet"),
  1747. default: true
  1748. },
  1749. {
  1750. name: "Macro",
  1751. height: math.unit(5, "km")
  1752. }
  1753. ]
  1754. )
  1755. };
  1756. characterMakers["Ona"] = () => {
  1757. return makeCharacter(
  1758. "Ona",
  1759. "Arrogance127",
  1760. {
  1761. front: {
  1762. height: math.unit(8, "feet"),
  1763. weight: math.unit(120, "lb"),
  1764. name: "Front",
  1765. image: {
  1766. source: "./media/characters/ona/front.svg"
  1767. }
  1768. },
  1769. frontAlt: {
  1770. height: math.unit(8, "feet"),
  1771. weight: math.unit(120, "lb"),
  1772. name: "Front (Alt)",
  1773. image: {
  1774. source: "./media/characters/ona/front-alt.svg"
  1775. }
  1776. },
  1777. back: {
  1778. height: math.unit(8, "feet"),
  1779. weight: math.unit(120, "lb"),
  1780. name: "Back",
  1781. image: {
  1782. source: "./media/characters/ona/back.svg"
  1783. }
  1784. },
  1785. foot: {
  1786. height: math.unit(1.1, "feet"),
  1787. name: "Foot",
  1788. image: {
  1789. source: "./media/characters/ona/foot.svg"
  1790. }
  1791. }
  1792. },
  1793. [
  1794. {
  1795. name: "Megamacro",
  1796. height: math.unit(70, "km"),
  1797. default: true
  1798. },
  1799. {
  1800. name: "Gigamacro",
  1801. height: math.unit(681818, "miles")
  1802. },
  1803. {
  1804. name: "Examacro",
  1805. height: math.unit(3800000, "lightyears")
  1806. },
  1807. ]
  1808. )
  1809. };
  1810. characterMakers["Mech"] = () => {
  1811. return makeCharacter(
  1812. "Mech",
  1813. "mechEdragon",
  1814. {
  1815. front: {
  1816. height: math.unit(12, "feet"),
  1817. weight: math.unit(3000, "lb"),
  1818. name: "Front",
  1819. image: {
  1820. source: "./media/characters/mech/front.svg",
  1821. bottom: 0.025,
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(12, "feet"),
  1826. weight: math.unit(3000, "lb"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/mech/back.svg",
  1830. bottom: 0.03,
  1831. }
  1832. }
  1833. },
  1834. [
  1835. {
  1836. name: "Normal",
  1837. height: math.unit(12, "feet")
  1838. },
  1839. {
  1840. name: "Macro",
  1841. height: math.unit(300, "feet"),
  1842. default: true
  1843. },
  1844. {
  1845. name: "Macro+",
  1846. height: math.unit(1500, "feet")
  1847. },
  1848. ]
  1849. )
  1850. };
  1851. characterMakers["Gregory"] = () => {
  1852. return makeCharacter(
  1853. "Gregory",
  1854. "GregoryKlippenspringer",
  1855. {
  1856. front: {
  1857. height: math.unit(1.3, "meter"),
  1858. weight: math.unit(30, "kg"),
  1859. name: "Front",
  1860. image: {
  1861. source: "./media/characters/gregory/front.svg",
  1862. }
  1863. }
  1864. },
  1865. [
  1866. {
  1867. name: "Normal",
  1868. height: math.unit(1.3, "meter"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Macro",
  1873. height: math.unit(20, "meter")
  1874. }
  1875. ]
  1876. )
  1877. };
  1878. characterMakers["Elory"] = () => {
  1879. return makeCharacter(
  1880. "Elory",
  1881. "GregoryKlippenspringer",
  1882. {
  1883. front: {
  1884. height: math.unit(2.8, "meter"),
  1885. weight: math.unit(200, "kg"),
  1886. name: "Front",
  1887. image: {
  1888. source: "./media/characters/elory/front.svg",
  1889. }
  1890. }
  1891. },
  1892. [
  1893. {
  1894. name: "Normal",
  1895. height: math.unit(2.8, "meter"),
  1896. default: true
  1897. },
  1898. {
  1899. name: "Macro",
  1900. height: math.unit(38, "meter")
  1901. }
  1902. ]
  1903. )
  1904. };
  1905. characterMakers["Angelpatamon"] = () => {
  1906. return makeCharacter(
  1907. "Angelpatamon",
  1908. "GregoryKlippenspringer",
  1909. {
  1910. front: {
  1911. height: math.unit(470, "feet"),
  1912. weight: math.unit(924, "tons"),
  1913. name: "Front",
  1914. image: {
  1915. source: "./media/characters/angelpatamon/front.svg",
  1916. }
  1917. }
  1918. },
  1919. [
  1920. {
  1921. name: "Normal",
  1922. height: math.unit(470, "feet"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Deity Size I",
  1927. height: math.unit(28651.2, "km")
  1928. },
  1929. {
  1930. name: "Deity Size II",
  1931. height: math.unit(171907.2, "km")
  1932. }
  1933. ]
  1934. )
  1935. };
  1936. characterMakers["Cryae"] = () => {
  1937. return makeCharacter(
  1938. "Cryae",
  1939. "GregoryKlippenspringer",
  1940. {
  1941. side: {
  1942. height: math.unit(7.2, "meter"),
  1943. weight: math.unit(8.2, "tons"),
  1944. name: "Side",
  1945. image: {
  1946. source: "./media/characters/cryae/side.svg",
  1947. extra: 3500 / 1500
  1948. }
  1949. }
  1950. },
  1951. [
  1952. {
  1953. name: "Normal",
  1954. height: math.unit(7.2, "meter"),
  1955. default: true
  1956. }
  1957. ]
  1958. )
  1959. };
  1960. characterMakers["Xera"] = () => {
  1961. return makeCharacter(
  1962. "Xera",
  1963. "Asana",
  1964. {
  1965. front: {
  1966. height: math.unit(6, "feet"),
  1967. weight: math.unit(175, "lb"),
  1968. name: "Front",
  1969. image: {
  1970. source: "./media/characters/xera/front.svg",
  1971. extra: 2300 / 2061
  1972. }
  1973. },
  1974. side: {
  1975. height: math.unit(6, "feet"),
  1976. weight: math.unit(175, "lb"),
  1977. name: "Side",
  1978. image: {
  1979. source: "./media/characters/xera/side.svg",
  1980. extra: 2300 / 2061
  1981. }
  1982. },
  1983. back: {
  1984. height: math.unit(6, "feet"),
  1985. weight: math.unit(175, "lb"),
  1986. name: "Back",
  1987. image: {
  1988. source: "./media/characters/xera/back.svg"
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Small",
  1995. height: math.unit(10, "feet")
  1996. },
  1997. {
  1998. name: "Macro",
  1999. height: math.unit(500, "meters"),
  2000. default: true
  2001. },
  2002. {
  2003. name: "Macro+",
  2004. height: math.unit(10, "km")
  2005. },
  2006. {
  2007. name: "Gigamacro",
  2008. height: math.unit(25000, "km")
  2009. },
  2010. {
  2011. name: "Teramacro",
  2012. height: math.unit(3e6, "km")
  2013. }
  2014. ]
  2015. )
  2016. };
  2017. characterMakers["Nebula"] = () => {
  2018. return makeCharacter(
  2019. "Nebula",
  2020. "Cilenomon",
  2021. {
  2022. front: {
  2023. height: math.unit(6, "feet"),
  2024. weight: math.unit(175, "lb"),
  2025. name: "Front",
  2026. image: {
  2027. source: "./media/characters/nebula/front.svg",
  2028. extra: 2600 / 2450
  2029. }
  2030. }
  2031. },
  2032. [
  2033. {
  2034. name: "Small",
  2035. height: math.unit(4.5, "meters")
  2036. },
  2037. {
  2038. name: "Macro",
  2039. height: math.unit(1500, "meters"),
  2040. default: true
  2041. },
  2042. {
  2043. name: "Megamacro",
  2044. height: math.unit(150, "km")
  2045. },
  2046. {
  2047. name: "Gigamacro",
  2048. height: math.unit(27000, "km")
  2049. }
  2050. ]
  2051. )
  2052. };
  2053. characterMakers["Abysgar"] = () => {
  2054. return makeCharacter(
  2055. "Abysgar",
  2056. "Cilenomon",
  2057. {
  2058. front: {
  2059. height: math.unit(6, "feet"),
  2060. weight: math.unit(225, "lb"),
  2061. name: "Front",
  2062. image: {
  2063. source: "./media/characters/abysgar/front.svg"
  2064. }
  2065. }
  2066. },
  2067. [
  2068. {
  2069. name: "Small",
  2070. height: math.unit(4.5, "meters")
  2071. },
  2072. {
  2073. name: "Macro",
  2074. height: math.unit(1250, "meters"),
  2075. default: true
  2076. },
  2077. {
  2078. name: "Megamacro",
  2079. height: math.unit(125, "km")
  2080. },
  2081. {
  2082. name: "Gigamacro",
  2083. height: math.unit(26000, "km")
  2084. }
  2085. ]
  2086. )
  2087. };
  2088. characterMakers["Yakuz"] = () => {
  2089. return makeCharacter(
  2090. "Yakuz",
  2091. "Cilenomon",
  2092. {
  2093. front: {
  2094. height: math.unit(6, "feet"),
  2095. weight: math.unit(180, "lb"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/yakuz/front.svg"
  2099. }
  2100. }
  2101. },
  2102. [
  2103. {
  2104. name: "Small",
  2105. height: math.unit(5, "meters")
  2106. },
  2107. {
  2108. name: "Macro",
  2109. height: math.unit(1500, "meters"),
  2110. default: true
  2111. },
  2112. {
  2113. name: "Megamacro",
  2114. height: math.unit(200, "km")
  2115. },
  2116. {
  2117. name: "Gigamacro",
  2118. height: math.unit(100000, "km")
  2119. }
  2120. ]
  2121. )
  2122. };
  2123. characterMakers["Mirova"] = () => {
  2124. return makeCharacter(
  2125. "Mirova",
  2126. "Cilenomon",
  2127. {
  2128. front: {
  2129. height: math.unit(6, "feet"),
  2130. weight: math.unit(175, "lb"),
  2131. name: "Front",
  2132. image: {
  2133. source: "./media/characters/mirova/front.svg"
  2134. }
  2135. }
  2136. },
  2137. [
  2138. {
  2139. name: "Small",
  2140. height: math.unit(5, "meters")
  2141. },
  2142. {
  2143. name: "Macro",
  2144. height: math.unit(900, "meters"),
  2145. default: true
  2146. },
  2147. {
  2148. name: "Megamacro",
  2149. height: math.unit(135, "km")
  2150. },
  2151. {
  2152. name: "Gigamacro",
  2153. height: math.unit(20000, "km")
  2154. }
  2155. ]
  2156. )
  2157. };
  2158. characterMakers["Asana (Mech)"] = () => {
  2159. return makeCharacter(
  2160. "Asana (Mech)",
  2161. "Asana",
  2162. {
  2163. side: {
  2164. height: math.unit(28.35, "feet"),
  2165. weight: math.unit(99.75, "tons"),
  2166. name: "Side",
  2167. image: {
  2168. source: "./media/characters/asana-mech/side.svg"
  2169. }
  2170. }
  2171. },
  2172. [
  2173. {
  2174. name: "Normal",
  2175. height: math.unit(28.35, "feet"),
  2176. default: true
  2177. },
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(2500, "feet")
  2181. },
  2182. {
  2183. name: "Megamacro",
  2184. height: math.unit(25, "miles")
  2185. },
  2186. {
  2187. name: "Examacro",
  2188. height: math.unit(6e8, "lightyears")
  2189. },
  2190. ]
  2191. )
  2192. };
  2193. characterMakers["Ashtrek"] = () => {
  2194. return makeCharacter(
  2195. "Ashtrek",
  2196. "Ashtrek",
  2197. {
  2198. front: {
  2199. height: math.unit(2, "meters"),
  2200. weight: math.unit(70, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/ashtrek/front.svg",
  2204. extra: 560/524 ,
  2205. bottom: 0.01
  2206. }
  2207. },
  2208. frontArmor: {
  2209. height: math.unit(2, "meters"),
  2210. weight: math.unit(76, "kg"),
  2211. name: "Front (Armor)",
  2212. image: {
  2213. source: "./media/characters/ashtrek/front-armor.svg",
  2214. extra: 561/527 ,
  2215. bottom: 0.01
  2216. }
  2217. },
  2218. side: {
  2219. height: math.unit(2, "meters"),
  2220. weight: math.unit(70, "kg"),
  2221. name: "Side",
  2222. image: {
  2223. source: "./media/characters/ashtrek/side.svg",
  2224. extra: 1717/1609 ,
  2225. bottom: 0.005
  2226. }
  2227. },
  2228. back: {
  2229. height: math.unit(2, "meters"),
  2230. weight: math.unit(70, "kg"),
  2231. name: "Back",
  2232. image: {
  2233. source: "./media/characters/ashtrek/back.svg",
  2234. extra: 1570/1501
  2235. }
  2236. },
  2237. },
  2238. [
  2239. {
  2240. name: "DEFCON 5",
  2241. height: math.unit(5, "meters")
  2242. },
  2243. {
  2244. name: "DEFCON 4",
  2245. height: math.unit(500, "meters"),
  2246. default: true
  2247. },
  2248. {
  2249. name: "DEFCON 3",
  2250. height: math.unit(5, "km")
  2251. },
  2252. {
  2253. name: "DEFCON 2",
  2254. height: math.unit(500, "km")
  2255. },
  2256. {
  2257. name: "DEFCON 1",
  2258. height: math.unit(500000, "km")
  2259. },
  2260. {
  2261. name: "DEFCON 0",
  2262. height: math.unit(3, "gigaparsecs")
  2263. },
  2264. ]
  2265. )
  2266. };
  2267. characterMakers["Gale"] = () => {
  2268. return makeCharacter(
  2269. "Gale",
  2270. "GaleFierre",
  2271. {
  2272. front: {
  2273. height: math.unit(2, "meters"),
  2274. weight: math.unit(76, "kg"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/gale/front.svg"
  2278. }
  2279. },
  2280. frontAlt1: {
  2281. height: math.unit(2, "meters"),
  2282. weight: math.unit(76, "kg"),
  2283. name: "Front (Alt 1)",
  2284. image: {
  2285. source: "./media/characters/gale/front-alt-1.svg"
  2286. }
  2287. },
  2288. frontAlt2: {
  2289. height: math.unit(2, "meters"),
  2290. weight: math.unit(76, "kg"),
  2291. name: "Front (Alt 2)",
  2292. image: {
  2293. source: "./media/characters/gale/front-alt-2.svg"
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "Normal",
  2300. height: math.unit(7, "feet")
  2301. },
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(150, "feet"),
  2305. default: true
  2306. },
  2307. {
  2308. name: "Macro+",
  2309. height: math.unit(300, "feet")
  2310. },
  2311. ]
  2312. )
  2313. };
  2314. characterMakers["Draylen"] = () => {
  2315. return makeCharacter(
  2316. "Draylen",
  2317. "Longshot Coyote",
  2318. {
  2319. front: {
  2320. height: math.unit(2, "meters"),
  2321. weight: math.unit(76, "kg"),
  2322. name: "Front",
  2323. image: {
  2324. source: "./media/characters/draylen/front.svg"
  2325. }
  2326. }
  2327. },
  2328. [
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(150, "feet"),
  2332. default: true
  2333. }
  2334. ]
  2335. )
  2336. };
  2337. characterMakers["Chez"] = () => {
  2338. return makeCharacter(
  2339. "Chez",
  2340. "Ashtrek",
  2341. {
  2342. front: {
  2343. height: math.unit(7 + 9 / 12, "feet"),
  2344. weight: math.unit(379, "lbs"),
  2345. name: "Front",
  2346. image: {
  2347. source: "./media/characters/chez/front.svg"
  2348. }
  2349. },
  2350. side: {
  2351. height: math.unit(7 + 9 / 12, "feet"),
  2352. weight: math.unit(379, "lbs"),
  2353. name: "Side",
  2354. image: {
  2355. source: "./media/characters/chez/side.svg"
  2356. }
  2357. }
  2358. },
  2359. [
  2360. {
  2361. name: "Normal",
  2362. height: math.unit(7 + 9 / 12, "feet"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "God King",
  2367. height: math.unit(9750000, "meters")
  2368. }
  2369. ]
  2370. )
  2371. };
  2372. characterMakers["Kaylum"] = () => {
  2373. return makeCharacter(
  2374. "Kaylum",
  2375. "DJDarkJaro",
  2376. {
  2377. front: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(275, "lbs"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/kaylum/front.svg",
  2383. bottom: 0.01,
  2384. extra: 1166 / 1031
  2385. }
  2386. },
  2387. frontWingless: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(275, "lbs"),
  2390. name: "Front (Wingless)",
  2391. image: {
  2392. source: "./media/characters/kaylum/front-wingless.svg",
  2393. bottom: 0.01,
  2394. extra: 1117 / 1031
  2395. }
  2396. }
  2397. },
  2398. [
  2399. {
  2400. name: "Normal",
  2401. height: math.unit(3.05, "meters")
  2402. },
  2403. {
  2404. name: "Master",
  2405. height: math.unit(5.5, "meters")
  2406. },
  2407. {
  2408. name: "Rampage",
  2409. height: math.unit(19, "meters")
  2410. },
  2411. {
  2412. name: "Macro Lite",
  2413. height: math.unit(37, "meters")
  2414. },
  2415. {
  2416. name: "Hyper Predator",
  2417. height: math.unit(61, "meters")
  2418. },
  2419. {
  2420. name: "Macro",
  2421. height: math.unit(138, "meters"),
  2422. default: true
  2423. }
  2424. ]
  2425. )
  2426. };
  2427. characterMakers["Geta"] = () => {
  2428. return makeCharacter(
  2429. "Geta",
  2430. "Aeznon",
  2431. {
  2432. front: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(150, "lbs"),
  2435. name: "Front",
  2436. image: {
  2437. source: "./media/characters/geta/front.svg"
  2438. }
  2439. }
  2440. },
  2441. [
  2442. {
  2443. name: "Micro",
  2444. height: math.unit(3, "inches"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Normal",
  2449. height: math.unit(5 + 5 / 12, "feet")
  2450. }
  2451. ]
  2452. )
  2453. };
  2454. characterMakers["Tyrnn"] = () => {
  2455. return makeCharacter(
  2456. "Tyrnn",
  2457. "Tyrnn",
  2458. {
  2459. front: {
  2460. height: math.unit(6, "feet"),
  2461. weight: math.unit(300, "lbs"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/tyrnn/front.svg"
  2465. }
  2466. }
  2467. },
  2468. [
  2469. {
  2470. name: "Main Height",
  2471. height: math.unit(355, "feet"),
  2472. default: true
  2473. },
  2474. {
  2475. name: "Fave. Height",
  2476. height: math.unit(2400, "feet")
  2477. }
  2478. ]
  2479. )
  2480. };
  2481. characterMakers["Apple"] = () => {
  2482. return makeCharacter(
  2483. "Apple",
  2484. "Appledectomy",
  2485. {
  2486. front: {
  2487. height: math.unit(6, "feet"),
  2488. weight: math.unit(300, "lbs"),
  2489. name: "Front",
  2490. image: {
  2491. source: "./media/characters/appledectomy/front.svg"
  2492. }
  2493. }
  2494. },
  2495. [
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(2500, "feet")
  2499. },
  2500. {
  2501. name: "Megamacro",
  2502. height: math.unit(50, "miles"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Gigamacro",
  2507. height: math.unit(5000, "miles")
  2508. },
  2509. {
  2510. name: "Teramacro",
  2511. height: math.unit(250000, "miles")
  2512. },
  2513. ]
  2514. )
  2515. };
  2516. characterMakers["Vulpes"] = () => {
  2517. return makeCharacter(
  2518. "Vulpes",
  2519. "VulpesPawpad",
  2520. {
  2521. front: {
  2522. height: math.unit(6, "feet"),
  2523. weight: math.unit(200, "lbs"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/vulpes/front.svg"
  2527. }
  2528. },
  2529. side: {
  2530. height: math.unit(6, "feet"),
  2531. weight: math.unit(200, "lbs"),
  2532. name: "Side",
  2533. image: {
  2534. source: "./media/characters/vulpes/side.svg"
  2535. }
  2536. },
  2537. back: {
  2538. height: math.unit(6, "feet"),
  2539. weight: math.unit(200, "lbs"),
  2540. name: "Back",
  2541. image: {
  2542. source: "./media/characters/vulpes/back.svg"
  2543. }
  2544. },
  2545. feet: {
  2546. height: math.unit(1.276, "feet"),
  2547. name: "Feet",
  2548. image: {
  2549. source: "./media/characters/vulpes/feet.svg"
  2550. }
  2551. },
  2552. },
  2553. [
  2554. {
  2555. name: "Micro",
  2556. height: math.unit(2, "inches")
  2557. },
  2558. {
  2559. name: "Normal",
  2560. height: math.unit(6.3, "feet")
  2561. },
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(850, "feet")
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(7500, "feet"),
  2569. default: true
  2570. },
  2571. {
  2572. name: "Gigamacro",
  2573. height: math.unit(570000, "miles")
  2574. }
  2575. ]
  2576. )
  2577. };
  2578. characterMakers["Rain Fallen"] = () => {
  2579. return makeCharacter(
  2580. "Rain Fallen",
  2581. "Rain Fallen",
  2582. {
  2583. front: {
  2584. height: math.unit(6, "feet"),
  2585. weight: math.unit(210, "lbs"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/rain/front.svg"
  2589. }
  2590. },
  2591. side: {
  2592. height: math.unit(6, "feet"),
  2593. weight: math.unit(210, "lbs"),
  2594. name: "Side",
  2595. image: {
  2596. source: "./media/characters/rain/side.svg"
  2597. }
  2598. },
  2599. back: {
  2600. height: math.unit(6, "feet"),
  2601. weight: math.unit(210, "lbs"),
  2602. name: "Back",
  2603. image: {
  2604. source: "./media/characters/rain/back.svg"
  2605. }
  2606. },
  2607. feral: {
  2608. height: math.unit(9, "feet"),
  2609. weight: math.unit(700, "lbs"),
  2610. name: "Feral",
  2611. image: {
  2612. source: "./media/characters/rain/feral.svg"
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(5, "meter")
  2620. },
  2621. {
  2622. name: "Macro",
  2623. height: math.unit(150, "meter"),
  2624. default: true
  2625. },
  2626. {
  2627. name: "Megamacro",
  2628. height: math.unit(278e6, "meter")
  2629. },
  2630. {
  2631. name: "Gigamacro",
  2632. height: math.unit(2e9, "meter")
  2633. },
  2634. {
  2635. name: "Teramacro",
  2636. height: math.unit(8e12, "meter")
  2637. },
  2638. {
  2639. name: "Devourer",
  2640. height: math.unit(14, "zettameters")
  2641. },
  2642. {
  2643. name: "Scarlet King",
  2644. height: math.unit(18, "yottameters")
  2645. },
  2646. {
  2647. name: "Void",
  2648. height: math.unit(6.66e66, "yottameters")
  2649. }
  2650. ]
  2651. )
  2652. };
  2653. characterMakers["Zaakira"] = () => {
  2654. return makeCharacter(
  2655. "Zaakira",
  2656. "Jazzywolf",
  2657. {
  2658. standing: {
  2659. height: math.unit(6, "feet"),
  2660. weight: math.unit(180, "lbs"),
  2661. name: "Standing",
  2662. image: {
  2663. source: "./media/characters/zaakira/standing.svg"
  2664. }
  2665. },
  2666. laying: {
  2667. height: math.unit(3, "feet"),
  2668. weight: math.unit(180, "lbs"),
  2669. name: "Laying",
  2670. image: {
  2671. source: "./media/characters/zaakira/laying.svg"
  2672. }
  2673. },
  2674. },
  2675. [
  2676. {
  2677. name: "Normal",
  2678. height: math.unit(12, "feet")
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(279, "feet"),
  2683. default: true
  2684. }
  2685. ]
  2686. )
  2687. };
  2688. characterMakers["Sigvald"] = () => {
  2689. return makeCharacter(
  2690. "Sigvald",
  2691. "Sigvald",
  2692. {
  2693. front: {
  2694. height: math.unit(6, "feet"),
  2695. weight: math.unit(250, "lbs"),
  2696. name: "Front",
  2697. image: {
  2698. source: "./media/characters/sigvald/front.svg",
  2699. extra: 1000 / 850
  2700. }
  2701. },
  2702. back: {
  2703. height: math.unit(6, "feet"),
  2704. weight: math.unit(250, "lbs"),
  2705. name: "Back",
  2706. image: {
  2707. source: "./media/characters/sigvald/back.svg"
  2708. }
  2709. },
  2710. },
  2711. [
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(8, "feet")
  2715. },
  2716. {
  2717. name: "Large",
  2718. height: math.unit(12, "feet")
  2719. },
  2720. {
  2721. name: "Larger",
  2722. height: math.unit(20, "feet")
  2723. },
  2724. {
  2725. name: "Macro",
  2726. height: math.unit(150, "feet")
  2727. },
  2728. {
  2729. name: "Macro+",
  2730. height: math.unit(200, "feet"),
  2731. default: true
  2732. },
  2733. ]
  2734. )
  2735. };
  2736. characterMakers["Scott"] = () => {
  2737. return makeCharacter(
  2738. "Scott",
  2739. "Scott",
  2740. {
  2741. side: {
  2742. height: math.unit(12, "feet"),
  2743. weight: math.unit(3000, "lbs"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/scott/side.svg",
  2747. extra: 1,
  2748. bottom: 0.069
  2749. }
  2750. },
  2751. upright: {
  2752. height: math.unit(12, "feet"),
  2753. weight: math.unit(3000, "lbs"),
  2754. name: "Upright",
  2755. image: {
  2756. source: "./media/characters/scott/upright.svg",
  2757. extra: 1,
  2758. bottom: 0.05
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(12, "feet"),
  2766. default: true
  2767. },
  2768. ]
  2769. )
  2770. };
  2771. characterMakers["Tobias"] = () => {
  2772. return makeCharacter(
  2773. "Tobias",
  2774. "Tobias",
  2775. {
  2776. side: {
  2777. height: math.unit(8, "meters"),
  2778. weight: math.unit(84755, "lbs"),
  2779. name: "Side",
  2780. image: {
  2781. source: "./media/characters/tobias/side.svg",
  2782. extra: 5 / 4
  2783. }
  2784. },
  2785. },
  2786. [
  2787. {
  2788. name: "Normal",
  2789. height: math.unit(8, "meters"),
  2790. default: true
  2791. },
  2792. ]
  2793. )
  2794. };
  2795. characterMakers["Kieran"] = () => {
  2796. return makeCharacter(
  2797. "Kieran",
  2798. "Kieran",
  2799. {
  2800. front: {
  2801. height: math.unit(5.5, "feet"),
  2802. weight: math.unit(400, "lbs"),
  2803. name: "Front",
  2804. image: {
  2805. source: "./media/characters/kieran/front.svg",
  2806. extra: 1.05
  2807. }
  2808. },
  2809. side: {
  2810. height: math.unit(5.5, "feet"),
  2811. weight: math.unit(400, "lbs"),
  2812. name: "Side",
  2813. image: {
  2814. source: "./media/characters/kieran/side.svg",
  2815. extra: 950 / 850
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(5.5, "feet"),
  2823. default: true
  2824. },
  2825. ]
  2826. )
  2827. };
  2828. characterMakers["Sanya"] = () => {
  2829. return makeCharacter(
  2830. "Sanya",
  2831. "BanterGhost",
  2832. {
  2833. side: {
  2834. height: math.unit(2, "meters"),
  2835. weight: math.unit(70, "kg"),
  2836. name: "Side",
  2837. image: {
  2838. source: "./media/characters/sanya/side.svg",
  2839. bottom: 0.02,
  2840. extra: 1.02
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Small",
  2847. height: math.unit(2, "meters")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(3, "meters")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(16, "meters"),
  2856. default: true
  2857. },
  2858. ]
  2859. )
  2860. };
  2861. characterMakers["Miranda"] = () => {
  2862. return makeCharacter(
  2863. "Miranda",
  2864. "MirandaArqayla",
  2865. {
  2866. side: {
  2867. height: math.unit(2, "meters"),
  2868. weight: math.unit(120, "kg"),
  2869. name: "Front",
  2870. image: {
  2871. source: "./media/characters/miranda/front.svg",
  2872. extra: 10.6 / 10
  2873. }
  2874. },
  2875. },
  2876. [
  2877. {
  2878. name: "Normal",
  2879. height: math.unit(10, "feet"),
  2880. default: true
  2881. }
  2882. ]
  2883. )
  2884. };
  2885. characterMakers["James"] = () => {
  2886. return makeCharacter(
  2887. "James",
  2888. "MirandaArqayla",
  2889. {
  2890. side: {
  2891. height: math.unit(2, "meters"),
  2892. weight: math.unit(100, "kg"),
  2893. name: "Front",
  2894. image: {
  2895. source: "./media/characters/james/front.svg",
  2896. extra: 10 / 8.5
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(8.5, "feet"),
  2904. default: true
  2905. }
  2906. ]
  2907. )
  2908. };
  2909. characterMakers["Heather"] = () => {
  2910. return makeCharacter(
  2911. "Heather",
  2912. "MirandaArqayla",
  2913. {
  2914. side: {
  2915. height: math.unit(9.5, "feet"),
  2916. weight: math.unit(2500, "lbs"),
  2917. name: "Side",
  2918. image: {
  2919. source: "./media/characters/heather/side.svg"
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(9.5, "feet"),
  2927. default: true
  2928. }
  2929. ]
  2930. )
  2931. };
  2932. characterMakers["Lukas"] = () => {
  2933. return makeCharacter(
  2934. "Lukas",
  2935. "MirandaArqayla",
  2936. {
  2937. side: {
  2938. height: math.unit(6.5, "feet"),
  2939. weight: math.unit(400, "lbs"),
  2940. name: "Side",
  2941. image: {
  2942. source: "./media/characters/lukas/side.svg",
  2943. extra: 7.25 / 6.5
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Normal",
  2950. height: math.unit(6.5, "feet"),
  2951. default: true
  2952. }
  2953. ]
  2954. )
  2955. };
  2956. characterMakers["Louise"] = () => {
  2957. return makeCharacter(
  2958. "Louise",
  2959. "MirandaArqayla",
  2960. {
  2961. side: {
  2962. height: math.unit(5, "feet"),
  2963. weight: math.unit(3000, "lbs"),
  2964. name: "Side",
  2965. image: {
  2966. source: "./media/characters/louise/side.svg"
  2967. }
  2968. },
  2969. },
  2970. [
  2971. {
  2972. name: "Normal",
  2973. height: math.unit(5, "feet"),
  2974. default: true
  2975. }
  2976. ]
  2977. )
  2978. };
  2979. characterMakers["Ramona"] = () => {
  2980. return makeCharacter(
  2981. "Ramona",
  2982. "ZakuraTech",
  2983. {
  2984. side: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(150, "lbs"),
  2987. name: "Side",
  2988. image: {
  2989. source: "./media/characters/ramona/side.svg"
  2990. }
  2991. },
  2992. },
  2993. [
  2994. {
  2995. name: "Normal",
  2996. height: math.unit(5.3, "meters"),
  2997. default: true
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(20, "stories")
  3002. },
  3003. {
  3004. name: "Macro+",
  3005. height: math.unit(50, "stories")
  3006. },
  3007. ]
  3008. )
  3009. };
  3010. characterMakers["Deerpuff"] = () => {
  3011. return makeCharacter(
  3012. "Deerpuff",
  3013. "Deerpuff",
  3014. {
  3015. standing: {
  3016. height: math.unit(5.75, "feet"),
  3017. weight: math.unit(160, "lbs"),
  3018. name: "Standing",
  3019. image: {
  3020. source: "./media/characters/deerpuff/standing.svg",
  3021. extra: 682 / 624
  3022. }
  3023. },
  3024. sitting: {
  3025. height: math.unit(5.75 / 1.79, "feet"),
  3026. weight: math.unit(160, "lbs"),
  3027. name: "Sitting",
  3028. image: {
  3029. source: "./media/characters/deerpuff/sitting.svg",
  3030. bottom: 44 / 400,
  3031. extra: 1
  3032. }
  3033. },
  3034. taurLaying: {
  3035. height: math.unit(6, "feet"),
  3036. weight: math.unit(400, "lbs"),
  3037. name: "Taur (Laying)",
  3038. image: {
  3039. source: "./media/characters/deerpuff/taur-laying.svg"
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Puffball",
  3046. height: math.unit(6, "inches")
  3047. },
  3048. {
  3049. name: "Normalpuff",
  3050. height: math.unit(5.75, "feet")
  3051. },
  3052. {
  3053. name: "Macropuff",
  3054. height: math.unit(1500, "feet"),
  3055. default: true
  3056. },
  3057. {
  3058. name: "Megapuff",
  3059. height: math.unit(500, "miles")
  3060. },
  3061. {
  3062. name: "Gigapuff",
  3063. height: math.unit(250000, "miles")
  3064. },
  3065. {
  3066. name: "Omegapuff",
  3067. height: math.unit(1000, "lightyears")
  3068. },
  3069. ]
  3070. )
  3071. };
  3072. characterMakers["Vivian"] = () => {
  3073. return makeCharacter(
  3074. "Vivian",
  3075. "Fauxlacine",
  3076. {
  3077. stomping: {
  3078. height: math.unit(6, "feet"),
  3079. weight: math.unit(170, "lbs"),
  3080. name: "Stomping",
  3081. image: {
  3082. source: "./media/characters/vivian/stomping.svg"
  3083. }
  3084. },
  3085. sitting: {
  3086. height: math.unit(6 / 1.75, "feet"),
  3087. weight: math.unit(170, "lbs"),
  3088. name: "Sitting",
  3089. image: {
  3090. source: "./media/characters/vivian/sitting.svg",
  3091. bottom: 1 / 6.4,
  3092. extra: 1,
  3093. }
  3094. },
  3095. },
  3096. [
  3097. {
  3098. name: "Normal",
  3099. height: math.unit(7, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Macro",
  3104. height: math.unit(10, "stories")
  3105. },
  3106. {
  3107. name: "Macro+",
  3108. height: math.unit(30, "stories")
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(10, "miles")
  3113. },
  3114. {
  3115. name: "Megamacro+",
  3116. height: math.unit(2750000, "meters")
  3117. },
  3118. ]
  3119. )
  3120. };
  3121. characterMakers["Prince"] = () => {
  3122. return makeCharacter(
  3123. "Prince",
  3124. "Kurrikage",
  3125. {
  3126. front: {
  3127. height: math.unit(6, "feet"),
  3128. weight: math.unit(160, "lbs"),
  3129. name: "Front",
  3130. image: {
  3131. source: "./media/characters/prince/front.svg",
  3132. extra: 3400/3000
  3133. }
  3134. },
  3135. jumping: {
  3136. height: math.unit(6, "feet"),
  3137. weight: math.unit(160, "lbs"),
  3138. name: "Jumping",
  3139. image: {
  3140. source: "./media/characters/prince/jump.svg",
  3141. extra: 2555/2134
  3142. }
  3143. },
  3144. },
  3145. [
  3146. {
  3147. name: "Normal",
  3148. height: math.unit(7.75, "feet"),
  3149. default: true
  3150. }
  3151. ]
  3152. )
  3153. };
  3154. characterMakers["Psymon"] = () => {
  3155. return makeCharacter(
  3156. "Psymon",
  3157. "Kurrikage",
  3158. {
  3159. standing: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(300, "lbs"),
  3162. name: "Standing",
  3163. image: {
  3164. source: "./media/characters/psymon/standing.svg",
  3165. extra: 1888/1810
  3166. }
  3167. },
  3168. slithering: {
  3169. height: math.unit(6, "feet"),
  3170. weight: math.unit(300, "lbs"),
  3171. name: "Slithering",
  3172. image: {
  3173. source: "./media/characters/psymon/slithering.svg",
  3174. extra: 1330/1224
  3175. }
  3176. },
  3177. slitheringAlt: {
  3178. height: math.unit(6, "feet"),
  3179. weight: math.unit(300, "lbs"),
  3180. name: "Slithering (Alt)",
  3181. image: {
  3182. source: "./media/characters/psymon/slithering-alt.svg",
  3183. extra: 1330/1224
  3184. }
  3185. },
  3186. },
  3187. [
  3188. {
  3189. name: "Normal",
  3190. height: math.unit(11.25, "feet"),
  3191. default: true
  3192. }
  3193. ]
  3194. )
  3195. };
  3196. characterMakers["Daimos"] = () => {
  3197. return makeCharacter(
  3198. "Daimos",
  3199. "Kurrikage",
  3200. {
  3201. front: {
  3202. height: math.unit(6, "feet"),
  3203. weight: math.unit(180, "lbs"),
  3204. name: "Front",
  3205. image: {
  3206. source: "./media/characters/daimos/front.svg",
  3207. extra: 4160/3897
  3208. }
  3209. }
  3210. },
  3211. [
  3212. {
  3213. name: "Normal",
  3214. height: math.unit(8, "feet"),
  3215. default: true
  3216. }
  3217. ]
  3218. )
  3219. };
  3220. characterMakers["Blake"] = () => {
  3221. return makeCharacter(
  3222. "Blake",
  3223. "Kurrikage",
  3224. {
  3225. side: {
  3226. height: math.unit(6, "feet"),
  3227. weight: math.unit(180, "lbs"),
  3228. name: "Side",
  3229. image: {
  3230. source: "./media/characters/blake/side.svg",
  3231. extra: 1212/1120 ,
  3232. bottom: 0.05
  3233. }
  3234. },
  3235. crouched: {
  3236. height: math.unit(6*0.57, "feet"),
  3237. weight: math.unit(180, "lbs"),
  3238. name: "Crouched",
  3239. image: {
  3240. source: "./media/characters/blake/crouched.svg",
  3241. extra: 840/587 ,
  3242. bottom: 0.04
  3243. }
  3244. },
  3245. bent: {
  3246. height: math.unit(6*0.75, "feet"),
  3247. weight: math.unit(180, "lbs"),
  3248. name: "Bent",
  3249. image: {
  3250. source: "./media/characters/blake/bent.svg",
  3251. extra: 592/544 ,
  3252. bottom: 0.035
  3253. }
  3254. },
  3255. },
  3256. [
  3257. {
  3258. name: "Normal",
  3259. height: math.unit(8 + 1/6, "feet"),
  3260. default: true
  3261. }
  3262. ]
  3263. )
  3264. };
  3265. characterMakers["Guisetto"] = () => {
  3266. return makeCharacter(
  3267. "Guisetto",
  3268. "Kurrikage",
  3269. {
  3270. front: {
  3271. height: math.unit(6, "feet"),
  3272. weight: math.unit(180, "lbs"),
  3273. name: "Front",
  3274. image: {
  3275. source: "./media/characters/guisetto/front.svg",
  3276. extra: 856/817
  3277. }
  3278. },
  3279. airborne: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(180, "lbs"),
  3282. name: "Airborne",
  3283. image: {
  3284. source: "./media/characters/guisetto/airborne.svg",
  3285. extra: 584/525
  3286. }
  3287. },
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(10 + 11/12, "feet"),
  3293. default: true
  3294. }
  3295. ]
  3296. )
  3297. };
  3298. characterMakers["Luxor"] = () => {
  3299. return makeCharacter(
  3300. "Luxor",
  3301. "Kurrikage",
  3302. {
  3303. front: {
  3304. height: math.unit(6, "feet"),
  3305. weight: math.unit(180, "lbs"),
  3306. name: "Front",
  3307. image: {
  3308. source: "./media/characters/luxor/front.svg",
  3309. extra: 2940/2152
  3310. }
  3311. },
  3312. back: {
  3313. height: math.unit(6, "feet"),
  3314. weight: math.unit(180, "lbs"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/luxor/back.svg",
  3318. extra: 1083/960
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(5 + 5/6, "feet"),
  3326. default: true
  3327. },
  3328. {
  3329. name: "Lamp",
  3330. height: math.unit(50, "feet")
  3331. },
  3332. {
  3333. name: "Lämp",
  3334. height: math.unit(300, "feet")
  3335. },
  3336. {
  3337. name: "The sun is a lamp",
  3338. height: math.unit(250000, "miles")
  3339. },
  3340. ]
  3341. )
  3342. };
  3343. characterMakers["Huoyan"] = () => {
  3344. return makeCharacter(
  3345. "Huoyan",
  3346. "Kurrikage",
  3347. {
  3348. front: {
  3349. height: math.unit(6, "feet"),
  3350. weight: math.unit(50, "lbs"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/huoyan/front.svg"
  3354. }
  3355. },
  3356. side: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(180, "lbs"),
  3359. name: "Side",
  3360. image: {
  3361. source: "./media/characters/huoyan/side.svg"
  3362. }
  3363. },
  3364. },
  3365. [
  3366. {
  3367. name: "Normal",
  3368. height: math.unit(65, "feet"),
  3369. default: true
  3370. }
  3371. ]
  3372. )
  3373. };
  3374. characterMakers["Tails"] = () => {
  3375. return makeCharacter(
  3376. "Tails",
  3377. "Rainier",
  3378. {
  3379. front: {
  3380. height: math.unit(5 + 3/4, "feet"),
  3381. weight: math.unit(120, "lbs"),
  3382. name: "Front",
  3383. image: {
  3384. source: "./media/characters/tails/front.svg"
  3385. }
  3386. }
  3387. },
  3388. [
  3389. {
  3390. name: "Normal",
  3391. height: math.unit(5 + 3/4, "feet"),
  3392. default: true
  3393. }
  3394. ]
  3395. )
  3396. };
  3397. characterMakers["Rainy"] = () => {
  3398. return makeCharacter(
  3399. "Rainy",
  3400. "Rainier",
  3401. {
  3402. front: {
  3403. height: math.unit(4, "feet"),
  3404. weight: math.unit(50, "lbs"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/rainy/front.svg"
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(800, "feet"),
  3415. default: true
  3416. }
  3417. ]
  3418. )
  3419. };
  3420. characterMakers["Rainier"] = () => {
  3421. return makeCharacter(
  3422. "Rainier",
  3423. "Rainier",
  3424. {
  3425. front: {
  3426. height: math.unit(6, "feet"),
  3427. weight: math.unit(150, "lbs"),
  3428. name: "Front",
  3429. image: {
  3430. source: "./media/characters/rainier/front.svg"
  3431. }
  3432. }
  3433. },
  3434. [
  3435. {
  3436. name: "Micro",
  3437. height: math.unit(2, "mm"),
  3438. default: true
  3439. }
  3440. ]
  3441. )
  3442. };
  3443. characterMakers["Andy"] = () => {
  3444. return makeCharacter(
  3445. "Andy",
  3446. "drewbermeister",
  3447. {
  3448. front: {
  3449. height: math.unit(6, "feet"),
  3450. weight: math.unit(180, "lbs"),
  3451. name: "Front",
  3452. image: {
  3453. source: "./media/characters/andy/front.svg"
  3454. }
  3455. }
  3456. },
  3457. [
  3458. {
  3459. name: "Normal",
  3460. height: math.unit(8, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(1000, "feet")
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(5, "miles")
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(5000, "miles")
  3474. },
  3475. ]
  3476. )
  3477. };
  3478. characterMakers["Cimmaron"] = () => {
  3479. return makeCharacter(
  3480. "Cimmaron",
  3481. "Cimmaron",
  3482. {
  3483. frontClothed: {
  3484. height: math.unit(6, "feet"),
  3485. weight: math.unit(210, "lbs"),
  3486. name: "Front (Clothed)",
  3487. image: {
  3488. source: "./media/characters/cimmaron/front-clothed.svg",
  3489. extra: 701/676 ,
  3490. bottom: 0.046
  3491. }
  3492. },
  3493. backClothed: {
  3494. height: math.unit(6, "feet"),
  3495. weight: math.unit(210, "lbs"),
  3496. name: "Back (Clothed)",
  3497. image: {
  3498. source: "./media/characters/cimmaron/back-clothed.svg",
  3499. extra: 701/676 ,
  3500. bottom: 0.046
  3501. }
  3502. },
  3503. frontNude: {
  3504. height: math.unit(6, "feet"),
  3505. weight: math.unit(210, "lbs"),
  3506. name: "Front (Nude)",
  3507. image: {
  3508. source: "./media/characters/cimmaron/front-nude.svg",
  3509. extra: 701/676 ,
  3510. bottom: 0.046
  3511. }
  3512. },
  3513. backNude: {
  3514. height: math.unit(6, "feet"),
  3515. weight: math.unit(210, "lbs"),
  3516. name: "Back (Nude)",
  3517. image: {
  3518. source: "./media/characters/cimmaron/back-nude.svg",
  3519. extra: 701/676 ,
  3520. bottom: 0.046
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(6, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro Mayor",
  3532. height: math.unit(350, "meters")
  3533. },
  3534. ]
  3535. )
  3536. };
  3537. characterMakers["Akari Kaen"] = () => {
  3538. return makeCharacter(
  3539. "Akari Kaen",
  3540. "Akari",
  3541. {
  3542. front: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(200, "lbs"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/akari/front.svg",
  3548. extra: 962/901,
  3549. bottom: 0.04
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Micro",
  3556. height: math.unit(5, "inches"),
  3557. default: true
  3558. },
  3559. {
  3560. name: "Normal",
  3561. height: math.unit(7, "feet")
  3562. },
  3563. ]
  3564. )
  3565. };
  3566. characterMakers["Cynosura"] = () => {
  3567. return makeCharacter(
  3568. "Cynosura",
  3569. "Cynosura",
  3570. {
  3571. front: {
  3572. height: math.unit(6, "feet"),
  3573. weight: math.unit(140, "lbs"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/cynosura/front.svg",
  3577. extra: 896/847
  3578. }
  3579. },
  3580. back: {
  3581. height: math.unit(6, "feet"),
  3582. weight: math.unit(140, "lbs"),
  3583. name: "Back",
  3584. image: {
  3585. source: "./media/characters/cynosura/back.svg",
  3586. extra: 1365/1250
  3587. }
  3588. },
  3589. },
  3590. [
  3591. {
  3592. name: "Micro",
  3593. height: math.unit(4, "inches")
  3594. },
  3595. {
  3596. name: "Normal",
  3597. height: math.unit(5.75, "feet"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Tall",
  3602. height: math.unit(10, "feet")
  3603. },
  3604. {
  3605. name: "Big",
  3606. height: math.unit(20, "feet")
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(50, "feet")
  3611. },
  3612. ]
  3613. )
  3614. };
  3615. characterMakers["Gin"] = () => {
  3616. return makeCharacter(
  3617. "Gin",
  3618. "Ozzie_gt",
  3619. {
  3620. front: {
  3621. height: math.unit(6, "feet"),
  3622. weight: math.unit(170, "lbs"),
  3623. name: "Front",
  3624. image: {
  3625. source: "./media/characters/gin/front.svg"
  3626. }
  3627. },
  3628. foot: {
  3629. height: math.unit(6/4.25, "feet"),
  3630. name: "Foot",
  3631. image: {
  3632. source: "./media/characters/gin/foot.svg"
  3633. }
  3634. },
  3635. sole: {
  3636. height: math.unit(6/4.40, "feet"),
  3637. name: "Sole",
  3638. image: {
  3639. source: "./media/characters/gin/sole.svg"
  3640. }
  3641. },
  3642. },
  3643. [
  3644. {
  3645. name: "Normal",
  3646. height: math.unit(9 + 4/12, "feet")
  3647. },
  3648. {
  3649. name: "Macro",
  3650. height: math.unit(1500, "feet")
  3651. },
  3652. {
  3653. name: "Megamacro",
  3654. height: math.unit(200, "miles"),
  3655. default: true
  3656. },
  3657. {
  3658. name: "Gigamacro",
  3659. height: math.unit(500, "megameters")
  3660. },
  3661. {
  3662. name: "Teramacro",
  3663. height: math.unit(15, "lightyears")
  3664. }
  3665. ]
  3666. )
  3667. };
  3668. characterMakers["Guy"] = () => {
  3669. return makeCharacter(
  3670. "Guy",
  3671. "Whatastandupguy",
  3672. {
  3673. front: {
  3674. height: math.unit(6 + 1/6, "feet"),
  3675. weight: math.unit(178, "lbs"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/guy/front.svg"
  3679. }
  3680. }
  3681. },
  3682. [
  3683. {
  3684. name: "Normal",
  3685. height: math.unit(6 + 1/6, "feet"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Large",
  3690. height: math.unit(25 + 7/12, "feet")
  3691. },
  3692. {
  3693. name: "Macro",
  3694. height: math.unit(60 + 9/12, "feet")
  3695. },
  3696. {
  3697. name: "Macro+",
  3698. height: math.unit(246, "feet")
  3699. },
  3700. {
  3701. name: "Macro++",
  3702. height: math.unit(878, "feet")
  3703. }
  3704. ]
  3705. )
  3706. };
  3707. characterMakers["Tiberius"] = () => {
  3708. return makeCharacter(
  3709. "Tiberius",
  3710. "movler",
  3711. {
  3712. front: {
  3713. height: math.unit(9, "feet"),
  3714. weight: math.unit(800, "lbs"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/tiberius/front.svg",
  3718. extra: 2295/2071
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(9, "feet"),
  3723. weight: math.unit(800, "lbs"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/tiberius/back.svg",
  3727. extra: 2373/2160
  3728. }
  3729. },
  3730. },
  3731. [
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(9, "feet"),
  3735. default: true
  3736. }
  3737. ]
  3738. )
  3739. };
  3740. characterMakers["Surgo"] = () => {
  3741. return makeCharacter(
  3742. "Surgo",
  3743. "movler",
  3744. {
  3745. front: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(600, "lbs"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/surgo/front.svg",
  3751. extra: 3591/2227
  3752. }
  3753. },
  3754. back: {
  3755. height: math.unit(6, "feet"),
  3756. weight: math.unit(600, "lbs"),
  3757. name: "Back",
  3758. image: {
  3759. source: "./media/characters/surgo/back.svg",
  3760. extra: 3557/2228
  3761. }
  3762. },
  3763. laying: {
  3764. height: math.unit(6 * 0.85, "feet"),
  3765. weight: math.unit(600, "lbs"),
  3766. name: "Laying",
  3767. image: {
  3768. source: "./media/characters/surgo/laying.svg"
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(6, "feet"),
  3776. default: true
  3777. }
  3778. ]
  3779. )
  3780. };
  3781. characterMakers["Cibus"] = () => {
  3782. return makeCharacter(
  3783. "Cibus",
  3784. "movler",
  3785. {
  3786. side: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(150, "lbs"),
  3789. name: "Side",
  3790. image: {
  3791. source: "./media/characters/cibus/side.svg",
  3792. extra: 800/400
  3793. }
  3794. },
  3795. },
  3796. [
  3797. {
  3798. name: "Normal",
  3799. height: math.unit(6, "feet"),
  3800. default: true
  3801. }
  3802. ]
  3803. )
  3804. };
  3805. characterMakers["Nibbles"] = () => {
  3806. return makeCharacter(
  3807. "Nibbles",
  3808. "movler",
  3809. {
  3810. front: {
  3811. height: math.unit(6, "feet"),
  3812. weight: math.unit(240, "lbs"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/nibbles/front.svg"
  3816. }
  3817. },
  3818. side: {
  3819. height: math.unit(6, "feet"),
  3820. weight: math.unit(240, "lbs"),
  3821. name: "Side",
  3822. image: {
  3823. source: "./media/characters/nibbles/side.svg"
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(9, "feet"),
  3831. default: true
  3832. }
  3833. ]
  3834. )
  3835. };
  3836. characterMakers["Rikky"] = () => {
  3837. return makeCharacter(
  3838. "Rikky",
  3839. "Quake Yote",
  3840. {
  3841. side: {
  3842. height: math.unit(5 + 1/6, "feet"),
  3843. weight: math.unit(130, "lbs"),
  3844. name: "Side",
  3845. image: {
  3846. source: "./media/characters/rikky/side.svg"
  3847. }
  3848. },
  3849. },
  3850. [
  3851. {
  3852. name: "Normal",
  3853. height: math.unit(5 + 1/6, "feet")
  3854. },
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(152, "feet"),
  3858. default: true
  3859. },
  3860. {
  3861. name: "Megamacro",
  3862. height: math.unit(7, "miles")
  3863. }
  3864. ]
  3865. )
  3866. };
  3867. characterMakers["Malfressa"] = () => {
  3868. return makeCharacter(
  3869. "Malfressa",
  3870. "Scareye",
  3871. {
  3872. side: {
  3873. height: math.unit(370, "cm"),
  3874. weight: math.unit(350, "lbs"),
  3875. name: "Side",
  3876. image: {
  3877. source: "./media/characters/malfressa/side.svg"
  3878. }
  3879. },
  3880. walking: {
  3881. height: math.unit(370, "cm"),
  3882. weight: math.unit(350, "lbs"),
  3883. name: "Walking",
  3884. image: {
  3885. source: "./media/characters/malfressa/walking.svg"
  3886. }
  3887. },
  3888. feral: {
  3889. height: math.unit(2500, "cm"),
  3890. weight: math.unit(100000, "lbs"),
  3891. name: "Feral",
  3892. image: {
  3893. source: "./media/characters/malfressa/feral.svg",
  3894. extra: 2108/837 ,
  3895. bottom: 0.02
  3896. }
  3897. },
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(370, "cm")
  3903. },
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(300, "meters"),
  3907. default: true
  3908. }
  3909. ]
  3910. )
  3911. };
  3912. characterMakers["Jaro"] = () => {
  3913. return makeCharacter(
  3914. "Jaro",
  3915. "Jaro",
  3916. {
  3917. front: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(60, "kg"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/jaro/front.svg"
  3923. }
  3924. },
  3925. back: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(60, "kg"),
  3928. name: "Back",
  3929. image: {
  3930. source: "./media/characters/jaro/back.svg"
  3931. }
  3932. },
  3933. },
  3934. [
  3935. {
  3936. name: "Micro",
  3937. height: math.unit(7, "inches")
  3938. },
  3939. {
  3940. name: "Normal",
  3941. height: math.unit(5.5, "feet"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Minimacro",
  3946. height: math.unit(20, "feet")
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(200, "meters")
  3951. }
  3952. ]
  3953. )
  3954. };
  3955. characterMakers["Rogue"] = () => {
  3956. return makeCharacter(
  3957. "Rogue",
  3958. "Rogue",
  3959. {
  3960. front: {
  3961. height: math.unit(6, "feet"),
  3962. weight: math.unit(195, "lb"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/rogue/front.svg"
  3966. }
  3967. },
  3968. },
  3969. [
  3970. {
  3971. name: "Macro",
  3972. height: math.unit(90, "feet"),
  3973. default: true
  3974. },
  3975. ]
  3976. )
  3977. };
  3978. characterMakers["Piper"] = () => {
  3979. return makeCharacter(
  3980. "Piper",
  3981. "Flyhar",
  3982. {
  3983. front: {
  3984. height: math.unit(5 + 8/12, "feet"),
  3985. weight: math.unit(140, "lb"),
  3986. name: "Front",
  3987. image: {
  3988. source: "./media/characters/piper/front.svg",
  3989. extra: 3928/3681
  3990. }
  3991. },
  3992. },
  3993. [
  3994. {
  3995. name: "Micro",
  3996. height: math.unit(2, "inches")
  3997. },
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(5 + 8/12, "feet")
  4001. },
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(250, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Megamacro",
  4009. height: math.unit(7, "miles")
  4010. },
  4011. ]
  4012. )
  4013. };
  4014. characterMakers["Gemini"] = () => {
  4015. return makeCharacter(
  4016. "Gemini",
  4017. "lajay",
  4018. {
  4019. front: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(220, "lb"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/gemini/front.svg"
  4025. }
  4026. },
  4027. back: {
  4028. height: math.unit(6, "feet"),
  4029. weight: math.unit(220, "lb"),
  4030. name: "Back",
  4031. image: {
  4032. source: "./media/characters/gemini/back.svg"
  4033. }
  4034. },
  4035. kneeling: {
  4036. height: math.unit(6/1.5, "feet"),
  4037. weight: math.unit(220, "lb"),
  4038. name: "Kneeling",
  4039. image: {
  4040. source: "./media/characters/gemini/kneeling.svg",
  4041. bottom: 0.02
  4042. }
  4043. },
  4044. },
  4045. [
  4046. {
  4047. name: "Macro",
  4048. height: math.unit(300, "meters"),
  4049. default: true
  4050. },
  4051. {
  4052. name: "Megamacro",
  4053. height: math.unit(6900, "meters")
  4054. },
  4055. ]
  4056. )
  4057. };
  4058. characterMakers["Alicia"] = () => {
  4059. return makeCharacter(
  4060. "Alicia",
  4061. "LittleBig",
  4062. {
  4063. anthro: {
  4064. height: math.unit(2.35, "meters"),
  4065. weight: math.unit(73, "kg"),
  4066. name: "Anthro",
  4067. image: {
  4068. source: "./media/characters/alicia/anthro.svg"
  4069. }
  4070. },
  4071. feral: {
  4072. height: math.unit(1.69, "meters"),
  4073. weight: math.unit(73, "kg"),
  4074. name: "Feral",
  4075. image: {
  4076. source: "./media/characters/alicia/feral.svg"
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "Normal",
  4083. height: math.unit(2.35, "meters")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(60, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(10000, "kilometers")
  4093. },
  4094. ]
  4095. )
  4096. };
  4097. characterMakers["Archy"] = () => {
  4098. return makeCharacter(
  4099. "Archy",
  4100. "ArchyD",
  4101. {
  4102. front: {
  4103. height: math.unit(7, "feet"),
  4104. weight: math.unit(250, "lbs"),
  4105. name: "Front",
  4106. image: {
  4107. source: "./media/characters/archy/front.svg"
  4108. }
  4109. }
  4110. },
  4111. [
  4112. {
  4113. name: "Micro",
  4114. height: math.unit(1, "inch")
  4115. },
  4116. {
  4117. name: "Shorty",
  4118. height: math.unit(5, "feet")
  4119. },
  4120. {
  4121. name: "Normal",
  4122. height: math.unit(7, "feet")
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(600, "meters"),
  4127. default: true
  4128. },
  4129. {
  4130. name: "Megamacro",
  4131. height: math.unit(1, "mile")
  4132. },
  4133. ]
  4134. )
  4135. };
  4136. characterMakers["Berri"] = () => {
  4137. return makeCharacter(
  4138. "Berri",
  4139. "LittleBig",
  4140. {
  4141. front: {
  4142. height: math.unit(1.65, "meters"),
  4143. weight: math.unit(74, "kg"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/berri/front.svg"
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(1.65, "meters")
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(60, "m"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(9.213, "km")
  4163. },
  4164. {
  4165. name: "Planet Eater",
  4166. height: math.unit(489, "megameters")
  4167. },
  4168. {
  4169. name: "Teramacro",
  4170. height: math.unit(2471635000000, "meters")
  4171. },
  4172. {
  4173. name: "Examacro",
  4174. height: math.unit(8.0624e+26, "meters")
  4175. }
  4176. ]
  4177. )
  4178. };
  4179. characterMakers["Lexi"] = () => {
  4180. return makeCharacter(
  4181. "Lexi",
  4182. "LittleBig",
  4183. {
  4184. front: {
  4185. height: math.unit(1.72, "meters"),
  4186. weight: math.unit(68, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/lexi/front.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Very Smol",
  4196. height: math.unit(10, "mm")
  4197. },
  4198. {
  4199. name: "Micro",
  4200. height: math.unit(6.8, "cm"),
  4201. default: true
  4202. },
  4203. {
  4204. name: "Normal",
  4205. height: math.unit(1.72, "m")
  4206. }
  4207. ]
  4208. )
  4209. };
  4210. characterMakers["Martin"] = () => {
  4211. return makeCharacter(
  4212. "Martin",
  4213. "LittleBig",
  4214. {
  4215. front: {
  4216. height: math.unit(1.69, "meters"),
  4217. weight: math.unit(68, "kg"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/martin/front.svg",
  4221. extra: 596/581
  4222. }
  4223. }
  4224. },
  4225. [
  4226. {
  4227. name: "Micro",
  4228. height: math.unit(6.85, "cm"),
  4229. default: true
  4230. },
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(1.69, "m")
  4234. }
  4235. ]
  4236. )
  4237. };
  4238. characterMakers["Juno"] = () => {
  4239. return makeCharacter(
  4240. "Juno",
  4241. "LittleBig",
  4242. {
  4243. front: {
  4244. height: math.unit(1.69, "meters"),
  4245. weight: math.unit(68, "kg"),
  4246. name: "Front",
  4247. image: {
  4248. source: "./media/characters/juno/front.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Micro",
  4255. height: math.unit(7, "cm")
  4256. },
  4257. {
  4258. name: "Normal",
  4259. height: math.unit(1.89, "m")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(353, "meters"),
  4264. default: true
  4265. }
  4266. ]
  4267. )
  4268. };
  4269. characterMakers["Samantha"] = () => {
  4270. return makeCharacter(
  4271. "Samantha",
  4272. "LittleBig",
  4273. {
  4274. front: {
  4275. height: math.unit(1.93, "meters"),
  4276. weight: math.unit(83, "kg"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/samantha/front.svg"
  4280. }
  4281. },
  4282. frontClothed: {
  4283. height: math.unit(1.93, "meters"),
  4284. weight: math.unit(83, "kg"),
  4285. name: "Front (Clothed)",
  4286. image: {
  4287. source: "./media/characters/samantha/front-clothed.svg"
  4288. }
  4289. },
  4290. back: {
  4291. height: math.unit(1.93, "meters"),
  4292. weight: math.unit(83, "kg"),
  4293. name: "Back",
  4294. image: {
  4295. source: "./media/characters/samantha/back.svg"
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(1.93, "m")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(74, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Macro+",
  4311. height: math.unit(223, "meters"),
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(8381, "meters"),
  4316. },
  4317. {
  4318. name: "Megamacro+",
  4319. height: math.unit(12000, "kilometers")
  4320. },
  4321. ]
  4322. )
  4323. };
  4324. characterMakers["Dr. Clay"] = () => {
  4325. return makeCharacter(
  4326. "Dr. Clay",
  4327. "LittleBig",
  4328. {
  4329. front: {
  4330. height: math.unit(1.92, "meters"),
  4331. weight: math.unit(80, "kg"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/dr-clay/front.svg"
  4335. }
  4336. },
  4337. frontClothed: {
  4338. height: math.unit(1.92, "meters"),
  4339. weight: math.unit(80, "kg"),
  4340. name: "Front (Clothed)",
  4341. image: {
  4342. source: "./media/characters/dr-clay/front-clothed.svg"
  4343. }
  4344. }
  4345. },
  4346. [
  4347. {
  4348. name: "Normal",
  4349. height: math.unit(1.92, "m")
  4350. },
  4351. {
  4352. name: "Macro",
  4353. height: math.unit(214, "meters"),
  4354. default: true
  4355. },
  4356. {
  4357. name: "Macro+",
  4358. height: math.unit(12.237, "meters"),
  4359. },
  4360. {
  4361. name: "Megamacro",
  4362. height: math.unit(557, "megameters"),
  4363. },
  4364. {
  4365. name: "Unimaginable",
  4366. height: math.unit(120e9, "lightyears")
  4367. },
  4368. ]
  4369. )
  4370. };
  4371. characterMakers["Wyvrn Ripsnarl"] = () => {
  4372. return makeCharacter(
  4373. "Wyvrn Ripsnarl",
  4374. "LoboRaptorLo",
  4375. {
  4376. front: {
  4377. height: math.unit(2, "meters"),
  4378. weight: math.unit(80, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Teramacro",
  4388. height: math.unit(500000, "lightyears"),
  4389. default: true
  4390. },
  4391. ]
  4392. )
  4393. };
  4394. characterMakers["Vemus"] = () => {
  4395. return makeCharacter(
  4396. "Vemus",
  4397. "Vemus",
  4398. {
  4399. front: {
  4400. height: math.unit(2, "meters"),
  4401. weight: math.unit(150, "kg"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/vemus/front.svg",
  4405. extra: 2384/2084
  4406. }
  4407. }
  4408. },
  4409. [
  4410. {
  4411. name: "Normal",
  4412. height: math.unit(3, "meters"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Lorg",
  4417. height: math.unit(7, "meters")
  4418. },
  4419. {
  4420. name: "More Lorg",
  4421. height: math.unit(250, "meters")
  4422. },
  4423. ]
  4424. )
  4425. };
  4426. characterMakers["Beherit"] = () => {
  4427. return makeCharacter(
  4428. "Beherit",
  4429. "Beherit",
  4430. {
  4431. front: {
  4432. height: math.unit(2, "meters"),
  4433. weight: math.unit(70, "kg"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/beherit/front.svg",
  4437. extra: 1408/1242
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(6, "feet")
  4445. },
  4446. {
  4447. name: "Lorg",
  4448. height: math.unit(25, "feet"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Lorger",
  4453. height: math.unit(75, "feet")
  4454. },
  4455. {
  4456. name: "Macro",
  4457. height: math.unit(200, "meters")
  4458. },
  4459. ]
  4460. )
  4461. };
  4462. characterMakers["Everett"] = () => {
  4463. return makeCharacter(
  4464. "Everett",
  4465. "Beherit",
  4466. {
  4467. front: {
  4468. height: math.unit(2, "meters"),
  4469. weight: math.unit(150, "kg"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/everett/front.svg",
  4473. extra: 2038/1737 ,
  4474. bottom: 0.03
  4475. }
  4476. },
  4477. paw: {
  4478. height: math.unit(2/3.6, "meters"),
  4479. name: "Paw",
  4480. image: {
  4481. source: "./media/characters/everett/paw.svg"
  4482. }
  4483. },
  4484. },
  4485. [
  4486. {
  4487. name: "Normal",
  4488. height: math.unit(15, "feet"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Lorg",
  4493. height: math.unit(70, "feet"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Lorger",
  4498. height: math.unit(250, "feet")
  4499. },
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(500, "meters")
  4503. },
  4504. ]
  4505. )
  4506. };
  4507. characterMakers["Rose Lion"] = () => {
  4508. return makeCharacter(
  4509. "Rose Lion",
  4510. "Enormouse",
  4511. {
  4512. front: {
  4513. height: math.unit(2, "meters"),
  4514. weight: math.unit(86, "kg"),
  4515. name: "Front",
  4516. image: {
  4517. source: "./media/characters/rose-lion/front.svg"
  4518. }
  4519. },
  4520. bent: {
  4521. height: math.unit(2/1.4288, "meters"),
  4522. weight: math.unit(86, "kg"),
  4523. name: "Bent",
  4524. image: {
  4525. source: "./media/characters/rose-lion/bent.svg"
  4526. }
  4527. }
  4528. },
  4529. [
  4530. {
  4531. name: "Mini-Micro",
  4532. height: math.unit(1, "cm")
  4533. },
  4534. {
  4535. name: "Micro",
  4536. height: math.unit(3.5, "inches"),
  4537. default: true
  4538. },
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(6 + 1/6, "feet")
  4542. },
  4543. {
  4544. name: "Mini-Macro",
  4545. height: math.unit(9 + 10/12, "feet")
  4546. },
  4547. ]
  4548. )
  4549. };
  4550. characterMakers["Regal"] = () => {
  4551. return makeCharacter(
  4552. "Regal",
  4553. "Regal Drennen",
  4554. {
  4555. front: {
  4556. height: math.unit(2, "meters"),
  4557. weight: math.unit(350, "lbs"),
  4558. name: "Front",
  4559. image: {
  4560. source: "./media/characters/regal/front.svg"
  4561. }
  4562. },
  4563. back: {
  4564. height: math.unit(2, "meters"),
  4565. weight: math.unit(350, "lbs"),
  4566. name: "Back",
  4567. image: {
  4568. source: "./media/characters/regal/back.svg"
  4569. }
  4570. },
  4571. },
  4572. [
  4573. {
  4574. name: "Macro",
  4575. height: math.unit(350, "feet"),
  4576. default: true
  4577. }
  4578. ]
  4579. )
  4580. };
  4581. characterMakers["Opal"] = () => {
  4582. return makeCharacter(
  4583. "Opal",
  4584. "Enormouse",
  4585. {
  4586. front: {
  4587. height: math.unit(4 + 11/12, "feet"),
  4588. weight: math.unit(100, "lbs"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/opal/front.svg"
  4592. }
  4593. },
  4594. frontAlt: {
  4595. height: math.unit(4 + 11/12, "feet"),
  4596. weight: math.unit(100, "lbs"),
  4597. name: "Front (Alt)",
  4598. image: {
  4599. source: "./media/characters/opal/front-alt.svg"
  4600. }
  4601. },
  4602. },
  4603. [
  4604. {
  4605. name: "Small",
  4606. height: math.unit(4 + 11/12, "feet")
  4607. },
  4608. {
  4609. name: "Normal",
  4610. height: math.unit(20, "feet"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro",
  4615. height: math.unit(120, "feet")
  4616. },
  4617. {
  4618. name: "Megamacro",
  4619. height: math.unit(80, "miles")
  4620. },
  4621. {
  4622. name: "True Size",
  4623. height: math.unit(100000, "lightyears")
  4624. },
  4625. ]
  4626. )
  4627. };
  4628. characterMakers["Vector Wuff"] = () => {
  4629. return makeCharacter(
  4630. "Vector Wuff",
  4631. "Vector",
  4632. {
  4633. front: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(200, "lbs"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/vector-wuff/front.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(2.8, "meters")
  4646. },
  4647. {
  4648. name: "Macro",
  4649. height: math.unit(450, "meters"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(15, "kilometers")
  4655. }
  4656. ]
  4657. )
  4658. };
  4659. characterMakers["Dannik"] = () => {
  4660. return makeCharacter(
  4661. "Dannik",
  4662. "LuchaLibreLibro",
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(256, "lbs"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/dannik/front.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(69.57, "meters"),
  4677. default: true
  4678. },
  4679. ]
  4680. )
  4681. };
  4682. characterMakers["Azura Saharah"] = () => {
  4683. return makeCharacter(
  4684. "Azura Saharah",
  4685. "AzuraSaharah",
  4686. {
  4687. front: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(120, "lbs"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/azura-saharah/front.svg"
  4693. }
  4694. },
  4695. back: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(120, "lbs"),
  4698. name: "Back",
  4699. image: {
  4700. source: "./media/characters/azura-saharah/back.svg"
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(100, "feet"),
  4708. default: true
  4709. },
  4710. ]
  4711. )
  4712. };
  4713. characterMakers["Kennedy"] = () => {
  4714. return makeCharacter(
  4715. "Kennedy",
  4716. "BossVoss",
  4717. {
  4718. side: {
  4719. height: math.unit(5 + 4/12, "feet"),
  4720. weight: math.unit(163, "lbs"),
  4721. name: "Side",
  4722. image: {
  4723. source: "./media/characters/kennedy/side.svg"
  4724. }
  4725. }
  4726. },
  4727. [
  4728. {
  4729. name: "Standard Doggo",
  4730. height: math.unit(5 + 4/12, "feet")
  4731. },
  4732. {
  4733. name: "Big Doggo",
  4734. height: math.unit(25 + 3/12, "feet"),
  4735. default: true
  4736. },
  4737. ]
  4738. )
  4739. };
  4740. characterMakers["Odi Lunar"] = () => {
  4741. return makeCharacter(
  4742. "Odi Lunar",
  4743. "OdiLunar",
  4744. {
  4745. front: {
  4746. height: math.unit(6, "feet"),
  4747. weight: math.unit(90, "lbs"),
  4748. name: "Front",
  4749. image: {
  4750. source: "./media/characters/odi-lunar/front.svg"
  4751. }
  4752. }
  4753. },
  4754. [
  4755. {
  4756. name: "Micro",
  4757. height: math.unit(3, "inches"),
  4758. default: true
  4759. },
  4760. {
  4761. name: "Normal",
  4762. height: math.unit(5.5, "feet")
  4763. }
  4764. ]
  4765. )
  4766. };
  4767. characterMakers["Mandake"] = () => {
  4768. return makeCharacter(
  4769. "Mandake",
  4770. "Dialuca01",
  4771. {
  4772. back: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(220, "lbs"),
  4775. name: "Back",
  4776. image: {
  4777. source: "./media/characters/mandake/back.svg"
  4778. }
  4779. }
  4780. },
  4781. [
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(7, "feet"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Macro",
  4789. height: math.unit(78, "feet")
  4790. },
  4791. {
  4792. name: "Macro+",
  4793. height: math.unit(300, "meters")
  4794. },
  4795. {
  4796. name: "Macro++",
  4797. height: math.unit(2400, "feet")
  4798. },
  4799. {
  4800. name: "Megamacro",
  4801. height: math.unit(5167, "meters")
  4802. },
  4803. {
  4804. name: "Gigamacro",
  4805. height: math.unit(41769, "miles")
  4806. },
  4807. ]
  4808. )
  4809. };
  4810. characterMakers["Yozey"] = () => {
  4811. return makeCharacter(
  4812. "Yozey",
  4813. "Yozey",
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(120, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/yozey/front.svg"
  4821. }
  4822. },
  4823. frontAlt: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(120, "lbs"),
  4826. name: "Front (Alt)",
  4827. image: {
  4828. source: "./media/characters/yozey/front-alt.svg"
  4829. }
  4830. },
  4831. side: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(120, "lbs"),
  4834. name: "Side",
  4835. image: {
  4836. source: "./media/characters/yozey/side.svg"
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(3, "inches"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(6, "feet")
  4849. }
  4850. ]
  4851. )
  4852. };
  4853. characterMakers["Valeska Voss"] = () => {
  4854. return makeCharacter(
  4855. "Valeska Voss",
  4856. "BossVoss",
  4857. {
  4858. front: {
  4859. height: math.unit(6, "feet"),
  4860. weight: math.unit(103, "lbs"),
  4861. name: "Front",
  4862. image: {
  4863. source: "./media/characters/valeska-voss/front.svg"
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Mini-Sized Sub",
  4870. height: math.unit(3.1, "inches")
  4871. },
  4872. {
  4873. name: "Mid-Sized Sub",
  4874. height: math.unit(6.2, "inches")
  4875. },
  4876. {
  4877. name: "Full-Sized Sub",
  4878. height: math.unit(9.3, "inches")
  4879. },
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(5 + 2/12, "foot"),
  4883. default: true
  4884. },
  4885. ]
  4886. )
  4887. };
  4888. characterMakers["Gene Zeta"] = () => {
  4889. return makeCharacter(
  4890. "Gene Zeta",
  4891. "Xeebes",
  4892. {
  4893. front: {
  4894. height: math.unit(6, "feet"),
  4895. weight: math.unit(160, "lbs"),
  4896. name: "Front",
  4897. image: {
  4898. source: "./media/characters/gene-zeta/front.svg",
  4899. bottom: 0.03,
  4900. extra: 1
  4901. }
  4902. }
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(6.25, "foot"),
  4908. default: true
  4909. },
  4910. ]
  4911. )
  4912. };
  4913. characterMakers["Razinox"] = () => {
  4914. return makeCharacter(
  4915. "Razinox",
  4916. "Razinox",
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(350, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/razinox/front.svg",
  4924. extra: 1686/1548
  4925. }
  4926. },
  4927. back: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(350, "lbs"),
  4930. name: "Back",
  4931. image: {
  4932. source: "./media/characters/razinox/back.svg",
  4933. extra: 1660/1590
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(10 + 8/12, "foot")
  4941. },
  4942. {
  4943. name: "Minimacro",
  4944. height: math.unit(15, "foot")
  4945. },
  4946. {
  4947. name: "Macro",
  4948. height: math.unit(60, "foot"),
  4949. default: true
  4950. },
  4951. {
  4952. name: "Megamacro",
  4953. height: math.unit(5, "miles")
  4954. },
  4955. {
  4956. name: "Gigamacro",
  4957. height: math.unit(6000, "miles")
  4958. },
  4959. ]
  4960. )
  4961. };
  4962. characterMakers["Cobalt"] = () => {
  4963. return makeCharacter(
  4964. "Cobalt",
  4965. "Miateshcha",
  4966. {
  4967. front: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(150, "lbs"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/cobalt/front.svg"
  4973. }
  4974. }
  4975. },
  4976. [
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(8 + 1/12, "foot")
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(111, "foot"),
  4984. default: true
  4985. },
  4986. {
  4987. name: "Supracosmic",
  4988. height: math.unit(1e42, "feet")
  4989. },
  4990. ]
  4991. )
  4992. };
  4993. characterMakers["Amanda"] = () => {
  4994. return makeCharacter(
  4995. "Amanda",
  4996. "Amanda",
  4997. {
  4998. front: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(140, "lbs"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/amanda/front.svg"
  5004. }
  5005. }
  5006. },
  5007. [
  5008. {
  5009. name: "Micro",
  5010. height: math.unit(5, "inches"),
  5011. default: true
  5012. },
  5013. ]
  5014. )
  5015. };
  5016. characterMakers["Teal"] = () => {
  5017. return makeCharacter(
  5018. "Teal",
  5019. "Teal",
  5020. {
  5021. front: {
  5022. height: math.unit(5.59, "feet"),
  5023. weight: math.unit(250, "lbs"),
  5024. name: "Front",
  5025. image: {
  5026. source: "./media/characters/teal/front.svg"
  5027. }
  5028. },
  5029. frontAlt: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(250, "lbs"),
  5032. name: "Front (Alt)",
  5033. image: {
  5034. source: "./media/characters/teal/front-alt.svg",
  5035. bottom: 0.04,
  5036. extra: 1
  5037. }
  5038. },
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(12, "feet"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(300, "feet")
  5049. },
  5050. ]
  5051. )
  5052. };
  5053. characterMakers["Ravin Amulet"] = () => {
  5054. return makeCharacter(
  5055. "Ravin Amulet",
  5056. "Ravin Amulet",
  5057. {
  5058. frontCat: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(180, "lbs"),
  5061. name: "Front (Cat)",
  5062. image: {
  5063. source: "./media/characters/ravin-amulet/front-cat.svg"
  5064. }
  5065. },
  5066. frontCatAlt: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(180, "lbs"),
  5069. name: "Front (Alt, Cat)",
  5070. image: {
  5071. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5072. }
  5073. },
  5074. frontWerewolf: {
  5075. height: math.unit(6*1.2, "feet"),
  5076. weight: math.unit(225, "lbs"),
  5077. name: "Front (Werewolf)",
  5078. image: {
  5079. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5080. }
  5081. },
  5082. backWerewolf: {
  5083. height: math.unit(6*1.2, "feet"),
  5084. weight: math.unit(225, "lbs"),
  5085. name: "Back (Werewolf)",
  5086. image: {
  5087. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Nano",
  5094. height: math.unit(1, "micrometer")
  5095. },
  5096. {
  5097. name: "Micro",
  5098. height: math.unit(1, "inch")
  5099. },
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(6, "feet"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(60, "feet")
  5108. }
  5109. ]
  5110. )
  5111. };
  5112. characterMakers["Fluoresce"] = () => {
  5113. return makeCharacter(
  5114. "Fluoresce",
  5115. "Ravin Amulet",
  5116. {
  5117. front: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(165, "lbs"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/fluoresce/front.svg"
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Micro",
  5129. height: math.unit(6, "cm")
  5130. },
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(5 + 7/12, "feet"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(56, "feet")
  5139. },
  5140. {
  5141. name: "Megamacro",
  5142. height: math.unit(1.9, "miles")
  5143. },
  5144. ]
  5145. )
  5146. };
  5147. characterMakers["Aurora"] = () => {
  5148. return makeCharacter(
  5149. "Aurora",
  5150. "Vonadi",
  5151. {
  5152. front: {
  5153. height: math.unit(9 + 6/12, "feet"),
  5154. weight: math.unit(523, "lbs"),
  5155. name: "Side",
  5156. image: {
  5157. source: "./media/characters/aurora/side.svg"
  5158. }
  5159. }
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(9 + 6/12, "feet")
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(96, "feet"),
  5169. default: true
  5170. },
  5171. {
  5172. name: "Macro+",
  5173. height: math.unit(243, "feet")
  5174. },
  5175. ]
  5176. )
  5177. };
  5178. characterMakers["Ranek"] = () => {
  5179. return makeCharacter(
  5180. "Ranek",
  5181. "Ranek",
  5182. {
  5183. front: {
  5184. height: math.unit(194, "cm"),
  5185. weight: math.unit(90, "kg"),
  5186. name: "Front",
  5187. image: {
  5188. source: "./media/characters/ranek/front.svg"
  5189. }
  5190. },
  5191. side: {
  5192. height: math.unit(194, "cm"),
  5193. weight: math.unit(90, "kg"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/ranek/side.svg"
  5197. }
  5198. },
  5199. back: {
  5200. height: math.unit(194, "cm"),
  5201. weight: math.unit(90, "kg"),
  5202. name: "Back",
  5203. image: {
  5204. source: "./media/characters/ranek/back.svg"
  5205. }
  5206. },
  5207. feral: {
  5208. height: math.unit(30, "cm"),
  5209. weight: math.unit(1.6, "lbs"),
  5210. name: "Feral",
  5211. image: {
  5212. source: "./media/characters/ranek/feral.svg"
  5213. }
  5214. },
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(194, "cm"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Macro",
  5224. height: math.unit(100, "meters")
  5225. },
  5226. ]
  5227. )
  5228. };
  5229. characterMakers["Andrew Cooper"] = () => {
  5230. return makeCharacter(
  5231. "Andrew Cooper",
  5232. "Vonadi",
  5233. {
  5234. front: {
  5235. height: math.unit(5 + 6/12, "feet"),
  5236. weight: math.unit(153, "lbs"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/andrew-cooper/front.svg"
  5240. }
  5241. },
  5242. },
  5243. [
  5244. {
  5245. name: "Nano",
  5246. height: math.unit(1, "mm")
  5247. },
  5248. {
  5249. name: "Micro",
  5250. height: math.unit(2, "inches")
  5251. },
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(5 + 6/12, "feet"),
  5255. default: true
  5256. }
  5257. ]
  5258. )
  5259. };
  5260. characterMakers["Akane Sato"] = () => {
  5261. return makeCharacter(
  5262. "Akane Sato",
  5263. "Vonadi",
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(180, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/akane-sato/front.svg",
  5271. extra: 1219/1140
  5272. }
  5273. },
  5274. back: {
  5275. height: math.unit(6, "feet"),
  5276. weight: math.unit(180, "lbs"),
  5277. name: "Back",
  5278. image: {
  5279. source: "./media/characters/akane-sato/back.svg",
  5280. extra: 1219/1170
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(2.5, "meters")
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(250, "meters"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Megamacro",
  5296. height: math.unit(25, "km")
  5297. },
  5298. ]
  5299. )
  5300. };
  5301. characterMakers["Rook"] = () => {
  5302. return makeCharacter(
  5303. "Rook",
  5304. "Rook",
  5305. {
  5306. front: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(65, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/rook/front.svg"
  5312. }
  5313. }
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(8.8, "feet")
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(88, "feet"),
  5323. default: true
  5324. },
  5325. {
  5326. name: "Megamacro",
  5327. height: math.unit(8, "miles")
  5328. },
  5329. ]
  5330. )
  5331. };
  5332. characterMakers["Prodigy"] = () => {
  5333. return makeCharacter(
  5334. "Prodigy",
  5335. "Rook",
  5336. {
  5337. front: {
  5338. height: math.unit(12 + 2/12, "feet"),
  5339. weight: math.unit(808, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/prodigy/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(12 + 2/12, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(143, "feet")
  5355. },
  5356. {
  5357. name: "Macro+",
  5358. height: math.unit(400, "feet")
  5359. },
  5360. ]
  5361. )
  5362. };
  5363. characterMakers["Daniel"] = () => {
  5364. return makeCharacter(
  5365. "Daniel",
  5366. "Galactor",
  5367. {
  5368. front: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(225, "lbs"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/daniel/front.svg"
  5374. }
  5375. },
  5376. leaning: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(225, "lbs"),
  5379. name: "Leaning",
  5380. image: {
  5381. source: "./media/characters/daniel/leaning.svg"
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(1000, "feet"),
  5389. default: true
  5390. },
  5391. ]
  5392. )
  5393. };
  5394. characterMakers["Chiros"] = () => {
  5395. return makeCharacter(
  5396. "Chiros",
  5397. "Chiropica",
  5398. {
  5399. front: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(88, "lbs"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/chiros/front.svg",
  5405. extra: 306/226
  5406. }
  5407. },
  5408. side: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(88, "lbs"),
  5411. name: "Side",
  5412. image: {
  5413. source: "./media/characters/chiros/side.svg",
  5414. extra: 306/226
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(6, "cm"),
  5422. default: true
  5423. },
  5424. ]
  5425. )
  5426. };
  5427. characterMakers["Selka"] = () => {
  5428. return makeCharacter(
  5429. "Selka",
  5430. "Xelchew",
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(100, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/selka/front.svg",
  5438. extra: 947/887
  5439. }
  5440. }
  5441. },
  5442. [
  5443. {
  5444. name: "Normal",
  5445. height: math.unit(5, "cm"),
  5446. default: true
  5447. },
  5448. ]
  5449. )
  5450. };
  5451. characterMakers["Verin"] = () => {
  5452. return makeCharacter(
  5453. "Verin",
  5454. "Vonadi",
  5455. {
  5456. front: {
  5457. height: math.unit(8 + 3/12, "feet"),
  5458. weight: math.unit(424, "lbs"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/verin/front.svg",
  5462. extra: 1845/1550
  5463. }
  5464. },
  5465. frontArmored: {
  5466. height: math.unit(8 + 3/12, "feet"),
  5467. weight: math.unit(424, "lbs"),
  5468. name: "Front (Armored)",
  5469. image: {
  5470. source: "./media/characters/verin/front-armor.svg",
  5471. extra: 1845/1550 ,
  5472. bottom: 0.01
  5473. }
  5474. },
  5475. back: {
  5476. height: math.unit(8 + 3/12, "feet"),
  5477. weight: math.unit(424, "lbs"),
  5478. name: "Back",
  5479. image: {
  5480. source: "./media/characters/verin/back.svg",
  5481. bottom: 0.1,
  5482. extra: 1
  5483. }
  5484. },
  5485. foot: {
  5486. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5487. name: "Foot",
  5488. image: {
  5489. source: "./media/characters/verin/foot.svg"
  5490. }
  5491. },
  5492. },
  5493. [
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(8 + 3/12, "feet")
  5497. },
  5498. {
  5499. name: "Minimacro",
  5500. height: math.unit(21, "feet"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(626, "feet")
  5506. },
  5507. ]
  5508. )
  5509. };
  5510. characterMakers["Sovrim Terraquian"] = () => {
  5511. return makeCharacter(
  5512. "Sovrim Terraquian",
  5513. "Sovrim Terraquian",
  5514. {
  5515. front: {
  5516. height: math.unit(2.718, "meters"),
  5517. weight: math.unit(150, "lbs"),
  5518. name: "Front",
  5519. image: {
  5520. source: "./media/characters/sovrim-terraquian/front.svg"
  5521. }
  5522. },
  5523. back: {
  5524. height: math.unit(2.718, "meters"),
  5525. weight: math.unit(150, "lbs"),
  5526. name: "Back",
  5527. image: {
  5528. source: "./media/characters/sovrim-terraquian/back.svg"
  5529. }
  5530. }
  5531. },
  5532. [
  5533. {
  5534. name: "Micro",
  5535. height: math.unit(2, "inches")
  5536. },
  5537. {
  5538. name: "Small",
  5539. height: math.unit(1, "meter")
  5540. },
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(Math.E, "meters"),
  5544. default: true
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(20, "meters")
  5549. },
  5550. {
  5551. name: "Macro+",
  5552. height: math.unit(400, "meters")
  5553. },
  5554. ]
  5555. )
  5556. };
  5557. characterMakers["Reece Silvermane"] = () => {
  5558. return makeCharacter(
  5559. "Reece Silvermane",
  5560. "Silverhorsey",
  5561. {
  5562. front: {
  5563. height: math.unit(7, "feet"),
  5564. weight: math.unit(489, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/reece-silvermane/front.svg",
  5568. bottom: 0.02,
  5569. extra: 1
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Macro",
  5576. height: math.unit(1.5, "miles"),
  5577. default: true
  5578. },
  5579. ]
  5580. )
  5581. };
  5582. characterMakers["Kane"] = () => {
  5583. return makeCharacter(
  5584. "Kane",
  5585. "LittleBigX110",
  5586. {
  5587. front: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(78, "kg"),
  5590. name: "Front",
  5591. image: {
  5592. source: "./media/characters/kane/front.svg",
  5593. extra: 978/899
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(2.1, "m"),
  5601. },
  5602. {
  5603. name: "Macro",
  5604. height: math.unit(1, "km"),
  5605. default: true
  5606. },
  5607. ]
  5608. )
  5609. };
  5610. characterMakers["Tegon"] = () => {
  5611. return makeCharacter(
  5612. "Tegon",
  5613. "TegonDragon",
  5614. {
  5615. front: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(200, "kg"),
  5618. name: "Front",
  5619. image: {
  5620. source: "./media/characters/tegon/front.svg",
  5621. bottom: 0.01,
  5622. extra: 1
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Micro",
  5629. height: math.unit(1, "inch")
  5630. },
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(6 + 3/12, "feet"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "Macro",
  5638. height: math.unit(300, "feet")
  5639. },
  5640. {
  5641. name: "Megamacro",
  5642. height: math.unit(69, "miles")
  5643. },
  5644. ]
  5645. )
  5646. };
  5647. characterMakers["Arcturax"] = () => {
  5648. return makeCharacter(
  5649. "Arcturax",
  5650. "Arcturax",
  5651. {
  5652. side: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(2304, "lbs"),
  5655. name: "Side",
  5656. image: {
  5657. source: "./media/characters/arcturax/side.svg",
  5658. extra: 790/376 ,
  5659. bottom: 0.01
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Micro",
  5666. height: math.unit(2, "inch")
  5667. },
  5668. {
  5669. name: "Normal",
  5670. height: math.unit(6, "feet")
  5671. },
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(39, "feet"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Megamacro",
  5679. height: math.unit(7, "miles")
  5680. },
  5681. ]
  5682. )
  5683. };
  5684. characterMakers["Sentri"] = () => {
  5685. return makeCharacter(
  5686. "Sentri",
  5687. "Sentri",
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(50, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/sentri/front.svg",
  5695. extra: 1750/1570 ,
  5696. bottom: 0.025
  5697. }
  5698. },
  5699. frontAlt: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(50, "lbs"),
  5702. name: "Front (Alt)",
  5703. image: {
  5704. source: "./media/characters/sentri/front-alt.svg",
  5705. extra: 1750/1570 ,
  5706. bottom: 0.025
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(15, "feet"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(2500, "feet")
  5719. }
  5720. ]
  5721. )
  5722. };
  5723. characterMakers["Corvin"] = () => {
  5724. return makeCharacter(
  5725. "Corvin",
  5726. "Sirffuzzylogik",
  5727. {
  5728. front: {
  5729. height: math.unit(5 + 8/12, "feet"),
  5730. weight: math.unit(130, "lbs"),
  5731. name: "Front",
  5732. image: {
  5733. source: "./media/characters/corvin/front.svg",
  5734. extra: 1803/1629
  5735. }
  5736. },
  5737. frontShirt: {
  5738. height: math.unit(5 + 8/12, "feet"),
  5739. weight: math.unit(130, "lbs"),
  5740. name: "Front (Shirt)",
  5741. image: {
  5742. source: "./media/characters/corvin/front-shirt.svg",
  5743. extra: 1803/1629
  5744. }
  5745. },
  5746. frontPoncho: {
  5747. height: math.unit(5 + 8/12, "feet"),
  5748. weight: math.unit(130, "lbs"),
  5749. name: "Front (Poncho)",
  5750. image: {
  5751. source: "./media/characters/corvin/front-poncho.svg",
  5752. extra: 1803/1629
  5753. }
  5754. },
  5755. side: {
  5756. height: math.unit(5 + 8/12, "feet"),
  5757. weight: math.unit(130, "lbs"),
  5758. name: "Side",
  5759. image: {
  5760. source: "./media/characters/corvin/side.svg",
  5761. extra: 1012/945
  5762. }
  5763. },
  5764. back: {
  5765. height: math.unit(5 + 8/12, "feet"),
  5766. weight: math.unit(130, "lbs"),
  5767. name: "Back",
  5768. image: {
  5769. source: "./media/characters/corvin/back.svg",
  5770. extra: 1803/1629
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Micro",
  5777. height: math.unit(3, "inches")
  5778. },
  5779. {
  5780. name: "Normal",
  5781. height: math.unit(5 + 8/12, "feet")
  5782. },
  5783. {
  5784. name: "Macro",
  5785. height: math.unit(300, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Megamacro",
  5790. height: math.unit(500, "miles")
  5791. }
  5792. ]
  5793. )
  5794. };
  5795. characterMakers["Q"] = () => {
  5796. return makeCharacter(
  5797. "Q",
  5798. "Q Walf",
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(135, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/q/front.svg",
  5806. extra: 854/752 ,
  5807. bottom: 0.005
  5808. }
  5809. },
  5810. back: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(130, "lbs"),
  5813. name: "Back",
  5814. image: {
  5815. source: "./media/characters/q/back.svg",
  5816. extra: 854/752
  5817. }
  5818. },
  5819. },
  5820. [
  5821. {
  5822. name: "Macro",
  5823. height: math.unit(90, "feet"),
  5824. default: true
  5825. },
  5826. {
  5827. name: "Extra Macro",
  5828. height: math.unit(300, "feet"),
  5829. },
  5830. {
  5831. name: "BIG WALF",
  5832. height: math.unit(750, "feet"),
  5833. },
  5834. ]
  5835. )
  5836. };
  5837. characterMakers["Carley"] = () => {
  5838. return makeCharacter(
  5839. "Carley",
  5840. "QuakeYote",
  5841. {
  5842. front: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(150, "lbs"),
  5845. name: "Front",
  5846. image: {
  5847. source: "./media/characters/carley/front.svg",
  5848. extra: 3927/3540 ,
  5849. bottom: 0.03
  5850. }
  5851. }
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(6 + 3/12, "feet")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(185, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Megamacro",
  5865. height: math.unit(8, "miles"),
  5866. },
  5867. ]
  5868. )
  5869. };
  5870. characterMakers["Citrine"] = () => {
  5871. return makeCharacter(
  5872. "Citrine",
  5873. "thunderstrike23",
  5874. {
  5875. front: {
  5876. height: math.unit(3, "feet"),
  5877. weight: math.unit(28, "lbs"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/citrine/front.svg"
  5881. }
  5882. }
  5883. },
  5884. [
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(3, "feet"),
  5888. default: true
  5889. }
  5890. ]
  5891. )
  5892. };
  5893. characterMakers["Aura Starwind"] = () => {
  5894. return makeCharacter(
  5895. "Aura Starwind",
  5896. "StrikeVixen",
  5897. {
  5898. front: {
  5899. height: math.unit(14, "feet"),
  5900. weight: math.unit(1450, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/aura-starwind/front.svg",
  5904. extra: 1455/1335
  5905. }
  5906. },
  5907. side: {
  5908. height: math.unit(14, "feet"),
  5909. weight: math.unit(1450, "kg"),
  5910. name: "Side",
  5911. image: {
  5912. source: "./media/characters/aura-starwind/side.svg",
  5913. extra: 1654/1497
  5914. }
  5915. },
  5916. taur: {
  5917. height: math.unit(18, "feet"),
  5918. weight: math.unit(5500, "kg"),
  5919. name: "Taur",
  5920. image: {
  5921. source: "./media/characters/aura-starwind/taur.svg",
  5922. extra: 1760/1650
  5923. }
  5924. },
  5925. feral: {
  5926. height: math.unit(46, "feet"),
  5927. weight: math.unit(25000, "kg"),
  5928. name: "Feral",
  5929. image: {
  5930. source: "./media/characters/aura-starwind/feral.svg"
  5931. }
  5932. },
  5933. },
  5934. [
  5935. {
  5936. name: "Normal",
  5937. height: math.unit(14, "feet"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(50, "meters")
  5943. },
  5944. {
  5945. name: "Megamacro",
  5946. height: math.unit(5000, "meters")
  5947. },
  5948. {
  5949. name: "Gigamacro",
  5950. height: math.unit(100000, "kilometers")
  5951. },
  5952. ]
  5953. )
  5954. };
  5955. characterMakers["Rivet"] = () => {
  5956. return makeCharacter(
  5957. "Rivet",
  5958. "Vonadi",
  5959. {
  5960. front: {
  5961. height: math.unit(2 + 7/12, "feet"),
  5962. weight: math.unit(32, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/rivet/front.svg",
  5966. extra: 1716/1658 ,
  5967. bottom: 0.03
  5968. }
  5969. },
  5970. foot: {
  5971. height: math.unit(0.551, "feet"),
  5972. name: "Rivet's Foot",
  5973. image: {
  5974. source: "./media/characters/rivet/foot.svg"
  5975. },
  5976. rename: true
  5977. }
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(1.5, "inches"),
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(2 + 7/12, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(85, "feet")
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(2.2, "km")
  5996. }
  5997. ]
  5998. )
  5999. };
  6000. characterMakers["Coffee"] = () => {
  6001. return makeCharacter(
  6002. "Coffee",
  6003. "CoffeeDoggo",
  6004. {
  6005. front: {
  6006. height: math.unit(5 + 9/12, "feet"),
  6007. weight: math.unit(150, "lbs"),
  6008. name: "Front",
  6009. image: {
  6010. source: "./media/characters/coffee/front.svg",
  6011. extra: 3666/3032 ,
  6012. bottom: 0.04
  6013. }
  6014. },
  6015. foot: {
  6016. height: math.unit(1.29, "feet"),
  6017. name: "Foot",
  6018. image: {
  6019. source: "./media/characters/coffee/foot.svg"
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Micro",
  6026. height: math.unit(2, "inches"),
  6027. },
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(5 + 9/12, "feet"),
  6031. default: true
  6032. },
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(800, "feet")
  6036. },
  6037. {
  6038. name: "Megamacro",
  6039. height: math.unit(25, "miles")
  6040. }
  6041. ]
  6042. )
  6043. };
  6044. characterMakers["Chari-Gal"] = () => {
  6045. return makeCharacter(
  6046. "Chari-Gal",
  6047. "Knoem",
  6048. {
  6049. front: {
  6050. height: math.unit(6, "feet"),
  6051. weight: math.unit(200, "lbs"),
  6052. name: "Front",
  6053. image: {
  6054. source: "./media/characters/chari-gal/front.svg",
  6055. extra: 1568/1385 ,
  6056. bottom: 0.047
  6057. }
  6058. },
  6059. gigantamax: {
  6060. height: math.unit(6*16, "feet"),
  6061. weight: math.unit(200*16*16*16, "lbs"),
  6062. name: "Gigantamax",
  6063. image: {
  6064. source: "./media/characters/chari-gal/gigantamax.svg",
  6065. extra: 1124/888 ,
  6066. bottom: 0.03
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(5 + 7/12, "feet")
  6074. },
  6075. {
  6076. name: "Macro",
  6077. height: math.unit(200, "feet"),
  6078. default: true
  6079. }
  6080. ]
  6081. )
  6082. };
  6083. characterMakers["Nova"] = () => {
  6084. return makeCharacter(
  6085. "Nova",
  6086. "CoffeeDoggo",
  6087. {
  6088. front: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(150, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/nova/front.svg",
  6094. extra: 5000/4722 ,
  6095. bottom: 0.02
  6096. }
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Micro-",
  6102. height: math.unit(0.8, "inches")
  6103. },
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(2, "inches"),
  6107. default: true
  6108. },
  6109. ]
  6110. )
  6111. };
  6112. characterMakers["Argent"] = () => {
  6113. return makeCharacter(
  6114. "Argent",
  6115. "ArgentVZ",
  6116. {
  6117. front: {
  6118. height: math.unit(3 + 1/12, "feet"),
  6119. weight: math.unit(21.7, "lbs"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/argent/front.svg",
  6123. extra: 1565/1416 ,
  6124. bottom: 0.01
  6125. }
  6126. }
  6127. },
  6128. [
  6129. {
  6130. name: "Micro",
  6131. height: math.unit(2, "inches")
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(3 + 1/12, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Macro",
  6140. height: math.unit(120, "feet")
  6141. },
  6142. ]
  6143. )
  6144. };
  6145. characterMakers["Mira al-Cul"] = () => {
  6146. return makeCharacter(
  6147. "Mira al-Cul",
  6148. "Mariokartsonicriders",
  6149. {
  6150. lamp: {
  6151. height: math.unit(7 * 1559 / 989, "feet"),
  6152. name: "Magic Lamp",
  6153. image: {
  6154. source: "./media/characters/mira-al-cul/lamp.svg",
  6155. extra: 1617/1559
  6156. }
  6157. },
  6158. front: {
  6159. height: math.unit(7, "feet"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/mira-al-cul/front.svg",
  6163. extra: 1044/990
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Heavily Restricted",
  6170. height: math.unit(7 * 1559 / 989, "feet")
  6171. },
  6172. {
  6173. name: "Freshly Freed",
  6174. height: math.unit(50 * 1559 / 989, "feet")
  6175. },
  6176. {
  6177. name: "World Encompassing",
  6178. height: math.unit(10000 * 1559 / 989, "miles")
  6179. },
  6180. {
  6181. name: "Galactic",
  6182. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6183. },
  6184. {
  6185. name: "Palmed Universe",
  6186. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Multiversal Matriarch",
  6191. height: math.unit(8.87e10, "yottameters")
  6192. },
  6193. {
  6194. name: "Void Mother",
  6195. height: math.unit(3.14e110, "yottaparsecs")
  6196. },
  6197. ]
  6198. )
  6199. };
  6200. characterMakers["Kuro-shi Uchū"] = () => {
  6201. return makeCharacter(
  6202. "Kuro-shi Uchū",
  6203. "Dragon Shark",
  6204. {
  6205. front: {
  6206. height: math.unit(17 + 1/12, "feet"),
  6207. weight: math.unit(476.2*5, "lbs"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/kuro-shi-uchū/front.svg",
  6211. extra: 2329/1835 ,
  6212. bottom: 0.02
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Micro",
  6219. height: math.unit(2, "inches")
  6220. },
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(12, "meters")
  6224. },
  6225. {
  6226. name: "Planetary",
  6227. height: math.unit(0.00929, "AU"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Universal",
  6232. height: math.unit(20, "gigaparsecs")
  6233. },
  6234. ]
  6235. )
  6236. };
  6237. characterMakers["Katherine"] = () => {
  6238. return makeCharacter(
  6239. "Katherine",
  6240. "chrisrules123",
  6241. {
  6242. front: {
  6243. height: math.unit(5 + 2/12, "feet"),
  6244. weight: math.unit(120, "lbs"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/katherine/front.svg",
  6248. extra: 2075/1969
  6249. }
  6250. },
  6251. dress: {
  6252. height: math.unit(5 + 2/12, "feet"),
  6253. weight: math.unit(120, "lbs"),
  6254. name: "Dress",
  6255. image: {
  6256. source: "./media/characters/katherine/dress.svg",
  6257. extra: 2258/2064
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Micro",
  6264. height: math.unit(1, "inches"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(5 + 2/12, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(100, "meters")
  6274. },
  6275. {
  6276. name: "Megamacro",
  6277. height: math.unit(80, "miles")
  6278. },
  6279. ]
  6280. )
  6281. };
  6282. characterMakers["Yevis"] = () => {
  6283. return makeCharacter(
  6284. "Yevis",
  6285. "Mariokartsonicriders",
  6286. {
  6287. front: {
  6288. height: math.unit(7 + 8/12, "feet"),
  6289. weight: math.unit(250, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/yevis/front.svg",
  6293. extra: 1938/1755
  6294. }
  6295. }
  6296. },
  6297. [
  6298. {
  6299. name: "Mortal",
  6300. height: math.unit(7 + 8/12, "feet")
  6301. },
  6302. {
  6303. name: "Battle",
  6304. height: math.unit(25 + 11/12, "feet")
  6305. },
  6306. {
  6307. name: "Wrath",
  6308. height: math.unit(1654 + 11/12, "feet")
  6309. },
  6310. {
  6311. name: "Planet Destroyer",
  6312. height: math.unit(12000, "miles")
  6313. },
  6314. {
  6315. name: "Galaxy Conqueror",
  6316. height: math.unit(1.45, "zettameters"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Universal War",
  6321. height: math.unit(184, "gigaparsecs")
  6322. },
  6323. {
  6324. name: "Eternity War",
  6325. height: math.unit(1.98e55, "yottaparsecs")
  6326. },
  6327. ]
  6328. )
  6329. };
  6330. characterMakers["Xavier"] = () => {
  6331. return makeCharacter(
  6332. "Xavier",
  6333. "zmaster587",
  6334. {
  6335. front: {
  6336. height: math.unit(5 + 8/12, "feet"),
  6337. weight: math.unit(63, "kg"),
  6338. name: "Front",
  6339. image: {
  6340. source: "./media/characters/xavier/front.svg",
  6341. extra: 944/883
  6342. }
  6343. },
  6344. frontStretch: {
  6345. height: math.unit(5 + 8/12, "feet"),
  6346. weight: math.unit(63, "kg"),
  6347. name: "Stretching",
  6348. image: {
  6349. source: "./media/characters/xavier/front-stretch.svg",
  6350. extra: 962/820
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(5 + 8/12, "feet")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(100, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "McLargeHuge",
  6366. height: math.unit(10, "miles")
  6367. },
  6368. ]
  6369. )
  6370. };
  6371. characterMakers["Joshii"] = () => {
  6372. return makeCharacter(
  6373. "Joshii",
  6374. "DarkieTehJester",
  6375. {
  6376. front: {
  6377. height: math.unit(5 + 5/12, "feet"),
  6378. weight: math.unit(150, "lb"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/joshii/front.svg"
  6382. }
  6383. },
  6384. foot: {
  6385. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6386. name: "Foot",
  6387. image: {
  6388. source: "./media/characters/joshii/foot.svg"
  6389. }
  6390. },
  6391. },
  6392. [
  6393. {
  6394. name: "Micro",
  6395. height: math.unit(2, "inches")
  6396. },
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(5 + 5/12, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Macro",
  6404. height: math.unit(785, "feet")
  6405. },
  6406. {
  6407. name: "Megamacro",
  6408. height: math.unit(24.5, "miles")
  6409. },
  6410. ]
  6411. )
  6412. };
  6413. characterMakers["Goddess Elizabeth"] = () => {
  6414. return makeCharacter(
  6415. "Goddess Elizabeth",
  6416. "DarkieTehJester",
  6417. {
  6418. front: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(150, "lb"),
  6421. name: "Front",
  6422. image: {
  6423. source: "./media/characters/goddess-elizabeth/front.svg"
  6424. }
  6425. },
  6426. foot: {
  6427. height: math.unit(6 * 0.25436 / 2, "feet"),
  6428. name: "Foot",
  6429. image: {
  6430. source: "./media/characters/goddess-elizabeth/foot.svg"
  6431. }
  6432. },
  6433. },
  6434. [
  6435. {
  6436. name: "Micro",
  6437. height: math.unit(12, "feet")
  6438. },
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(80, "miles"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Macro",
  6446. height: math.unit(15000, "parsecs")
  6447. },
  6448. ]
  6449. )
  6450. };
  6451. characterMakers["Kara"] = () => {
  6452. return makeCharacter(
  6453. "Kara",
  6454. "Vonadi",
  6455. {
  6456. front: {
  6457. height: math.unit(5 + 9/12, "feet"),
  6458. weight: math.unit(144, "lb"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/kara/front.svg"
  6462. }
  6463. },
  6464. feet: {
  6465. height: math.unit(6/6.765, "feet"),
  6466. name: "Kara's Feet",
  6467. rename: true,
  6468. image: {
  6469. source: "./media/characters/kara/feet.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(5 + 9/12, "feet")
  6477. },
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(174, "feet"),
  6481. default: true
  6482. },
  6483. ]
  6484. )
  6485. };
  6486. characterMakers["Tyrone"] = () => {
  6487. return makeCharacter(
  6488. "Tyrone",
  6489. "nanakisan",
  6490. {
  6491. front: {
  6492. height: math.unit(18, "feet"),
  6493. weight: math.unit(4050, "lb"),
  6494. name: "Front",
  6495. image: {
  6496. source: "./media/characters/tyrone/front.svg",
  6497. extra: 2520/2402 ,
  6498. bottom: 0.025
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(18, "feet"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(300, "feet")
  6511. },
  6512. ]
  6513. )
  6514. };
  6515. characterMakers["Danny"] = () => {
  6516. return makeCharacter(
  6517. "Danny",
  6518. "danny_gryphon",
  6519. {
  6520. front: {
  6521. height: math.unit(7 + 8/12, "feet"),
  6522. weight: math.unit(120, "lb"),
  6523. name: "Front",
  6524. image: {
  6525. source: "./media/characters/danny/front.svg",
  6526. extra: 1490/1350
  6527. }
  6528. },
  6529. back: {
  6530. height: math.unit(7 + 8/12, "feet"),
  6531. weight: math.unit(120, "lb"),
  6532. name: "Back",
  6533. image: {
  6534. source: "./media/characters/danny/back.svg",
  6535. extra: 1490/1350
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(7 + 8/12, "feet"),
  6543. default: true
  6544. },
  6545. ]
  6546. )
  6547. };
  6548. characterMakers["Mallow"] = () => {
  6549. return makeCharacter(
  6550. "Mallow",
  6551. "Mallowchu",
  6552. {
  6553. front: {
  6554. height: math.unit(3.5, "inches"),
  6555. weight: math.unit(19, "grams"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/mallow/front.svg",
  6559. extra: 471/431
  6560. }
  6561. },
  6562. back: {
  6563. height: math.unit(3.5, "inches"),
  6564. weight: math.unit(19, "grams"),
  6565. name: "Back",
  6566. image: {
  6567. source: "./media/characters/mallow/back.svg",
  6568. extra: 471/431
  6569. }
  6570. },
  6571. },
  6572. [
  6573. {
  6574. name: "Normal",
  6575. height: math.unit(3.5, "inches"),
  6576. default: true
  6577. },
  6578. ]
  6579. )
  6580. };
  6581. characterMakers["Starry Aqua"] = () => {
  6582. return makeCharacter(
  6583. "Starry Aqua",
  6584. "StarryAqua",
  6585. {
  6586. front: {
  6587. height: math.unit(9, "feet"),
  6588. weight: math.unit(230, "kg"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/starry-aqua/front.svg"
  6592. }
  6593. },
  6594. back: {
  6595. height: math.unit(9, "feet"),
  6596. weight: math.unit(230, "kg"),
  6597. name: "Back",
  6598. image: {
  6599. source: "./media/characters/starry-aqua/back.svg"
  6600. }
  6601. },
  6602. hand: {
  6603. height: math.unit(9 * 0.1168, "feet"),
  6604. name: "Hand",
  6605. image: {
  6606. source: "./media/characters/starry-aqua/hand.svg"
  6607. }
  6608. },
  6609. foot: {
  6610. height: math.unit(9 * 0.18, "feet"),
  6611. name: "Foot",
  6612. image: {
  6613. source: "./media/characters/starry-aqua/foot.svg"
  6614. }
  6615. }
  6616. },
  6617. [
  6618. {
  6619. name: "Micro",
  6620. height: math.unit(3, "inches")
  6621. },
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(9, "feet")
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(300, "feet"),
  6629. default: true
  6630. },
  6631. {
  6632. name: "Megamacro",
  6633. height: math.unit(3200, "feet")
  6634. }
  6635. ]
  6636. )
  6637. };
  6638. characterMakers["Luka"] = () => {
  6639. return makeCharacter(
  6640. "Luka",
  6641. "UmbraHusky",
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(230, "lb"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/luka/front.svg",
  6649. extra: 1,
  6650. bottom: 0.025
  6651. }
  6652. },
  6653. },
  6654. [
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(12 + 8/12, "feet"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Minimacro",
  6662. height: math.unit(20, "feet")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(250, "feet")
  6667. },
  6668. {
  6669. name: "Megamacro",
  6670. height: math.unit(5, "miles")
  6671. },
  6672. {
  6673. name: "Gigamacro",
  6674. height: math.unit(8000, "miles")
  6675. },
  6676. ]
  6677. )
  6678. };
  6679. characterMakers["Natalie Nightring"] = () => {
  6680. return makeCharacter(
  6681. "Natalie Nightring",
  6682. "NatEdgecomb",
  6683. {
  6684. front: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(150, "lb"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/natalie-nightring/front.svg",
  6690. extra: 1,
  6691. bottom: 0.06
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Uh Oh",
  6698. height: math.unit(0.1, "mm")
  6699. },
  6700. {
  6701. name: "Small",
  6702. height: math.unit(3, "inches")
  6703. },
  6704. {
  6705. name: "Human Scale",
  6706. height: math.unit(6, "feet")
  6707. },
  6708. {
  6709. name: "Librarian",
  6710. height: math.unit(50, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Immense",
  6715. height: math.unit(200, "miles")
  6716. },
  6717. ]
  6718. )
  6719. };
  6720. characterMakers["Danni Rosie"] = () => {
  6721. return makeCharacter(
  6722. "Danni Rosie",
  6723. "colwag",
  6724. {
  6725. front: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(180, "lbs"),
  6728. name: "Front",
  6729. image: {
  6730. source: "./media/characters/danni-rosie/front.svg",
  6731. extra: 1260/1128 ,
  6732. bottom: 0.022
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Micro",
  6739. height: math.unit(2, "inches"),
  6740. default: true
  6741. },
  6742. ]
  6743. )
  6744. };
  6745. characterMakers["Samantha Kruse"] = () => {
  6746. return makeCharacter(
  6747. "Samantha Kruse",
  6748. "colwag",
  6749. {
  6750. front: {
  6751. height: math.unit(5 + 9/12, "feet"),
  6752. weight: math.unit(220, "lb"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/samantha-kruse/front.svg",
  6756. extra: (985 / 935) ,
  6757. bottom: 0.03
  6758. }
  6759. },
  6760. frontUndressed: {
  6761. height: math.unit(5 + 9/12, "feet"),
  6762. weight: math.unit(220, "lb"),
  6763. name: "Front (Undressed)",
  6764. image: {
  6765. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6766. extra: (973 / 923) ,
  6767. bottom: 0.025
  6768. }
  6769. },
  6770. fat: {
  6771. height: math.unit(5 + 9/12, "feet"),
  6772. weight: math.unit(900, "lb"),
  6773. name: "Front (Fat)",
  6774. image: {
  6775. source: "./media/characters/samantha-kruse/fat.svg",
  6776. extra: 2688/2561
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(5 + 9/12, "feet"),
  6784. default: true
  6785. }
  6786. ]
  6787. )
  6788. };
  6789. characterMakers["Amelia Rosie"] = () => {
  6790. return makeCharacter(
  6791. "Amelia Rosie",
  6792. "colwag",
  6793. {
  6794. back: {
  6795. height: math.unit(5 + 4/12, "feet"),
  6796. weight: math.unit(4963, "lb"),
  6797. name: "Back",
  6798. image: {
  6799. source: "./media/characters/amelia-rosie/back.svg",
  6800. extra: 1113/963 ,
  6801. bottom: 0.01
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "Level 0",
  6808. height: math.unit(5 + 4/12, "feet")
  6809. },
  6810. {
  6811. name: "Level 1",
  6812. height: math.unit(164597, "feet"),
  6813. default: true
  6814. },
  6815. {
  6816. name: "Level 2",
  6817. height: math.unit(956243, "miles")
  6818. },
  6819. {
  6820. name: "Level 3",
  6821. height: math.unit(29421709423, "miles")
  6822. },
  6823. {
  6824. name: "Level 4",
  6825. height: math.unit(154, "lightyears")
  6826. },
  6827. {
  6828. name: "Level 5",
  6829. height: math.unit(4738272, "lightyears")
  6830. },
  6831. {
  6832. name: "Level 6",
  6833. height: math.unit(145787152896, "lightyears")
  6834. },
  6835. ]
  6836. )
  6837. };
  6838. characterMakers["Rook Kitara"] = () => {
  6839. return makeCharacter(
  6840. "Rook Kitara",
  6841. "TailsHigh",
  6842. {
  6843. front: {
  6844. height: math.unit(5 + 11/12, "feet"),
  6845. weight: math.unit(65, "kg"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/rook-kitara/front.svg",
  6849. extra: 1347/1274 ,
  6850. bottom: 0.005
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Totally Unfair",
  6857. height: math.unit(1.8, "mm")
  6858. },
  6859. {
  6860. name: "Lap Rookie",
  6861. height: math.unit(1.4, "feet")
  6862. },
  6863. {
  6864. name: "Normal",
  6865. height: math.unit(5 + 11/12, "feet"),
  6866. default: true
  6867. },
  6868. {
  6869. name: "How Did This Happen",
  6870. height: math.unit(80, "miles")
  6871. }
  6872. ]
  6873. )
  6874. };
  6875. characterMakers["Pisces"] = () => {
  6876. return makeCharacter(
  6877. "Pisces",
  6878. "Pisces_Kelp",
  6879. {
  6880. front: {
  6881. height: math.unit(7, "feet"),
  6882. weight: math.unit(300, "lb"),
  6883. name: "Front",
  6884. image: {
  6885. source: "./media/characters/pisces/front.svg",
  6886. extra: 2255/2115 ,
  6887. bottom: 0.03
  6888. }
  6889. },
  6890. back: {
  6891. height: math.unit(7, "feet"),
  6892. weight: math.unit(300, "lb"),
  6893. name: "Back",
  6894. image: {
  6895. source: "./media/characters/pisces/back.svg",
  6896. extra: 2146/2055 ,
  6897. bottom: 0.04
  6898. }
  6899. },
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(7, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Swimming Pool",
  6909. height: math.unit(12.2, "meters")
  6910. },
  6911. {
  6912. name: "Olympic Swimming Pool",
  6913. height: math.unit(56.3, "meters")
  6914. },
  6915. {
  6916. name: "Lake Superior",
  6917. height: math.unit(93900, "meters")
  6918. },
  6919. {
  6920. name: "Mediterranean Sea",
  6921. height: math.unit(644457, "meters")
  6922. },
  6923. {
  6924. name: "World's Oceans",
  6925. height: math.unit(4567491, "meters")
  6926. },
  6927. ]
  6928. )
  6929. };
  6930. characterMakers["Zelas"] = () => {
  6931. return makeCharacter(
  6932. "Zelas",
  6933. "Cirez",
  6934. {
  6935. front: {
  6936. height: math.unit(2.3, "meters"),
  6937. weight: math.unit(120, "kg"),
  6938. name: "Front",
  6939. image: {
  6940. source: "./media/characters/zelas/front.svg"
  6941. }
  6942. },
  6943. side: {
  6944. height: math.unit(2.3, "meters"),
  6945. weight: math.unit(120, "kg"),
  6946. name: "Side",
  6947. image: {
  6948. source: "./media/characters/zelas/side.svg"
  6949. }
  6950. },
  6951. back: {
  6952. height: math.unit(2.3, "meters"),
  6953. weight: math.unit(120, "kg"),
  6954. name: "Back",
  6955. image: {
  6956. source: "./media/characters/zelas/back.svg"
  6957. }
  6958. },
  6959. foot: {
  6960. height: math.unit(1.116, "feet"),
  6961. name: "Foot",
  6962. image: {
  6963. source: "./media/characters/zelas/foot.svg"
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(2.3, "meters")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(30, "meters"),
  6975. default: true
  6976. },
  6977. ]
  6978. )
  6979. };
  6980. characterMakers["Talbot"] = () => {
  6981. return makeCharacter(
  6982. "Talbot",
  6983. "Talbot",
  6984. {
  6985. front: {
  6986. height: math.unit(1, "inch"),
  6987. weight: math.unit(0.21, "grams"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/talbot/front.svg",
  6991. extra: 594/544
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Micro",
  6998. height: math.unit(1, "inch"),
  6999. default: true
  7000. },
  7001. ]
  7002. )
  7003. };
  7004. characterMakers["Fliss"] = () => {
  7005. return makeCharacter(
  7006. "Fliss",
  7007. "Fliss",
  7008. {
  7009. front: {
  7010. height: math.unit(3 + 3/12, "feet"),
  7011. weight: math.unit(51.8, "lb"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/fliss/front.svg",
  7015. extra: 840/640
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Teeny Tiny",
  7022. height: math.unit(1, "mm")
  7023. },
  7024. {
  7025. name: "Small",
  7026. height: math.unit(1, "inch"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Standard Sylveon",
  7031. height: math.unit(3 + 3/12, "feet")
  7032. },
  7033. {
  7034. name: "Large Nuisance",
  7035. height: math.unit(33, "feet")
  7036. },
  7037. {
  7038. name: "City Filler",
  7039. height: math.unit(3000, "feet")
  7040. },
  7041. {
  7042. name: "New Horizon",
  7043. height: math.unit(6000, "miles")
  7044. },
  7045. ]
  7046. )
  7047. };
  7048. characterMakers["Fleta"] = () => {
  7049. return makeCharacter(
  7050. "Fleta",
  7051. "TheFleta",
  7052. {
  7053. front: {
  7054. height: math.unit(5, "cm"),
  7055. weight: math.unit(1.94, "g"),
  7056. name: "Front",
  7057. image: {
  7058. source: "./media/characters/fleta/front.svg",
  7059. extra: 835/803
  7060. }
  7061. },
  7062. back: {
  7063. height: math.unit(5, "cm"),
  7064. weight: math.unit(1.94, "g"),
  7065. name: "Back",
  7066. image: {
  7067. source: "./media/characters/fleta/back.svg",
  7068. extra: 835/803
  7069. }
  7070. },
  7071. },
  7072. [
  7073. {
  7074. name: "Micro",
  7075. height: math.unit(5, "cm"),
  7076. default: true
  7077. },
  7078. ]
  7079. )
  7080. };
  7081. characterMakers["Dominic"] = () => {
  7082. return makeCharacter(
  7083. "Dominic",
  7084. "HypoTheDerg",
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(225, "lb"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/dominic/front.svg",
  7092. extra: 1770/1620 ,
  7093. bottom: 0.025
  7094. }
  7095. },
  7096. back: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(225, "lb"),
  7099. name: "Back",
  7100. image: {
  7101. source: "./media/characters/dominic/back.svg",
  7102. extra: 1745/1620 ,
  7103. bottom: 0.065
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Nano",
  7110. height: math.unit(0.1, "mm")
  7111. },
  7112. {
  7113. name: "Micro-",
  7114. height: math.unit(1, "mm")
  7115. },
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(4, "inches")
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(6 + 4/12, "feet"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(115, "feet")
  7128. },
  7129. {
  7130. name: "Macro+",
  7131. height: math.unit(955, "feet")
  7132. },
  7133. {
  7134. name: "Megamacro",
  7135. height: math.unit(8990, "feet")
  7136. },
  7137. {
  7138. name: "Gigmacro",
  7139. height: math.unit(9310, "miles")
  7140. },
  7141. {
  7142. name: "Teramacro",
  7143. height: math.unit(1567005010, "miles")
  7144. },
  7145. {
  7146. name: "Examacro",
  7147. height: math.unit(1425, "parsecs")
  7148. },
  7149. ]
  7150. )
  7151. };
  7152. characterMakers["Major Colonel"] = () => {
  7153. return makeCharacter(
  7154. "Major Colonel",
  7155. "Major Colonel",
  7156. {
  7157. front: {
  7158. height: math.unit(400, "feet"),
  7159. weight: math.unit(44444444, "lb"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/major-colonel/front.svg"
  7163. }
  7164. },
  7165. back: {
  7166. height: math.unit(400, "feet"),
  7167. weight: math.unit(44444444, "lb"),
  7168. name: "Back",
  7169. image: {
  7170. source: "./media/characters/major-colonel/back.svg"
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(400, "feet"),
  7178. default: true
  7179. },
  7180. ]
  7181. )
  7182. };
  7183. characterMakers["Axel Lycan"] = () => {
  7184. return makeCharacter(
  7185. "Axel Lycan",
  7186. "AxelLycan",
  7187. {
  7188. front: {
  7189. height: math.unit(6, "feet"),
  7190. weight: math.unit(120, "lb"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/axel-lycan/front.svg",
  7194. extra: 1,
  7195. bottom: 0.08
  7196. }
  7197. },
  7198. },
  7199. [
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(1, "km"),
  7203. default: true
  7204. },
  7205. ]
  7206. )
  7207. };
  7208. characterMakers["Vanrel (Hyena)"] = () => {
  7209. return makeCharacter(
  7210. "Vanrel (Hyena)",
  7211. "Vanrel",
  7212. {
  7213. front: {
  7214. height: math.unit(5 + 9/12, "feet"),
  7215. weight: math.unit(175, "lb"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/vanrel-hyena/front.svg",
  7219. extra: 1086/1010 ,
  7220. bottom: 0.04
  7221. }
  7222. },
  7223. },
  7224. [
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(5 + 9/12, "feet"),
  7228. default: true
  7229. },
  7230. ]
  7231. )
  7232. };
  7233. characterMakers["Abbott Absol"] = () => {
  7234. return makeCharacter(
  7235. "Abbott Absol",
  7236. "Abbott Absol",
  7237. {
  7238. front: {
  7239. height: math.unit(6, "feet"),
  7240. weight: math.unit(103, "lb"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/abbott-absol/front.svg",
  7244. extra: 2010/1842
  7245. }
  7246. },
  7247. },
  7248. [
  7249. {
  7250. name: "Megamicro",
  7251. height: math.unit(0.1, "mm")
  7252. },
  7253. {
  7254. name: "Micro",
  7255. height: math.unit(1, "inch")
  7256. },
  7257. {
  7258. name: "Normal",
  7259. height: math.unit(6, "feet"),
  7260. default: true
  7261. },
  7262. ]
  7263. )
  7264. };
  7265. characterMakers["Hector"] = () => {
  7266. return makeCharacter(
  7267. "Hector",
  7268. "LibragonSlvr",
  7269. {
  7270. front: {
  7271. height: math.unit(6, "feet"),
  7272. weight: math.unit(264, "lb"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/hector/front.svg",
  7276. extra: 2280/2130 ,
  7277. bottom: 0.07
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(12.25, "foot"),
  7285. default: true
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(160, "feet")
  7290. },
  7291. ]
  7292. )
  7293. };
  7294. characterMakers["Sal"] = () => {
  7295. return makeCharacter(
  7296. "Sal",
  7297. "Bigdur",
  7298. {
  7299. front: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(150, "lb"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/sal/front.svg",
  7305. extra: 1846/1699 ,
  7306. bottom: 0.04
  7307. }
  7308. },
  7309. },
  7310. [
  7311. {
  7312. name: "Megamacro",
  7313. height: math.unit(10, "miles"),
  7314. default: true
  7315. },
  7316. ]
  7317. )
  7318. };
  7319. characterMakers["Ranger"] = () => {
  7320. return makeCharacter(
  7321. "Ranger",
  7322. "Ranger",
  7323. {
  7324. front: {
  7325. height: math.unit(3, "meters"),
  7326. weight: math.unit(450, "kg"),
  7327. name: "front",
  7328. image: {
  7329. source: "./media/characters/ranger/front.svg",
  7330. extra: 2401/2243 ,
  7331. bottom: 0.05
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(3, "meters"),
  7339. default: true
  7340. },
  7341. ]
  7342. )
  7343. };
  7344. characterMakers["Theresa"] = () => {
  7345. return makeCharacter(
  7346. "Theresa",
  7347. "Ranger",
  7348. {
  7349. front: {
  7350. height: math.unit(14, "feet"),
  7351. weight: math.unit(800, "kg"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/theresa/front.svg",
  7355. extra: 3575/3346 ,
  7356. bottom: 0.03
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(14, "feet"),
  7364. default: true
  7365. },
  7366. ]
  7367. )
  7368. };
  7369. characterMakers["Ine"] = () => {
  7370. return makeCharacter(
  7371. "Ine",
  7372. "Ranger",
  7373. {
  7374. front: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(3, "kg"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/ine/front.svg",
  7380. extra: 678/539 ,
  7381. bottom: 0.023
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(2.265, "feet"),
  7389. default: true
  7390. },
  7391. ]
  7392. )
  7393. };
  7394. characterMakers["Vial"] = () => {
  7395. return makeCharacter(
  7396. "Vial",
  7397. "Ranger",
  7398. {
  7399. front: {
  7400. height: math.unit(5, "feet"),
  7401. weight: math.unit(30, "kg"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/vial/front.svg",
  7405. extra: 1365/1277 ,
  7406. bottom: 0.04
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(5, "feet"),
  7414. default: true
  7415. },
  7416. ]
  7417. )
  7418. };
  7419. characterMakers["Rovoska"] = () => {
  7420. return makeCharacter(
  7421. "Rovoska",
  7422. "Rovoska",
  7423. {
  7424. side: {
  7425. height: math.unit(3.4, "meters"),
  7426. weight: math.unit(1000, "lb"),
  7427. name: "Side",
  7428. image: {
  7429. source: "./media/characters/rovoska/side.svg",
  7430. extra: 4403/1515
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(3.4, "meters"),
  7438. default: true
  7439. },
  7440. ]
  7441. )
  7442. };
  7443. characterMakers["Gunner Rotthbauer"] = () => {
  7444. return makeCharacter(
  7445. "Gunner Rotthbauer",
  7446. "GunnerRott",
  7447. {
  7448. front: {
  7449. height: math.unit(8, "feet"),
  7450. weight: math.unit(315, "lb"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/gunner-rotthbauer/front.svg"
  7454. }
  7455. },
  7456. back: {
  7457. height: math.unit(8, "feet"),
  7458. weight: math.unit(315, "lb"),
  7459. name: "Back",
  7460. image: {
  7461. source: "./media/characters/gunner-rotthbauer/back.svg"
  7462. }
  7463. },
  7464. },
  7465. [
  7466. {
  7467. name: "Micro",
  7468. height: math.unit(3.5, "inches")
  7469. },
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(8, "feet"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(250, "feet")
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(1, "AU")
  7482. },
  7483. ]
  7484. )
  7485. };
  7486. characterMakers["Allatia"] = () => {
  7487. return makeCharacter(
  7488. "Allatia",
  7489. "ilikefurrystoo",
  7490. {
  7491. front: {
  7492. height: math.unit(5 + 5/12, "feet"),
  7493. weight: math.unit(140, "lb"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/allatia/front.svg",
  7497. extra: 1227/1180 ,
  7498. bottom: 0.027
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(5 + 5/12, "feet")
  7506. },
  7507. {
  7508. name: "Macro",
  7509. height: math.unit(250, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Megamacro",
  7514. height: math.unit(8, "miles")
  7515. }
  7516. ]
  7517. )
  7518. };
  7519. characterMakers["Tene"] = () => {
  7520. return makeCharacter(
  7521. "Tene",
  7522. "TenebrisDrox",
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(120, "lb"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/tene/front.svg",
  7530. extra: 1728/1578 ,
  7531. bottom: 0.022
  7532. }
  7533. },
  7534. stomping: {
  7535. height: math.unit(2.025, "meters"),
  7536. weight: math.unit(120, "lb"),
  7537. name: "Stomping",
  7538. image: {
  7539. source: "./media/characters/tene/stomping.svg",
  7540. extra: 938/873 ,
  7541. bottom: 0.01
  7542. }
  7543. },
  7544. sitting: {
  7545. height: math.unit(1, "meter"),
  7546. weight: math.unit(120, "lb"),
  7547. name: "Sitting",
  7548. image: {
  7549. source: "./media/characters/tene/sitting.svg",
  7550. extra: 437/415 ,
  7551. bottom: 0.1
  7552. }
  7553. },
  7554. feral: {
  7555. height: math.unit(3.9, "feet"),
  7556. weight: math.unit(250, "lb"),
  7557. name: "Feral",
  7558. image: {
  7559. source: "./media/characters/tene/feral.svg",
  7560. extra: 717/458 ,
  7561. bottom: 0.179
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(6, "feet")
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(300, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Megamacro",
  7577. height: math.unit(5, "miles")
  7578. },
  7579. ]
  7580. )
  7581. };
  7582. characterMakers["Evander"] = () => {
  7583. return makeCharacter(
  7584. "Evander",
  7585. "KlezmerGryphon",
  7586. {
  7587. side: {
  7588. height: math.unit(6, "feet"),
  7589. name: "Side",
  7590. image: {
  7591. source: "./media/characters/evander/side.svg",
  7592. extra: 877/477
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(0.83, "meters"),
  7600. default: true
  7601. },
  7602. ]
  7603. )
  7604. };
  7605. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7606. return makeCharacter(
  7607. "Ka'Tamra \"Spaz\" Ci'Karan",
  7608. "Spazman",
  7609. {
  7610. front: {
  7611. height: math.unit(12, "feet"),
  7612. weight: math.unit(1000, "lb"),
  7613. name: "Front",
  7614. image: {
  7615. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7616. extra: 1762/1611
  7617. }
  7618. },
  7619. back: {
  7620. height: math.unit(12, "feet"),
  7621. weight: math.unit(1000, "lb"),
  7622. name: "Back",
  7623. image: {
  7624. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7625. extra: 1762/1611
  7626. }
  7627. },
  7628. },
  7629. [
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(12, "feet"),
  7633. default: true
  7634. },
  7635. {
  7636. name: "Kaiju",
  7637. height: math.unit(150, "feet")
  7638. },
  7639. ]
  7640. )
  7641. };
  7642. characterMakers["Zero Alurus"] = () => {
  7643. return makeCharacter(
  7644. "Zero Alurus",
  7645. "",
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(150, "lb"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/zero-alurus/front.svg"
  7653. }
  7654. },
  7655. back: {
  7656. height: math.unit(6, "feet"),
  7657. weight: math.unit(150, "lb"),
  7658. name: "Back",
  7659. image: {
  7660. source: "./media/characters/zero-alurus/back.svg"
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(5 + 10/12, "feet")
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(60, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Macro+",
  7676. height: math.unit(450, "feet")
  7677. },
  7678. ]
  7679. )
  7680. };
  7681. characterMakers["Mega Shi"] = () => {
  7682. return makeCharacter(
  7683. "Mega Shi",
  7684. "MShi8027",
  7685. {
  7686. front: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(200, "lb"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/mega-shi/front.svg",
  7692. extra: 1279/1250 ,
  7693. bottom: 0.02
  7694. }
  7695. },
  7696. back: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(200, "lb"),
  7699. name: "Back",
  7700. image: {
  7701. source: "./media/characters/mega-shi/back.svg",
  7702. extra: 1279/1250 ,
  7703. bottom: 0.02
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Micro",
  7710. height: math.unit(16 + 6/12, "feet")
  7711. },
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(660, "feet"),
  7715. default: true
  7716. },
  7717. {
  7718. name: "Megamacro",
  7719. height: math.unit(10, "miles")
  7720. },
  7721. {
  7722. name: "Planetary Launch",
  7723. height: math.unit(500, "miles")
  7724. },
  7725. {
  7726. name: "Interstellar",
  7727. height: math.unit(1e9, "miles")
  7728. },
  7729. {
  7730. name: "Leaving the Universe",
  7731. height: math.unit(1, "gigaparsec")
  7732. },
  7733. {
  7734. name: "Travelling Universes",
  7735. height: math.unit(30e15, "parsecs")
  7736. },
  7737. ]
  7738. )
  7739. };
  7740. characterMakers["Odyssey"] = () => {
  7741. return makeCharacter(
  7742. "Odyssey",
  7743. "Freschlauhs",
  7744. {
  7745. front: {
  7746. height: math.unit(6, "feet"),
  7747. weight: math.unit(150, "lb"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/odyssey/front.svg",
  7751. extra: 1782/1582 ,
  7752. bottom: 0.01
  7753. }
  7754. },
  7755. side: {
  7756. height: math.unit(5.6, "feet"),
  7757. weight: math.unit(140, "lb"),
  7758. name: "Side",
  7759. image: {
  7760. source: "./media/characters/odyssey/side.svg",
  7761. extra: 6462/5700
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(5 + 4/12, "feet")
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(1, "km")
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(3000, "km")
  7777. },
  7778. {
  7779. name: "Gigamacro",
  7780. height: math.unit(1, "AU"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Omniversal",
  7785. height: math.unit(100e14, "lightyears")
  7786. },
  7787. ]
  7788. )
  7789. };
  7790. characterMakers["Mekuto"] = () => {
  7791. return makeCharacter(
  7792. "Mekuto",
  7793. "Mekuto",
  7794. {
  7795. front: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(300, "lb"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/mekuto/front.svg",
  7801. extra: 921/832 ,
  7802. bottom: 0.03
  7803. }
  7804. },
  7805. hand: {
  7806. height: math.unit(6/10.24, "feet"),
  7807. name: "Hand",
  7808. image: {
  7809. source: "./media/characters/mekuto/hand.svg"
  7810. }
  7811. },
  7812. foot: {
  7813. height: math.unit(6/5.05, "feet"),
  7814. name: "Foot",
  7815. image: {
  7816. source: "./media/characters/mekuto/foot.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Minimicro",
  7823. height: math.unit(0.2, "inches")
  7824. },
  7825. {
  7826. name: "Micro",
  7827. height: math.unit(1.5, "inches")
  7828. },
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(5 + 11/12, "feet"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Minimacro",
  7836. height: math.unit(17 + 9/12, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(177.5, "feet")
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(152, "miles")
  7845. },
  7846. ]
  7847. )
  7848. };
  7849. characterMakers["Dafydd Tomos"] = () => {
  7850. return makeCharacter(
  7851. "Dafydd Tomos",
  7852. "SolarfoxArt",
  7853. {
  7854. front: {
  7855. height: math.unit(6.5, "inches"),
  7856. weight: math.unit(13, "oz"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/dafydd-tomos/front.svg",
  7860. extra: 2990/2603 ,
  7861. bottom: 0.03
  7862. }
  7863. },
  7864. },
  7865. [
  7866. {
  7867. name: "Micro",
  7868. height: math.unit(6.5, "inches"),
  7869. default: true
  7870. },
  7871. ]
  7872. )
  7873. };
  7874. characterMakers["Splinter"] = () => {
  7875. return makeCharacter(
  7876. "Splinter",
  7877. "SirSplinter",
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(150, "lb"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/splinter/front.svg",
  7885. extra: 2990/2882 ,
  7886. bottom: 0.04
  7887. }
  7888. },
  7889. back: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(150, "lb"),
  7892. name: "Back",
  7893. image: {
  7894. source: "./media/characters/splinter/back.svg",
  7895. extra: 2990/2882 ,
  7896. bottom: 0.04
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Normal",
  7903. height: math.unit(6, "feet")
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(230, "meters"),
  7908. default: true
  7909. },
  7910. ]
  7911. )
  7912. };
  7913. characterMakers["SnowGabumon"] = () => {
  7914. return makeCharacter(
  7915. "SnowGabumon",
  7916. "SnowGabumon",
  7917. {
  7918. front: {
  7919. height: math.unit(4 + 10/12, "feet"),
  7920. weight: math.unit(480, "lb"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/snow-gabumon/front.svg",
  7924. extra: 1140/963 ,
  7925. bottom: 0.058
  7926. }
  7927. },
  7928. back: {
  7929. height: math.unit(4 + 10/12, "feet"),
  7930. weight: math.unit(480, "lb"),
  7931. name: "Back",
  7932. image: {
  7933. source: "./media/characters/snow-gabumon/back.svg",
  7934. extra: 1115/962 ,
  7935. bottom: 0.041
  7936. }
  7937. },
  7938. frontUndresed: {
  7939. height: math.unit(4 + 10/12, "feet"),
  7940. weight: math.unit(480, "lb"),
  7941. name: "Front (Undressed)",
  7942. image: {
  7943. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7944. extra: 1061/960 ,
  7945. bottom: 0.045
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Micro",
  7952. height: math.unit(1, "inch")
  7953. },
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(4 + 10/12, "feet"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(200, "feet")
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(120, "miles")
  7966. },
  7967. {
  7968. name: "Gigamacro",
  7969. height: math.unit(9800, "miles")
  7970. },
  7971. ]
  7972. )
  7973. };
  7974. characterMakers["Moody"] = () => {
  7975. return makeCharacter(
  7976. "Moody",
  7977. "MoodysterDog",
  7978. {
  7979. front: {
  7980. height: math.unit(1.7, "meters"),
  7981. weight: math.unit(140, "lb"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/moody/front.svg",
  7985. extra: 3226/3007 ,
  7986. bottom: 0.087
  7987. }
  7988. },
  7989. },
  7990. [
  7991. {
  7992. name: "Micro",
  7993. height: math.unit(1, "mm")
  7994. },
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(1.7, "meters"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Macro",
  8002. height: math.unit(80, "meters")
  8003. },
  8004. {
  8005. name: "Macro+",
  8006. height: math.unit(500, "meters")
  8007. },
  8008. ]
  8009. )
  8010. };
  8011. characterMakers["Zyas"] = () => {
  8012. return makeCharacter(
  8013. "Zyas",
  8014. "Delathar",
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(150, "lb"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/zyas/front.svg",
  8022. extra: 1180/1120 ,
  8023. bottom: 0.045
  8024. }
  8025. },
  8026. },
  8027. [
  8028. {
  8029. name: "Normal",
  8030. height: math.unit(10, "feet"),
  8031. default: true
  8032. },
  8033. {
  8034. name: "Macro",
  8035. height: math.unit(500, "feet")
  8036. },
  8037. {
  8038. name: "Megamacro",
  8039. height: math.unit(5, "miles")
  8040. },
  8041. {
  8042. name: "Teramacro",
  8043. height: math.unit(150000, "miles")
  8044. },
  8045. ]
  8046. )
  8047. };
  8048. characterMakers["Cuon"] = () => {
  8049. return makeCharacter(
  8050. "Cuon",
  8051. "CollieCuon",
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(150, "lb"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/cuon/front.svg",
  8059. extra: 1390/1320 ,
  8060. bottom: 0.008
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(3, "inches")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(18 + 9/12, "feet"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(360, "feet")
  8077. },
  8078. {
  8079. name: "Megamacro",
  8080. height: math.unit(360, "miles")
  8081. },
  8082. ]
  8083. )
  8084. };
  8085. characterMakers["Nyanuxk"] = () => {
  8086. return makeCharacter(
  8087. "Nyanuxk",
  8088. "Nyanuxk",
  8089. {
  8090. front: {
  8091. height: math.unit(2.4, "meters"),
  8092. weight: math.unit(70, "kg"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/nyanuxk/front.svg",
  8096. extra: 1172/1084 ,
  8097. bottom: 0.065
  8098. }
  8099. },
  8100. side: {
  8101. height: math.unit(2.4, "meters"),
  8102. weight: math.unit(70, "kg"),
  8103. name: "Side",
  8104. image: {
  8105. source: "./media/characters/nyanuxk/side.svg",
  8106. extra: 1190/1132 ,
  8107. bottom: 0.007
  8108. }
  8109. },
  8110. back: {
  8111. height: math.unit(2.4, "meters"),
  8112. weight: math.unit(70, "kg"),
  8113. name: "Back",
  8114. image: {
  8115. source: "./media/characters/nyanuxk/back.svg",
  8116. extra: 1200/1141 ,
  8117. bottom: 0.015
  8118. }
  8119. },
  8120. foot: {
  8121. height: math.unit(0.52, "meters"),
  8122. name: "Foot",
  8123. image: {
  8124. source: "./media/characters/nyanuxk/foot.svg"
  8125. }
  8126. },
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(2, "cm")
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(2.4, "meters"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Smaller Macro",
  8140. height: math.unit(120, "meters")
  8141. },
  8142. {
  8143. name: "Bigger Macro",
  8144. height: math.unit(1.2, "km")
  8145. },
  8146. {
  8147. name: "Megamacro",
  8148. height: math.unit(15, "kilometers")
  8149. },
  8150. {
  8151. name: "Gigamacro",
  8152. height: math.unit(2000, "km")
  8153. },
  8154. {
  8155. name: "Teramacro",
  8156. height: math.unit(500000, "km")
  8157. },
  8158. ]
  8159. )
  8160. };
  8161. characterMakers["Ailbhe"] = () => {
  8162. return makeCharacter(
  8163. "Ailbhe",
  8164. "KlezmerGryphon",
  8165. {
  8166. side: {
  8167. height: math.unit(6, "feet"),
  8168. name: "Side",
  8169. image: {
  8170. source: "./media/characters/ailbhe/side.svg",
  8171. extra: 757/464 ,
  8172. bottom: 0.041
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(1.07, "meters"),
  8180. default: true
  8181. },
  8182. ]
  8183. )
  8184. };
  8185. characterMakers["Zevulfius"] = () => {
  8186. return makeCharacter(
  8187. "Zevulfius",
  8188. "Nyanuxk",
  8189. {
  8190. front: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(120, "kg"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/zevulfius/front.svg",
  8196. extra: 965/903
  8197. }
  8198. },
  8199. side: {
  8200. height: math.unit(6, "feet"),
  8201. weight: math.unit(120, "kg"),
  8202. name: "Side",
  8203. image: {
  8204. source: "./media/characters/zevulfius/side.svg",
  8205. extra: 939/900
  8206. }
  8207. },
  8208. back: {
  8209. height: math.unit(6, "feet"),
  8210. weight: math.unit(120, "kg"),
  8211. name: "Back",
  8212. image: {
  8213. source: "./media/characters/zevulfius/back.svg",
  8214. extra: 918/854 ,
  8215. bottom: 0.005
  8216. }
  8217. },
  8218. foot: {
  8219. height: math.unit(6/3.72, "feet"),
  8220. name: "Foot",
  8221. image: {
  8222. source: "./media/characters/zevulfius/foot.svg"
  8223. }
  8224. },
  8225. },
  8226. [
  8227. {
  8228. name: "Macro",
  8229. height: math.unit(750, "meters")
  8230. },
  8231. {
  8232. name: "Megamacro",
  8233. height: math.unit(20, "km"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Gigamacro",
  8238. height: math.unit(2000, "km")
  8239. },
  8240. {
  8241. name: "Teramacro",
  8242. height: math.unit(250000, "km")
  8243. },
  8244. ]
  8245. )
  8246. };
  8247. characterMakers["Rikes"] = () => {
  8248. return makeCharacter(
  8249. "Rikes",
  8250. "VeryLargeDog",
  8251. {
  8252. front: {
  8253. height: math.unit(100, "feet"),
  8254. weight: math.unit(350, "kg"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/rikes/front.svg",
  8258. extra: 1565/1483 ,
  8259. bottom: 0.017
  8260. }
  8261. },
  8262. },
  8263. [
  8264. {
  8265. name: "Macro",
  8266. height: math.unit(100, "feet"),
  8267. default: true
  8268. },
  8269. ]
  8270. )
  8271. };
  8272. characterMakers["Adam Silver-Mane"] = () => {
  8273. return makeCharacter(
  8274. "Adam Silver-Mane",
  8275. "Dragonknightadam",
  8276. {
  8277. anthro: {
  8278. height: math.unit(8, "feet"),
  8279. weight: math.unit(120, "kg"),
  8280. name: "Anthro",
  8281. image: {
  8282. source: "./media/characters/adam-silver-mane/anthro.svg",
  8283. extra: 5743/5339 ,
  8284. bottom: 0.07
  8285. }
  8286. },
  8287. taur: {
  8288. height: math.unit(16, "feet"),
  8289. weight: math.unit(1500, "kg"),
  8290. name: "Taur",
  8291. image: {
  8292. source: "./media/characters/adam-silver-mane/taur.svg",
  8293. extra: 1713/1571 ,
  8294. bottom: 0.01
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(8, "feet")
  8302. },
  8303. {
  8304. name: "Minimacro",
  8305. height: math.unit(80, "feet")
  8306. },
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(800, "feet"),
  8310. default: true
  8311. },
  8312. {
  8313. name: "Megamacro",
  8314. height: math.unit(8000, "feet")
  8315. },
  8316. {
  8317. name: "Gigamacro",
  8318. height: math.unit(800, "miles")
  8319. },
  8320. {
  8321. name: "Teramacro",
  8322. height: math.unit(80000, "miles")
  8323. },
  8324. {
  8325. name: "Celestial",
  8326. height: math.unit(8e6, "miles")
  8327. },
  8328. {
  8329. name: "Star Dragon",
  8330. height: math.unit(800000, "parsecs")
  8331. },
  8332. {
  8333. name: "Godly",
  8334. height: math.unit(800, "teraparsecs")
  8335. },
  8336. ]
  8337. )
  8338. };
  8339. characterMakers["Ky'owin"] = () => {
  8340. return makeCharacter(
  8341. "Ky'owin",
  8342. "Kyowin",
  8343. {
  8344. front: {
  8345. height: math.unit(6, "feet"),
  8346. weight: math.unit(150, "lb"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/ky'owin/front.svg",
  8350. extra: 3888/3068 ,
  8351. bottom: 0.015
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(6 + 8/12, "feet")
  8359. },
  8360. {
  8361. name: "Large",
  8362. height: math.unit(68, "feet")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(132, "feet")
  8367. },
  8368. {
  8369. name: "Macro+",
  8370. height: math.unit(340, "feet")
  8371. },
  8372. {
  8373. name: "Macro++",
  8374. height: math.unit(680, "feet"),
  8375. default: true
  8376. },
  8377. {
  8378. name: "Megamacro",
  8379. height: math.unit(1, "mile")
  8380. },
  8381. {
  8382. name: "Megamacro+",
  8383. height: math.unit(10, "miles")
  8384. },
  8385. ]
  8386. )
  8387. };
  8388. characterMakers["Mal"] = () => {
  8389. return makeCharacter(
  8390. "Mal",
  8391. "agrosarmadillo",
  8392. {
  8393. front: {
  8394. height: math.unit(4, "feet"),
  8395. weight: math.unit(50, "lb"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/mal/front.svg",
  8399. extra: 785/724 ,
  8400. bottom: 0.07
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(4, "inches")
  8408. },
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(4, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(200, "feet")
  8417. },
  8418. ]
  8419. )
  8420. };
  8421. characterMakers["Jordan Deware"] = () => {
  8422. return makeCharacter(
  8423. "Jordan Deware",
  8424. "JordanDeware",
  8425. {
  8426. front: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(150, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/jordan-deware/front.svg",
  8432. extra: 1191/1012
  8433. }
  8434. },
  8435. },
  8436. [
  8437. {
  8438. name: "Nano",
  8439. height: math.unit(0.01, "mm")
  8440. },
  8441. {
  8442. name: "Minimicro",
  8443. height: math.unit(1, "mm")
  8444. },
  8445. {
  8446. name: "Micro",
  8447. height: math.unit(0.5, "inches")
  8448. },
  8449. {
  8450. name: "Normal",
  8451. height: math.unit(4, "feet"),
  8452. default: true
  8453. },
  8454. {
  8455. name: "Minimacro",
  8456. height: math.unit(40, "meters")
  8457. },
  8458. {
  8459. name: "Small Macro",
  8460. height: math.unit(400, "meters")
  8461. },
  8462. {
  8463. name: "Macro",
  8464. height: math.unit(4, "miles")
  8465. },
  8466. {
  8467. name: "Megamacro",
  8468. height: math.unit(40, "miles")
  8469. },
  8470. {
  8471. name: "Megamacro+",
  8472. height: math.unit(400, "miles")
  8473. },
  8474. {
  8475. name: "Gigamacro",
  8476. height: math.unit(400000, "miles")
  8477. },
  8478. ]
  8479. )
  8480. };
  8481. characterMakers["Kimiko"] = () => {
  8482. return makeCharacter(
  8483. "Kimiko",
  8484. "HypoTheDerg",
  8485. {
  8486. side: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(150, "lb"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/kimiko/side.svg",
  8492. extra: 600/358
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(15, "feet"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "Macro",
  8504. height: math.unit(220, "feet")
  8505. },
  8506. {
  8507. name: "Macro+",
  8508. height: math.unit(1450, "feet")
  8509. },
  8510. {
  8511. name: "Megamacro",
  8512. height: math.unit(11500, "feet")
  8513. },
  8514. {
  8515. name: "Gigamacro",
  8516. height: math.unit(9500, "miles")
  8517. },
  8518. {
  8519. name: "Teramacro",
  8520. height: math.unit(2208005005, "miles")
  8521. },
  8522. {
  8523. name: "Examacro",
  8524. height: math.unit(2750, "parsecs")
  8525. },
  8526. {
  8527. name: "Zettamacro",
  8528. height: math.unit(101500, "parsecs")
  8529. },
  8530. ]
  8531. )
  8532. };
  8533. characterMakers["Andrew Sleepy"] = () => {
  8534. return makeCharacter(
  8535. "Andrew Sleepy",
  8536. "Proky",
  8537. {
  8538. front: {
  8539. height: math.unit(6, "feet"),
  8540. weight: math.unit(70, "kg"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/andrew-sleepy/front.svg"
  8544. }
  8545. },
  8546. side: {
  8547. height: math.unit(6, "feet"),
  8548. weight: math.unit(70, "kg"),
  8549. name: "Side",
  8550. image: {
  8551. source: "./media/characters/andrew-sleepy/side.svg"
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Micro",
  8558. height: math.unit(1, "mm"),
  8559. default: true
  8560. },
  8561. ]
  8562. )
  8563. };
  8564. characterMakers["Judio"] = () => {
  8565. return makeCharacter(
  8566. "Judio",
  8567. "HypoTheDerg",
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(150, "lb"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/judio/front.svg",
  8575. extra: 1258/1110
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5 + 6/12, "feet")
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(1000, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(10, "miles")
  8592. },
  8593. ]
  8594. )
  8595. };
  8596. characterMakers["Nomaxice"] = () => {
  8597. return makeCharacter(
  8598. "Nomaxice",
  8599. "Nomaxice",
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(68, "kg"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/nomaxice/front.svg",
  8607. extra: 1498/1073 ,
  8608. bottom: 0.075
  8609. }
  8610. },
  8611. foot: {
  8612. height: math.unit(1.1, "feet"),
  8613. name: "Foot",
  8614. image: {
  8615. source: "./media/characters/nomaxice/foot.svg"
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Micro",
  8622. height: math.unit(8, "cm")
  8623. },
  8624. {
  8625. name: "Norm",
  8626. height: math.unit(1.82, "m")
  8627. },
  8628. {
  8629. name: "Norm+",
  8630. height: math.unit(8.8, "feet")
  8631. },
  8632. {
  8633. name: "Big",
  8634. height: math.unit(8, "meters"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(18, "meters")
  8640. },
  8641. {
  8642. name: "Macro+",
  8643. height: math.unit(88, "meters")
  8644. },
  8645. ]
  8646. )
  8647. };
  8648. characterMakers["Dydros"] = () => {
  8649. return makeCharacter(
  8650. "Dydros",
  8651. "DatCyberDragon",
  8652. {
  8653. front: {
  8654. height: math.unit(12, "feet"),
  8655. weight: math.unit(1.5, "tons"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/dydros/front.svg",
  8659. extra: 863/800 ,
  8660. bottom: 0.015
  8661. }
  8662. },
  8663. back: {
  8664. height: math.unit(12, "feet"),
  8665. weight: math.unit(1.5, "tons"),
  8666. name: "Back",
  8667. image: {
  8668. source: "./media/characters/dydros/back.svg",
  8669. extra: 900/843 ,
  8670. bottom: 0.005
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(12, "feet"),
  8678. default: true
  8679. },
  8680. ]
  8681. )
  8682. };
  8683. characterMakers["Riggi"] = () => {
  8684. return makeCharacter(
  8685. "Riggi",
  8686. "Fyre_ace",
  8687. {
  8688. front: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(100, "kg"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/riggi/front.svg",
  8694. extra: 5787/5303
  8695. }
  8696. },
  8697. hyper: {
  8698. height: math.unit(6*5/3, "feet"),
  8699. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8700. name: "Hyper",
  8701. image: {
  8702. source: "./media/characters/riggi/hyper.svg",
  8703. extra: 3595/3485
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Small Macro",
  8710. height: math.unit(50, "feet")
  8711. },
  8712. {
  8713. name: "Default",
  8714. height: math.unit(200, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Loom",
  8719. height: math.unit(10000, "feet")
  8720. },
  8721. {
  8722. name: "Cruising Altitude",
  8723. height: math.unit(30000, "feet")
  8724. },
  8725. {
  8726. name: "Megamacro",
  8727. height: math.unit(100, "miles")
  8728. },
  8729. {
  8730. name: "Continent Sized",
  8731. height: math.unit(2800, "miles")
  8732. },
  8733. {
  8734. name: "Earth Sized",
  8735. height: math.unit(8000, "miles")
  8736. },
  8737. ]
  8738. )
  8739. };
  8740. characterMakers["Alexi"] = () => {
  8741. return makeCharacter(
  8742. "Alexi",
  8743. "AlexiWerewolf",
  8744. {
  8745. front: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(250, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/alexi/front.svg",
  8751. extra: 3483/3291 ,
  8752. bottom: 0.04
  8753. }
  8754. },
  8755. back: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(250, "lb"),
  8758. name: "Back",
  8759. image: {
  8760. source: "./media/characters/alexi/back.svg",
  8761. extra: 3533/3356 ,
  8762. bottom: 0.021
  8763. }
  8764. },
  8765. frontTransformed: {
  8766. height: math.unit(12.5, "feet"),
  8767. weight: math.unit(4000, "lb"),
  8768. name: "Front (Transformed)",
  8769. image: {
  8770. source: "./media/characters/alexi/front-transformed.svg",
  8771. extra: 5345/5100 ,
  8772. bottom: 0.03
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(3, "meters"),
  8780. default: true
  8781. },
  8782. {
  8783. name: "Minimacro",
  8784. height: math.unit(30, "meters")
  8785. },
  8786. {
  8787. name: "Macro",
  8788. height: math.unit(500, "meters")
  8789. },
  8790. {
  8791. name: "Megamacro",
  8792. height: math.unit(9000, "km")
  8793. },
  8794. {
  8795. name: "Teramacro",
  8796. height: math.unit(384000, "km")
  8797. },
  8798. ]
  8799. )
  8800. };
  8801. characterMakers["Kayroo"] = () => {
  8802. return makeCharacter(
  8803. "Kayroo",
  8804. "Kayroo",
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(150, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/kayroo/front.svg",
  8812. extra: 1153/1038 ,
  8813. bottom: 0.06
  8814. }
  8815. },
  8816. foot: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(150, "lb"),
  8819. name: "Foot",
  8820. image: {
  8821. source: "./media/characters/kayroo/foot.svg"
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(8, "feet"),
  8829. default: true
  8830. },
  8831. {
  8832. name: "Minimacro",
  8833. height: math.unit(250, "feet")
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(2800, "feet")
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(5200, "feet")
  8842. },
  8843. {
  8844. name: "Gigamacro",
  8845. height: math.unit(27000, "feet")
  8846. },
  8847. {
  8848. name: "Omega",
  8849. height: math.unit(45000, "feet")
  8850. },
  8851. ]
  8852. )
  8853. };
  8854. characterMakers["Rhys"] = () => {
  8855. return makeCharacter(
  8856. "Rhys",
  8857. "BigMountainCat",
  8858. {
  8859. front: {
  8860. height: math.unit(18, "feet"),
  8861. weight: math.unit(5800, "lb"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/rhys/front.svg",
  8865. extra: 3386/3090 ,
  8866. bottom: 0.07
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Normal",
  8873. height: math.unit(18, "feet"),
  8874. default: true
  8875. },
  8876. {
  8877. name: "Working Size",
  8878. height: math.unit(200, "feet")
  8879. },
  8880. {
  8881. name: "Demolition Size",
  8882. height: math.unit(2000, "feet")
  8883. },
  8884. {
  8885. name: "Maximum Licensed Size",
  8886. height: math.unit(5, "miles")
  8887. },
  8888. {
  8889. name: "Maximum Observed Size",
  8890. height: math.unit(10, "yottameters")
  8891. },
  8892. ]
  8893. )
  8894. };
  8895. characterMakers["Toto"] = () => {
  8896. return makeCharacter(
  8897. "Toto",
  8898. "Totoly_Toto",
  8899. {
  8900. front: {
  8901. height: math.unit(6, "feet"),
  8902. weight: math.unit(250, "lb"),
  8903. name: "Front",
  8904. image: {
  8905. source: "./media/characters/toto/front.svg",
  8906. extra: 527 / 479,
  8907. bottom: 0.05
  8908. }
  8909. },
  8910. },
  8911. [
  8912. {
  8913. name: "Micro",
  8914. height: math.unit(3, "feet")
  8915. },
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(10, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(150, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Megamacro",
  8927. height: math.unit(1200, "feet")
  8928. },
  8929. ]
  8930. )
  8931. };
  8932. characterMakers["King"] = () => {
  8933. return makeCharacter(
  8934. "King",
  8935. "KingSizedLion",
  8936. {
  8937. back: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(150, "lb"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/king/back.svg"
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Micro",
  8949. height: math.unit(2, "inches")
  8950. },
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(8, "feet")
  8954. },
  8955. {
  8956. name: "Macro",
  8957. height: math.unit(200, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(50, "miles")
  8963. },
  8964. ]
  8965. )
  8966. };
  8967. characterMakers["Cordite"] = () => {
  8968. return makeCharacter(
  8969. "Cordite",
  8970. "photonman2",
  8971. {
  8972. anthro: {
  8973. height: math.unit(6 + 5/12, "feet"),
  8974. weight: math.unit(280, "lb"),
  8975. name: "Anthro",
  8976. image: {
  8977. source: "./media/characters/cordite/anthro.svg",
  8978. extra: 1986/1905 ,
  8979. bottom: 0.025
  8980. }
  8981. },
  8982. feral: {
  8983. height: math.unit(2, "feet"),
  8984. weight: math.unit(90, "lb"),
  8985. name: "Feral",
  8986. image: {
  8987. source: "./media/characters/cordite/feral.svg",
  8988. extra: 1260/755 ,
  8989. bottom: 0.05
  8990. }
  8991. },
  8992. },
  8993. [
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(6 + 5/12, "feet"),
  8997. default: true
  8998. },
  8999. ]
  9000. )
  9001. };
  9002. characterMakers["Pianostrong"] = () => {
  9003. return makeCharacter(
  9004. "Pianostrong",
  9005. "Pianostrong",
  9006. {
  9007. front: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(150, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/pianostrong/front.svg",
  9013. extra: 6577/6254 ,
  9014. bottom: 0.02
  9015. }
  9016. },
  9017. side: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(150, "lb"),
  9020. name: "Side",
  9021. image: {
  9022. source: "./media/characters/pianostrong/side.svg",
  9023. extra: 6106/5730
  9024. }
  9025. },
  9026. back: {
  9027. height: math.unit(6, "feet"),
  9028. weight: math.unit(150, "lb"),
  9029. name: "Back",
  9030. image: {
  9031. source: "./media/characters/pianostrong/back.svg",
  9032. extra: 6085/5733 ,
  9033. bottom: 0.01
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Macro",
  9040. height: math.unit(100, "feet")
  9041. },
  9042. {
  9043. name: "Macro+",
  9044. height: math.unit(300, "feet"),
  9045. default: true
  9046. },
  9047. {
  9048. name: "Macro++",
  9049. height: math.unit(1000, "feet")
  9050. },
  9051. ]
  9052. )
  9053. };
  9054. characterMakers["Kona"] = () => {
  9055. return makeCharacter(
  9056. "Kona",
  9057. "Konadh",
  9058. {
  9059. front: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(150, "lb"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/kona/front.svg",
  9065. extra: 2960/2629 ,
  9066. bottom: 0.005
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(11 + 8/12, "feet")
  9074. },
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(850, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "Macro+",
  9082. height: math.unit(1.5, "km"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(80, "miles")
  9088. },
  9089. {
  9090. name: "Gigamacro",
  9091. height: math.unit(3500, "miles")
  9092. },
  9093. ]
  9094. )
  9095. };
  9096. characterMakers["Levi"] = () => {
  9097. return makeCharacter(
  9098. "Levi",
  9099. "LeviCurrie",
  9100. {
  9101. side: {
  9102. height: math.unit(1.9, "meters"),
  9103. weight: math.unit(326, "kg"),
  9104. name: "Side",
  9105. image: {
  9106. source: "./media/characters/levi/side.svg",
  9107. extra: 1704/1334 ,
  9108. bottom: 0.02
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Normal",
  9115. height: math.unit(1.9, "meters"),
  9116. default: true
  9117. },
  9118. {
  9119. name: "Macro",
  9120. height: math.unit(20, "meters")
  9121. },
  9122. {
  9123. name: "Macro+",
  9124. height: math.unit(200, "meters")
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(2, "km")
  9129. },
  9130. {
  9131. name: "Megamacro+",
  9132. height: math.unit(20, "km")
  9133. },
  9134. {
  9135. name: "Gigamacro",
  9136. height: math.unit(2500, "km")
  9137. },
  9138. {
  9139. name: "Gigamacro+",
  9140. height: math.unit(120000, "km")
  9141. },
  9142. {
  9143. name: "Teramacro",
  9144. height: math.unit(7.77e6, "km")
  9145. },
  9146. ]
  9147. )
  9148. };
  9149. characterMakers["BMC"] = () => {
  9150. return makeCharacter(
  9151. "BMC",
  9152. "BigMountainCat",
  9153. {
  9154. front: {
  9155. height: math.unit(6 + 4/12, "feet"),
  9156. weight: math.unit(188, "lb"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/bmc/front.svg",
  9160. extra: 1067/1022 ,
  9161. bottom: 0.047
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Human-sized",
  9168. height: math.unit(6 + 4/12, "feet")
  9169. },
  9170. {
  9171. name: "Small",
  9172. height: math.unit(250, "feet")
  9173. },
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(1250, "feet"),
  9177. default: true
  9178. },
  9179. {
  9180. name: "Good Day",
  9181. height: math.unit(88, "miles")
  9182. },
  9183. {
  9184. name: "Largest Measured Size",
  9185. height: math.unit(11.2e6, "lightyears")
  9186. },
  9187. ]
  9188. )
  9189. };
  9190. characterMakers["Sven the Kaiju"] = () => {
  9191. return makeCharacter(
  9192. "Sven the Kaiju",
  9193. "OfActionMan",
  9194. {
  9195. front: {
  9196. height: math.unit(20, "feet"),
  9197. weight: math.unit(2016, "kg"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/sven-the-kaiju/front.svg",
  9201. extra: 1479/1449 ,
  9202. bottom: 0.05
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Fairy",
  9209. height: math.unit(6, "inches")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(20, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Rampage",
  9218. height: math.unit(200, "feet")
  9219. },
  9220. {
  9221. name: "Archfey Forest Guardian",
  9222. height: math.unit(1, "mile")
  9223. },
  9224. ]
  9225. )
  9226. };
  9227. characterMakers["Marik"] = () => {
  9228. return makeCharacter(
  9229. "Marik",
  9230. "Acrarun",
  9231. {
  9232. front: {
  9233. height: math.unit(4, "meters"),
  9234. weight: math.unit(2, "tons"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/marik/front.svg",
  9238. extra: 1057/1003 ,
  9239. bottom: 0.08
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(4, "meters"),
  9247. default: true
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(20, "meters")
  9252. },
  9253. {
  9254. name: "Megamacro",
  9255. height: math.unit(50, "km")
  9256. },
  9257. {
  9258. name: "Gigamacro",
  9259. height: math.unit(100, "km")
  9260. },
  9261. {
  9262. name: "Alpha Macro",
  9263. height: math.unit(7.88e7, "yottameters")
  9264. },
  9265. ]
  9266. )
  9267. };
  9268. characterMakers["Mel"] = () => {
  9269. return makeCharacter(
  9270. "Mel",
  9271. "SomedayNotSoon",
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(110, "lb"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/mel/front.svg",
  9279. extra: 736/617 ,
  9280. bottom: 0.017
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Pico",
  9287. height: math.unit(3, "pm")
  9288. },
  9289. {
  9290. name: "Nano",
  9291. height: math.unit(3, "nm")
  9292. },
  9293. {
  9294. name: "Micro",
  9295. height: math.unit(0.3, "mm"),
  9296. default: true
  9297. },
  9298. {
  9299. name: "Micro+",
  9300. height: math.unit(3, "mm")
  9301. },
  9302. {
  9303. name: "Normal",
  9304. height: math.unit(5 + 10.5/12, "feet")
  9305. },
  9306. ]
  9307. )
  9308. };
  9309. characterMakers["Lykonous"] = () => {
  9310. return makeCharacter(
  9311. "Lykonous",
  9312. "Lykonous",
  9313. {
  9314. kaiju: {
  9315. height: math.unit(1.75, "meters"),
  9316. weight: math.unit(55, "kg"),
  9317. name: "Kaiju",
  9318. image: {
  9319. source: "./media/characters/lykonous/kaiju.svg",
  9320. extra: 1055/946 ,
  9321. bottom: 0.135
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(2.5, "meters"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Kaiju Dragon",
  9333. height: math.unit(60, "meters")
  9334. },
  9335. {
  9336. name: "Mega Kaiju",
  9337. height: math.unit(120, "km")
  9338. },
  9339. {
  9340. name: "Giga Kaiju",
  9341. height: math.unit(200, "megameters")
  9342. },
  9343. {
  9344. name: "Terra Kaiju",
  9345. height: math.unit(400, "gigameters")
  9346. },
  9347. {
  9348. name: "Kaiju Dragon God",
  9349. height: math.unit(13000, "exaparsecs")
  9350. },
  9351. ]
  9352. )
  9353. };
  9354. characterMakers["Blü"] = () => {
  9355. return makeCharacter(
  9356. "Blü",
  9357. "BluTheFagon",
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(150, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/blü/front.svg",
  9365. extra: 1883/1564 ,
  9366. bottom: 0.031
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(13, "feet"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Big Boi",
  9378. height: math.unit(150, "meters")
  9379. },
  9380. {
  9381. name: "Mini Stomper",
  9382. height: math.unit(300, "meters")
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(1000, "meters")
  9387. },
  9388. {
  9389. name: "Megamacro",
  9390. height: math.unit(11000, "meters")
  9391. },
  9392. {
  9393. name: "Gigamacro",
  9394. height: math.unit(11000, "km")
  9395. },
  9396. {
  9397. name: "Teramacro",
  9398. height: math.unit(420000, "km")
  9399. },
  9400. {
  9401. name: "Examacro",
  9402. height: math.unit(120, "parsecs")
  9403. },
  9404. {
  9405. name: "God Tho",
  9406. height: math.unit(98000000000, "parsecs")
  9407. },
  9408. ]
  9409. )
  9410. };
  9411. characterMakers["Scales"] = () => {
  9412. return makeCharacter(
  9413. "Scales",
  9414. "Scales",
  9415. {
  9416. taurFront: {
  9417. height: math.unit(6, "feet"),
  9418. weight: math.unit(200, "lb"),
  9419. name: "Taur (Front)",
  9420. image: {
  9421. source: "./media/characters/scales/taur-front.svg",
  9422. extra: 1,
  9423. bottom: 0.05
  9424. }
  9425. },
  9426. taurBack: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(200, "lb"),
  9429. name: "Taur (Back)",
  9430. image: {
  9431. source: "./media/characters/scales/taur-back.svg",
  9432. extra: 1,
  9433. bottom: 0.08
  9434. }
  9435. },
  9436. anthro: {
  9437. height: math.unit(6*7/12, "feet"),
  9438. weight: math.unit(100, "lb"),
  9439. name: "Anthro",
  9440. image: {
  9441. source: "./media/characters/scales/anthro.svg",
  9442. extra: 1,
  9443. bottom: 0.06
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(12, "feet"),
  9451. default: true
  9452. },
  9453. ]
  9454. )
  9455. };
  9456. characterMakers["Koragos"] = () => {
  9457. return makeCharacter(
  9458. "Koragos",
  9459. "Koragos",
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(150, "lb"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/koragos/front.svg",
  9467. extra: 841/794 ,
  9468. bottom: 0.035
  9469. }
  9470. },
  9471. back: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(150, "lb"),
  9474. name: "Back",
  9475. image: {
  9476. source: "./media/characters/koragos/back.svg",
  9477. extra: 841/810 ,
  9478. bottom: 0.022
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(6 + 11/12, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Macro",
  9490. height: math.unit(490, "feet")
  9491. },
  9492. {
  9493. name: "Megamacro",
  9494. height: math.unit(10, "miles")
  9495. },
  9496. {
  9497. name: "Gigamacro",
  9498. height: math.unit(50, "miles")
  9499. },
  9500. ]
  9501. )
  9502. };
  9503. characterMakers["Xylrem"] = () => {
  9504. return makeCharacter(
  9505. "Xylrem",
  9506. "",
  9507. {
  9508. front: {
  9509. height: math.unit(6, "feet"),
  9510. weight: math.unit(250, "lb"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/xylrem/front.svg",
  9514. extra: 3323/3050 ,
  9515. bottom: 0.065
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Micro",
  9522. height: math.unit(4, "feet")
  9523. },
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(16, "feet"),
  9527. default: true
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(2720, "feet")
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(25000, "miles")
  9536. },
  9537. ]
  9538. )
  9539. };
  9540. characterMakers["Ikideru"] = () => {
  9541. return makeCharacter(
  9542. "Ikideru",
  9543. "Ikideru",
  9544. {
  9545. front: {
  9546. height: math.unit(8, "feet"),
  9547. weight: math.unit(250, "kg"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/ikideru/front.svg",
  9551. extra: 930/870 ,
  9552. bottom: 0.087
  9553. }
  9554. },
  9555. back: {
  9556. height: math.unit(8, "feet"),
  9557. weight: math.unit(250, "kg"),
  9558. name: "Back",
  9559. image: {
  9560. source: "./media/characters/ikideru/back.svg",
  9561. extra: 919/852 ,
  9562. bottom: 0.055
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Rare",
  9569. height: math.unit(8, "feet"),
  9570. default: true
  9571. },
  9572. {
  9573. name: "Playful Loom",
  9574. height: math.unit(80, "feet")
  9575. },
  9576. {
  9577. name: "City Leaner",
  9578. height: math.unit(230, "feet")
  9579. },
  9580. {
  9581. name: "Megamacro",
  9582. height: math.unit(2500, "feet")
  9583. },
  9584. {
  9585. name: "Gigamacro",
  9586. height: math.unit(26400, "feet")
  9587. },
  9588. {
  9589. name: "Tectonic Shifter",
  9590. height: math.unit(1.7, "megameters")
  9591. },
  9592. {
  9593. name: "Planet Carer",
  9594. height: math.unit(21, "megameters")
  9595. },
  9596. {
  9597. name: "God",
  9598. height: math.unit(11157.22, "parsecs")
  9599. },
  9600. ]
  9601. )
  9602. };
  9603. characterMakers["Neo"] = () => {
  9604. return makeCharacter(
  9605. "Neo",
  9606. "neonsnake",
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(120, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/neo/front.svg"
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Micro",
  9620. height: math.unit(2, "inches"),
  9621. default: true
  9622. },
  9623. {
  9624. name: "Human Size",
  9625. height: math.unit(5 + 8/12, "feet")
  9626. },
  9627. ]
  9628. )
  9629. };
  9630. characterMakers["Chauncey (Chantz)"] = () => {
  9631. return makeCharacter(
  9632. "Chauncey (Chantz)",
  9633. "RyGaLo",
  9634. {
  9635. front: {
  9636. height: math.unit(13 + 10/12, "feet"),
  9637. weight: math.unit(5320, "lb"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/chauncey-chantz/front.svg",
  9641. extra: 1587/1435 ,
  9642. bottom: 0.02
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(13 + 10/12, "feet"),
  9650. default: true
  9651. },
  9652. {
  9653. name: "Macro",
  9654. height: math.unit(45, "feet")
  9655. },
  9656. {
  9657. name: "Megamacro",
  9658. height: math.unit(250, "miles")
  9659. },
  9660. {
  9661. name: "Planetary",
  9662. height: math.unit(10000, "miles")
  9663. },
  9664. {
  9665. name: "Galactic",
  9666. height: math.unit(40000, "parsecs")
  9667. },
  9668. {
  9669. name: "Universal",
  9670. height: math.unit(1, "yottameter")
  9671. },
  9672. ]
  9673. )
  9674. };
  9675. characterMakers["Epifox"] = () => {
  9676. return makeCharacter(
  9677. "Epifox",
  9678. "Epifox",
  9679. {
  9680. front: {
  9681. height: math.unit(6, "feet"),
  9682. weight: math.unit(150, "lb"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/epifox/front.svg",
  9686. extra: 1,
  9687. bottom: 0.075
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Micro",
  9694. height: math.unit(6, "inches")
  9695. },
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(12, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(3810, "feet")
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(500, "miles")
  9708. },
  9709. ]
  9710. )
  9711. };
  9712. characterMakers["Colin T."] = () => {
  9713. return makeCharacter(
  9714. "Colin T.",
  9715. "DragonLugia58",
  9716. {
  9717. front: {
  9718. height: math.unit(1.8796, "m"),
  9719. weight: math.unit(230, "lb"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/colin-t/front.svg",
  9723. extra: 1272/1193 ,
  9724. bottom: 0.07
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Micro",
  9731. height: math.unit(0.571, "meters")
  9732. },
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(1.8796, "meters"),
  9736. default: true
  9737. },
  9738. {
  9739. name: "Tall",
  9740. height: math.unit(4, "meters")
  9741. },
  9742. {
  9743. name: "Macro",
  9744. height: math.unit(67.241, "meters")
  9745. },
  9746. {
  9747. name: "Megamacro",
  9748. height: math.unit(371.856, "meters")
  9749. },
  9750. {
  9751. name: "Planetary",
  9752. height: math.unit(12631.5689, "km")
  9753. },
  9754. ]
  9755. )
  9756. };
  9757. characterMakers["Matvei"] = () => {
  9758. return makeCharacter(
  9759. "Matvei",
  9760. "Matt_Da_Master",
  9761. {
  9762. front: {
  9763. height: math.unit(1.85, "meters"),
  9764. weight: math.unit(80, "kg"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/matvei/front.svg",
  9768. extra: 614/594 ,
  9769. bottom: 0.01
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(1.85, "meters"),
  9777. default: true
  9778. },
  9779. ]
  9780. )
  9781. };
  9782. characterMakers["Quincy"] = () => {
  9783. return makeCharacter(
  9784. "Quincy",
  9785. "Paradisaea",
  9786. {
  9787. front: {
  9788. height: math.unit(5 + 9/12, "feet"),
  9789. weight: math.unit(70, "lb"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/quincy/front.svg",
  9793. extra: 3041/2751
  9794. }
  9795. },
  9796. back: {
  9797. height: math.unit(5 + 9/12, "feet"),
  9798. weight: math.unit(70, "lb"),
  9799. name: "Back",
  9800. image: {
  9801. source: "./media/characters/quincy/back.svg",
  9802. extra: 3041/2751
  9803. }
  9804. },
  9805. flying: {
  9806. height: math.unit(5 + 4/12, "feet"),
  9807. weight: math.unit(70, "lb"),
  9808. name: "Flying",
  9809. image: {
  9810. source: "./media/characters/quincy/flying.svg",
  9811. extra: 1044/930
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(3, "cm")
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(5 + 9/12, "feet")
  9823. },
  9824. {
  9825. name: "Macro",
  9826. height: math.unit(200, "meters"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Megamacro",
  9831. height: math.unit(1000, "meters")
  9832. },
  9833. ]
  9834. )
  9835. };
  9836. characterMakers["Vanrel"] = () => {
  9837. return makeCharacter(
  9838. "Vanrel",
  9839. "KuiPaws",
  9840. {
  9841. front: {
  9842. height: math.unit(4 + 7/12, "feet"),
  9843. weight: math.unit(150, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/vanrel/front.svg",
  9847. extra: 1,
  9848. bottom: 0.02
  9849. }
  9850. },
  9851. side: {
  9852. height: math.unit(4 + 7/12, "feet"),
  9853. weight: math.unit(150, "lb"),
  9854. name: "Side",
  9855. image: {
  9856. source: "./media/characters/vanrel/side.svg",
  9857. extra: 1,
  9858. bottom: 0.025
  9859. }
  9860. },
  9861. tome: {
  9862. height: math.unit(1.35, "feet"),
  9863. weight: math.unit(10, "lb"),
  9864. name: "Vanrel's Tome",
  9865. rename: true,
  9866. image: {
  9867. source: "./media/characters/vanrel/tome.svg"
  9868. }
  9869. },
  9870. beans: {
  9871. height: math.unit(0.89, "feet"),
  9872. name: "Beans",
  9873. image: {
  9874. source: "./media/characters/vanrel/beans.svg"
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Normal",
  9881. height: math.unit(4 + 7/12, "feet"),
  9882. default: true
  9883. },
  9884. ]
  9885. )
  9886. };
  9887. characterMakers["Kuiper Vanrel"] = () => {
  9888. return makeCharacter(
  9889. "Kuiper Vanrel",
  9890. "KuiPaws",
  9891. {
  9892. front: {
  9893. height: math.unit(7 + 5/12, "feet"),
  9894. weight: math.unit(150, "lb"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/kuiper-vanrel/front.svg",
  9898. extra: 1118/1068 ,
  9899. bottom: 0.09
  9900. }
  9901. },
  9902. foot: {
  9903. height: math.unit(0.55, "meters"),
  9904. name: "Foot",
  9905. image: {
  9906. source: "./media/characters/kuiper-vanrel/foot.svg",
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(7 + 5/12, "feet"),
  9914. default: true
  9915. },
  9916. ]
  9917. )
  9918. };
  9919. characterMakers["Keset Vanrel"] = () => {
  9920. return makeCharacter(
  9921. "Keset Vanrel",
  9922. "KuiPaws",
  9923. {
  9924. front: {
  9925. height: math.unit(8 + 5/12, "feet"),
  9926. weight: math.unit(150, "lb"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/keset-vanrel/front.svg",
  9930. extra: 1150/1084 ,
  9931. bottom: 0.05
  9932. }
  9933. },
  9934. hand: {
  9935. height: math.unit(0.6, "meters"),
  9936. name: "Hand",
  9937. image: {
  9938. source: "./media/characters/keset-vanrel/hand.svg"
  9939. }
  9940. },
  9941. foot: {
  9942. height: math.unit(0.94978, "meters"),
  9943. name: "Foot",
  9944. image: {
  9945. source: "./media/characters/keset-vanrel/foot.svg"
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(8 + 5/12, "feet"),
  9953. default: true
  9954. },
  9955. ]
  9956. )
  9957. };
  9958. characterMakers["Neos"] = () => {
  9959. return makeCharacter(
  9960. "Neos",
  9961. "CakeyCake",
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(150, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/neos/front.svg",
  9969. extra: 1696/992 ,
  9970. bottom: 0.14
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Normal",
  9977. height: math.unit(54, "cm"),
  9978. default: true
  9979. },
  9980. {
  9981. name: "Macro",
  9982. height: math.unit(100, "m")
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(10, "km")
  9987. },
  9988. {
  9989. name: "Megamacro+",
  9990. height: math.unit(100, "km")
  9991. },
  9992. {
  9993. name: "Gigamacro",
  9994. height: math.unit(100, "Mm")
  9995. },
  9996. {
  9997. name: "Teramacro",
  9998. height: math.unit(100, "Gm")
  9999. },
  10000. {
  10001. name: "Examacro",
  10002. height: math.unit(100, "Em")
  10003. },
  10004. {
  10005. name: "Godly",
  10006. height: math.unit(10000, "Ym")
  10007. },
  10008. {
  10009. name: "Beyond Godly",
  10010. height: math.unit(10000000, "Ym")
  10011. },
  10012. ]
  10013. )
  10014. };
  10015. characterMakers["Sammy Mouse"] = () => {
  10016. return makeCharacter(
  10017. "Sammy Mouse",
  10018. "Piedunk",
  10019. {
  10020. feminine: {
  10021. height: math.unit(5, "feet"),
  10022. weight: math.unit(100, "lb"),
  10023. name: "Feminine",
  10024. image: {
  10025. source: "./media/characters/sammy-mouse/feminine.svg",
  10026. extra: 2526/2425 ,
  10027. bottom: 0.123
  10028. }
  10029. },
  10030. masculine: {
  10031. height: math.unit(5, "feet"),
  10032. weight: math.unit(100, "lb"),
  10033. name: "Masculine",
  10034. image: {
  10035. source: "./media/characters/sammy-mouse/masculine.svg",
  10036. extra: 2526/2425 ,
  10037. bottom: 0.123
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(5, "inches")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(5, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(60, "feet")
  10054. },
  10055. ]
  10056. )
  10057. };
  10058. characterMakers["Kole"] = () => {
  10059. return makeCharacter(
  10060. "Kole",
  10061. "Cats_55",
  10062. {
  10063. front: {
  10064. height: math.unit(4, "feet"),
  10065. weight: math.unit(50, "lb"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/kole/front.svg",
  10069. extra: 1423/1303 ,
  10070. bottom: 0.025
  10071. }
  10072. },
  10073. back: {
  10074. height: math.unit(4, "feet"),
  10075. weight: math.unit(50, "lb"),
  10076. name: "Back",
  10077. image: {
  10078. source: "./media/characters/kole/back.svg",
  10079. extra: 1426/1280 ,
  10080. bottom: 0.02
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(4, "feet"),
  10088. default: true
  10089. },
  10090. ]
  10091. )
  10092. };
  10093. characterMakers["Rufran"] = () => {
  10094. return makeCharacter(
  10095. "Rufran",
  10096. "Rufran",
  10097. {
  10098. front: {
  10099. height: math.unit(2 + 6/12, "feet"),
  10100. weight: math.unit(20, "lb"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/rufran/front.svg",
  10104. extra: 2041/1839 ,
  10105. bottom: 0.055
  10106. }
  10107. },
  10108. back: {
  10109. height: math.unit(2 + 6/12, "feet"),
  10110. weight: math.unit(20, "lb"),
  10111. name: "Back",
  10112. image: {
  10113. source: "./media/characters/rufran/back.svg",
  10114. extra: 2054/1839 ,
  10115. bottom: 0.01
  10116. }
  10117. },
  10118. hand: {
  10119. height: math.unit(0.2166, "meters"),
  10120. name: "Hand",
  10121. image: {
  10122. source: "./media/characters/rufran/hand.svg"
  10123. }
  10124. },
  10125. foot: {
  10126. height: math.unit(0.185, "meters"),
  10127. name: "Foot",
  10128. image: {
  10129. source: "./media/characters/rufran/foot.svg"
  10130. }
  10131. },
  10132. },
  10133. [
  10134. {
  10135. name: "Micro",
  10136. height: math.unit(1, "inch")
  10137. },
  10138. {
  10139. name: "Normal",
  10140. height: math.unit(2 + 6/12, "feet"),
  10141. default: true
  10142. },
  10143. {
  10144. name: "Big",
  10145. height: math.unit(60, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(325, "feet")
  10150. },
  10151. ]
  10152. )
  10153. };
  10154. characterMakers["Chip"] = () => {
  10155. return makeCharacter(
  10156. "Chip",
  10157. "Chiptuni",
  10158. {
  10159. front: {
  10160. height: math.unit(0.3, "meters"),
  10161. weight: math.unit(3.5, "kg"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/chip/front.svg",
  10165. extra: 748/674
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Micro",
  10172. height: math.unit(1, "inch"),
  10173. default: true
  10174. },
  10175. ]
  10176. )
  10177. };
  10178. characterMakers["Torvid"] = () => {
  10179. return makeCharacter(
  10180. "Torvid",
  10181. "Torvid",
  10182. {
  10183. side: {
  10184. height: math.unit(2.3, "meters"),
  10185. weight: math.unit(3500, "lb"),
  10186. name: "Side",
  10187. image: {
  10188. source: "./media/characters/torvid/side.svg",
  10189. extra: 1972/722 ,
  10190. bottom: 0.035
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(2.3, "meters"),
  10198. default: true
  10199. },
  10200. ]
  10201. )
  10202. };
  10203. characterMakers["Susan"] = () => {
  10204. return makeCharacter(
  10205. "Susan",
  10206. "Jasmith",
  10207. {
  10208. front: {
  10209. height: math.unit(2, "meters"),
  10210. weight: math.unit(150.5, "kg"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/susan/front.svg",
  10214. extra: 693/635 ,
  10215. bottom: 0.05
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Megamacro",
  10222. height: math.unit(505, "miles"),
  10223. default: true
  10224. },
  10225. ]
  10226. )
  10227. };
  10228. characterMakers["Raindrops"] = () => {
  10229. return makeCharacter(
  10230. "Raindrops",
  10231. "RaindropsJFL",
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/raindrops/front.svg",
  10239. extra: 2655/2461 ,
  10240. bottom: 0.02
  10241. }
  10242. },
  10243. back: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(150, "lb"),
  10246. name: "Back",
  10247. image: {
  10248. source: "./media/characters/raindrops/back.svg",
  10249. extra: 2574/2400 ,
  10250. bottom: 0.03
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Micro",
  10257. height: math.unit(6, "inches")
  10258. },
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(6 + 2/12, "feet")
  10262. },
  10263. {
  10264. name: "Macro",
  10265. height: math.unit(131, "feet"),
  10266. default: true
  10267. },
  10268. {
  10269. name: "Megamacro",
  10270. height: math.unit(15, "miles")
  10271. },
  10272. {
  10273. name: "Gigamacro",
  10274. height: math.unit(4000, "miles")
  10275. },
  10276. {
  10277. name: "Teramacro",
  10278. height: math.unit(315000, "miles")
  10279. },
  10280. ]
  10281. )
  10282. };
  10283. characterMakers["Tezwa"] = () => {
  10284. return makeCharacter(
  10285. "Tezwa",
  10286. "TitanTezwa",
  10287. {
  10288. front: {
  10289. height: math.unit(2.794, "meters"),
  10290. weight: math.unit(325, "kg"),
  10291. name: "Front",
  10292. image: {
  10293. source: "./media/characters/tezwa/front.svg",
  10294. extra: 2083/1906 ,
  10295. bottom: 0.031
  10296. }
  10297. },
  10298. foot: {
  10299. height: math.unit(0.687, "meters"),
  10300. name: "Foot",
  10301. image: {
  10302. source: "./media/characters/tezwa/foot.svg"
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(9 + 2/12, "feet"),
  10310. default: true
  10311. },
  10312. ]
  10313. )
  10314. };
  10315. characterMakers["Typhus"] = () => {
  10316. return makeCharacter(
  10317. "Typhus",
  10318. "Jasmith",
  10319. {
  10320. front: {
  10321. height: math.unit(58, "feet"),
  10322. weight: math.unit(89000, "lb"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/typhus/front.svg",
  10326. extra: 816/800 ,
  10327. bottom: 0.065
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(58, "feet"),
  10335. default: true
  10336. },
  10337. ]
  10338. )
  10339. };
  10340. characterMakers["Lyra Von Wulf"] = () => {
  10341. return makeCharacter(
  10342. "Lyra Von Wulf",
  10343. "LyraVonWulf",
  10344. {
  10345. front: {
  10346. height: math.unit(12, "feet"),
  10347. weight: math.unit(6, "tonnes"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/lyra-von-wulf/front.svg",
  10351. extra: 1,
  10352. bottom: 0.10
  10353. }
  10354. },
  10355. frontMecha: {
  10356. height: math.unit(12, "feet"),
  10357. weight: math.unit(12, "tonnes"),
  10358. name: "Front (Mecha)",
  10359. image: {
  10360. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10361. extra: 1,
  10362. bottom: 0.042
  10363. }
  10364. },
  10365. maw: {
  10366. height: math.unit(2.2, "feet"),
  10367. name: "Maw",
  10368. image: {
  10369. source: "./media/characters/lyra-von-wulf/maw.svg"
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(12, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Classic",
  10381. height: math.unit(50, "feet")
  10382. },
  10383. {
  10384. name: "Macro",
  10385. height: math.unit(500, "feet")
  10386. },
  10387. {
  10388. name: "Megamacro",
  10389. height: math.unit(1, "mile")
  10390. },
  10391. {
  10392. name: "Gigamacro",
  10393. height: math.unit(400, "miles")
  10394. },
  10395. {
  10396. name: "Teramacro",
  10397. height: math.unit(22000, "miles")
  10398. },
  10399. {
  10400. name: "Solarmacro",
  10401. height: math.unit(8600000, "miles")
  10402. },
  10403. {
  10404. name: "Galactic",
  10405. height: math.unit(1057000, "lightyears")
  10406. },
  10407. ]
  10408. )
  10409. };
  10410. characterMakers["Dixon"] = () => {
  10411. return makeCharacter(
  10412. "Dixon",
  10413. "Seabury",
  10414. {
  10415. front: {
  10416. height: math.unit(6 + 10/12, "feet"),
  10417. weight: math.unit(150, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/dixon/front.svg",
  10421. extra: 3361/3209 ,
  10422. bottom: 0.01
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(6 + 10/12, "feet"),
  10430. default: true
  10431. },
  10432. {
  10433. name: "Big",
  10434. height: math.unit(12, "meters")
  10435. },
  10436. {
  10437. name: "Macro",
  10438. height: math.unit(500, "meters")
  10439. },
  10440. {
  10441. name: "Megamacro",
  10442. height: math.unit(2, "km")
  10443. },
  10444. ]
  10445. )
  10446. };
  10447. characterMakers["Kauko"] = () => {
  10448. return makeCharacter(
  10449. "Kauko",
  10450. "Kauko",
  10451. {
  10452. front: {
  10453. height: math.unit(185, "cm"),
  10454. weight: math.unit(68, "kg"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/kauko/front.svg",
  10458. extra: 1455/1421 ,
  10459. bottom: 0.03
  10460. }
  10461. },
  10462. back: {
  10463. height: math.unit(185, "cm"),
  10464. weight: math.unit(68, "kg"),
  10465. name: "Back",
  10466. image: {
  10467. source: "./media/characters/kauko/back.svg",
  10468. extra: 1455/1421 ,
  10469. bottom: 0.004
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(185, "cm"),
  10477. default: true
  10478. },
  10479. ]
  10480. )
  10481. };
  10482. characterMakers["Varg"] = () => {
  10483. return makeCharacter(
  10484. "Varg",
  10485. "va0027",
  10486. {
  10487. front: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(150, "kg"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/varg/front.svg",
  10493. extra: 1108/1018 ,
  10494. bottom: 0.0375
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(5, "meters")
  10502. },
  10503. {
  10504. name: "Gigamacro",
  10505. height: math.unit(211, "km"),
  10506. default: true
  10507. },
  10508. ]
  10509. )
  10510. };
  10511. characterMakers["Dayza"] = () => {
  10512. return makeCharacter(
  10513. "Dayza",
  10514. "Vonadi",
  10515. {
  10516. front: {
  10517. height: math.unit(7 + 7/12, "feet"),
  10518. weight: math.unit(267, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/dayza/front.svg",
  10522. extra: 1262/1200 ,
  10523. bottom: 0.035
  10524. }
  10525. },
  10526. side: {
  10527. height: math.unit(7 + 7/12, "feet"),
  10528. weight: math.unit(267, "lb"),
  10529. name: "Side",
  10530. image: {
  10531. source: "./media/characters/dayza/side.svg",
  10532. extra: 1295/1245 ,
  10533. bottom: 0.05
  10534. }
  10535. },
  10536. back: {
  10537. height: math.unit(7 + 7/12, "feet"),
  10538. weight: math.unit(267, "lb"),
  10539. name: "Back",
  10540. image: {
  10541. source: "./media/characters/dayza/back.svg",
  10542. extra: 1241/1170
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(7 + 7/12, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Macro",
  10554. height: math.unit(155, "feet")
  10555. },
  10556. ]
  10557. )
  10558. };
  10559. characterMakers["Xanthos"] = () => {
  10560. return makeCharacter(
  10561. "Xanthos",
  10562. "ArgentVZ",
  10563. {
  10564. front: {
  10565. height: math.unit(6 + 5/12, "feet"),
  10566. weight: math.unit(160, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/xanthos/front.svg",
  10570. extra: 1,
  10571. bottom: 0.04
  10572. }
  10573. },
  10574. back: {
  10575. height: math.unit(6 + 5/12, "feet"),
  10576. weight: math.unit(160, "lb"),
  10577. name: "Back",
  10578. image: {
  10579. source: "./media/characters/xanthos/back.svg",
  10580. extra: 1,
  10581. bottom: 0.03
  10582. }
  10583. },
  10584. hand: {
  10585. height: math.unit(0.928, "feet"),
  10586. name: "Hand",
  10587. image: {
  10588. source: "./media/characters/xanthos/hand.svg"
  10589. }
  10590. },
  10591. foot: {
  10592. height: math.unit(1.286, "feet"),
  10593. name: "Foot",
  10594. image: {
  10595. source: "./media/characters/xanthos/foot.svg"
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Normal",
  10602. height: math.unit(6 + 5/12, "feet"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Normal+",
  10607. height: math.unit(6, "meters")
  10608. },
  10609. {
  10610. name: "Macro",
  10611. height: math.unit(40, "feet")
  10612. },
  10613. {
  10614. name: "Macro+",
  10615. height: math.unit(200, "meters")
  10616. },
  10617. {
  10618. name: "Megamacro",
  10619. height: math.unit(20, "km")
  10620. },
  10621. {
  10622. name: "Megamacro+",
  10623. height: math.unit(100, "km")
  10624. },
  10625. ]
  10626. )
  10627. };
  10628. characterMakers["Grynn"] = () => {
  10629. return makeCharacter(
  10630. "Grynn",
  10631. "Grynn",
  10632. {
  10633. front: {
  10634. height: math.unit(6 + 3/12, "feet"),
  10635. weight: math.unit(215, "lb"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/grynn/front.svg",
  10639. extra: 4627/4209 ,
  10640. bottom: 0.047
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Micro",
  10647. height: math.unit(6, "inches")
  10648. },
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(6 + 3/12, "feet"),
  10652. default: true
  10653. },
  10654. {
  10655. name: "Big",
  10656. height: math.unit(104, "feet")
  10657. },
  10658. {
  10659. name: "Macro",
  10660. height: math.unit(944, "feet")
  10661. },
  10662. {
  10663. name: "Macro+",
  10664. height: math.unit(9480, "feet")
  10665. },
  10666. {
  10667. name: "Megamacro",
  10668. height: math.unit(78752, "feet")
  10669. },
  10670. {
  10671. name: "Megamacro+",
  10672. height: math.unit(630128, "feet")
  10673. },
  10674. {
  10675. name: "Megamacro++",
  10676. height: math.unit(3150695, "feet")
  10677. },
  10678. ]
  10679. )
  10680. };
  10681. characterMakers["Mocha Aura"] = () => {
  10682. return makeCharacter(
  10683. "Mocha Aura",
  10684. "Mocha-Aura",
  10685. {
  10686. front: {
  10687. height: math.unit(7 + 5/12, "feet"),
  10688. weight: math.unit(450, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/mocha-aura/front.svg",
  10692. extra: 1907/1817 ,
  10693. bottom: 0.04
  10694. }
  10695. },
  10696. back: {
  10697. height: math.unit(7 + 5/12, "feet"),
  10698. weight: math.unit(450, "lb"),
  10699. name: "Back",
  10700. image: {
  10701. source: "./media/characters/mocha-aura/back.svg",
  10702. extra: 1900/1825 ,
  10703. bottom: 0.045
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Nano",
  10710. height: math.unit(1, "nm")
  10711. },
  10712. {
  10713. name: "Megamicro",
  10714. height: math.unit(1, "mm")
  10715. },
  10716. {
  10717. name: "Micro",
  10718. height: math.unit(3, "inches")
  10719. },
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(7 + 5/12, "feet"),
  10723. default: true
  10724. },
  10725. {
  10726. name: "Macro",
  10727. height: math.unit(30, "feet")
  10728. },
  10729. {
  10730. name: "Megamacro",
  10731. height: math.unit(3500, "feet")
  10732. },
  10733. {
  10734. name: "Teramacro",
  10735. height: math.unit(500000, "miles")
  10736. },
  10737. {
  10738. name: "Petamacro",
  10739. height: math.unit(50000000000000000 , "parsecs")
  10740. },
  10741. ]
  10742. )
  10743. };
  10744. characterMakers["Ilisha Devya"] = () => {
  10745. return makeCharacter(
  10746. "Ilisha Devya",
  10747. "Neopuc",
  10748. {
  10749. front: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(150, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/ilisha-devya/front.svg",
  10755. extra: 1,
  10756. bottom: 0.175
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(150, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/ilisha-devya/back.svg",
  10765. extra: 1,
  10766. bottom: 0.015
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Macro",
  10773. height: math.unit(500, "feet"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Megamacro",
  10778. height: math.unit(10, "miles")
  10779. },
  10780. {
  10781. name: "Gigamacro",
  10782. height: math.unit(100000, "miles")
  10783. },
  10784. {
  10785. name: "Examacro",
  10786. height: math.unit(1e9, "lightyears")
  10787. },
  10788. {
  10789. name: "Omniversal",
  10790. height: math.unit(1e33, "lightyears")
  10791. },
  10792. {
  10793. name: "Beyond Infinite",
  10794. height: math.unit(1e100, "lightyears")
  10795. },
  10796. ]
  10797. )
  10798. };
  10799. characterMakers["Mira"] = () => {
  10800. return makeCharacter(
  10801. "Mira",
  10802. "Neopuc",
  10803. {
  10804. Side: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Side",
  10808. image: {
  10809. source: "./media/characters/mira/side.svg",
  10810. extra: 900/799 ,
  10811. bottom: 0.02
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Human Size",
  10818. height: math.unit(6, "feet")
  10819. },
  10820. {
  10821. name: "Macro",
  10822. height: math.unit(100, "feet"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Megamacro",
  10827. height: math.unit(10, "miles")
  10828. },
  10829. {
  10830. name: "Gigamacro",
  10831. height: math.unit(25000, "miles")
  10832. },
  10833. {
  10834. name: "Teramacro",
  10835. height: math.unit(300, "AU")
  10836. },
  10837. {
  10838. name: "Full Size",
  10839. height: math.unit(4.5e10, "lightyears")
  10840. },
  10841. ]
  10842. )
  10843. };
  10844. characterMakers["Holly"] = () => {
  10845. return makeCharacter(
  10846. "Holly",
  10847. "Neopuc",
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/holly/front.svg",
  10855. extra: 639/606
  10856. }
  10857. },
  10858. back: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(150, "lb"),
  10861. name: "Back",
  10862. image: {
  10863. source: "./media/characters/holly/back.svg",
  10864. extra: 623/598
  10865. }
  10866. },
  10867. frontWorking: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(150, "lb"),
  10870. name: "Front (Working)",
  10871. image: {
  10872. source: "./media/characters/holly/front-working.svg",
  10873. extra: 607/577 ,
  10874. bottom: 0.048
  10875. }
  10876. },
  10877. },
  10878. [
  10879. {
  10880. name: "Normal",
  10881. height: math.unit(12 + 3/12, "feet"),
  10882. default: true
  10883. },
  10884. ]
  10885. )
  10886. };
  10887. characterMakers["Porter"] = () => {
  10888. return makeCharacter(
  10889. "Porter",
  10890. "Neopuc",
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(150, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/porter/front.svg",
  10898. extra: 1,
  10899. bottom: 0.01
  10900. }
  10901. },
  10902. frontRobes: {
  10903. height: math.unit(6, "feet"),
  10904. weight: math.unit(150, "lb"),
  10905. name: "Front (Robes)",
  10906. image: {
  10907. source: "./media/characters/porter/front-robes.svg",
  10908. extra: 1.01 ,
  10909. bottom: 0.01
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(11 + 9/12, "feet"),
  10917. default: true
  10918. },
  10919. ]
  10920. )
  10921. };
  10922. characterMakers["Lucy"] = () => {
  10923. return makeCharacter(
  10924. "Lucy",
  10925. "Jasmith",
  10926. {
  10927. legendary: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(150, "lb"),
  10930. name: "Legendary",
  10931. image: {
  10932. source: "./media/characters/lucy/legendary.svg",
  10933. extra: 1355/1100 ,
  10934. bottom: 0.045
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Legendary",
  10941. height: math.unit(86882*2, "miles"),
  10942. default: true
  10943. },
  10944. ]
  10945. )
  10946. };
  10947. characterMakers["Drusilla"] = () => {
  10948. return makeCharacter(
  10949. "Drusilla",
  10950. "Neopuc",
  10951. {
  10952. front: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/drusilla/front.svg",
  10958. extra: 678/635 ,
  10959. bottom: 0.03
  10960. }
  10961. },
  10962. back: {
  10963. height: math.unit(6, "feet"),
  10964. weight: math.unit(150, "lb"),
  10965. name: "Back",
  10966. image: {
  10967. source: "./media/characters/drusilla/back.svg",
  10968. extra: 678/635 ,
  10969. bottom: 0.005
  10970. }
  10971. },
  10972. },
  10973. [
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(100, "feet")
  10977. },
  10978. {
  10979. name: "Canon Height",
  10980. height: math.unit(2000, "feet"),
  10981. default: true
  10982. },
  10983. ]
  10984. )
  10985. };
  10986. characterMakers["Renard Thatch"] = () => {
  10987. return makeCharacter(
  10988. "Renard Thatch",
  10989. "Renard Thatch",
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(180, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/renard-thatch/front.svg",
  10997. extra: 2411/2275 ,
  10998. bottom: 0.01
  10999. }
  11000. },
  11001. frontPosing: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(180, "lb"),
  11004. name: "Front (Posing)",
  11005. image: {
  11006. source: "./media/characters/renard-thatch/front-posing.svg",
  11007. extra: 2381/2261 ,
  11008. bottom: 0.01
  11009. }
  11010. },
  11011. back: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(180, "lb"),
  11014. name: "Back",
  11015. image: {
  11016. source: "./media/characters/renard-thatch/back.svg",
  11017. extra: 2428/2288
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Micro",
  11024. height: math.unit(3, "inches")
  11025. },
  11026. {
  11027. name: "Default",
  11028. height: math.unit(6, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(75, "feet")
  11034. },
  11035. ]
  11036. )
  11037. };
  11038. characterMakers["Sekvra"] = () => {
  11039. return makeCharacter(
  11040. "Sekvra",
  11041. "Neopuc",
  11042. {
  11043. front: {
  11044. height: math.unit(1450, "feet"),
  11045. weight: math.unit(1.21e6, "tons"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/sekvra/front.svg",
  11049. extra: 1,
  11050. bottom: 0.03
  11051. }
  11052. },
  11053. frontClothed: {
  11054. height: math.unit(1450, "feet"),
  11055. weight: math.unit(1.21e6, "tons"),
  11056. name: "Front (Clothed)",
  11057. image: {
  11058. source: "./media/characters/sekvra/front-clothed.svg",
  11059. extra: 1,
  11060. bottom: 0.03
  11061. }
  11062. },
  11063. side: {
  11064. height: math.unit(1450, "feet"),
  11065. weight: math.unit(1.21e6, "tons"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/sekvra/side.svg",
  11069. extra: 1,
  11070. bottom: 0.025
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(1450, "feet"),
  11075. weight: math.unit(1.21e6, "tons"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/sekvra/back.svg",
  11079. extra: 1,
  11080. bottom: 0.005
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(1450, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(15000, "feet")
  11093. },
  11094. ]
  11095. )
  11096. };
  11097. characterMakers["Carmine"] = () => {
  11098. return makeCharacter(
  11099. "Carmine",
  11100. "Neopuc",
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/carmine/front.svg",
  11108. extra: 1,
  11109. bottom: 0.035
  11110. }
  11111. },
  11112. frontArmor: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(150, "lb"),
  11115. name: "Front (Armor)",
  11116. image: {
  11117. source: "./media/characters/carmine/front-armor.svg",
  11118. extra: 1,
  11119. bottom: 0.035
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Large",
  11126. height: math.unit(1, "mile")
  11127. },
  11128. {
  11129. name: "Huge",
  11130. height: math.unit(40, "miles"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Colossal",
  11135. height: math.unit(2500, "miles")
  11136. },
  11137. ]
  11138. )
  11139. };
  11140. characterMakers["Elyssia"] = () => {
  11141. return makeCharacter(
  11142. "Elyssia",
  11143. "Neopuc",
  11144. {
  11145. front: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(150, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/elyssia/front.svg",
  11151. extra: 2201/2035 ,
  11152. bottom: 0.05
  11153. }
  11154. },
  11155. frontClothed: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front (Clothed)",
  11159. image: {
  11160. source: "./media/characters/elyssia/front-clothed.svg",
  11161. extra: 2201/2035 ,
  11162. bottom: 0.05
  11163. }
  11164. },
  11165. back: {
  11166. height: math.unit(6, "feet"),
  11167. weight: math.unit(150, "lb"),
  11168. name: "Back",
  11169. image: {
  11170. source: "./media/characters/elyssia/back.svg",
  11171. extra: 2201/2035 ,
  11172. bottom: 0.013
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Smaller",
  11179. height: math.unit(150, "feet")
  11180. },
  11181. {
  11182. name: "Standard",
  11183. height: math.unit(1400, "feet"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Distracted",
  11188. height: math.unit(15000, "feet")
  11189. },
  11190. ]
  11191. )
  11192. };
  11193. characterMakers["Geno Maxwell"] = () => {
  11194. return makeCharacter(
  11195. "Geno Maxwell",
  11196. "Geckonori",
  11197. {
  11198. front: {
  11199. height: math.unit(7 + 4/12, "feet"),
  11200. weight: math.unit(500, "lb"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/geno-maxwell/front.svg",
  11204. extra: 2207/2040 ,
  11205. bottom: 0.015
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Micro",
  11212. height: math.unit(3, "inches")
  11213. },
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(7 + 4/12, "feet"),
  11217. default: true
  11218. },
  11219. {
  11220. name: "Macro",
  11221. height: math.unit(220, "feet")
  11222. },
  11223. {
  11224. name: "Megamacro",
  11225. height: math.unit(11, "miles")
  11226. },
  11227. ]
  11228. )
  11229. };
  11230. characterMakers["Regena Maxwell"] = () => {
  11231. return makeCharacter(
  11232. "Regena Maxwell",
  11233. "Geckonori",
  11234. {
  11235. front: {
  11236. height: math.unit(7 + 4/12, "feet"),
  11237. weight: math.unit(500, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/regena-maxwell/front.svg",
  11241. extra: 3115/2770 ,
  11242. bottom: 0.02
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(7 + 4/12, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Macro",
  11254. height: math.unit(220, "feet")
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(11, "miles")
  11259. },
  11260. ]
  11261. )
  11262. };
  11263. characterMakers["XGlidingDragonX"] = () => {
  11264. return makeCharacter(
  11265. "XGlidingDragonX",
  11266. "XGlidingDragonX",
  11267. {
  11268. front: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(150, "lb"),
  11271. name: "Front",
  11272. image: {
  11273. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11274. extra: 860/690 ,
  11275. bottom: 0.03
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(1.7, "meters"),
  11283. default: true
  11284. },
  11285. ]
  11286. )
  11287. };
  11288. characterMakers["Quilly"] = () => {
  11289. return makeCharacter(
  11290. "Quilly",
  11291. "Jasmith",
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/quilly/front.svg",
  11299. extra: 890/776
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Gigamacro",
  11306. height: math.unit(404090, "miles"),
  11307. default: true
  11308. },
  11309. ]
  11310. )
  11311. };
  11312. characterMakers["Tempest"] = () => {
  11313. return makeCharacter(
  11314. "Tempest",
  11315. "XsomeoneX",
  11316. {
  11317. front: {
  11318. height: math.unit(7 + 8/12, "feet"),
  11319. weight: math.unit(350, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/tempest/front.svg",
  11323. extra: 1175/1086 ,
  11324. bottom: 0.02
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(7 + 8/12, "feet"),
  11332. default: true
  11333. },
  11334. ]
  11335. )
  11336. };
  11337. characterMakers["Rodger"] = () => {
  11338. return makeCharacter(
  11339. "Rodger",
  11340. "Guywithastupidname",
  11341. {
  11342. side: {
  11343. height: math.unit(4 + 5/12, "feet"),
  11344. weight: math.unit(80, "lb"),
  11345. name: "Side",
  11346. image: {
  11347. source: "./media/characters/rodger/side.svg",
  11348. extra: 1235/1118
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Micro",
  11355. height: math.unit(1, "inch")
  11356. },
  11357. {
  11358. name: "Normal",
  11359. height: math.unit(4 + 5/12, "feet"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(120, "feet")
  11365. },
  11366. ]
  11367. )
  11368. };
  11369. characterMakers["Danyel"] = () => {
  11370. return makeCharacter(
  11371. "Danyel",
  11372. "Danyelx",
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/danyel/front.svg",
  11380. extra: 1185/1123 ,
  11381. bottom: 0.05
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Shrunken",
  11388. height: math.unit(0.5, "mm")
  11389. },
  11390. {
  11391. name: "Micro",
  11392. height: math.unit(1, "mm"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Upsized",
  11397. height: math.unit(5 + 5/12, "feet")
  11398. },
  11399. ]
  11400. )
  11401. };
  11402. characterMakers["Vivian Bijoux"] = () => {
  11403. return makeCharacter(
  11404. "Vivian Bijoux",
  11405. "Geckonori",
  11406. {
  11407. front: {
  11408. height: math.unit(5 + 6/12, "feet"),
  11409. weight: math.unit(200, "lb"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/vivian-bijoux/front.svg",
  11413. extra: 1,
  11414. bottom: 0.072
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Normal",
  11421. height: math.unit(5 + 6/12, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Bad Dream",
  11426. height: math.unit(500, "feet")
  11427. },
  11428. {
  11429. name: "Nightmare",
  11430. height: math.unit(500, "miles")
  11431. },
  11432. ]
  11433. )
  11434. };
  11435. characterMakers["Zeta"] = () => {
  11436. return makeCharacter(
  11437. "Zeta",
  11438. "thenerdherd102",
  11439. {
  11440. front: {
  11441. height: math.unit(6 + 1/12, "feet"),
  11442. weight: math.unit(260, "lb"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/zeta/front.svg",
  11446. extra: 1968/1889 ,
  11447. bottom: 0.06
  11448. }
  11449. },
  11450. back: {
  11451. height: math.unit(6 + 1/12, "feet"),
  11452. weight: math.unit(260, "lb"),
  11453. name: "Back",
  11454. image: {
  11455. source: "./media/characters/zeta/back.svg",
  11456. extra: 1944/1858 ,
  11457. bottom: 0.03
  11458. }
  11459. },
  11460. hand: {
  11461. height: math.unit(1.112, "feet"),
  11462. name: "Hand",
  11463. image: {
  11464. source: "./media/characters/zeta/hand.svg"
  11465. }
  11466. },
  11467. foot: {
  11468. height: math.unit(1.48, "feet"),
  11469. name: "Foot",
  11470. image: {
  11471. source: "./media/characters/zeta/foot.svg"
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Micro",
  11478. height: math.unit(6, "inches")
  11479. },
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(6 + 1/12, "feet"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Macro",
  11487. height: math.unit(20, "feet")
  11488. },
  11489. ]
  11490. )
  11491. };
  11492. characterMakers["Jamie Larsen"] = () => {
  11493. return makeCharacter(
  11494. "Jamie Larsen",
  11495. "Mt_Jamie_Larsen",
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(150, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/jamie-larsen/front.svg",
  11503. extra: 962/933 ,
  11504. bottom: 0.02
  11505. }
  11506. },
  11507. back: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(150, "lb"),
  11510. name: "Back",
  11511. image: {
  11512. source: "./media/characters/jamie-larsen/back.svg",
  11513. extra: 997/946
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(28 + 7/12, "feet"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Macro+",
  11525. height: math.unit(180, "feet")
  11526. },
  11527. {
  11528. name: "Megamacro",
  11529. height: math.unit(10, "miles")
  11530. },
  11531. {
  11532. name: "Gigamacro",
  11533. height: math.unit(200000, "miles")
  11534. },
  11535. ]
  11536. )
  11537. };
  11538. characterMakers["Vance"] = () => {
  11539. return makeCharacter(
  11540. "Vance",
  11541. "Neopuc",
  11542. {
  11543. front: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(120, "lb"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/vance/front.svg",
  11549. extra: 1980/1890 ,
  11550. bottom: 0.09
  11551. }
  11552. },
  11553. back: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(120, "lb"),
  11556. name: "Back",
  11557. image: {
  11558. source: "./media/characters/vance/back.svg",
  11559. extra: 2081/1994 ,
  11560. bottom: 0.014
  11561. }
  11562. },
  11563. hand: {
  11564. height: math.unit(0.88, "feet"),
  11565. name: "Hand",
  11566. image: {
  11567. source: "./media/characters/vance/hand.svg"
  11568. }
  11569. },
  11570. foot: {
  11571. height: math.unit(0.64, "feet"),
  11572. name: "Foot",
  11573. image: {
  11574. source: "./media/characters/vance/foot.svg"
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Small",
  11581. height: math.unit(90, "feet"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(100, "meters")
  11587. },
  11588. {
  11589. name: "Megamacro",
  11590. height: math.unit(15, "miles")
  11591. },
  11592. ]
  11593. )
  11594. };
  11595. characterMakers["Xochitl"] = () => {
  11596. return makeCharacter(
  11597. "Xochitl",
  11598. "Neopuc",
  11599. {
  11600. front: {
  11601. height: math.unit(6, "feet"),
  11602. weight: math.unit(180, "lb"),
  11603. name: "Front",
  11604. image: {
  11605. source: "./media/characters/xochitl/front.svg",
  11606. extra: 2297/2261 ,
  11607. bottom: 0.065
  11608. }
  11609. },
  11610. back: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(180, "lb"),
  11613. name: "Back",
  11614. image: {
  11615. source: "./media/characters/xochitl/back.svg",
  11616. extra: 2386/2354 ,
  11617. bottom: 0.01
  11618. }
  11619. },
  11620. foot: {
  11621. height: math.unit(6/5 * 1.15, "feet"),
  11622. weight: math.unit(150, "lb"),
  11623. name: "Foot",
  11624. image: {
  11625. source: "./media/characters/xochitl/foot.svg"
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Macro",
  11632. height: math.unit(80, "feet")
  11633. },
  11634. {
  11635. name: "Macro+",
  11636. height: math.unit(400, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Gigamacro",
  11641. height: math.unit(80000, "miles")
  11642. },
  11643. {
  11644. name: "Gigamacro+",
  11645. height: math.unit(400000, "miles")
  11646. },
  11647. {
  11648. name: "Teramacro",
  11649. height: math.unit(300, "AU")
  11650. },
  11651. ]
  11652. )
  11653. };
  11654. characterMakers["Vincent"] = () => {
  11655. return makeCharacter(
  11656. "Vincent",
  11657. "Neopuc",
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/vincent/front.svg",
  11665. extra: 1130/1080 ,
  11666. bottom: 0.055
  11667. }
  11668. },
  11669. beak: {
  11670. height: math.unit(6 * 0.1, "feet"),
  11671. name: "Beak",
  11672. image: {
  11673. source: "./media/characters/vincent/beak.svg"
  11674. }
  11675. },
  11676. hand: {
  11677. height: math.unit(6 * 0.85, "feet"),
  11678. weight: math.unit(150, "lb"),
  11679. name: "Hand",
  11680. image: {
  11681. source: "./media/characters/vincent/hand.svg"
  11682. }
  11683. },
  11684. foot: {
  11685. height: math.unit(6 * 0.19, "feet"),
  11686. weight: math.unit(150, "lb"),
  11687. name: "Foot",
  11688. image: {
  11689. source: "./media/characters/vincent/foot.svg"
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Base",
  11696. height: math.unit(6 + 5/12, "feet"),
  11697. default: true
  11698. },
  11699. {
  11700. name: "Macro",
  11701. height: math.unit(300, "feet")
  11702. },
  11703. {
  11704. name: "Megamacro",
  11705. height: math.unit(2, "miles")
  11706. },
  11707. {
  11708. name: "Gigamacro",
  11709. height: math.unit(1000, "miles")
  11710. },
  11711. ]
  11712. )
  11713. };
  11714. characterMakers["Jay"] = () => {
  11715. return makeCharacter(
  11716. "Jay",
  11717. "J-Forse",
  11718. {
  11719. front: {
  11720. height: math.unit(6 + 2/12, "feet"),
  11721. weight: math.unit(65, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/jay/front.svg",
  11725. extra: 1510/1430 ,
  11726. bottom: 0.042
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(6 + 2/12, "feet"),
  11731. weight: math.unit(65, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/jay/back.svg",
  11735. extra: 1510/1430 ,
  11736. bottom: 0.025
  11737. }
  11738. },
  11739. clothed: {
  11740. height: math.unit(6 + 2/12, "feet"),
  11741. weight: math.unit(65, "lb"),
  11742. name: "Front (Clothed)",
  11743. image: {
  11744. source: "./media/characters/jay/clothed.svg",
  11745. extra: 744/699 ,
  11746. bottom: 0.043
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Micro",
  11753. height: math.unit(1, "inch")
  11754. },
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(6 + 2/12, "feet"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(1, "mile")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(100, "miles")
  11767. },
  11768. ]
  11769. )
  11770. };
  11771. characterMakers["Coatl"] = () => {
  11772. return makeCharacter(
  11773. "Coatl",
  11774. "Jagaz",
  11775. {
  11776. front: {
  11777. height: math.unit(2, "meters"),
  11778. weight: math.unit(500 , "kg"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/coatl/front.svg",
  11782. extra: 3948 / 3500 ,
  11783. bottom: 0.082
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(4, "meters")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(100, "meters"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Macro+",
  11799. height: math.unit(300, "meters")
  11800. },
  11801. {
  11802. name: "Megamacro",
  11803. height: math.unit(3, "gigameters")
  11804. },
  11805. {
  11806. name: "Megamacro+",
  11807. height: math.unit(300, "terameters")
  11808. },
  11809. {
  11810. name: "Megamacro++",
  11811. height: math.unit(3, "lightyears")
  11812. },
  11813. ]
  11814. )
  11815. };
  11816. characterMakers["Shiroryu"] = () => {
  11817. return makeCharacter(
  11818. "Shiroryu",
  11819. "Roxas00137",
  11820. {
  11821. front: {
  11822. height: math.unit(6, "feet"),
  11823. weight: math.unit(50, "kg"),
  11824. name: "front",
  11825. image: {
  11826. source: "./media/characters/shiroryu/front.svg",
  11827. extra: 1990/1935
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Mortal Mingling",
  11834. height: math.unit(3, "meters")
  11835. },
  11836. {
  11837. name: "Kaiju-ish",
  11838. height: math.unit(250, "meters")
  11839. },
  11840. {
  11841. name: "Somewhat Godly",
  11842. height: math.unit(400, "km"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Planetary",
  11847. height: math.unit(300, "megameters")
  11848. },
  11849. {
  11850. name: "Galaxy-dwarfing",
  11851. height: math.unit(450, "kiloparsecs")
  11852. },
  11853. {
  11854. name: "Universe Eater",
  11855. height: math.unit(150, "gigaparsecs")
  11856. },
  11857. {
  11858. name: "Almost Immeasurable",
  11859. height: math.unit(1.3e266, "yottaparsecs")
  11860. },
  11861. ]
  11862. )
  11863. };
  11864. characterMakers["Umeko"] = () => {
  11865. return makeCharacter(
  11866. "Umeko",
  11867. "Neopuc",
  11868. {
  11869. front: {
  11870. height: math.unit(6, "feet"),
  11871. weight: math.unit(150, "lb"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/umeko/front.svg",
  11875. extra: 1,
  11876. bottom: 0.019
  11877. }
  11878. },
  11879. frontArmored: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Front (Armored)",
  11883. image: {
  11884. source: "./media/characters/umeko/front-armored.svg",
  11885. extra: 1,
  11886. bottom: 0.021
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(220, "feet"),
  11894. default: true
  11895. },
  11896. {
  11897. name: "Guardian Dragon",
  11898. height: math.unit(50, "miles")
  11899. },
  11900. {
  11901. name: "Cosmic",
  11902. height: math.unit(800000, "miles")
  11903. },
  11904. ]
  11905. )
  11906. };
  11907. characterMakers["Cassidy"] = () => {
  11908. return makeCharacter(
  11909. "Cassidy",
  11910. "Neopuc",
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/cassidy/front.svg",
  11918. extra: 1,
  11919. bottom: 0.043
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Canon Height",
  11926. height: math.unit(120, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Macro+",
  11931. height: math.unit(400, "feet")
  11932. },
  11933. {
  11934. name: "Macro++",
  11935. height: math.unit(4000, "feet")
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(3, "miles")
  11940. },
  11941. ]
  11942. )
  11943. };
  11944. characterMakers["Isaac"] = () => {
  11945. return makeCharacter(
  11946. "Isaac",
  11947. "Neopuc",
  11948. {
  11949. front: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(150, "lb"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/isaac/front.svg",
  11955. extra: 896/815 ,
  11956. bottom: 0.11
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Human Size",
  11963. height: math.unit(8, "feet"),
  11964. default: true
  11965. },
  11966. {
  11967. name: "Macro",
  11968. height: math.unit(400, "feet")
  11969. },
  11970. {
  11971. name: "Megamacro",
  11972. height: math.unit(50, "miles")
  11973. },
  11974. {
  11975. name: "Canon Height",
  11976. height: math.unit(200, "AU")
  11977. },
  11978. ]
  11979. )
  11980. };
  11981. characterMakers["Sleekit"] = () => {
  11982. return makeCharacter(
  11983. "Sleekit",
  11984. "AnAnonymousIndividual",
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(72, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/sleekit/front.svg",
  11992. extra: 4693/4487 ,
  11993. bottom: 0.012
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Minimum Height",
  12000. height: math.unit(10, "meters")
  12001. },
  12002. {
  12003. name: "Smaller",
  12004. height: math.unit(25, "meters")
  12005. },
  12006. {
  12007. name: "Larger",
  12008. height: math.unit(38, "meters"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Maximum height",
  12013. height: math.unit(100, "meters")
  12014. },
  12015. ]
  12016. )
  12017. };
  12018. characterMakers["Nillia"] = () => {
  12019. return makeCharacter(
  12020. "Nillia",
  12021. "Neopuc",
  12022. {
  12023. front: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(150, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/nillia/front.svg",
  12029. extra: 2195/2037 ,
  12030. bottom: 0.005
  12031. }
  12032. },
  12033. back: {
  12034. height: math.unit(6, "feet"),
  12035. weight: math.unit(150, "lb"),
  12036. name: "Back",
  12037. image: {
  12038. source: "./media/characters/nillia/back.svg",
  12039. extra: 2195/2037 ,
  12040. bottom: 0.005
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Canon Height",
  12047. height: math.unit(489, "feet"),
  12048. default: true
  12049. }
  12050. ]
  12051. )
  12052. };
  12053. characterMakers["Mesmyriza"] = () => {
  12054. return makeCharacter(
  12055. "Mesmyriza",
  12056. "-fluffy-",
  12057. {
  12058. front: {
  12059. height: math.unit(6, "feet"),
  12060. weight: math.unit(150, "lb"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/mesmyriza/front.svg",
  12064. extra: 2067/1784 ,
  12065. bottom: 0.035
  12066. }
  12067. },
  12068. foot: {
  12069. height: math.unit(6/(250/35), "feet"),
  12070. name: "Foot",
  12071. image: {
  12072. source: "./media/characters/mesmyriza/foot.svg"
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Macro",
  12079. height: math.unit(457, "meters"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(8, "megameters")
  12085. },
  12086. ]
  12087. )
  12088. };
  12089. characterMakers["Saudade"] = () => {
  12090. return makeCharacter(
  12091. "Saudade",
  12092. "lordbo",
  12093. {
  12094. front: {
  12095. height: math.unit(6, "feet"),
  12096. weight: math.unit(250, "lb"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/saudade/front.svg",
  12100. extra: 1172/1139 ,
  12101. bottom: 0.035
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Micro",
  12108. height: math.unit(3, "inches")
  12109. },
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(6, "feet"),
  12113. default: true
  12114. },
  12115. {
  12116. name: "Macro",
  12117. height: math.unit(50, "feet")
  12118. },
  12119. {
  12120. name: "Megamacro",
  12121. height: math.unit(2800, "feet")
  12122. },
  12123. ]
  12124. )
  12125. };
  12126. characterMakers["Keireer"] = () => {
  12127. return makeCharacter(
  12128. "Keireer",
  12129. "teedash",
  12130. {
  12131. front: {
  12132. height: math.unit(5 + 4/12, "feet"),
  12133. weight: math.unit(100, "lb"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/keireer/front.svg",
  12137. extra: 716/666 ,
  12138. bottom: 0.05
  12139. }
  12140. },
  12141. },
  12142. [
  12143. {
  12144. name: "Normal",
  12145. height: math.unit(5 + 4/12, "feet"),
  12146. default: true
  12147. },
  12148. ]
  12149. )
  12150. };
  12151. characterMakers["Mirja"] = () => {
  12152. return makeCharacter(
  12153. "Mirja",
  12154. "vabad",
  12155. {
  12156. front: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(90, "kg"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/mirja/front.svg",
  12162. extra: 1789/1683 ,
  12163. bottom: 0.05
  12164. }
  12165. },
  12166. frontDressed: {
  12167. height: math.unit(6, "feet"),
  12168. weight: math.unit(90, "lb"),
  12169. name: "Front (Dressed)",
  12170. image: {
  12171. source: "./media/characters/mirja/front-dressed.svg",
  12172. extra: 1789/1683 ,
  12173. bottom: 0.05
  12174. }
  12175. },
  12176. back: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(90, "lb"),
  12179. name: "Back",
  12180. image: {
  12181. source: "./media/characters/mirja/back.svg",
  12182. extra: 953/917 ,
  12183. bottom: 0.017
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "\"Incognito\"",
  12190. height: math.unit(3, "meters")
  12191. },
  12192. {
  12193. name: "Strolling Size",
  12194. height: math.unit(15, "km")
  12195. },
  12196. {
  12197. name: "Larger Strolling Size",
  12198. height: math.unit(400, "km")
  12199. },
  12200. {
  12201. name: "Preferred Size",
  12202. height: math.unit(5000, "km")
  12203. },
  12204. {
  12205. name: "True Size",
  12206. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12207. default: true
  12208. },
  12209. ]
  12210. )
  12211. };
  12212. characterMakers["Nightraver"] = () => {
  12213. return makeCharacter(
  12214. "Nightraver",
  12215. "Nightraver",
  12216. {
  12217. front: {
  12218. height: math.unit(15, "feet"),
  12219. weight: math.unit(880, "kg"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/nightraver/front.svg",
  12223. extra: 2444/2160 ,
  12224. bottom: 0.027
  12225. }
  12226. },
  12227. back: {
  12228. height: math.unit(15, "feet"),
  12229. weight: math.unit(880, "kg"),
  12230. name: "Back",
  12231. image: {
  12232. source: "./media/characters/nightraver/back.svg",
  12233. extra: 2309/2180 ,
  12234. bottom: 0.005
  12235. }
  12236. },
  12237. sole: {
  12238. height: math.unit(2.878, "feet"),
  12239. name: "Sole",
  12240. image: {
  12241. source: "./media/characters/nightraver/sole.svg"
  12242. }
  12243. },
  12244. foot: {
  12245. height: math.unit(2.285, "feet"),
  12246. name: "Foot",
  12247. image: {
  12248. source: "./media/characters/nightraver/foot.svg"
  12249. }
  12250. },
  12251. maw: {
  12252. height: math.unit(2.67, "feet"),
  12253. name: "Maw",
  12254. image: {
  12255. source: "./media/characters/nightraver/maw.svg"
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Micro",
  12262. height: math.unit(1, "cm")
  12263. },
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(15, "feet"),
  12267. default: true
  12268. },
  12269. {
  12270. name: "Macro",
  12271. height: math.unit(300, "feet")
  12272. },
  12273. {
  12274. name: "Megamacro",
  12275. height: math.unit(300, "miles")
  12276. },
  12277. {
  12278. name: "Gigamacro",
  12279. height: math.unit(10000, "miles")
  12280. },
  12281. ]
  12282. )
  12283. };
  12284. characterMakers["Arc"] = () => {
  12285. return makeCharacter(
  12286. "Arc",
  12287. "DinoKiddo",
  12288. {
  12289. side: {
  12290. height: math.unit(2, "inches"),
  12291. weight: math.unit(5, "grams"),
  12292. name: "Side",
  12293. image: {
  12294. source: "./media/characters/arc/side.svg"
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Micro",
  12301. height: math.unit(2, "inches"),
  12302. default: true
  12303. },
  12304. ]
  12305. )
  12306. };
  12307. characterMakers["Nebula Shahar"] = () => {
  12308. return makeCharacter(
  12309. "Nebula Shahar",
  12310. "Kypleo",
  12311. {
  12312. front: {
  12313. height: math.unit(1.1938, "meters"),
  12314. weight: math.unit(54, "kg"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/nebula-shahar/front.svg",
  12318. extra: 1642/1436 ,
  12319. bottom: 0.06
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Megamicro",
  12326. height: math.unit(0.3, "mm")
  12327. },
  12328. {
  12329. name: "Micro",
  12330. height: math.unit(3, "cm")
  12331. },
  12332. {
  12333. name: "Normal",
  12334. height: math.unit(138, "cm"),
  12335. default: true
  12336. },
  12337. {
  12338. name: "Macro",
  12339. height: math.unit(30, "m")
  12340. },
  12341. ]
  12342. )
  12343. };
  12344. characterMakers["Shayla"] = () => {
  12345. return makeCharacter(
  12346. "Shayla",
  12347. "Ziralkia",
  12348. {
  12349. front: {
  12350. height: math.unit(5.24, "feet"),
  12351. weight: math.unit(150, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/shayla/front.svg",
  12355. extra: 1512/1414 ,
  12356. bottom: 0.01
  12357. }
  12358. },
  12359. back: {
  12360. height: math.unit(5.24, "feet"),
  12361. weight: math.unit(150, "lb"),
  12362. name: "Back",
  12363. image: {
  12364. source: "./media/characters/shayla/back.svg",
  12365. extra: 1512/1414
  12366. }
  12367. },
  12368. hand: {
  12369. height: math.unit(0.7781496062992126, "feet"),
  12370. name: "Hand",
  12371. image: {
  12372. source: "./media/characters/shayla/hand.svg"
  12373. }
  12374. },
  12375. foot: {
  12376. height: math.unit(1.4206036745406823, "feet"),
  12377. name: "Foot",
  12378. image: {
  12379. source: "./media/characters/shayla/foot.svg"
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(0.32, "feet")
  12387. },
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(5.24, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Macro",
  12395. height: math.unit(492.12, "feet")
  12396. },
  12397. {
  12398. name: "Megamacro",
  12399. height: math.unit(186.41, "miles")
  12400. },
  12401. ]
  12402. )
  12403. };
  12404. characterMakers["Pia Jr."] = () => {
  12405. return makeCharacter(
  12406. "Pia Jr.",
  12407. "Ziralkia",
  12408. {
  12409. front: {
  12410. height: math.unit(2.2, "m"),
  12411. weight: math.unit(120, "kg"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/pia-jr/front.svg",
  12415. extra: 1000/970 ,
  12416. bottom: 0.035
  12417. }
  12418. },
  12419. hand: {
  12420. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12421. name: "Hand",
  12422. image: {
  12423. source: "./media/characters/pia-jr/hand.svg"
  12424. }
  12425. },
  12426. paw: {
  12427. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12428. name: "Paw",
  12429. image: {
  12430. source: "./media/characters/pia-jr/paw.svg"
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Micro",
  12437. height: math.unit(1.2, "cm")
  12438. },
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(2.2, "m"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Macro",
  12446. height: math.unit(180, "m")
  12447. },
  12448. {
  12449. name: "Megamacro",
  12450. height: math.unit(420, "km")
  12451. },
  12452. ]
  12453. )
  12454. };
  12455. characterMakers["Pia Sr."] = () => {
  12456. return makeCharacter(
  12457. "Pia Sr.",
  12458. "Ziralkia",
  12459. {
  12460. front: {
  12461. height: math.unit(2, "m"),
  12462. weight: math.unit(115, "kg"),
  12463. name: "Front",
  12464. image: {
  12465. source: "./media/characters/pia-sr/front.svg",
  12466. extra: 760/730 ,
  12467. bottom: 0.015
  12468. }
  12469. },
  12470. back: {
  12471. height: math.unit(2, "m"),
  12472. weight: math.unit(115, "kg"),
  12473. name: "Back",
  12474. image: {
  12475. source: "./media/characters/pia-sr/back.svg",
  12476. extra: 760/730 ,
  12477. bottom: 0.01
  12478. }
  12479. },
  12480. hand: {
  12481. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12482. name: "Hand",
  12483. image: {
  12484. source: "./media/characters/pia-sr/hand.svg"
  12485. }
  12486. },
  12487. foot: {
  12488. height: math.unit(1.83, "feet"),
  12489. name: "Foot",
  12490. image: {
  12491. source: "./media/characters/pia-sr/foot.svg"
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(88, "mm")
  12499. },
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(2, "m"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(200, "m")
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(420, "km")
  12512. },
  12513. ]
  12514. )
  12515. };
  12516. characterMakers["KIBIBYTE"] = () => {
  12517. return makeCharacter(
  12518. "KIBIBYTE",
  12519. "gamefreak1215",
  12520. {
  12521. front: {
  12522. height: math.unit(8 + 2/12, "feet"),
  12523. weight: math.unit(300, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/kibibyte/front.svg",
  12527. extra: 2221/2098 ,
  12528. bottom: 0.04
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(8 + 2/12, "feet"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Socialable Macro",
  12540. height: math.unit(50, "feet")
  12541. },
  12542. {
  12543. name: "Macro",
  12544. height: math.unit(300, "feet")
  12545. },
  12546. {
  12547. name: "Megamacro",
  12548. height: math.unit(500, "miles")
  12549. },
  12550. ]
  12551. )
  12552. };
  12553. characterMakers["Felix"] = () => {
  12554. return makeCharacter(
  12555. "Felix",
  12556. "MeanDumpsterCat",
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/felix/front.svg",
  12564. extra: 762/722 ,
  12565. bottom: 0.02
  12566. }
  12567. },
  12568. frontClothed: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Front (Clothed)",
  12572. image: {
  12573. source: "./media/characters/felix/front-clothed.svg",
  12574. extra: 762/722 ,
  12575. bottom: 0.02
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Normal",
  12582. height: math.unit(6 + 8/12, "feet"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Macro",
  12587. height: math.unit(2600, "feet")
  12588. },
  12589. {
  12590. name: "Megamacro",
  12591. height: math.unit(450, "miles")
  12592. },
  12593. ]
  12594. )
  12595. };
  12596. characterMakers["Tobo"] = () => {
  12597. return makeCharacter(
  12598. "Tobo",
  12599. "Naoya_Raichi",
  12600. {
  12601. front: {
  12602. height: math.unit(6 + 1/12, "feet"),
  12603. weight: math.unit(250, "lb"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/tobo/front.svg",
  12607. extra: 608/586 ,
  12608. bottom: 0.023
  12609. }
  12610. },
  12611. back: {
  12612. height: math.unit(6 + 1/12, "feet"),
  12613. weight: math.unit(250, "lb"),
  12614. name: "Back",
  12615. image: {
  12616. source: "./media/characters/tobo/back.svg",
  12617. extra: 608/586
  12618. }
  12619. },
  12620. },
  12621. [
  12622. {
  12623. name: "Nano",
  12624. height: math.unit(2, "nm")
  12625. },
  12626. {
  12627. name: "Megamicro",
  12628. height: math.unit(0.1, "mm")
  12629. },
  12630. {
  12631. name: "Micro",
  12632. height: math.unit(1, "inch"),
  12633. default: true
  12634. },
  12635. {
  12636. name: "Human-sized",
  12637. height: math.unit(6 + 1/12, "feet")
  12638. },
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(250, "feet")
  12642. },
  12643. {
  12644. name: "Megamacro",
  12645. height: math.unit(75, "miles")
  12646. },
  12647. {
  12648. name: "Texas-sized",
  12649. height: math.unit(750, "miles")
  12650. },
  12651. {
  12652. name: "Teramacro",
  12653. height: math.unit(50000, "miles")
  12654. },
  12655. ]
  12656. )
  12657. };
  12658. characterMakers["Danny Kapowsky"] = () => {
  12659. return makeCharacter(
  12660. "Danny Kapowsky",
  12661. "nh63879",
  12662. {
  12663. front: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(269, "lb"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/danny-kapowsky/front.svg",
  12669. extra: 766/736 ,
  12670. bottom: 0.044
  12671. }
  12672. },
  12673. back: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(269, "lb"),
  12676. name: "Back",
  12677. image: {
  12678. source: "./media/characters/danny-kapowsky/back.svg",
  12679. extra: 797/760 ,
  12680. bottom: 0.025
  12681. }
  12682. },
  12683. },
  12684. [
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(150, "feet"),
  12688. default: true
  12689. },
  12690. {
  12691. name: "Macro+",
  12692. height: math.unit(200, "feet")
  12693. },
  12694. {
  12695. name: "Macro++",
  12696. height: math.unit(300, "feet")
  12697. },
  12698. {
  12699. name: "Macro+++",
  12700. height: math.unit(400, "feet")
  12701. },
  12702. ]
  12703. )
  12704. };
  12705. characterMakers["Finn"] = () => {
  12706. return makeCharacter(
  12707. "Finn",
  12708. "Finn-The-Fennecfox",
  12709. {
  12710. side: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(170, "lb"),
  12713. name: "Side",
  12714. image: {
  12715. source: "./media/characters/finn/side.svg",
  12716. extra: 1953/1807 ,
  12717. bottom: 0.057
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Megamacro",
  12724. height: math.unit(14445, "feet"),
  12725. default: true
  12726. },
  12727. ]
  12728. )
  12729. };
  12730. characterMakers["Roy"] = () => {
  12731. return makeCharacter(
  12732. "Roy",
  12733. "dracodare",
  12734. {
  12735. front: {
  12736. height: math.unit(5 + 6/12, "feet"),
  12737. weight: math.unit(125, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/roy/front.svg",
  12741. extra: 1,
  12742. bottom: 0.11
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Micro",
  12749. height: math.unit(3, "inches"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Normal",
  12754. height: math.unit(5 + 6/12, "feet")
  12755. },
  12756. {
  12757. name: "Lesser Macro",
  12758. height: math.unit(60, "feet")
  12759. },
  12760. {
  12761. name: "Greater Macro",
  12762. height: math.unit(120, "feet")
  12763. },
  12764. ]
  12765. )
  12766. };
  12767. characterMakers["Aevsivs"] = () => {
  12768. return makeCharacter(
  12769. "Aevsivs",
  12770. "Aevsivs",
  12771. {
  12772. front: {
  12773. height: math.unit(6, "feet"),
  12774. weight: math.unit(100, "lb"),
  12775. name: "Front",
  12776. image: {
  12777. source: "./media/characters/aevsivs/front.svg",
  12778. extra: 1,
  12779. bottom: 0.03
  12780. }
  12781. },
  12782. back: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(100, "lb"),
  12785. name: "Back",
  12786. image: {
  12787. source: "./media/characters/aevsivs/back.svg"
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Micro",
  12794. height: math.unit(2, "inches"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(5, "feet")
  12800. },
  12801. ]
  12802. )
  12803. };
  12804. characterMakers["Hildegard"] = () => {
  12805. return makeCharacter(
  12806. "Hildegard",
  12807. "Fidchell",
  12808. {
  12809. front: {
  12810. height: math.unit(5 + 7/12, "feet"),
  12811. weight: math.unit(159, "lb"),
  12812. name: "Front",
  12813. image: {
  12814. source: "./media/characters/hildegard/front.svg",
  12815. extra: 312/286 ,
  12816. bottom: 0.005
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(5 + 7/12, "feet"),
  12824. default: true
  12825. },
  12826. ]
  12827. )
  12828. };
  12829. characterMakers["Bernard & Wilder"] = () => {
  12830. return makeCharacter(
  12831. "Bernard & Wilder",
  12832. "Fidchell",
  12833. {
  12834. bernard: {
  12835. height: math.unit(2 + 7/12, "feet"),
  12836. weight: math.unit(66, "lb"),
  12837. name: "Bernard",
  12838. rename: true,
  12839. image: {
  12840. source: "./media/characters/bernard-wilder/bernard.svg",
  12841. extra: 192/128 ,
  12842. bottom: 0.05
  12843. }
  12844. },
  12845. wilder: {
  12846. height: math.unit(5 + 8/12, "feet"),
  12847. weight: math.unit(143, "lb"),
  12848. name: "Wilder",
  12849. rename: true,
  12850. image: {
  12851. source: "./media/characters/bernard-wilder/wilder.svg",
  12852. extra: 361/312 ,
  12853. bottom: 0.02
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(2 + 7/12, "feet"),
  12861. default: true
  12862. },
  12863. ]
  12864. )
  12865. };
  12866. characterMakers["Hearth"] = () => {
  12867. return makeCharacter(
  12868. "Hearth",
  12869. "Fidchell",
  12870. {
  12871. anthro: {
  12872. height: math.unit(6 + 1/12, "feet"),
  12873. weight: math.unit(155, "lb"),
  12874. name: "Anthro",
  12875. image: {
  12876. source: "./media/characters/hearth/anthro.svg",
  12877. extra: 260/250 ,
  12878. bottom: 0.02
  12879. }
  12880. },
  12881. feral: {
  12882. height: math.unit(3.78, "feet"),
  12883. weight: math.unit(35, "kg"),
  12884. name: "Feral",
  12885. image: {
  12886. source: "./media/characters/hearth/feral.svg",
  12887. extra: 153/135 ,
  12888. bottom: 0.03
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(6 + 1/12, "feet"),
  12896. default: true
  12897. },
  12898. ]
  12899. )
  12900. };
  12901. characterMakers["Ingrid"] = () => {
  12902. return makeCharacter(
  12903. "Ingrid",
  12904. "Fidchell",
  12905. {
  12906. front: {
  12907. height: math.unit(6, "feet"),
  12908. weight: math.unit(182, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/ingrid/front.svg",
  12912. extra: 294/268 ,
  12913. bottom: 0.027
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Normal",
  12920. height: math.unit(6, "feet"),
  12921. default: true
  12922. },
  12923. ]
  12924. )
  12925. };
  12926. characterMakers["Malgam"] = () => {
  12927. return makeCharacter(
  12928. "Malgam",
  12929. "Fidchell",
  12930. {
  12931. eevee: {
  12932. height: math.unit(2 + 10/12, "feet"),
  12933. weight: math.unit(86, "lb"),
  12934. name: "Malgam",
  12935. image: {
  12936. source: "./media/characters/malgam/eevee.svg",
  12937. extra: 218/180 ,
  12938. bottom: 0.2
  12939. }
  12940. },
  12941. sylveon: {
  12942. height: math.unit(4, "feet"),
  12943. weight: math.unit(101, "lb"),
  12944. name: "Future Malgam",
  12945. rename: true,
  12946. image: {
  12947. source: "./media/characters/malgam/sylveon.svg",
  12948. extra: 371/325 ,
  12949. bottom: 0.015
  12950. }
  12951. },
  12952. gigantamax: {
  12953. height: math.unit(50, "feet"),
  12954. name: "Gigantamax Malgam",
  12955. rename: true,
  12956. image: {
  12957. source: "./media/characters/malgam/gigantamax.svg"
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(2 + 10/12, "feet"),
  12965. default: true
  12966. },
  12967. ]
  12968. )
  12969. };
  12970. characterMakers["Fleur"] = () => {
  12971. return makeCharacter(
  12972. "Fleur",
  12973. "Fidchell",
  12974. {
  12975. front: {
  12976. height: math.unit(5 + 11/12, "feet"),
  12977. weight: math.unit(188, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/fleur/front.svg",
  12981. extra: 309/283 ,
  12982. bottom: 0.007
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(5 + 11/12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. )
  12994. };
  12995. characterMakers["Jude"] = () => {
  12996. return makeCharacter(
  12997. "Jude",
  12998. "Fidchell",
  12999. {
  13000. front: {
  13001. height: math.unit(5 + 4/12, "feet"),
  13002. weight: math.unit(122, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/jude/front.svg",
  13006. extra: 288/273 ,
  13007. bottom: 0.03
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(5 + 4/12, "feet"),
  13015. default: true
  13016. },
  13017. ]
  13018. )
  13019. };
  13020. characterMakers["Seara"] = () => {
  13021. return makeCharacter(
  13022. "Seara",
  13023. "Fidchell",
  13024. {
  13025. front: {
  13026. height: math.unit(5 + 11/12, "feet"),
  13027. weight: math.unit(190, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/seara/front.svg",
  13031. extra: 1,
  13032. bottom: 0.05
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Normal",
  13039. height: math.unit(5 + 11/12, "feet"),
  13040. default: true
  13041. },
  13042. ]
  13043. )
  13044. };
  13045. characterMakers["Caspian"] = () => {
  13046. return makeCharacter(
  13047. "Caspian",
  13048. "Fidchell",
  13049. {
  13050. front: {
  13051. height: math.unit(16 + 5/12, "feet"),
  13052. weight: math.unit(524, "lb"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/caspian/front.svg",
  13056. extra: 1,
  13057. bottom: 0.04
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Normal",
  13064. height: math.unit(16 + 5/12, "feet"),
  13065. default: true
  13066. },
  13067. ]
  13068. )
  13069. };
  13070. characterMakers["Mika"] = () => {
  13071. return makeCharacter(
  13072. "Mika",
  13073. "Fidchell",
  13074. {
  13075. front: {
  13076. height: math.unit(5 + 7/12, "feet"),
  13077. weight: math.unit(170, "lb"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/mika/front.svg",
  13081. extra: 1,
  13082. bottom: 0.016
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(5 + 7/12, "feet"),
  13090. default: true
  13091. },
  13092. ]
  13093. )
  13094. };
  13095. characterMakers["Sol"] = () => {
  13096. return makeCharacter(
  13097. "Sol",
  13098. "Fidchell",
  13099. {
  13100. front: {
  13101. height: math.unit(6 + 2/12, "feet"),
  13102. weight: math.unit(268, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/sol/front.svg",
  13106. extra: 247/231 ,
  13107. bottom: 0.05
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Normal",
  13114. height: math.unit(6 + 2/12, "feet"),
  13115. default: true
  13116. },
  13117. ]
  13118. )
  13119. };
  13120. characterMakers["Umiko"] = () => {
  13121. return makeCharacter(
  13122. "Umiko",
  13123. "Fidchell",
  13124. {
  13125. buizel: {
  13126. height: math.unit(2 + 5/12, "feet"),
  13127. weight: math.unit(87, "lb"),
  13128. name: "Buizel",
  13129. image: {
  13130. source: "./media/characters/umiko/buizel.svg",
  13131. extra: 172/157 ,
  13132. bottom: 0.01
  13133. }
  13134. },
  13135. floatzel: {
  13136. height: math.unit(5 + 9/12, "feet"),
  13137. weight: math.unit(250, "lb"),
  13138. name: "Floatzel",
  13139. image: {
  13140. source: "./media/characters/umiko/floatzel.svg",
  13141. extra: 262/248
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(2 + 5/12, "feet"),
  13149. default: true
  13150. },
  13151. ]
  13152. )
  13153. };
  13154. characterMakers["Iliac"] = () => {
  13155. return makeCharacter(
  13156. "Iliac",
  13157. "Fidchell",
  13158. {
  13159. front: {
  13160. height: math.unit(6 + 2/12, "feet"),
  13161. weight: math.unit(146, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/iliac/front.svg",
  13165. extra: 389/365 ,
  13166. bottom: 0.035
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(6 + 2/12, "feet"),
  13174. default: true
  13175. },
  13176. ]
  13177. )
  13178. };
  13179. characterMakers["Topaz"] = () => {
  13180. return makeCharacter(
  13181. "Topaz",
  13182. "Fidchell",
  13183. {
  13184. front: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(170, "lb"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/topaz/front.svg",
  13190. extra: 317/303 ,
  13191. bottom: 0.055
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(6, "feet"),
  13199. default: true
  13200. },
  13201. ]
  13202. )
  13203. };
  13204. characterMakers["Gabriel"] = () => {
  13205. return makeCharacter(
  13206. "Gabriel",
  13207. "Fidchell",
  13208. {
  13209. front: {
  13210. height: math.unit(5 + 11/12, "feet"),
  13211. weight: math.unit(144, "lb"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/gabriel/front.svg",
  13215. extra: 285/262 ,
  13216. bottom: 0.004
  13217. }
  13218. },
  13219. },
  13220. [
  13221. {
  13222. name: "Normal",
  13223. height: math.unit(5 + 11/12, "feet"),
  13224. default: true
  13225. },
  13226. ]
  13227. )
  13228. };
  13229. characterMakers["Tempest (Suicune)"] = () => {
  13230. return makeCharacter(
  13231. "Tempest (Suicune)",
  13232. "Fidchell",
  13233. {
  13234. side: {
  13235. height: math.unit(6 + 5/12, "feet"),
  13236. weight: math.unit(300, "lb"),
  13237. name: "Side",
  13238. image: {
  13239. source: "./media/characters/tempest-suicune/side.svg",
  13240. extra: 195/154 ,
  13241. bottom: 0.04
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(6 + 5/12, "feet"),
  13249. default: true
  13250. },
  13251. ]
  13252. )
  13253. };
  13254. characterMakers["Vulcan"] = () => {
  13255. return makeCharacter(
  13256. "Vulcan",
  13257. "Fidchell",
  13258. {
  13259. front: {
  13260. height: math.unit(7 + 2/12, "feet"),
  13261. weight: math.unit(322, "lb"),
  13262. name: "Front",
  13263. image: {
  13264. source: "./media/characters/vulcan/front.svg",
  13265. extra: 154/147 ,
  13266. bottom: 0.04
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Normal",
  13273. height: math.unit(7 + 2/12, "feet"),
  13274. default: true
  13275. },
  13276. ]
  13277. )
  13278. };
  13279. characterMakers["Gault"] = () => {
  13280. return makeCharacter(
  13281. "Gault",
  13282. "Fidchell",
  13283. {
  13284. front: {
  13285. height: math.unit(5 + 10/12, "feet"),
  13286. weight: math.unit(264, "lb"),
  13287. name: "Front",
  13288. image: {
  13289. source: "./media/characters/gault/front.svg",
  13290. extra: 161/140 ,
  13291. bottom: 0.028
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(5 + 10/12, "feet"),
  13299. default: true
  13300. },
  13301. ]
  13302. )
  13303. };
  13304. characterMakers["Shard"] = () => {
  13305. return makeCharacter(
  13306. "Shard",
  13307. "Fidchell",
  13308. {
  13309. front: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(150, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/shard/front.svg",
  13315. extra: 273/238 ,
  13316. bottom: 0.02
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(3 + 6/12, "feet"),
  13324. default: true
  13325. },
  13326. ]
  13327. )
  13328. };
  13329. characterMakers["Ashe"] = () => {
  13330. return makeCharacter(
  13331. "Ashe",
  13332. "Fidchell",
  13333. {
  13334. front: {
  13335. height: math.unit(5 + 11/12, "feet"),
  13336. weight: math.unit(146, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/ashe/front.svg",
  13340. extra: 400/373 ,
  13341. bottom: 0.01
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(5 + 11/12, "feet"),
  13349. default: true
  13350. },
  13351. ]
  13352. )
  13353. };
  13354. characterMakers["Beatrix"] = () => {
  13355. return makeCharacter(
  13356. "Beatrix",
  13357. "Fidchell",
  13358. {
  13359. front: {
  13360. height: math.unit(5 + 5/12, "feet"),
  13361. weight: math.unit(135, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/beatrix/front.svg",
  13365. extra: 392/379 ,
  13366. bottom: 0.01
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(6, "feet"),
  13374. default: true
  13375. },
  13376. ]
  13377. )
  13378. };
  13379. characterMakers["Ignatius"] = () => {
  13380. return makeCharacter(
  13381. "Ignatius",
  13382. "Fidchell",
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/ignatius/front.svg",
  13390. extra: 245/222 ,
  13391. bottom: 0.01
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(5 + 5/12, "feet"),
  13399. default: true
  13400. },
  13401. ]
  13402. )
  13403. };
  13404. characterMakers["Mei Li"] = () => {
  13405. return makeCharacter(
  13406. "Mei Li",
  13407. "Fidchell",
  13408. {
  13409. front: {
  13410. height: math.unit(6 + 2/12, "feet"),
  13411. weight: math.unit(138, "lb"),
  13412. name: "Front",
  13413. image: {
  13414. source: "./media/characters/mei-li/front.svg",
  13415. extra: 237/229 ,
  13416. bottom: 0.03
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Normal",
  13423. height: math.unit(6 + 2/12, "feet"),
  13424. default: true
  13425. },
  13426. ]
  13427. )
  13428. };
  13429. characterMakers["Puru"] = () => {
  13430. return makeCharacter(
  13431. "Puru",
  13432. "Fidchell",
  13433. {
  13434. front: {
  13435. height: math.unit(2 + 4/12, "feet"),
  13436. weight: math.unit(62, "lb"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/puru/front.svg",
  13440. extra: 206/149 ,
  13441. bottom: 0.06
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Normal",
  13448. height: math.unit(2 + 4/12, "feet"),
  13449. default: true
  13450. },
  13451. ]
  13452. )
  13453. };
  13454. characterMakers["Kee"] = () => {
  13455. return makeCharacter(
  13456. "Kee",
  13457. "AardwolfKee",
  13458. {
  13459. taur: {
  13460. height: math.unit(11, "feet"),
  13461. weight: math.unit(500, "lb"),
  13462. name: "Taur",
  13463. image: {
  13464. source: "./media/characters/kee/taur.svg",
  13465. extra: 1,
  13466. bottom: 0.04
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Normal",
  13473. height: math.unit(11, "feet"),
  13474. default: true
  13475. },
  13476. ]
  13477. )
  13478. };
  13479. characterMakers["Cobalt (Dracha)"] = () => {
  13480. return makeCharacter(
  13481. "Cobalt (Dracha)",
  13482. "Fidchell",
  13483. {
  13484. anthro: {
  13485. height: math.unit(7, "feet"),
  13486. weight: math.unit(190, "lb"),
  13487. name: "Anthro",
  13488. image: {
  13489. source: "./media/characters/cobalt-dracha/anthro.svg",
  13490. extra: 231/225 ,
  13491. bottom: 0.04
  13492. }
  13493. },
  13494. feral: {
  13495. height: math.unit(9 + 7/12, "feet"),
  13496. weight: math.unit(294, "lb"),
  13497. name: "Feral",
  13498. image: {
  13499. source: "./media/characters/cobalt-dracha/feral.svg",
  13500. extra: 692/633 ,
  13501. bottom: 0.05
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(7, "feet"),
  13509. default: true
  13510. },
  13511. ]
  13512. )
  13513. };
  13514. characterMakers["Java"] = () => {
  13515. return makeCharacter(
  13516. "Java",
  13517. "Fidchell",
  13518. {
  13519. fallen: {
  13520. height: math.unit(11 + 8/12, "feet"),
  13521. weight: math.unit(485, "lb"),
  13522. name: "Java (Fallen)",
  13523. rename: true,
  13524. image: {
  13525. source: "./media/characters/java/fallen.svg",
  13526. extra: 226/208 ,
  13527. bottom: 0.005
  13528. }
  13529. },
  13530. godkin: {
  13531. height: math.unit(10 + 6/12, "feet"),
  13532. weight: math.unit(328, "lb"),
  13533. name: "Java (Godkin)",
  13534. rename: true,
  13535. image: {
  13536. source: "./media/characters/java/godkin.svg",
  13537. extra: 270/262 ,
  13538. bottom: 0.02
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(11 + 8/12, "feet"),
  13546. default: true
  13547. },
  13548. ]
  13549. )
  13550. };
  13551. characterMakers["Skoll"] = () => {
  13552. return makeCharacter(
  13553. "Skoll",
  13554. "Fidchell",
  13555. {
  13556. front: {
  13557. height: math.unit(7 + 8/12, "feet"),
  13558. weight: math.unit(320, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/skoll/front.svg",
  13562. extra: 232/220 ,
  13563. bottom: 0.02
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(7 + 8/12, "feet"),
  13571. default: true
  13572. },
  13573. ]
  13574. )
  13575. };
  13576. characterMakers["Purna"] = () => {
  13577. return makeCharacter(
  13578. "Purna",
  13579. "Fidchell",
  13580. {
  13581. front: {
  13582. height: math.unit(5 + 9/12, "feet"),
  13583. weight: math.unit(170, "lb"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/purna/front.svg",
  13587. extra: 239/229 ,
  13588. bottom: 0.01
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(5 + 9/12, "feet"),
  13596. default: true
  13597. },
  13598. ]
  13599. )
  13600. };
  13601. characterMakers["Kuva"] = () => {
  13602. return makeCharacter(
  13603. "Kuva",
  13604. "Fidchell",
  13605. {
  13606. front: {
  13607. height: math.unit(5 + 9/12, "feet"),
  13608. weight: math.unit(142, "lb"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/kuva/front.svg",
  13612. extra: 281/271 ,
  13613. bottom: 0.006
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(5 + 9/12, "feet"),
  13621. default: true
  13622. },
  13623. ]
  13624. )
  13625. };
  13626. characterMakers["Embra"] = () => {
  13627. return makeCharacter(
  13628. "Embra",
  13629. "Fidchell",
  13630. {
  13631. anthro: {
  13632. height: math.unit(9 + 2/12, "feet"),
  13633. weight: math.unit(270, "lb"),
  13634. name: "Anthro",
  13635. image: {
  13636. source: "./media/characters/embra/anthro.svg",
  13637. extra: 200/187 ,
  13638. bottom: 0.02
  13639. }
  13640. },
  13641. feral: {
  13642. height: math.unit(18 + 8/12, "feet"),
  13643. weight: math.unit(576, "lb"),
  13644. name: "Feral",
  13645. image: {
  13646. source: "./media/characters/embra/feral.svg",
  13647. extra: 152/137 ,
  13648. bottom: 0.037
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Normal",
  13655. height: math.unit(9 + 2/12, "feet"),
  13656. default: true
  13657. },
  13658. ]
  13659. )
  13660. };
  13661. characterMakers["Grottos"] = () => {
  13662. return makeCharacter(
  13663. "Grottos",
  13664. "Fidchell",
  13665. {
  13666. anthro: {
  13667. height: math.unit(10 + 9/12, "feet"),
  13668. weight: math.unit(224, "lb"),
  13669. name: "Anthro",
  13670. image: {
  13671. source: "./media/characters/grottos/anthro.svg",
  13672. extra: 350/332 ,
  13673. bottom: 0.045
  13674. }
  13675. },
  13676. feral: {
  13677. height: math.unit(20 + 7/12, "feet"),
  13678. weight: math.unit(629, "lb"),
  13679. name: "Feral",
  13680. image: {
  13681. source: "./media/characters/grottos/feral.svg",
  13682. extra: 207/190 ,
  13683. bottom: 0.05
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(10 + 9/12, "feet"),
  13691. default: true
  13692. },
  13693. ]
  13694. )
  13695. };
  13696. characterMakers["Frifna"] = () => {
  13697. return makeCharacter(
  13698. "Frifna",
  13699. "Fidchell",
  13700. {
  13701. anthro: {
  13702. height: math.unit(9 + 6/12, "feet"),
  13703. weight: math.unit(298, "lb"),
  13704. name: "Anthro",
  13705. image: {
  13706. source: "./media/characters/frifna/anthro.svg",
  13707. extra: 282/269 ,
  13708. bottom: 0.015
  13709. }
  13710. },
  13711. feral: {
  13712. height: math.unit(16 + 2/12, "feet"),
  13713. weight: math.unit(624, "lb"),
  13714. name: "Feral",
  13715. image: {
  13716. source: "./media/characters/frifna/feral.svg"
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Normal",
  13723. height: math.unit(9 + 6/12, "feet"),
  13724. default: true
  13725. },
  13726. ]
  13727. )
  13728. };
  13729. characterMakers["Elise"] = () => {
  13730. return makeCharacter(
  13731. "Elise",
  13732. "Fidchell",
  13733. {
  13734. front: {
  13735. height: math.unit(6 + 2/12, "feet"),
  13736. weight: math.unit(168, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/elise/front.svg",
  13740. extra: 276/271
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Normal",
  13747. height: math.unit(6 + 2/12, "feet"),
  13748. default: true
  13749. },
  13750. ]
  13751. )
  13752. };
  13753. characterMakers["Glade"] = () => {
  13754. return makeCharacter(
  13755. "Glade",
  13756. "Fidchell",
  13757. {
  13758. front: {
  13759. height: math.unit(5 + 10/12, "feet"),
  13760. weight: math.unit(210, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/glade/front.svg",
  13764. extra: 258/247 ,
  13765. bottom: 0.008
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Normal",
  13772. height: math.unit(5 + 10/12, "feet"),
  13773. default: true
  13774. },
  13775. ]
  13776. )
  13777. };
  13778. characterMakers["Rina"] = () => {
  13779. return makeCharacter(
  13780. "Rina",
  13781. "Fidchell",
  13782. {
  13783. front: {
  13784. height: math.unit(5 + 10/12, "feet"),
  13785. weight: math.unit(129, "lb"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/rina/front.svg",
  13789. extra: 266/255 ,
  13790. bottom: 0.005
  13791. }
  13792. },
  13793. },
  13794. [
  13795. {
  13796. name: "Normal",
  13797. height: math.unit(5 + 10/12, "feet"),
  13798. default: true
  13799. },
  13800. ]
  13801. )
  13802. };
  13803. characterMakers["Veronica"] = () => {
  13804. return makeCharacter(
  13805. "Veronica",
  13806. "Fidchell",
  13807. {
  13808. front: {
  13809. height: math.unit(6 + 1/12, "feet"),
  13810. weight: math.unit(192, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/veronica/front.svg",
  13814. extra: 319/309 ,
  13815. bottom: 0.005
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(6 + 1/12, "feet"),
  13823. default: true
  13824. },
  13825. ]
  13826. )
  13827. };
  13828. characterMakers["Braxton"] = () => {
  13829. return makeCharacter(
  13830. "Braxton",
  13831. "jdolbear",
  13832. {
  13833. front: {
  13834. height: math.unit(9 + 3/12, "feet"),
  13835. weight: math.unit(1100, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/braxton/front.svg",
  13839. extra: 1057/984 ,
  13840. bottom: 0.05
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(9 + 3/12, "feet")
  13848. },
  13849. {
  13850. name: "Giant",
  13851. height: math.unit(300, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Macro",
  13856. height: math.unit(700, "feet")
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(6000, "feet")
  13861. },
  13862. ]
  13863. )
  13864. };
  13865. characterMakers["Blue Feyonics"] = () => {
  13866. return makeCharacter(
  13867. "Blue Feyonics",
  13868. "bluefiremarkii",
  13869. {
  13870. front: {
  13871. height: math.unit(6 + 7/12, "feet"),
  13872. weight: math.unit(150, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/blue-feyonics/front.svg",
  13876. extra: 1403/1306 ,
  13877. bottom: 0.047
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(6 + 7/12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. )
  13889. };
  13890. characterMakers["Maxwell"] = () => {
  13891. return makeCharacter(
  13892. "Maxwell",
  13893. "Ruby_02",
  13894. {
  13895. front: {
  13896. height: math.unit(1.8, "meters"),
  13897. weight: math.unit(60, "kg"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/maxwell/front.svg",
  13901. extra: 2060/1873
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Micro",
  13908. height: math.unit(1, "mm")
  13909. },
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(1.8, "meter"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(30, "meters")
  13918. },
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(10, "km")
  13922. },
  13923. ]
  13924. )
  13925. };
  13926. characterMakers["Jack"] = () => {
  13927. return makeCharacter(
  13928. "Jack",
  13929. "Jasmith",
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/jack/front.svg",
  13937. extra: 1754/1640,
  13938. bottom: 0.01
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(80000, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Max size",
  13950. height: math.unit(10, "lightyears")
  13951. },
  13952. ]
  13953. )
  13954. };
  13955. characterMakers["Cafat"] = () => {
  13956. return makeCharacter(
  13957. "Cafat",
  13958. "Dalken",
  13959. {
  13960. upright: {
  13961. height: math.unit(7, "feet"),
  13962. weight: math.unit(170, "lb"),
  13963. name: "Upright",
  13964. image: {
  13965. source: "./media/characters/cafat/upright.svg",
  13966. bottom: 0.01
  13967. }
  13968. },
  13969. uprightFull: {
  13970. height: math.unit(7, "feet"),
  13971. weight: math.unit(170, "lb"),
  13972. name: "Upright (Full)",
  13973. image: {
  13974. source: "./media/characters/cafat/upright-full.svg",
  13975. bottom: 0.01
  13976. }
  13977. },
  13978. side: {
  13979. height: math.unit(5, "feet"),
  13980. weight: math.unit(150, "lb"),
  13981. name: "Side",
  13982. image: {
  13983. source: "./media/characters/cafat/side.svg"
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Small",
  13990. height: math.unit(7, "feet"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Large",
  13995. height: math.unit(15.5, "feet")
  13996. },
  13997. ]
  13998. )
  13999. };
  14000. characterMakers["Verin Raharra"] = () => {
  14001. return makeCharacter(
  14002. "Verin Raharra",
  14003. "Virgo113",
  14004. {
  14005. front: {
  14006. height: math.unit(6, "feet"),
  14007. weight: math.unit(150, "lb"),
  14008. name: "Front",
  14009. image: {
  14010. source: "./media/characters/verin-raharra/front.svg",
  14011. extra: 5019/4835,
  14012. bottom: 0.023
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(7 + 5/12, "feet"),
  14020. default: true
  14021. },
  14022. {
  14023. name: "Upsized",
  14024. height: math.unit(20, "feet")
  14025. },
  14026. ]
  14027. )
  14028. };
  14029. characterMakers["Nakata"] = () => {
  14030. return makeCharacter(
  14031. "Nakata",
  14032. "Dalken",
  14033. {
  14034. front: {
  14035. height: math.unit(7, "feet"),
  14036. weight: math.unit(230, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/nakata/front.svg",
  14040. extra: 1.005,
  14041. bottom: 0.01
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(7, "feet"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Big",
  14053. height: math.unit(14, "feet")
  14054. },
  14055. {
  14056. name: "Macro",
  14057. height: math.unit(400, "feet")
  14058. },
  14059. ]
  14060. )
  14061. };
  14062. characterMakers["Lily"] = () => {
  14063. return makeCharacter(
  14064. "Lily",
  14065. "nexcg",
  14066. {
  14067. front: {
  14068. height: math.unit(4.91, "feet"),
  14069. weight: math.unit(100, "lb"),
  14070. name: "Front",
  14071. image: {
  14072. source: "./media/characters/lily/front.svg",
  14073. extra: 1585/1415,
  14074. bottom: 0.02
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(4.91, "feet"),
  14082. default: true
  14083. },
  14084. ]
  14085. )
  14086. };
  14087. characterMakers["Sheila"] = () => {
  14088. return makeCharacter(
  14089. "Sheila",
  14090. "Miststalker",
  14091. {
  14092. laying: {
  14093. height: math.unit(4 + 4/12, "feet"),
  14094. weight: math.unit(600, "lb"),
  14095. name: "Laying",
  14096. image: {
  14097. source: "./media/characters/sheila/laying.svg",
  14098. extra: 1333/1265,
  14099. bottom: 0.16
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(4 + 4/12, "feet"),
  14107. default: true
  14108. },
  14109. ]
  14110. )
  14111. };
  14112. characterMakers["Sax"] = () => {
  14113. return makeCharacter(
  14114. "Sax",
  14115. "Counts-His-Toes",
  14116. {
  14117. front: {
  14118. height: math.unit(6, "feet"),
  14119. weight: math.unit(190, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/sax/front.svg",
  14123. extra: 1187/973,
  14124. bottom: 0.042
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Micro",
  14131. height: math.unit(4, "inches"),
  14132. default: true
  14133. },
  14134. ]
  14135. )
  14136. };
  14137. characterMakers["Pandora"] = () => {
  14138. return makeCharacter(
  14139. "Pandora",
  14140. "Pandora's Fox",
  14141. {
  14142. front: {
  14143. height: math.unit(6, "feet"),
  14144. weight: math.unit(150, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/pandora/front.svg",
  14148. extra: 2720/2556,
  14149. bottom: 0.015
  14150. }
  14151. },
  14152. back: {
  14153. height: math.unit(6, "feet"),
  14154. weight: math.unit(150, "lb"),
  14155. name: "Back",
  14156. image: {
  14157. source: "./media/characters/pandora/back.svg",
  14158. extra: 2720/2556,
  14159. bottom: 0.01
  14160. }
  14161. },
  14162. beans: {
  14163. height: math.unit(6/8, "feet"),
  14164. name: "Beans",
  14165. image: {
  14166. source: "./media/characters/pandora/beans.svg"
  14167. }
  14168. },
  14169. skirt: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(150, "lb"),
  14172. name: "Skirt",
  14173. image: {
  14174. source: "./media/characters/pandora/skirt.svg",
  14175. extra: 1622/1525,
  14176. bottom: 0.015
  14177. }
  14178. },
  14179. hoodie: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(150, "lb"),
  14182. name: "Hoodie",
  14183. image: {
  14184. source: "./media/characters/pandora/hoodie.svg",
  14185. extra: 1622/1525,
  14186. bottom: 0.015
  14187. }
  14188. },
  14189. casual: {
  14190. height: math.unit(6, "feet"),
  14191. weight: math.unit(150, "lb"),
  14192. name: "Casual",
  14193. image: {
  14194. source: "./media/characters/pandora/casual.svg",
  14195. extra: 1622/1525,
  14196. bottom: 0.015
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(6, "feet")
  14204. },
  14205. {
  14206. name: "Big Steppy",
  14207. height: math.unit(1, "km"),
  14208. default: true
  14209. },
  14210. ]
  14211. )
  14212. };
  14213. characterMakers["Venio Darcony"] = () => {
  14214. return makeCharacter(
  14215. "Venio Darcony",
  14216. "redblackdragon",
  14217. {
  14218. side: {
  14219. height: math.unit(10, "feet"),
  14220. weight: math.unit(800, "kg"),
  14221. name: "Side",
  14222. image: {
  14223. source: "./media/characters/venio-darcony/side.svg",
  14224. extra: 1373/1003,
  14225. bottom: 0.037
  14226. }
  14227. },
  14228. front: {
  14229. height: math.unit(19, "feet"),
  14230. weight: math.unit(800, "kg"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/venio-darcony/front.svg"
  14234. }
  14235. },
  14236. back: {
  14237. height: math.unit(19, "feet"),
  14238. weight: math.unit(800, "kg"),
  14239. name: "Back",
  14240. image: {
  14241. source: "./media/characters/venio-darcony/back.svg"
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(10, "feet")
  14249. },
  14250. {
  14251. name: "Macro",
  14252. height: math.unit(130, "feet"),
  14253. default: true
  14254. },
  14255. {
  14256. name: "Macro+",
  14257. height: math.unit(240, "feet")
  14258. },
  14259. ]
  14260. )
  14261. };
  14262. characterMakers["Veski"] = () => {
  14263. return makeCharacter(
  14264. "Veski",
  14265. "Veski",
  14266. {
  14267. front: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/veski/front.svg",
  14273. extra: 1299/1225,
  14274. bottom: 0.04
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/veski/back.svg",
  14283. extra: 1299/1225,
  14284. bottom: 0.008
  14285. }
  14286. },
  14287. maw: {
  14288. height: math.unit(1.5 * 1.21, "feet"),
  14289. name: "Maw",
  14290. image: {
  14291. source: "./media/characters/veski/maw.svg"
  14292. }
  14293. },
  14294. },
  14295. [
  14296. {
  14297. name: "Macro",
  14298. height: math.unit(2, "km"),
  14299. default: true
  14300. },
  14301. ]
  14302. )
  14303. };
  14304. characterMakers["Isabelle"] = () => {
  14305. return makeCharacter(
  14306. "Isabelle",
  14307. "evilwithin",
  14308. {
  14309. front: {
  14310. height: math.unit(5 + 7/12, "feet"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/isabelle/front.svg",
  14314. extra: 2130/1976,
  14315. bottom: 0.05
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Supermicro",
  14322. height: math.unit(10, "micrometers")
  14323. },
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(1, "inch")
  14327. },
  14328. {
  14329. name: "Tiny",
  14330. height: math.unit(5, "inches")
  14331. },
  14332. {
  14333. name: "Standard",
  14334. height: math.unit(5 + 7/12, "inches")
  14335. },
  14336. {
  14337. name: "Macro",
  14338. height: math.unit(80, "meters"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Megamacro",
  14343. height: math.unit(250, "meters")
  14344. },
  14345. {
  14346. name: "Gigamacro",
  14347. height: math.unit(5, "km")
  14348. },
  14349. {
  14350. name: "Cosmic",
  14351. height: math.unit(2.5e6, "miles")
  14352. },
  14353. ]
  14354. )
  14355. };
  14356. characterMakers["Hanzo"] = () => {
  14357. return makeCharacter(
  14358. "Hanzo",
  14359. "dragondruid",
  14360. {
  14361. front: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(150, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/hanzo/front.svg",
  14367. extra: 374/344,
  14368. bottom: 0.02
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(8, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. )
  14380. };
  14381. characterMakers["Anna"] = () => {
  14382. return makeCharacter(
  14383. "Anna",
  14384. "dragondruid",
  14385. {
  14386. front: {
  14387. height: math.unit(7, "feet"),
  14388. weight: math.unit(130, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/anna/front.svg",
  14392. extra: 169/145,
  14393. bottom: 0.06
  14394. }
  14395. },
  14396. full: {
  14397. height: math.unit(4.96, "feet"),
  14398. weight: math.unit(220, "lb"),
  14399. name: "Full",
  14400. image: {
  14401. source: "./media/characters/anna/full.svg",
  14402. extra: 138/114,
  14403. bottom: 0.15
  14404. }
  14405. },
  14406. tongue: {
  14407. height: math.unit(2.53, "feet"),
  14408. name: "Tongue",
  14409. image: {
  14410. source: "./media/characters/anna/tongue.svg"
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Normal",
  14417. height: math.unit(7, "feet"),
  14418. default: true
  14419. },
  14420. ]
  14421. )
  14422. };
  14423. characterMakers["Ian Corvid"] = () => {
  14424. return makeCharacter(
  14425. "Ian Corvid",
  14426. "IanCorvid",
  14427. {
  14428. front: {
  14429. height: math.unit(7, "feet"),
  14430. weight: math.unit(150, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/ian-corvid/front.svg",
  14434. extra: 150/142,
  14435. bottom: 0.02
  14436. }
  14437. },
  14438. back: {
  14439. height: math.unit(7, "feet"),
  14440. weight: math.unit(150, "lb"),
  14441. name: "Back",
  14442. image: {
  14443. source: "./media/characters/ian-corvid/back.svg",
  14444. extra: 150/143,
  14445. bottom: 0.01
  14446. }
  14447. },
  14448. stomping: {
  14449. height: math.unit(7, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Stomping",
  14452. image: {
  14453. source: "./media/characters/ian-corvid/stomping.svg",
  14454. extra: 76/72
  14455. }
  14456. },
  14457. sitting: {
  14458. height: math.unit(7/1.8, "feet"),
  14459. weight: math.unit(150, "lb"),
  14460. name: "Sitting",
  14461. image: {
  14462. source: "./media/characters/ian-corvid/sitting.svg",
  14463. extra: 1400/1269,
  14464. bottom: 0.15
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Tiny Microw",
  14471. height: math.unit(1, "inch")
  14472. },
  14473. {
  14474. name: "Microw",
  14475. height: math.unit(6, "inches")
  14476. },
  14477. {
  14478. name: "Crow",
  14479. height: math.unit(7 + 1/12, "feet"),
  14480. default: true
  14481. },
  14482. {
  14483. name: "Macrow",
  14484. height: math.unit(176, "feet")
  14485. },
  14486. ]
  14487. )
  14488. };
  14489. characterMakers["Natalie Kellon"] = () => {
  14490. return makeCharacter(
  14491. "Natalie Kellon",
  14492. "lestrange110",
  14493. {
  14494. front: {
  14495. height: math.unit(5 + 7/12, "feet"),
  14496. weight: math.unit(147, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/natalie-kellon/front.svg",
  14500. extra: 1214/1141,
  14501. bottom: 0.02
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Micro",
  14508. height: math.unit(1/16, "inch")
  14509. },
  14510. {
  14511. name: "Tiny",
  14512. height: math.unit(4, "inches")
  14513. },
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(5 + 7/12, "feet"),
  14517. default: true
  14518. },
  14519. {
  14520. name: "Amazon",
  14521. height: math.unit(12, "feet")
  14522. },
  14523. {
  14524. name: "Giantess",
  14525. height: math.unit(160, "meters")
  14526. },
  14527. {
  14528. name: "Titaness",
  14529. height: math.unit(800, "meters")
  14530. },
  14531. ]
  14532. )
  14533. };
  14534. characterMakers["Alluria"] = () => {
  14535. return makeCharacter(
  14536. "Alluria",
  14537. "Sir--Raptor",
  14538. {
  14539. front: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/alluria/front.svg",
  14545. extra: 806/738,
  14546. bottom: 0.01
  14547. }
  14548. },
  14549. side: {
  14550. height: math.unit(6, "feet"),
  14551. weight: math.unit(150, "lb"),
  14552. name: "Side",
  14553. image: {
  14554. source: "./media/characters/alluria/side.svg",
  14555. extra: 800/750,
  14556. }
  14557. },
  14558. back: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Back",
  14562. image: {
  14563. source: "./media/characters/alluria/back.svg",
  14564. extra: 806/738,
  14565. }
  14566. },
  14567. frontMaid: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(150, "lb"),
  14570. name: "Front (Maid)",
  14571. image: {
  14572. source: "./media/characters/alluria/front-maid.svg",
  14573. extra: 806/738,
  14574. bottom: 0.01
  14575. }
  14576. },
  14577. sideMaid: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(150, "lb"),
  14580. name: "Side (Maid)",
  14581. image: {
  14582. source: "./media/characters/alluria/side-maid.svg",
  14583. extra: 800/750,
  14584. bottom: 0.005
  14585. }
  14586. },
  14587. backMaid: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(150, "lb"),
  14590. name: "Back (Maid)",
  14591. image: {
  14592. source: "./media/characters/alluria/back-maid.svg",
  14593. extra: 806/738,
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Micro",
  14600. height: math.unit(6, "inches"),
  14601. default: true
  14602. },
  14603. ]
  14604. )
  14605. };
  14606. characterMakers["Kyle"] = () => {
  14607. return makeCharacter(
  14608. "Kyle",
  14609. "Jasmith",
  14610. {
  14611. front: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(150, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/kyle/front.svg",
  14617. extra: 1069/962,
  14618. bottom: 77.228/1727.45
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(150, "feet"),
  14626. default: true
  14627. },
  14628. ]
  14629. )
  14630. };
  14631. characterMakers["Duncan"] = () => {
  14632. return makeCharacter(
  14633. "Duncan",
  14634. "Duncan",
  14635. {
  14636. front: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(300, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/duncan/front.svg",
  14642. extra: 1650/1482,
  14643. bottom: 0.05
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Macro",
  14650. height: math.unit(100, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. )
  14655. };
  14656. characterMakers["Memory"] = () => {
  14657. return makeCharacter(
  14658. "Memory",
  14659. "boringcactus",
  14660. {
  14661. front: {
  14662. height: math.unit(5 + 4/12, "feet"),
  14663. weight: math.unit(220, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/memory/front.svg",
  14667. extra: 3641/3545,
  14668. bottom: 0.03
  14669. }
  14670. },
  14671. back: {
  14672. height: math.unit(5 + 4/12, "feet"),
  14673. weight: math.unit(220, "lb"),
  14674. name: "Back",
  14675. image: {
  14676. source: "./media/characters/memory/back.svg",
  14677. extra: 3641/3545,
  14678. bottom: 0.025
  14679. }
  14680. },
  14681. frontSkirt: {
  14682. height: math.unit(5 + 4/12, "feet"),
  14683. weight: math.unit(220, "lb"),
  14684. name: "Front (Skirt)",
  14685. image: {
  14686. source: "./media/characters/memory/front-skirt.svg",
  14687. extra: 3641/3545,
  14688. bottom: 0.03
  14689. }
  14690. },
  14691. frontDress: {
  14692. height: math.unit(5 + 4/12, "feet"),
  14693. weight: math.unit(220, "lb"),
  14694. name: "Front (Dress)",
  14695. image: {
  14696. source: "./media/characters/memory/front-dress.svg",
  14697. extra: 3641/3545,
  14698. bottom: 0.03
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Micro",
  14705. height: math.unit(6, "inches"),
  14706. default: true
  14707. },
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(5 + 4/12, "feet")
  14711. },
  14712. ]
  14713. )
  14714. };
  14715. characterMakers["Luno"] = () => {
  14716. return makeCharacter(
  14717. "Luno",
  14718. "Jamesy",
  14719. {
  14720. front: {
  14721. height: math.unit(4 + 11/12, "feet"),
  14722. weight: math.unit(100, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/luno/front.svg",
  14726. extra: 1535/1487,
  14727. bottom: 0.03
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Micro",
  14734. height: math.unit(3, "inches")
  14735. },
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(4 + 11/12, "feet"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Macro",
  14743. height: math.unit(300, "feet")
  14744. },
  14745. {
  14746. name: "Megamacro",
  14747. height: math.unit(700, "miles")
  14748. },
  14749. ]
  14750. )
  14751. };
  14752. characterMakers["Jamesy"] = () => {
  14753. return makeCharacter(
  14754. "Jamesy",
  14755. "Jamesy",
  14756. {
  14757. front: {
  14758. height: math.unit(6 + 2/12, "feet"),
  14759. weight: math.unit(170, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/jamesy/front.svg",
  14763. extra: 440/382,
  14764. bottom: 0.005
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Micro",
  14771. height: math.unit(3, "inches")
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(6 + 2/12, "feet"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(300, "feet")
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(700, "miles")
  14785. },
  14786. ]
  14787. )
  14788. };
  14789. characterMakers["Mark"] = () => {
  14790. return makeCharacter(
  14791. "Mark",
  14792. "ich",
  14793. {
  14794. front: {
  14795. height: math.unit(6, "feet"),
  14796. weight: math.unit(160, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/mark/front.svg",
  14800. extra: 3300/3100,
  14801. bottom: 136.42/3440.47
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Macro",
  14808. height: math.unit(120, "meters")
  14809. },
  14810. {
  14811. name: "Bigger Macro",
  14812. height: math.unit(350, "meters")
  14813. },
  14814. {
  14815. name: "Megamacro",
  14816. height: math.unit(8, "km"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Continental",
  14821. height: math.unit(4550, "km")
  14822. },
  14823. {
  14824. name: "Planetary",
  14825. height: math.unit(65000, "km")
  14826. },
  14827. ]
  14828. )
  14829. };
  14830. characterMakers["Mac"] = () => {
  14831. return makeCharacter(
  14832. "Mac",
  14833. "Macroceli",
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(400, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/mac/front.svg",
  14841. extra: 1048/987.7,
  14842. bottom: 60/1107.6,
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Macro",
  14849. height: math.unit(500, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. )
  14854. };
  14855. characterMakers["Bari"] = () => {
  14856. return makeCharacter(
  14857. "Bari",
  14858. "Bariamph",
  14859. {
  14860. front: {
  14861. height: math.unit(5 + 2/12, "feet"),
  14862. weight: math.unit(190, "lb"),
  14863. name: "Front",
  14864. image: {
  14865. source: "./media/characters/bari/front.svg",
  14866. extra: 3156/2880,
  14867. bottom: 0.03
  14868. }
  14869. },
  14870. back: {
  14871. height: math.unit(5 + 2/12, "feet"),
  14872. weight: math.unit(190, "lb"),
  14873. name: "Back",
  14874. image: {
  14875. source: "./media/characters/bari/back.svg",
  14876. extra: 3260/2834,
  14877. bottom: 0.025
  14878. }
  14879. },
  14880. frontPlush: {
  14881. height: math.unit(5 + 2/12, "feet"),
  14882. weight: math.unit(190, "lb"),
  14883. name: "Front (Plush)",
  14884. image: {
  14885. source: "./media/characters/bari/front-plush.svg",
  14886. extra: 1112/1061,
  14887. bottom: 0.002
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Micro",
  14894. height: math.unit(3, "inches")
  14895. },
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(5 + 2/12, "feet"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(20, "feet")
  14904. },
  14905. ]
  14906. )
  14907. };
  14908. characterMakers["Hunter Misha Raven"] = () => {
  14909. return makeCharacter(
  14910. "Hunter Misha Raven",
  14911. "ashtrek",
  14912. {
  14913. front: {
  14914. height: math.unit(6 + 1/12, "feet"),
  14915. weight: math.unit(275, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/hunter-misha-raven/front.svg"
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Mortal",
  14925. height: math.unit(6 + 1/12, "feet")
  14926. },
  14927. {
  14928. name: "Divine",
  14929. height: math.unit(1.12134e34, "parsecs"),
  14930. default: true
  14931. },
  14932. ]
  14933. )
  14934. };
  14935. characterMakers["Max Calore"] = () => {
  14936. return makeCharacter(
  14937. "Max Calore",
  14938. "flamestar",
  14939. {
  14940. front: {
  14941. height: math.unit(6 + 3/12, "feet"),
  14942. weight: math.unit(220, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/max-calore/front.svg",
  14946. extra: 1700/1648,
  14947. bottom: 0.01
  14948. }
  14949. },
  14950. back: {
  14951. height: math.unit(6 + 3/12, "feet"),
  14952. weight: math.unit(220, "lb"),
  14953. name: "Back",
  14954. image: {
  14955. source: "./media/characters/max-calore/back.svg",
  14956. extra: 1700/1648,
  14957. bottom: 0.01
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(6 + 3/12, "feet"),
  14965. default: true
  14966. },
  14967. ]
  14968. )
  14969. };
  14970. characterMakers["Aspen"] = () => {
  14971. return makeCharacter(
  14972. "Aspen",
  14973. "Fidchell",
  14974. {
  14975. side: {
  14976. height: math.unit(2 + 8/12, "feet"),
  14977. weight: math.unit(99, "lb"),
  14978. name: "Side",
  14979. image: {
  14980. source: "./media/characters/aspen/side.svg",
  14981. extra: 152/138,
  14982. bottom: 0.032
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(2 + 8/12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. )
  14994. };
  14995. characterMakers["Sheila (Wolf)"] = () => {
  14996. return makeCharacter(
  14997. "Sheila (Wolf)",
  14998. "Fidchell",
  14999. {
  15000. side: {
  15001. height: math.unit(3 + 2/12, "feet"),
  15002. weight: math.unit(224, "lb"),
  15003. name: "Side",
  15004. image: {
  15005. source: "./media/characters/sheila-wolf/side.svg",
  15006. extra: 179/166,
  15007. bottom: 0.03
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(3 + 2/12, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. )
  15019. };
  15020. characterMakers["Michelle"] = () => {
  15021. return makeCharacter(
  15022. "Michelle",
  15023. "Fidchell",
  15024. {
  15025. side: {
  15026. height: math.unit(1 + 9/12, "feet"),
  15027. weight: math.unit(38, "lb"),
  15028. name: "Side",
  15029. image: {
  15030. source: "./media/characters/michelle/side.svg",
  15031. extra: 147/136.7,
  15032. bottom: 0.03
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(1 + 9/12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. )
  15044. };
  15045. characterMakers["Nino"] = () => {
  15046. return makeCharacter(
  15047. "Nino",
  15048. "Fidchell",
  15049. {
  15050. front: {
  15051. height: math.unit(1 + 1/12, "feet"),
  15052. weight: math.unit(18, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/nino/front.svg"
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(1 + 1/12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. )
  15067. };
  15068. characterMakers["Viola"] = () => {
  15069. return makeCharacter(
  15070. "Viola",
  15071. "Fidchell",
  15072. {
  15073. front: {
  15074. height: math.unit(1, "feet"),
  15075. weight: math.unit(16, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/viola/front.svg"
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(1, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. )
  15090. };
  15091. characterMakers["Atlas"] = () => {
  15092. return makeCharacter(
  15093. "Atlas",
  15094. "Fidchell",
  15095. {
  15096. front: {
  15097. height: math.unit(6 + 5/12, "feet"),
  15098. weight: math.unit(580, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/atlas/front.svg",
  15102. extra: 298.5/290,
  15103. bottom: 0.015
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(6 + 5/12, "feet"),
  15111. default: true
  15112. },
  15113. ]
  15114. )
  15115. };
  15116. characterMakers["Davy"] = () => {
  15117. return makeCharacter(
  15118. "Davy",
  15119. "Fidchell",
  15120. {
  15121. side: {
  15122. height: math.unit(1 + 10/12, "feet"),
  15123. weight: math.unit(25, "lb"),
  15124. name: "Side",
  15125. image: {
  15126. source: "./media/characters/davy/side.svg",
  15127. extra: 200/170,
  15128. bottom: 0.01
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Normal",
  15135. height: math.unit(1 + 10/12, "feet"),
  15136. default: true
  15137. },
  15138. ]
  15139. )
  15140. };
  15141. characterMakers["Fiona"] = () => {
  15142. return makeCharacter(
  15143. "Fiona",
  15144. "Fidchell",
  15145. {
  15146. side: {
  15147. height: math.unit(4 + 8/12, "feet"),
  15148. weight: math.unit(166, "lb"),
  15149. name: "Side",
  15150. image: {
  15151. source: "./media/characters/fiona/side.svg",
  15152. extra: 232/220,
  15153. bottom: 0.03
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(4 + 8/12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. )
  15165. };
  15166. characterMakers["Lyla"] = () => {
  15167. return makeCharacter(
  15168. "Lyla",
  15169. "Fidchell",
  15170. {
  15171. front: {
  15172. height: math.unit(2, "feet"),
  15173. weight: math.unit(62, "lb"),
  15174. name: "Front",
  15175. image: {
  15176. source: "./media/characters/lyla/front.svg",
  15177. bottom: 0.1
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(2, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. )
  15189. };
  15190. characterMakers["Perseus"] = () => {
  15191. return makeCharacter(
  15192. "Perseus",
  15193. "Fidchell",
  15194. {
  15195. side: {
  15196. height: math.unit(1.8, "feet"),
  15197. weight: math.unit(44, "lb"),
  15198. name: "Side",
  15199. image: {
  15200. source: "./media/characters/perseus/side.svg",
  15201. bottom: 0.21
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(1.8, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. )
  15213. };
  15214. characterMakers["Remus"] = () => {
  15215. return makeCharacter(
  15216. "Remus",
  15217. "Fidchell",
  15218. {
  15219. side: {
  15220. height: math.unit(4 + 2/12, "feet"),
  15221. weight: math.unit(20, "lb"),
  15222. name: "Side",
  15223. image: {
  15224. source: "./media/characters/remus/side.svg"
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(4 + 2/12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. )
  15236. };
  15237. characterMakers["Raf"] = () => {
  15238. return makeCharacter(
  15239. "Raf",
  15240. "the_raf",
  15241. {
  15242. front: {
  15243. height: math.unit(4 + 11/12, "feet"),
  15244. weight: math.unit(114, "lb"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/raf/front.svg",
  15248. bottom: 0.01
  15249. }
  15250. },
  15251. side: {
  15252. height: math.unit(4 + 11/12, "feet"),
  15253. weight: math.unit(114, "lb"),
  15254. name: "Side",
  15255. image: {
  15256. source: "./media/characters/raf/side.svg",
  15257. bottom: 0.005
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Micro",
  15264. height: math.unit(2, "inches")
  15265. },
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(4 + 11/12, "feet"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Macro",
  15273. height: math.unit(70, "feet")
  15274. },
  15275. ]
  15276. )
  15277. };
  15278. characterMakers["Liam Einarr"] = () => {
  15279. return makeCharacter(
  15280. "Liam Einarr",
  15281. "LiamEinarr",
  15282. {
  15283. front: {
  15284. height: math.unit(1.5, "meters"),
  15285. weight: math.unit(68, "kg"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/liam-einarr/front.svg",
  15289. extra: 2822/2666
  15290. }
  15291. },
  15292. back: {
  15293. height: math.unit(1.5, "meters"),
  15294. weight: math.unit(68, "kg"),
  15295. name: "Back",
  15296. image: {
  15297. source: "./media/characters/liam-einarr/back.svg",
  15298. extra: 2822/2666,
  15299. bottom: 0.015
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(1.5, "meters"),
  15307. default: true
  15308. },
  15309. {
  15310. name: "Macro",
  15311. height: math.unit(150, "meters")
  15312. },
  15313. {
  15314. name: "Megamacro",
  15315. height: math.unit(35, "km")
  15316. },
  15317. ]
  15318. )
  15319. };
  15320. characterMakers["Linda"] = () => {
  15321. return makeCharacter(
  15322. "Linda",
  15323. "Dalken",
  15324. {
  15325. front: {
  15326. height: math.unit(6, "feet"),
  15327. weight: math.unit(75, "kg"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/linda/front.svg",
  15331. extra: 930/874,
  15332. bottom: 0.004
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(6, "feet"),
  15340. default: true
  15341. },
  15342. ]
  15343. )
  15344. };
  15345. characterMakers["Caylex"] = () => {
  15346. return makeCharacter(
  15347. "Caylex",
  15348. "ArgentVZ",
  15349. {
  15350. front: {
  15351. height: math.unit(6 + 8/12, "feet"),
  15352. weight: math.unit(220, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/caylex/front.svg",
  15356. extra: 821/772,
  15357. bottom: 0.07
  15358. }
  15359. },
  15360. back: {
  15361. height: math.unit(6 + 8/12, "feet"),
  15362. weight: math.unit(220, "lb"),
  15363. name: "Back",
  15364. image: {
  15365. source: "./media/characters/caylex/back.svg",
  15366. extra: 821/772,
  15367. bottom: 0.022
  15368. }
  15369. },
  15370. hand: {
  15371. height: math.unit(1.25, "feet"),
  15372. name: "Hand",
  15373. image: {
  15374. source: "./media/characters/caylex/hand.svg"
  15375. }
  15376. },
  15377. foot: {
  15378. height: math.unit(1.6, "feet"),
  15379. name: "Foot",
  15380. image: {
  15381. source: "./media/characters/caylex/foot.svg"
  15382. }
  15383. },
  15384. armored: {
  15385. height: math.unit(6 + 8/12, "feet"),
  15386. weight: math.unit(250, "lb"),
  15387. name: "Armored",
  15388. image: {
  15389. source: "./media/characters/caylex/armored.svg",
  15390. extra: 1420/1310,
  15391. bottom: 0.045
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(6 + 8/12, "feet"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Normal+",
  15403. height: math.unit(12, "feet")
  15404. },
  15405. ]
  15406. )
  15407. };
  15408. characterMakers["Alana"] = () => {
  15409. return makeCharacter(
  15410. "Alana",
  15411. "Adeleide",
  15412. {
  15413. front: {
  15414. height: math.unit(7 + 6/12, "feet"),
  15415. weight: math.unit(288, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/alana/front.svg",
  15419. extra: 679/653,
  15420. bottom: 22.5/701
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(7 + 6/12, "feet")
  15428. },
  15429. {
  15430. name: "Large",
  15431. height: math.unit(50, "feet")
  15432. },
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(100, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Macro+",
  15440. height: math.unit(200, "feet")
  15441. },
  15442. ]
  15443. )
  15444. };
  15445. characterMakers["Hasani"] = () => {
  15446. return makeCharacter(
  15447. "Hasani",
  15448. "BishopBun",
  15449. {
  15450. front: {
  15451. height: math.unit(6 + 1/12, "feet"),
  15452. weight: math.unit(210, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/hasani/front.svg",
  15456. extra: 244/232,
  15457. bottom: 0.01
  15458. }
  15459. },
  15460. back: {
  15461. height: math.unit(6 + 1/12, "feet"),
  15462. weight: math.unit(210, "lb"),
  15463. name: "Back",
  15464. image: {
  15465. source: "./media/characters/hasani/back.svg",
  15466. extra: 244/232,
  15467. bottom: 0.01
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(6 + 1/12, "feet")
  15475. },
  15476. {
  15477. name: "Macro",
  15478. height: math.unit(175, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. )
  15483. };
  15484. characterMakers["Nita"] = () => {
  15485. return makeCharacter(
  15486. "Nita",
  15487. "Ich",
  15488. {
  15489. front: {
  15490. height: math.unit(1.82, "meters"),
  15491. weight: math.unit(140, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/nita/front.svg",
  15495. extra: 2473/2363,
  15496. bottom: 0.01
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(1.82, "m")
  15504. },
  15505. {
  15506. name: "Macro",
  15507. height: math.unit(300, "m")
  15508. },
  15509. {
  15510. name: "Mistake Canon",
  15511. height: math.unit(0.5, "miles"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Big Mistake",
  15516. height: math.unit(13, "miles")
  15517. },
  15518. {
  15519. name: "Playing God",
  15520. height: math.unit(2450, "miles")
  15521. },
  15522. ]
  15523. )
  15524. };
  15525. characterMakers["Shiriko"] = () => {
  15526. return makeCharacter(
  15527. "Shiriko",
  15528. "Shiriko",
  15529. {
  15530. front: {
  15531. height: math.unit(4, "feet"),
  15532. weight: math.unit(120, "lb"),
  15533. name: "Front",
  15534. image: {
  15535. source: "./media/characters/shiriko/front.svg",
  15536. extra: 195/188
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(4, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. )
  15548. };
  15549. characterMakers["Deja"] = () => {
  15550. return makeCharacter(
  15551. "Deja",
  15552. "dejaroo",
  15553. {
  15554. front: {
  15555. height: math.unit(6, "feet"),
  15556. name: "front",
  15557. image: {
  15558. source: "./media/characters/deja/front.svg",
  15559. extra: 926/840,
  15560. bottom: 0.07
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Planck Length",
  15567. height: math.unit(1.6e-35, "meters")
  15568. },
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(30.48, "meters"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Universal",
  15576. height: math.unit(8.8e26, "meters")
  15577. },
  15578. ]
  15579. )
  15580. };
  15581. characterMakers["Anima"] = () => {
  15582. return makeCharacter(
  15583. "Anima",
  15584. "Anima",
  15585. {
  15586. side: {
  15587. height: math.unit(8, "feet"),
  15588. weight: math.unit(6300, "lb"),
  15589. name: "Side",
  15590. image: {
  15591. source: "./media/characters/anima/side.svg",
  15592. bottom: 0.035
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Normal",
  15599. height: math.unit(8, "feet"),
  15600. default: true
  15601. },
  15602. ]
  15603. )
  15604. };
  15605. characterMakers["Bianca"] = () => {
  15606. return makeCharacter(
  15607. "Bianca",
  15608. "Sdocat",
  15609. {
  15610. front: {
  15611. height: math.unit(8, "feet"),
  15612. weight: math.unit(350, "lb"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/bianca/front.svg",
  15616. extra: 234/225,
  15617. bottom: 0.03
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(8, "feet"),
  15625. default: true
  15626. },
  15627. ]
  15628. )
  15629. };
  15630. characterMakers["Adinia"] = () => {
  15631. return makeCharacter(
  15632. "Adinia",
  15633. "Sdocat",
  15634. {
  15635. front: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(150, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/adinia/front.svg",
  15641. extra: 1845/1672,
  15642. bottom: 0.02
  15643. }
  15644. },
  15645. back: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(150, "lb"),
  15648. name: "Back",
  15649. image: {
  15650. source: "./media/characters/adinia/back.svg",
  15651. extra: 1845/1672,
  15652. bottom: 0.002
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(11 + 5/12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. )
  15664. };
  15665. characterMakers["Lykasa"] = () => {
  15666. return makeCharacter(
  15667. "Lykasa",
  15668. "Roxas00137",
  15669. {
  15670. front: {
  15671. height: math.unit(3, "meters"),
  15672. weight: math.unit(200, "kg"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/lykasa/front.svg",
  15676. extra: 1076/976,
  15677. bottom: 0.06
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(3, "meters")
  15685. },
  15686. {
  15687. name: "Kaiku",
  15688. height: math.unit(120, "meters"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Mega Kaiju",
  15693. height: math.unit(240, "km")
  15694. },
  15695. {
  15696. name: "Giga Kaiju",
  15697. height: math.unit(400, "megameters")
  15698. },
  15699. {
  15700. name: "Tera Kaiju",
  15701. height: math.unit(800, "gigameters")
  15702. },
  15703. {
  15704. name: "Kaiju Dragon Goddess",
  15705. height: math.unit(26, "zettaparsecs")
  15706. },
  15707. ]
  15708. )
  15709. };
  15710. characterMakers["Malfaren"] = () => {
  15711. return makeCharacter(
  15712. "Malfaren",
  15713. "Malfaren",
  15714. {
  15715. side: {
  15716. height: math.unit(283/124*6, "feet"),
  15717. weight: math.unit(35000, "lb"),
  15718. name: "Side",
  15719. image: {
  15720. source: "./media/characters/malfaren/side.svg",
  15721. extra: 2500/1010,
  15722. bottom: 0.01
  15723. }
  15724. },
  15725. front: {
  15726. height: math.unit(22.36, "feet"),
  15727. weight: math.unit(35000, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/malfaren/front.svg",
  15731. extra: 1631/1476,
  15732. bottom: 0.01
  15733. }
  15734. },
  15735. maw: {
  15736. height: math.unit(6.9, "feet"),
  15737. name: "Maw",
  15738. image: {
  15739. source: "./media/characters/malfaren/maw.svg"
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Big",
  15746. height: math.unit(283/162*6, "feet"),
  15747. },
  15748. {
  15749. name: "Bigger",
  15750. height: math.unit(283/124*6, "feet")
  15751. },
  15752. {
  15753. name: "Massive",
  15754. height: math.unit(283/92*6, "feet"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "👀💦",
  15759. height: math.unit(283/73*6, "feet"),
  15760. },
  15761. ]
  15762. )
  15763. };
  15764. characterMakers["Kernel"] = () => {
  15765. return makeCharacter(
  15766. "Kernel",
  15767. "KernelDecoy",
  15768. {
  15769. front: {
  15770. height: math.unit(1.7, "m"),
  15771. weight: math.unit(70, "kg"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/kernel/front.svg",
  15775. extra: 222/210,
  15776. bottom: 0.007
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Nano",
  15783. height: math.unit(17, "micrometers")
  15784. },
  15785. {
  15786. name: "Micro",
  15787. height: math.unit(1.7, "mm")
  15788. },
  15789. {
  15790. name: "Small",
  15791. height: math.unit(1.7, "cm")
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(1.7, "m"),
  15796. default: true
  15797. },
  15798. ]
  15799. )
  15800. };
  15801. characterMakers["Jayne Folest"] = () => {
  15802. return makeCharacter(
  15803. "Jayne Folest",
  15804. "JayneFolest",
  15805. {
  15806. front: {
  15807. height: math.unit(1.75, "meters"),
  15808. weight: math.unit(65, "kg"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/jayne-folest/front.svg",
  15812. extra: 2115/2007,
  15813. bottom: 0.02
  15814. }
  15815. },
  15816. back: {
  15817. height: math.unit(1.75, "meters"),
  15818. weight: math.unit(65, "kg"),
  15819. name: "Back",
  15820. image: {
  15821. source: "./media/characters/jayne-folest/back.svg",
  15822. extra: 2115/2007,
  15823. bottom: 0.005
  15824. }
  15825. },
  15826. frontClothed: {
  15827. height: math.unit(1.75, "meters"),
  15828. weight: math.unit(65, "kg"),
  15829. name: "Front (Clothed)",
  15830. image: {
  15831. source: "./media/characters/jayne-folest/front-clothed.svg",
  15832. extra: 2115/2007,
  15833. bottom: 0.035
  15834. }
  15835. },
  15836. hand: {
  15837. height: math.unit(1/1.260, "feet"),
  15838. name: "Hand",
  15839. image: {
  15840. source: "./media/characters/jayne-folest/hand.svg"
  15841. }
  15842. },
  15843. foot: {
  15844. height: math.unit(1/0.918, "feet"),
  15845. name: "Foot",
  15846. image: {
  15847. source: "./media/characters/jayne-folest/foot.svg"
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Micro",
  15854. height: math.unit(4, "cm")
  15855. },
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(1.75, "meters")
  15859. },
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(47.5, "meters"),
  15863. default: true
  15864. },
  15865. ]
  15866. )
  15867. };
  15868. characterMakers["Algier"] = () => {
  15869. return makeCharacter(
  15870. "Algier",
  15871. "Silas",
  15872. {
  15873. front: {
  15874. height: math.unit(180, "cm"),
  15875. weight: math.unit(70, "kg"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/algier/front.svg",
  15879. extra: 596/572,
  15880. bottom: 0.04
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(180, "cm"),
  15885. weight: math.unit(70, "kg"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/algier/back.svg",
  15889. extra: 596/572,
  15890. bottom: 0.025
  15891. }
  15892. },
  15893. frontdressed: {
  15894. height: math.unit(180, "cm"),
  15895. weight: math.unit(150, "kg"),
  15896. name: "Front-dressed",
  15897. image: {
  15898. source: "./media/characters/algier/front-dressed.svg",
  15899. extra: 596/572,
  15900. bottom: 0.038
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Micro",
  15907. height: math.unit(5, "cm")
  15908. },
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(180, "cm"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Macro",
  15916. height: math.unit(64, "m")
  15917. },
  15918. ]
  15919. )
  15920. };
  15921. characterMakers["Pretzel"] = () => {
  15922. return makeCharacter(
  15923. "Pretzel",
  15924. "Serpentus",
  15925. {
  15926. upright: {
  15927. height: math.unit(7, "feet"),
  15928. weight: math.unit(300, "lb"),
  15929. name: "Upright",
  15930. image: {
  15931. source: "./media/characters/pretzel/upright.svg",
  15932. extra: 534/522,
  15933. bottom: 0.065
  15934. }
  15935. },
  15936. sprawling: {
  15937. height: math.unit(3.75, "feet"),
  15938. weight: math.unit(300, "lb"),
  15939. name: "Sprawling",
  15940. image: {
  15941. source: "./media/characters/pretzel/sprawling.svg",
  15942. extra: 314/281,
  15943. bottom: 0.1
  15944. }
  15945. },
  15946. tongue: {
  15947. height: math.unit(2, "feet"),
  15948. name: "Tongue",
  15949. image: {
  15950. source: "./media/characters/pretzel/tongue.svg"
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(7, "feet"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Oversized",
  15962. height: math.unit(15, "feet")
  15963. },
  15964. {
  15965. name: "Huge",
  15966. height: math.unit(30, "feet")
  15967. },
  15968. {
  15969. name: "Macro",
  15970. height: math.unit(250, "feet")
  15971. },
  15972. ]
  15973. )
  15974. };
  15975. characterMakers["Roxi"] = () => {
  15976. return makeCharacter(
  15977. "Roxi",
  15978. "carthusflame",
  15979. {
  15980. sideFront: {
  15981. height: math.unit(5 + 2/12, "feet"),
  15982. weight: math.unit(120, "lb"),
  15983. name: "Front Side",
  15984. image: {
  15985. source: "./media/characters/roxi/side-front.svg",
  15986. extra: 2924/2717,
  15987. bottom: 0.08
  15988. }
  15989. },
  15990. sideBack: {
  15991. height: math.unit(5 + 2/12, "feet"),
  15992. weight: math.unit(120, "lb"),
  15993. name: "Back Side",
  15994. image: {
  15995. source: "./media/characters/roxi/side-back.svg",
  15996. extra: 2904/2693,
  15997. bottom: 0.06
  15998. }
  15999. },
  16000. front: {
  16001. height: math.unit(5 + 2/12, "feet"),
  16002. weight: math.unit(120, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/roxi/front.svg",
  16006. extra: 2028/1907,
  16007. bottom: 0.01
  16008. }
  16009. },
  16010. frontAlt: {
  16011. height: math.unit(5 + 2/12, "feet"),
  16012. weight: math.unit(120, "lb"),
  16013. name: "Front (Alt)",
  16014. image: {
  16015. source: "./media/characters/roxi/front-alt.svg",
  16016. extra: 1828/1798,
  16017. bottom: 0.01
  16018. }
  16019. },
  16020. sitting: {
  16021. height: math.unit(2.8, "feet"),
  16022. weight: math.unit(120, "lb"),
  16023. name: "Sitting",
  16024. image: {
  16025. source: "./media/characters/roxi/sitting.svg",
  16026. extra: 2660/2462,
  16027. bottom: 0.1
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(5 + 2/12, "feet"),
  16035. default: true
  16036. },
  16037. ]
  16038. )
  16039. };
  16040. characterMakers["Shadow"] = () => {
  16041. return makeCharacter(
  16042. "Shadow",
  16043. "MKShadowdrake",
  16044. {
  16045. side: {
  16046. height: math.unit(55, "feet"),
  16047. weight: math.unit(153, "tons"),
  16048. name: "Side",
  16049. image: {
  16050. source: "./media/characters/shadow/side.svg",
  16051. extra: 701/628,
  16052. bottom: 0.02
  16053. }
  16054. },
  16055. flying: {
  16056. height: math.unit(145, "feet"),
  16057. weight: math.unit(153, "tons"),
  16058. name: "Flying",
  16059. image: {
  16060. source: "./media/characters/shadow/flying.svg"
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(55, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. )
  16072. };
  16073. characterMakers["Marcie"] = () => {
  16074. return makeCharacter(
  16075. "Marcie",
  16076. "Macroceli",
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(200, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/marcie/front.svg",
  16084. extra: 960/876,
  16085. bottom: 58/1017.87
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Macro",
  16092. height: math.unit(1, "mile"),
  16093. default: true
  16094. },
  16095. ]
  16096. )
  16097. };
  16098. characterMakers["Kachina"] = () => {
  16099. return makeCharacter(
  16100. "Kachina",
  16101. "Trisha",
  16102. {
  16103. front: {
  16104. height: math.unit(7, "feet"),
  16105. weight: math.unit(200, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/kachina/front.svg",
  16109. extra: 1290.68/1119,
  16110. bottom: 36.5/1327.18
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(7, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. )
  16122. };
  16123. characterMakers["Kash"] = () => {
  16124. return makeCharacter(
  16125. "Kash",
  16126. "4wrz",
  16127. {
  16128. looking: {
  16129. height: math.unit(2, "meters"),
  16130. weight: math.unit(300, "kg"),
  16131. name: "Looking",
  16132. image: {
  16133. source: "./media/characters/kash/looking.svg",
  16134. extra: 474/344,
  16135. bottom: 0.03
  16136. }
  16137. },
  16138. side: {
  16139. height: math.unit(2, "meters"),
  16140. weight: math.unit(300, "kg"),
  16141. name: "Side",
  16142. image: {
  16143. source: "./media/characters/kash/side.svg",
  16144. extra: 302/251,
  16145. bottom: 0.03
  16146. }
  16147. },
  16148. front: {
  16149. height: math.unit(2, "meters"),
  16150. weight: math.unit(300, "kg"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/kash/front.svg",
  16154. extra: 495/360,
  16155. bottom: 0.015
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(2, "meters"),
  16163. default: true
  16164. },
  16165. {
  16166. name: "Big",
  16167. height: math.unit(3, "meters")
  16168. },
  16169. {
  16170. name: "Large",
  16171. height: math.unit(5, "meters")
  16172. },
  16173. ]
  16174. )
  16175. };
  16176. characterMakers["Lalim"] = () => {
  16177. return makeCharacter(
  16178. "Lalim",
  16179. "Bruyaglovae",
  16180. {
  16181. feeding: {
  16182. height: math.unit(6.7, "feet"),
  16183. weight: math.unit(350, "lb"),
  16184. name: "Feeding",
  16185. image: {
  16186. source: "./media/characters/lalim/feeding.svg",
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(6.7, "feet"),
  16194. default: true
  16195. },
  16196. ]
  16197. )
  16198. };
  16199. characterMakers["De'Vout"] = () => {
  16200. return makeCharacter(
  16201. "De'Vout",
  16202. "Bruyaglovae",
  16203. {
  16204. front: {
  16205. height: math.unit(9.5, "feet"),
  16206. weight: math.unit(600, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/de'vout/front.svg",
  16210. extra: 1443/1328,
  16211. bottom: 0.025
  16212. }
  16213. },
  16214. back: {
  16215. height: math.unit(9.5, "feet"),
  16216. weight: math.unit(600, "lb"),
  16217. name: "Back",
  16218. image: {
  16219. source: "./media/characters/de'vout/back.svg",
  16220. extra: 1443/1328
  16221. }
  16222. },
  16223. frontDressed: {
  16224. height: math.unit(9.5, "feet"),
  16225. weight: math.unit(600, "lb"),
  16226. name: "Front (Dressed",
  16227. image: {
  16228. source: "./media/characters/de'vout/front-dressed.svg",
  16229. extra: 1443/1328,
  16230. bottom: 0.025
  16231. }
  16232. },
  16233. backDressed: {
  16234. height: math.unit(9.5, "feet"),
  16235. weight: math.unit(600, "lb"),
  16236. name: "Back (Dressed",
  16237. image: {
  16238. source: "./media/characters/de'vout/back-dressed.svg",
  16239. extra: 1443/1328
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(9.5, "feet"),
  16247. default: true
  16248. },
  16249. ]
  16250. )
  16251. };
  16252. characterMakers["Talana"] = () => {
  16253. return makeCharacter(
  16254. "Talana",
  16255. "Bruyaglovae",
  16256. {
  16257. front: {
  16258. height: math.unit(8, "feet"),
  16259. weight: math.unit(225, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/talana/front.svg",
  16263. extra: 1410/1300,
  16264. bottom: 0.015
  16265. }
  16266. },
  16267. frontDressed: {
  16268. height: math.unit(8, "feet"),
  16269. weight: math.unit(225, "lb"),
  16270. name: "Front (Dressed",
  16271. image: {
  16272. source: "./media/characters/talana/front-dressed.svg",
  16273. extra: 1410/1300,
  16274. bottom: 0.015
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(8, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. )
  16286. };
  16287. characterMakers["Xeauvok"] = () => {
  16288. return makeCharacter(
  16289. "Xeauvok",
  16290. "Bruyaglovae",
  16291. {
  16292. side: {
  16293. height: math.unit(7.2, "feet"),
  16294. weight: math.unit(150, "lb"),
  16295. name: "Side",
  16296. image: {
  16297. source: "./media/characters/xeauvok/side.svg",
  16298. extra: 1975/1523,
  16299. bottom: 0.07
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(7.2, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. )
  16311. };
  16312. characterMakers["Zara"] = () => {
  16313. return makeCharacter(
  16314. "Zara",
  16315. "Dalken",
  16316. {
  16317. side: {
  16318. height: math.unit(10, "feet"),
  16319. weight: math.unit(900, "kg"),
  16320. name: "Side",
  16321. image: {
  16322. source: "./media/characters/zara/side.svg",
  16323. extra: 504/498
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(10, "feet"),
  16331. default: true
  16332. },
  16333. ]
  16334. )
  16335. };
  16336. characterMakers["Richard (Dragon)"] = () => {
  16337. return makeCharacter(
  16338. "Richard (Dragon)",
  16339. "Xanaomin",
  16340. {
  16341. side: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(150, "lb"),
  16344. name: "Side",
  16345. image: {
  16346. source: "./media/characters/richard-dragon/side.svg",
  16347. extra: 845/340,
  16348. bottom: 0.017
  16349. }
  16350. },
  16351. maw: {
  16352. height: math.unit(2.97, "feet"),
  16353. name: "Maw",
  16354. image: {
  16355. source: "./media/characters/richard-dragon/maw.svg"
  16356. }
  16357. },
  16358. },
  16359. [
  16360. ]
  16361. )
  16362. };
  16363. characterMakers["Richard (Smeargle)"] = () => {
  16364. return makeCharacter(
  16365. "Richard (Smeargle)",
  16366. "Xanaomin",
  16367. {
  16368. front: {
  16369. height: math.unit(4, "feet"),
  16370. weight: math.unit(100, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/richard-smeargle/front.svg",
  16374. extra: 2952/2820,
  16375. bottom: 0.028
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(4, "feet"),
  16383. default: true
  16384. },
  16385. {
  16386. name: "Dynamax",
  16387. height: math.unit(20, "meters")
  16388. },
  16389. ]
  16390. )
  16391. };
  16392. characterMakers["Klay"] = () => {
  16393. return makeCharacter(
  16394. "Klay",
  16395. "klaythebat",
  16396. {
  16397. front: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(110, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/klay/front.svg",
  16403. extra: 962/883,
  16404. bottom: 0.04
  16405. }
  16406. },
  16407. back: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(110, "lb"),
  16410. name: "Back",
  16411. image: {
  16412. source: "./media/characters/klay/back.svg",
  16413. extra: 962/883
  16414. }
  16415. },
  16416. beans: {
  16417. height: math.unit(1.15, "feet"),
  16418. name: "Beans",
  16419. image: {
  16420. source: "./media/characters/klay/beans.svg"
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Micro",
  16427. height: math.unit(6, "inches")
  16428. },
  16429. {
  16430. name: "Mini",
  16431. height: math.unit(3, "feet")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Big",
  16440. height: math.unit(25, "feet")
  16441. },
  16442. {
  16443. name: "Macro",
  16444. height: math.unit(100, "feet")
  16445. },
  16446. {
  16447. name: "Megamacro",
  16448. height: math.unit(400, "feet")
  16449. },
  16450. ]
  16451. )
  16452. };
  16453. characterMakers["Marcus"] = () => {
  16454. return makeCharacter(
  16455. "Marcus",
  16456. "klaythebat",
  16457. {
  16458. front: {
  16459. height: math.unit(6, "feet"),
  16460. weight: math.unit(160, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/marcus/front.svg",
  16464. extra: 734/676,
  16465. bottom: 0.03
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Little",
  16472. height: math.unit(6, "feet")
  16473. },
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(110, "feet"),
  16477. default: true
  16478. },
  16479. {
  16480. name: "Macro",
  16481. height: math.unit(250, "feet")
  16482. },
  16483. {
  16484. name: "Megamacro",
  16485. height: math.unit(1000, "feet")
  16486. },
  16487. ]
  16488. )
  16489. };
  16490. characterMakers["Claude DelRoute"] = () => {
  16491. return makeCharacter(
  16492. "Claude DelRoute",
  16493. "Claude",
  16494. {
  16495. front: {
  16496. height: math.unit(7, "feet"),
  16497. weight: math.unit(275, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/claude-delroute/front.svg",
  16501. extra: 230/214,
  16502. bottom: 0.007
  16503. }
  16504. },
  16505. side: {
  16506. height: math.unit(7, "feet"),
  16507. weight: math.unit(275, "lb"),
  16508. name: "Side",
  16509. image: {
  16510. source: "./media/characters/claude-delroute/side.svg",
  16511. extra: 222/214,
  16512. bottom: 0.01
  16513. }
  16514. },
  16515. back: {
  16516. height: math.unit(7, "feet"),
  16517. weight: math.unit(275, "lb"),
  16518. name: "Back",
  16519. image: {
  16520. source: "./media/characters/claude-delroute/back.svg",
  16521. extra: 230/214,
  16522. bottom: 0.015
  16523. }
  16524. },
  16525. maw: {
  16526. height: math.unit(0.6407, "meters"),
  16527. name: "Maw",
  16528. image: {
  16529. source: "./media/characters/claude-delroute/maw.svg"
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(7, "feet"),
  16537. default: true
  16538. },
  16539. {
  16540. name: "Lorge",
  16541. height: math.unit(20, "feet")
  16542. },
  16543. ]
  16544. )
  16545. };
  16546. characterMakers["Dragonien"] = () => {
  16547. return makeCharacter(
  16548. "Dragonien",
  16549. "Dragonien",
  16550. {
  16551. front: {
  16552. height: math.unit(8 + 4/12, "feet"),
  16553. weight: math.unit(600, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/dragonien/front.svg",
  16557. extra: 100/94,
  16558. bottom: 3.3/103.3445
  16559. }
  16560. },
  16561. back: {
  16562. height: math.unit(8 + 4/12, "feet"),
  16563. weight: math.unit(600, "lb"),
  16564. name: "Back",
  16565. image: {
  16566. source: "./media/characters/dragonien/back.svg",
  16567. extra: 776/746,
  16568. bottom: 6.4/782.0616
  16569. }
  16570. },
  16571. foot: {
  16572. height: math.unit(1.54, "feet"),
  16573. name: "Foot",
  16574. image: {
  16575. source: "./media/characters/dragonien/foot.svg",
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(8 + 4/12, "feet"),
  16583. default: true
  16584. },
  16585. {
  16586. name: "Macro",
  16587. height: math.unit(200, "feet")
  16588. },
  16589. {
  16590. name: "Megamacro",
  16591. height: math.unit(1, "mile")
  16592. },
  16593. {
  16594. name: "Gigamacro",
  16595. height: math.unit(1000, "miles")
  16596. },
  16597. ]
  16598. )
  16599. };
  16600. characterMakers["Desta"] = () => {
  16601. return makeCharacter(
  16602. "Desta",
  16603. "Desta",
  16604. {
  16605. front: {
  16606. height: math.unit(5 + 2/12, "feet"),
  16607. weight: math.unit(110, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/desta/front.svg",
  16611. extra: 1482/1417
  16612. }
  16613. },
  16614. side: {
  16615. height: math.unit(5 + 2/12, "feet"),
  16616. weight: math.unit(110, "lb"),
  16617. name: "Side",
  16618. image: {
  16619. source: "./media/characters/desta/side.svg",
  16620. extra: 2579/2491,
  16621. bottom: 0.053
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Micro",
  16628. height: math.unit(6, "inches")
  16629. },
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(5 + 2/12, "feet"),
  16633. default: true
  16634. },
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(62, "feet")
  16638. },
  16639. {
  16640. name: "Megamacro",
  16641. height: math.unit(1800, "feet")
  16642. },
  16643. ]
  16644. )
  16645. };
  16646. characterMakers["Storm Alystar"] = () => {
  16647. return makeCharacter(
  16648. "Storm Alystar",
  16649. "Thunderbum",
  16650. {
  16651. front: {
  16652. height: math.unit(10, "feet"),
  16653. weight: math.unit(700, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/storm-alystar/front.svg",
  16657. extra: 2112/1898,
  16658. bottom: 0.034
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Micro",
  16665. height: math.unit(3.5, "inches")
  16666. },
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(10, "feet"),
  16670. default: true
  16671. },
  16672. {
  16673. name: "Macro",
  16674. height: math.unit(400, "feet")
  16675. },
  16676. {
  16677. name: "Deific",
  16678. height: math.unit(60, "miles")
  16679. },
  16680. ]
  16681. )
  16682. };
  16683. characterMakers["Ilia"] = () => {
  16684. return makeCharacter(
  16685. "Ilia",
  16686. "IliaVulpine",
  16687. {
  16688. front: {
  16689. height: math.unit(2.35, "meters"),
  16690. weight: math.unit(119, "kg"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/ilia/front.svg",
  16694. extra: 1285/1255,
  16695. bottom: 0.06
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(2.35, "meters")
  16703. },
  16704. {
  16705. name: "Macro",
  16706. height: math.unit(140, "meters"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Megamacro",
  16711. height: math.unit(100, "miles")
  16712. },
  16713. ]
  16714. )
  16715. };
  16716. characterMakers["KingDead"] = () => {
  16717. return makeCharacter(
  16718. "KingDead",
  16719. "KingDead",
  16720. {
  16721. front: {
  16722. height: math.unit(6 + 5/12, "feet"),
  16723. weight: math.unit(190, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/kingdead/front.svg",
  16727. extra: 1228/1177
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Micro",
  16734. height: math.unit(7, "inches")
  16735. },
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(6 + 5/12, "feet")
  16739. },
  16740. {
  16741. name: "Macro",
  16742. height: math.unit(150, "feet"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Megamacro",
  16747. height: math.unit(200, "miles")
  16748. },
  16749. ]
  16750. )
  16751. };
  16752. characterMakers["Kyrehx"] = () => {
  16753. return makeCharacter(
  16754. "Kyrehx",
  16755. "Kyrehx",
  16756. {
  16757. front: {
  16758. height: math.unit(8, "feet"),
  16759. weight: math.unit(600, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/kyrehx/front.svg",
  16763. extra: 1195/1095,
  16764. bottom: 0.034
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Micro",
  16771. height: math.unit(2, "inches")
  16772. },
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(8, "feet"),
  16776. default: true
  16777. },
  16778. {
  16779. name: "Macro",
  16780. height: math.unit(255, "feet")
  16781. },
  16782. ]
  16783. )
  16784. };
  16785. characterMakers["Xang"] = () => {
  16786. return makeCharacter(
  16787. "Xang",
  16788. "Xangoose",
  16789. {
  16790. front: {
  16791. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16792. weight: math.unit(184, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/xang/front.svg",
  16796. extra: 845/755
  16797. }
  16798. },
  16799. },
  16800. [
  16801. {
  16802. name: "Normal",
  16803. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16804. default: true
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(0.935 * 146, "feet")
  16809. },
  16810. {
  16811. name: "Megamacro",
  16812. height: math.unit(0.935 * 3, "miles")
  16813. },
  16814. ]
  16815. )
  16816. };
  16817. characterMakers["Doc Weardno"] = () => {
  16818. return makeCharacter(
  16819. "Doc Weardno",
  16820. "DrWeardno",
  16821. {
  16822. frontDressed: {
  16823. height: math.unit(5 + 7/12, "feet"),
  16824. weight: math.unit(140, "lb"),
  16825. name: "Front (Dressed)",
  16826. image: {
  16827. source: "./media/characters/doc-weardno/front-dressed.svg",
  16828. extra: 263/234
  16829. }
  16830. },
  16831. backDressed: {
  16832. height: math.unit(5 + 7/12, "feet"),
  16833. weight: math.unit(140, "lb"),
  16834. name: "Back (Dressed)",
  16835. image: {
  16836. source: "./media/characters/doc-weardno/back-dressed.svg",
  16837. extra: 266/238
  16838. }
  16839. },
  16840. front: {
  16841. height: math.unit(5 + 7/12, "feet"),
  16842. weight: math.unit(140, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/doc-weardno/front.svg",
  16846. extra: 254/233
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Micro",
  16853. height: math.unit(3, "inches")
  16854. },
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(5 + 7/12, "feet"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(25, "feet")
  16863. },
  16864. {
  16865. name: "Megamacro",
  16866. height: math.unit(2, "miles")
  16867. },
  16868. ]
  16869. )
  16870. };
  16871. characterMakers["Seth Whilst"] = () => {
  16872. return makeCharacter(
  16873. "Seth Whilst",
  16874. "SethWhilst",
  16875. {
  16876. front: {
  16877. height: math.unit(6 + 2/12, "feet"),
  16878. weight: math.unit(153, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/seth-whilst/front.svg",
  16882. bottom: 0.07
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Micro",
  16889. height: math.unit(5, "inches")
  16890. },
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(6 + 2/12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. )
  16898. };
  16899. characterMakers["Pocket Jabari"] = () => {
  16900. return makeCharacter(
  16901. "Pocket Jabari",
  16902. "PocketJabari",
  16903. {
  16904. front: {
  16905. height: math.unit(3, "inches"),
  16906. weight: math.unit(8, "grams"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/pocket-jabari/front.svg",
  16910. extra: 1024/974,
  16911. bottom: 0.039
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Minimicro",
  16918. height: math.unit(8, "mm")
  16919. },
  16920. {
  16921. name: "Micro",
  16922. height: math.unit(3, "inches"),
  16923. default: true
  16924. },
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(3, "feet")
  16928. },
  16929. ]
  16930. )
  16931. };
  16932. characterMakers["Sapphy"] = () => {
  16933. return makeCharacter(
  16934. "Sapphy",
  16935. "Sapphy",
  16936. {
  16937. front: {
  16938. height: math.unit(15, "feet"),
  16939. weight: math.unit(3280, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/sapphy/front.svg",
  16943. extra: 671/577,
  16944. bottom: 0.085
  16945. }
  16946. },
  16947. back: {
  16948. height: math.unit(15, "feet"),
  16949. weight: math.unit(3280, "lb"),
  16950. name: "Back",
  16951. image: {
  16952. source: "./media/characters/sapphy/back.svg",
  16953. extra: 631/607,
  16954. bottom: 0.045
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(15, "feet")
  16962. },
  16963. {
  16964. name: "Casual Macro",
  16965. height: math.unit(120, "feet")
  16966. },
  16967. {
  16968. name: "Macro",
  16969. height: math.unit(2150, "feet"),
  16970. default: true
  16971. },
  16972. {
  16973. name: "Megamacro",
  16974. height: math.unit(8, "miles")
  16975. },
  16976. {
  16977. name: "Galaxy Mom",
  16978. height: math.unit(6, "megalightyears")
  16979. },
  16980. ]
  16981. )
  16982. };
  16983. characterMakers["Kiro"] = () => {
  16984. return makeCharacter(
  16985. "Kiro",
  16986. "Keeya",
  16987. {
  16988. front: {
  16989. height: math.unit(6, "feet"),
  16990. weight: math.unit(170, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/kiro/front.svg",
  16994. extra: 1064/1012,
  16995. bottom: 0.052
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Micro",
  17002. height: math.unit(6, "inches")
  17003. },
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(6, "feet"),
  17007. default: true
  17008. },
  17009. {
  17010. name: "Macro",
  17011. height: math.unit(72, "feet")
  17012. },
  17013. ]
  17014. )
  17015. };
  17016. characterMakers["Irishfox"] = () => {
  17017. return makeCharacter(
  17018. "Irishfox",
  17019. "IrishFox",
  17020. {
  17021. front: {
  17022. height: math.unit(5 + 9/12, "feet"),
  17023. weight: math.unit(175, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/irishfox/front.svg",
  17027. extra: 1912/1680,
  17028. bottom: 0.02
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Nano",
  17035. height: math.unit(1, "mm")
  17036. },
  17037. {
  17038. name: "Micro",
  17039. height: math.unit(2, "inches")
  17040. },
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(5 + 9/12, "feet"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Macro",
  17048. height: math.unit(45, "feet")
  17049. },
  17050. ]
  17051. )
  17052. };
  17053. characterMakers["Aronai Sieyes"] = () => {
  17054. return makeCharacter(
  17055. "Aronai Sieyes",
  17056. "Aronai",
  17057. {
  17058. front: {
  17059. height: math.unit(6 + 1/12, "feet"),
  17060. weight: math.unit(150, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/aronai-sieyes/front.svg",
  17064. extra: 1556/1480,
  17065. bottom: 0.015
  17066. }
  17067. },
  17068. side: {
  17069. height: math.unit(6 + 1/12, "feet"),
  17070. weight: math.unit(150, "lb"),
  17071. name: "Side",
  17072. image: {
  17073. source: "./media/characters/aronai-sieyes/side.svg",
  17074. extra: 1433/1390,
  17075. bottom: 0.0393
  17076. }
  17077. },
  17078. back: {
  17079. height: math.unit(6 + 1/12, "feet"),
  17080. weight: math.unit(150, "lb"),
  17081. name: "Back",
  17082. image: {
  17083. source: "./media/characters/aronai-sieyes/back.svg",
  17084. extra: 1544/1494,
  17085. bottom: 0.02
  17086. }
  17087. },
  17088. frontClothed: {
  17089. height: math.unit(6 + 1/12, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Front (Clothed)",
  17092. image: {
  17093. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17094. extra: 1582/1527
  17095. }
  17096. },
  17097. feral: {
  17098. height: math.unit(18, "feet"),
  17099. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17100. name: "Feral",
  17101. image: {
  17102. source: "./media/characters/aronai-sieyes/feral.svg",
  17103. extra: 1530/1240,
  17104. bottom: 0.035
  17105. }
  17106. },
  17107. },
  17108. [
  17109. {
  17110. name: "Normal",
  17111. height: math.unit(2, "inches")
  17112. },
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(6 + 1/12, "feet"),
  17116. default: true
  17117. }
  17118. ]
  17119. )
  17120. };
  17121. characterMakers["Xuna"] = () => {
  17122. return makeCharacter(
  17123. "Xuna",
  17124. "Xuna",
  17125. {
  17126. front: {
  17127. height: math.unit(12, "feet"),
  17128. weight: math.unit(410, "kg"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/xuna/front.svg",
  17132. extra: 2184/1980
  17133. }
  17134. },
  17135. side: {
  17136. height: math.unit(12, "feet"),
  17137. weight: math.unit(410, "kg"),
  17138. name: "Side",
  17139. image: {
  17140. source: "./media/characters/xuna/side.svg",
  17141. extra: 2184/1980
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(12, "feet"),
  17146. weight: math.unit(410, "kg"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/xuna/back.svg",
  17150. extra: 2184/1980
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Nano glow",
  17157. height: math.unit(10, "nm")
  17158. },
  17159. {
  17160. name: "Micro floof",
  17161. height: math.unit(0.3, "m")
  17162. },
  17163. {
  17164. name: "Huggable softy boi",
  17165. height: math.unit(3.6576, "m"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Admirable floof",
  17170. height: math.unit(80, "meters")
  17171. },
  17172. {
  17173. name: "Gentle macro",
  17174. height: math.unit(300, "meters")
  17175. },
  17176. {
  17177. name: "Very careful floof",
  17178. height: math.unit(3200, "meters")
  17179. },
  17180. {
  17181. name: "The mega floof",
  17182. height: math.unit(36000, "meters")
  17183. },
  17184. {
  17185. name: "Giga-fur-Wicker",
  17186. height: math.unit(4800000, "meters")
  17187. },
  17188. {
  17189. name: "Licky world",
  17190. height: math.unit(20000000, "meters")
  17191. },
  17192. {
  17193. name: "Floofy cyan sun",
  17194. height: math.unit(1500000000, "meters")
  17195. },
  17196. {
  17197. name: "Milky Wicker",
  17198. height: math.unit(1000000000000000000000, "meters")
  17199. },
  17200. {
  17201. name: "The observing Wicker",
  17202. height: math.unit(999999999999999999999999999, "meters")
  17203. },
  17204. ]
  17205. )
  17206. };
  17207. characterMakers["Arokha Sieyes"] = () => {
  17208. return makeCharacter(
  17209. "Arokha Sieyes",
  17210. "Aronai",
  17211. {
  17212. front: {
  17213. height: math.unit(5 + 9/12, "feet"),
  17214. weight: math.unit(150, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/arokha-sieyes/front.svg",
  17218. extra: 1425/1284,
  17219. bottom: 0.05
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(5 + 9/12, "feet")
  17227. },
  17228. {
  17229. name: "Macro",
  17230. height: math.unit(30, "meters"),
  17231. default: true
  17232. },
  17233. ]
  17234. )
  17235. };
  17236. characterMakers["Arokh Sieyes"] = () => {
  17237. return makeCharacter(
  17238. "Arokh Sieyes",
  17239. "Aronai",
  17240. {
  17241. front: {
  17242. height: math.unit(6, "feet"),
  17243. weight: math.unit(180, "lb"),
  17244. name: "Front",
  17245. image: {
  17246. source: "./media/characters/arokh-sieyes/front.svg",
  17247. extra: 1830/1769,
  17248. bottom: 0.01
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(6, "feet")
  17256. },
  17257. {
  17258. name: "Macro",
  17259. height: math.unit(30, "meters"),
  17260. default: true
  17261. },
  17262. ]
  17263. )
  17264. };
  17265. characterMakers["Goldeneye"] = () => {
  17266. return makeCharacter(
  17267. "Goldeneye",
  17268. "Goldeneye Gryphon",
  17269. {
  17270. side: {
  17271. height: math.unit(13 + 1/12, "feet"),
  17272. weight: math.unit(8.5, "tonnes"),
  17273. name: "Side",
  17274. image: {
  17275. source: "./media/characters/goldeneye/side.svg",
  17276. extra: 1182/778,
  17277. bottom: 0.067
  17278. }
  17279. },
  17280. paw: {
  17281. height: math.unit(3.4, "feet"),
  17282. name: "Paw",
  17283. image: {
  17284. source: "./media/characters/goldeneye/paw.svg"
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(13 + 1/12, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. )
  17296. };
  17297. characterMakers["Leonardo Lycheborne"] = () => {
  17298. return makeCharacter(
  17299. "Leonardo Lycheborne",
  17300. "Leo",
  17301. {
  17302. front: {
  17303. height: math.unit(6 + 1/12, "feet"),
  17304. weight: math.unit(210, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/leonardo-lycheborne/front.svg",
  17308. extra: 390/365,
  17309. bottom: 0.032
  17310. }
  17311. },
  17312. side: {
  17313. height: math.unit(6 + 1/12, "feet"),
  17314. weight: math.unit(210, "lb"),
  17315. name: "Side",
  17316. image: {
  17317. source: "./media/characters/leonardo-lycheborne/side.svg",
  17318. extra: 390/365,
  17319. bottom: 0.005
  17320. }
  17321. },
  17322. back: {
  17323. height: math.unit(6 + 1/12, "feet"),
  17324. weight: math.unit(210, "lb"),
  17325. name: "Back",
  17326. image: {
  17327. source: "./media/characters/leonardo-lycheborne/back.svg",
  17328. extra: 392/366,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. hand: {
  17333. height: math.unit(1.08, "feet"),
  17334. name: "Hand",
  17335. image: {
  17336. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17337. }
  17338. },
  17339. foot: {
  17340. height: math.unit(1.32, "feet"),
  17341. name: "Foot",
  17342. image: {
  17343. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17344. }
  17345. },
  17346. were: {
  17347. height: math.unit(20, "feet"),
  17348. weight: math.unit(7800, "lb"),
  17349. name: "Were",
  17350. image: {
  17351. source: "./media/characters/leonardo-lycheborne/were.svg",
  17352. extra: 308/294,
  17353. bottom: 0.048
  17354. }
  17355. },
  17356. feral: {
  17357. height: math.unit(7.5, "feet"),
  17358. weight: math.unit(600, "lb"),
  17359. name: "Feral",
  17360. image: {
  17361. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17362. extra: 210/186,
  17363. bottom: 0.108
  17364. }
  17365. },
  17366. taur: {
  17367. height: math.unit(11, "feet"),
  17368. weight: math.unit(3300, "lb"),
  17369. name: "Taur",
  17370. image: {
  17371. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17372. extra: 320/303,
  17373. bottom: 0.025
  17374. }
  17375. },
  17376. barghest: {
  17377. height: math.unit(11, "feet"),
  17378. weight: math.unit(1300, "lb"),
  17379. name: "Barghest",
  17380. image: {
  17381. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17382. extra: 323/302,
  17383. bottom: 0.027
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(6 + 1/12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. )
  17395. };
  17396. characterMakers["Jet"] = () => {
  17397. return makeCharacter(
  17398. "Jet",
  17399. "JetHyena",
  17400. {
  17401. front: {
  17402. height: math.unit(10, "feet"),
  17403. weight: math.unit(350, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/jet/front.svg",
  17407. extra: 2050/1980,
  17408. bottom: 0.013
  17409. }
  17410. },
  17411. back: {
  17412. height: math.unit(10, "feet"),
  17413. weight: math.unit(350, "lb"),
  17414. name: "Back",
  17415. image: {
  17416. source: "./media/characters/jet/back.svg",
  17417. extra: 2050/1980,
  17418. bottom: 0.013
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Micro",
  17425. height: math.unit(6, "inches")
  17426. },
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(10, "feet"),
  17430. default: true
  17431. },
  17432. {
  17433. name: "Macro",
  17434. height: math.unit(100, "feet")
  17435. },
  17436. ]
  17437. )
  17438. };
  17439. characterMakers["Tanarath"] = () => {
  17440. return makeCharacter(
  17441. "Tanarath",
  17442. "TanarathDragon",
  17443. {
  17444. front: {
  17445. height: math.unit(15, "feet"),
  17446. weight: math.unit(2800, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/tanarath/front.svg",
  17450. extra: 2392/2220,
  17451. bottom: 0.03
  17452. }
  17453. },
  17454. back: {
  17455. height: math.unit(15, "feet"),
  17456. weight: math.unit(2800, "lb"),
  17457. name: "Back",
  17458. image: {
  17459. source: "./media/characters/tanarath/back.svg",
  17460. extra: 2392/2220,
  17461. bottom: 0.03
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(15, "feet"),
  17469. default: true
  17470. },
  17471. ]
  17472. )
  17473. };
  17474. characterMakers["Patty CattyBatty"] = () => {
  17475. return makeCharacter(
  17476. "Patty CattyBatty",
  17477. "Archangel2100",
  17478. {
  17479. front: {
  17480. height: math.unit(7 + 1/12, "feet"),
  17481. weight: math.unit(175, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/patty-cattybatty/front.svg",
  17485. extra: 908/874,
  17486. bottom: 0.025
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Micro",
  17493. height: math.unit(1, "inch")
  17494. },
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(7 + 1/12, "feet")
  17498. },
  17499. {
  17500. name: "Mini Macro",
  17501. height: math.unit(155, "feet")
  17502. },
  17503. {
  17504. name: "Macro",
  17505. height: math.unit(1077, "feet")
  17506. },
  17507. {
  17508. name: "Mega Macro",
  17509. height: math.unit(47650, "feet"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Giga Macro",
  17514. height: math.unit(440, "miles")
  17515. },
  17516. {
  17517. name: "Tera Macro",
  17518. height: math.unit(8700, "miles")
  17519. },
  17520. {
  17521. name: "Planetary Macro",
  17522. height: math.unit(32700, "miles")
  17523. },
  17524. {
  17525. name: "Solar Macro",
  17526. height: math.unit(550000, "miles")
  17527. },
  17528. {
  17529. name: "Celestial Macro",
  17530. height: math.unit(2.5, "AU")
  17531. },
  17532. ]
  17533. )
  17534. };
  17535. characterMakers["Cappu"] = () => {
  17536. return makeCharacter(
  17537. "Cappu",
  17538. "CappuTheSheep",
  17539. {
  17540. front: {
  17541. height: math.unit(4 + 5/12, "feet"),
  17542. weight: math.unit(90, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/cappu/front.svg",
  17546. extra: 1247/1152,
  17547. bottom: 0.012
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(4 + 5/12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. )
  17559. };
  17560. characterMakers["Sebi"] = () => {
  17561. return makeCharacter(
  17562. "Sebi",
  17563. "DeathyWolfi",
  17564. {
  17565. frontDressed: {
  17566. height: math.unit(70, "cm"),
  17567. weight: math.unit(6, "kg"),
  17568. name: "Front (Dressed)",
  17569. image: {
  17570. source: "./media/characters/sebi/front-dressed.svg",
  17571. extra: 713.5/686.5,
  17572. bottom: 0.003
  17573. }
  17574. },
  17575. front: {
  17576. height: math.unit(70, "cm"),
  17577. weight: math.unit(5, "kg"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/sebi/front.svg",
  17581. extra: 713.5/686.5,
  17582. bottom: 0.003
  17583. }
  17584. }
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(70, "cm"),
  17590. default: true
  17591. },
  17592. {
  17593. name: "Macro",
  17594. height: math.unit(8, "meters")
  17595. },
  17596. ]
  17597. )
  17598. };
  17599. characterMakers["Typhek"] = () => {
  17600. return makeCharacter(
  17601. "Typhek",
  17602. "Adam0800",
  17603. {
  17604. front: {
  17605. height: math.unit(6, "feet"),
  17606. weight: math.unit(150, "lb"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/typhek/front.svg",
  17610. extra: 1948/1929,
  17611. bottom: 0.025
  17612. }
  17613. },
  17614. side: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Side",
  17618. image: {
  17619. source: "./media/characters/typhek/side.svg",
  17620. extra: 2034/2010,
  17621. bottom: 0.003
  17622. }
  17623. },
  17624. back: {
  17625. height: math.unit(6, "feet"),
  17626. weight: math.unit(150, "lb"),
  17627. name: "Back",
  17628. image: {
  17629. source: "./media/characters/typhek/back.svg",
  17630. extra: 2005/1978,
  17631. bottom: 0.004
  17632. }
  17633. },
  17634. palm: {
  17635. height: math.unit(1.2, "feet"),
  17636. name: "Palm",
  17637. image: {
  17638. source: "./media/characters/typhek/palm.svg"
  17639. }
  17640. },
  17641. fist: {
  17642. height: math.unit(1.1, "feet"),
  17643. name: "Fist",
  17644. image: {
  17645. source: "./media/characters/typhek/fist.svg"
  17646. }
  17647. },
  17648. foot: {
  17649. height: math.unit(1.57, "feet"),
  17650. name: "Foot",
  17651. image: {
  17652. source: "./media/characters/typhek/foot.svg"
  17653. }
  17654. },
  17655. sole: {
  17656. height: math.unit(2.05, "feet"),
  17657. name: "Sole",
  17658. image: {
  17659. source: "./media/characters/typhek/sole.svg"
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Macro",
  17666. height: math.unit(40, "stories"),
  17667. default: true
  17668. },
  17669. {
  17670. name: "Megamacro",
  17671. height: math.unit(1, "mile")
  17672. },
  17673. {
  17674. name: "Gigamacro",
  17675. height: math.unit(4000, "solarradii")
  17676. },
  17677. {
  17678. name: "Universal",
  17679. height: math.unit(1.1, "universes")
  17680. }
  17681. ]
  17682. )
  17683. };
  17684. characterMakers["Kassy"] = () => {
  17685. return makeCharacter(
  17686. "Kassy",
  17687. "kclt",
  17688. {
  17689. side: {
  17690. height: math.unit(5 + 7/12, "feet"),
  17691. weight: math.unit(150, "lb"),
  17692. name: "Side",
  17693. image: {
  17694. source: "./media/characters/kassy/side.svg",
  17695. extra: 1280/1225,
  17696. bottom: 0.002
  17697. }
  17698. },
  17699. front: {
  17700. height: math.unit(5 + 7/12, "feet"),
  17701. weight: math.unit(150, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/kassy/front.svg",
  17705. extra: 1280/1225,
  17706. bottom: 0.025
  17707. }
  17708. },
  17709. back: {
  17710. height: math.unit(5 + 7/12, "feet"),
  17711. weight: math.unit(150, "lb"),
  17712. name: "Back",
  17713. image: {
  17714. source: "./media/characters/kassy/back.svg",
  17715. extra: 1280/1225,
  17716. bottom: 0.002
  17717. }
  17718. },
  17719. foot: {
  17720. height: math.unit(1.266, "feet"),
  17721. name: "Foot",
  17722. image: {
  17723. source: "./media/characters/kassy/foot.svg"
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(5 + 7/12, "feet")
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(137, "feet"),
  17735. default: true
  17736. },
  17737. {
  17738. name: "Megamacro",
  17739. height: math.unit(1, "mile")
  17740. },
  17741. ]
  17742. )
  17743. };
  17744. characterMakers["Neil"] = () => {
  17745. return makeCharacter(
  17746. "Neil",
  17747. "mZmm",
  17748. {
  17749. front: {
  17750. height: math.unit(6 + 1/12, "feet"),
  17751. weight: math.unit(200, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/neil/front.svg",
  17755. extra: 1326/1250,
  17756. bottom: 0.023
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(6 + 1/12, "feet"),
  17764. default: true
  17765. },
  17766. {
  17767. name: "Macro",
  17768. height: math.unit(200, "feet")
  17769. },
  17770. ]
  17771. )
  17772. };
  17773. characterMakers["Atticus"] = () => {
  17774. return makeCharacter(
  17775. "Atticus",
  17776. "mZmm",
  17777. {
  17778. front: {
  17779. height: math.unit(5 + 9/12, "feet"),
  17780. weight: math.unit(190, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/atticus/front.svg",
  17784. extra: 2934/2785,
  17785. bottom: 0.025
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(5 + 9/12, "feet"),
  17793. default: true
  17794. },
  17795. {
  17796. name: "Macro",
  17797. height: math.unit(180, "feet")
  17798. },
  17799. ]
  17800. )
  17801. };
  17802. characterMakers["Milo"] = () => {
  17803. return makeCharacter(
  17804. "Milo",
  17805. "mZmm",
  17806. {
  17807. side: {
  17808. height: math.unit(9, "feet"),
  17809. weight: math.unit(650, "lb"),
  17810. name: "Side",
  17811. image: {
  17812. source: "./media/characters/milo/side.svg",
  17813. extra: 2644/2310,
  17814. bottom: 0.032
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(9, "feet"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(300, "feet")
  17827. },
  17828. ]
  17829. )
  17830. };
  17831. //characters
  17832. function makeCharacters() {
  17833. const results = [];
  17834. Object.entries(characterMakers).forEach(([key, value]) => {
  17835. results.push({
  17836. name: key,
  17837. constructor: value
  17838. });
  17839. });
  17840. results.push({
  17841. name: "Aigey",
  17842. constructor: makeAigey
  17843. });
  17844. results.push({
  17845. name: "Malik",
  17846. constructor: makeMalik
  17847. });
  17848. results.push({
  17849. name: "Sefer",
  17850. constructor: makeSefer
  17851. });
  17852. return results;
  17853. }