less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

18838 líneas
490 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsec", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("parsecs", {
  7. definition: "3.086e16 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("lightyears", {
  11. definition: "9.461e15 meters",
  12. prefixes: "long"
  13. })
  14. math.createUnit("AU", {
  15. definition: "149597870700 meters"
  16. })
  17. math.createUnit("AUs", {
  18. definition: "149597870700 meters"
  19. })
  20. function makeCharacter(name, author, viewInfo, defaultSizes, extraInfo) {
  21. if (extraInfo === undefined) {
  22. extraInfo = {}
  23. }
  24. views = {};
  25. Object.entries(viewInfo).forEach(([key, value]) => {
  26. views[key] = {
  27. attributes: {
  28. height: {
  29. name: "Height",
  30. power: 1,
  31. type: "length",
  32. base: value.height
  33. }
  34. },
  35. image: value.image,
  36. name: value.name,
  37. info: value.info,
  38. rename: value.rename
  39. }
  40. if (value.weight) {
  41. views[key].attributes.weight = {
  42. name: "Mass",
  43. power: 3,
  44. type: "mass",
  45. base: value.weight
  46. };
  47. }
  48. });
  49. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  50. return entity;
  51. }
  52. characterMakers["Fen"] = () => {
  53. return makeCharacter(
  54. "Fen",
  55. "chemicalcrux",
  56. {
  57. back: {
  58. height: math.unit(2.2428, "meter"),
  59. weight: math.unit(124.738, "kg"),
  60. name: "Back",
  61. image: {
  62. source: "./media/characters/fen/back.svg",
  63. extra: 1025/935
  64. },
  65. info: {
  66. description: {
  67. mode: "append",
  68. text: "\n\nHe is not currently looking at you."
  69. }
  70. }
  71. },
  72. full: {
  73. height: math.unit(1.34, "meter"),
  74. weight: math.unit(225, "kg"),
  75. name: "Full",
  76. image: {
  77. source: "./media/characters/fen/full.svg"
  78. },
  79. info: {
  80. description: {
  81. mode: "append",
  82. text: "\n\nMunch."
  83. }
  84. }
  85. },
  86. kneeling: {
  87. height: math.unit(5.4, "feet"),
  88. weight: math.unit(124.738, "kg"),
  89. name: "Kneeling",
  90. image: {
  91. source: "./media/characters/fen/kneeling.svg",
  92. extra: 563/507
  93. }
  94. },
  95. },
  96. [
  97. {
  98. name: "Normal",
  99. height: math.unit(2.2428, "meter")
  100. },
  101. {
  102. name: "Big",
  103. height: math.unit(12, "feet")
  104. },
  105. {
  106. name: "Minimacro",
  107. height: math.unit(30, "meter"),
  108. default: true,
  109. info: {
  110. description: {
  111. mode: "append",
  112. text: "\n\nTOO DAMN BIG"
  113. }
  114. }
  115. },
  116. {
  117. name: "Macro",
  118. height: math.unit(100, "meter"),
  119. info: {
  120. description: {
  121. mode: "append",
  122. text: "\n\nTOO DAMN BIG"
  123. }
  124. }
  125. },
  126. {
  127. name: "Macro+",
  128. height: math.unit(1000, "meter")
  129. },
  130. {
  131. name: "Megamacro",
  132. height: math.unit(10, "miles")
  133. }
  134. ],
  135. {
  136. description: {
  137. title: "Bio",
  138. text: "Very furry. Sheds on everything."
  139. }
  140. }
  141. )
  142. };
  143. characterMakers["Sofia"] = () => {
  144. return makeCharacter(
  145. "Sofia",
  146. "ZakuraTech",
  147. {
  148. front: {
  149. height: math.unit(183, "cm"),
  150. weight: math.unit(80, "kg"),
  151. name: "Front",
  152. image: {
  153. source: "./media/characters/sofia/front.svg",
  154. bottom: 0.01,
  155. extra: 1
  156. }
  157. },
  158. frontAlt: {
  159. height: math.unit(183, "cm"),
  160. weight: math.unit(80, "kg"),
  161. name: "Front (alt)",
  162. image: {
  163. source: "./media/characters/sofia/front-alt.svg"
  164. }
  165. },
  166. back: {
  167. height: math.unit(183, "cm"),
  168. weight: math.unit(80, "kg"),
  169. name: "Back",
  170. image: {
  171. source: "./media/characters/sofia/back.svg"
  172. }
  173. },
  174. },
  175. [
  176. {
  177. name: "Normal",
  178. height: math.unit(1.83, "meter")
  179. },
  180. {
  181. name: "Macro",
  182. height: math.unit(96, "feet"),
  183. default: true
  184. },
  185. {
  186. name: "Megamerger",
  187. height: math.unit(650, "feet")
  188. },
  189. ]
  190. )
  191. };
  192. characterMakers["March"] = () => {
  193. return makeCharacter(
  194. "March",
  195. "March-Dragon",
  196. {
  197. front: {
  198. height: math.unit(7, "feet"),
  199. weight: math.unit(100, "kg"),
  200. name: "Front",
  201. image: {
  202. source: "./media/characters/march/front.svg",
  203. extra: 1,
  204. bottom: 0.015
  205. }
  206. },
  207. foot: {
  208. height: math.unit(0.9, "feet"),
  209. name: "Foot",
  210. image: {
  211. source: "./media/characters/march/foot.svg"
  212. }
  213. },
  214. },
  215. [
  216. {
  217. name: "Normal",
  218. height: math.unit(7.9, "feet")
  219. },
  220. {
  221. name: "Macro",
  222. height: math.unit(220, "meters")
  223. },
  224. {
  225. name: "Megamacro",
  226. height: math.unit(2.98, "km"),
  227. default: true
  228. },
  229. {
  230. name: "Gigamacro",
  231. height: math.unit(15963, "km")
  232. },
  233. {
  234. name: "Teramacro",
  235. height: math.unit(2980000000, "km")
  236. },
  237. {
  238. name: "Examacro",
  239. height: math.unit(250, "parsecs")
  240. },
  241. ]
  242. )
  243. };
  244. characterMakers["Noir"] = () => {
  245. return makeCharacter(
  246. "Noir",
  247. "March-Dragon",
  248. {
  249. front: {
  250. height: math.unit(6, "feet"),
  251. weight: math.unit(60, "kg"),
  252. name: "Front",
  253. image: {
  254. source: "./media/characters/noir/front.svg",
  255. extra: 1,
  256. bottom: 0.032
  257. }
  258. },
  259. },
  260. [
  261. {
  262. name: "Normal",
  263. height: math.unit(6.6, "feet")
  264. },
  265. {
  266. name: "Macro",
  267. height: math.unit(500, "feet")
  268. },
  269. {
  270. name: "Megamacro",
  271. height: math.unit(2.5, "km"),
  272. default: true
  273. },
  274. {
  275. name: "Gigamacro",
  276. height: math.unit(22500, "km")
  277. },
  278. {
  279. name: "Teramacro",
  280. height: math.unit(2500000000, "km")
  281. },
  282. {
  283. name: "Examacro",
  284. height: math.unit(200, "parsecs")
  285. },
  286. ]
  287. )
  288. };
  289. characterMakers["Okuri"] = () => {
  290. return makeCharacter(
  291. "Okuri",
  292. "OrinoMechadragon",
  293. {
  294. front: {
  295. height: math.unit(7, "feet"),
  296. weight: math.unit(100, "kg"),
  297. name: "Front",
  298. image: {
  299. source: "./media/characters/okuri/front.svg",
  300. extra: 1,
  301. bottom: 0.037
  302. }
  303. },
  304. back: {
  305. height: math.unit(7, "feet"),
  306. weight: math.unit(100, "kg"),
  307. name: "Back",
  308. image: {
  309. source: "./media/characters/okuri/back.svg",
  310. extra: 1,
  311. bottom: 0.007
  312. }
  313. },
  314. },
  315. [
  316. {
  317. name: "Megamacro",
  318. height: math.unit(100, "miles"),
  319. default: true
  320. },
  321. ]
  322. )
  323. };
  324. characterMakers["Manny"] = () => {
  325. return makeCharacter(
  326. "Manny",
  327. "Dialuca01",
  328. {
  329. front: {
  330. height: math.unit(7, "feet"),
  331. weight: math.unit(100, "kg"),
  332. name: "Front",
  333. image: {
  334. source: "./media/characters/manny/front.svg",
  335. extra: 1,
  336. bottom: 0.06
  337. }
  338. },
  339. back: {
  340. height: math.unit(7, "feet"),
  341. weight: math.unit(100, "kg"),
  342. name: "Back",
  343. image: {
  344. source: "./media/characters/manny/back.svg",
  345. extra: 1,
  346. bottom: 0.014
  347. }
  348. },
  349. },
  350. [
  351. {
  352. name: "Normal",
  353. height: math.unit(7, "feet"),
  354. },
  355. {
  356. name: "Macro",
  357. height: math.unit(78, "feet"),
  358. default: true
  359. },
  360. {
  361. name: "Macro+",
  362. height: math.unit(300, "meters")
  363. },
  364. {
  365. name: "Macro++",
  366. height: math.unit(2400, "meters")
  367. },
  368. {
  369. name: "Megamacro",
  370. height: math.unit(5167, "meters")
  371. },
  372. {
  373. name: "Gigamacro",
  374. height: math.unit(41769, "miles")
  375. },
  376. ]
  377. )
  378. };
  379. characterMakers["Adake"] = () => {
  380. return makeCharacter(
  381. "Adake",
  382. "Dialuca01",
  383. {
  384. front: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front",
  388. image: {
  389. source: "./media/characters/adake/front-1.svg"
  390. }
  391. },
  392. frontAlt: {
  393. height: math.unit(7, "feet"),
  394. weight: math.unit(100, "kg"),
  395. name: "Front (Alt)",
  396. image: {
  397. source: "./media/characters/adake/front-2.svg",
  398. extra: 1,
  399. bottom: 0.01
  400. }
  401. },
  402. back: {
  403. height: math.unit(7, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Back",
  406. image: {
  407. source: "./media/characters/adake/back.svg",
  408. }
  409. },
  410. kneel: {
  411. height: math.unit(5.385, "feet"),
  412. weight: math.unit(100, "kg"),
  413. name: "Kneeling",
  414. image: {
  415. source: "./media/characters/adake/kneel.svg",
  416. bottom: 0.052
  417. }
  418. },
  419. },
  420. [
  421. {
  422. name: "Normal",
  423. height: math.unit(7, "feet"),
  424. },
  425. {
  426. name: "Macro",
  427. height: math.unit(78, "feet"),
  428. default: true
  429. },
  430. {
  431. name: "Macro+",
  432. height: math.unit(300, "meters")
  433. },
  434. {
  435. name: "Macro++",
  436. height: math.unit(2400, "meters")
  437. },
  438. {
  439. name: "Megamacro",
  440. height: math.unit(5167, "meters")
  441. },
  442. {
  443. name: "Gigamacro",
  444. height: math.unit(41769, "miles")
  445. },
  446. ]
  447. )
  448. };
  449. characterMakers["Elijah"] = () => {
  450. return makeCharacter(
  451. "Elijah",
  452. "Elijah",
  453. {
  454. side: {
  455. height: math.unit(7, "feet"),
  456. weight: math.unit(50, "kg"),
  457. name: "Side",
  458. image: {
  459. source: "./media/characters/elijah/side.svg",
  460. extra: 1,
  461. bottom: 0.065
  462. }
  463. },
  464. foot: {
  465. height: math.unit(2.05, "feet"),
  466. name: "Foot",
  467. image: {
  468. source: "./media/characters/elijah/foot.svg"
  469. }
  470. },
  471. },
  472. [
  473. {
  474. name: "Normal",
  475. height: math.unit(1.65, "meters")
  476. },
  477. {
  478. name: "Macro",
  479. height: math.unit(55, "meters"),
  480. default: true
  481. },
  482. {
  483. name: "Macro+",
  484. height: math.unit(105, "meters")
  485. },
  486. ]
  487. )
  488. };
  489. characterMakers["Rai"] = () => {
  490. return makeCharacter(
  491. "Rai",
  492. "shadowblade945",
  493. {
  494. front: {
  495. height: math.unit(11, "feet"),
  496. weight: math.unit(80, "kg"),
  497. name: "Front",
  498. image: {
  499. source: "./media/characters/rai/front.svg",
  500. extra: 1,
  501. bottom: 0.03
  502. }
  503. },
  504. side: {
  505. height: math.unit(11, "feet"),
  506. weight: math.unit(80, "kg"),
  507. name: "Side",
  508. image: {
  509. source: "./media/characters/rai/side.svg"
  510. }
  511. },
  512. back: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "lb"),
  515. name: "Back",
  516. image: {
  517. source: "./media/characters/rai/back.svg",
  518. extra: 1,
  519. bottom: 0.01
  520. }
  521. },
  522. feral: {
  523. height: math.unit(11, "feet"),
  524. weight: math.unit(800, "lb"),
  525. name: "Feral",
  526. image: {
  527. source: "./media/characters/rai/feral.svg",
  528. extra: 1050/659 ,
  529. bottom: 0.07
  530. }
  531. },
  532. maw: {
  533. height: math.unit(6/3.81416, "feet"),
  534. name: "Maw",
  535. image: {
  536. source: "./media/characters/rai/maw.svg"
  537. }
  538. },
  539. },
  540. [
  541. {
  542. name: "Normal",
  543. height: math.unit(11, "feet")
  544. },
  545. {
  546. name: "Macro",
  547. height: math.unit(302, "feet"),
  548. default: true
  549. },
  550. ]
  551. )
  552. };
  553. characterMakers["Jazzy"] = () => {
  554. return makeCharacter(
  555. "Jazzy",
  556. "JazzyWolf",
  557. {
  558. front: {
  559. height: math.unit(7, "feet"),
  560. weight: math.unit(80, "kg"),
  561. name: "Front",
  562. image: {
  563. source: "./media/characters/jazzy/front.svg",
  564. extra: 1,
  565. bottom: 0.01
  566. }
  567. },
  568. back: {
  569. height: math.unit(7, "feet"),
  570. weight: math.unit(80, "kg"),
  571. name: "Back",
  572. image: {
  573. source: "./media/characters/jazzy/back.svg",
  574. extra: 1,
  575. bottom: 0.01
  576. }
  577. },
  578. },
  579. [
  580. {
  581. name: "Macro",
  582. height: math.unit(216, "feet"),
  583. default: true
  584. },
  585. ]
  586. )
  587. };
  588. characterMakers["Flamm"] = () => {
  589. return makeCharacter(
  590. "Flamm",
  591. "Flamm",
  592. {
  593. front: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Front",
  597. image: {
  598. source: "./media/characters/flamm/front.svg",
  599. extra: 1,
  600. bottom: 0.02
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Normal",
  607. height: math.unit(9.5, "feet")
  608. },
  609. {
  610. name: "Macro",
  611. height: math.unit(200, "feet"),
  612. default: true
  613. },
  614. ]
  615. )
  616. };
  617. characterMakers["Zephiro"] = () => {
  618. return makeCharacter(
  619. "Zephiro",
  620. "Zephiro",
  621. {
  622. front: {
  623. height: math.unit(7, "feet"),
  624. weight: math.unit(80, "kg"),
  625. name: "Front",
  626. image: {
  627. source: "./media/characters/zephiro/front.svg",
  628. extra: 2309/2162 ,
  629. bottom: 0.069
  630. }
  631. },
  632. side: {
  633. height: math.unit(7, "feet"),
  634. weight: math.unit(80, "kg"),
  635. name: "Side",
  636. image: {
  637. source: "./media/characters/zephiro/side.svg",
  638. extra: 2403/2279 ,
  639. bottom: 0.015
  640. }
  641. },
  642. back: {
  643. height: math.unit(7, "feet"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/zephiro/back.svg",
  648. extra: 2373/2244 ,
  649. bottom: 0.013
  650. }
  651. },
  652. },
  653. [
  654. {
  655. name: "Micro",
  656. height: math.unit(3, "inches")
  657. },
  658. {
  659. name: "Normal",
  660. height: math.unit(5 + 3/12, "feet"),
  661. default: true
  662. },
  663. {
  664. name: "Macro",
  665. height: math.unit(118, "feet")
  666. },
  667. ]
  668. )
  669. };
  670. characterMakers["Fory"] = () => {
  671. return makeCharacter(
  672. "Fory",
  673. "Manny",
  674. {
  675. front: {
  676. height: math.unit(7, "feet"),
  677. weight: math.unit(90, "kg"),
  678. name: "Front",
  679. image: {
  680. source: "./media/characters/fory/front.svg",
  681. extra: 1,
  682. bottom: 0.03
  683. }
  684. },
  685. },
  686. [
  687. {
  688. name: "Normal",
  689. height: math.unit(5, "feet")
  690. },
  691. {
  692. name: "Macro",
  693. height: math.unit(50, "feet"),
  694. default: true
  695. },
  696. ]
  697. )
  698. };
  699. characterMakers["Kurrikage"] = () => {
  700. return makeCharacter(
  701. "Kurrikage",
  702. "Kurrikage",
  703. {
  704. front: {
  705. height: math.unit(7, "feet"),
  706. weight: math.unit(90, "kg"),
  707. name: "Front",
  708. image: {
  709. source: "./media/characters/kurrikage/front.svg",
  710. extra: 1,
  711. bottom: 0.035
  712. }
  713. },
  714. back: {
  715. height: math.unit(7, "feet"),
  716. weight: math.unit(90, "lb"),
  717. name: "Back",
  718. image: {
  719. source: "./media/characters/kurrikage/back.svg"
  720. }
  721. },
  722. paw: {
  723. height: math.unit(1.5, "feet"),
  724. name: "Paw",
  725. image: {
  726. source: "./media/characters/kurrikage/paw.svg"
  727. }
  728. },
  729. staff: {
  730. height: math.unit(6.7, "feet"),
  731. name: "Staff",
  732. image: {
  733. source: "./media/characters/kurrikage/staff.svg"
  734. }
  735. },
  736. peek: {
  737. height: math.unit(1.05, "feet"),
  738. name: "Peeking",
  739. image: {
  740. source: "./media/characters/kurrikage/peek.svg",
  741. bottom: 0.08
  742. }
  743. },
  744. },
  745. [
  746. {
  747. name: "Normal",
  748. height: math.unit(12, "feet"),
  749. default: true
  750. },
  751. {
  752. name: "Big",
  753. height: math.unit(20, "feet")
  754. },
  755. {
  756. name: "Macro",
  757. height: math.unit(500, "feet")
  758. },
  759. {
  760. name: "Megamacro",
  761. height: math.unit(20, "miles")
  762. },
  763. ]
  764. )
  765. };
  766. characterMakers["Shingo"] = () => {
  767. return makeCharacter(
  768. "Shingo",
  769. "Shingo",
  770. {
  771. front: {
  772. height: math.unit(6, "feet"),
  773. weight: math.unit(75, "kg"),
  774. name: "Front",
  775. image: {
  776. source: "./media/characters/shingo/front.svg",
  777. extra: 3511/3338 ,
  778. bottom: 0.005
  779. }
  780. },
  781. },
  782. [
  783. {
  784. name: "Micro",
  785. height: math.unit(4, "inches")
  786. },
  787. {
  788. name: "Normal",
  789. height: math.unit(6, "feet"),
  790. default: true
  791. },
  792. {
  793. name: "Macro",
  794. height: math.unit(108, "feet")
  795. }
  796. ]
  797. )
  798. };
  799. function makeAigey() {
  800. const views = {
  801. side: {
  802. attributes: {
  803. height: {
  804. name: "Height",
  805. power: 1,
  806. type: "length",
  807. base: math.unit(6, "feet")
  808. },
  809. weight: {
  810. name: "Weight",
  811. power: 3,
  812. type: "mass",
  813. base: math.unit(75, "kg")
  814. }
  815. },
  816. image: {
  817. source: "./media/characters/aigey/side.svg"
  818. },
  819. name: "Side"
  820. }
  821. };
  822. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  823. entity.sizes.push({
  824. name: "Macro",
  825. height: math.unit(200, "feet")
  826. });
  827. entity.sizes.push({
  828. name: "Megamacro",
  829. height: math.unit(100, "miles")
  830. });
  831. entity.views[entity.defaultView].height = math.unit(200, "feet");
  832. return entity;
  833. }
  834. characterMakers["Natasha"] = () => {
  835. return makeCharacter(
  836. "Natasha",
  837. "MammaAWD",
  838. {
  839. front: {
  840. height: math.unit(5 + 5/12, "feet"),
  841. weight: math.unit(75, "kg"),
  842. name: "Front",
  843. image: {
  844. source: "./media/characters/natasha/front.svg",
  845. extra: 875/846,
  846. bottom: 0.01
  847. }
  848. },
  849. },
  850. [
  851. {
  852. name: "Normal",
  853. height: math.unit(5 + 5/12, "feet")
  854. },
  855. {
  856. name: "Large",
  857. height: math.unit(12, "feet")
  858. },
  859. {
  860. name: "Macro",
  861. height: math.unit(100, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro+",
  866. height: math.unit(260, "feet")
  867. },
  868. {
  869. name: "Macro++",
  870. height: math.unit(1, "mile")
  871. },
  872. ]
  873. )
  874. };
  875. function makeMalik() {
  876. const views = {
  877. front: {
  878. attributes: {
  879. height: {
  880. name: "Height",
  881. power: 1,
  882. type: "length",
  883. base: math.unit(6, "feet")
  884. },
  885. weight: {
  886. name: "Weight",
  887. power: 3,
  888. type: "mass",
  889. base: math.unit(75, "kg")
  890. }
  891. },
  892. image: {
  893. source: "./media/characters/malik/front.svg"
  894. },
  895. name: "Front"
  896. },
  897. side: {
  898. attributes: {
  899. height: {
  900. name: "Height",
  901. power: 1,
  902. type: "length",
  903. base: math.unit(6, "feet")
  904. },
  905. weight: {
  906. name: "Weight",
  907. power: 3,
  908. type: "mass",
  909. base: math.unit(75, "kg")
  910. }
  911. },
  912. image: {
  913. extra: 1.1539,
  914. source: "./media/characters/malik/side.svg"
  915. },
  916. name: "Side"
  917. },
  918. back: {
  919. attributes: {
  920. height: {
  921. name: "Height",
  922. power: 1,
  923. type: "length",
  924. base: math.unit(6, "feet")
  925. },
  926. weight: {
  927. name: "Weight",
  928. power: 3,
  929. type: "mass",
  930. base: math.unit(75, "kg")
  931. }
  932. },
  933. image: {
  934. source: "./media/characters/malik/back.svg"
  935. },
  936. name: "Back"
  937. },
  938. };
  939. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  940. entity.sizes.push({
  941. name: "Macro",
  942. height: math.unit(156, "feet")
  943. });
  944. entity.sizes.push({
  945. name: "Macro+",
  946. height: math.unit(1188, "feet")
  947. });
  948. entity.views[entity.defaultView].height = math.unit(156, "feet");
  949. return entity;
  950. }
  951. function makeSefer() {
  952. const views = {
  953. front: {
  954. attributes: {
  955. height: {
  956. name: "Height",
  957. power: 1,
  958. type: "length",
  959. base: math.unit(6, "feet")
  960. },
  961. weight: {
  962. name: "Weight",
  963. power: 3,
  964. type: "mass",
  965. base: math.unit(75, "kg")
  966. }
  967. },
  968. image: {
  969. source: "./media/characters/sefer/front.svg"
  970. },
  971. name: "Front"
  972. },
  973. back: {
  974. attributes: {
  975. height: {
  976. name: "Height",
  977. power: 1,
  978. type: "length",
  979. base: math.unit(6, "feet")
  980. },
  981. weight: {
  982. name: "Weight",
  983. power: 3,
  984. type: "mass",
  985. base: math.unit(75, "kg")
  986. }
  987. },
  988. image: {
  989. source: "./media/characters/sefer/back.svg"
  990. },
  991. name: "Back"
  992. },
  993. };
  994. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  995. entity.views[entity.defaultView].height = math.unit(6, "feet");
  996. return entity;
  997. }
  998. characterMakers["North"] = () => {
  999. return makeCharacter(
  1000. "North",
  1001. "chemicalcrux",
  1002. {
  1003. body: {
  1004. height: math.unit(2.2428, "meter"),
  1005. weight: math.unit(124.738, "kg"),
  1006. name: "Body",
  1007. image: {
  1008. extra: 1225 / 1050,
  1009. source: "./media/characters/north/front.svg"
  1010. }
  1011. }
  1012. },
  1013. [
  1014. {
  1015. name: "Micro",
  1016. height: math.unit(4, "inches")
  1017. },
  1018. {
  1019. name: "Macro",
  1020. height: math.unit(63, "meters")
  1021. },
  1022. {
  1023. name: "Megamacro",
  1024. height: math.unit(101, "miles"),
  1025. default: true
  1026. }
  1027. ]
  1028. )
  1029. };
  1030. characterMakers["Talan"] = () => {
  1031. return makeCharacter(
  1032. "Talan",
  1033. "talanstrider",
  1034. {
  1035. body: {
  1036. height: math.unit(2, "meter"),
  1037. weight: math.unit(70, "kg"),
  1038. name: "Body",
  1039. image: {
  1040. bottom: 0.02,
  1041. source: "./media/characters/talan/front.svg"
  1042. }
  1043. }
  1044. },
  1045. [
  1046. {
  1047. name: "Normal",
  1048. height: math.unit(4, "meters")
  1049. },
  1050. {
  1051. name: "Macro",
  1052. height: math.unit(100, "meters")
  1053. },
  1054. {
  1055. name: "Megamacro",
  1056. height: math.unit(2, "miles"),
  1057. default: true
  1058. },
  1059. {
  1060. name: "Gigamacro",
  1061. height: math.unit(5000, "miles")
  1062. },
  1063. {
  1064. name: "Teramacro",
  1065. height: math.unit(100, "parsecs")
  1066. }
  1067. ]
  1068. )
  1069. };
  1070. characterMakers["Gael'Rathus"] = () => {
  1071. return makeCharacter(
  1072. "Gael'Rathus",
  1073. "Kurrikage",
  1074. {
  1075. front: {
  1076. height: math.unit(2, "meter"),
  1077. weight: math.unit(90, "kg"),
  1078. name: "Front",
  1079. image: {
  1080. source: "./media/characters/gael'rathus/front.svg"
  1081. }
  1082. },
  1083. frontAlt: {
  1084. height: math.unit(2, "meter"),
  1085. weight: math.unit(90, "kg"),
  1086. name: "Front (alt)",
  1087. image: {
  1088. source: "./media/characters/gael'rathus/front-alt.svg"
  1089. }
  1090. },
  1091. frontAlt2: {
  1092. height: math.unit(2, "meter"),
  1093. weight: math.unit(90, "kg"),
  1094. name: "Front (alt 2)",
  1095. image: {
  1096. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1097. }
  1098. }
  1099. },
  1100. [
  1101. {
  1102. name: "Normal",
  1103. height: math.unit(9, "feet"),
  1104. default: true
  1105. },
  1106. {
  1107. name: "Large",
  1108. height: math.unit(25, "feet")
  1109. },
  1110. {
  1111. name: "Macro",
  1112. height: math.unit(0.25, "miles")
  1113. },
  1114. {
  1115. name: "Megamacro",
  1116. height: math.unit(10, "miles")
  1117. }
  1118. ]
  1119. )
  1120. };
  1121. characterMakers["Sosha"] = () => {
  1122. return makeCharacter(
  1123. "Sosha",
  1124. "Sdocat",
  1125. {
  1126. side: {
  1127. height: math.unit(2, "meter"),
  1128. weight: math.unit(140, "kg"),
  1129. name: "Side",
  1130. image: {
  1131. source: "./media/characters/sosha/side.svg",
  1132. bottom: 0.042
  1133. }
  1134. },
  1135. },
  1136. [
  1137. {
  1138. name: "Normal",
  1139. height: math.unit(12, "feet"),
  1140. default: true
  1141. }
  1142. ]
  1143. )
  1144. };
  1145. characterMakers["RuNNoLa"] = () => {
  1146. return makeCharacter(
  1147. "RuNNoLa",
  1148. "RuNNoLa",
  1149. {
  1150. side: {
  1151. height: math.unit(5 + 5/12, "feet"),
  1152. weight: math.unit(170, "kg"),
  1153. name: "Side",
  1154. image: {
  1155. source: "./media/characters/runnola/side.svg",
  1156. extra: 741/448,
  1157. bottom: 0.05
  1158. }
  1159. },
  1160. },
  1161. [
  1162. {
  1163. name: "Small",
  1164. height: math.unit(3, "feet")
  1165. },
  1166. {
  1167. name: "Normal",
  1168. height: math.unit(5 + 5/12, "feet"),
  1169. default: true
  1170. },
  1171. {
  1172. name: "Big",
  1173. height: math.unit(10, "feet")
  1174. },
  1175. ]
  1176. )
  1177. };
  1178. characterMakers["Kurribird"] = () => {
  1179. return makeCharacter(
  1180. "Kurribird",
  1181. "Kurrikage",
  1182. {
  1183. front: {
  1184. height: math.unit(2, "meter"),
  1185. weight: math.unit(50, "kg"),
  1186. name: "Front",
  1187. image: {
  1188. source: "./media/characters/kurribird/front.svg",
  1189. bottom: 0.015
  1190. }
  1191. },
  1192. frontAlt: {
  1193. height: math.unit(1.5, "meter"),
  1194. weight: math.unit(50, "kg"),
  1195. name: "Front (Alt)",
  1196. image: {
  1197. source: "./media/characters/kurribird/front-alt.svg",
  1198. extra: 1.45
  1199. }
  1200. },
  1201. },
  1202. [
  1203. {
  1204. name: "Normal",
  1205. height: math.unit(7, "feet")
  1206. },
  1207. {
  1208. name: "Big",
  1209. height: math.unit(12, "feet"),
  1210. default: true
  1211. },
  1212. {
  1213. name: "Macro",
  1214. height: math.unit(1500, "feet")
  1215. },
  1216. {
  1217. name: "Megamacro",
  1218. height: math.unit(2, "miles")
  1219. }
  1220. ]
  1221. )
  1222. };
  1223. characterMakers["Elbial"] = () => {
  1224. return makeCharacter(
  1225. "Elbial",
  1226. "Neopuc",
  1227. {
  1228. front: {
  1229. height: math.unit(2, "meter"),
  1230. weight: math.unit(80, "kg"),
  1231. name: "Front",
  1232. image: {
  1233. source: "./media/characters/elbial/front.svg"
  1234. }
  1235. },
  1236. side: {
  1237. height: math.unit(2, "meter"),
  1238. weight: math.unit(80, "kg"),
  1239. name: "Side",
  1240. image: {
  1241. source: "./media/characters/elbial/side.svg"
  1242. }
  1243. },
  1244. back: {
  1245. height: math.unit(2, "meter"),
  1246. weight: math.unit(80, "kg"),
  1247. name: "Back",
  1248. image: {
  1249. source: "./media/characters/elbial/back.svg"
  1250. }
  1251. },
  1252. },
  1253. [
  1254. {
  1255. name: "Large",
  1256. height: math.unit(100, "feet")
  1257. },
  1258. {
  1259. name: "Macro",
  1260. height: math.unit(500, "feet"),
  1261. default: true
  1262. },
  1263. {
  1264. name: "Megamacro",
  1265. height: math.unit(10, "miles")
  1266. },
  1267. {
  1268. name: "Gigamacro",
  1269. height: math.unit(25000, "miles")
  1270. },
  1271. {
  1272. name: "Full-Size",
  1273. height: math.unit(8000000, "gigaparsecs")
  1274. }
  1275. ]
  1276. )
  1277. };
  1278. characterMakers["Noah"] = () => {
  1279. return makeCharacter(
  1280. "Noah",
  1281. "Neopuc",
  1282. {
  1283. front: {
  1284. height: math.unit(2, "meter"),
  1285. weight: math.unit(60, "kg"),
  1286. name: "Front",
  1287. image: {
  1288. source: "./media/characters/noah/front.svg"
  1289. }
  1290. },
  1291. talons: {
  1292. height: math.unit(0.315, "meter"),
  1293. name: "Talons",
  1294. image: {
  1295. source: "./media/characters/noah/talons.svg"
  1296. }
  1297. }
  1298. },
  1299. [
  1300. {
  1301. name: "Large",
  1302. height: math.unit(50, "feet")
  1303. },
  1304. {
  1305. name: "Macro",
  1306. height: math.unit(750, "feet"),
  1307. default: true
  1308. },
  1309. {
  1310. name: "Megamacro",
  1311. height: math.unit(50, "miles")
  1312. },
  1313. {
  1314. name: "Gigamacro",
  1315. height: math.unit(100000, "miles")
  1316. },
  1317. {
  1318. name: "Full-Size",
  1319. height: math.unit(3000000000, "miles")
  1320. }
  1321. ]
  1322. )
  1323. };
  1324. characterMakers["Natalya"] = () => {
  1325. return makeCharacter(
  1326. "Natalya",
  1327. "Neopuc",
  1328. {
  1329. front: {
  1330. height: math.unit(2, "meter"),
  1331. weight: math.unit(80, "kg"),
  1332. name: "Front",
  1333. image: {
  1334. source: "./media/characters/natalya/front.svg"
  1335. }
  1336. },
  1337. back: {
  1338. height: math.unit(2, "meter"),
  1339. weight: math.unit(80, "kg"),
  1340. name: "Back",
  1341. image: {
  1342. source: "./media/characters/natalya/back.svg"
  1343. }
  1344. }
  1345. },
  1346. [
  1347. {
  1348. name: "Normal",
  1349. height: math.unit(150, "feet"),
  1350. default: true
  1351. },
  1352. {
  1353. name: "Megamacro",
  1354. height: math.unit(5, "miles")
  1355. },
  1356. {
  1357. name: "Full-Size",
  1358. height: math.unit(600, "kiloparsecs")
  1359. }
  1360. ]
  1361. )
  1362. };
  1363. characterMakers["Erestrebah"] = () => {
  1364. return makeCharacter(
  1365. "Erestrebah",
  1366. "Kurrikage",
  1367. {
  1368. front: {
  1369. height: math.unit(2, "meter"),
  1370. weight: math.unit(50, "kg"),
  1371. name: "Front",
  1372. image: {
  1373. source: "./media/characters/erestrebah/front.svg",
  1374. extra: 208/193,
  1375. bottom: 0.055
  1376. }
  1377. },
  1378. back: {
  1379. height: math.unit(2, "meter"),
  1380. weight: math.unit(50, "kg"),
  1381. name: "Back",
  1382. image: {
  1383. source: "./media/characters/erestrebah/back.svg",
  1384. extra: 1.3
  1385. }
  1386. }
  1387. },
  1388. [
  1389. {
  1390. name: "Normal",
  1391. height: math.unit(10, "feet")
  1392. },
  1393. {
  1394. name: "Large",
  1395. height: math.unit(50, "feet"),
  1396. default: true
  1397. },
  1398. {
  1399. name: "Macro",
  1400. height: math.unit(300, "feet")
  1401. },
  1402. {
  1403. name: "Macro+",
  1404. height: math.unit(750, "feet")
  1405. },
  1406. {
  1407. name: "Megamacro",
  1408. height: math.unit(3, "miles")
  1409. }
  1410. ]
  1411. )
  1412. };
  1413. characterMakers["Jennifer"] = () => {
  1414. return makeCharacter(
  1415. "Jennifer",
  1416. "Neopuc",
  1417. {
  1418. front: {
  1419. height: math.unit(2, "meter"),
  1420. weight: math.unit(80, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/jennifer/front.svg",
  1424. bottom: 0.11,
  1425. extra: 1.16
  1426. }
  1427. },
  1428. frontAlt: {
  1429. height: math.unit(2, "meter"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Front (Alt)",
  1432. image: {
  1433. source: "./media/characters/jennifer/front-alt.svg"
  1434. }
  1435. }
  1436. },
  1437. [
  1438. {
  1439. name: "Canon Height",
  1440. height: math.unit(120, "feet"),
  1441. default: true
  1442. },
  1443. {
  1444. name: "Macro+",
  1445. height: math.unit(300, "feet")
  1446. },
  1447. {
  1448. name: "Megamacro",
  1449. height: math.unit(20000, "feet")
  1450. }
  1451. ]
  1452. )
  1453. };
  1454. characterMakers["Kalista"] = () => {
  1455. return makeCharacter(
  1456. "Kalista",
  1457. "Kalista",
  1458. {
  1459. front: {
  1460. height: math.unit(2, "meter"),
  1461. weight: math.unit(50, "kg"),
  1462. name: "Front",
  1463. image: {
  1464. source: "./media/characters/kalista/front.svg",
  1465. extra: 1947/1700
  1466. }
  1467. },
  1468. back: {
  1469. height: math.unit(2, "meter"),
  1470. weight: math.unit(50, "kg"),
  1471. name: "Back",
  1472. image: {
  1473. source: "./media/characters/kalista/back.svg",
  1474. extra: 1366/1156
  1475. }
  1476. }
  1477. },
  1478. [
  1479. {
  1480. name: "Uncomfortably Small",
  1481. height: math.unit(10, "feet")
  1482. },
  1483. {
  1484. name: "Small",
  1485. height: math.unit(30, "feet")
  1486. },
  1487. {
  1488. name: "Macro",
  1489. height: math.unit(100, "feet"),
  1490. default: true
  1491. },
  1492. {
  1493. name: "Macro+",
  1494. height: math.unit(2000, "feet")
  1495. },
  1496. {
  1497. name: "True Form",
  1498. height: math.unit(8924, "miles")
  1499. }
  1500. ]
  1501. )
  1502. };
  1503. characterMakers["GiantGrowingVixen"] = () => {
  1504. return makeCharacter(
  1505. "GiantGrowingVixen",
  1506. "GiantGrowingVixen",
  1507. {
  1508. front: {
  1509. height: math.unit(2, "meter"),
  1510. weight: math.unit(120, "kg"),
  1511. name: "Front",
  1512. image: {
  1513. source: "./media/characters/ggv/front.svg"
  1514. }
  1515. },
  1516. side: {
  1517. height: math.unit(2, "meter"),
  1518. weight: math.unit(120, "kg"),
  1519. name: "Side",
  1520. image: {
  1521. source: "./media/characters/ggv/side.svg"
  1522. }
  1523. }
  1524. },
  1525. [
  1526. {
  1527. name: "Extremely Puny",
  1528. height: math.unit(9 + 5 / 12, "feet")
  1529. },
  1530. {
  1531. name: "Horribly Small",
  1532. height: math.unit(47.7, "miles"),
  1533. default: true
  1534. },
  1535. {
  1536. name: "Reasonably Sized",
  1537. height: math.unit(25000, "parsecs")
  1538. },
  1539. {
  1540. name: "Slightly Uncompressed",
  1541. height: math.unit(7.77e31, "parsecs")
  1542. },
  1543. {
  1544. name: "Omniversal",
  1545. height: math.unit(1e300, "meters")
  1546. },
  1547. ]
  1548. )
  1549. };
  1550. characterMakers["Napalm"] = () => {
  1551. return makeCharacter(
  1552. "Napalm",
  1553. "RathDaKrogan",
  1554. {
  1555. front: {
  1556. height: math.unit(2, "meter"),
  1557. weight: math.unit(75, "lb"),
  1558. name: "Front",
  1559. image: {
  1560. source: "./media/characters/napalm/front.svg"
  1561. }
  1562. },
  1563. back: {
  1564. height: math.unit(2, "meter"),
  1565. weight: math.unit(75, "lb"),
  1566. name: "Back",
  1567. image: {
  1568. source: "./media/characters/napalm/back.svg"
  1569. }
  1570. }
  1571. },
  1572. [
  1573. {
  1574. name: "Standard",
  1575. height: math.unit(55, "feet"),
  1576. default: true
  1577. }
  1578. ]
  1579. )
  1580. };
  1581. characterMakers["Asana"] = () => {
  1582. return makeCharacter(
  1583. "Asana",
  1584. "Asana",
  1585. {
  1586. front: {
  1587. height: math.unit(7 + 5 / 6, "feet"),
  1588. weight: math.unit(325, "lb"),
  1589. name: "Front",
  1590. image: {
  1591. source: "./media/characters/asana/front.svg",
  1592. extra: 1128 / 1068
  1593. }
  1594. },
  1595. back: {
  1596. height: math.unit(7 + 5 / 6, "feet"),
  1597. weight: math.unit(325, "lb"),
  1598. name: "Back",
  1599. image: {
  1600. source: "./media/characters/asana/back.svg",
  1601. extra: 1128 / 1068
  1602. }
  1603. },
  1604. },
  1605. [
  1606. {
  1607. name: "Standard",
  1608. height: math.unit(7 + 5 / 6, "feet"),
  1609. default: true
  1610. },
  1611. {
  1612. name: "Large",
  1613. height: math.unit(10, "meters")
  1614. },
  1615. {
  1616. name: "Macro",
  1617. height: math.unit(2500, "meters")
  1618. },
  1619. {
  1620. name: "Megamacro",
  1621. height: math.unit(5e6, "meters")
  1622. },
  1623. {
  1624. name: "Examacro",
  1625. height: math.unit(5e12, "lightyears")
  1626. },
  1627. {
  1628. name: "Max Size",
  1629. height: math.unit(1e31, "lightyears")
  1630. }
  1631. ]
  1632. )
  1633. };
  1634. characterMakers["Ebony"] = () => {
  1635. return makeCharacter(
  1636. "Ebony",
  1637. "Lazerwolf",
  1638. {
  1639. front: {
  1640. height: math.unit(2, "meter"),
  1641. weight: math.unit(60, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/ebony/front.svg",
  1645. bottom: 0.03,
  1646. extra: 1045 / 810 + 0.03
  1647. }
  1648. },
  1649. side: {
  1650. height: math.unit(2, "meter"),
  1651. weight: math.unit(60, "kg"),
  1652. name: "Side",
  1653. image: {
  1654. source: "./media/characters/ebony/side.svg",
  1655. bottom: 0.03,
  1656. extra: 1045 / 810 + 0.03
  1657. }
  1658. },
  1659. back: {
  1660. height: math.unit(2, "meter"),
  1661. weight: math.unit(60, "kg"),
  1662. name: "Back",
  1663. image: {
  1664. source: "./media/characters/ebony/back.svg",
  1665. bottom: 0.01,
  1666. extra: 1045 / 810 + 0.01
  1667. }
  1668. },
  1669. },
  1670. [
  1671. // TODO check why I did this lol
  1672. {
  1673. name: "Standard",
  1674. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1675. default: true
  1676. },
  1677. {
  1678. name: "Macro",
  1679. height: math.unit(200, "feet")
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(13000, "km")
  1684. }
  1685. ]
  1686. )
  1687. };
  1688. characterMakers["Mountain"] = () => {
  1689. return makeCharacter(
  1690. "Mountain",
  1691. "Asana",
  1692. {
  1693. front: {
  1694. height: math.unit(6, "feet"),
  1695. weight: math.unit(175, "lb"),
  1696. name: "Front",
  1697. image: {
  1698. source: "./media/characters/mountain/front.svg"
  1699. }
  1700. },
  1701. back: {
  1702. height: math.unit(6, "feet"),
  1703. weight: math.unit(175, "lb"),
  1704. name: "Back",
  1705. image: {
  1706. source: "./media/characters/mountain/back.svg"
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Large",
  1713. height: math.unit(20, "meters")
  1714. },
  1715. {
  1716. name: "Macro",
  1717. height: math.unit(300, "meters")
  1718. },
  1719. {
  1720. name: "Gigamacro",
  1721. height: math.unit(10000, "km"),
  1722. default: true
  1723. },
  1724. {
  1725. name: "Examacro",
  1726. height: math.unit(10e9, "lightyears")
  1727. }
  1728. ]
  1729. )
  1730. };
  1731. characterMakers["Rick"] = () => {
  1732. return makeCharacter(
  1733. "Rick",
  1734. "Victni",
  1735. {
  1736. front: {
  1737. height: math.unit(8, "feet"),
  1738. weight: math.unit(500, "lb"),
  1739. name: "Front",
  1740. image: {
  1741. source: "./media/characters/rick/front.svg"
  1742. }
  1743. }
  1744. },
  1745. [
  1746. {
  1747. name: "Normal",
  1748. height: math.unit(8, "feet"),
  1749. default: true
  1750. },
  1751. {
  1752. name: "Macro",
  1753. height: math.unit(5, "km")
  1754. }
  1755. ]
  1756. )
  1757. };
  1758. characterMakers["Ona"] = () => {
  1759. return makeCharacter(
  1760. "Ona",
  1761. "Arrogance127",
  1762. {
  1763. front: {
  1764. height: math.unit(8, "feet"),
  1765. weight: math.unit(120, "lb"),
  1766. name: "Front",
  1767. image: {
  1768. source: "./media/characters/ona/front.svg"
  1769. }
  1770. },
  1771. frontAlt: {
  1772. height: math.unit(8, "feet"),
  1773. weight: math.unit(120, "lb"),
  1774. name: "Front (Alt)",
  1775. image: {
  1776. source: "./media/characters/ona/front-alt.svg"
  1777. }
  1778. },
  1779. back: {
  1780. height: math.unit(8, "feet"),
  1781. weight: math.unit(120, "lb"),
  1782. name: "Back",
  1783. image: {
  1784. source: "./media/characters/ona/back.svg"
  1785. }
  1786. },
  1787. foot: {
  1788. height: math.unit(1.1, "feet"),
  1789. name: "Foot",
  1790. image: {
  1791. source: "./media/characters/ona/foot.svg"
  1792. }
  1793. }
  1794. },
  1795. [
  1796. {
  1797. name: "Megamacro",
  1798. height: math.unit(70, "km"),
  1799. default: true
  1800. },
  1801. {
  1802. name: "Gigamacro",
  1803. height: math.unit(681818, "miles")
  1804. },
  1805. {
  1806. name: "Examacro",
  1807. height: math.unit(3800000, "lightyears")
  1808. },
  1809. ]
  1810. )
  1811. };
  1812. characterMakers["Mech"] = () => {
  1813. return makeCharacter(
  1814. "Mech",
  1815. "mechEdragon",
  1816. {
  1817. front: {
  1818. height: math.unit(12, "feet"),
  1819. weight: math.unit(3000, "lb"),
  1820. name: "Front",
  1821. image: {
  1822. source: "./media/characters/mech/front.svg",
  1823. bottom: 0.025,
  1824. }
  1825. },
  1826. back: {
  1827. height: math.unit(12, "feet"),
  1828. weight: math.unit(3000, "lb"),
  1829. name: "Back",
  1830. image: {
  1831. source: "./media/characters/mech/back.svg",
  1832. bottom: 0.03,
  1833. }
  1834. }
  1835. },
  1836. [
  1837. {
  1838. name: "Normal",
  1839. height: math.unit(12, "feet")
  1840. },
  1841. {
  1842. name: "Macro",
  1843. height: math.unit(300, "feet"),
  1844. default: true
  1845. },
  1846. {
  1847. name: "Macro+",
  1848. height: math.unit(1500, "feet")
  1849. },
  1850. ]
  1851. )
  1852. };
  1853. characterMakers["Gregory"] = () => {
  1854. return makeCharacter(
  1855. "Gregory",
  1856. "GregoryKlippenspringer",
  1857. {
  1858. front: {
  1859. height: math.unit(1.3, "meter"),
  1860. weight: math.unit(30, "kg"),
  1861. name: "Front",
  1862. image: {
  1863. source: "./media/characters/gregory/front.svg",
  1864. }
  1865. }
  1866. },
  1867. [
  1868. {
  1869. name: "Normal",
  1870. height: math.unit(1.3, "meter"),
  1871. default: true
  1872. },
  1873. {
  1874. name: "Macro",
  1875. height: math.unit(20, "meter")
  1876. }
  1877. ]
  1878. )
  1879. };
  1880. characterMakers["Elory"] = () => {
  1881. return makeCharacter(
  1882. "Elory",
  1883. "GregoryKlippenspringer",
  1884. {
  1885. front: {
  1886. height: math.unit(2.8, "meter"),
  1887. weight: math.unit(200, "kg"),
  1888. name: "Front",
  1889. image: {
  1890. source: "./media/characters/elory/front.svg",
  1891. }
  1892. }
  1893. },
  1894. [
  1895. {
  1896. name: "Normal",
  1897. height: math.unit(2.8, "meter"),
  1898. default: true
  1899. },
  1900. {
  1901. name: "Macro",
  1902. height: math.unit(38, "meter")
  1903. }
  1904. ]
  1905. )
  1906. };
  1907. characterMakers["Angelpatamon"] = () => {
  1908. return makeCharacter(
  1909. "Angelpatamon",
  1910. "GregoryKlippenspringer",
  1911. {
  1912. front: {
  1913. height: math.unit(470, "feet"),
  1914. weight: math.unit(924, "tons"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/angelpatamon/front.svg",
  1918. }
  1919. }
  1920. },
  1921. [
  1922. {
  1923. name: "Normal",
  1924. height: math.unit(470, "feet"),
  1925. default: true
  1926. },
  1927. {
  1928. name: "Deity Size I",
  1929. height: math.unit(28651.2, "km")
  1930. },
  1931. {
  1932. name: "Deity Size II",
  1933. height: math.unit(171907.2, "km")
  1934. }
  1935. ]
  1936. )
  1937. };
  1938. characterMakers["Cryae"] = () => {
  1939. return makeCharacter(
  1940. "Cryae",
  1941. "GregoryKlippenspringer",
  1942. {
  1943. side: {
  1944. height: math.unit(7.2, "meter"),
  1945. weight: math.unit(8.2, "tons"),
  1946. name: "Side",
  1947. image: {
  1948. source: "./media/characters/cryae/side.svg",
  1949. extra: 3500 / 1500
  1950. }
  1951. }
  1952. },
  1953. [
  1954. {
  1955. name: "Normal",
  1956. height: math.unit(7.2, "meter"),
  1957. default: true
  1958. }
  1959. ]
  1960. )
  1961. };
  1962. characterMakers["Xera"] = () => {
  1963. return makeCharacter(
  1964. "Xera",
  1965. "Asana",
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(175, "lb"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/xera/front.svg",
  1973. extra: 2300 / 2061
  1974. }
  1975. },
  1976. side: {
  1977. height: math.unit(6, "feet"),
  1978. weight: math.unit(175, "lb"),
  1979. name: "Side",
  1980. image: {
  1981. source: "./media/characters/xera/side.svg",
  1982. extra: 2300 / 2061
  1983. }
  1984. },
  1985. back: {
  1986. height: math.unit(6, "feet"),
  1987. weight: math.unit(175, "lb"),
  1988. name: "Back",
  1989. image: {
  1990. source: "./media/characters/xera/back.svg"
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Small",
  1997. height: math.unit(10, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(500, "meters"),
  2002. default: true
  2003. },
  2004. {
  2005. name: "Macro+",
  2006. height: math.unit(10, "km")
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(25000, "km")
  2011. },
  2012. {
  2013. name: "Teramacro",
  2014. height: math.unit(3e6, "km")
  2015. }
  2016. ]
  2017. )
  2018. };
  2019. characterMakers["Nebula"] = () => {
  2020. return makeCharacter(
  2021. "Nebula",
  2022. "Cilenomon",
  2023. {
  2024. front: {
  2025. height: math.unit(6, "feet"),
  2026. weight: math.unit(175, "lb"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/nebula/front.svg",
  2030. extra: 2600 / 2450
  2031. }
  2032. }
  2033. },
  2034. [
  2035. {
  2036. name: "Small",
  2037. height: math.unit(4.5, "meters")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(1500, "meters"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Megamacro",
  2046. height: math.unit(150, "km")
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(27000, "km")
  2051. }
  2052. ]
  2053. )
  2054. };
  2055. characterMakers["Abysgar"] = () => {
  2056. return makeCharacter(
  2057. "Abysgar",
  2058. "Cilenomon",
  2059. {
  2060. front: {
  2061. height: math.unit(6, "feet"),
  2062. weight: math.unit(225, "lb"),
  2063. name: "Front",
  2064. image: {
  2065. source: "./media/characters/abysgar/front.svg"
  2066. }
  2067. }
  2068. },
  2069. [
  2070. {
  2071. name: "Small",
  2072. height: math.unit(4.5, "meters")
  2073. },
  2074. {
  2075. name: "Macro",
  2076. height: math.unit(1250, "meters"),
  2077. default: true
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(125, "km")
  2082. },
  2083. {
  2084. name: "Gigamacro",
  2085. height: math.unit(26000, "km")
  2086. }
  2087. ]
  2088. )
  2089. };
  2090. characterMakers["Yakuz"] = () => {
  2091. return makeCharacter(
  2092. "Yakuz",
  2093. "Cilenomon",
  2094. {
  2095. front: {
  2096. height: math.unit(6, "feet"),
  2097. weight: math.unit(180, "lb"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/yakuz/front.svg"
  2101. }
  2102. }
  2103. },
  2104. [
  2105. {
  2106. name: "Small",
  2107. height: math.unit(5, "meters")
  2108. },
  2109. {
  2110. name: "Macro",
  2111. height: math.unit(1500, "meters"),
  2112. default: true
  2113. },
  2114. {
  2115. name: "Megamacro",
  2116. height: math.unit(200, "km")
  2117. },
  2118. {
  2119. name: "Gigamacro",
  2120. height: math.unit(100000, "km")
  2121. }
  2122. ]
  2123. )
  2124. };
  2125. characterMakers["Mirova"] = () => {
  2126. return makeCharacter(
  2127. "Mirova",
  2128. "Cilenomon",
  2129. {
  2130. front: {
  2131. height: math.unit(6, "feet"),
  2132. weight: math.unit(175, "lb"),
  2133. name: "Front",
  2134. image: {
  2135. source: "./media/characters/mirova/front.svg"
  2136. }
  2137. }
  2138. },
  2139. [
  2140. {
  2141. name: "Small",
  2142. height: math.unit(5, "meters")
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(900, "meters"),
  2147. default: true
  2148. },
  2149. {
  2150. name: "Megamacro",
  2151. height: math.unit(135, "km")
  2152. },
  2153. {
  2154. name: "Gigamacro",
  2155. height: math.unit(20000, "km")
  2156. }
  2157. ]
  2158. )
  2159. };
  2160. characterMakers["Asana (Mech)"] = () => {
  2161. return makeCharacter(
  2162. "Asana (Mech)",
  2163. "Asana",
  2164. {
  2165. side: {
  2166. height: math.unit(28.35, "feet"),
  2167. weight: math.unit(99.75, "tons"),
  2168. name: "Side",
  2169. image: {
  2170. source: "./media/characters/asana-mech/side.svg"
  2171. }
  2172. }
  2173. },
  2174. [
  2175. {
  2176. name: "Normal",
  2177. height: math.unit(28.35, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(2500, "feet")
  2183. },
  2184. {
  2185. name: "Megamacro",
  2186. height: math.unit(25, "miles")
  2187. },
  2188. {
  2189. name: "Examacro",
  2190. height: math.unit(6e8, "lightyears")
  2191. },
  2192. ]
  2193. )
  2194. };
  2195. characterMakers["Ashtrek"] = () => {
  2196. return makeCharacter(
  2197. "Ashtrek",
  2198. "Ashtrek",
  2199. {
  2200. front: {
  2201. height: math.unit(2, "meters"),
  2202. weight: math.unit(70, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/ashtrek/front.svg",
  2206. extra: 560/524 ,
  2207. bottom: 0.01
  2208. }
  2209. },
  2210. frontArmor: {
  2211. height: math.unit(2, "meters"),
  2212. weight: math.unit(76, "kg"),
  2213. name: "Front (Armor)",
  2214. image: {
  2215. source: "./media/characters/ashtrek/front-armor.svg",
  2216. extra: 561/527 ,
  2217. bottom: 0.01
  2218. }
  2219. },
  2220. side: {
  2221. height: math.unit(2, "meters"),
  2222. weight: math.unit(70, "kg"),
  2223. name: "Side",
  2224. image: {
  2225. source: "./media/characters/ashtrek/side.svg",
  2226. extra: 1717/1609 ,
  2227. bottom: 0.005
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(2, "meters"),
  2232. weight: math.unit(70, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/ashtrek/back.svg",
  2236. extra: 1570/1501
  2237. }
  2238. },
  2239. },
  2240. [
  2241. {
  2242. name: "DEFCON 5",
  2243. height: math.unit(5, "meters")
  2244. },
  2245. {
  2246. name: "DEFCON 4",
  2247. height: math.unit(500, "meters"),
  2248. default: true
  2249. },
  2250. {
  2251. name: "DEFCON 3",
  2252. height: math.unit(5, "km")
  2253. },
  2254. {
  2255. name: "DEFCON 2",
  2256. height: math.unit(500, "km")
  2257. },
  2258. {
  2259. name: "DEFCON 1",
  2260. height: math.unit(500000, "km")
  2261. },
  2262. {
  2263. name: "DEFCON 0",
  2264. height: math.unit(3, "gigaparsecs")
  2265. },
  2266. ]
  2267. )
  2268. };
  2269. characterMakers["Gale"] = () => {
  2270. return makeCharacter(
  2271. "Gale",
  2272. "GaleFierre",
  2273. {
  2274. front: {
  2275. height: math.unit(2, "meters"),
  2276. weight: math.unit(76, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/gale/front.svg"
  2280. }
  2281. },
  2282. frontAlt1: {
  2283. height: math.unit(2, "meters"),
  2284. weight: math.unit(76, "kg"),
  2285. name: "Front (Alt 1)",
  2286. image: {
  2287. source: "./media/characters/gale/front-alt-1.svg"
  2288. }
  2289. },
  2290. frontAlt2: {
  2291. height: math.unit(2, "meters"),
  2292. weight: math.unit(76, "kg"),
  2293. name: "Front (Alt 2)",
  2294. image: {
  2295. source: "./media/characters/gale/front-alt-2.svg"
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(7, "feet")
  2303. },
  2304. {
  2305. name: "Macro",
  2306. height: math.unit(150, "feet"),
  2307. default: true
  2308. },
  2309. {
  2310. name: "Macro+",
  2311. height: math.unit(300, "feet")
  2312. },
  2313. ]
  2314. )
  2315. };
  2316. characterMakers["Draylen"] = () => {
  2317. return makeCharacter(
  2318. "Draylen",
  2319. "Longshot Coyote",
  2320. {
  2321. front: {
  2322. height: math.unit(2, "meters"),
  2323. weight: math.unit(76, "kg"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/draylen/front.svg"
  2327. }
  2328. }
  2329. },
  2330. [
  2331. {
  2332. name: "Macro",
  2333. height: math.unit(150, "feet"),
  2334. default: true
  2335. }
  2336. ]
  2337. )
  2338. };
  2339. characterMakers["Chez"] = () => {
  2340. return makeCharacter(
  2341. "Chez",
  2342. "Ashtrek",
  2343. {
  2344. front: {
  2345. height: math.unit(7 + 9 / 12, "feet"),
  2346. weight: math.unit(379, "lbs"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/chez/front.svg"
  2350. }
  2351. },
  2352. side: {
  2353. height: math.unit(7 + 9 / 12, "feet"),
  2354. weight: math.unit(379, "lbs"),
  2355. name: "Side",
  2356. image: {
  2357. source: "./media/characters/chez/side.svg"
  2358. }
  2359. }
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7 + 9 / 12, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "God King",
  2369. height: math.unit(9750000, "meters")
  2370. }
  2371. ]
  2372. )
  2373. };
  2374. characterMakers["Kaylum"] = () => {
  2375. return makeCharacter(
  2376. "Kaylum",
  2377. "DJDarkJaro",
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(275, "lbs"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/kaylum/front.svg",
  2385. bottom: 0.01,
  2386. extra: 1166 / 1031
  2387. }
  2388. },
  2389. frontWingless: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(275, "lbs"),
  2392. name: "Front (Wingless)",
  2393. image: {
  2394. source: "./media/characters/kaylum/front-wingless.svg",
  2395. bottom: 0.01,
  2396. extra: 1117 / 1031
  2397. }
  2398. }
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(3.05, "meters")
  2404. },
  2405. {
  2406. name: "Master",
  2407. height: math.unit(5.5, "meters")
  2408. },
  2409. {
  2410. name: "Rampage",
  2411. height: math.unit(19, "meters")
  2412. },
  2413. {
  2414. name: "Macro Lite",
  2415. height: math.unit(37, "meters")
  2416. },
  2417. {
  2418. name: "Hyper Predator",
  2419. height: math.unit(61, "meters")
  2420. },
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(138, "meters"),
  2424. default: true
  2425. }
  2426. ]
  2427. )
  2428. };
  2429. characterMakers["Geta"] = () => {
  2430. return makeCharacter(
  2431. "Geta",
  2432. "Aeznon",
  2433. {
  2434. front: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(150, "lbs"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/geta/front.svg"
  2440. }
  2441. }
  2442. },
  2443. [
  2444. {
  2445. name: "Micro",
  2446. height: math.unit(3, "inches"),
  2447. default: true
  2448. },
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(5 + 5 / 12, "feet")
  2452. }
  2453. ]
  2454. )
  2455. };
  2456. characterMakers["Tyrnn"] = () => {
  2457. return makeCharacter(
  2458. "Tyrnn",
  2459. "Tyrnn",
  2460. {
  2461. front: {
  2462. height: math.unit(6, "feet"),
  2463. weight: math.unit(300, "lbs"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/tyrnn/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Main Height",
  2473. height: math.unit(355, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Fave. Height",
  2478. height: math.unit(2400, "feet")
  2479. }
  2480. ]
  2481. )
  2482. };
  2483. characterMakers["Apple"] = () => {
  2484. return makeCharacter(
  2485. "Apple",
  2486. "Appledectomy",
  2487. {
  2488. front: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(300, "lbs"),
  2491. name: "Front",
  2492. image: {
  2493. source: "./media/characters/appledectomy/front.svg"
  2494. }
  2495. }
  2496. },
  2497. [
  2498. {
  2499. name: "Macro",
  2500. height: math.unit(2500, "feet")
  2501. },
  2502. {
  2503. name: "Megamacro",
  2504. height: math.unit(50, "miles"),
  2505. default: true
  2506. },
  2507. {
  2508. name: "Gigamacro",
  2509. height: math.unit(5000, "miles")
  2510. },
  2511. {
  2512. name: "Teramacro",
  2513. height: math.unit(250000, "miles")
  2514. },
  2515. ]
  2516. )
  2517. };
  2518. characterMakers["Vulpes"] = () => {
  2519. return makeCharacter(
  2520. "Vulpes",
  2521. "VulpesPawpad",
  2522. {
  2523. front: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(200, "lbs"),
  2526. name: "Front",
  2527. image: {
  2528. source: "./media/characters/vulpes/front.svg"
  2529. }
  2530. },
  2531. side: {
  2532. height: math.unit(6, "feet"),
  2533. weight: math.unit(200, "lbs"),
  2534. name: "Side",
  2535. image: {
  2536. source: "./media/characters/vulpes/side.svg"
  2537. }
  2538. },
  2539. back: {
  2540. height: math.unit(6, "feet"),
  2541. weight: math.unit(200, "lbs"),
  2542. name: "Back",
  2543. image: {
  2544. source: "./media/characters/vulpes/back.svg"
  2545. }
  2546. },
  2547. feet: {
  2548. height: math.unit(1.276, "feet"),
  2549. name: "Feet",
  2550. image: {
  2551. source: "./media/characters/vulpes/feet.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Micro",
  2558. height: math.unit(2, "inches")
  2559. },
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(6.3, "feet")
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(850, "feet")
  2567. },
  2568. {
  2569. name: "Megamacro",
  2570. height: math.unit(7500, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Gigamacro",
  2575. height: math.unit(570000, "miles")
  2576. }
  2577. ]
  2578. )
  2579. };
  2580. characterMakers["Rain Fallen"] = () => {
  2581. return makeCharacter(
  2582. "Rain Fallen",
  2583. "Rain Fallen",
  2584. {
  2585. front: {
  2586. height: math.unit(6, "feet"),
  2587. weight: math.unit(210, "lbs"),
  2588. name: "Front",
  2589. image: {
  2590. source: "./media/characters/rain/front.svg"
  2591. }
  2592. },
  2593. side: {
  2594. height: math.unit(6, "feet"),
  2595. weight: math.unit(210, "lbs"),
  2596. name: "Side",
  2597. image: {
  2598. source: "./media/characters/rain/side.svg"
  2599. }
  2600. },
  2601. back: {
  2602. height: math.unit(6, "feet"),
  2603. weight: math.unit(210, "lbs"),
  2604. name: "Back",
  2605. image: {
  2606. source: "./media/characters/rain/back.svg"
  2607. }
  2608. },
  2609. feral: {
  2610. height: math.unit(9, "feet"),
  2611. weight: math.unit(700, "lbs"),
  2612. name: "Feral",
  2613. image: {
  2614. source: "./media/characters/rain/feral.svg"
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(5, "meter")
  2622. },
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(150, "meter"),
  2626. default: true
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(278e6, "meter")
  2631. },
  2632. {
  2633. name: "Gigamacro",
  2634. height: math.unit(2e9, "meter")
  2635. },
  2636. {
  2637. name: "Teramacro",
  2638. height: math.unit(8e12, "meter")
  2639. },
  2640. {
  2641. name: "Devourer",
  2642. height: math.unit(14, "zettameters")
  2643. },
  2644. {
  2645. name: "Scarlet King",
  2646. height: math.unit(18, "yottameters")
  2647. },
  2648. {
  2649. name: "Void",
  2650. height: math.unit(6.66e66, "yottameters")
  2651. }
  2652. ]
  2653. )
  2654. };
  2655. characterMakers["Zaakira"] = () => {
  2656. return makeCharacter(
  2657. "Zaakira",
  2658. "Jazzywolf",
  2659. {
  2660. standing: {
  2661. height: math.unit(6, "feet"),
  2662. weight: math.unit(180, "lbs"),
  2663. name: "Standing",
  2664. image: {
  2665. source: "./media/characters/zaakira/standing.svg"
  2666. }
  2667. },
  2668. laying: {
  2669. height: math.unit(3, "feet"),
  2670. weight: math.unit(180, "lbs"),
  2671. name: "Laying",
  2672. image: {
  2673. source: "./media/characters/zaakira/laying.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(12, "feet")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(279, "feet"),
  2685. default: true
  2686. }
  2687. ]
  2688. )
  2689. };
  2690. characterMakers["Sigvald"] = () => {
  2691. return makeCharacter(
  2692. "Sigvald",
  2693. "Sigvald",
  2694. {
  2695. front: {
  2696. height: math.unit(6, "feet"),
  2697. weight: math.unit(250, "lbs"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/sigvald/front.svg",
  2701. extra: 1000 / 850
  2702. }
  2703. },
  2704. back: {
  2705. height: math.unit(6, "feet"),
  2706. weight: math.unit(250, "lbs"),
  2707. name: "Back",
  2708. image: {
  2709. source: "./media/characters/sigvald/back.svg"
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(8, "feet")
  2717. },
  2718. {
  2719. name: "Large",
  2720. height: math.unit(12, "feet")
  2721. },
  2722. {
  2723. name: "Larger",
  2724. height: math.unit(20, "feet")
  2725. },
  2726. {
  2727. name: "Macro",
  2728. height: math.unit(150, "feet")
  2729. },
  2730. {
  2731. name: "Macro+",
  2732. height: math.unit(200, "feet"),
  2733. default: true
  2734. },
  2735. ]
  2736. )
  2737. };
  2738. characterMakers["Scott"] = () => {
  2739. return makeCharacter(
  2740. "Scott",
  2741. "Scott",
  2742. {
  2743. side: {
  2744. height: math.unit(12, "feet"),
  2745. weight: math.unit(3000, "lbs"),
  2746. name: "Side",
  2747. image: {
  2748. source: "./media/characters/scott/side.svg",
  2749. extra: 1,
  2750. bottom: 0.069
  2751. }
  2752. },
  2753. upright: {
  2754. height: math.unit(12, "feet"),
  2755. weight: math.unit(3000, "lbs"),
  2756. name: "Upright",
  2757. image: {
  2758. source: "./media/characters/scott/upright.svg",
  2759. extra: 1,
  2760. bottom: 0.05
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(12, "feet"),
  2768. default: true
  2769. },
  2770. ]
  2771. )
  2772. };
  2773. characterMakers["Tobias"] = () => {
  2774. return makeCharacter(
  2775. "Tobias",
  2776. "Tobias",
  2777. {
  2778. side: {
  2779. height: math.unit(8, "meters"),
  2780. weight: math.unit(84755, "lbs"),
  2781. name: "Side",
  2782. image: {
  2783. source: "./media/characters/tobias/side.svg",
  2784. extra: 5 / 4
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Normal",
  2791. height: math.unit(8, "meters"),
  2792. default: true
  2793. },
  2794. ]
  2795. )
  2796. };
  2797. characterMakers["Kieran"] = () => {
  2798. return makeCharacter(
  2799. "Kieran",
  2800. "Kieran",
  2801. {
  2802. front: {
  2803. height: math.unit(5.5, "feet"),
  2804. weight: math.unit(400, "lbs"),
  2805. name: "Front",
  2806. image: {
  2807. source: "./media/characters/kieran/front.svg",
  2808. extra: 1.05
  2809. }
  2810. },
  2811. side: {
  2812. height: math.unit(5.5, "feet"),
  2813. weight: math.unit(400, "lbs"),
  2814. name: "Side",
  2815. image: {
  2816. source: "./media/characters/kieran/side.svg",
  2817. extra: 950 / 850
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(5.5, "feet"),
  2825. default: true
  2826. },
  2827. ]
  2828. )
  2829. };
  2830. characterMakers["Sanya"] = () => {
  2831. return makeCharacter(
  2832. "Sanya",
  2833. "BanterGhost",
  2834. {
  2835. side: {
  2836. height: math.unit(2, "meters"),
  2837. weight: math.unit(70, "kg"),
  2838. name: "Side",
  2839. image: {
  2840. source: "./media/characters/sanya/side.svg",
  2841. bottom: 0.02,
  2842. extra: 1.02
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Small",
  2849. height: math.unit(2, "meters")
  2850. },
  2851. {
  2852. name: "Normal",
  2853. height: math.unit(3, "meters")
  2854. },
  2855. {
  2856. name: "Macro",
  2857. height: math.unit(16, "meters"),
  2858. default: true
  2859. },
  2860. ]
  2861. )
  2862. };
  2863. characterMakers["Miranda"] = () => {
  2864. return makeCharacter(
  2865. "Miranda",
  2866. "MirandaArqayla",
  2867. {
  2868. side: {
  2869. height: math.unit(2, "meters"),
  2870. weight: math.unit(120, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/miranda/front.svg",
  2874. extra: 10.6 / 10
  2875. }
  2876. },
  2877. },
  2878. [
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(10, "feet"),
  2882. default: true
  2883. }
  2884. ]
  2885. )
  2886. };
  2887. characterMakers["James"] = () => {
  2888. return makeCharacter(
  2889. "James",
  2890. "MirandaArqayla",
  2891. {
  2892. side: {
  2893. height: math.unit(2, "meters"),
  2894. weight: math.unit(100, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/james/front.svg",
  2898. extra: 10 / 8.5
  2899. }
  2900. },
  2901. },
  2902. [
  2903. {
  2904. name: "Normal",
  2905. height: math.unit(8.5, "feet"),
  2906. default: true
  2907. }
  2908. ]
  2909. )
  2910. };
  2911. characterMakers["Heather"] = () => {
  2912. return makeCharacter(
  2913. "Heather",
  2914. "MirandaArqayla",
  2915. {
  2916. side: {
  2917. height: math.unit(9.5, "feet"),
  2918. weight: math.unit(2500, "lbs"),
  2919. name: "Side",
  2920. image: {
  2921. source: "./media/characters/heather/side.svg"
  2922. }
  2923. },
  2924. },
  2925. [
  2926. {
  2927. name: "Normal",
  2928. height: math.unit(9.5, "feet"),
  2929. default: true
  2930. }
  2931. ]
  2932. )
  2933. };
  2934. characterMakers["Lukas"] = () => {
  2935. return makeCharacter(
  2936. "Lukas",
  2937. "MirandaArqayla",
  2938. {
  2939. side: {
  2940. height: math.unit(6.5, "feet"),
  2941. weight: math.unit(400, "lbs"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/lukas/side.svg",
  2945. extra: 7.25 / 6.5
  2946. }
  2947. },
  2948. },
  2949. [
  2950. {
  2951. name: "Normal",
  2952. height: math.unit(6.5, "feet"),
  2953. default: true
  2954. }
  2955. ]
  2956. )
  2957. };
  2958. characterMakers["Louise"] = () => {
  2959. return makeCharacter(
  2960. "Louise",
  2961. "MirandaArqayla",
  2962. {
  2963. side: {
  2964. height: math.unit(5, "feet"),
  2965. weight: math.unit(3000, "lbs"),
  2966. name: "Side",
  2967. image: {
  2968. source: "./media/characters/louise/side.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5, "feet"),
  2976. default: true
  2977. }
  2978. ]
  2979. )
  2980. };
  2981. characterMakers["Ramona"] = () => {
  2982. return makeCharacter(
  2983. "Ramona",
  2984. "ZakuraTech",
  2985. {
  2986. side: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(150, "lbs"),
  2989. name: "Side",
  2990. image: {
  2991. source: "./media/characters/ramona/side.svg"
  2992. }
  2993. },
  2994. },
  2995. [
  2996. {
  2997. name: "Normal",
  2998. height: math.unit(5.3, "meters"),
  2999. default: true
  3000. },
  3001. {
  3002. name: "Macro",
  3003. height: math.unit(20, "stories")
  3004. },
  3005. {
  3006. name: "Macro+",
  3007. height: math.unit(50, "stories")
  3008. },
  3009. ]
  3010. )
  3011. };
  3012. characterMakers["Deerpuff"] = () => {
  3013. return makeCharacter(
  3014. "Deerpuff",
  3015. "Deerpuff",
  3016. {
  3017. standing: {
  3018. height: math.unit(5.75, "feet"),
  3019. weight: math.unit(160, "lbs"),
  3020. name: "Standing",
  3021. image: {
  3022. source: "./media/characters/deerpuff/standing.svg",
  3023. extra: 682 / 624
  3024. }
  3025. },
  3026. sitting: {
  3027. height: math.unit(5.75 / 1.79, "feet"),
  3028. weight: math.unit(160, "lbs"),
  3029. name: "Sitting",
  3030. image: {
  3031. source: "./media/characters/deerpuff/sitting.svg",
  3032. bottom: 44 / 400,
  3033. extra: 1
  3034. }
  3035. },
  3036. taurLaying: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(400, "lbs"),
  3039. name: "Taur (Laying)",
  3040. image: {
  3041. source: "./media/characters/deerpuff/taur-laying.svg"
  3042. }
  3043. },
  3044. },
  3045. [
  3046. {
  3047. name: "Puffball",
  3048. height: math.unit(6, "inches")
  3049. },
  3050. {
  3051. name: "Normalpuff",
  3052. height: math.unit(5.75, "feet")
  3053. },
  3054. {
  3055. name: "Macropuff",
  3056. height: math.unit(1500, "feet"),
  3057. default: true
  3058. },
  3059. {
  3060. name: "Megapuff",
  3061. height: math.unit(500, "miles")
  3062. },
  3063. {
  3064. name: "Gigapuff",
  3065. height: math.unit(250000, "miles")
  3066. },
  3067. {
  3068. name: "Omegapuff",
  3069. height: math.unit(1000, "lightyears")
  3070. },
  3071. ]
  3072. )
  3073. };
  3074. characterMakers["Vivian"] = () => {
  3075. return makeCharacter(
  3076. "Vivian",
  3077. "Fauxlacine",
  3078. {
  3079. stomping: {
  3080. height: math.unit(6, "feet"),
  3081. weight: math.unit(170, "lbs"),
  3082. name: "Stomping",
  3083. image: {
  3084. source: "./media/characters/vivian/stomping.svg"
  3085. }
  3086. },
  3087. sitting: {
  3088. height: math.unit(6 / 1.75, "feet"),
  3089. weight: math.unit(170, "lbs"),
  3090. name: "Sitting",
  3091. image: {
  3092. source: "./media/characters/vivian/sitting.svg",
  3093. bottom: 1 / 6.4,
  3094. extra: 1,
  3095. }
  3096. },
  3097. },
  3098. [
  3099. {
  3100. name: "Normal",
  3101. height: math.unit(7, "feet"),
  3102. default: true
  3103. },
  3104. {
  3105. name: "Macro",
  3106. height: math.unit(10, "stories")
  3107. },
  3108. {
  3109. name: "Macro+",
  3110. height: math.unit(30, "stories")
  3111. },
  3112. {
  3113. name: "Megamacro",
  3114. height: math.unit(10, "miles")
  3115. },
  3116. {
  3117. name: "Megamacro+",
  3118. height: math.unit(2750000, "meters")
  3119. },
  3120. ]
  3121. )
  3122. };
  3123. characterMakers["Prince"] = () => {
  3124. return makeCharacter(
  3125. "Prince",
  3126. "Kurrikage",
  3127. {
  3128. front: {
  3129. height: math.unit(6, "feet"),
  3130. weight: math.unit(160, "lbs"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/prince/front.svg",
  3134. extra: 3400/3000
  3135. }
  3136. },
  3137. jumping: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(160, "lbs"),
  3140. name: "Jumping",
  3141. image: {
  3142. source: "./media/characters/prince/jump.svg",
  3143. extra: 2555/2134
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(7.75, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Not cute",
  3155. height: math.unit(17, "feet")
  3156. },
  3157. {
  3158. name: "I said NOT",
  3159. height: math.unit(91, "feet")
  3160. },
  3161. {
  3162. name: "Please stop",
  3163. height: math.unit(560, "feet")
  3164. },
  3165. {
  3166. name: "What have you done",
  3167. height: math.unit(2200, "feet")
  3168. },
  3169. {
  3170. name: "Deer God",
  3171. height: math.unit(3.6, "miles")
  3172. },
  3173. ]
  3174. )
  3175. };
  3176. characterMakers["Psymon"] = () => {
  3177. return makeCharacter(
  3178. "Psymon",
  3179. "Kurrikage",
  3180. {
  3181. standing: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(300, "lbs"),
  3184. name: "Standing",
  3185. image: {
  3186. source: "./media/characters/psymon/standing.svg",
  3187. extra: 1888/1810,
  3188. bottom: 0.05
  3189. }
  3190. },
  3191. slithering: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(300, "lbs"),
  3194. name: "Slithering",
  3195. image: {
  3196. source: "./media/characters/psymon/slithering.svg",
  3197. extra: 1330/1224
  3198. }
  3199. },
  3200. slitheringAlt: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(300, "lbs"),
  3203. name: "Slithering (Alt)",
  3204. image: {
  3205. source: "./media/characters/psymon/slithering-alt.svg",
  3206. extra: 1330/1224
  3207. }
  3208. },
  3209. },
  3210. [
  3211. {
  3212. name: "Normal",
  3213. height: math.unit(11.25, "feet"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Large",
  3218. height: math.unit(27, "feet")
  3219. },
  3220. {
  3221. name: "Giant",
  3222. height: math.unit(87, "feet")
  3223. },
  3224. {
  3225. name: "Macro",
  3226. height: math.unit(365, "feet")
  3227. },
  3228. {
  3229. name: "Megamacro",
  3230. height: math.unit(3, "miles")
  3231. },
  3232. {
  3233. name: "World Serpent",
  3234. height: math.unit(8000, "miles")
  3235. },
  3236. ]
  3237. )
  3238. };
  3239. characterMakers["Daimos"] = () => {
  3240. return makeCharacter(
  3241. "Daimos",
  3242. "Kurrikage",
  3243. {
  3244. front: {
  3245. height: math.unit(6, "feet"),
  3246. weight: math.unit(180, "lbs"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/daimos/front.svg",
  3250. extra: 4160/3897,
  3251. bottom: 0.021
  3252. }
  3253. }
  3254. },
  3255. [
  3256. {
  3257. name: "Normal",
  3258. height: math.unit(8, "feet"),
  3259. default: true
  3260. },
  3261. {
  3262. name: "Big Dog",
  3263. height: math.unit(22, "feet")
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(127, "feet")
  3268. },
  3269. {
  3270. name: "Megamacro",
  3271. height: math.unit(3600, "feet")
  3272. },
  3273. ]
  3274. )
  3275. };
  3276. characterMakers["Blake"] = () => {
  3277. return makeCharacter(
  3278. "Blake",
  3279. "Kurrikage",
  3280. {
  3281. side: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(180, "lbs"),
  3284. name: "Side",
  3285. image: {
  3286. source: "./media/characters/blake/side.svg",
  3287. extra: 1212/1120 ,
  3288. bottom: 0.05
  3289. }
  3290. },
  3291. crouched: {
  3292. height: math.unit(6*0.57, "feet"),
  3293. weight: math.unit(180, "lbs"),
  3294. name: "Crouched",
  3295. image: {
  3296. source: "./media/characters/blake/crouched.svg",
  3297. extra: 840/587 ,
  3298. bottom: 0.04
  3299. }
  3300. },
  3301. bent: {
  3302. height: math.unit(6*0.75, "feet"),
  3303. weight: math.unit(180, "lbs"),
  3304. name: "Bent",
  3305. image: {
  3306. source: "./media/characters/blake/bent.svg",
  3307. extra: 592/544 ,
  3308. bottom: 0.035
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(8 + 1/6, "feet"),
  3316. default: true
  3317. },
  3318. {
  3319. name: "Big Backside",
  3320. height: math.unit(37, "feet")
  3321. },
  3322. {
  3323. name: "Subway Shredder",
  3324. height: math.unit(72, "feet")
  3325. },
  3326. {
  3327. name: "City Carver",
  3328. height: math.unit(1675, "feet")
  3329. },
  3330. {
  3331. name: "Tectonic Tweaker",
  3332. height: math.unit(2300, "miles")
  3333. },
  3334. ]
  3335. )
  3336. };
  3337. characterMakers["Guisetto"] = () => {
  3338. return makeCharacter(
  3339. "Guisetto",
  3340. "Kurrikage",
  3341. {
  3342. front: {
  3343. height: math.unit(6, "feet"),
  3344. weight: math.unit(180, "lbs"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/guisetto/front.svg",
  3348. extra: 856/817,
  3349. bottom: 0.06
  3350. }
  3351. },
  3352. airborne: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(180, "lbs"),
  3355. name: "Airborne",
  3356. image: {
  3357. source: "./media/characters/guisetto/airborne.svg",
  3358. extra: 584/525
  3359. }
  3360. },
  3361. },
  3362. [
  3363. {
  3364. name: "Normal",
  3365. height: math.unit(10 + 11/12, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Large",
  3370. height: math.unit(35, "feet")
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(475, "feet")
  3375. },
  3376. ]
  3377. )
  3378. };
  3379. characterMakers["Luxor"] = () => {
  3380. return makeCharacter(
  3381. "Luxor",
  3382. "Kurrikage",
  3383. {
  3384. front: {
  3385. height: math.unit(6, "feet"),
  3386. weight: math.unit(180, "lbs"),
  3387. name: "Front",
  3388. image: {
  3389. source: "./media/characters/luxor/front.svg",
  3390. extra: 2940/2152
  3391. }
  3392. },
  3393. back: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(180, "lbs"),
  3396. name: "Back",
  3397. image: {
  3398. source: "./media/characters/luxor/back.svg",
  3399. extra: 1083/960
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(5 + 5/6, "feet"),
  3407. default: true
  3408. },
  3409. {
  3410. name: "Lamp",
  3411. height: math.unit(50, "feet")
  3412. },
  3413. {
  3414. name: "Lämp",
  3415. height: math.unit(300, "feet")
  3416. },
  3417. {
  3418. name: "The sun is a lamp",
  3419. height: math.unit(250000, "miles")
  3420. },
  3421. ]
  3422. )
  3423. };
  3424. characterMakers["Huoyan"] = () => {
  3425. return makeCharacter(
  3426. "Huoyan",
  3427. "Kurrikage",
  3428. {
  3429. front: {
  3430. height: math.unit(6, "feet"),
  3431. weight: math.unit(50, "lbs"),
  3432. name: "Front",
  3433. image: {
  3434. source: "./media/characters/huoyan/front.svg"
  3435. }
  3436. },
  3437. side: {
  3438. height: math.unit(6, "feet"),
  3439. weight: math.unit(180, "lbs"),
  3440. name: "Side",
  3441. image: {
  3442. source: "./media/characters/huoyan/side.svg"
  3443. }
  3444. },
  3445. },
  3446. [
  3447. {
  3448. name: "Chef",
  3449. height: math.unit(9, "feet")
  3450. },
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(65, "feet"),
  3454. default: true
  3455. },
  3456. {
  3457. name: "Macro",
  3458. height: math.unit(780, "feet")
  3459. },
  3460. {
  3461. name: "Flaming Mountain",
  3462. height: math.unit(4.8, "miles")
  3463. },
  3464. {
  3465. name: "Celestial",
  3466. height: math.unit(765000, "miles")
  3467. },
  3468. ]
  3469. )
  3470. };
  3471. characterMakers["Tails"] = () => {
  3472. return makeCharacter(
  3473. "Tails",
  3474. "Rainier",
  3475. {
  3476. front: {
  3477. height: math.unit(5 + 3/4, "feet"),
  3478. weight: math.unit(120, "lbs"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/tails/front.svg"
  3482. }
  3483. }
  3484. },
  3485. [
  3486. {
  3487. name: "Normal",
  3488. height: math.unit(5 + 3/4, "feet"),
  3489. default: true
  3490. }
  3491. ]
  3492. )
  3493. };
  3494. characterMakers["Rainy"] = () => {
  3495. return makeCharacter(
  3496. "Rainy",
  3497. "Rainier",
  3498. {
  3499. front: {
  3500. height: math.unit(4, "feet"),
  3501. weight: math.unit(50, "lbs"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/rainy/front.svg"
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(800, "feet"),
  3512. default: true
  3513. }
  3514. ]
  3515. )
  3516. };
  3517. characterMakers["Rainier"] = () => {
  3518. return makeCharacter(
  3519. "Rainier",
  3520. "Rainier",
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lbs"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/rainier/front.svg"
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Micro",
  3534. height: math.unit(2, "mm"),
  3535. default: true
  3536. }
  3537. ]
  3538. )
  3539. };
  3540. characterMakers["Andy"] = () => {
  3541. return makeCharacter(
  3542. "Andy",
  3543. "drewbermeister",
  3544. {
  3545. front: {
  3546. height: math.unit(6, "feet"),
  3547. weight: math.unit(180, "lbs"),
  3548. name: "Front",
  3549. image: {
  3550. source: "./media/characters/andy/front.svg"
  3551. }
  3552. }
  3553. },
  3554. [
  3555. {
  3556. name: "Normal",
  3557. height: math.unit(8, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(1000, "feet")
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(5, "miles")
  3567. },
  3568. {
  3569. name: "Gigamacro",
  3570. height: math.unit(5000, "miles")
  3571. },
  3572. ]
  3573. )
  3574. };
  3575. characterMakers["Cimmaron"] = () => {
  3576. return makeCharacter(
  3577. "Cimmaron",
  3578. "Cimmaron",
  3579. {
  3580. frontClothed: {
  3581. height: math.unit(6, "feet"),
  3582. weight: math.unit(210, "lbs"),
  3583. name: "Front (Clothed)",
  3584. image: {
  3585. source: "./media/characters/cimmaron/front-clothed.svg",
  3586. extra: 701/676 ,
  3587. bottom: 0.046
  3588. }
  3589. },
  3590. backClothed: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(210, "lbs"),
  3593. name: "Back (Clothed)",
  3594. image: {
  3595. source: "./media/characters/cimmaron/back-clothed.svg",
  3596. extra: 701/676 ,
  3597. bottom: 0.046
  3598. }
  3599. },
  3600. frontNude: {
  3601. height: math.unit(6, "feet"),
  3602. weight: math.unit(210, "lbs"),
  3603. name: "Front (Nude)",
  3604. image: {
  3605. source: "./media/characters/cimmaron/front-nude.svg",
  3606. extra: 701/676 ,
  3607. bottom: 0.046
  3608. }
  3609. },
  3610. backNude: {
  3611. height: math.unit(6, "feet"),
  3612. weight: math.unit(210, "lbs"),
  3613. name: "Back (Nude)",
  3614. image: {
  3615. source: "./media/characters/cimmaron/back-nude.svg",
  3616. extra: 701/676 ,
  3617. bottom: 0.046
  3618. }
  3619. }
  3620. },
  3621. [
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(6, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro Mayor",
  3629. height: math.unit(350, "meters")
  3630. },
  3631. ]
  3632. )
  3633. };
  3634. characterMakers["Akari Kaen"] = () => {
  3635. return makeCharacter(
  3636. "Akari Kaen",
  3637. "Akari",
  3638. {
  3639. front: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(200, "lbs"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/akari/front.svg",
  3645. extra: 962/901,
  3646. bottom: 0.04
  3647. }
  3648. }
  3649. },
  3650. [
  3651. {
  3652. name: "Micro",
  3653. height: math.unit(5, "inches"),
  3654. default: true
  3655. },
  3656. {
  3657. name: "Normal",
  3658. height: math.unit(7, "feet")
  3659. },
  3660. ]
  3661. )
  3662. };
  3663. characterMakers["Cynosura"] = () => {
  3664. return makeCharacter(
  3665. "Cynosura",
  3666. "Cynosura",
  3667. {
  3668. front: {
  3669. height: math.unit(6, "feet"),
  3670. weight: math.unit(140, "lbs"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/cynosura/front.svg",
  3674. extra: 896/847
  3675. }
  3676. },
  3677. back: {
  3678. height: math.unit(6, "feet"),
  3679. weight: math.unit(140, "lbs"),
  3680. name: "Back",
  3681. image: {
  3682. source: "./media/characters/cynosura/back.svg",
  3683. extra: 1365/1250
  3684. }
  3685. },
  3686. },
  3687. [
  3688. {
  3689. name: "Micro",
  3690. height: math.unit(4, "inches")
  3691. },
  3692. {
  3693. name: "Normal",
  3694. height: math.unit(5.75, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Tall",
  3699. height: math.unit(10, "feet")
  3700. },
  3701. {
  3702. name: "Big",
  3703. height: math.unit(20, "feet")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(50, "feet")
  3708. },
  3709. ]
  3710. )
  3711. };
  3712. characterMakers["Gin"] = () => {
  3713. return makeCharacter(
  3714. "Gin",
  3715. "Ozzie_gt",
  3716. {
  3717. front: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(170, "lbs"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/gin/front.svg",
  3723. extra: 1.053,
  3724. bottom: 0.025
  3725. }
  3726. },
  3727. foot: {
  3728. height: math.unit(6/4.25, "feet"),
  3729. name: "Foot",
  3730. image: {
  3731. source: "./media/characters/gin/foot.svg"
  3732. }
  3733. },
  3734. sole: {
  3735. height: math.unit(6/4.40, "feet"),
  3736. name: "Sole",
  3737. image: {
  3738. source: "./media/characters/gin/sole.svg"
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(9 + 4/12, "feet")
  3746. },
  3747. {
  3748. name: "Macro",
  3749. height: math.unit(1500, "feet")
  3750. },
  3751. {
  3752. name: "Megamacro",
  3753. height: math.unit(200, "miles"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Gigamacro",
  3758. height: math.unit(500, "megameters")
  3759. },
  3760. {
  3761. name: "Teramacro",
  3762. height: math.unit(15, "lightyears")
  3763. }
  3764. ]
  3765. )
  3766. };
  3767. characterMakers["Guy"] = () => {
  3768. return makeCharacter(
  3769. "Guy",
  3770. "Whatastandupguy",
  3771. {
  3772. front: {
  3773. height: math.unit(6 + 1/6, "feet"),
  3774. weight: math.unit(178, "lbs"),
  3775. name: "Front",
  3776. image: {
  3777. source: "./media/characters/guy/front.svg"
  3778. }
  3779. }
  3780. },
  3781. [
  3782. {
  3783. name: "Normal",
  3784. height: math.unit(6 + 1/6, "feet"),
  3785. default: true
  3786. },
  3787. {
  3788. name: "Large",
  3789. height: math.unit(25 + 7/12, "feet")
  3790. },
  3791. {
  3792. name: "Macro",
  3793. height: math.unit(60 + 9/12, "feet")
  3794. },
  3795. {
  3796. name: "Macro+",
  3797. height: math.unit(246, "feet")
  3798. },
  3799. {
  3800. name: "Macro++",
  3801. height: math.unit(878, "feet")
  3802. }
  3803. ]
  3804. )
  3805. };
  3806. characterMakers["Tiberius"] = () => {
  3807. return makeCharacter(
  3808. "Tiberius",
  3809. "movler",
  3810. {
  3811. front: {
  3812. height: math.unit(9, "feet"),
  3813. weight: math.unit(800, "lbs"),
  3814. name: "Front",
  3815. image: {
  3816. source: "./media/characters/tiberius/front.svg",
  3817. extra: 2295/2071
  3818. }
  3819. },
  3820. back: {
  3821. height: math.unit(9, "feet"),
  3822. weight: math.unit(800, "lbs"),
  3823. name: "Back",
  3824. image: {
  3825. source: "./media/characters/tiberius/back.svg",
  3826. extra: 2373/2160
  3827. }
  3828. },
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(9, "feet"),
  3834. default: true
  3835. }
  3836. ]
  3837. )
  3838. };
  3839. characterMakers["Surgo"] = () => {
  3840. return makeCharacter(
  3841. "Surgo",
  3842. "movler",
  3843. {
  3844. front: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(600, "lbs"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/surgo/front.svg",
  3850. extra: 3591/2227
  3851. }
  3852. },
  3853. back: {
  3854. height: math.unit(6, "feet"),
  3855. weight: math.unit(600, "lbs"),
  3856. name: "Back",
  3857. image: {
  3858. source: "./media/characters/surgo/back.svg",
  3859. extra: 3557/2228
  3860. }
  3861. },
  3862. laying: {
  3863. height: math.unit(6 * 0.85, "feet"),
  3864. weight: math.unit(600, "lbs"),
  3865. name: "Laying",
  3866. image: {
  3867. source: "./media/characters/surgo/laying.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Normal",
  3874. height: math.unit(6, "feet"),
  3875. default: true
  3876. }
  3877. ]
  3878. )
  3879. };
  3880. characterMakers["Cibus"] = () => {
  3881. return makeCharacter(
  3882. "Cibus",
  3883. "movler",
  3884. {
  3885. side: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(150, "lbs"),
  3888. name: "Side",
  3889. image: {
  3890. source: "./media/characters/cibus/side.svg",
  3891. extra: 800/400
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(6, "feet"),
  3899. default: true
  3900. }
  3901. ]
  3902. )
  3903. };
  3904. characterMakers["Nibbles"] = () => {
  3905. return makeCharacter(
  3906. "Nibbles",
  3907. "movler",
  3908. {
  3909. front: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(240, "lbs"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/nibbles/front.svg"
  3915. }
  3916. },
  3917. side: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(240, "lbs"),
  3920. name: "Side",
  3921. image: {
  3922. source: "./media/characters/nibbles/side.svg"
  3923. }
  3924. },
  3925. },
  3926. [
  3927. {
  3928. name: "Normal",
  3929. height: math.unit(9, "feet"),
  3930. default: true
  3931. }
  3932. ]
  3933. )
  3934. };
  3935. characterMakers["Rikky"] = () => {
  3936. return makeCharacter(
  3937. "Rikky",
  3938. "Quake Yote",
  3939. {
  3940. side: {
  3941. height: math.unit(5 + 1/6, "feet"),
  3942. weight: math.unit(130, "lbs"),
  3943. name: "Side",
  3944. image: {
  3945. source: "./media/characters/rikky/side.svg"
  3946. }
  3947. },
  3948. },
  3949. [
  3950. {
  3951. name: "Normal",
  3952. height: math.unit(5 + 1/6, "feet")
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(152, "feet"),
  3957. default: true
  3958. },
  3959. {
  3960. name: "Megamacro",
  3961. height: math.unit(7, "miles")
  3962. }
  3963. ]
  3964. )
  3965. };
  3966. characterMakers["Malfressa"] = () => {
  3967. return makeCharacter(
  3968. "Malfressa",
  3969. "Scareye",
  3970. {
  3971. side: {
  3972. height: math.unit(370, "cm"),
  3973. weight: math.unit(350, "lbs"),
  3974. name: "Side",
  3975. image: {
  3976. source: "./media/characters/malfressa/side.svg"
  3977. }
  3978. },
  3979. walking: {
  3980. height: math.unit(370, "cm"),
  3981. weight: math.unit(350, "lbs"),
  3982. name: "Walking",
  3983. image: {
  3984. source: "./media/characters/malfressa/walking.svg"
  3985. }
  3986. },
  3987. feral: {
  3988. height: math.unit(2500, "cm"),
  3989. weight: math.unit(100000, "lbs"),
  3990. name: "Feral",
  3991. image: {
  3992. source: "./media/characters/malfressa/feral.svg",
  3993. extra: 2108/837 ,
  3994. bottom: 0.02
  3995. }
  3996. },
  3997. },
  3998. [
  3999. {
  4000. name: "Normal",
  4001. height: math.unit(370, "cm")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(300, "meters"),
  4006. default: true
  4007. }
  4008. ]
  4009. )
  4010. };
  4011. characterMakers["Jaro"] = () => {
  4012. return makeCharacter(
  4013. "Jaro",
  4014. "Jaro",
  4015. {
  4016. front: {
  4017. height: math.unit(6, "feet"),
  4018. weight: math.unit(60, "kg"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/jaro/front.svg"
  4022. }
  4023. },
  4024. back: {
  4025. height: math.unit(6, "feet"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Back",
  4028. image: {
  4029. source: "./media/characters/jaro/back.svg"
  4030. }
  4031. },
  4032. },
  4033. [
  4034. {
  4035. name: "Micro",
  4036. height: math.unit(7, "inches")
  4037. },
  4038. {
  4039. name: "Normal",
  4040. height: math.unit(5.5, "feet"),
  4041. default: true
  4042. },
  4043. {
  4044. name: "Minimacro",
  4045. height: math.unit(20, "feet")
  4046. },
  4047. {
  4048. name: "Macro",
  4049. height: math.unit(200, "meters")
  4050. }
  4051. ]
  4052. )
  4053. };
  4054. characterMakers["Rogue"] = () => {
  4055. return makeCharacter(
  4056. "Rogue",
  4057. "Rogue",
  4058. {
  4059. front: {
  4060. height: math.unit(6, "feet"),
  4061. weight: math.unit(195, "lb"),
  4062. name: "Front",
  4063. image: {
  4064. source: "./media/characters/rogue/front.svg"
  4065. }
  4066. },
  4067. },
  4068. [
  4069. {
  4070. name: "Macro",
  4071. height: math.unit(90, "feet"),
  4072. default: true
  4073. },
  4074. ]
  4075. )
  4076. };
  4077. characterMakers["Piper"] = () => {
  4078. return makeCharacter(
  4079. "Piper",
  4080. "Flyhar",
  4081. {
  4082. front: {
  4083. height: math.unit(5 + 8/12, "feet"),
  4084. weight: math.unit(140, "lb"),
  4085. name: "Front",
  4086. image: {
  4087. source: "./media/characters/piper/front.svg",
  4088. extra: 3928/3681
  4089. }
  4090. },
  4091. },
  4092. [
  4093. {
  4094. name: "Micro",
  4095. height: math.unit(2, "inches")
  4096. },
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(5 + 8/12, "feet")
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(250, "feet"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(7, "miles")
  4109. },
  4110. ]
  4111. )
  4112. };
  4113. characterMakers["Gemini"] = () => {
  4114. return makeCharacter(
  4115. "Gemini",
  4116. "lajay",
  4117. {
  4118. front: {
  4119. height: math.unit(6, "feet"),
  4120. weight: math.unit(220, "lb"),
  4121. name: "Front",
  4122. image: {
  4123. source: "./media/characters/gemini/front.svg"
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(6, "feet"),
  4128. weight: math.unit(220, "lb"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/gemini/back.svg"
  4132. }
  4133. },
  4134. kneeling: {
  4135. height: math.unit(6/1.5, "feet"),
  4136. weight: math.unit(220, "lb"),
  4137. name: "Kneeling",
  4138. image: {
  4139. source: "./media/characters/gemini/kneeling.svg",
  4140. bottom: 0.02
  4141. }
  4142. },
  4143. },
  4144. [
  4145. {
  4146. name: "Macro",
  4147. height: math.unit(300, "meters"),
  4148. default: true
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(6900, "meters")
  4153. },
  4154. ]
  4155. )
  4156. };
  4157. characterMakers["Alicia"] = () => {
  4158. return makeCharacter(
  4159. "Alicia",
  4160. "LittleBig",
  4161. {
  4162. anthro: {
  4163. height: math.unit(2.35, "meters"),
  4164. weight: math.unit(73, "kg"),
  4165. name: "Anthro",
  4166. image: {
  4167. source: "./media/characters/alicia/anthro.svg"
  4168. }
  4169. },
  4170. feral: {
  4171. height: math.unit(1.69, "meters"),
  4172. weight: math.unit(73, "kg"),
  4173. name: "Feral",
  4174. image: {
  4175. source: "./media/characters/alicia/feral.svg"
  4176. }
  4177. },
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(2.35, "meters")
  4183. },
  4184. {
  4185. name: "Macro",
  4186. height: math.unit(60, "meters"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Megamacro",
  4191. height: math.unit(10000, "kilometers")
  4192. },
  4193. ]
  4194. )
  4195. };
  4196. characterMakers["Archy"] = () => {
  4197. return makeCharacter(
  4198. "Archy",
  4199. "ArchyD",
  4200. {
  4201. front: {
  4202. height: math.unit(7, "feet"),
  4203. weight: math.unit(250, "lbs"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/archy/front.svg"
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Micro",
  4213. height: math.unit(1, "inch")
  4214. },
  4215. {
  4216. name: "Shorty",
  4217. height: math.unit(5, "feet")
  4218. },
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(7, "feet")
  4222. },
  4223. {
  4224. name: "Macro",
  4225. height: math.unit(600, "meters"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Megamacro",
  4230. height: math.unit(1, "mile")
  4231. },
  4232. ]
  4233. )
  4234. };
  4235. characterMakers["Berri"] = () => {
  4236. return makeCharacter(
  4237. "Berri",
  4238. "LittleBig",
  4239. {
  4240. front: {
  4241. height: math.unit(1.65, "meters"),
  4242. weight: math.unit(74, "kg"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/berri/front.svg"
  4246. }
  4247. }
  4248. },
  4249. [
  4250. {
  4251. name: "Normal",
  4252. height: math.unit(1.65, "meters")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(60, "m"),
  4257. default: true
  4258. },
  4259. {
  4260. name: "Megamacro",
  4261. height: math.unit(9.213, "km")
  4262. },
  4263. {
  4264. name: "Planet Eater",
  4265. height: math.unit(489, "megameters")
  4266. },
  4267. {
  4268. name: "Teramacro",
  4269. height: math.unit(2471635000000, "meters")
  4270. },
  4271. {
  4272. name: "Examacro",
  4273. height: math.unit(8.0624e+26, "meters")
  4274. }
  4275. ]
  4276. )
  4277. };
  4278. characterMakers["Lexi"] = () => {
  4279. return makeCharacter(
  4280. "Lexi",
  4281. "LittleBig",
  4282. {
  4283. front: {
  4284. height: math.unit(1.72, "meters"),
  4285. weight: math.unit(68, "kg"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/lexi/front.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Very Smol",
  4295. height: math.unit(10, "mm")
  4296. },
  4297. {
  4298. name: "Micro",
  4299. height: math.unit(6.8, "cm"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(1.72, "m")
  4305. }
  4306. ]
  4307. )
  4308. };
  4309. characterMakers["Martin"] = () => {
  4310. return makeCharacter(
  4311. "Martin",
  4312. "LittleBig",
  4313. {
  4314. front: {
  4315. height: math.unit(1.69, "meters"),
  4316. weight: math.unit(68, "kg"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/martin/front.svg",
  4320. extra: 596/581
  4321. }
  4322. }
  4323. },
  4324. [
  4325. {
  4326. name: "Micro",
  4327. height: math.unit(6.85, "cm"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(1.69, "m")
  4333. }
  4334. ]
  4335. )
  4336. };
  4337. characterMakers["Juno"] = () => {
  4338. return makeCharacter(
  4339. "Juno",
  4340. "LittleBig",
  4341. {
  4342. front: {
  4343. height: math.unit(1.69, "meters"),
  4344. weight: math.unit(68, "kg"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/juno/front.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Micro",
  4354. height: math.unit(7, "cm")
  4355. },
  4356. {
  4357. name: "Normal",
  4358. height: math.unit(1.89, "m")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(353, "meters"),
  4363. default: true
  4364. }
  4365. ]
  4366. )
  4367. };
  4368. characterMakers["Samantha"] = () => {
  4369. return makeCharacter(
  4370. "Samantha",
  4371. "LittleBig",
  4372. {
  4373. front: {
  4374. height: math.unit(1.93, "meters"),
  4375. weight: math.unit(83, "kg"),
  4376. name: "Front",
  4377. image: {
  4378. source: "./media/characters/samantha/front.svg"
  4379. }
  4380. },
  4381. frontClothed: {
  4382. height: math.unit(1.93, "meters"),
  4383. weight: math.unit(83, "kg"),
  4384. name: "Front (Clothed)",
  4385. image: {
  4386. source: "./media/characters/samantha/front-clothed.svg"
  4387. }
  4388. },
  4389. back: {
  4390. height: math.unit(1.93, "meters"),
  4391. weight: math.unit(83, "kg"),
  4392. name: "Back",
  4393. image: {
  4394. source: "./media/characters/samantha/back.svg"
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(1.93, "m")
  4402. },
  4403. {
  4404. name: "Macro",
  4405. height: math.unit(74, "meters"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Macro+",
  4410. height: math.unit(223, "meters"),
  4411. },
  4412. {
  4413. name: "Megamacro",
  4414. height: math.unit(8381, "meters"),
  4415. },
  4416. {
  4417. name: "Megamacro+",
  4418. height: math.unit(12000, "kilometers")
  4419. },
  4420. ]
  4421. )
  4422. };
  4423. characterMakers["Dr. Clay"] = () => {
  4424. return makeCharacter(
  4425. "Dr. Clay",
  4426. "LittleBig",
  4427. {
  4428. front: {
  4429. height: math.unit(1.92, "meters"),
  4430. weight: math.unit(80, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/dr-clay/front.svg"
  4434. }
  4435. },
  4436. frontClothed: {
  4437. height: math.unit(1.92, "meters"),
  4438. weight: math.unit(80, "kg"),
  4439. name: "Front (Clothed)",
  4440. image: {
  4441. source: "./media/characters/dr-clay/front-clothed.svg"
  4442. }
  4443. }
  4444. },
  4445. [
  4446. {
  4447. name: "Normal",
  4448. height: math.unit(1.92, "m")
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(214, "meters"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Macro+",
  4457. height: math.unit(12.237, "meters"),
  4458. },
  4459. {
  4460. name: "Megamacro",
  4461. height: math.unit(557, "megameters"),
  4462. },
  4463. {
  4464. name: "Unimaginable",
  4465. height: math.unit(120e9, "lightyears")
  4466. },
  4467. ]
  4468. )
  4469. };
  4470. characterMakers["Wyvrn Ripsnarl"] = () => {
  4471. return makeCharacter(
  4472. "Wyvrn Ripsnarl",
  4473. "LoboRaptorLo",
  4474. {
  4475. front: {
  4476. height: math.unit(2, "meters"),
  4477. weight: math.unit(80, "kg"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4481. }
  4482. }
  4483. },
  4484. [
  4485. {
  4486. name: "Teramacro",
  4487. height: math.unit(500000, "lightyears"),
  4488. default: true
  4489. },
  4490. ]
  4491. )
  4492. };
  4493. characterMakers["Vemus"] = () => {
  4494. return makeCharacter(
  4495. "Vemus",
  4496. "Vemus",
  4497. {
  4498. front: {
  4499. height: math.unit(2, "meters"),
  4500. weight: math.unit(150, "kg"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/vemus/front.svg",
  4504. extra: 2384/2084
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(3, "meters"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Lorg",
  4516. height: math.unit(7, "meters")
  4517. },
  4518. {
  4519. name: "More Lorg",
  4520. height: math.unit(250, "meters")
  4521. },
  4522. ]
  4523. )
  4524. };
  4525. characterMakers["Beherit"] = () => {
  4526. return makeCharacter(
  4527. "Beherit",
  4528. "Beherit",
  4529. {
  4530. front: {
  4531. height: math.unit(2, "meters"),
  4532. weight: math.unit(70, "kg"),
  4533. name: "Front",
  4534. image: {
  4535. source: "./media/characters/beherit/front.svg",
  4536. extra: 1408/1242
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(6, "feet")
  4544. },
  4545. {
  4546. name: "Lorg",
  4547. height: math.unit(25, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Lorger",
  4552. height: math.unit(75, "feet")
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(200, "meters")
  4557. },
  4558. ]
  4559. )
  4560. };
  4561. characterMakers["Everett"] = () => {
  4562. return makeCharacter(
  4563. "Everett",
  4564. "Beherit",
  4565. {
  4566. front: {
  4567. height: math.unit(2, "meters"),
  4568. weight: math.unit(150, "kg"),
  4569. name: "Front",
  4570. image: {
  4571. source: "./media/characters/everett/front.svg",
  4572. extra: 2038/1737 ,
  4573. bottom: 0.03
  4574. }
  4575. },
  4576. paw: {
  4577. height: math.unit(2/3.6, "meters"),
  4578. name: "Paw",
  4579. image: {
  4580. source: "./media/characters/everett/paw.svg"
  4581. }
  4582. },
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(15, "feet"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Lorg",
  4592. height: math.unit(70, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Lorger",
  4597. height: math.unit(250, "feet")
  4598. },
  4599. {
  4600. name: "Macro",
  4601. height: math.unit(500, "meters")
  4602. },
  4603. ]
  4604. )
  4605. };
  4606. characterMakers["Rose Lion"] = () => {
  4607. return makeCharacter(
  4608. "Rose Lion",
  4609. "Enormouse",
  4610. {
  4611. front: {
  4612. height: math.unit(2, "meters"),
  4613. weight: math.unit(86, "kg"),
  4614. name: "Front",
  4615. image: {
  4616. source: "./media/characters/rose-lion/front.svg"
  4617. }
  4618. },
  4619. bent: {
  4620. height: math.unit(2/1.4288, "meters"),
  4621. weight: math.unit(86, "kg"),
  4622. name: "Bent",
  4623. image: {
  4624. source: "./media/characters/rose-lion/bent.svg"
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Mini-Micro",
  4631. height: math.unit(1, "cm")
  4632. },
  4633. {
  4634. name: "Micro",
  4635. height: math.unit(3.5, "inches"),
  4636. default: true
  4637. },
  4638. {
  4639. name: "Normal",
  4640. height: math.unit(6 + 1/6, "feet")
  4641. },
  4642. {
  4643. name: "Mini-Macro",
  4644. height: math.unit(9 + 10/12, "feet")
  4645. },
  4646. ]
  4647. )
  4648. };
  4649. characterMakers["Regal"] = () => {
  4650. return makeCharacter(
  4651. "Regal",
  4652. "Regal Drennen",
  4653. {
  4654. front: {
  4655. height: math.unit(2, "meters"),
  4656. weight: math.unit(350, "lbs"),
  4657. name: "Front",
  4658. image: {
  4659. source: "./media/characters/regal/front.svg"
  4660. }
  4661. },
  4662. back: {
  4663. height: math.unit(2, "meters"),
  4664. weight: math.unit(350, "lbs"),
  4665. name: "Back",
  4666. image: {
  4667. source: "./media/characters/regal/back.svg"
  4668. }
  4669. },
  4670. },
  4671. [
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(350, "feet"),
  4675. default: true
  4676. }
  4677. ]
  4678. )
  4679. };
  4680. characterMakers["Opal"] = () => {
  4681. return makeCharacter(
  4682. "Opal",
  4683. "Enormouse",
  4684. {
  4685. front: {
  4686. height: math.unit(4 + 11/12, "feet"),
  4687. weight: math.unit(100, "lbs"),
  4688. name: "Front",
  4689. image: {
  4690. source: "./media/characters/opal/front.svg"
  4691. }
  4692. },
  4693. frontAlt: {
  4694. height: math.unit(4 + 11/12, "feet"),
  4695. weight: math.unit(100, "lbs"),
  4696. name: "Front (Alt)",
  4697. image: {
  4698. source: "./media/characters/opal/front-alt.svg"
  4699. }
  4700. },
  4701. },
  4702. [
  4703. {
  4704. name: "Small",
  4705. height: math.unit(4 + 11/12, "feet")
  4706. },
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(20, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(120, "feet")
  4715. },
  4716. {
  4717. name: "Megamacro",
  4718. height: math.unit(80, "miles")
  4719. },
  4720. {
  4721. name: "True Size",
  4722. height: math.unit(100000, "lightyears")
  4723. },
  4724. ]
  4725. )
  4726. };
  4727. characterMakers["Vector Wuff"] = () => {
  4728. return makeCharacter(
  4729. "Vector Wuff",
  4730. "Vector",
  4731. {
  4732. front: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(200, "lbs"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/vector-wuff/front.svg"
  4738. }
  4739. }
  4740. },
  4741. [
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(2.8, "meters")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(450, "meters"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Megamacro",
  4753. height: math.unit(15, "kilometers")
  4754. }
  4755. ]
  4756. )
  4757. };
  4758. characterMakers["Dannik"] = () => {
  4759. return makeCharacter(
  4760. "Dannik",
  4761. "LuchaLibreLibro",
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(256, "lbs"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/dannik/front.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(69.57, "meters"),
  4776. default: true
  4777. },
  4778. ]
  4779. )
  4780. };
  4781. characterMakers["Azura Saharah"] = () => {
  4782. return makeCharacter(
  4783. "Azura Saharah",
  4784. "AzuraSaharah",
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(120, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/azura-saharah/front.svg"
  4792. }
  4793. },
  4794. back: {
  4795. height: math.unit(6, "feet"),
  4796. weight: math.unit(120, "lbs"),
  4797. name: "Back",
  4798. image: {
  4799. source: "./media/characters/azura-saharah/back.svg"
  4800. }
  4801. },
  4802. },
  4803. [
  4804. {
  4805. name: "Macro",
  4806. height: math.unit(100, "feet"),
  4807. default: true
  4808. },
  4809. ]
  4810. )
  4811. };
  4812. characterMakers["Kennedy"] = () => {
  4813. return makeCharacter(
  4814. "Kennedy",
  4815. "BossVoss",
  4816. {
  4817. side: {
  4818. height: math.unit(5 + 4/12, "feet"),
  4819. weight: math.unit(163, "lbs"),
  4820. name: "Side",
  4821. image: {
  4822. source: "./media/characters/kennedy/side.svg"
  4823. }
  4824. }
  4825. },
  4826. [
  4827. {
  4828. name: "Standard Doggo",
  4829. height: math.unit(5 + 4/12, "feet")
  4830. },
  4831. {
  4832. name: "Big Doggo",
  4833. height: math.unit(25 + 3/12, "feet"),
  4834. default: true
  4835. },
  4836. ]
  4837. )
  4838. };
  4839. characterMakers["Odi Lunar"] = () => {
  4840. return makeCharacter(
  4841. "Odi Lunar",
  4842. "OdiLunar",
  4843. {
  4844. front: {
  4845. height: math.unit(6, "feet"),
  4846. weight: math.unit(90, "lbs"),
  4847. name: "Front",
  4848. image: {
  4849. source: "./media/characters/odi-lunar/front.svg"
  4850. }
  4851. }
  4852. },
  4853. [
  4854. {
  4855. name: "Micro",
  4856. height: math.unit(3, "inches"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5.5, "feet")
  4862. }
  4863. ]
  4864. )
  4865. };
  4866. characterMakers["Mandake"] = () => {
  4867. return makeCharacter(
  4868. "Mandake",
  4869. "Dialuca01",
  4870. {
  4871. back: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(220, "lbs"),
  4874. name: "Back",
  4875. image: {
  4876. source: "./media/characters/mandake/back.svg"
  4877. }
  4878. }
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(7, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(78, "feet")
  4889. },
  4890. {
  4891. name: "Macro+",
  4892. height: math.unit(300, "meters")
  4893. },
  4894. {
  4895. name: "Macro++",
  4896. height: math.unit(2400, "feet")
  4897. },
  4898. {
  4899. name: "Megamacro",
  4900. height: math.unit(5167, "meters")
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(41769, "miles")
  4905. },
  4906. ]
  4907. )
  4908. };
  4909. characterMakers["Yozey"] = () => {
  4910. return makeCharacter(
  4911. "Yozey",
  4912. "Yozey",
  4913. {
  4914. front: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(120, "lbs"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/yozey/front.svg"
  4920. }
  4921. },
  4922. frontAlt: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(120, "lbs"),
  4925. name: "Front (Alt)",
  4926. image: {
  4927. source: "./media/characters/yozey/front-alt.svg"
  4928. }
  4929. },
  4930. side: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(120, "lbs"),
  4933. name: "Side",
  4934. image: {
  4935. source: "./media/characters/yozey/side.svg"
  4936. }
  4937. },
  4938. },
  4939. [
  4940. {
  4941. name: "Micro",
  4942. height: math.unit(3, "inches"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(6, "feet")
  4948. }
  4949. ]
  4950. )
  4951. };
  4952. characterMakers["Valeska Voss"] = () => {
  4953. return makeCharacter(
  4954. "Valeska Voss",
  4955. "BossVoss",
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(103, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/valeska-voss/front.svg"
  4963. }
  4964. }
  4965. },
  4966. [
  4967. {
  4968. name: "Mini-Sized Sub",
  4969. height: math.unit(3.1, "inches")
  4970. },
  4971. {
  4972. name: "Mid-Sized Sub",
  4973. height: math.unit(6.2, "inches")
  4974. },
  4975. {
  4976. name: "Full-Sized Sub",
  4977. height: math.unit(9.3, "inches")
  4978. },
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(5 + 2/12, "foot"),
  4982. default: true
  4983. },
  4984. ]
  4985. )
  4986. };
  4987. characterMakers["Gene Zeta"] = () => {
  4988. return makeCharacter(
  4989. "Gene Zeta",
  4990. "Xeebes",
  4991. {
  4992. front: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(160, "lbs"),
  4995. name: "Front",
  4996. image: {
  4997. source: "./media/characters/gene-zeta/front.svg",
  4998. bottom: 0.03,
  4999. extra: 1
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(6.25, "foot"),
  5007. default: true
  5008. },
  5009. ]
  5010. )
  5011. };
  5012. characterMakers["Razinox"] = () => {
  5013. return makeCharacter(
  5014. "Razinox",
  5015. "Razinox",
  5016. {
  5017. front: {
  5018. height: math.unit(6, "feet"),
  5019. weight: math.unit(350, "lbs"),
  5020. name: "Front",
  5021. image: {
  5022. source: "./media/characters/razinox/front.svg",
  5023. extra: 1686/1548
  5024. }
  5025. },
  5026. back: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(350, "lbs"),
  5029. name: "Back",
  5030. image: {
  5031. source: "./media/characters/razinox/back.svg",
  5032. extra: 1660/1590
  5033. }
  5034. },
  5035. },
  5036. [
  5037. {
  5038. name: "Normal",
  5039. height: math.unit(10 + 8/12, "foot")
  5040. },
  5041. {
  5042. name: "Minimacro",
  5043. height: math.unit(15, "foot")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(60, "foot"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Megamacro",
  5052. height: math.unit(5, "miles")
  5053. },
  5054. {
  5055. name: "Gigamacro",
  5056. height: math.unit(6000, "miles")
  5057. },
  5058. ]
  5059. )
  5060. };
  5061. characterMakers["Cobalt"] = () => {
  5062. return makeCharacter(
  5063. "Cobalt",
  5064. "Miateshcha",
  5065. {
  5066. front: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(150, "lbs"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/cobalt/front.svg"
  5072. }
  5073. }
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(8 + 1/12, "foot")
  5079. },
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(111, "foot"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Supracosmic",
  5087. height: math.unit(1e42, "feet")
  5088. },
  5089. ]
  5090. )
  5091. };
  5092. characterMakers["Amanda"] = () => {
  5093. return makeCharacter(
  5094. "Amanda",
  5095. "Amanda",
  5096. {
  5097. front: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(140, "lbs"),
  5100. name: "Front",
  5101. image: {
  5102. source: "./media/characters/amanda/front.svg"
  5103. }
  5104. }
  5105. },
  5106. [
  5107. {
  5108. name: "Micro",
  5109. height: math.unit(5, "inches"),
  5110. default: true
  5111. },
  5112. ]
  5113. )
  5114. };
  5115. characterMakers["Teal"] = () => {
  5116. return makeCharacter(
  5117. "Teal",
  5118. "Teal",
  5119. {
  5120. front: {
  5121. height: math.unit(5.59, "feet"),
  5122. weight: math.unit(250, "lbs"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/teal/front.svg"
  5126. }
  5127. },
  5128. frontAlt: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(250, "lbs"),
  5131. name: "Front (Alt)",
  5132. image: {
  5133. source: "./media/characters/teal/front-alt.svg",
  5134. bottom: 0.04,
  5135. extra: 1
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(12, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(300, "feet")
  5148. },
  5149. ]
  5150. )
  5151. };
  5152. characterMakers["Ravin Amulet"] = () => {
  5153. return makeCharacter(
  5154. "Ravin Amulet",
  5155. "Ravin Amulet",
  5156. {
  5157. frontCat: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(180, "lbs"),
  5160. name: "Front (Cat)",
  5161. image: {
  5162. source: "./media/characters/ravin-amulet/front-cat.svg"
  5163. }
  5164. },
  5165. frontCatAlt: {
  5166. height: math.unit(6, "feet"),
  5167. weight: math.unit(180, "lbs"),
  5168. name: "Front (Alt, Cat)",
  5169. image: {
  5170. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5171. }
  5172. },
  5173. frontWerewolf: {
  5174. height: math.unit(6*1.2, "feet"),
  5175. weight: math.unit(225, "lbs"),
  5176. name: "Front (Werewolf)",
  5177. image: {
  5178. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5179. }
  5180. },
  5181. backWerewolf: {
  5182. height: math.unit(6*1.2, "feet"),
  5183. weight: math.unit(225, "lbs"),
  5184. name: "Back (Werewolf)",
  5185. image: {
  5186. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5187. }
  5188. },
  5189. },
  5190. [
  5191. {
  5192. name: "Nano",
  5193. height: math.unit(1, "micrometer")
  5194. },
  5195. {
  5196. name: "Micro",
  5197. height: math.unit(1, "inch")
  5198. },
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(6, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(60, "feet")
  5207. }
  5208. ]
  5209. )
  5210. };
  5211. characterMakers["Fluoresce"] = () => {
  5212. return makeCharacter(
  5213. "Fluoresce",
  5214. "Ravin Amulet",
  5215. {
  5216. front: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(165, "lbs"),
  5219. name: "Front",
  5220. image: {
  5221. source: "./media/characters/fluoresce/front.svg"
  5222. }
  5223. }
  5224. },
  5225. [
  5226. {
  5227. name: "Micro",
  5228. height: math.unit(6, "cm")
  5229. },
  5230. {
  5231. name: "Normal",
  5232. height: math.unit(5 + 7/12, "feet"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(56, "feet")
  5238. },
  5239. {
  5240. name: "Megamacro",
  5241. height: math.unit(1.9, "miles")
  5242. },
  5243. ]
  5244. )
  5245. };
  5246. characterMakers["Aurora"] = () => {
  5247. return makeCharacter(
  5248. "Aurora",
  5249. "Vonadi",
  5250. {
  5251. front: {
  5252. height: math.unit(9 + 6/12, "feet"),
  5253. weight: math.unit(523, "lbs"),
  5254. name: "Side",
  5255. image: {
  5256. source: "./media/characters/aurora/side.svg"
  5257. }
  5258. }
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(9 + 6/12, "feet")
  5264. },
  5265. {
  5266. name: "Macro",
  5267. height: math.unit(96, "feet"),
  5268. default: true
  5269. },
  5270. {
  5271. name: "Macro+",
  5272. height: math.unit(243, "feet")
  5273. },
  5274. ]
  5275. )
  5276. };
  5277. characterMakers["Ranek"] = () => {
  5278. return makeCharacter(
  5279. "Ranek",
  5280. "Ranek",
  5281. {
  5282. front: {
  5283. height: math.unit(194, "cm"),
  5284. weight: math.unit(90, "kg"),
  5285. name: "Front",
  5286. image: {
  5287. source: "./media/characters/ranek/front.svg"
  5288. }
  5289. },
  5290. side: {
  5291. height: math.unit(194, "cm"),
  5292. weight: math.unit(90, "kg"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/ranek/side.svg"
  5296. }
  5297. },
  5298. back: {
  5299. height: math.unit(194, "cm"),
  5300. weight: math.unit(90, "kg"),
  5301. name: "Back",
  5302. image: {
  5303. source: "./media/characters/ranek/back.svg"
  5304. }
  5305. },
  5306. feral: {
  5307. height: math.unit(30, "cm"),
  5308. weight: math.unit(1.6, "lbs"),
  5309. name: "Feral",
  5310. image: {
  5311. source: "./media/characters/ranek/feral.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(194, "cm"),
  5319. default: true
  5320. },
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(100, "meters")
  5324. },
  5325. ]
  5326. )
  5327. };
  5328. characterMakers["Andrew Cooper"] = () => {
  5329. return makeCharacter(
  5330. "Andrew Cooper",
  5331. "Vonadi",
  5332. {
  5333. front: {
  5334. height: math.unit(5 + 6/12, "feet"),
  5335. weight: math.unit(153, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/andrew-cooper/front.svg"
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Nano",
  5345. height: math.unit(1, "mm")
  5346. },
  5347. {
  5348. name: "Micro",
  5349. height: math.unit(2, "inches")
  5350. },
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(5 + 6/12, "feet"),
  5354. default: true
  5355. }
  5356. ]
  5357. )
  5358. };
  5359. characterMakers["Akane Sato"] = () => {
  5360. return makeCharacter(
  5361. "Akane Sato",
  5362. "Vonadi",
  5363. {
  5364. front: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(180, "lbs"),
  5367. name: "Front",
  5368. image: {
  5369. source: "./media/characters/akane-sato/front.svg",
  5370. extra: 1219/1140
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(180, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/akane-sato/back.svg",
  5379. extra: 1219/1170
  5380. }
  5381. },
  5382. },
  5383. [
  5384. {
  5385. name: "Normal",
  5386. height: math.unit(2.5, "meters")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(250, "meters"),
  5391. default: true
  5392. },
  5393. {
  5394. name: "Megamacro",
  5395. height: math.unit(25, "km")
  5396. },
  5397. ]
  5398. )
  5399. };
  5400. characterMakers["Rook"] = () => {
  5401. return makeCharacter(
  5402. "Rook",
  5403. "Rook",
  5404. {
  5405. front: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(65, "kg"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/rook/front.svg"
  5411. }
  5412. }
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(8.8, "feet")
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(88, "feet"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Megamacro",
  5426. height: math.unit(8, "miles")
  5427. },
  5428. ]
  5429. )
  5430. };
  5431. characterMakers["Prodigy"] = () => {
  5432. return makeCharacter(
  5433. "Prodigy",
  5434. "Rook",
  5435. {
  5436. front: {
  5437. height: math.unit(12 + 2/12, "feet"),
  5438. weight: math.unit(808, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/prodigy/front.svg"
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(12 + 2/12, "feet"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Macro",
  5453. height: math.unit(143, "feet")
  5454. },
  5455. {
  5456. name: "Macro+",
  5457. height: math.unit(400, "feet")
  5458. },
  5459. ]
  5460. )
  5461. };
  5462. characterMakers["Daniel"] = () => {
  5463. return makeCharacter(
  5464. "Daniel",
  5465. "Galactor",
  5466. {
  5467. front: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(225, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/daniel/front.svg"
  5473. }
  5474. },
  5475. leaning: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(225, "lbs"),
  5478. name: "Leaning",
  5479. image: {
  5480. source: "./media/characters/daniel/leaning.svg"
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(1000, "feet"),
  5488. default: true
  5489. },
  5490. ]
  5491. )
  5492. };
  5493. characterMakers["Chiros"] = () => {
  5494. return makeCharacter(
  5495. "Chiros",
  5496. "Chiropica",
  5497. {
  5498. front: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(88, "lbs"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/chiros/front.svg",
  5504. extra: 306/226
  5505. }
  5506. },
  5507. side: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(88, "lbs"),
  5510. name: "Side",
  5511. image: {
  5512. source: "./media/characters/chiros/side.svg",
  5513. extra: 306/226
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(6, "cm"),
  5521. default: true
  5522. },
  5523. ]
  5524. )
  5525. };
  5526. characterMakers["Selka"] = () => {
  5527. return makeCharacter(
  5528. "Selka",
  5529. "Xelchew",
  5530. {
  5531. front: {
  5532. height: math.unit(6, "feet"),
  5533. weight: math.unit(100, "lbs"),
  5534. name: "Front",
  5535. image: {
  5536. source: "./media/characters/selka/front.svg",
  5537. extra: 947/887
  5538. }
  5539. }
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(5, "cm"),
  5545. default: true
  5546. },
  5547. ]
  5548. )
  5549. };
  5550. characterMakers["Verin"] = () => {
  5551. return makeCharacter(
  5552. "Verin",
  5553. "Vonadi",
  5554. {
  5555. front: {
  5556. height: math.unit(8 + 3/12, "feet"),
  5557. weight: math.unit(424, "lbs"),
  5558. name: "Front",
  5559. image: {
  5560. source: "./media/characters/verin/front.svg",
  5561. extra: 1845/1550
  5562. }
  5563. },
  5564. frontArmored: {
  5565. height: math.unit(8 + 3/12, "feet"),
  5566. weight: math.unit(424, "lbs"),
  5567. name: "Front (Armored)",
  5568. image: {
  5569. source: "./media/characters/verin/front-armor.svg",
  5570. extra: 1845/1550 ,
  5571. bottom: 0.01
  5572. }
  5573. },
  5574. back: {
  5575. height: math.unit(8 + 3/12, "feet"),
  5576. weight: math.unit(424, "lbs"),
  5577. name: "Back",
  5578. image: {
  5579. source: "./media/characters/verin/back.svg",
  5580. bottom: 0.1,
  5581. extra: 1
  5582. }
  5583. },
  5584. foot: {
  5585. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5586. name: "Foot",
  5587. image: {
  5588. source: "./media/characters/verin/foot.svg"
  5589. }
  5590. },
  5591. },
  5592. [
  5593. {
  5594. name: "Normal",
  5595. height: math.unit(8 + 3/12, "feet")
  5596. },
  5597. {
  5598. name: "Minimacro",
  5599. height: math.unit(21, "feet"),
  5600. default: true
  5601. },
  5602. {
  5603. name: "Macro",
  5604. height: math.unit(626, "feet")
  5605. },
  5606. ]
  5607. )
  5608. };
  5609. characterMakers["Sovrim Terraquian"] = () => {
  5610. return makeCharacter(
  5611. "Sovrim Terraquian",
  5612. "Sovrim Terraquian",
  5613. {
  5614. front: {
  5615. height: math.unit(2.718, "meters"),
  5616. weight: math.unit(150, "lbs"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/sovrim-terraquian/front.svg"
  5620. }
  5621. },
  5622. back: {
  5623. height: math.unit(2.718, "meters"),
  5624. weight: math.unit(150, "lbs"),
  5625. name: "Back",
  5626. image: {
  5627. source: "./media/characters/sovrim-terraquian/back.svg"
  5628. }
  5629. }
  5630. },
  5631. [
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(2, "inches")
  5635. },
  5636. {
  5637. name: "Small",
  5638. height: math.unit(1, "meter")
  5639. },
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(Math.E, "meters"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Macro",
  5647. height: math.unit(20, "meters")
  5648. },
  5649. {
  5650. name: "Macro+",
  5651. height: math.unit(400, "meters")
  5652. },
  5653. ]
  5654. )
  5655. };
  5656. characterMakers["Reece Silvermane"] = () => {
  5657. return makeCharacter(
  5658. "Reece Silvermane",
  5659. "Silverhorsey",
  5660. {
  5661. front: {
  5662. height: math.unit(7, "feet"),
  5663. weight: math.unit(489, "lbs"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/reece-silvermane/front.svg",
  5667. bottom: 0.02,
  5668. extra: 1
  5669. }
  5670. },
  5671. },
  5672. [
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(1.5, "miles"),
  5676. default: true
  5677. },
  5678. ]
  5679. )
  5680. };
  5681. characterMakers["Kane"] = () => {
  5682. return makeCharacter(
  5683. "Kane",
  5684. "LittleBigX110",
  5685. {
  5686. front: {
  5687. height: math.unit(6, "feet"),
  5688. weight: math.unit(78, "kg"),
  5689. name: "Front",
  5690. image: {
  5691. source: "./media/characters/kane/front.svg",
  5692. extra: 978/899
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(2.1, "m"),
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(1, "km"),
  5704. default: true
  5705. },
  5706. ]
  5707. )
  5708. };
  5709. characterMakers["Tegon"] = () => {
  5710. return makeCharacter(
  5711. "Tegon",
  5712. "TegonDragon",
  5713. {
  5714. front: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(200, "kg"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/tegon/front.svg",
  5720. bottom: 0.01,
  5721. extra: 1
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Micro",
  5728. height: math.unit(1, "inch")
  5729. },
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(6 + 3/12, "feet"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Macro",
  5737. height: math.unit(300, "feet")
  5738. },
  5739. {
  5740. name: "Megamacro",
  5741. height: math.unit(69, "miles")
  5742. },
  5743. ]
  5744. )
  5745. };
  5746. characterMakers["Arcturax"] = () => {
  5747. return makeCharacter(
  5748. "Arcturax",
  5749. "Arcturax",
  5750. {
  5751. side: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(2304, "lbs"),
  5754. name: "Side",
  5755. image: {
  5756. source: "./media/characters/arcturax/side.svg",
  5757. extra: 790/376 ,
  5758. bottom: 0.01
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Micro",
  5765. height: math.unit(2, "inch")
  5766. },
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(6, "feet")
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(39, "feet"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Megamacro",
  5778. height: math.unit(7, "miles")
  5779. },
  5780. ]
  5781. )
  5782. };
  5783. characterMakers["Sentri"] = () => {
  5784. return makeCharacter(
  5785. "Sentri",
  5786. "Sentri",
  5787. {
  5788. front: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(50, "lbs"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/sentri/front.svg",
  5794. extra: 1750/1570 ,
  5795. bottom: 0.025
  5796. }
  5797. },
  5798. frontAlt: {
  5799. height: math.unit(6, "feet"),
  5800. weight: math.unit(50, "lbs"),
  5801. name: "Front (Alt)",
  5802. image: {
  5803. source: "./media/characters/sentri/front-alt.svg",
  5804. extra: 1750/1570 ,
  5805. bottom: 0.025
  5806. }
  5807. },
  5808. },
  5809. [
  5810. {
  5811. name: "Normal",
  5812. height: math.unit(15, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(2500, "feet")
  5818. }
  5819. ]
  5820. )
  5821. };
  5822. characterMakers["Corvin"] = () => {
  5823. return makeCharacter(
  5824. "Corvin",
  5825. "Sirffuzzylogik",
  5826. {
  5827. front: {
  5828. height: math.unit(5 + 8/12, "feet"),
  5829. weight: math.unit(130, "lbs"),
  5830. name: "Front",
  5831. image: {
  5832. source: "./media/characters/corvin/front.svg",
  5833. extra: 1803/1629
  5834. }
  5835. },
  5836. frontShirt: {
  5837. height: math.unit(5 + 8/12, "feet"),
  5838. weight: math.unit(130, "lbs"),
  5839. name: "Front (Shirt)",
  5840. image: {
  5841. source: "./media/characters/corvin/front-shirt.svg",
  5842. extra: 1803/1629
  5843. }
  5844. },
  5845. frontPoncho: {
  5846. height: math.unit(5 + 8/12, "feet"),
  5847. weight: math.unit(130, "lbs"),
  5848. name: "Front (Poncho)",
  5849. image: {
  5850. source: "./media/characters/corvin/front-poncho.svg",
  5851. extra: 1803/1629
  5852. }
  5853. },
  5854. side: {
  5855. height: math.unit(5 + 8/12, "feet"),
  5856. weight: math.unit(130, "lbs"),
  5857. name: "Side",
  5858. image: {
  5859. source: "./media/characters/corvin/side.svg",
  5860. extra: 1012/945
  5861. }
  5862. },
  5863. back: {
  5864. height: math.unit(5 + 8/12, "feet"),
  5865. weight: math.unit(130, "lbs"),
  5866. name: "Back",
  5867. image: {
  5868. source: "./media/characters/corvin/back.svg",
  5869. extra: 1803/1629
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Micro",
  5876. height: math.unit(3, "inches")
  5877. },
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(5 + 8/12, "feet")
  5881. },
  5882. {
  5883. name: "Macro",
  5884. height: math.unit(300, "feet"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Megamacro",
  5889. height: math.unit(500, "miles")
  5890. }
  5891. ]
  5892. )
  5893. };
  5894. characterMakers["Q"] = () => {
  5895. return makeCharacter(
  5896. "Q",
  5897. "Q Walf",
  5898. {
  5899. front: {
  5900. height: math.unit(6, "feet"),
  5901. weight: math.unit(135, "lbs"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/q/front.svg",
  5905. extra: 854/752 ,
  5906. bottom: 0.005
  5907. }
  5908. },
  5909. back: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(130, "lbs"),
  5912. name: "Back",
  5913. image: {
  5914. source: "./media/characters/q/back.svg",
  5915. extra: 854/752
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(90, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Extra Macro",
  5927. height: math.unit(300, "feet"),
  5928. },
  5929. {
  5930. name: "BIG WALF",
  5931. height: math.unit(750, "feet"),
  5932. },
  5933. ]
  5934. )
  5935. };
  5936. characterMakers["Carley"] = () => {
  5937. return makeCharacter(
  5938. "Carley",
  5939. "QuakeYote",
  5940. {
  5941. front: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(150, "lbs"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/carley/front.svg",
  5947. extra: 3927/3540 ,
  5948. bottom: 0.03
  5949. }
  5950. }
  5951. },
  5952. [
  5953. {
  5954. name: "Normal",
  5955. height: math.unit(6 + 3/12, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(185, "feet"),
  5960. default: true
  5961. },
  5962. {
  5963. name: "Megamacro",
  5964. height: math.unit(8, "miles"),
  5965. },
  5966. ]
  5967. )
  5968. };
  5969. characterMakers["Citrine"] = () => {
  5970. return makeCharacter(
  5971. "Citrine",
  5972. "thunderstrike23",
  5973. {
  5974. front: {
  5975. height: math.unit(3, "feet"),
  5976. weight: math.unit(28, "lbs"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/citrine/front.svg"
  5980. }
  5981. }
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(3, "feet"),
  5987. default: true
  5988. }
  5989. ]
  5990. )
  5991. };
  5992. characterMakers["Aura Starwind"] = () => {
  5993. return makeCharacter(
  5994. "Aura Starwind",
  5995. "StrikeVixen",
  5996. {
  5997. front: {
  5998. height: math.unit(14, "feet"),
  5999. weight: math.unit(1450, "kg"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/aura-starwind/front.svg",
  6003. extra: 1455/1335
  6004. }
  6005. },
  6006. side: {
  6007. height: math.unit(14, "feet"),
  6008. weight: math.unit(1450, "kg"),
  6009. name: "Side",
  6010. image: {
  6011. source: "./media/characters/aura-starwind/side.svg",
  6012. extra: 1654/1497
  6013. }
  6014. },
  6015. taur: {
  6016. height: math.unit(18, "feet"),
  6017. weight: math.unit(5500, "kg"),
  6018. name: "Taur",
  6019. image: {
  6020. source: "./media/characters/aura-starwind/taur.svg",
  6021. extra: 1760/1650
  6022. }
  6023. },
  6024. feral: {
  6025. height: math.unit(46, "feet"),
  6026. weight: math.unit(25000, "kg"),
  6027. name: "Feral",
  6028. image: {
  6029. source: "./media/characters/aura-starwind/feral.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Normal",
  6036. height: math.unit(14, "feet"),
  6037. default: true
  6038. },
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(50, "meters")
  6042. },
  6043. {
  6044. name: "Megamacro",
  6045. height: math.unit(5000, "meters")
  6046. },
  6047. {
  6048. name: "Gigamacro",
  6049. height: math.unit(100000, "kilometers")
  6050. },
  6051. ]
  6052. )
  6053. };
  6054. characterMakers["Rivet"] = () => {
  6055. return makeCharacter(
  6056. "Rivet",
  6057. "Vonadi",
  6058. {
  6059. front: {
  6060. height: math.unit(2 + 7/12, "feet"),
  6061. weight: math.unit(32, "lbs"),
  6062. name: "Front",
  6063. image: {
  6064. source: "./media/characters/rivet/front.svg",
  6065. extra: 1716/1658 ,
  6066. bottom: 0.03
  6067. }
  6068. },
  6069. foot: {
  6070. height: math.unit(0.551, "feet"),
  6071. name: "Rivet's Foot",
  6072. image: {
  6073. source: "./media/characters/rivet/foot.svg"
  6074. },
  6075. rename: true
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(1.5, "inches"),
  6082. },
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(2 + 7/12, "feet"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Macro",
  6090. height: math.unit(85, "feet")
  6091. },
  6092. {
  6093. name: "Megamacro",
  6094. height: math.unit(2.2, "km")
  6095. }
  6096. ]
  6097. )
  6098. };
  6099. characterMakers["Coffee"] = () => {
  6100. return makeCharacter(
  6101. "Coffee",
  6102. "CoffeeDoggo",
  6103. {
  6104. front: {
  6105. height: math.unit(5 + 9/12, "feet"),
  6106. weight: math.unit(150, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/coffee/front.svg",
  6110. extra: 3666/3032 ,
  6111. bottom: 0.04
  6112. }
  6113. },
  6114. foot: {
  6115. height: math.unit(1.29, "feet"),
  6116. name: "Foot",
  6117. image: {
  6118. source: "./media/characters/coffee/foot.svg"
  6119. }
  6120. },
  6121. },
  6122. [
  6123. {
  6124. name: "Micro",
  6125. height: math.unit(2, "inches"),
  6126. },
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(5 + 9/12, "feet"),
  6130. default: true
  6131. },
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(800, "feet")
  6135. },
  6136. {
  6137. name: "Megamacro",
  6138. height: math.unit(25, "miles")
  6139. }
  6140. ]
  6141. )
  6142. };
  6143. characterMakers["Chari-Gal"] = () => {
  6144. return makeCharacter(
  6145. "Chari-Gal",
  6146. "Knoem",
  6147. {
  6148. front: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(200, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/chari-gal/front.svg",
  6154. extra: 1568/1385 ,
  6155. bottom: 0.047
  6156. }
  6157. },
  6158. gigantamax: {
  6159. height: math.unit(6*16, "feet"),
  6160. weight: math.unit(200*16*16*16, "lbs"),
  6161. name: "Gigantamax",
  6162. image: {
  6163. source: "./media/characters/chari-gal/gigantamax.svg",
  6164. extra: 1124/888 ,
  6165. bottom: 0.03
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(5 + 7/12, "feet")
  6173. },
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(200, "feet"),
  6177. default: true
  6178. }
  6179. ]
  6180. )
  6181. };
  6182. characterMakers["Nova"] = () => {
  6183. return makeCharacter(
  6184. "Nova",
  6185. "CoffeeDoggo",
  6186. {
  6187. front: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(150, "lbs"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/nova/front.svg",
  6193. extra: 5000/4722 ,
  6194. bottom: 0.02
  6195. }
  6196. }
  6197. },
  6198. [
  6199. {
  6200. name: "Micro-",
  6201. height: math.unit(0.8, "inches")
  6202. },
  6203. {
  6204. name: "Micro",
  6205. height: math.unit(2, "inches"),
  6206. default: true
  6207. },
  6208. ]
  6209. )
  6210. };
  6211. characterMakers["Argent"] = () => {
  6212. return makeCharacter(
  6213. "Argent",
  6214. "ArgentVZ",
  6215. {
  6216. front: {
  6217. height: math.unit(3 + 1/12, "feet"),
  6218. weight: math.unit(21.7, "lbs"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/argent/front.svg",
  6222. extra: 1565/1416 ,
  6223. bottom: 0.01
  6224. }
  6225. }
  6226. },
  6227. [
  6228. {
  6229. name: "Micro",
  6230. height: math.unit(2, "inches")
  6231. },
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(3 + 1/12, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(120, "feet")
  6240. },
  6241. ]
  6242. )
  6243. };
  6244. characterMakers["Mira al-Cul"] = () => {
  6245. return makeCharacter(
  6246. "Mira al-Cul",
  6247. "Mariokartsonicriders",
  6248. {
  6249. lamp: {
  6250. height: math.unit(7 * 1559 / 989, "feet"),
  6251. name: "Magic Lamp",
  6252. image: {
  6253. source: "./media/characters/mira-al-cul/lamp.svg",
  6254. extra: 1617/1559
  6255. }
  6256. },
  6257. front: {
  6258. height: math.unit(7, "feet"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/mira-al-cul/front.svg",
  6262. extra: 1044/990
  6263. }
  6264. },
  6265. },
  6266. [
  6267. {
  6268. name: "Heavily Restricted",
  6269. height: math.unit(7 * 1559 / 989, "feet")
  6270. },
  6271. {
  6272. name: "Freshly Freed",
  6273. height: math.unit(50 * 1559 / 989, "feet")
  6274. },
  6275. {
  6276. name: "World Encompassing",
  6277. height: math.unit(10000 * 1559 / 989, "miles")
  6278. },
  6279. {
  6280. name: "Galactic",
  6281. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6282. },
  6283. {
  6284. name: "Palmed Universe",
  6285. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Multiversal Matriarch",
  6290. height: math.unit(8.87e10, "yottameters")
  6291. },
  6292. {
  6293. name: "Void Mother",
  6294. height: math.unit(3.14e110, "yottaparsecs")
  6295. },
  6296. ]
  6297. )
  6298. };
  6299. characterMakers["Kuro-shi Uchū"] = () => {
  6300. return makeCharacter(
  6301. "Kuro-shi Uchū",
  6302. "Dragon Shark",
  6303. {
  6304. front: {
  6305. height: math.unit(17 + 1/12, "feet"),
  6306. weight: math.unit(476.2*5, "lbs"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/kuro-shi-uchū/front.svg",
  6310. extra: 2329/1835 ,
  6311. bottom: 0.02
  6312. }
  6313. },
  6314. },
  6315. [
  6316. {
  6317. name: "Micro",
  6318. height: math.unit(2, "inches")
  6319. },
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(12, "meters")
  6323. },
  6324. {
  6325. name: "Planetary",
  6326. height: math.unit(0.00929, "AU"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Universal",
  6331. height: math.unit(20, "gigaparsecs")
  6332. },
  6333. ]
  6334. )
  6335. };
  6336. characterMakers["Katherine"] = () => {
  6337. return makeCharacter(
  6338. "Katherine",
  6339. "chrisrules123",
  6340. {
  6341. front: {
  6342. height: math.unit(5 + 2/12, "feet"),
  6343. weight: math.unit(120, "lbs"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/katherine/front.svg",
  6347. extra: 2075/1969
  6348. }
  6349. },
  6350. dress: {
  6351. height: math.unit(5 + 2/12, "feet"),
  6352. weight: math.unit(120, "lbs"),
  6353. name: "Dress",
  6354. image: {
  6355. source: "./media/characters/katherine/dress.svg",
  6356. extra: 2258/2064
  6357. }
  6358. },
  6359. },
  6360. [
  6361. {
  6362. name: "Micro",
  6363. height: math.unit(1, "inches"),
  6364. default: true
  6365. },
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(5 + 2/12, "feet")
  6369. },
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(100, "meters")
  6373. },
  6374. {
  6375. name: "Megamacro",
  6376. height: math.unit(80, "miles")
  6377. },
  6378. ]
  6379. )
  6380. };
  6381. characterMakers["Yevis"] = () => {
  6382. return makeCharacter(
  6383. "Yevis",
  6384. "Mariokartsonicriders",
  6385. {
  6386. front: {
  6387. height: math.unit(7 + 8/12, "feet"),
  6388. weight: math.unit(250, "lbs"),
  6389. name: "Front",
  6390. image: {
  6391. source: "./media/characters/yevis/front.svg",
  6392. extra: 1938/1755
  6393. }
  6394. }
  6395. },
  6396. [
  6397. {
  6398. name: "Mortal",
  6399. height: math.unit(7 + 8/12, "feet")
  6400. },
  6401. {
  6402. name: "Battle",
  6403. height: math.unit(25 + 11/12, "feet")
  6404. },
  6405. {
  6406. name: "Wrath",
  6407. height: math.unit(1654 + 11/12, "feet")
  6408. },
  6409. {
  6410. name: "Planet Destroyer",
  6411. height: math.unit(12000, "miles")
  6412. },
  6413. {
  6414. name: "Galaxy Conqueror",
  6415. height: math.unit(1.45, "zettameters"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Universal War",
  6420. height: math.unit(184, "gigaparsecs")
  6421. },
  6422. {
  6423. name: "Eternity War",
  6424. height: math.unit(1.98e55, "yottaparsecs")
  6425. },
  6426. ]
  6427. )
  6428. };
  6429. characterMakers["Xavier"] = () => {
  6430. return makeCharacter(
  6431. "Xavier",
  6432. "zmaster587",
  6433. {
  6434. front: {
  6435. height: math.unit(5 + 8/12, "feet"),
  6436. weight: math.unit(63, "kg"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/xavier/front.svg",
  6440. extra: 944/883
  6441. }
  6442. },
  6443. frontStretch: {
  6444. height: math.unit(5 + 8/12, "feet"),
  6445. weight: math.unit(63, "kg"),
  6446. name: "Stretching",
  6447. image: {
  6448. source: "./media/characters/xavier/front-stretch.svg",
  6449. extra: 962/820
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(5 + 8/12, "feet")
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(100, "meters"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "McLargeHuge",
  6465. height: math.unit(10, "miles")
  6466. },
  6467. ]
  6468. )
  6469. };
  6470. characterMakers["Joshii"] = () => {
  6471. return makeCharacter(
  6472. "Joshii",
  6473. "DarkieTehJester",
  6474. {
  6475. front: {
  6476. height: math.unit(5 + 5/12, "feet"),
  6477. weight: math.unit(150, "lb"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/joshii/front.svg"
  6481. }
  6482. },
  6483. foot: {
  6484. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6485. name: "Foot",
  6486. image: {
  6487. source: "./media/characters/joshii/foot.svg"
  6488. }
  6489. },
  6490. },
  6491. [
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(2, "inches")
  6495. },
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(5 + 5/12, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(785, "feet")
  6504. },
  6505. {
  6506. name: "Megamacro",
  6507. height: math.unit(24.5, "miles")
  6508. },
  6509. ]
  6510. )
  6511. };
  6512. characterMakers["Goddess Elizabeth"] = () => {
  6513. return makeCharacter(
  6514. "Goddess Elizabeth",
  6515. "DarkieTehJester",
  6516. {
  6517. front: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(150, "lb"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/goddess-elizabeth/front.svg"
  6523. }
  6524. },
  6525. foot: {
  6526. height: math.unit(6 * 0.25436 / 2, "feet"),
  6527. name: "Foot",
  6528. image: {
  6529. source: "./media/characters/goddess-elizabeth/foot.svg"
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Micro",
  6536. height: math.unit(12, "feet")
  6537. },
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(80, "miles"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(15000, "parsecs")
  6546. },
  6547. ]
  6548. )
  6549. };
  6550. characterMakers["Kara"] = () => {
  6551. return makeCharacter(
  6552. "Kara",
  6553. "Vonadi",
  6554. {
  6555. front: {
  6556. height: math.unit(5 + 9/12, "feet"),
  6557. weight: math.unit(144, "lb"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/kara/front.svg"
  6561. }
  6562. },
  6563. feet: {
  6564. height: math.unit(6/6.765, "feet"),
  6565. name: "Kara's Feet",
  6566. rename: true,
  6567. image: {
  6568. source: "./media/characters/kara/feet.svg"
  6569. }
  6570. },
  6571. },
  6572. [
  6573. {
  6574. name: "Normal",
  6575. height: math.unit(5 + 9/12, "feet")
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(174, "feet"),
  6580. default: true
  6581. },
  6582. ]
  6583. )
  6584. };
  6585. characterMakers["Tyrone"] = () => {
  6586. return makeCharacter(
  6587. "Tyrone",
  6588. "nanakisan",
  6589. {
  6590. front: {
  6591. height: math.unit(18, "feet"),
  6592. weight: math.unit(4050, "lb"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/tyrone/front.svg",
  6596. extra: 2520/2402 ,
  6597. bottom: 0.025
  6598. }
  6599. },
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(18, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(300, "feet")
  6610. },
  6611. ]
  6612. )
  6613. };
  6614. characterMakers["Danny"] = () => {
  6615. return makeCharacter(
  6616. "Danny",
  6617. "danny_gryphon",
  6618. {
  6619. front: {
  6620. height: math.unit(7 + 8/12, "feet"),
  6621. weight: math.unit(120, "lb"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/danny/front.svg",
  6625. extra: 1490/1350
  6626. }
  6627. },
  6628. back: {
  6629. height: math.unit(7 + 8/12, "feet"),
  6630. weight: math.unit(120, "lb"),
  6631. name: "Back",
  6632. image: {
  6633. source: "./media/characters/danny/back.svg",
  6634. extra: 1490/1350
  6635. }
  6636. },
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(7 + 8/12, "feet"),
  6642. default: true
  6643. },
  6644. ]
  6645. )
  6646. };
  6647. characterMakers["Mallow"] = () => {
  6648. return makeCharacter(
  6649. "Mallow",
  6650. "Mallowchu",
  6651. {
  6652. front: {
  6653. height: math.unit(3.5, "inches"),
  6654. weight: math.unit(19, "grams"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/mallow/front.svg",
  6658. extra: 471/431
  6659. }
  6660. },
  6661. back: {
  6662. height: math.unit(3.5, "inches"),
  6663. weight: math.unit(19, "grams"),
  6664. name: "Back",
  6665. image: {
  6666. source: "./media/characters/mallow/back.svg",
  6667. extra: 471/431
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(3.5, "inches"),
  6675. default: true
  6676. },
  6677. ]
  6678. )
  6679. };
  6680. characterMakers["Starry Aqua"] = () => {
  6681. return makeCharacter(
  6682. "Starry Aqua",
  6683. "StarryAqua",
  6684. {
  6685. front: {
  6686. height: math.unit(9, "feet"),
  6687. weight: math.unit(230, "kg"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/starry-aqua/front.svg"
  6691. }
  6692. },
  6693. back: {
  6694. height: math.unit(9, "feet"),
  6695. weight: math.unit(230, "kg"),
  6696. name: "Back",
  6697. image: {
  6698. source: "./media/characters/starry-aqua/back.svg"
  6699. }
  6700. },
  6701. hand: {
  6702. height: math.unit(9 * 0.1168, "feet"),
  6703. name: "Hand",
  6704. image: {
  6705. source: "./media/characters/starry-aqua/hand.svg"
  6706. }
  6707. },
  6708. foot: {
  6709. height: math.unit(9 * 0.18, "feet"),
  6710. name: "Foot",
  6711. image: {
  6712. source: "./media/characters/starry-aqua/foot.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Micro",
  6719. height: math.unit(3, "inches")
  6720. },
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(9, "feet")
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(300, "feet"),
  6728. default: true
  6729. },
  6730. {
  6731. name: "Megamacro",
  6732. height: math.unit(3200, "feet")
  6733. }
  6734. ]
  6735. )
  6736. };
  6737. characterMakers["Luka"] = () => {
  6738. return makeCharacter(
  6739. "Luka",
  6740. "UmbraHusky",
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(230, "lb"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/luka/front.svg",
  6748. extra: 1,
  6749. bottom: 0.025
  6750. }
  6751. },
  6752. },
  6753. [
  6754. {
  6755. name: "Normal",
  6756. height: math.unit(12 + 8/12, "feet"),
  6757. default: true
  6758. },
  6759. {
  6760. name: "Minimacro",
  6761. height: math.unit(20, "feet")
  6762. },
  6763. {
  6764. name: "Macro",
  6765. height: math.unit(250, "feet")
  6766. },
  6767. {
  6768. name: "Megamacro",
  6769. height: math.unit(5, "miles")
  6770. },
  6771. {
  6772. name: "Gigamacro",
  6773. height: math.unit(8000, "miles")
  6774. },
  6775. ]
  6776. )
  6777. };
  6778. characterMakers["Natalie Nightring"] = () => {
  6779. return makeCharacter(
  6780. "Natalie Nightring",
  6781. "NatEdgecomb",
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(150, "lb"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/natalie-nightring/front.svg",
  6789. extra: 1,
  6790. bottom: 0.06
  6791. }
  6792. },
  6793. },
  6794. [
  6795. {
  6796. name: "Uh Oh",
  6797. height: math.unit(0.1, "mm")
  6798. },
  6799. {
  6800. name: "Small",
  6801. height: math.unit(3, "inches")
  6802. },
  6803. {
  6804. name: "Human Scale",
  6805. height: math.unit(6, "feet")
  6806. },
  6807. {
  6808. name: "Librarian",
  6809. height: math.unit(50, "feet"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Immense",
  6814. height: math.unit(200, "miles")
  6815. },
  6816. ]
  6817. )
  6818. };
  6819. characterMakers["Danni Rosie"] = () => {
  6820. return makeCharacter(
  6821. "Danni Rosie",
  6822. "colwag",
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/danni-rosie/front.svg",
  6830. extra: 1260/1128 ,
  6831. bottom: 0.022
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Micro",
  6838. height: math.unit(2, "inches"),
  6839. default: true
  6840. },
  6841. ]
  6842. )
  6843. };
  6844. characterMakers["Samantha Kruse"] = () => {
  6845. return makeCharacter(
  6846. "Samantha Kruse",
  6847. "colwag",
  6848. {
  6849. front: {
  6850. height: math.unit(5 + 9/12, "feet"),
  6851. weight: math.unit(220, "lb"),
  6852. name: "Front",
  6853. image: {
  6854. source: "./media/characters/samantha-kruse/front.svg",
  6855. extra: (985 / 935) ,
  6856. bottom: 0.03
  6857. }
  6858. },
  6859. frontUndressed: {
  6860. height: math.unit(5 + 9/12, "feet"),
  6861. weight: math.unit(220, "lb"),
  6862. name: "Front (Undressed)",
  6863. image: {
  6864. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6865. extra: (973 / 923) ,
  6866. bottom: 0.025
  6867. }
  6868. },
  6869. fat: {
  6870. height: math.unit(5 + 9/12, "feet"),
  6871. weight: math.unit(900, "lb"),
  6872. name: "Front (Fat)",
  6873. image: {
  6874. source: "./media/characters/samantha-kruse/fat.svg",
  6875. extra: 2688/2561
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(5 + 9/12, "feet"),
  6883. default: true
  6884. }
  6885. ]
  6886. )
  6887. };
  6888. characterMakers["Amelia Rosie"] = () => {
  6889. return makeCharacter(
  6890. "Amelia Rosie",
  6891. "colwag",
  6892. {
  6893. back: {
  6894. height: math.unit(5 + 4/12, "feet"),
  6895. weight: math.unit(4963, "lb"),
  6896. name: "Back",
  6897. image: {
  6898. source: "./media/characters/amelia-rosie/back.svg",
  6899. extra: 1113/963 ,
  6900. bottom: 0.01
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "Level 0",
  6907. height: math.unit(5 + 4/12, "feet")
  6908. },
  6909. {
  6910. name: "Level 1",
  6911. height: math.unit(164597, "feet"),
  6912. default: true
  6913. },
  6914. {
  6915. name: "Level 2",
  6916. height: math.unit(956243, "miles")
  6917. },
  6918. {
  6919. name: "Level 3",
  6920. height: math.unit(29421709423, "miles")
  6921. },
  6922. {
  6923. name: "Level 4",
  6924. height: math.unit(154, "lightyears")
  6925. },
  6926. {
  6927. name: "Level 5",
  6928. height: math.unit(4738272, "lightyears")
  6929. },
  6930. {
  6931. name: "Level 6",
  6932. height: math.unit(145787152896, "lightyears")
  6933. },
  6934. ]
  6935. )
  6936. };
  6937. characterMakers["Rook Kitara"] = () => {
  6938. return makeCharacter(
  6939. "Rook Kitara",
  6940. "TailsHigh",
  6941. {
  6942. front: {
  6943. height: math.unit(5 + 11/12, "feet"),
  6944. weight: math.unit(65, "kg"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/rook-kitara/front.svg",
  6948. extra: 1347/1274 ,
  6949. bottom: 0.005
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Totally Unfair",
  6956. height: math.unit(1.8, "mm")
  6957. },
  6958. {
  6959. name: "Lap Rookie",
  6960. height: math.unit(1.4, "feet")
  6961. },
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(5 + 11/12, "feet"),
  6965. default: true
  6966. },
  6967. {
  6968. name: "How Did This Happen",
  6969. height: math.unit(80, "miles")
  6970. }
  6971. ]
  6972. )
  6973. };
  6974. characterMakers["Pisces"] = () => {
  6975. return makeCharacter(
  6976. "Pisces",
  6977. "Pisces_Kelp",
  6978. {
  6979. front: {
  6980. height: math.unit(7, "feet"),
  6981. weight: math.unit(300, "lb"),
  6982. name: "Front",
  6983. image: {
  6984. source: "./media/characters/pisces/front.svg",
  6985. extra: 2255/2115 ,
  6986. bottom: 0.03
  6987. }
  6988. },
  6989. back: {
  6990. height: math.unit(7, "feet"),
  6991. weight: math.unit(300, "lb"),
  6992. name: "Back",
  6993. image: {
  6994. source: "./media/characters/pisces/back.svg",
  6995. extra: 2146/2055 ,
  6996. bottom: 0.04
  6997. }
  6998. },
  6999. },
  7000. [
  7001. {
  7002. name: "Normal",
  7003. height: math.unit(7, "feet"),
  7004. default: true
  7005. },
  7006. {
  7007. name: "Swimming Pool",
  7008. height: math.unit(12.2, "meters")
  7009. },
  7010. {
  7011. name: "Olympic Swimming Pool",
  7012. height: math.unit(56.3, "meters")
  7013. },
  7014. {
  7015. name: "Lake Superior",
  7016. height: math.unit(93900, "meters")
  7017. },
  7018. {
  7019. name: "Mediterranean Sea",
  7020. height: math.unit(644457, "meters")
  7021. },
  7022. {
  7023. name: "World's Oceans",
  7024. height: math.unit(4567491, "meters")
  7025. },
  7026. ]
  7027. )
  7028. };
  7029. characterMakers["Zelas"] = () => {
  7030. return makeCharacter(
  7031. "Zelas",
  7032. "Cirez",
  7033. {
  7034. front: {
  7035. height: math.unit(2.3, "meters"),
  7036. weight: math.unit(120, "kg"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/zelas/front.svg"
  7040. }
  7041. },
  7042. side: {
  7043. height: math.unit(2.3, "meters"),
  7044. weight: math.unit(120, "kg"),
  7045. name: "Side",
  7046. image: {
  7047. source: "./media/characters/zelas/side.svg"
  7048. }
  7049. },
  7050. back: {
  7051. height: math.unit(2.3, "meters"),
  7052. weight: math.unit(120, "kg"),
  7053. name: "Back",
  7054. image: {
  7055. source: "./media/characters/zelas/back.svg"
  7056. }
  7057. },
  7058. foot: {
  7059. height: math.unit(1.116, "feet"),
  7060. name: "Foot",
  7061. image: {
  7062. source: "./media/characters/zelas/foot.svg"
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(2.3, "meters")
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(30, "meters"),
  7074. default: true
  7075. },
  7076. ]
  7077. )
  7078. };
  7079. characterMakers["Talbot"] = () => {
  7080. return makeCharacter(
  7081. "Talbot",
  7082. "Talbot",
  7083. {
  7084. front: {
  7085. height: math.unit(1, "inch"),
  7086. weight: math.unit(0.21, "grams"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/talbot/front.svg",
  7090. extra: 594/544
  7091. }
  7092. },
  7093. },
  7094. [
  7095. {
  7096. name: "Micro",
  7097. height: math.unit(1, "inch"),
  7098. default: true
  7099. },
  7100. ]
  7101. )
  7102. };
  7103. characterMakers["Fliss"] = () => {
  7104. return makeCharacter(
  7105. "Fliss",
  7106. "Fliss",
  7107. {
  7108. front: {
  7109. height: math.unit(3 + 3/12, "feet"),
  7110. weight: math.unit(51.8, "lb"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/fliss/front.svg",
  7114. extra: 840/640
  7115. }
  7116. },
  7117. },
  7118. [
  7119. {
  7120. name: "Teeny Tiny",
  7121. height: math.unit(1, "mm")
  7122. },
  7123. {
  7124. name: "Small",
  7125. height: math.unit(1, "inch"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Standard Sylveon",
  7130. height: math.unit(3 + 3/12, "feet")
  7131. },
  7132. {
  7133. name: "Large Nuisance",
  7134. height: math.unit(33, "feet")
  7135. },
  7136. {
  7137. name: "City Filler",
  7138. height: math.unit(3000, "feet")
  7139. },
  7140. {
  7141. name: "New Horizon",
  7142. height: math.unit(6000, "miles")
  7143. },
  7144. ]
  7145. )
  7146. };
  7147. characterMakers["Fleta"] = () => {
  7148. return makeCharacter(
  7149. "Fleta",
  7150. "TheFleta",
  7151. {
  7152. front: {
  7153. height: math.unit(5, "cm"),
  7154. weight: math.unit(1.94, "g"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/fleta/front.svg",
  7158. extra: 835/803
  7159. }
  7160. },
  7161. back: {
  7162. height: math.unit(5, "cm"),
  7163. weight: math.unit(1.94, "g"),
  7164. name: "Back",
  7165. image: {
  7166. source: "./media/characters/fleta/back.svg",
  7167. extra: 835/803
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(5, "cm"),
  7175. default: true
  7176. },
  7177. ]
  7178. )
  7179. };
  7180. characterMakers["Dominic"] = () => {
  7181. return makeCharacter(
  7182. "Dominic",
  7183. "HypoTheDerg",
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(225, "lb"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/dominic/front.svg",
  7191. extra: 1770/1620 ,
  7192. bottom: 0.025
  7193. }
  7194. },
  7195. back: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(225, "lb"),
  7198. name: "Back",
  7199. image: {
  7200. source: "./media/characters/dominic/back.svg",
  7201. extra: 1745/1620 ,
  7202. bottom: 0.065
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Nano",
  7209. height: math.unit(0.1, "mm")
  7210. },
  7211. {
  7212. name: "Micro-",
  7213. height: math.unit(1, "mm")
  7214. },
  7215. {
  7216. name: "Micro",
  7217. height: math.unit(4, "inches")
  7218. },
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(6 + 4/12, "feet"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(115, "feet")
  7227. },
  7228. {
  7229. name: "Macro+",
  7230. height: math.unit(955, "feet")
  7231. },
  7232. {
  7233. name: "Megamacro",
  7234. height: math.unit(8990, "feet")
  7235. },
  7236. {
  7237. name: "Gigmacro",
  7238. height: math.unit(9310, "miles")
  7239. },
  7240. {
  7241. name: "Teramacro",
  7242. height: math.unit(1567005010, "miles")
  7243. },
  7244. {
  7245. name: "Examacro",
  7246. height: math.unit(1425, "parsecs")
  7247. },
  7248. ]
  7249. )
  7250. };
  7251. characterMakers["Major Colonel"] = () => {
  7252. return makeCharacter(
  7253. "Major Colonel",
  7254. "Major Colonel",
  7255. {
  7256. front: {
  7257. height: math.unit(400, "feet"),
  7258. weight: math.unit(44444444, "lb"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/major-colonel/front.svg"
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(400, "feet"),
  7266. weight: math.unit(44444444, "lb"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/major-colonel/back.svg"
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(400, "feet"),
  7277. default: true
  7278. },
  7279. ]
  7280. )
  7281. };
  7282. characterMakers["Axel Lycan"] = () => {
  7283. return makeCharacter(
  7284. "Axel Lycan",
  7285. "AxelLycan",
  7286. {
  7287. front: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(120, "lb"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/axel-lycan/front.svg",
  7293. extra: 1,
  7294. bottom: 0.08
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(1, "km"),
  7302. default: true
  7303. },
  7304. ]
  7305. )
  7306. };
  7307. characterMakers["Vanrel (Hyena)"] = () => {
  7308. return makeCharacter(
  7309. "Vanrel (Hyena)",
  7310. "Vanrel",
  7311. {
  7312. front: {
  7313. height: math.unit(5 + 9/12, "feet"),
  7314. weight: math.unit(175, "lb"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/vanrel-hyena/front.svg",
  7318. extra: 1086/1010 ,
  7319. bottom: 0.04
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(5 + 9/12, "feet"),
  7327. default: true
  7328. },
  7329. ]
  7330. )
  7331. };
  7332. characterMakers["Abbott Absol"] = () => {
  7333. return makeCharacter(
  7334. "Abbott Absol",
  7335. "Abbott Absol",
  7336. {
  7337. front: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(103, "lb"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/abbott-absol/front.svg",
  7343. extra: 2010/1842
  7344. }
  7345. },
  7346. },
  7347. [
  7348. {
  7349. name: "Megamicro",
  7350. height: math.unit(0.1, "mm")
  7351. },
  7352. {
  7353. name: "Micro",
  7354. height: math.unit(1, "inch")
  7355. },
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(6, "feet"),
  7359. default: true
  7360. },
  7361. ]
  7362. )
  7363. };
  7364. characterMakers["Hector"] = () => {
  7365. return makeCharacter(
  7366. "Hector",
  7367. "LibragonSlvr",
  7368. {
  7369. front: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(264, "lb"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/hector/front.svg",
  7375. extra: 2280/2130 ,
  7376. bottom: 0.07
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(12.25, "foot"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(160, "feet")
  7389. },
  7390. ]
  7391. )
  7392. };
  7393. characterMakers["Sal"] = () => {
  7394. return makeCharacter(
  7395. "Sal",
  7396. "Bigdur",
  7397. {
  7398. front: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(150, "lb"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/sal/front.svg",
  7404. extra: 1846/1699 ,
  7405. bottom: 0.04
  7406. }
  7407. },
  7408. },
  7409. [
  7410. {
  7411. name: "Megamacro",
  7412. height: math.unit(10, "miles"),
  7413. default: true
  7414. },
  7415. ]
  7416. )
  7417. };
  7418. characterMakers["Ranger"] = () => {
  7419. return makeCharacter(
  7420. "Ranger",
  7421. "Ranger",
  7422. {
  7423. front: {
  7424. height: math.unit(3, "meters"),
  7425. weight: math.unit(450, "kg"),
  7426. name: "front",
  7427. image: {
  7428. source: "./media/characters/ranger/front.svg",
  7429. extra: 2401/2243 ,
  7430. bottom: 0.05
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(3, "meters"),
  7438. default: true
  7439. },
  7440. ]
  7441. )
  7442. };
  7443. characterMakers["Theresa"] = () => {
  7444. return makeCharacter(
  7445. "Theresa",
  7446. "Ranger",
  7447. {
  7448. front: {
  7449. height: math.unit(14, "feet"),
  7450. weight: math.unit(800, "kg"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/theresa/front.svg",
  7454. extra: 3575/3346 ,
  7455. bottom: 0.03
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(14, "feet"),
  7463. default: true
  7464. },
  7465. ]
  7466. )
  7467. };
  7468. characterMakers["Ine"] = () => {
  7469. return makeCharacter(
  7470. "Ine",
  7471. "Ranger",
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(3, "kg"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/ine/front.svg",
  7479. extra: 678/539 ,
  7480. bottom: 0.023
  7481. }
  7482. },
  7483. },
  7484. [
  7485. {
  7486. name: "Normal",
  7487. height: math.unit(2.265, "feet"),
  7488. default: true
  7489. },
  7490. ]
  7491. )
  7492. };
  7493. characterMakers["Vial"] = () => {
  7494. return makeCharacter(
  7495. "Vial",
  7496. "Ranger",
  7497. {
  7498. front: {
  7499. height: math.unit(5, "feet"),
  7500. weight: math.unit(30, "kg"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/vial/front.svg",
  7504. extra: 1365/1277 ,
  7505. bottom: 0.04
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(5, "feet"),
  7513. default: true
  7514. },
  7515. ]
  7516. )
  7517. };
  7518. characterMakers["Rovoska"] = () => {
  7519. return makeCharacter(
  7520. "Rovoska",
  7521. "Rovoska",
  7522. {
  7523. side: {
  7524. height: math.unit(3.4, "meters"),
  7525. weight: math.unit(1000, "lb"),
  7526. name: "Side",
  7527. image: {
  7528. source: "./media/characters/rovoska/side.svg",
  7529. extra: 4403/1515
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(3.4, "meters"),
  7537. default: true
  7538. },
  7539. ]
  7540. )
  7541. };
  7542. characterMakers["Gunner Rotthbauer"] = () => {
  7543. return makeCharacter(
  7544. "Gunner Rotthbauer",
  7545. "GunnerRott",
  7546. {
  7547. front: {
  7548. height: math.unit(8, "feet"),
  7549. weight: math.unit(315, "lb"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/gunner-rotthbauer/front.svg"
  7553. }
  7554. },
  7555. back: {
  7556. height: math.unit(8, "feet"),
  7557. weight: math.unit(315, "lb"),
  7558. name: "Back",
  7559. image: {
  7560. source: "./media/characters/gunner-rotthbauer/back.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Micro",
  7567. height: math.unit(3.5, "inches")
  7568. },
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(8, "feet"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(250, "feet")
  7577. },
  7578. {
  7579. name: "Megamacro",
  7580. height: math.unit(1, "AU")
  7581. },
  7582. ]
  7583. )
  7584. };
  7585. characterMakers["Allatia"] = () => {
  7586. return makeCharacter(
  7587. "Allatia",
  7588. "ilikefurrystoo",
  7589. {
  7590. front: {
  7591. height: math.unit(5 + 5/12, "feet"),
  7592. weight: math.unit(140, "lb"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/allatia/front.svg",
  7596. extra: 1227/1180 ,
  7597. bottom: 0.027
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(5 + 5/12, "feet")
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(250, "feet"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Megamacro",
  7613. height: math.unit(8, "miles")
  7614. }
  7615. ]
  7616. )
  7617. };
  7618. characterMakers["Tene"] = () => {
  7619. return makeCharacter(
  7620. "Tene",
  7621. "TenebrisDrox",
  7622. {
  7623. front: {
  7624. height: math.unit(6, "feet"),
  7625. weight: math.unit(120, "lb"),
  7626. name: "Front",
  7627. image: {
  7628. source: "./media/characters/tene/front.svg",
  7629. extra: 1728/1578 ,
  7630. bottom: 0.022
  7631. }
  7632. },
  7633. stomping: {
  7634. height: math.unit(2.025, "meters"),
  7635. weight: math.unit(120, "lb"),
  7636. name: "Stomping",
  7637. image: {
  7638. source: "./media/characters/tene/stomping.svg",
  7639. extra: 938/873 ,
  7640. bottom: 0.01
  7641. }
  7642. },
  7643. sitting: {
  7644. height: math.unit(1, "meter"),
  7645. weight: math.unit(120, "lb"),
  7646. name: "Sitting",
  7647. image: {
  7648. source: "./media/characters/tene/sitting.svg",
  7649. extra: 437/415 ,
  7650. bottom: 0.1
  7651. }
  7652. },
  7653. feral: {
  7654. height: math.unit(3.9, "feet"),
  7655. weight: math.unit(250, "lb"),
  7656. name: "Feral",
  7657. image: {
  7658. source: "./media/characters/tene/feral.svg",
  7659. extra: 717/458 ,
  7660. bottom: 0.179
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(6, "feet")
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(300, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Megamacro",
  7676. height: math.unit(5, "miles")
  7677. },
  7678. ]
  7679. )
  7680. };
  7681. characterMakers["Evander"] = () => {
  7682. return makeCharacter(
  7683. "Evander",
  7684. "KlezmerGryphon",
  7685. {
  7686. side: {
  7687. height: math.unit(6, "feet"),
  7688. name: "Side",
  7689. image: {
  7690. source: "./media/characters/evander/side.svg",
  7691. extra: 877/477
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(0.83, "meters"),
  7699. default: true
  7700. },
  7701. ]
  7702. )
  7703. };
  7704. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7705. return makeCharacter(
  7706. "Ka'Tamra \"Spaz\" Ci'Karan",
  7707. "Spazman",
  7708. {
  7709. front: {
  7710. height: math.unit(12, "feet"),
  7711. weight: math.unit(1000, "lb"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7715. extra: 1762/1611
  7716. }
  7717. },
  7718. back: {
  7719. height: math.unit(12, "feet"),
  7720. weight: math.unit(1000, "lb"),
  7721. name: "Back",
  7722. image: {
  7723. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7724. extra: 1762/1611
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(12, "feet"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Kaiju",
  7736. height: math.unit(150, "feet")
  7737. },
  7738. ]
  7739. )
  7740. };
  7741. characterMakers["Zero Alurus"] = () => {
  7742. return makeCharacter(
  7743. "Zero Alurus",
  7744. "",
  7745. {
  7746. front: {
  7747. height: math.unit(6, "feet"),
  7748. weight: math.unit(150, "lb"),
  7749. name: "Front",
  7750. image: {
  7751. source: "./media/characters/zero-alurus/front.svg"
  7752. }
  7753. },
  7754. back: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(150, "lb"),
  7757. name: "Back",
  7758. image: {
  7759. source: "./media/characters/zero-alurus/back.svg"
  7760. }
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(5 + 10/12, "feet")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(60, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Macro+",
  7775. height: math.unit(450, "feet")
  7776. },
  7777. ]
  7778. )
  7779. };
  7780. characterMakers["Mega Shi"] = () => {
  7781. return makeCharacter(
  7782. "Mega Shi",
  7783. "MShi8027",
  7784. {
  7785. front: {
  7786. height: math.unit(6, "feet"),
  7787. weight: math.unit(200, "lb"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/mega-shi/front.svg",
  7791. extra: 1279/1250 ,
  7792. bottom: 0.02
  7793. }
  7794. },
  7795. back: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(200, "lb"),
  7798. name: "Back",
  7799. image: {
  7800. source: "./media/characters/mega-shi/back.svg",
  7801. extra: 1279/1250 ,
  7802. bottom: 0.02
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(16 + 6/12, "feet")
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(660, "feet"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Megamacro",
  7818. height: math.unit(10, "miles")
  7819. },
  7820. {
  7821. name: "Planetary Launch",
  7822. height: math.unit(500, "miles")
  7823. },
  7824. {
  7825. name: "Interstellar",
  7826. height: math.unit(1e9, "miles")
  7827. },
  7828. {
  7829. name: "Leaving the Universe",
  7830. height: math.unit(1, "gigaparsec")
  7831. },
  7832. {
  7833. name: "Travelling Universes",
  7834. height: math.unit(30e15, "parsecs")
  7835. },
  7836. ]
  7837. )
  7838. };
  7839. characterMakers["Odyssey"] = () => {
  7840. return makeCharacter(
  7841. "Odyssey",
  7842. "Freschlauhs",
  7843. {
  7844. front: {
  7845. height: math.unit(6, "feet"),
  7846. weight: math.unit(150, "lb"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/odyssey/front.svg",
  7850. extra: 1782/1582 ,
  7851. bottom: 0.01
  7852. }
  7853. },
  7854. side: {
  7855. height: math.unit(5.6, "feet"),
  7856. weight: math.unit(140, "lb"),
  7857. name: "Side",
  7858. image: {
  7859. source: "./media/characters/odyssey/side.svg",
  7860. extra: 6462/5700
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(5 + 4/12, "feet")
  7868. },
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(1, "km")
  7872. },
  7873. {
  7874. name: "Megamacro",
  7875. height: math.unit(3000, "km")
  7876. },
  7877. {
  7878. name: "Gigamacro",
  7879. height: math.unit(1, "AU"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Omniversal",
  7884. height: math.unit(100e14, "lightyears")
  7885. },
  7886. ]
  7887. )
  7888. };
  7889. characterMakers["Mekuto"] = () => {
  7890. return makeCharacter(
  7891. "Mekuto",
  7892. "Mekuto",
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(300, "lb"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/mekuto/front.svg",
  7900. extra: 921/832 ,
  7901. bottom: 0.03
  7902. }
  7903. },
  7904. hand: {
  7905. height: math.unit(6/10.24, "feet"),
  7906. name: "Hand",
  7907. image: {
  7908. source: "./media/characters/mekuto/hand.svg"
  7909. }
  7910. },
  7911. foot: {
  7912. height: math.unit(6/5.05, "feet"),
  7913. name: "Foot",
  7914. image: {
  7915. source: "./media/characters/mekuto/foot.svg"
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Minimicro",
  7922. height: math.unit(0.2, "inches")
  7923. },
  7924. {
  7925. name: "Micro",
  7926. height: math.unit(1.5, "inches")
  7927. },
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(5 + 11/12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Minimacro",
  7935. height: math.unit(17 + 9/12, "feet")
  7936. },
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(177.5, "feet")
  7940. },
  7941. {
  7942. name: "Megamacro",
  7943. height: math.unit(152, "miles")
  7944. },
  7945. ]
  7946. )
  7947. };
  7948. characterMakers["Dafydd Tomos"] = () => {
  7949. return makeCharacter(
  7950. "Dafydd Tomos",
  7951. "SolarfoxArt",
  7952. {
  7953. front: {
  7954. height: math.unit(6.5, "inches"),
  7955. weight: math.unit(13, "oz"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/dafydd-tomos/front.svg",
  7959. extra: 2990/2603 ,
  7960. bottom: 0.03
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(6.5, "inches"),
  7968. default: true
  7969. },
  7970. ]
  7971. )
  7972. };
  7973. characterMakers["Splinter"] = () => {
  7974. return makeCharacter(
  7975. "Splinter",
  7976. "SirSplinter",
  7977. {
  7978. front: {
  7979. height: math.unit(6, "feet"),
  7980. weight: math.unit(150, "lb"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/splinter/front.svg",
  7984. extra: 2990/2882 ,
  7985. bottom: 0.04
  7986. }
  7987. },
  7988. back: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(150, "lb"),
  7991. name: "Back",
  7992. image: {
  7993. source: "./media/characters/splinter/back.svg",
  7994. extra: 2990/2882 ,
  7995. bottom: 0.04
  7996. }
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(6, "feet")
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(230, "meters"),
  8007. default: true
  8008. },
  8009. ]
  8010. )
  8011. };
  8012. characterMakers["SnowGabumon"] = () => {
  8013. return makeCharacter(
  8014. "SnowGabumon",
  8015. "SnowGabumon",
  8016. {
  8017. front: {
  8018. height: math.unit(4 + 10/12, "feet"),
  8019. weight: math.unit(480, "lb"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/snow-gabumon/front.svg",
  8023. extra: 1140/963 ,
  8024. bottom: 0.058
  8025. }
  8026. },
  8027. back: {
  8028. height: math.unit(4 + 10/12, "feet"),
  8029. weight: math.unit(480, "lb"),
  8030. name: "Back",
  8031. image: {
  8032. source: "./media/characters/snow-gabumon/back.svg",
  8033. extra: 1115/962 ,
  8034. bottom: 0.041
  8035. }
  8036. },
  8037. frontUndresed: {
  8038. height: math.unit(4 + 10/12, "feet"),
  8039. weight: math.unit(480, "lb"),
  8040. name: "Front (Undressed)",
  8041. image: {
  8042. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8043. extra: 1061/960 ,
  8044. bottom: 0.045
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Micro",
  8051. height: math.unit(1, "inch")
  8052. },
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(4 + 10/12, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(200, "feet")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(120, "miles")
  8065. },
  8066. {
  8067. name: "Gigamacro",
  8068. height: math.unit(9800, "miles")
  8069. },
  8070. ]
  8071. )
  8072. };
  8073. characterMakers["Moody"] = () => {
  8074. return makeCharacter(
  8075. "Moody",
  8076. "MoodysterDog",
  8077. {
  8078. front: {
  8079. height: math.unit(1.7, "meters"),
  8080. weight: math.unit(140, "lb"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/moody/front.svg",
  8084. extra: 3226/3007 ,
  8085. bottom: 0.087
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Micro",
  8092. height: math.unit(1, "mm")
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(1.7, "meters"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(80, "meters")
  8102. },
  8103. {
  8104. name: "Macro+",
  8105. height: math.unit(500, "meters")
  8106. },
  8107. ]
  8108. )
  8109. };
  8110. characterMakers["Zyas"] = () => {
  8111. return makeCharacter(
  8112. "Zyas",
  8113. "Delathar",
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(150, "lb"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/zyas/front.svg",
  8121. extra: 1180/1120 ,
  8122. bottom: 0.045
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(10, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(500, "feet")
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(5, "miles")
  8139. },
  8140. {
  8141. name: "Teramacro",
  8142. height: math.unit(150000, "miles")
  8143. },
  8144. ]
  8145. )
  8146. };
  8147. characterMakers["Cuon"] = () => {
  8148. return makeCharacter(
  8149. "Cuon",
  8150. "CollieCuon",
  8151. {
  8152. front: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(150, "lb"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/cuon/front.svg",
  8158. extra: 1390/1320 ,
  8159. bottom: 0.008
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(3, "inches")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(18 + 9/12, "feet"),
  8171. default: true
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(360, "feet")
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(360, "miles")
  8180. },
  8181. ]
  8182. )
  8183. };
  8184. characterMakers["Nyanuxk"] = () => {
  8185. return makeCharacter(
  8186. "Nyanuxk",
  8187. "Nyanuxk",
  8188. {
  8189. front: {
  8190. height: math.unit(2.4, "meters"),
  8191. weight: math.unit(70, "kg"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/nyanuxk/front.svg",
  8195. extra: 1172/1084 ,
  8196. bottom: 0.065
  8197. }
  8198. },
  8199. side: {
  8200. height: math.unit(2.4, "meters"),
  8201. weight: math.unit(70, "kg"),
  8202. name: "Side",
  8203. image: {
  8204. source: "./media/characters/nyanuxk/side.svg",
  8205. extra: 1190/1132 ,
  8206. bottom: 0.007
  8207. }
  8208. },
  8209. back: {
  8210. height: math.unit(2.4, "meters"),
  8211. weight: math.unit(70, "kg"),
  8212. name: "Back",
  8213. image: {
  8214. source: "./media/characters/nyanuxk/back.svg",
  8215. extra: 1200/1141 ,
  8216. bottom: 0.015
  8217. }
  8218. },
  8219. foot: {
  8220. height: math.unit(0.52, "meters"),
  8221. name: "Foot",
  8222. image: {
  8223. source: "./media/characters/nyanuxk/foot.svg"
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Micro",
  8230. height: math.unit(2, "cm")
  8231. },
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(2.4, "meters"),
  8235. default: true
  8236. },
  8237. {
  8238. name: "Smaller Macro",
  8239. height: math.unit(120, "meters")
  8240. },
  8241. {
  8242. name: "Bigger Macro",
  8243. height: math.unit(1.2, "km")
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(15, "kilometers")
  8248. },
  8249. {
  8250. name: "Gigamacro",
  8251. height: math.unit(2000, "km")
  8252. },
  8253. {
  8254. name: "Teramacro",
  8255. height: math.unit(500000, "km")
  8256. },
  8257. ]
  8258. )
  8259. };
  8260. characterMakers["Ailbhe"] = () => {
  8261. return makeCharacter(
  8262. "Ailbhe",
  8263. "KlezmerGryphon",
  8264. {
  8265. side: {
  8266. height: math.unit(6, "feet"),
  8267. name: "Side",
  8268. image: {
  8269. source: "./media/characters/ailbhe/side.svg",
  8270. extra: 757/464 ,
  8271. bottom: 0.041
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(1.07, "meters"),
  8279. default: true
  8280. },
  8281. ]
  8282. )
  8283. };
  8284. characterMakers["Zevulfius"] = () => {
  8285. return makeCharacter(
  8286. "Zevulfius",
  8287. "Nyanuxk",
  8288. {
  8289. front: {
  8290. height: math.unit(6, "feet"),
  8291. weight: math.unit(120, "kg"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/zevulfius/front.svg",
  8295. extra: 965/903
  8296. }
  8297. },
  8298. side: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(120, "kg"),
  8301. name: "Side",
  8302. image: {
  8303. source: "./media/characters/zevulfius/side.svg",
  8304. extra: 939/900
  8305. }
  8306. },
  8307. back: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(120, "kg"),
  8310. name: "Back",
  8311. image: {
  8312. source: "./media/characters/zevulfius/back.svg",
  8313. extra: 918/854 ,
  8314. bottom: 0.005
  8315. }
  8316. },
  8317. foot: {
  8318. height: math.unit(6/3.72, "feet"),
  8319. name: "Foot",
  8320. image: {
  8321. source: "./media/characters/zevulfius/foot.svg"
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(750, "meters")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(20, "km"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Gigamacro",
  8337. height: math.unit(2000, "km")
  8338. },
  8339. {
  8340. name: "Teramacro",
  8341. height: math.unit(250000, "km")
  8342. },
  8343. ]
  8344. )
  8345. };
  8346. characterMakers["Rikes"] = () => {
  8347. return makeCharacter(
  8348. "Rikes",
  8349. "VeryLargeDog",
  8350. {
  8351. front: {
  8352. height: math.unit(100, "feet"),
  8353. weight: math.unit(350, "kg"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/rikes/front.svg",
  8357. extra: 1565/1483 ,
  8358. bottom: 0.017
  8359. }
  8360. },
  8361. },
  8362. [
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(100, "feet"),
  8366. default: true
  8367. },
  8368. ]
  8369. )
  8370. };
  8371. characterMakers["Adam Silver-Mane"] = () => {
  8372. return makeCharacter(
  8373. "Adam Silver-Mane",
  8374. "Dragonknightadam",
  8375. {
  8376. anthro: {
  8377. height: math.unit(8, "feet"),
  8378. weight: math.unit(120, "kg"),
  8379. name: "Anthro",
  8380. image: {
  8381. source: "./media/characters/adam-silver-mane/anthro.svg",
  8382. extra: 5743/5339 ,
  8383. bottom: 0.07
  8384. }
  8385. },
  8386. taur: {
  8387. height: math.unit(16, "feet"),
  8388. weight: math.unit(1500, "kg"),
  8389. name: "Taur",
  8390. image: {
  8391. source: "./media/characters/adam-silver-mane/taur.svg",
  8392. extra: 1713/1571 ,
  8393. bottom: 0.01
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(8, "feet")
  8401. },
  8402. {
  8403. name: "Minimacro",
  8404. height: math.unit(80, "feet")
  8405. },
  8406. {
  8407. name: "Macro",
  8408. height: math.unit(800, "feet"),
  8409. default: true
  8410. },
  8411. {
  8412. name: "Megamacro",
  8413. height: math.unit(8000, "feet")
  8414. },
  8415. {
  8416. name: "Gigamacro",
  8417. height: math.unit(800, "miles")
  8418. },
  8419. {
  8420. name: "Teramacro",
  8421. height: math.unit(80000, "miles")
  8422. },
  8423. {
  8424. name: "Celestial",
  8425. height: math.unit(8e6, "miles")
  8426. },
  8427. {
  8428. name: "Star Dragon",
  8429. height: math.unit(800000, "parsecs")
  8430. },
  8431. {
  8432. name: "Godly",
  8433. height: math.unit(800, "teraparsecs")
  8434. },
  8435. ]
  8436. )
  8437. };
  8438. characterMakers["Ky'owin"] = () => {
  8439. return makeCharacter(
  8440. "Ky'owin",
  8441. "Kyowin",
  8442. {
  8443. front: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(150, "lb"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/ky'owin/front.svg",
  8449. extra: 3888/3068 ,
  8450. bottom: 0.015
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(6 + 8/12, "feet")
  8458. },
  8459. {
  8460. name: "Large",
  8461. height: math.unit(68, "feet")
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(132, "feet")
  8466. },
  8467. {
  8468. name: "Macro+",
  8469. height: math.unit(340, "feet")
  8470. },
  8471. {
  8472. name: "Macro++",
  8473. height: math.unit(680, "feet"),
  8474. default: true
  8475. },
  8476. {
  8477. name: "Megamacro",
  8478. height: math.unit(1, "mile")
  8479. },
  8480. {
  8481. name: "Megamacro+",
  8482. height: math.unit(10, "miles")
  8483. },
  8484. ]
  8485. )
  8486. };
  8487. characterMakers["Mal"] = () => {
  8488. return makeCharacter(
  8489. "Mal",
  8490. "agrosarmadillo",
  8491. {
  8492. front: {
  8493. height: math.unit(4, "feet"),
  8494. weight: math.unit(50, "lb"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/mal/front.svg",
  8498. extra: 785/724 ,
  8499. bottom: 0.07
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(4, "inches")
  8507. },
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(4, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(200, "feet")
  8516. },
  8517. ]
  8518. )
  8519. };
  8520. characterMakers["Jordan Deware"] = () => {
  8521. return makeCharacter(
  8522. "Jordan Deware",
  8523. "JordanDeware",
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(150, "lb"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/jordan-deware/front.svg",
  8531. extra: 1191/1012
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Nano",
  8538. height: math.unit(0.01, "mm")
  8539. },
  8540. {
  8541. name: "Minimicro",
  8542. height: math.unit(1, "mm")
  8543. },
  8544. {
  8545. name: "Micro",
  8546. height: math.unit(0.5, "inches")
  8547. },
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(4, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Minimacro",
  8555. height: math.unit(40, "meters")
  8556. },
  8557. {
  8558. name: "Small Macro",
  8559. height: math.unit(400, "meters")
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(4, "miles")
  8564. },
  8565. {
  8566. name: "Megamacro",
  8567. height: math.unit(40, "miles")
  8568. },
  8569. {
  8570. name: "Megamacro+",
  8571. height: math.unit(400, "miles")
  8572. },
  8573. {
  8574. name: "Gigamacro",
  8575. height: math.unit(400000, "miles")
  8576. },
  8577. ]
  8578. )
  8579. };
  8580. characterMakers["Kimiko"] = () => {
  8581. return makeCharacter(
  8582. "Kimiko",
  8583. "HypoTheDerg",
  8584. {
  8585. side: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(150, "lb"),
  8588. name: "Side",
  8589. image: {
  8590. source: "./media/characters/kimiko/side.svg",
  8591. extra: 600/358
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(15, "feet"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(220, "feet")
  8604. },
  8605. {
  8606. name: "Macro+",
  8607. height: math.unit(1450, "feet")
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(11500, "feet")
  8612. },
  8613. {
  8614. name: "Gigamacro",
  8615. height: math.unit(9500, "miles")
  8616. },
  8617. {
  8618. name: "Teramacro",
  8619. height: math.unit(2208005005, "miles")
  8620. },
  8621. {
  8622. name: "Examacro",
  8623. height: math.unit(2750, "parsecs")
  8624. },
  8625. {
  8626. name: "Zettamacro",
  8627. height: math.unit(101500, "parsecs")
  8628. },
  8629. ]
  8630. )
  8631. };
  8632. characterMakers["Andrew Sleepy"] = () => {
  8633. return makeCharacter(
  8634. "Andrew Sleepy",
  8635. "Proky",
  8636. {
  8637. front: {
  8638. height: math.unit(6, "feet"),
  8639. weight: math.unit(70, "kg"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/andrew-sleepy/front.svg"
  8643. }
  8644. },
  8645. side: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(70, "kg"),
  8648. name: "Side",
  8649. image: {
  8650. source: "./media/characters/andrew-sleepy/side.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(1, "mm"),
  8658. default: true
  8659. },
  8660. ]
  8661. )
  8662. };
  8663. characterMakers["Judio"] = () => {
  8664. return makeCharacter(
  8665. "Judio",
  8666. "HypoTheDerg",
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(150, "lb"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/judio/front.svg",
  8674. extra: 1258/1110
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(5 + 6/12, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(1000, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(10, "miles")
  8691. },
  8692. ]
  8693. )
  8694. };
  8695. characterMakers["Nomaxice"] = () => {
  8696. return makeCharacter(
  8697. "Nomaxice",
  8698. "Nomaxice",
  8699. {
  8700. front: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(68, "kg"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/nomaxice/front.svg",
  8706. extra: 1498/1073 ,
  8707. bottom: 0.075
  8708. }
  8709. },
  8710. foot: {
  8711. height: math.unit(1.1, "feet"),
  8712. name: "Foot",
  8713. image: {
  8714. source: "./media/characters/nomaxice/foot.svg"
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(8, "cm")
  8722. },
  8723. {
  8724. name: "Norm",
  8725. height: math.unit(1.82, "m")
  8726. },
  8727. {
  8728. name: "Norm+",
  8729. height: math.unit(8.8, "feet")
  8730. },
  8731. {
  8732. name: "Big",
  8733. height: math.unit(8, "meters"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Macro",
  8738. height: math.unit(18, "meters")
  8739. },
  8740. {
  8741. name: "Macro+",
  8742. height: math.unit(88, "meters")
  8743. },
  8744. ]
  8745. )
  8746. };
  8747. characterMakers["Dydros"] = () => {
  8748. return makeCharacter(
  8749. "Dydros",
  8750. "DatCyberDragon",
  8751. {
  8752. front: {
  8753. height: math.unit(12, "feet"),
  8754. weight: math.unit(1.5, "tons"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/dydros/front.svg",
  8758. extra: 863/800 ,
  8759. bottom: 0.015
  8760. }
  8761. },
  8762. back: {
  8763. height: math.unit(12, "feet"),
  8764. weight: math.unit(1.5, "tons"),
  8765. name: "Back",
  8766. image: {
  8767. source: "./media/characters/dydros/back.svg",
  8768. extra: 900/843 ,
  8769. bottom: 0.005
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(12, "feet"),
  8777. default: true
  8778. },
  8779. ]
  8780. )
  8781. };
  8782. characterMakers["Riggi"] = () => {
  8783. return makeCharacter(
  8784. "Riggi",
  8785. "Fyre_ace",
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(100, "kg"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/riggi/front.svg",
  8793. extra: 5787/5303
  8794. }
  8795. },
  8796. hyper: {
  8797. height: math.unit(6*5/3, "feet"),
  8798. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8799. name: "Hyper",
  8800. image: {
  8801. source: "./media/characters/riggi/hyper.svg",
  8802. extra: 3595/3485
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Small Macro",
  8809. height: math.unit(50, "feet")
  8810. },
  8811. {
  8812. name: "Default",
  8813. height: math.unit(200, "feet"),
  8814. default: true
  8815. },
  8816. {
  8817. name: "Loom",
  8818. height: math.unit(10000, "feet")
  8819. },
  8820. {
  8821. name: "Cruising Altitude",
  8822. height: math.unit(30000, "feet")
  8823. },
  8824. {
  8825. name: "Megamacro",
  8826. height: math.unit(100, "miles")
  8827. },
  8828. {
  8829. name: "Continent Sized",
  8830. height: math.unit(2800, "miles")
  8831. },
  8832. {
  8833. name: "Earth Sized",
  8834. height: math.unit(8000, "miles")
  8835. },
  8836. ]
  8837. )
  8838. };
  8839. characterMakers["Alexi"] = () => {
  8840. return makeCharacter(
  8841. "Alexi",
  8842. "AlexiWerewolf",
  8843. {
  8844. front: {
  8845. height: math.unit(6, "feet"),
  8846. weight: math.unit(250, "lb"),
  8847. name: "Front",
  8848. image: {
  8849. source: "./media/characters/alexi/front.svg",
  8850. extra: 3483/3291 ,
  8851. bottom: 0.04
  8852. }
  8853. },
  8854. back: {
  8855. height: math.unit(6, "feet"),
  8856. weight: math.unit(250, "lb"),
  8857. name: "Back",
  8858. image: {
  8859. source: "./media/characters/alexi/back.svg",
  8860. extra: 3533/3356 ,
  8861. bottom: 0.021
  8862. }
  8863. },
  8864. frontTransformed: {
  8865. height: math.unit(12.5, "feet"),
  8866. weight: math.unit(4000, "lb"),
  8867. name: "Front (Transformed)",
  8868. image: {
  8869. source: "./media/characters/alexi/front-transformed.svg",
  8870. extra: 5345/5100 ,
  8871. bottom: 0.03
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(3, "meters"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Minimacro",
  8883. height: math.unit(30, "meters")
  8884. },
  8885. {
  8886. name: "Macro",
  8887. height: math.unit(500, "meters")
  8888. },
  8889. {
  8890. name: "Megamacro",
  8891. height: math.unit(9000, "km")
  8892. },
  8893. {
  8894. name: "Teramacro",
  8895. height: math.unit(384000, "km")
  8896. },
  8897. ]
  8898. )
  8899. };
  8900. characterMakers["Kayroo"] = () => {
  8901. return makeCharacter(
  8902. "Kayroo",
  8903. "Kayroo",
  8904. {
  8905. front: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(150, "lb"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/kayroo/front.svg",
  8911. extra: 1153/1038 ,
  8912. bottom: 0.06
  8913. }
  8914. },
  8915. foot: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(150, "lb"),
  8918. name: "Foot",
  8919. image: {
  8920. source: "./media/characters/kayroo/foot.svg"
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(8, "feet"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "Minimacro",
  8932. height: math.unit(250, "feet")
  8933. },
  8934. {
  8935. name: "Macro",
  8936. height: math.unit(2800, "feet")
  8937. },
  8938. {
  8939. name: "Megamacro",
  8940. height: math.unit(5200, "feet")
  8941. },
  8942. {
  8943. name: "Gigamacro",
  8944. height: math.unit(27000, "feet")
  8945. },
  8946. {
  8947. name: "Omega",
  8948. height: math.unit(45000, "feet")
  8949. },
  8950. ]
  8951. )
  8952. };
  8953. characterMakers["Rhys"] = () => {
  8954. return makeCharacter(
  8955. "Rhys",
  8956. "BigMountainCat",
  8957. {
  8958. front: {
  8959. height: math.unit(18, "feet"),
  8960. weight: math.unit(5800, "lb"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/rhys/front.svg",
  8964. extra: 3386/3090 ,
  8965. bottom: 0.07
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(18, "feet"),
  8973. default: true
  8974. },
  8975. {
  8976. name: "Working Size",
  8977. height: math.unit(200, "feet")
  8978. },
  8979. {
  8980. name: "Demolition Size",
  8981. height: math.unit(2000, "feet")
  8982. },
  8983. {
  8984. name: "Maximum Licensed Size",
  8985. height: math.unit(5, "miles")
  8986. },
  8987. {
  8988. name: "Maximum Observed Size",
  8989. height: math.unit(10, "yottameters")
  8990. },
  8991. ]
  8992. )
  8993. };
  8994. characterMakers["Toto"] = () => {
  8995. return makeCharacter(
  8996. "Toto",
  8997. "Totoly_Toto",
  8998. {
  8999. front: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(250, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/toto/front.svg",
  9005. extra: 527 / 479,
  9006. bottom: 0.05
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Micro",
  9013. height: math.unit(3, "feet")
  9014. },
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(10, "feet")
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(150, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Megamacro",
  9026. height: math.unit(1200, "feet")
  9027. },
  9028. ]
  9029. )
  9030. };
  9031. characterMakers["King"] = () => {
  9032. return makeCharacter(
  9033. "King",
  9034. "KingSizedLion",
  9035. {
  9036. back: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(150, "lb"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/king/back.svg"
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Micro",
  9048. height: math.unit(2, "inches")
  9049. },
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(8, "feet")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(200, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Megamacro",
  9061. height: math.unit(50, "miles")
  9062. },
  9063. ]
  9064. )
  9065. };
  9066. characterMakers["Cordite"] = () => {
  9067. return makeCharacter(
  9068. "Cordite",
  9069. "photonman2",
  9070. {
  9071. anthro: {
  9072. height: math.unit(6 + 5/12, "feet"),
  9073. weight: math.unit(280, "lb"),
  9074. name: "Anthro",
  9075. image: {
  9076. source: "./media/characters/cordite/anthro.svg",
  9077. extra: 1986/1905 ,
  9078. bottom: 0.025
  9079. }
  9080. },
  9081. feral: {
  9082. height: math.unit(2, "feet"),
  9083. weight: math.unit(90, "lb"),
  9084. name: "Feral",
  9085. image: {
  9086. source: "./media/characters/cordite/feral.svg",
  9087. extra: 1260/755 ,
  9088. bottom: 0.05
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Normal",
  9095. height: math.unit(6 + 5/12, "feet"),
  9096. default: true
  9097. },
  9098. ]
  9099. )
  9100. };
  9101. characterMakers["Pianostrong"] = () => {
  9102. return makeCharacter(
  9103. "Pianostrong",
  9104. "Pianostrong",
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(150, "lb"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/pianostrong/front.svg",
  9112. extra: 6577/6254 ,
  9113. bottom: 0.02
  9114. }
  9115. },
  9116. side: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(150, "lb"),
  9119. name: "Side",
  9120. image: {
  9121. source: "./media/characters/pianostrong/side.svg",
  9122. extra: 6106/5730
  9123. }
  9124. },
  9125. back: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(150, "lb"),
  9128. name: "Back",
  9129. image: {
  9130. source: "./media/characters/pianostrong/back.svg",
  9131. extra: 6085/5733 ,
  9132. bottom: 0.01
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(100, "feet")
  9140. },
  9141. {
  9142. name: "Macro+",
  9143. height: math.unit(300, "feet"),
  9144. default: true
  9145. },
  9146. {
  9147. name: "Macro++",
  9148. height: math.unit(1000, "feet")
  9149. },
  9150. ]
  9151. )
  9152. };
  9153. characterMakers["Kona"] = () => {
  9154. return makeCharacter(
  9155. "Kona",
  9156. "Konadh",
  9157. {
  9158. front: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(150, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/kona/front.svg",
  9164. extra: 2960/2629 ,
  9165. bottom: 0.005
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(11 + 8/12, "feet")
  9173. },
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(850, "feet"),
  9177. default: true
  9178. },
  9179. {
  9180. name: "Macro+",
  9181. height: math.unit(1.5, "km"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Megamacro",
  9186. height: math.unit(80, "miles")
  9187. },
  9188. {
  9189. name: "Gigamacro",
  9190. height: math.unit(3500, "miles")
  9191. },
  9192. ]
  9193. )
  9194. };
  9195. characterMakers["Levi"] = () => {
  9196. return makeCharacter(
  9197. "Levi",
  9198. "LeviCurrie",
  9199. {
  9200. side: {
  9201. height: math.unit(1.9, "meters"),
  9202. weight: math.unit(326, "kg"),
  9203. name: "Side",
  9204. image: {
  9205. source: "./media/characters/levi/side.svg",
  9206. extra: 1704/1334 ,
  9207. bottom: 0.02
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(1.9, "meters"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(20, "meters")
  9220. },
  9221. {
  9222. name: "Macro+",
  9223. height: math.unit(200, "meters")
  9224. },
  9225. {
  9226. name: "Megamacro",
  9227. height: math.unit(2, "km")
  9228. },
  9229. {
  9230. name: "Megamacro+",
  9231. height: math.unit(20, "km")
  9232. },
  9233. {
  9234. name: "Gigamacro",
  9235. height: math.unit(2500, "km")
  9236. },
  9237. {
  9238. name: "Gigamacro+",
  9239. height: math.unit(120000, "km")
  9240. },
  9241. {
  9242. name: "Teramacro",
  9243. height: math.unit(7.77e6, "km")
  9244. },
  9245. ]
  9246. )
  9247. };
  9248. characterMakers["BMC"] = () => {
  9249. return makeCharacter(
  9250. "BMC",
  9251. "BigMountainCat",
  9252. {
  9253. front: {
  9254. height: math.unit(6 + 4/12, "feet"),
  9255. weight: math.unit(188, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/bmc/front.svg",
  9259. extra: 1067/1022 ,
  9260. bottom: 0.047
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Human-sized",
  9267. height: math.unit(6 + 4/12, "feet")
  9268. },
  9269. {
  9270. name: "Small",
  9271. height: math.unit(250, "feet")
  9272. },
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(1250, "feet"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Good Day",
  9280. height: math.unit(88, "miles")
  9281. },
  9282. {
  9283. name: "Largest Measured Size",
  9284. height: math.unit(11.2e6, "lightyears")
  9285. },
  9286. ]
  9287. )
  9288. };
  9289. characterMakers["Sven the Kaiju"] = () => {
  9290. return makeCharacter(
  9291. "Sven the Kaiju",
  9292. "OfActionMan",
  9293. {
  9294. front: {
  9295. height: math.unit(20, "feet"),
  9296. weight: math.unit(2016, "kg"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/sven-the-kaiju/front.svg",
  9300. extra: 1479/1449 ,
  9301. bottom: 0.05
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Fairy",
  9308. height: math.unit(6, "inches")
  9309. },
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(20, "feet"),
  9313. default: true
  9314. },
  9315. {
  9316. name: "Rampage",
  9317. height: math.unit(200, "feet")
  9318. },
  9319. {
  9320. name: "Archfey Forest Guardian",
  9321. height: math.unit(1, "mile")
  9322. },
  9323. ]
  9324. )
  9325. };
  9326. characterMakers["Marik"] = () => {
  9327. return makeCharacter(
  9328. "Marik",
  9329. "Acrarun",
  9330. {
  9331. front: {
  9332. height: math.unit(4, "meters"),
  9333. weight: math.unit(2, "tons"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/marik/front.svg",
  9337. extra: 1057/1003 ,
  9338. bottom: 0.08
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(4, "meters"),
  9346. default: true
  9347. },
  9348. {
  9349. name: "Macro",
  9350. height: math.unit(20, "meters")
  9351. },
  9352. {
  9353. name: "Megamacro",
  9354. height: math.unit(50, "km")
  9355. },
  9356. {
  9357. name: "Gigamacro",
  9358. height: math.unit(100, "km")
  9359. },
  9360. {
  9361. name: "Alpha Macro",
  9362. height: math.unit(7.88e7, "yottameters")
  9363. },
  9364. ]
  9365. )
  9366. };
  9367. characterMakers["Mel"] = () => {
  9368. return makeCharacter(
  9369. "Mel",
  9370. "SomedayNotSoon",
  9371. {
  9372. front: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(110, "lb"),
  9375. name: "Front",
  9376. image: {
  9377. source: "./media/characters/mel/front.svg",
  9378. extra: 736/617 ,
  9379. bottom: 0.017
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Pico",
  9386. height: math.unit(3, "pm")
  9387. },
  9388. {
  9389. name: "Nano",
  9390. height: math.unit(3, "nm")
  9391. },
  9392. {
  9393. name: "Micro",
  9394. height: math.unit(0.3, "mm"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Micro+",
  9399. height: math.unit(3, "mm")
  9400. },
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(5 + 10.5/12, "feet")
  9404. },
  9405. ]
  9406. )
  9407. };
  9408. characterMakers["Lykonous"] = () => {
  9409. return makeCharacter(
  9410. "Lykonous",
  9411. "Lykonous",
  9412. {
  9413. kaiju: {
  9414. height: math.unit(1.75, "meters"),
  9415. weight: math.unit(55, "kg"),
  9416. name: "Kaiju",
  9417. image: {
  9418. source: "./media/characters/lykonous/kaiju.svg",
  9419. extra: 1055/946 ,
  9420. bottom: 0.135
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(2.5, "meters"),
  9428. default: true
  9429. },
  9430. {
  9431. name: "Kaiju Dragon",
  9432. height: math.unit(60, "meters")
  9433. },
  9434. {
  9435. name: "Mega Kaiju",
  9436. height: math.unit(120, "km")
  9437. },
  9438. {
  9439. name: "Giga Kaiju",
  9440. height: math.unit(200, "megameters")
  9441. },
  9442. {
  9443. name: "Terra Kaiju",
  9444. height: math.unit(400, "gigameters")
  9445. },
  9446. {
  9447. name: "Kaiju Dragon God",
  9448. height: math.unit(13000, "exaparsecs")
  9449. },
  9450. ]
  9451. )
  9452. };
  9453. characterMakers["Blü"] = () => {
  9454. return makeCharacter(
  9455. "Blü",
  9456. "BluTheFagon",
  9457. {
  9458. front: {
  9459. height: math.unit(6, "feet"),
  9460. weight: math.unit(150, "lb"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/blü/front.svg",
  9464. extra: 1883/1564 ,
  9465. bottom: 0.031
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(13, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Big Boi",
  9477. height: math.unit(150, "meters")
  9478. },
  9479. {
  9480. name: "Mini Stomper",
  9481. height: math.unit(300, "meters")
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(1000, "meters")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(11000, "meters")
  9490. },
  9491. {
  9492. name: "Gigamacro",
  9493. height: math.unit(11000, "km")
  9494. },
  9495. {
  9496. name: "Teramacro",
  9497. height: math.unit(420000, "km")
  9498. },
  9499. {
  9500. name: "Examacro",
  9501. height: math.unit(120, "parsecs")
  9502. },
  9503. {
  9504. name: "God Tho",
  9505. height: math.unit(98000000000, "parsecs")
  9506. },
  9507. ]
  9508. )
  9509. };
  9510. characterMakers["Scales"] = () => {
  9511. return makeCharacter(
  9512. "Scales",
  9513. "Scales",
  9514. {
  9515. taurFront: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(200, "lb"),
  9518. name: "Taur (Front)",
  9519. image: {
  9520. source: "./media/characters/scales/taur-front.svg",
  9521. extra: 1,
  9522. bottom: 0.05
  9523. }
  9524. },
  9525. taurBack: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(200, "lb"),
  9528. name: "Taur (Back)",
  9529. image: {
  9530. source: "./media/characters/scales/taur-back.svg",
  9531. extra: 1,
  9532. bottom: 0.08
  9533. }
  9534. },
  9535. anthro: {
  9536. height: math.unit(6*7/12, "feet"),
  9537. weight: math.unit(100, "lb"),
  9538. name: "Anthro",
  9539. image: {
  9540. source: "./media/characters/scales/anthro.svg",
  9541. extra: 1,
  9542. bottom: 0.06
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(12, "feet"),
  9550. default: true
  9551. },
  9552. ]
  9553. )
  9554. };
  9555. characterMakers["Koragos"] = () => {
  9556. return makeCharacter(
  9557. "Koragos",
  9558. "Koragos",
  9559. {
  9560. front: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(150, "lb"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/koragos/front.svg",
  9566. extra: 841/794 ,
  9567. bottom: 0.035
  9568. }
  9569. },
  9570. back: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(150, "lb"),
  9573. name: "Back",
  9574. image: {
  9575. source: "./media/characters/koragos/back.svg",
  9576. extra: 841/810 ,
  9577. bottom: 0.022
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Normal",
  9584. height: math.unit(6 + 11/12, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(490, "feet")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(10, "miles")
  9594. },
  9595. {
  9596. name: "Gigamacro",
  9597. height: math.unit(50, "miles")
  9598. },
  9599. ]
  9600. )
  9601. };
  9602. characterMakers["Xylrem"] = () => {
  9603. return makeCharacter(
  9604. "Xylrem",
  9605. "",
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(250, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/xylrem/front.svg",
  9613. extra: 3323/3050 ,
  9614. bottom: 0.065
  9615. }
  9616. },
  9617. },
  9618. [
  9619. {
  9620. name: "Micro",
  9621. height: math.unit(4, "feet")
  9622. },
  9623. {
  9624. name: "Normal",
  9625. height: math.unit(16, "feet"),
  9626. default: true
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(2720, "feet")
  9631. },
  9632. {
  9633. name: "Megamacro",
  9634. height: math.unit(25000, "miles")
  9635. },
  9636. ]
  9637. )
  9638. };
  9639. characterMakers["Ikideru"] = () => {
  9640. return makeCharacter(
  9641. "Ikideru",
  9642. "Ikideru",
  9643. {
  9644. front: {
  9645. height: math.unit(8, "feet"),
  9646. weight: math.unit(250, "kg"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/ikideru/front.svg",
  9650. extra: 930/870 ,
  9651. bottom: 0.087
  9652. }
  9653. },
  9654. back: {
  9655. height: math.unit(8, "feet"),
  9656. weight: math.unit(250, "kg"),
  9657. name: "Back",
  9658. image: {
  9659. source: "./media/characters/ikideru/back.svg",
  9660. extra: 919/852 ,
  9661. bottom: 0.055
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Rare",
  9668. height: math.unit(8, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Playful Loom",
  9673. height: math.unit(80, "feet")
  9674. },
  9675. {
  9676. name: "City Leaner",
  9677. height: math.unit(230, "feet")
  9678. },
  9679. {
  9680. name: "Megamacro",
  9681. height: math.unit(2500, "feet")
  9682. },
  9683. {
  9684. name: "Gigamacro",
  9685. height: math.unit(26400, "feet")
  9686. },
  9687. {
  9688. name: "Tectonic Shifter",
  9689. height: math.unit(1.7, "megameters")
  9690. },
  9691. {
  9692. name: "Planet Carer",
  9693. height: math.unit(21, "megameters")
  9694. },
  9695. {
  9696. name: "God",
  9697. height: math.unit(11157.22, "parsecs")
  9698. },
  9699. ]
  9700. )
  9701. };
  9702. characterMakers["Neo"] = () => {
  9703. return makeCharacter(
  9704. "Neo",
  9705. "neonsnake",
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(120, "lb"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/neo/front.svg"
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Micro",
  9719. height: math.unit(2, "inches"),
  9720. default: true
  9721. },
  9722. {
  9723. name: "Human Size",
  9724. height: math.unit(5 + 8/12, "feet")
  9725. },
  9726. ]
  9727. )
  9728. };
  9729. characterMakers["Chauncey (Chantz)"] = () => {
  9730. return makeCharacter(
  9731. "Chauncey (Chantz)",
  9732. "RyGaLo",
  9733. {
  9734. front: {
  9735. height: math.unit(13 + 10/12, "feet"),
  9736. weight: math.unit(5320, "lb"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/chauncey-chantz/front.svg",
  9740. extra: 1587/1435 ,
  9741. bottom: 0.02
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(13 + 10/12, "feet"),
  9749. default: true
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(45, "feet")
  9754. },
  9755. {
  9756. name: "Megamacro",
  9757. height: math.unit(250, "miles")
  9758. },
  9759. {
  9760. name: "Planetary",
  9761. height: math.unit(10000, "miles")
  9762. },
  9763. {
  9764. name: "Galactic",
  9765. height: math.unit(40000, "parsecs")
  9766. },
  9767. {
  9768. name: "Universal",
  9769. height: math.unit(1, "yottameter")
  9770. },
  9771. ]
  9772. )
  9773. };
  9774. characterMakers["Epifox"] = () => {
  9775. return makeCharacter(
  9776. "Epifox",
  9777. "Epifox",
  9778. {
  9779. front: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(150, "lb"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/epifox/front.svg",
  9785. extra: 1,
  9786. bottom: 0.075
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Micro",
  9793. height: math.unit(6, "inches")
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(12, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(3810, "feet")
  9803. },
  9804. {
  9805. name: "Megamacro",
  9806. height: math.unit(500, "miles")
  9807. },
  9808. ]
  9809. )
  9810. };
  9811. characterMakers["Colin T."] = () => {
  9812. return makeCharacter(
  9813. "Colin T.",
  9814. "DragonLugia58",
  9815. {
  9816. front: {
  9817. height: math.unit(1.8796, "m"),
  9818. weight: math.unit(230, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/colin-t/front.svg",
  9822. extra: 1272/1193 ,
  9823. bottom: 0.07
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Micro",
  9830. height: math.unit(0.571, "meters")
  9831. },
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(1.8796, "meters"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Tall",
  9839. height: math.unit(4, "meters")
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(67.241, "meters")
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(371.856, "meters")
  9848. },
  9849. {
  9850. name: "Planetary",
  9851. height: math.unit(12631.5689, "km")
  9852. },
  9853. ]
  9854. )
  9855. };
  9856. characterMakers["Matvei"] = () => {
  9857. return makeCharacter(
  9858. "Matvei",
  9859. "Matt_Da_Master",
  9860. {
  9861. front: {
  9862. height: math.unit(1.85, "meters"),
  9863. weight: math.unit(80, "kg"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/matvei/front.svg",
  9867. extra: 614/594 ,
  9868. bottom: 0.01
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(1.85, "meters"),
  9876. default: true
  9877. },
  9878. ]
  9879. )
  9880. };
  9881. characterMakers["Quincy"] = () => {
  9882. return makeCharacter(
  9883. "Quincy",
  9884. "Paradisaea",
  9885. {
  9886. front: {
  9887. height: math.unit(5 + 9/12, "feet"),
  9888. weight: math.unit(70, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/quincy/front.svg",
  9892. extra: 3041/2751
  9893. }
  9894. },
  9895. back: {
  9896. height: math.unit(5 + 9/12, "feet"),
  9897. weight: math.unit(70, "lb"),
  9898. name: "Back",
  9899. image: {
  9900. source: "./media/characters/quincy/back.svg",
  9901. extra: 3041/2751
  9902. }
  9903. },
  9904. flying: {
  9905. height: math.unit(5 + 4/12, "feet"),
  9906. weight: math.unit(70, "lb"),
  9907. name: "Flying",
  9908. image: {
  9909. source: "./media/characters/quincy/flying.svg",
  9910. extra: 1044/930
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(3, "cm")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(5 + 9/12, "feet")
  9922. },
  9923. {
  9924. name: "Macro",
  9925. height: math.unit(200, "meters"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(1000, "meters")
  9931. },
  9932. ]
  9933. )
  9934. };
  9935. characterMakers["Vanrel"] = () => {
  9936. return makeCharacter(
  9937. "Vanrel",
  9938. "KuiPaws",
  9939. {
  9940. front: {
  9941. height: math.unit(4 + 7/12, "feet"),
  9942. weight: math.unit(150, "lb"),
  9943. name: "Front",
  9944. image: {
  9945. source: "./media/characters/vanrel/front.svg",
  9946. extra: 1,
  9947. bottom: 0.02
  9948. }
  9949. },
  9950. side: {
  9951. height: math.unit(4 + 7/12, "feet"),
  9952. weight: math.unit(150, "lb"),
  9953. name: "Side",
  9954. image: {
  9955. source: "./media/characters/vanrel/side.svg",
  9956. extra: 1,
  9957. bottom: 0.025
  9958. }
  9959. },
  9960. tome: {
  9961. height: math.unit(1.35, "feet"),
  9962. weight: math.unit(10, "lb"),
  9963. name: "Vanrel's Tome",
  9964. rename: true,
  9965. image: {
  9966. source: "./media/characters/vanrel/tome.svg"
  9967. }
  9968. },
  9969. beans: {
  9970. height: math.unit(0.89, "feet"),
  9971. name: "Beans",
  9972. image: {
  9973. source: "./media/characters/vanrel/beans.svg"
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(4 + 7/12, "feet"),
  9981. default: true
  9982. },
  9983. ]
  9984. )
  9985. };
  9986. characterMakers["Kuiper Vanrel"] = () => {
  9987. return makeCharacter(
  9988. "Kuiper Vanrel",
  9989. "KuiPaws",
  9990. {
  9991. front: {
  9992. height: math.unit(7 + 5/12, "feet"),
  9993. weight: math.unit(150, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/kuiper-vanrel/front.svg",
  9997. extra: 1118/1068 ,
  9998. bottom: 0.09
  9999. }
  10000. },
  10001. foot: {
  10002. height: math.unit(0.55, "meters"),
  10003. name: "Foot",
  10004. image: {
  10005. source: "./media/characters/kuiper-vanrel/foot.svg",
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(7 + 5/12, "feet"),
  10013. default: true
  10014. },
  10015. ]
  10016. )
  10017. };
  10018. characterMakers["Keset Vanrel"] = () => {
  10019. return makeCharacter(
  10020. "Keset Vanrel",
  10021. "KuiPaws",
  10022. {
  10023. front: {
  10024. height: math.unit(8 + 5/12, "feet"),
  10025. weight: math.unit(150, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/keset-vanrel/front.svg",
  10029. extra: 1150/1084 ,
  10030. bottom: 0.05
  10031. }
  10032. },
  10033. hand: {
  10034. height: math.unit(0.6, "meters"),
  10035. name: "Hand",
  10036. image: {
  10037. source: "./media/characters/keset-vanrel/hand.svg"
  10038. }
  10039. },
  10040. foot: {
  10041. height: math.unit(0.94978, "meters"),
  10042. name: "Foot",
  10043. image: {
  10044. source: "./media/characters/keset-vanrel/foot.svg"
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(8 + 5/12, "feet"),
  10052. default: true
  10053. },
  10054. ]
  10055. )
  10056. };
  10057. characterMakers["Neos"] = () => {
  10058. return makeCharacter(
  10059. "Neos",
  10060. "CakeyCake",
  10061. {
  10062. front: {
  10063. height: math.unit(6, "feet"),
  10064. weight: math.unit(150, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/neos/front.svg",
  10068. extra: 1696/992 ,
  10069. bottom: 0.14
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(54, "cm"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Macro",
  10081. height: math.unit(100, "m")
  10082. },
  10083. {
  10084. name: "Megamacro",
  10085. height: math.unit(10, "km")
  10086. },
  10087. {
  10088. name: "Megamacro+",
  10089. height: math.unit(100, "km")
  10090. },
  10091. {
  10092. name: "Gigamacro",
  10093. height: math.unit(100, "Mm")
  10094. },
  10095. {
  10096. name: "Teramacro",
  10097. height: math.unit(100, "Gm")
  10098. },
  10099. {
  10100. name: "Examacro",
  10101. height: math.unit(100, "Em")
  10102. },
  10103. {
  10104. name: "Godly",
  10105. height: math.unit(10000, "Ym")
  10106. },
  10107. {
  10108. name: "Beyond Godly",
  10109. height: math.unit(10000000, "Ym")
  10110. },
  10111. ]
  10112. )
  10113. };
  10114. characterMakers["Sammy Mouse"] = () => {
  10115. return makeCharacter(
  10116. "Sammy Mouse",
  10117. "Piedunk",
  10118. {
  10119. feminine: {
  10120. height: math.unit(5, "feet"),
  10121. weight: math.unit(100, "lb"),
  10122. name: "Feminine",
  10123. image: {
  10124. source: "./media/characters/sammy-mouse/feminine.svg",
  10125. extra: 2526/2425 ,
  10126. bottom: 0.123
  10127. }
  10128. },
  10129. masculine: {
  10130. height: math.unit(5, "feet"),
  10131. weight: math.unit(100, "lb"),
  10132. name: "Masculine",
  10133. image: {
  10134. source: "./media/characters/sammy-mouse/masculine.svg",
  10135. extra: 2526/2425 ,
  10136. bottom: 0.123
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Micro",
  10143. height: math.unit(5, "inches")
  10144. },
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(5, "feet"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(60, "feet")
  10153. },
  10154. ]
  10155. )
  10156. };
  10157. characterMakers["Kole"] = () => {
  10158. return makeCharacter(
  10159. "Kole",
  10160. "Cats_55",
  10161. {
  10162. front: {
  10163. height: math.unit(4, "feet"),
  10164. weight: math.unit(50, "lb"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/kole/front.svg",
  10168. extra: 1423/1303 ,
  10169. bottom: 0.025
  10170. }
  10171. },
  10172. back: {
  10173. height: math.unit(4, "feet"),
  10174. weight: math.unit(50, "lb"),
  10175. name: "Back",
  10176. image: {
  10177. source: "./media/characters/kole/back.svg",
  10178. extra: 1426/1280 ,
  10179. bottom: 0.02
  10180. }
  10181. },
  10182. },
  10183. [
  10184. {
  10185. name: "Normal",
  10186. height: math.unit(4, "feet"),
  10187. default: true
  10188. },
  10189. ]
  10190. )
  10191. };
  10192. characterMakers["Rufran"] = () => {
  10193. return makeCharacter(
  10194. "Rufran",
  10195. "Rufran",
  10196. {
  10197. front: {
  10198. height: math.unit(2 + 6/12, "feet"),
  10199. weight: math.unit(20, "lb"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/rufran/front.svg",
  10203. extra: 2041/1839 ,
  10204. bottom: 0.055
  10205. }
  10206. },
  10207. back: {
  10208. height: math.unit(2 + 6/12, "feet"),
  10209. weight: math.unit(20, "lb"),
  10210. name: "Back",
  10211. image: {
  10212. source: "./media/characters/rufran/back.svg",
  10213. extra: 2054/1839 ,
  10214. bottom: 0.01
  10215. }
  10216. },
  10217. hand: {
  10218. height: math.unit(0.2166, "meters"),
  10219. name: "Hand",
  10220. image: {
  10221. source: "./media/characters/rufran/hand.svg"
  10222. }
  10223. },
  10224. foot: {
  10225. height: math.unit(0.185, "meters"),
  10226. name: "Foot",
  10227. image: {
  10228. source: "./media/characters/rufran/foot.svg"
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(1, "inch")
  10236. },
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(2 + 6/12, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Big",
  10244. height: math.unit(60, "feet")
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(325, "feet")
  10249. },
  10250. ]
  10251. )
  10252. };
  10253. characterMakers["Chip"] = () => {
  10254. return makeCharacter(
  10255. "Chip",
  10256. "Chiptuni",
  10257. {
  10258. front: {
  10259. height: math.unit(0.3, "meters"),
  10260. weight: math.unit(3.5, "kg"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/chip/front.svg",
  10264. extra: 748/674
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Micro",
  10271. height: math.unit(1, "inch"),
  10272. default: true
  10273. },
  10274. ]
  10275. )
  10276. };
  10277. characterMakers["Torvid"] = () => {
  10278. return makeCharacter(
  10279. "Torvid",
  10280. "Torvid",
  10281. {
  10282. side: {
  10283. height: math.unit(2.3, "meters"),
  10284. weight: math.unit(3500, "lb"),
  10285. name: "Side",
  10286. image: {
  10287. source: "./media/characters/torvid/side.svg",
  10288. extra: 1972/722 ,
  10289. bottom: 0.035
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(2.3, "meters"),
  10297. default: true
  10298. },
  10299. ]
  10300. )
  10301. };
  10302. characterMakers["Susan"] = () => {
  10303. return makeCharacter(
  10304. "Susan",
  10305. "Jasmith",
  10306. {
  10307. front: {
  10308. height: math.unit(2, "meters"),
  10309. weight: math.unit(150.5, "kg"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/susan/front.svg",
  10313. extra: 693/635 ,
  10314. bottom: 0.05
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(505, "miles"),
  10322. default: true
  10323. },
  10324. ]
  10325. )
  10326. };
  10327. characterMakers["Raindrops"] = () => {
  10328. return makeCharacter(
  10329. "Raindrops",
  10330. "RaindropsJFL",
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/raindrops/front.svg",
  10338. extra: 2655/2461 ,
  10339. bottom: 0.02
  10340. }
  10341. },
  10342. back: {
  10343. height: math.unit(6, "feet"),
  10344. weight: math.unit(150, "lb"),
  10345. name: "Back",
  10346. image: {
  10347. source: "./media/characters/raindrops/back.svg",
  10348. extra: 2574/2400 ,
  10349. bottom: 0.03
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Micro",
  10356. height: math.unit(6, "inches")
  10357. },
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(6 + 2/12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(131, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Megamacro",
  10369. height: math.unit(15, "miles")
  10370. },
  10371. {
  10372. name: "Gigamacro",
  10373. height: math.unit(4000, "miles")
  10374. },
  10375. {
  10376. name: "Teramacro",
  10377. height: math.unit(315000, "miles")
  10378. },
  10379. ]
  10380. )
  10381. };
  10382. characterMakers["Tezwa"] = () => {
  10383. return makeCharacter(
  10384. "Tezwa",
  10385. "TitanTezwa",
  10386. {
  10387. front: {
  10388. height: math.unit(2.794, "meters"),
  10389. weight: math.unit(325, "kg"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/tezwa/front.svg",
  10393. extra: 2083/1906 ,
  10394. bottom: 0.031
  10395. }
  10396. },
  10397. foot: {
  10398. height: math.unit(0.687, "meters"),
  10399. name: "Foot",
  10400. image: {
  10401. source: "./media/characters/tezwa/foot.svg"
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(9 + 2/12, "feet"),
  10409. default: true
  10410. },
  10411. ]
  10412. )
  10413. };
  10414. characterMakers["Typhus"] = () => {
  10415. return makeCharacter(
  10416. "Typhus",
  10417. "Jasmith",
  10418. {
  10419. front: {
  10420. height: math.unit(58, "feet"),
  10421. weight: math.unit(89000, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/typhus/front.svg",
  10425. extra: 816/800 ,
  10426. bottom: 0.065
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Macro",
  10433. height: math.unit(58, "feet"),
  10434. default: true
  10435. },
  10436. ]
  10437. )
  10438. };
  10439. characterMakers["Lyra Von Wulf"] = () => {
  10440. return makeCharacter(
  10441. "Lyra Von Wulf",
  10442. "LyraVonWulf",
  10443. {
  10444. front: {
  10445. height: math.unit(12, "feet"),
  10446. weight: math.unit(6, "tonnes"),
  10447. name: "Front",
  10448. image: {
  10449. source: "./media/characters/lyra-von-wulf/front.svg",
  10450. extra: 1,
  10451. bottom: 0.10
  10452. }
  10453. },
  10454. frontMecha: {
  10455. height: math.unit(12, "feet"),
  10456. weight: math.unit(12, "tonnes"),
  10457. name: "Front (Mecha)",
  10458. image: {
  10459. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10460. extra: 1,
  10461. bottom: 0.042
  10462. }
  10463. },
  10464. maw: {
  10465. height: math.unit(2.2, "feet"),
  10466. name: "Maw",
  10467. image: {
  10468. source: "./media/characters/lyra-von-wulf/maw.svg"
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(12, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Classic",
  10480. height: math.unit(50, "feet")
  10481. },
  10482. {
  10483. name: "Macro",
  10484. height: math.unit(500, "feet")
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(1, "mile")
  10489. },
  10490. {
  10491. name: "Gigamacro",
  10492. height: math.unit(400, "miles")
  10493. },
  10494. {
  10495. name: "Teramacro",
  10496. height: math.unit(22000, "miles")
  10497. },
  10498. {
  10499. name: "Solarmacro",
  10500. height: math.unit(8600000, "miles")
  10501. },
  10502. {
  10503. name: "Galactic",
  10504. height: math.unit(1057000, "lightyears")
  10505. },
  10506. ]
  10507. )
  10508. };
  10509. characterMakers["Dixon"] = () => {
  10510. return makeCharacter(
  10511. "Dixon",
  10512. "Seabury",
  10513. {
  10514. front: {
  10515. height: math.unit(6 + 10/12, "feet"),
  10516. weight: math.unit(150, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/dixon/front.svg",
  10520. extra: 3361/3209 ,
  10521. bottom: 0.01
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(6 + 10/12, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Big",
  10533. height: math.unit(12, "meters")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(500, "meters")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(2, "km")
  10542. },
  10543. ]
  10544. )
  10545. };
  10546. characterMakers["Kauko"] = () => {
  10547. return makeCharacter(
  10548. "Kauko",
  10549. "Kauko",
  10550. {
  10551. front: {
  10552. height: math.unit(185, "cm"),
  10553. weight: math.unit(68, "kg"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/kauko/front.svg",
  10557. extra: 1455/1421 ,
  10558. bottom: 0.03
  10559. }
  10560. },
  10561. back: {
  10562. height: math.unit(185, "cm"),
  10563. weight: math.unit(68, "kg"),
  10564. name: "Back",
  10565. image: {
  10566. source: "./media/characters/kauko/back.svg",
  10567. extra: 1455/1421 ,
  10568. bottom: 0.004
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(185, "cm"),
  10576. default: true
  10577. },
  10578. ]
  10579. )
  10580. };
  10581. characterMakers["Varg"] = () => {
  10582. return makeCharacter(
  10583. "Varg",
  10584. "va0027",
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(150, "kg"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/varg/front.svg",
  10592. extra: 1108/1018 ,
  10593. bottom: 0.0375
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Normal",
  10600. height: math.unit(5, "meters")
  10601. },
  10602. {
  10603. name: "Gigamacro",
  10604. height: math.unit(211, "km"),
  10605. default: true
  10606. },
  10607. ]
  10608. )
  10609. };
  10610. characterMakers["Dayza"] = () => {
  10611. return makeCharacter(
  10612. "Dayza",
  10613. "Vonadi",
  10614. {
  10615. front: {
  10616. height: math.unit(7 + 7/12, "feet"),
  10617. weight: math.unit(267, "lb"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/dayza/front.svg",
  10621. extra: 1262/1200 ,
  10622. bottom: 0.035
  10623. }
  10624. },
  10625. side: {
  10626. height: math.unit(7 + 7/12, "feet"),
  10627. weight: math.unit(267, "lb"),
  10628. name: "Side",
  10629. image: {
  10630. source: "./media/characters/dayza/side.svg",
  10631. extra: 1295/1245 ,
  10632. bottom: 0.05
  10633. }
  10634. },
  10635. back: {
  10636. height: math.unit(7 + 7/12, "feet"),
  10637. weight: math.unit(267, "lb"),
  10638. name: "Back",
  10639. image: {
  10640. source: "./media/characters/dayza/back.svg",
  10641. extra: 1241/1170
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Normal",
  10648. height: math.unit(7 + 7/12, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(155, "feet")
  10654. },
  10655. ]
  10656. )
  10657. };
  10658. characterMakers["Xanthos"] = () => {
  10659. return makeCharacter(
  10660. "Xanthos",
  10661. "ArgentVZ",
  10662. {
  10663. front: {
  10664. height: math.unit(6 + 5/12, "feet"),
  10665. weight: math.unit(160, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/xanthos/front.svg",
  10669. extra: 1,
  10670. bottom: 0.04
  10671. }
  10672. },
  10673. back: {
  10674. height: math.unit(6 + 5/12, "feet"),
  10675. weight: math.unit(160, "lb"),
  10676. name: "Back",
  10677. image: {
  10678. source: "./media/characters/xanthos/back.svg",
  10679. extra: 1,
  10680. bottom: 0.03
  10681. }
  10682. },
  10683. hand: {
  10684. height: math.unit(0.928, "feet"),
  10685. name: "Hand",
  10686. image: {
  10687. source: "./media/characters/xanthos/hand.svg"
  10688. }
  10689. },
  10690. foot: {
  10691. height: math.unit(1.286, "feet"),
  10692. name: "Foot",
  10693. image: {
  10694. source: "./media/characters/xanthos/foot.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(6 + 5/12, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Normal+",
  10706. height: math.unit(6, "meters")
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(40, "feet")
  10711. },
  10712. {
  10713. name: "Macro+",
  10714. height: math.unit(200, "meters")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(20, "km")
  10719. },
  10720. {
  10721. name: "Megamacro+",
  10722. height: math.unit(100, "km")
  10723. },
  10724. ]
  10725. )
  10726. };
  10727. characterMakers["Grynn"] = () => {
  10728. return makeCharacter(
  10729. "Grynn",
  10730. "Grynn",
  10731. {
  10732. front: {
  10733. height: math.unit(6 + 3/12, "feet"),
  10734. weight: math.unit(215, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/grynn/front.svg",
  10738. extra: 4627/4209 ,
  10739. bottom: 0.047
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Micro",
  10746. height: math.unit(6, "inches")
  10747. },
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(6 + 3/12, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Big",
  10755. height: math.unit(104, "feet")
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(944, "feet")
  10760. },
  10761. {
  10762. name: "Macro+",
  10763. height: math.unit(9480, "feet")
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(78752, "feet")
  10768. },
  10769. {
  10770. name: "Megamacro+",
  10771. height: math.unit(630128, "feet")
  10772. },
  10773. {
  10774. name: "Megamacro++",
  10775. height: math.unit(3150695, "feet")
  10776. },
  10777. ]
  10778. )
  10779. };
  10780. characterMakers["Mocha Aura"] = () => {
  10781. return makeCharacter(
  10782. "Mocha Aura",
  10783. "Mocha-Aura",
  10784. {
  10785. front: {
  10786. height: math.unit(7 + 5/12, "feet"),
  10787. weight: math.unit(450, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/mocha-aura/front.svg",
  10791. extra: 1907/1817 ,
  10792. bottom: 0.04
  10793. }
  10794. },
  10795. back: {
  10796. height: math.unit(7 + 5/12, "feet"),
  10797. weight: math.unit(450, "lb"),
  10798. name: "Back",
  10799. image: {
  10800. source: "./media/characters/mocha-aura/back.svg",
  10801. extra: 1900/1825 ,
  10802. bottom: 0.045
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Nano",
  10809. height: math.unit(1, "nm")
  10810. },
  10811. {
  10812. name: "Megamicro",
  10813. height: math.unit(1, "mm")
  10814. },
  10815. {
  10816. name: "Micro",
  10817. height: math.unit(3, "inches")
  10818. },
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(7 + 5/12, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(30, "feet")
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(3500, "feet")
  10831. },
  10832. {
  10833. name: "Teramacro",
  10834. height: math.unit(500000, "miles")
  10835. },
  10836. {
  10837. name: "Petamacro",
  10838. height: math.unit(50000000000000000 , "parsecs")
  10839. },
  10840. ]
  10841. )
  10842. };
  10843. characterMakers["Ilisha Devya"] = () => {
  10844. return makeCharacter(
  10845. "Ilisha Devya",
  10846. "Neopuc",
  10847. {
  10848. front: {
  10849. height: math.unit(6, "feet"),
  10850. weight: math.unit(150, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/ilisha-devya/front.svg",
  10854. extra: 1,
  10855. bottom: 0.175
  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/ilisha-devya/back.svg",
  10864. extra: 1,
  10865. bottom: 0.015
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(500, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Megamacro",
  10877. height: math.unit(10, "miles")
  10878. },
  10879. {
  10880. name: "Gigamacro",
  10881. height: math.unit(100000, "miles")
  10882. },
  10883. {
  10884. name: "Examacro",
  10885. height: math.unit(1e9, "lightyears")
  10886. },
  10887. {
  10888. name: "Omniversal",
  10889. height: math.unit(1e33, "lightyears")
  10890. },
  10891. {
  10892. name: "Beyond Infinite",
  10893. height: math.unit(1e100, "lightyears")
  10894. },
  10895. ]
  10896. )
  10897. };
  10898. characterMakers["Mira"] = () => {
  10899. return makeCharacter(
  10900. "Mira",
  10901. "Neopuc",
  10902. {
  10903. Side: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(150, "lb"),
  10906. name: "Side",
  10907. image: {
  10908. source: "./media/characters/mira/side.svg",
  10909. extra: 900/799 ,
  10910. bottom: 0.02
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Human Size",
  10917. height: math.unit(6, "feet")
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(100, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(10, "miles")
  10927. },
  10928. {
  10929. name: "Gigamacro",
  10930. height: math.unit(25000, "miles")
  10931. },
  10932. {
  10933. name: "Teramacro",
  10934. height: math.unit(300, "AU")
  10935. },
  10936. {
  10937. name: "Full Size",
  10938. height: math.unit(4.5e10, "lightyears")
  10939. },
  10940. ]
  10941. )
  10942. };
  10943. characterMakers["Holly"] = () => {
  10944. return makeCharacter(
  10945. "Holly",
  10946. "Neopuc",
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/holly/front.svg",
  10954. extra: 639/606
  10955. }
  10956. },
  10957. back: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(150, "lb"),
  10960. name: "Back",
  10961. image: {
  10962. source: "./media/characters/holly/back.svg",
  10963. extra: 623/598
  10964. }
  10965. },
  10966. frontWorking: {
  10967. height: math.unit(6, "feet"),
  10968. weight: math.unit(150, "lb"),
  10969. name: "Front (Working)",
  10970. image: {
  10971. source: "./media/characters/holly/front-working.svg",
  10972. extra: 607/577 ,
  10973. bottom: 0.048
  10974. }
  10975. },
  10976. },
  10977. [
  10978. {
  10979. name: "Normal",
  10980. height: math.unit(12 + 3/12, "feet"),
  10981. default: true
  10982. },
  10983. ]
  10984. )
  10985. };
  10986. characterMakers["Porter"] = () => {
  10987. return makeCharacter(
  10988. "Porter",
  10989. "Neopuc",
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/porter/front.svg",
  10997. extra: 1,
  10998. bottom: 0.01
  10999. }
  11000. },
  11001. frontRobes: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(150, "lb"),
  11004. name: "Front (Robes)",
  11005. image: {
  11006. source: "./media/characters/porter/front-robes.svg",
  11007. extra: 1.01 ,
  11008. bottom: 0.01
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(11 + 9/12, "feet"),
  11016. default: true
  11017. },
  11018. ]
  11019. )
  11020. };
  11021. characterMakers["Lucy"] = () => {
  11022. return makeCharacter(
  11023. "Lucy",
  11024. "Jasmith",
  11025. {
  11026. legendary: {
  11027. height: math.unit(6, "feet"),
  11028. weight: math.unit(150, "lb"),
  11029. name: "Legendary",
  11030. image: {
  11031. source: "./media/characters/lucy/legendary.svg",
  11032. extra: 1355/1100 ,
  11033. bottom: 0.045
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Legendary",
  11040. height: math.unit(86882*2, "miles"),
  11041. default: true
  11042. },
  11043. ]
  11044. )
  11045. };
  11046. characterMakers["Drusilla"] = () => {
  11047. return makeCharacter(
  11048. "Drusilla",
  11049. "Neopuc",
  11050. {
  11051. front: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(150, "lb"),
  11054. name: "Front",
  11055. image: {
  11056. source: "./media/characters/drusilla/front.svg",
  11057. extra: 678/635 ,
  11058. bottom: 0.03
  11059. }
  11060. },
  11061. back: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(150, "lb"),
  11064. name: "Back",
  11065. image: {
  11066. source: "./media/characters/drusilla/back.svg",
  11067. extra: 678/635 ,
  11068. bottom: 0.005
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Macro",
  11075. height: math.unit(100, "feet")
  11076. },
  11077. {
  11078. name: "Canon Height",
  11079. height: math.unit(2000, "feet"),
  11080. default: true
  11081. },
  11082. ]
  11083. )
  11084. };
  11085. characterMakers["Renard Thatch"] = () => {
  11086. return makeCharacter(
  11087. "Renard Thatch",
  11088. "Renard Thatch",
  11089. {
  11090. front: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(180, "lb"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/renard-thatch/front.svg",
  11096. extra: 2411/2275 ,
  11097. bottom: 0.01
  11098. }
  11099. },
  11100. frontPosing: {
  11101. height: math.unit(6, "feet"),
  11102. weight: math.unit(180, "lb"),
  11103. name: "Front (Posing)",
  11104. image: {
  11105. source: "./media/characters/renard-thatch/front-posing.svg",
  11106. extra: 2381/2261 ,
  11107. bottom: 0.01
  11108. }
  11109. },
  11110. back: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(180, "lb"),
  11113. name: "Back",
  11114. image: {
  11115. source: "./media/characters/renard-thatch/back.svg",
  11116. extra: 2428/2288
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Micro",
  11123. height: math.unit(3, "inches")
  11124. },
  11125. {
  11126. name: "Default",
  11127. height: math.unit(6, "feet"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(75, "feet")
  11133. },
  11134. ]
  11135. )
  11136. };
  11137. characterMakers["Sekvra"] = () => {
  11138. return makeCharacter(
  11139. "Sekvra",
  11140. "Neopuc",
  11141. {
  11142. front: {
  11143. height: math.unit(1450, "feet"),
  11144. weight: math.unit(1.21e6, "tons"),
  11145. name: "Front",
  11146. image: {
  11147. source: "./media/characters/sekvra/front.svg",
  11148. extra: 1,
  11149. bottom: 0.03
  11150. }
  11151. },
  11152. frontClothed: {
  11153. height: math.unit(1450, "feet"),
  11154. weight: math.unit(1.21e6, "tons"),
  11155. name: "Front (Clothed)",
  11156. image: {
  11157. source: "./media/characters/sekvra/front-clothed.svg",
  11158. extra: 1,
  11159. bottom: 0.03
  11160. }
  11161. },
  11162. side: {
  11163. height: math.unit(1450, "feet"),
  11164. weight: math.unit(1.21e6, "tons"),
  11165. name: "Side",
  11166. image: {
  11167. source: "./media/characters/sekvra/side.svg",
  11168. extra: 1,
  11169. bottom: 0.025
  11170. }
  11171. },
  11172. back: {
  11173. height: math.unit(1450, "feet"),
  11174. weight: math.unit(1.21e6, "tons"),
  11175. name: "Back",
  11176. image: {
  11177. source: "./media/characters/sekvra/back.svg",
  11178. extra: 1,
  11179. bottom: 0.005
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(1450, "feet"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Megamacro",
  11191. height: math.unit(15000, "feet")
  11192. },
  11193. ]
  11194. )
  11195. };
  11196. characterMakers["Carmine"] = () => {
  11197. return makeCharacter(
  11198. "Carmine",
  11199. "Neopuc",
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/carmine/front.svg",
  11207. extra: 1,
  11208. bottom: 0.035
  11209. }
  11210. },
  11211. frontArmor: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Front (Armor)",
  11215. image: {
  11216. source: "./media/characters/carmine/front-armor.svg",
  11217. extra: 1,
  11218. bottom: 0.035
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Large",
  11225. height: math.unit(1, "mile")
  11226. },
  11227. {
  11228. name: "Huge",
  11229. height: math.unit(40, "miles"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Colossal",
  11234. height: math.unit(2500, "miles")
  11235. },
  11236. ]
  11237. )
  11238. };
  11239. characterMakers["Elyssia"] = () => {
  11240. return makeCharacter(
  11241. "Elyssia",
  11242. "Neopuc",
  11243. {
  11244. front: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Front",
  11248. image: {
  11249. source: "./media/characters/elyssia/front.svg",
  11250. extra: 2201/2035 ,
  11251. bottom: 0.05
  11252. }
  11253. },
  11254. frontClothed: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Front (Clothed)",
  11258. image: {
  11259. source: "./media/characters/elyssia/front-clothed.svg",
  11260. extra: 2201/2035 ,
  11261. bottom: 0.05
  11262. }
  11263. },
  11264. back: {
  11265. height: math.unit(6, "feet"),
  11266. weight: math.unit(150, "lb"),
  11267. name: "Back",
  11268. image: {
  11269. source: "./media/characters/elyssia/back.svg",
  11270. extra: 2201/2035 ,
  11271. bottom: 0.013
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Smaller",
  11278. height: math.unit(150, "feet")
  11279. },
  11280. {
  11281. name: "Standard",
  11282. height: math.unit(1400, "feet"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Distracted",
  11287. height: math.unit(15000, "feet")
  11288. },
  11289. ]
  11290. )
  11291. };
  11292. characterMakers["Geno Maxwell"] = () => {
  11293. return makeCharacter(
  11294. "Geno Maxwell",
  11295. "Geckonori",
  11296. {
  11297. front: {
  11298. height: math.unit(7 + 4/12, "feet"),
  11299. weight: math.unit(500, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/geno-maxwell/front.svg",
  11303. extra: 2207/2040 ,
  11304. bottom: 0.015
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Micro",
  11311. height: math.unit(3, "inches")
  11312. },
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(7 + 4/12, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(220, "feet")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(11, "miles")
  11325. },
  11326. ]
  11327. )
  11328. };
  11329. characterMakers["Regena Maxwell"] = () => {
  11330. return makeCharacter(
  11331. "Regena Maxwell",
  11332. "Geckonori",
  11333. {
  11334. front: {
  11335. height: math.unit(7 + 4/12, "feet"),
  11336. weight: math.unit(500, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/regena-maxwell/front.svg",
  11340. extra: 3115/2770 ,
  11341. bottom: 0.02
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(7 + 4/12, "feet"),
  11349. default: true
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(220, "feet")
  11354. },
  11355. {
  11356. name: "Megamacro",
  11357. height: math.unit(11, "miles")
  11358. },
  11359. ]
  11360. )
  11361. };
  11362. characterMakers["XGlidingDragonX"] = () => {
  11363. return makeCharacter(
  11364. "XGlidingDragonX",
  11365. "XGlidingDragonX",
  11366. {
  11367. front: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(150, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11373. extra: 860/690 ,
  11374. bottom: 0.03
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(1.7, "meters"),
  11382. default: true
  11383. },
  11384. ]
  11385. )
  11386. };
  11387. characterMakers["Quilly"] = () => {
  11388. return makeCharacter(
  11389. "Quilly",
  11390. "Jasmith",
  11391. {
  11392. front: {
  11393. height: math.unit(6, "feet"),
  11394. weight: math.unit(150, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/quilly/front.svg",
  11398. extra: 890/776
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Gigamacro",
  11405. height: math.unit(404090, "miles"),
  11406. default: true
  11407. },
  11408. ]
  11409. )
  11410. };
  11411. characterMakers["Tempest"] = () => {
  11412. return makeCharacter(
  11413. "Tempest",
  11414. "XsomeoneX",
  11415. {
  11416. front: {
  11417. height: math.unit(7 + 8/12, "feet"),
  11418. weight: math.unit(350, "lb"),
  11419. name: "Front",
  11420. image: {
  11421. source: "./media/characters/tempest/front.svg",
  11422. extra: 1175/1086 ,
  11423. bottom: 0.02
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(7 + 8/12, "feet"),
  11431. default: true
  11432. },
  11433. ]
  11434. )
  11435. };
  11436. characterMakers["Rodger"] = () => {
  11437. return makeCharacter(
  11438. "Rodger",
  11439. "Guywithastupidname",
  11440. {
  11441. side: {
  11442. height: math.unit(4 + 5/12, "feet"),
  11443. weight: math.unit(80, "lb"),
  11444. name: "Side",
  11445. image: {
  11446. source: "./media/characters/rodger/side.svg",
  11447. extra: 1235/1118
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Micro",
  11454. height: math.unit(1, "inch")
  11455. },
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(4 + 5/12, "feet"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Macro",
  11463. height: math.unit(120, "feet")
  11464. },
  11465. ]
  11466. )
  11467. };
  11468. characterMakers["Danyel"] = () => {
  11469. return makeCharacter(
  11470. "Danyel",
  11471. "Danyelx",
  11472. {
  11473. front: {
  11474. height: math.unit(6, "feet"),
  11475. weight: math.unit(150, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/danyel/front.svg",
  11479. extra: 1185/1123 ,
  11480. bottom: 0.05
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Shrunken",
  11487. height: math.unit(0.5, "mm")
  11488. },
  11489. {
  11490. name: "Micro",
  11491. height: math.unit(1, "mm"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Upsized",
  11496. height: math.unit(5 + 5/12, "feet")
  11497. },
  11498. ]
  11499. )
  11500. };
  11501. characterMakers["Vivian Bijoux"] = () => {
  11502. return makeCharacter(
  11503. "Vivian Bijoux",
  11504. "Geckonori",
  11505. {
  11506. front: {
  11507. height: math.unit(5 + 6/12, "feet"),
  11508. weight: math.unit(200, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/vivian-bijoux/front.svg",
  11512. extra: 1,
  11513. bottom: 0.072
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(5 + 6/12, "feet"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Bad Dream",
  11525. height: math.unit(500, "feet")
  11526. },
  11527. {
  11528. name: "Nightmare",
  11529. height: math.unit(500, "miles")
  11530. },
  11531. ]
  11532. )
  11533. };
  11534. characterMakers["Zeta"] = () => {
  11535. return makeCharacter(
  11536. "Zeta",
  11537. "thenerdherd102",
  11538. {
  11539. front: {
  11540. height: math.unit(6 + 1/12, "feet"),
  11541. weight: math.unit(260, "lb"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/zeta/front.svg",
  11545. extra: 1968/1889 ,
  11546. bottom: 0.06
  11547. }
  11548. },
  11549. back: {
  11550. height: math.unit(6 + 1/12, "feet"),
  11551. weight: math.unit(260, "lb"),
  11552. name: "Back",
  11553. image: {
  11554. source: "./media/characters/zeta/back.svg",
  11555. extra: 1944/1858 ,
  11556. bottom: 0.03
  11557. }
  11558. },
  11559. hand: {
  11560. height: math.unit(1.112, "feet"),
  11561. name: "Hand",
  11562. image: {
  11563. source: "./media/characters/zeta/hand.svg"
  11564. }
  11565. },
  11566. foot: {
  11567. height: math.unit(1.48, "feet"),
  11568. name: "Foot",
  11569. image: {
  11570. source: "./media/characters/zeta/foot.svg"
  11571. }
  11572. },
  11573. },
  11574. [
  11575. {
  11576. name: "Micro",
  11577. height: math.unit(6, "inches")
  11578. },
  11579. {
  11580. name: "Normal",
  11581. height: math.unit(6 + 1/12, "feet"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(20, "feet")
  11587. },
  11588. ]
  11589. )
  11590. };
  11591. characterMakers["Jamie Larsen"] = () => {
  11592. return makeCharacter(
  11593. "Jamie Larsen",
  11594. "Mt_Jamie_Larsen",
  11595. {
  11596. front: {
  11597. height: math.unit(6, "feet"),
  11598. weight: math.unit(150, "lb"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/jamie-larsen/front.svg",
  11602. extra: 962/933 ,
  11603. bottom: 0.02
  11604. }
  11605. },
  11606. back: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(150, "lb"),
  11609. name: "Back",
  11610. image: {
  11611. source: "./media/characters/jamie-larsen/back.svg",
  11612. extra: 997/946
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(28 + 7/12, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Macro+",
  11624. height: math.unit(180, "feet")
  11625. },
  11626. {
  11627. name: "Megamacro",
  11628. height: math.unit(10, "miles")
  11629. },
  11630. {
  11631. name: "Gigamacro",
  11632. height: math.unit(200000, "miles")
  11633. },
  11634. ]
  11635. )
  11636. };
  11637. characterMakers["Vance"] = () => {
  11638. return makeCharacter(
  11639. "Vance",
  11640. "Neopuc",
  11641. {
  11642. front: {
  11643. height: math.unit(6, "feet"),
  11644. weight: math.unit(120, "lb"),
  11645. name: "Front",
  11646. image: {
  11647. source: "./media/characters/vance/front.svg",
  11648. extra: 1980/1890 ,
  11649. bottom: 0.09
  11650. }
  11651. },
  11652. back: {
  11653. height: math.unit(6, "feet"),
  11654. weight: math.unit(120, "lb"),
  11655. name: "Back",
  11656. image: {
  11657. source: "./media/characters/vance/back.svg",
  11658. extra: 2081/1994 ,
  11659. bottom: 0.014
  11660. }
  11661. },
  11662. hand: {
  11663. height: math.unit(0.88, "feet"),
  11664. name: "Hand",
  11665. image: {
  11666. source: "./media/characters/vance/hand.svg"
  11667. }
  11668. },
  11669. foot: {
  11670. height: math.unit(0.64, "feet"),
  11671. name: "Foot",
  11672. image: {
  11673. source: "./media/characters/vance/foot.svg"
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Small",
  11680. height: math.unit(90, "feet"),
  11681. default: true
  11682. },
  11683. {
  11684. name: "Macro",
  11685. height: math.unit(100, "meters")
  11686. },
  11687. {
  11688. name: "Megamacro",
  11689. height: math.unit(15, "miles")
  11690. },
  11691. ]
  11692. )
  11693. };
  11694. characterMakers["Xochitl"] = () => {
  11695. return makeCharacter(
  11696. "Xochitl",
  11697. "Neopuc",
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(180, "lb"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/xochitl/front.svg",
  11705. extra: 2297/2261 ,
  11706. bottom: 0.065
  11707. }
  11708. },
  11709. back: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(180, "lb"),
  11712. name: "Back",
  11713. image: {
  11714. source: "./media/characters/xochitl/back.svg",
  11715. extra: 2386/2354 ,
  11716. bottom: 0.01
  11717. }
  11718. },
  11719. foot: {
  11720. height: math.unit(6/5 * 1.15, "feet"),
  11721. weight: math.unit(150, "lb"),
  11722. name: "Foot",
  11723. image: {
  11724. source: "./media/characters/xochitl/foot.svg"
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(80, "feet")
  11732. },
  11733. {
  11734. name: "Macro+",
  11735. height: math.unit(400, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(80000, "miles")
  11741. },
  11742. {
  11743. name: "Gigamacro+",
  11744. height: math.unit(400000, "miles")
  11745. },
  11746. {
  11747. name: "Teramacro",
  11748. height: math.unit(300, "AU")
  11749. },
  11750. ]
  11751. )
  11752. };
  11753. characterMakers["Vincent"] = () => {
  11754. return makeCharacter(
  11755. "Vincent",
  11756. "Neopuc",
  11757. {
  11758. front: {
  11759. height: math.unit(6, "feet"),
  11760. weight: math.unit(150, "lb"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/vincent/front.svg",
  11764. extra: 1130/1080 ,
  11765. bottom: 0.055
  11766. }
  11767. },
  11768. beak: {
  11769. height: math.unit(6 * 0.1, "feet"),
  11770. name: "Beak",
  11771. image: {
  11772. source: "./media/characters/vincent/beak.svg"
  11773. }
  11774. },
  11775. hand: {
  11776. height: math.unit(6 * 0.85, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Hand",
  11779. image: {
  11780. source: "./media/characters/vincent/hand.svg"
  11781. }
  11782. },
  11783. foot: {
  11784. height: math.unit(6 * 0.19, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Foot",
  11787. image: {
  11788. source: "./media/characters/vincent/foot.svg"
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Base",
  11795. height: math.unit(6 + 5/12, "feet"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Macro",
  11800. height: math.unit(300, "feet")
  11801. },
  11802. {
  11803. name: "Megamacro",
  11804. height: math.unit(2, "miles")
  11805. },
  11806. {
  11807. name: "Gigamacro",
  11808. height: math.unit(1000, "miles")
  11809. },
  11810. ]
  11811. )
  11812. };
  11813. characterMakers["Jay"] = () => {
  11814. return makeCharacter(
  11815. "Jay",
  11816. "J-Forse",
  11817. {
  11818. front: {
  11819. height: math.unit(6 + 2/12, "feet"),
  11820. weight: math.unit(65, "lb"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/jay/front.svg",
  11824. extra: 1510/1430 ,
  11825. bottom: 0.042
  11826. }
  11827. },
  11828. back: {
  11829. height: math.unit(6 + 2/12, "feet"),
  11830. weight: math.unit(65, "lb"),
  11831. name: "Back",
  11832. image: {
  11833. source: "./media/characters/jay/back.svg",
  11834. extra: 1510/1430 ,
  11835. bottom: 0.025
  11836. }
  11837. },
  11838. clothed: {
  11839. height: math.unit(6 + 2/12, "feet"),
  11840. weight: math.unit(65, "lb"),
  11841. name: "Front (Clothed)",
  11842. image: {
  11843. source: "./media/characters/jay/clothed.svg",
  11844. extra: 744/699 ,
  11845. bottom: 0.043
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Micro",
  11852. height: math.unit(1, "inch")
  11853. },
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(6 + 2/12, "feet"),
  11857. default: true
  11858. },
  11859. {
  11860. name: "Macro",
  11861. height: math.unit(1, "mile")
  11862. },
  11863. {
  11864. name: "Megamacro",
  11865. height: math.unit(100, "miles")
  11866. },
  11867. ]
  11868. )
  11869. };
  11870. characterMakers["Coatl"] = () => {
  11871. return makeCharacter(
  11872. "Coatl",
  11873. "Jagaz",
  11874. {
  11875. front: {
  11876. height: math.unit(2, "meters"),
  11877. weight: math.unit(500 , "kg"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/coatl/front.svg",
  11881. extra: 3948 / 3500 ,
  11882. bottom: 0.082
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(4, "meters")
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(100, "meters"),
  11894. default: true
  11895. },
  11896. {
  11897. name: "Macro+",
  11898. height: math.unit(300, "meters")
  11899. },
  11900. {
  11901. name: "Megamacro",
  11902. height: math.unit(3, "gigameters")
  11903. },
  11904. {
  11905. name: "Megamacro+",
  11906. height: math.unit(300, "terameters")
  11907. },
  11908. {
  11909. name: "Megamacro++",
  11910. height: math.unit(3, "lightyears")
  11911. },
  11912. ]
  11913. )
  11914. };
  11915. characterMakers["Shiroryu"] = () => {
  11916. return makeCharacter(
  11917. "Shiroryu",
  11918. "Roxas00137",
  11919. {
  11920. front: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(50, "kg"),
  11923. name: "front",
  11924. image: {
  11925. source: "./media/characters/shiroryu/front.svg",
  11926. extra: 1990/1935
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Mortal Mingling",
  11933. height: math.unit(3, "meters")
  11934. },
  11935. {
  11936. name: "Kaiju-ish",
  11937. height: math.unit(250, "meters")
  11938. },
  11939. {
  11940. name: "Somewhat Godly",
  11941. height: math.unit(400, "km"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Planetary",
  11946. height: math.unit(300, "megameters")
  11947. },
  11948. {
  11949. name: "Galaxy-dwarfing",
  11950. height: math.unit(450, "kiloparsecs")
  11951. },
  11952. {
  11953. name: "Universe Eater",
  11954. height: math.unit(150, "gigaparsecs")
  11955. },
  11956. {
  11957. name: "Almost Immeasurable",
  11958. height: math.unit(1.3e266, "yottaparsecs")
  11959. },
  11960. ]
  11961. )
  11962. };
  11963. characterMakers["Umeko"] = () => {
  11964. return makeCharacter(
  11965. "Umeko",
  11966. "Neopuc",
  11967. {
  11968. front: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/umeko/front.svg",
  11974. extra: 1,
  11975. bottom: 0.019
  11976. }
  11977. },
  11978. frontArmored: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front (Armored)",
  11982. image: {
  11983. source: "./media/characters/umeko/front-armored.svg",
  11984. extra: 1,
  11985. bottom: 0.021
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(220, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Guardian Dragon",
  11997. height: math.unit(50, "miles")
  11998. },
  11999. {
  12000. name: "Cosmic",
  12001. height: math.unit(800000, "miles")
  12002. },
  12003. ]
  12004. )
  12005. };
  12006. characterMakers["Cassidy"] = () => {
  12007. return makeCharacter(
  12008. "Cassidy",
  12009. "Neopuc",
  12010. {
  12011. front: {
  12012. height: math.unit(6, "feet"),
  12013. weight: math.unit(150, "lb"),
  12014. name: "Front",
  12015. image: {
  12016. source: "./media/characters/cassidy/front.svg",
  12017. extra: 1,
  12018. bottom: 0.043
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Canon Height",
  12025. height: math.unit(120, "feet"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Macro+",
  12030. height: math.unit(400, "feet")
  12031. },
  12032. {
  12033. name: "Macro++",
  12034. height: math.unit(4000, "feet")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(3, "miles")
  12039. },
  12040. ]
  12041. )
  12042. };
  12043. characterMakers["Isaac"] = () => {
  12044. return makeCharacter(
  12045. "Isaac",
  12046. "Neopuc",
  12047. {
  12048. front: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(150, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/isaac/front.svg",
  12054. extra: 896/815 ,
  12055. bottom: 0.11
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Human Size",
  12062. height: math.unit(8, "feet"),
  12063. default: true
  12064. },
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(400, "feet")
  12068. },
  12069. {
  12070. name: "Megamacro",
  12071. height: math.unit(50, "miles")
  12072. },
  12073. {
  12074. name: "Canon Height",
  12075. height: math.unit(200, "AU")
  12076. },
  12077. ]
  12078. )
  12079. };
  12080. characterMakers["Sleekit"] = () => {
  12081. return makeCharacter(
  12082. "Sleekit",
  12083. "AnAnonymousIndividual",
  12084. {
  12085. front: {
  12086. height: math.unit(6, "feet"),
  12087. weight: math.unit(72, "kg"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/sleekit/front.svg",
  12091. extra: 4693/4487 ,
  12092. bottom: 0.012
  12093. }
  12094. },
  12095. },
  12096. [
  12097. {
  12098. name: "Minimum Height",
  12099. height: math.unit(10, "meters")
  12100. },
  12101. {
  12102. name: "Smaller",
  12103. height: math.unit(25, "meters")
  12104. },
  12105. {
  12106. name: "Larger",
  12107. height: math.unit(38, "meters"),
  12108. default: true
  12109. },
  12110. {
  12111. name: "Maximum height",
  12112. height: math.unit(100, "meters")
  12113. },
  12114. ]
  12115. )
  12116. };
  12117. characterMakers["Nillia"] = () => {
  12118. return makeCharacter(
  12119. "Nillia",
  12120. "Neopuc",
  12121. {
  12122. front: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "lb"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/nillia/front.svg",
  12128. extra: 2195/2037 ,
  12129. bottom: 0.005
  12130. }
  12131. },
  12132. back: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(150, "lb"),
  12135. name: "Back",
  12136. image: {
  12137. source: "./media/characters/nillia/back.svg",
  12138. extra: 2195/2037 ,
  12139. bottom: 0.005
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Canon Height",
  12146. height: math.unit(489, "feet"),
  12147. default: true
  12148. }
  12149. ]
  12150. )
  12151. };
  12152. characterMakers["Mesmyriza"] = () => {
  12153. return makeCharacter(
  12154. "Mesmyriza",
  12155. "-fluffy-",
  12156. {
  12157. front: {
  12158. height: math.unit(6, "feet"),
  12159. weight: math.unit(150, "lb"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/mesmyriza/front.svg",
  12163. extra: 2067/1784 ,
  12164. bottom: 0.035
  12165. }
  12166. },
  12167. foot: {
  12168. height: math.unit(6/(250/35), "feet"),
  12169. name: "Foot",
  12170. image: {
  12171. source: "./media/characters/mesmyriza/foot.svg"
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(457, "meters"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Megamacro",
  12183. height: math.unit(8, "megameters")
  12184. },
  12185. ]
  12186. )
  12187. };
  12188. characterMakers["Saudade"] = () => {
  12189. return makeCharacter(
  12190. "Saudade",
  12191. "lordbo",
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(250, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/saudade/front.svg",
  12199. extra: 1172/1139 ,
  12200. bottom: 0.035
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(3, "inches")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(6, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(50, "feet")
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(2800, "feet")
  12221. },
  12222. ]
  12223. )
  12224. };
  12225. characterMakers["Keireer"] = () => {
  12226. return makeCharacter(
  12227. "Keireer",
  12228. "teedash",
  12229. {
  12230. front: {
  12231. height: math.unit(5 + 4/12, "feet"),
  12232. weight: math.unit(100, "lb"),
  12233. name: "Front",
  12234. image: {
  12235. source: "./media/characters/keireer/front.svg",
  12236. extra: 716/666 ,
  12237. bottom: 0.05
  12238. }
  12239. },
  12240. },
  12241. [
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(5 + 4/12, "feet"),
  12245. default: true
  12246. },
  12247. ]
  12248. )
  12249. };
  12250. characterMakers["Mirja"] = () => {
  12251. return makeCharacter(
  12252. "Mirja",
  12253. "vabad",
  12254. {
  12255. front: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(90, "kg"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/mirja/front.svg",
  12261. extra: 1789/1683 ,
  12262. bottom: 0.05
  12263. }
  12264. },
  12265. frontDressed: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(90, "lb"),
  12268. name: "Front (Dressed)",
  12269. image: {
  12270. source: "./media/characters/mirja/front-dressed.svg",
  12271. extra: 1789/1683 ,
  12272. bottom: 0.05
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(90, "lb"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/mirja/back.svg",
  12281. extra: 953/917 ,
  12282. bottom: 0.017
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "\"Incognito\"",
  12289. height: math.unit(3, "meters")
  12290. },
  12291. {
  12292. name: "Strolling Size",
  12293. height: math.unit(15, "km")
  12294. },
  12295. {
  12296. name: "Larger Strolling Size",
  12297. height: math.unit(400, "km")
  12298. },
  12299. {
  12300. name: "Preferred Size",
  12301. height: math.unit(5000, "km")
  12302. },
  12303. {
  12304. name: "True Size",
  12305. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12306. default: true
  12307. },
  12308. ]
  12309. )
  12310. };
  12311. characterMakers["Nightraver"] = () => {
  12312. return makeCharacter(
  12313. "Nightraver",
  12314. "Nightraver",
  12315. {
  12316. front: {
  12317. height: math.unit(15, "feet"),
  12318. weight: math.unit(880, "kg"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/nightraver/front.svg",
  12322. extra: 2444/2160 ,
  12323. bottom: 0.027
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(15, "feet"),
  12328. weight: math.unit(880, "kg"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/nightraver/back.svg",
  12332. extra: 2309/2180 ,
  12333. bottom: 0.005
  12334. }
  12335. },
  12336. sole: {
  12337. height: math.unit(2.878, "feet"),
  12338. name: "Sole",
  12339. image: {
  12340. source: "./media/characters/nightraver/sole.svg"
  12341. }
  12342. },
  12343. foot: {
  12344. height: math.unit(2.285, "feet"),
  12345. name: "Foot",
  12346. image: {
  12347. source: "./media/characters/nightraver/foot.svg"
  12348. }
  12349. },
  12350. maw: {
  12351. height: math.unit(2.67, "feet"),
  12352. name: "Maw",
  12353. image: {
  12354. source: "./media/characters/nightraver/maw.svg"
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Micro",
  12361. height: math.unit(1, "cm")
  12362. },
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(15, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(300, "feet")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(300, "miles")
  12375. },
  12376. {
  12377. name: "Gigamacro",
  12378. height: math.unit(10000, "miles")
  12379. },
  12380. ]
  12381. )
  12382. };
  12383. characterMakers["Arc"] = () => {
  12384. return makeCharacter(
  12385. "Arc",
  12386. "DinoKiddo",
  12387. {
  12388. side: {
  12389. height: math.unit(2, "inches"),
  12390. weight: math.unit(5, "grams"),
  12391. name: "Side",
  12392. image: {
  12393. source: "./media/characters/arc/side.svg"
  12394. }
  12395. },
  12396. },
  12397. [
  12398. {
  12399. name: "Micro",
  12400. height: math.unit(2, "inches"),
  12401. default: true
  12402. },
  12403. ]
  12404. )
  12405. };
  12406. characterMakers["Nebula Shahar"] = () => {
  12407. return makeCharacter(
  12408. "Nebula Shahar",
  12409. "Kypleo",
  12410. {
  12411. front: {
  12412. height: math.unit(1.1938, "meters"),
  12413. weight: math.unit(54, "kg"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/nebula-shahar/front.svg",
  12417. extra: 1642/1436 ,
  12418. bottom: 0.06
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Megamicro",
  12425. height: math.unit(0.3, "mm")
  12426. },
  12427. {
  12428. name: "Micro",
  12429. height: math.unit(3, "cm")
  12430. },
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(138, "cm"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Macro",
  12438. height: math.unit(30, "m")
  12439. },
  12440. ]
  12441. )
  12442. };
  12443. characterMakers["Shayla"] = () => {
  12444. return makeCharacter(
  12445. "Shayla",
  12446. "Ziralkia",
  12447. {
  12448. front: {
  12449. height: math.unit(5.24, "feet"),
  12450. weight: math.unit(150, "lb"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/shayla/front.svg",
  12454. extra: 1512/1414 ,
  12455. bottom: 0.01
  12456. }
  12457. },
  12458. back: {
  12459. height: math.unit(5.24, "feet"),
  12460. weight: math.unit(150, "lb"),
  12461. name: "Back",
  12462. image: {
  12463. source: "./media/characters/shayla/back.svg",
  12464. extra: 1512/1414
  12465. }
  12466. },
  12467. hand: {
  12468. height: math.unit(0.7781496062992126, "feet"),
  12469. name: "Hand",
  12470. image: {
  12471. source: "./media/characters/shayla/hand.svg"
  12472. }
  12473. },
  12474. foot: {
  12475. height: math.unit(1.4206036745406823, "feet"),
  12476. name: "Foot",
  12477. image: {
  12478. source: "./media/characters/shayla/foot.svg"
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Micro",
  12485. height: math.unit(0.32, "feet")
  12486. },
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(5.24, "feet"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Macro",
  12494. height: math.unit(492.12, "feet")
  12495. },
  12496. {
  12497. name: "Megamacro",
  12498. height: math.unit(186.41, "miles")
  12499. },
  12500. ]
  12501. )
  12502. };
  12503. characterMakers["Pia Jr."] = () => {
  12504. return makeCharacter(
  12505. "Pia Jr.",
  12506. "Ziralkia",
  12507. {
  12508. front: {
  12509. height: math.unit(2.2, "m"),
  12510. weight: math.unit(120, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/pia-jr/front.svg",
  12514. extra: 1000/970 ,
  12515. bottom: 0.035
  12516. }
  12517. },
  12518. hand: {
  12519. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12520. name: "Hand",
  12521. image: {
  12522. source: "./media/characters/pia-jr/hand.svg"
  12523. }
  12524. },
  12525. paw: {
  12526. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12527. name: "Paw",
  12528. image: {
  12529. source: "./media/characters/pia-jr/paw.svg"
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Micro",
  12536. height: math.unit(1.2, "cm")
  12537. },
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(2.2, "m"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(180, "m")
  12546. },
  12547. {
  12548. name: "Megamacro",
  12549. height: math.unit(420, "km")
  12550. },
  12551. ]
  12552. )
  12553. };
  12554. characterMakers["Pia Sr."] = () => {
  12555. return makeCharacter(
  12556. "Pia Sr.",
  12557. "Ziralkia",
  12558. {
  12559. front: {
  12560. height: math.unit(2, "m"),
  12561. weight: math.unit(115, "kg"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/pia-sr/front.svg",
  12565. extra: 760/730 ,
  12566. bottom: 0.015
  12567. }
  12568. },
  12569. back: {
  12570. height: math.unit(2, "m"),
  12571. weight: math.unit(115, "kg"),
  12572. name: "Back",
  12573. image: {
  12574. source: "./media/characters/pia-sr/back.svg",
  12575. extra: 760/730 ,
  12576. bottom: 0.01
  12577. }
  12578. },
  12579. hand: {
  12580. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12581. name: "Hand",
  12582. image: {
  12583. source: "./media/characters/pia-sr/hand.svg"
  12584. }
  12585. },
  12586. foot: {
  12587. height: math.unit(1.83, "feet"),
  12588. name: "Foot",
  12589. image: {
  12590. source: "./media/characters/pia-sr/foot.svg"
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Micro",
  12597. height: math.unit(88, "mm")
  12598. },
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(2, "m"),
  12602. default: true
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(200, "m")
  12607. },
  12608. {
  12609. name: "Megamacro",
  12610. height: math.unit(420, "km")
  12611. },
  12612. ]
  12613. )
  12614. };
  12615. characterMakers["KIBIBYTE"] = () => {
  12616. return makeCharacter(
  12617. "KIBIBYTE",
  12618. "gamefreak1215",
  12619. {
  12620. front: {
  12621. height: math.unit(8 + 2/12, "feet"),
  12622. weight: math.unit(300, "lb"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/kibibyte/front.svg",
  12626. extra: 2221/2098 ,
  12627. bottom: 0.04
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(8 + 2/12, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Socialable Macro",
  12639. height: math.unit(50, "feet")
  12640. },
  12641. {
  12642. name: "Macro",
  12643. height: math.unit(300, "feet")
  12644. },
  12645. {
  12646. name: "Megamacro",
  12647. height: math.unit(500, "miles")
  12648. },
  12649. ]
  12650. )
  12651. };
  12652. characterMakers["Felix"] = () => {
  12653. return makeCharacter(
  12654. "Felix",
  12655. "MeanDumpsterCat",
  12656. {
  12657. front: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/felix/front.svg",
  12663. extra: 762/722 ,
  12664. bottom: 0.02
  12665. }
  12666. },
  12667. frontClothed: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Front (Clothed)",
  12671. image: {
  12672. source: "./media/characters/felix/front-clothed.svg",
  12673. extra: 762/722 ,
  12674. bottom: 0.02
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(6 + 8/12, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Macro",
  12686. height: math.unit(2600, "feet")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(450, "miles")
  12691. },
  12692. ]
  12693. )
  12694. };
  12695. characterMakers["Tobo"] = () => {
  12696. return makeCharacter(
  12697. "Tobo",
  12698. "Naoya_Raichi",
  12699. {
  12700. front: {
  12701. height: math.unit(6 + 1/12, "feet"),
  12702. weight: math.unit(250, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/tobo/front.svg",
  12706. extra: 608/586 ,
  12707. bottom: 0.023
  12708. }
  12709. },
  12710. back: {
  12711. height: math.unit(6 + 1/12, "feet"),
  12712. weight: math.unit(250, "lb"),
  12713. name: "Back",
  12714. image: {
  12715. source: "./media/characters/tobo/back.svg",
  12716. extra: 608/586
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Nano",
  12723. height: math.unit(2, "nm")
  12724. },
  12725. {
  12726. name: "Megamicro",
  12727. height: math.unit(0.1, "mm")
  12728. },
  12729. {
  12730. name: "Micro",
  12731. height: math.unit(1, "inch"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Human-sized",
  12736. height: math.unit(6 + 1/12, "feet")
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(250, "feet")
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(75, "miles")
  12745. },
  12746. {
  12747. name: "Texas-sized",
  12748. height: math.unit(750, "miles")
  12749. },
  12750. {
  12751. name: "Teramacro",
  12752. height: math.unit(50000, "miles")
  12753. },
  12754. ]
  12755. )
  12756. };
  12757. characterMakers["Danny Kapowsky"] = () => {
  12758. return makeCharacter(
  12759. "Danny Kapowsky",
  12760. "nh63879",
  12761. {
  12762. front: {
  12763. height: math.unit(6, "feet"),
  12764. weight: math.unit(269, "lb"),
  12765. name: "Front",
  12766. image: {
  12767. source: "./media/characters/danny-kapowsky/front.svg",
  12768. extra: 766/736 ,
  12769. bottom: 0.044
  12770. }
  12771. },
  12772. back: {
  12773. height: math.unit(6, "feet"),
  12774. weight: math.unit(269, "lb"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/danny-kapowsky/back.svg",
  12778. extra: 797/760 ,
  12779. bottom: 0.025
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Macro",
  12786. height: math.unit(150, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro+",
  12791. height: math.unit(200, "feet")
  12792. },
  12793. {
  12794. name: "Macro++",
  12795. height: math.unit(300, "feet")
  12796. },
  12797. {
  12798. name: "Macro+++",
  12799. height: math.unit(400, "feet")
  12800. },
  12801. ]
  12802. )
  12803. };
  12804. characterMakers["Finn"] = () => {
  12805. return makeCharacter(
  12806. "Finn",
  12807. "Finn-The-Fennecfox",
  12808. {
  12809. side: {
  12810. height: math.unit(6, "feet"),
  12811. weight: math.unit(170, "lb"),
  12812. name: "Side",
  12813. image: {
  12814. source: "./media/characters/finn/side.svg",
  12815. extra: 1953/1807 ,
  12816. bottom: 0.057
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Megamacro",
  12823. height: math.unit(14445, "feet"),
  12824. default: true
  12825. },
  12826. ]
  12827. )
  12828. };
  12829. characterMakers["Roy"] = () => {
  12830. return makeCharacter(
  12831. "Roy",
  12832. "dracodare",
  12833. {
  12834. front: {
  12835. height: math.unit(5 + 6/12, "feet"),
  12836. weight: math.unit(125, "lb"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/roy/front.svg",
  12840. extra: 1,
  12841. bottom: 0.11
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Micro",
  12848. height: math.unit(3, "inches"),
  12849. default: true
  12850. },
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(5 + 6/12, "feet")
  12854. },
  12855. {
  12856. name: "Lesser Macro",
  12857. height: math.unit(60, "feet")
  12858. },
  12859. {
  12860. name: "Greater Macro",
  12861. height: math.unit(120, "feet")
  12862. },
  12863. ]
  12864. )
  12865. };
  12866. characterMakers["Aevsivs"] = () => {
  12867. return makeCharacter(
  12868. "Aevsivs",
  12869. "Aevsivs",
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(100, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/aevsivs/front.svg",
  12877. extra: 1,
  12878. bottom: 0.03
  12879. }
  12880. },
  12881. back: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(100, "lb"),
  12884. name: "Back",
  12885. image: {
  12886. source: "./media/characters/aevsivs/back.svg"
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Micro",
  12893. height: math.unit(2, "inches"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(5, "feet")
  12899. },
  12900. ]
  12901. )
  12902. };
  12903. characterMakers["Hildegard"] = () => {
  12904. return makeCharacter(
  12905. "Hildegard",
  12906. "Fidchell",
  12907. {
  12908. front: {
  12909. height: math.unit(5 + 7/12, "feet"),
  12910. weight: math.unit(159, "lb"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/hildegard/front.svg",
  12914. extra: 312/286 ,
  12915. bottom: 0.005
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(5 + 7/12, "feet"),
  12923. default: true
  12924. },
  12925. ]
  12926. )
  12927. };
  12928. characterMakers["Bernard & Wilder"] = () => {
  12929. return makeCharacter(
  12930. "Bernard & Wilder",
  12931. "Fidchell",
  12932. {
  12933. bernard: {
  12934. height: math.unit(2 + 7/12, "feet"),
  12935. weight: math.unit(66, "lb"),
  12936. name: "Bernard",
  12937. rename: true,
  12938. image: {
  12939. source: "./media/characters/bernard-wilder/bernard.svg",
  12940. extra: 192/128 ,
  12941. bottom: 0.05
  12942. }
  12943. },
  12944. wilder: {
  12945. height: math.unit(5 + 8/12, "feet"),
  12946. weight: math.unit(143, "lb"),
  12947. name: "Wilder",
  12948. rename: true,
  12949. image: {
  12950. source: "./media/characters/bernard-wilder/wilder.svg",
  12951. extra: 361/312 ,
  12952. bottom: 0.02
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(2 + 7/12, "feet"),
  12960. default: true
  12961. },
  12962. ]
  12963. )
  12964. };
  12965. characterMakers["Hearth"] = () => {
  12966. return makeCharacter(
  12967. "Hearth",
  12968. "Fidchell",
  12969. {
  12970. anthro: {
  12971. height: math.unit(6 + 1/12, "feet"),
  12972. weight: math.unit(155, "lb"),
  12973. name: "Anthro",
  12974. image: {
  12975. source: "./media/characters/hearth/anthro.svg",
  12976. extra: 260/250 ,
  12977. bottom: 0.02
  12978. }
  12979. },
  12980. feral: {
  12981. height: math.unit(3.78, "feet"),
  12982. weight: math.unit(35, "kg"),
  12983. name: "Feral",
  12984. image: {
  12985. source: "./media/characters/hearth/feral.svg",
  12986. extra: 153/135 ,
  12987. bottom: 0.03
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(6 + 1/12, "feet"),
  12995. default: true
  12996. },
  12997. ]
  12998. )
  12999. };
  13000. characterMakers["Ingrid"] = () => {
  13001. return makeCharacter(
  13002. "Ingrid",
  13003. "Fidchell",
  13004. {
  13005. front: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(182, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/ingrid/front.svg",
  13011. extra: 294/268 ,
  13012. bottom: 0.027
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(6, "feet"),
  13020. default: true
  13021. },
  13022. ]
  13023. )
  13024. };
  13025. characterMakers["Malgam"] = () => {
  13026. return makeCharacter(
  13027. "Malgam",
  13028. "Fidchell",
  13029. {
  13030. eevee: {
  13031. height: math.unit(2 + 10/12, "feet"),
  13032. weight: math.unit(86, "lb"),
  13033. name: "Malgam",
  13034. image: {
  13035. source: "./media/characters/malgam/eevee.svg",
  13036. extra: 218/180 ,
  13037. bottom: 0.2
  13038. }
  13039. },
  13040. sylveon: {
  13041. height: math.unit(4, "feet"),
  13042. weight: math.unit(101, "lb"),
  13043. name: "Future Malgam",
  13044. rename: true,
  13045. image: {
  13046. source: "./media/characters/malgam/sylveon.svg",
  13047. extra: 371/325 ,
  13048. bottom: 0.015
  13049. }
  13050. },
  13051. gigantamax: {
  13052. height: math.unit(50, "feet"),
  13053. name: "Gigantamax Malgam",
  13054. rename: true,
  13055. image: {
  13056. source: "./media/characters/malgam/gigantamax.svg"
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Normal",
  13063. height: math.unit(2 + 10/12, "feet"),
  13064. default: true
  13065. },
  13066. ]
  13067. )
  13068. };
  13069. characterMakers["Fleur"] = () => {
  13070. return makeCharacter(
  13071. "Fleur",
  13072. "Fidchell",
  13073. {
  13074. front: {
  13075. height: math.unit(5 + 11/12, "feet"),
  13076. weight: math.unit(188, "lb"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/fleur/front.svg",
  13080. extra: 309/283 ,
  13081. bottom: 0.007
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(5 + 11/12, "feet"),
  13089. default: true
  13090. },
  13091. ]
  13092. )
  13093. };
  13094. characterMakers["Jude"] = () => {
  13095. return makeCharacter(
  13096. "Jude",
  13097. "Fidchell",
  13098. {
  13099. front: {
  13100. height: math.unit(5 + 4/12, "feet"),
  13101. weight: math.unit(122, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/jude/front.svg",
  13105. extra: 288/273 ,
  13106. bottom: 0.03
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(5 + 4/12, "feet"),
  13114. default: true
  13115. },
  13116. ]
  13117. )
  13118. };
  13119. characterMakers["Seara"] = () => {
  13120. return makeCharacter(
  13121. "Seara",
  13122. "Fidchell",
  13123. {
  13124. front: {
  13125. height: math.unit(5 + 11/12, "feet"),
  13126. weight: math.unit(190, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/seara/front.svg",
  13130. extra: 1,
  13131. bottom: 0.05
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(5 + 11/12, "feet"),
  13139. default: true
  13140. },
  13141. ]
  13142. )
  13143. };
  13144. characterMakers["Caspian"] = () => {
  13145. return makeCharacter(
  13146. "Caspian",
  13147. "Fidchell",
  13148. {
  13149. front: {
  13150. height: math.unit(16 + 5/12, "feet"),
  13151. weight: math.unit(524, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/caspian/front.svg",
  13155. extra: 1,
  13156. bottom: 0.04
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(16 + 5/12, "feet"),
  13164. default: true
  13165. },
  13166. ]
  13167. )
  13168. };
  13169. characterMakers["Mika"] = () => {
  13170. return makeCharacter(
  13171. "Mika",
  13172. "Fidchell",
  13173. {
  13174. front: {
  13175. height: math.unit(5 + 7/12, "feet"),
  13176. weight: math.unit(170, "lb"),
  13177. name: "Front",
  13178. image: {
  13179. source: "./media/characters/mika/front.svg",
  13180. extra: 1,
  13181. bottom: 0.016
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Normal",
  13188. height: math.unit(5 + 7/12, "feet"),
  13189. default: true
  13190. },
  13191. ]
  13192. )
  13193. };
  13194. characterMakers["Sol"] = () => {
  13195. return makeCharacter(
  13196. "Sol",
  13197. "Fidchell",
  13198. {
  13199. front: {
  13200. height: math.unit(6 + 2/12, "feet"),
  13201. weight: math.unit(268, "lb"),
  13202. name: "Front",
  13203. image: {
  13204. source: "./media/characters/sol/front.svg",
  13205. extra: 247/231 ,
  13206. bottom: 0.05
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Normal",
  13213. height: math.unit(6 + 2/12, "feet"),
  13214. default: true
  13215. },
  13216. ]
  13217. )
  13218. };
  13219. characterMakers["Umiko"] = () => {
  13220. return makeCharacter(
  13221. "Umiko",
  13222. "Fidchell",
  13223. {
  13224. buizel: {
  13225. height: math.unit(2 + 5/12, "feet"),
  13226. weight: math.unit(87, "lb"),
  13227. name: "Buizel",
  13228. image: {
  13229. source: "./media/characters/umiko/buizel.svg",
  13230. extra: 172/157 ,
  13231. bottom: 0.01
  13232. }
  13233. },
  13234. floatzel: {
  13235. height: math.unit(5 + 9/12, "feet"),
  13236. weight: math.unit(250, "lb"),
  13237. name: "Floatzel",
  13238. image: {
  13239. source: "./media/characters/umiko/floatzel.svg",
  13240. extra: 262/248
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Normal",
  13247. height: math.unit(2 + 5/12, "feet"),
  13248. default: true
  13249. },
  13250. ]
  13251. )
  13252. };
  13253. characterMakers["Iliac"] = () => {
  13254. return makeCharacter(
  13255. "Iliac",
  13256. "Fidchell",
  13257. {
  13258. front: {
  13259. height: math.unit(6 + 2/12, "feet"),
  13260. weight: math.unit(146, "lb"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/iliac/front.svg",
  13264. extra: 389/365 ,
  13265. bottom: 0.035
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(6 + 2/12, "feet"),
  13273. default: true
  13274. },
  13275. ]
  13276. )
  13277. };
  13278. characterMakers["Topaz"] = () => {
  13279. return makeCharacter(
  13280. "Topaz",
  13281. "Fidchell",
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(170, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/topaz/front.svg",
  13289. extra: 317/303 ,
  13290. bottom: 0.055
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(6, "feet"),
  13298. default: true
  13299. },
  13300. ]
  13301. )
  13302. };
  13303. characterMakers["Gabriel"] = () => {
  13304. return makeCharacter(
  13305. "Gabriel",
  13306. "Fidchell",
  13307. {
  13308. front: {
  13309. height: math.unit(5 + 11/12, "feet"),
  13310. weight: math.unit(144, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/gabriel/front.svg",
  13314. extra: 285/262 ,
  13315. bottom: 0.004
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(5 + 11/12, "feet"),
  13323. default: true
  13324. },
  13325. ]
  13326. )
  13327. };
  13328. characterMakers["Tempest (Suicune)"] = () => {
  13329. return makeCharacter(
  13330. "Tempest (Suicune)",
  13331. "Fidchell",
  13332. {
  13333. side: {
  13334. height: math.unit(6 + 5/12, "feet"),
  13335. weight: math.unit(300, "lb"),
  13336. name: "Side",
  13337. image: {
  13338. source: "./media/characters/tempest-suicune/side.svg",
  13339. extra: 195/154 ,
  13340. bottom: 0.04
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(6 + 5/12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. )
  13352. };
  13353. characterMakers["Vulcan"] = () => {
  13354. return makeCharacter(
  13355. "Vulcan",
  13356. "Fidchell",
  13357. {
  13358. front: {
  13359. height: math.unit(7 + 2/12, "feet"),
  13360. weight: math.unit(322, "lb"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/vulcan/front.svg",
  13364. extra: 154/147 ,
  13365. bottom: 0.04
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(7 + 2/12, "feet"),
  13373. default: true
  13374. },
  13375. ]
  13376. )
  13377. };
  13378. characterMakers["Gault"] = () => {
  13379. return makeCharacter(
  13380. "Gault",
  13381. "Fidchell",
  13382. {
  13383. front: {
  13384. height: math.unit(5 + 10/12, "feet"),
  13385. weight: math.unit(264, "lb"),
  13386. name: "Front",
  13387. image: {
  13388. source: "./media/characters/gault/front.svg",
  13389. extra: 161/140 ,
  13390. bottom: 0.028
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(5 + 10/12, "feet"),
  13398. default: true
  13399. },
  13400. ]
  13401. )
  13402. };
  13403. characterMakers["Shard"] = () => {
  13404. return makeCharacter(
  13405. "Shard",
  13406. "Fidchell",
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/shard/front.svg",
  13414. extra: 273/238 ,
  13415. bottom: 0.02
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(3 + 6/12, "feet"),
  13423. default: true
  13424. },
  13425. ]
  13426. )
  13427. };
  13428. characterMakers["Ashe"] = () => {
  13429. return makeCharacter(
  13430. "Ashe",
  13431. "Fidchell",
  13432. {
  13433. front: {
  13434. height: math.unit(5 + 11/12, "feet"),
  13435. weight: math.unit(146, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/ashe/front.svg",
  13439. extra: 400/373 ,
  13440. bottom: 0.01
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(5 + 11/12, "feet"),
  13448. default: true
  13449. },
  13450. ]
  13451. )
  13452. };
  13453. characterMakers["Beatrix"] = () => {
  13454. return makeCharacter(
  13455. "Beatrix",
  13456. "Fidchell",
  13457. {
  13458. front: {
  13459. height: math.unit(5 + 5/12, "feet"),
  13460. weight: math.unit(135, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/beatrix/front.svg",
  13464. extra: 392/379 ,
  13465. bottom: 0.01
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(6, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. )
  13477. };
  13478. characterMakers["Ignatius"] = () => {
  13479. return makeCharacter(
  13480. "Ignatius",
  13481. "Fidchell",
  13482. {
  13483. front: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(150, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/ignatius/front.svg",
  13489. extra: 245/222 ,
  13490. bottom: 0.01
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Normal",
  13497. height: math.unit(5 + 5/12, "feet"),
  13498. default: true
  13499. },
  13500. ]
  13501. )
  13502. };
  13503. characterMakers["Mei Li"] = () => {
  13504. return makeCharacter(
  13505. "Mei Li",
  13506. "Fidchell",
  13507. {
  13508. front: {
  13509. height: math.unit(6 + 2/12, "feet"),
  13510. weight: math.unit(138, "lb"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/mei-li/front.svg",
  13514. extra: 237/229 ,
  13515. bottom: 0.03
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(6 + 2/12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. )
  13527. };
  13528. characterMakers["Puru"] = () => {
  13529. return makeCharacter(
  13530. "Puru",
  13531. "Fidchell",
  13532. {
  13533. front: {
  13534. height: math.unit(2 + 4/12, "feet"),
  13535. weight: math.unit(62, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/puru/front.svg",
  13539. extra: 206/149 ,
  13540. bottom: 0.06
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(2 + 4/12, "feet"),
  13548. default: true
  13549. },
  13550. ]
  13551. )
  13552. };
  13553. characterMakers["Kee"] = () => {
  13554. return makeCharacter(
  13555. "Kee",
  13556. "AardwolfKee",
  13557. {
  13558. taur: {
  13559. height: math.unit(11, "feet"),
  13560. weight: math.unit(500, "lb"),
  13561. name: "Taur",
  13562. image: {
  13563. source: "./media/characters/kee/taur.svg",
  13564. extra: 1,
  13565. bottom: 0.04
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(11, "feet"),
  13573. default: true
  13574. },
  13575. ]
  13576. )
  13577. };
  13578. characterMakers["Cobalt (Dracha)"] = () => {
  13579. return makeCharacter(
  13580. "Cobalt (Dracha)",
  13581. "Fidchell",
  13582. {
  13583. anthro: {
  13584. height: math.unit(7, "feet"),
  13585. weight: math.unit(190, "lb"),
  13586. name: "Anthro",
  13587. image: {
  13588. source: "./media/characters/cobalt-dracha/anthro.svg",
  13589. extra: 231/225 ,
  13590. bottom: 0.04
  13591. }
  13592. },
  13593. feral: {
  13594. height: math.unit(9 + 7/12, "feet"),
  13595. weight: math.unit(294, "lb"),
  13596. name: "Feral",
  13597. image: {
  13598. source: "./media/characters/cobalt-dracha/feral.svg",
  13599. extra: 692/633 ,
  13600. bottom: 0.05
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(7, "feet"),
  13608. default: true
  13609. },
  13610. ]
  13611. )
  13612. };
  13613. characterMakers["Java"] = () => {
  13614. return makeCharacter(
  13615. "Java",
  13616. "Fidchell",
  13617. {
  13618. fallen: {
  13619. height: math.unit(11 + 8/12, "feet"),
  13620. weight: math.unit(485, "lb"),
  13621. name: "Java (Fallen)",
  13622. rename: true,
  13623. image: {
  13624. source: "./media/characters/java/fallen.svg",
  13625. extra: 226/208 ,
  13626. bottom: 0.005
  13627. }
  13628. },
  13629. godkin: {
  13630. height: math.unit(10 + 6/12, "feet"),
  13631. weight: math.unit(328, "lb"),
  13632. name: "Java (Godkin)",
  13633. rename: true,
  13634. image: {
  13635. source: "./media/characters/java/godkin.svg",
  13636. extra: 270/262 ,
  13637. bottom: 0.02
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(11 + 8/12, "feet"),
  13645. default: true
  13646. },
  13647. ]
  13648. )
  13649. };
  13650. characterMakers["Skoll"] = () => {
  13651. return makeCharacter(
  13652. "Skoll",
  13653. "Fidchell",
  13654. {
  13655. front: {
  13656. height: math.unit(7 + 8/12, "feet"),
  13657. weight: math.unit(320, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/skoll/front.svg",
  13661. extra: 232/220 ,
  13662. bottom: 0.02
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(7 + 8/12, "feet"),
  13670. default: true
  13671. },
  13672. ]
  13673. )
  13674. };
  13675. characterMakers["Purna"] = () => {
  13676. return makeCharacter(
  13677. "Purna",
  13678. "Fidchell",
  13679. {
  13680. front: {
  13681. height: math.unit(5 + 9/12, "feet"),
  13682. weight: math.unit(170, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/purna/front.svg",
  13686. extra: 239/229 ,
  13687. bottom: 0.01
  13688. }
  13689. },
  13690. },
  13691. [
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(5 + 9/12, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. )
  13699. };
  13700. characterMakers["Kuva"] = () => {
  13701. return makeCharacter(
  13702. "Kuva",
  13703. "Fidchell",
  13704. {
  13705. front: {
  13706. height: math.unit(5 + 9/12, "feet"),
  13707. weight: math.unit(142, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/kuva/front.svg",
  13711. extra: 281/271 ,
  13712. bottom: 0.006
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(5 + 9/12, "feet"),
  13720. default: true
  13721. },
  13722. ]
  13723. )
  13724. };
  13725. characterMakers["Embra"] = () => {
  13726. return makeCharacter(
  13727. "Embra",
  13728. "Fidchell",
  13729. {
  13730. anthro: {
  13731. height: math.unit(9 + 2/12, "feet"),
  13732. weight: math.unit(270, "lb"),
  13733. name: "Anthro",
  13734. image: {
  13735. source: "./media/characters/embra/anthro.svg",
  13736. extra: 200/187 ,
  13737. bottom: 0.02
  13738. }
  13739. },
  13740. feral: {
  13741. height: math.unit(18 + 8/12, "feet"),
  13742. weight: math.unit(576, "lb"),
  13743. name: "Feral",
  13744. image: {
  13745. source: "./media/characters/embra/feral.svg",
  13746. extra: 152/137 ,
  13747. bottom: 0.037
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(9 + 2/12, "feet"),
  13755. default: true
  13756. },
  13757. ]
  13758. )
  13759. };
  13760. characterMakers["Grottos"] = () => {
  13761. return makeCharacter(
  13762. "Grottos",
  13763. "Fidchell",
  13764. {
  13765. anthro: {
  13766. height: math.unit(10 + 9/12, "feet"),
  13767. weight: math.unit(224, "lb"),
  13768. name: "Anthro",
  13769. image: {
  13770. source: "./media/characters/grottos/anthro.svg",
  13771. extra: 350/332 ,
  13772. bottom: 0.045
  13773. }
  13774. },
  13775. feral: {
  13776. height: math.unit(20 + 7/12, "feet"),
  13777. weight: math.unit(629, "lb"),
  13778. name: "Feral",
  13779. image: {
  13780. source: "./media/characters/grottos/feral.svg",
  13781. extra: 207/190 ,
  13782. bottom: 0.05
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(10 + 9/12, "feet"),
  13790. default: true
  13791. },
  13792. ]
  13793. )
  13794. };
  13795. characterMakers["Frifna"] = () => {
  13796. return makeCharacter(
  13797. "Frifna",
  13798. "Fidchell",
  13799. {
  13800. anthro: {
  13801. height: math.unit(9 + 6/12, "feet"),
  13802. weight: math.unit(298, "lb"),
  13803. name: "Anthro",
  13804. image: {
  13805. source: "./media/characters/frifna/anthro.svg",
  13806. extra: 282/269 ,
  13807. bottom: 0.015
  13808. }
  13809. },
  13810. feral: {
  13811. height: math.unit(16 + 2/12, "feet"),
  13812. weight: math.unit(624, "lb"),
  13813. name: "Feral",
  13814. image: {
  13815. source: "./media/characters/frifna/feral.svg"
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(9 + 6/12, "feet"),
  13823. default: true
  13824. },
  13825. ]
  13826. )
  13827. };
  13828. characterMakers["Elise"] = () => {
  13829. return makeCharacter(
  13830. "Elise",
  13831. "Fidchell",
  13832. {
  13833. front: {
  13834. height: math.unit(6 + 2/12, "feet"),
  13835. weight: math.unit(168, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/elise/front.svg",
  13839. extra: 276/271
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6 + 2/12, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. )
  13851. };
  13852. characterMakers["Glade"] = () => {
  13853. return makeCharacter(
  13854. "Glade",
  13855. "Fidchell",
  13856. {
  13857. front: {
  13858. height: math.unit(5 + 10/12, "feet"),
  13859. weight: math.unit(210, "lb"),
  13860. name: "Front",
  13861. image: {
  13862. source: "./media/characters/glade/front.svg",
  13863. extra: 258/247 ,
  13864. bottom: 0.008
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Normal",
  13871. height: math.unit(5 + 10/12, "feet"),
  13872. default: true
  13873. },
  13874. ]
  13875. )
  13876. };
  13877. characterMakers["Rina"] = () => {
  13878. return makeCharacter(
  13879. "Rina",
  13880. "Fidchell",
  13881. {
  13882. front: {
  13883. height: math.unit(5 + 10/12, "feet"),
  13884. weight: math.unit(129, "lb"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/rina/front.svg",
  13888. extra: 266/255 ,
  13889. bottom: 0.005
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(5 + 10/12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. )
  13901. };
  13902. characterMakers["Veronica"] = () => {
  13903. return makeCharacter(
  13904. "Veronica",
  13905. "Fidchell",
  13906. {
  13907. front: {
  13908. height: math.unit(6 + 1/12, "feet"),
  13909. weight: math.unit(192, "lb"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/veronica/front.svg",
  13913. extra: 319/309 ,
  13914. bottom: 0.005
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(6 + 1/12, "feet"),
  13922. default: true
  13923. },
  13924. ]
  13925. )
  13926. };
  13927. characterMakers["Braxton"] = () => {
  13928. return makeCharacter(
  13929. "Braxton",
  13930. "jdolbear",
  13931. {
  13932. front: {
  13933. height: math.unit(9 + 3/12, "feet"),
  13934. weight: math.unit(1100, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/braxton/front.svg",
  13938. extra: 1057/984 ,
  13939. bottom: 0.05
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(9 + 3/12, "feet")
  13947. },
  13948. {
  13949. name: "Giant",
  13950. height: math.unit(300, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(700, "feet")
  13956. },
  13957. {
  13958. name: "Megamacro",
  13959. height: math.unit(6000, "feet")
  13960. },
  13961. ]
  13962. )
  13963. };
  13964. characterMakers["Blue Feyonics"] = () => {
  13965. return makeCharacter(
  13966. "Blue Feyonics",
  13967. "bluefiremarkii",
  13968. {
  13969. front: {
  13970. height: math.unit(6 + 7/12, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/blue-feyonics/front.svg",
  13975. extra: 1403/1306 ,
  13976. bottom: 0.047
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(6 + 7/12, "feet"),
  13984. default: true
  13985. },
  13986. ]
  13987. )
  13988. };
  13989. characterMakers["Maxwell"] = () => {
  13990. return makeCharacter(
  13991. "Maxwell",
  13992. "Ruby_02",
  13993. {
  13994. front: {
  13995. height: math.unit(1.8, "meters"),
  13996. weight: math.unit(60, "kg"),
  13997. name: "Front",
  13998. image: {
  13999. source: "./media/characters/maxwell/front.svg",
  14000. extra: 2060/1873
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Micro",
  14007. height: math.unit(1, "mm")
  14008. },
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(1.8, "meter"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(30, "meters")
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(10, "km")
  14021. },
  14022. ]
  14023. )
  14024. };
  14025. characterMakers["Jack"] = () => {
  14026. return makeCharacter(
  14027. "Jack",
  14028. "Jasmith",
  14029. {
  14030. front: {
  14031. height: math.unit(6, "feet"),
  14032. weight: math.unit(150, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/jack/front.svg",
  14036. extra: 1754/1640,
  14037. bottom: 0.01
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(80000, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Max size",
  14049. height: math.unit(10, "lightyears")
  14050. },
  14051. ]
  14052. )
  14053. };
  14054. characterMakers["Cafat"] = () => {
  14055. return makeCharacter(
  14056. "Cafat",
  14057. "Dalken",
  14058. {
  14059. upright: {
  14060. height: math.unit(7, "feet"),
  14061. weight: math.unit(170, "lb"),
  14062. name: "Upright",
  14063. image: {
  14064. source: "./media/characters/cafat/upright.svg",
  14065. bottom: 0.01
  14066. }
  14067. },
  14068. uprightFull: {
  14069. height: math.unit(7, "feet"),
  14070. weight: math.unit(170, "lb"),
  14071. name: "Upright (Full)",
  14072. image: {
  14073. source: "./media/characters/cafat/upright-full.svg",
  14074. bottom: 0.01
  14075. }
  14076. },
  14077. side: {
  14078. height: math.unit(5, "feet"),
  14079. weight: math.unit(150, "lb"),
  14080. name: "Side",
  14081. image: {
  14082. source: "./media/characters/cafat/side.svg"
  14083. }
  14084. },
  14085. },
  14086. [
  14087. {
  14088. name: "Small",
  14089. height: math.unit(7, "feet"),
  14090. default: true
  14091. },
  14092. {
  14093. name: "Large",
  14094. height: math.unit(15.5, "feet")
  14095. },
  14096. ]
  14097. )
  14098. };
  14099. characterMakers["Verin Raharra"] = () => {
  14100. return makeCharacter(
  14101. "Verin Raharra",
  14102. "Virgo113",
  14103. {
  14104. front: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(150, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/verin-raharra/front.svg",
  14110. extra: 5019/4835,
  14111. bottom: 0.023
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Normal",
  14118. height: math.unit(7 + 5/12, "feet"),
  14119. default: true
  14120. },
  14121. {
  14122. name: "Upsized",
  14123. height: math.unit(20, "feet")
  14124. },
  14125. ]
  14126. )
  14127. };
  14128. characterMakers["Nakata"] = () => {
  14129. return makeCharacter(
  14130. "Nakata",
  14131. "Dalken",
  14132. {
  14133. front: {
  14134. height: math.unit(7, "feet"),
  14135. weight: math.unit(230, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/nakata/front.svg",
  14139. extra: 1.005,
  14140. bottom: 0.01
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(7, "feet"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Big",
  14152. height: math.unit(14, "feet")
  14153. },
  14154. {
  14155. name: "Macro",
  14156. height: math.unit(400, "feet")
  14157. },
  14158. ]
  14159. )
  14160. };
  14161. characterMakers["Lily"] = () => {
  14162. return makeCharacter(
  14163. "Lily",
  14164. "nexcg",
  14165. {
  14166. front: {
  14167. height: math.unit(4.91, "feet"),
  14168. weight: math.unit(100, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/lily/front.svg",
  14172. extra: 1585/1415,
  14173. bottom: 0.02
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(4.91, "feet"),
  14181. default: true
  14182. },
  14183. ]
  14184. )
  14185. };
  14186. characterMakers["Sheila"] = () => {
  14187. return makeCharacter(
  14188. "Sheila",
  14189. "Miststalker",
  14190. {
  14191. laying: {
  14192. height: math.unit(4 + 4/12, "feet"),
  14193. weight: math.unit(600, "lb"),
  14194. name: "Laying",
  14195. image: {
  14196. source: "./media/characters/sheila/laying.svg",
  14197. extra: 1333/1265,
  14198. bottom: 0.16
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Normal",
  14205. height: math.unit(4 + 4/12, "feet"),
  14206. default: true
  14207. },
  14208. ]
  14209. )
  14210. };
  14211. characterMakers["Sax"] = () => {
  14212. return makeCharacter(
  14213. "Sax",
  14214. "Counts-His-Toes",
  14215. {
  14216. front: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(190, "lb"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/sax/front.svg",
  14222. extra: 1187/973,
  14223. bottom: 0.042
  14224. }
  14225. },
  14226. },
  14227. [
  14228. {
  14229. name: "Micro",
  14230. height: math.unit(4, "inches"),
  14231. default: true
  14232. },
  14233. ]
  14234. )
  14235. };
  14236. characterMakers["Pandora"] = () => {
  14237. return makeCharacter(
  14238. "Pandora",
  14239. "Pandora's Fox",
  14240. {
  14241. front: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(150, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/pandora/front.svg",
  14247. extra: 2720/2556,
  14248. bottom: 0.015
  14249. }
  14250. },
  14251. back: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(150, "lb"),
  14254. name: "Back",
  14255. image: {
  14256. source: "./media/characters/pandora/back.svg",
  14257. extra: 2720/2556,
  14258. bottom: 0.01
  14259. }
  14260. },
  14261. beans: {
  14262. height: math.unit(6/8, "feet"),
  14263. name: "Beans",
  14264. image: {
  14265. source: "./media/characters/pandora/beans.svg"
  14266. }
  14267. },
  14268. skirt: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(150, "lb"),
  14271. name: "Skirt",
  14272. image: {
  14273. source: "./media/characters/pandora/skirt.svg",
  14274. extra: 1622/1525,
  14275. bottom: 0.015
  14276. }
  14277. },
  14278. hoodie: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(150, "lb"),
  14281. name: "Hoodie",
  14282. image: {
  14283. source: "./media/characters/pandora/hoodie.svg",
  14284. extra: 1622/1525,
  14285. bottom: 0.015
  14286. }
  14287. },
  14288. casual: {
  14289. height: math.unit(6, "feet"),
  14290. weight: math.unit(150, "lb"),
  14291. name: "Casual",
  14292. image: {
  14293. source: "./media/characters/pandora/casual.svg",
  14294. extra: 1622/1525,
  14295. bottom: 0.015
  14296. }
  14297. },
  14298. },
  14299. [
  14300. {
  14301. name: "Normal",
  14302. height: math.unit(6, "feet")
  14303. },
  14304. {
  14305. name: "Big Steppy",
  14306. height: math.unit(1, "km"),
  14307. default: true
  14308. },
  14309. ]
  14310. )
  14311. };
  14312. characterMakers["Venio Darcony"] = () => {
  14313. return makeCharacter(
  14314. "Venio Darcony",
  14315. "redblackdragon",
  14316. {
  14317. side: {
  14318. height: math.unit(10, "feet"),
  14319. weight: math.unit(800, "kg"),
  14320. name: "Side",
  14321. image: {
  14322. source: "./media/characters/venio-darcony/side.svg",
  14323. extra: 1373/1003,
  14324. bottom: 0.037
  14325. }
  14326. },
  14327. front: {
  14328. height: math.unit(19, "feet"),
  14329. weight: math.unit(800, "kg"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/venio-darcony/front.svg"
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(19, "feet"),
  14337. weight: math.unit(800, "kg"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/venio-darcony/back.svg"
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(10, "feet")
  14348. },
  14349. {
  14350. name: "Macro",
  14351. height: math.unit(130, "feet"),
  14352. default: true
  14353. },
  14354. {
  14355. name: "Macro+",
  14356. height: math.unit(240, "feet")
  14357. },
  14358. ]
  14359. )
  14360. };
  14361. characterMakers["Veski"] = () => {
  14362. return makeCharacter(
  14363. "Veski",
  14364. "Veski",
  14365. {
  14366. front: {
  14367. height: math.unit(6, "feet"),
  14368. weight: math.unit(150, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/veski/front.svg",
  14372. extra: 1299/1225,
  14373. bottom: 0.04
  14374. }
  14375. },
  14376. back: {
  14377. height: math.unit(6, "feet"),
  14378. weight: math.unit(150, "lb"),
  14379. name: "Back",
  14380. image: {
  14381. source: "./media/characters/veski/back.svg",
  14382. extra: 1299/1225,
  14383. bottom: 0.008
  14384. }
  14385. },
  14386. maw: {
  14387. height: math.unit(1.5 * 1.21, "feet"),
  14388. name: "Maw",
  14389. image: {
  14390. source: "./media/characters/veski/maw.svg"
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Macro",
  14397. height: math.unit(2, "km"),
  14398. default: true
  14399. },
  14400. ]
  14401. )
  14402. };
  14403. characterMakers["Isabelle"] = () => {
  14404. return makeCharacter(
  14405. "Isabelle",
  14406. "evilwithin",
  14407. {
  14408. front: {
  14409. height: math.unit(5 + 7/12, "feet"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/isabelle/front.svg",
  14413. extra: 2130/1976,
  14414. bottom: 0.05
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Supermicro",
  14421. height: math.unit(10, "micrometers")
  14422. },
  14423. {
  14424. name: "Micro",
  14425. height: math.unit(1, "inch")
  14426. },
  14427. {
  14428. name: "Tiny",
  14429. height: math.unit(5, "inches")
  14430. },
  14431. {
  14432. name: "Standard",
  14433. height: math.unit(5 + 7/12, "inches")
  14434. },
  14435. {
  14436. name: "Macro",
  14437. height: math.unit(80, "meters"),
  14438. default: true
  14439. },
  14440. {
  14441. name: "Megamacro",
  14442. height: math.unit(250, "meters")
  14443. },
  14444. {
  14445. name: "Gigamacro",
  14446. height: math.unit(5, "km")
  14447. },
  14448. {
  14449. name: "Cosmic",
  14450. height: math.unit(2.5e6, "miles")
  14451. },
  14452. ]
  14453. )
  14454. };
  14455. characterMakers["Hanzo"] = () => {
  14456. return makeCharacter(
  14457. "Hanzo",
  14458. "dragondruid",
  14459. {
  14460. front: {
  14461. height: math.unit(6, "feet"),
  14462. weight: math.unit(150, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/hanzo/front.svg",
  14466. extra: 374/344,
  14467. bottom: 0.02
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(8, "feet"),
  14475. default: true
  14476. },
  14477. ]
  14478. )
  14479. };
  14480. characterMakers["Anna"] = () => {
  14481. return makeCharacter(
  14482. "Anna",
  14483. "dragondruid",
  14484. {
  14485. front: {
  14486. height: math.unit(7, "feet"),
  14487. weight: math.unit(130, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/anna/front.svg",
  14491. extra: 169/145,
  14492. bottom: 0.06
  14493. }
  14494. },
  14495. full: {
  14496. height: math.unit(4.96, "feet"),
  14497. weight: math.unit(220, "lb"),
  14498. name: "Full",
  14499. image: {
  14500. source: "./media/characters/anna/full.svg",
  14501. extra: 138/114,
  14502. bottom: 0.15
  14503. }
  14504. },
  14505. tongue: {
  14506. height: math.unit(2.53, "feet"),
  14507. name: "Tongue",
  14508. image: {
  14509. source: "./media/characters/anna/tongue.svg"
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(7, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. )
  14521. };
  14522. characterMakers["Ian Corvid"] = () => {
  14523. return makeCharacter(
  14524. "Ian Corvid",
  14525. "IanCorvid",
  14526. {
  14527. front: {
  14528. height: math.unit(7, "feet"),
  14529. weight: math.unit(150, "lb"),
  14530. name: "Front",
  14531. image: {
  14532. source: "./media/characters/ian-corvid/front.svg",
  14533. extra: 150/142,
  14534. bottom: 0.02
  14535. }
  14536. },
  14537. back: {
  14538. height: math.unit(7, "feet"),
  14539. weight: math.unit(150, "lb"),
  14540. name: "Back",
  14541. image: {
  14542. source: "./media/characters/ian-corvid/back.svg",
  14543. extra: 150/143,
  14544. bottom: 0.01
  14545. }
  14546. },
  14547. stomping: {
  14548. height: math.unit(7, "feet"),
  14549. weight: math.unit(150, "lb"),
  14550. name: "Stomping",
  14551. image: {
  14552. source: "./media/characters/ian-corvid/stomping.svg",
  14553. extra: 76/72
  14554. }
  14555. },
  14556. sitting: {
  14557. height: math.unit(7/1.8, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Sitting",
  14560. image: {
  14561. source: "./media/characters/ian-corvid/sitting.svg",
  14562. extra: 1400/1269,
  14563. bottom: 0.15
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Tiny Microw",
  14570. height: math.unit(1, "inch")
  14571. },
  14572. {
  14573. name: "Microw",
  14574. height: math.unit(6, "inches")
  14575. },
  14576. {
  14577. name: "Crow",
  14578. height: math.unit(7 + 1/12, "feet"),
  14579. default: true
  14580. },
  14581. {
  14582. name: "Macrow",
  14583. height: math.unit(176, "feet")
  14584. },
  14585. ]
  14586. )
  14587. };
  14588. characterMakers["Natalie Kellon"] = () => {
  14589. return makeCharacter(
  14590. "Natalie Kellon",
  14591. "lestrange110",
  14592. {
  14593. front: {
  14594. height: math.unit(5 + 7/12, "feet"),
  14595. weight: math.unit(147, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/natalie-kellon/front.svg",
  14599. extra: 1214/1141,
  14600. bottom: 0.02
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Micro",
  14607. height: math.unit(1/16, "inch")
  14608. },
  14609. {
  14610. name: "Tiny",
  14611. height: math.unit(4, "inches")
  14612. },
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(5 + 7/12, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Amazon",
  14620. height: math.unit(12, "feet")
  14621. },
  14622. {
  14623. name: "Giantess",
  14624. height: math.unit(160, "meters")
  14625. },
  14626. {
  14627. name: "Titaness",
  14628. height: math.unit(800, "meters")
  14629. },
  14630. ]
  14631. )
  14632. };
  14633. characterMakers["Alluria"] = () => {
  14634. return makeCharacter(
  14635. "Alluria",
  14636. "Sir--Raptor",
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(150, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/alluria/front.svg",
  14644. extra: 806/738,
  14645. bottom: 0.01
  14646. }
  14647. },
  14648. side: {
  14649. height: math.unit(6, "feet"),
  14650. weight: math.unit(150, "lb"),
  14651. name: "Side",
  14652. image: {
  14653. source: "./media/characters/alluria/side.svg",
  14654. extra: 800/750,
  14655. }
  14656. },
  14657. back: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(150, "lb"),
  14660. name: "Back",
  14661. image: {
  14662. source: "./media/characters/alluria/back.svg",
  14663. extra: 806/738,
  14664. }
  14665. },
  14666. frontMaid: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Front (Maid)",
  14670. image: {
  14671. source: "./media/characters/alluria/front-maid.svg",
  14672. extra: 806/738,
  14673. bottom: 0.01
  14674. }
  14675. },
  14676. sideMaid: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Side (Maid)",
  14680. image: {
  14681. source: "./media/characters/alluria/side-maid.svg",
  14682. extra: 800/750,
  14683. bottom: 0.005
  14684. }
  14685. },
  14686. backMaid: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Back (Maid)",
  14690. image: {
  14691. source: "./media/characters/alluria/back-maid.svg",
  14692. extra: 806/738,
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Micro",
  14699. height: math.unit(6, "inches"),
  14700. default: true
  14701. },
  14702. ]
  14703. )
  14704. };
  14705. characterMakers["Kyle"] = () => {
  14706. return makeCharacter(
  14707. "Kyle",
  14708. "Jasmith",
  14709. {
  14710. front: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(150, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/kyle/front.svg",
  14716. extra: 1069/962,
  14717. bottom: 77.228/1727.45
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Macro",
  14724. height: math.unit(150, "feet"),
  14725. default: true
  14726. },
  14727. ]
  14728. )
  14729. };
  14730. characterMakers["Duncan"] = () => {
  14731. return makeCharacter(
  14732. "Duncan",
  14733. "Duncan",
  14734. {
  14735. front: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(300, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/duncan/front.svg",
  14741. extra: 1650/1482,
  14742. bottom: 0.05
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Macro",
  14749. height: math.unit(100, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. )
  14754. };
  14755. characterMakers["Memory"] = () => {
  14756. return makeCharacter(
  14757. "Memory",
  14758. "boringcactus",
  14759. {
  14760. front: {
  14761. height: math.unit(5 + 4/12, "feet"),
  14762. weight: math.unit(220, "lb"),
  14763. name: "Front",
  14764. image: {
  14765. source: "./media/characters/memory/front.svg",
  14766. extra: 3641/3545,
  14767. bottom: 0.03
  14768. }
  14769. },
  14770. back: {
  14771. height: math.unit(5 + 4/12, "feet"),
  14772. weight: math.unit(220, "lb"),
  14773. name: "Back",
  14774. image: {
  14775. source: "./media/characters/memory/back.svg",
  14776. extra: 3641/3545,
  14777. bottom: 0.025
  14778. }
  14779. },
  14780. frontSkirt: {
  14781. height: math.unit(5 + 4/12, "feet"),
  14782. weight: math.unit(220, "lb"),
  14783. name: "Front (Skirt)",
  14784. image: {
  14785. source: "./media/characters/memory/front-skirt.svg",
  14786. extra: 3641/3545,
  14787. bottom: 0.03
  14788. }
  14789. },
  14790. frontDress: {
  14791. height: math.unit(5 + 4/12, "feet"),
  14792. weight: math.unit(220, "lb"),
  14793. name: "Front (Dress)",
  14794. image: {
  14795. source: "./media/characters/memory/front-dress.svg",
  14796. extra: 3641/3545,
  14797. bottom: 0.03
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Micro",
  14804. height: math.unit(6, "inches"),
  14805. default: true
  14806. },
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(5 + 4/12, "feet")
  14810. },
  14811. ]
  14812. )
  14813. };
  14814. characterMakers["Luno"] = () => {
  14815. return makeCharacter(
  14816. "Luno",
  14817. "Jamesy",
  14818. {
  14819. front: {
  14820. height: math.unit(4 + 11/12, "feet"),
  14821. weight: math.unit(100, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/luno/front.svg",
  14825. extra: 1535/1487,
  14826. bottom: 0.03
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Micro",
  14833. height: math.unit(3, "inches")
  14834. },
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(4 + 11/12, "feet"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Macro",
  14842. height: math.unit(300, "feet")
  14843. },
  14844. {
  14845. name: "Megamacro",
  14846. height: math.unit(700, "miles")
  14847. },
  14848. ]
  14849. )
  14850. };
  14851. characterMakers["Jamesy"] = () => {
  14852. return makeCharacter(
  14853. "Jamesy",
  14854. "Jamesy",
  14855. {
  14856. front: {
  14857. height: math.unit(6 + 2/12, "feet"),
  14858. weight: math.unit(170, "lb"),
  14859. name: "Front",
  14860. image: {
  14861. source: "./media/characters/jamesy/front.svg",
  14862. extra: 440/382,
  14863. bottom: 0.005
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Micro",
  14870. height: math.unit(3, "inches")
  14871. },
  14872. {
  14873. name: "Normal",
  14874. height: math.unit(6 + 2/12, "feet"),
  14875. default: true
  14876. },
  14877. {
  14878. name: "Macro",
  14879. height: math.unit(300, "feet")
  14880. },
  14881. {
  14882. name: "Megamacro",
  14883. height: math.unit(700, "miles")
  14884. },
  14885. ]
  14886. )
  14887. };
  14888. characterMakers["Mark"] = () => {
  14889. return makeCharacter(
  14890. "Mark",
  14891. "ich",
  14892. {
  14893. front: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(160, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/mark/front.svg",
  14899. extra: 3300/3100,
  14900. bottom: 136.42/3440.47
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Macro",
  14907. height: math.unit(120, "meters")
  14908. },
  14909. {
  14910. name: "Bigger Macro",
  14911. height: math.unit(350, "meters")
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(8, "km"),
  14916. default: true
  14917. },
  14918. {
  14919. name: "Continental",
  14920. height: math.unit(4550, "km")
  14921. },
  14922. {
  14923. name: "Planetary",
  14924. height: math.unit(65000, "km")
  14925. },
  14926. ]
  14927. )
  14928. };
  14929. characterMakers["Mac"] = () => {
  14930. return makeCharacter(
  14931. "Mac",
  14932. "Macroceli",
  14933. {
  14934. front: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(400, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/mac/front.svg",
  14940. extra: 1048/987.7,
  14941. bottom: 60/1107.6,
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Macro",
  14948. height: math.unit(500, "feet"),
  14949. default: true
  14950. },
  14951. ]
  14952. )
  14953. };
  14954. characterMakers["Bari"] = () => {
  14955. return makeCharacter(
  14956. "Bari",
  14957. "Bariamph",
  14958. {
  14959. front: {
  14960. height: math.unit(5 + 2/12, "feet"),
  14961. weight: math.unit(190, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/bari/front.svg",
  14965. extra: 3156/2880,
  14966. bottom: 0.03
  14967. }
  14968. },
  14969. back: {
  14970. height: math.unit(5 + 2/12, "feet"),
  14971. weight: math.unit(190, "lb"),
  14972. name: "Back",
  14973. image: {
  14974. source: "./media/characters/bari/back.svg",
  14975. extra: 3260/2834,
  14976. bottom: 0.025
  14977. }
  14978. },
  14979. frontPlush: {
  14980. height: math.unit(5 + 2/12, "feet"),
  14981. weight: math.unit(190, "lb"),
  14982. name: "Front (Plush)",
  14983. image: {
  14984. source: "./media/characters/bari/front-plush.svg",
  14985. extra: 1112/1061,
  14986. bottom: 0.002
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(3, "inches")
  14994. },
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(5 + 2/12, "feet"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(20, "feet")
  15003. },
  15004. ]
  15005. )
  15006. };
  15007. characterMakers["Hunter Misha Raven"] = () => {
  15008. return makeCharacter(
  15009. "Hunter Misha Raven",
  15010. "ashtrek",
  15011. {
  15012. front: {
  15013. height: math.unit(6 + 1/12, "feet"),
  15014. weight: math.unit(275, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/hunter-misha-raven/front.svg"
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Mortal",
  15024. height: math.unit(6 + 1/12, "feet")
  15025. },
  15026. {
  15027. name: "Divine",
  15028. height: math.unit(1.12134e34, "parsecs"),
  15029. default: true
  15030. },
  15031. ]
  15032. )
  15033. };
  15034. characterMakers["Max Calore"] = () => {
  15035. return makeCharacter(
  15036. "Max Calore",
  15037. "flamestar",
  15038. {
  15039. front: {
  15040. height: math.unit(6 + 3/12, "feet"),
  15041. weight: math.unit(220, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/max-calore/front.svg",
  15045. extra: 1700/1648,
  15046. bottom: 0.01
  15047. }
  15048. },
  15049. back: {
  15050. height: math.unit(6 + 3/12, "feet"),
  15051. weight: math.unit(220, "lb"),
  15052. name: "Back",
  15053. image: {
  15054. source: "./media/characters/max-calore/back.svg",
  15055. extra: 1700/1648,
  15056. bottom: 0.01
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(6 + 3/12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. )
  15068. };
  15069. characterMakers["Aspen"] = () => {
  15070. return makeCharacter(
  15071. "Aspen",
  15072. "Fidchell",
  15073. {
  15074. side: {
  15075. height: math.unit(2 + 8/12, "feet"),
  15076. weight: math.unit(99, "lb"),
  15077. name: "Side",
  15078. image: {
  15079. source: "./media/characters/aspen/side.svg",
  15080. extra: 152/138,
  15081. bottom: 0.032
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Normal",
  15088. height: math.unit(2 + 8/12, "feet"),
  15089. default: true
  15090. },
  15091. ]
  15092. )
  15093. };
  15094. characterMakers["Sheila (Wolf)"] = () => {
  15095. return makeCharacter(
  15096. "Sheila (Wolf)",
  15097. "Fidchell",
  15098. {
  15099. side: {
  15100. height: math.unit(3 + 2/12, "feet"),
  15101. weight: math.unit(224, "lb"),
  15102. name: "Side",
  15103. image: {
  15104. source: "./media/characters/sheila-wolf/side.svg",
  15105. extra: 179/166,
  15106. bottom: 0.03
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(3 + 2/12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. )
  15118. };
  15119. characterMakers["Michelle"] = () => {
  15120. return makeCharacter(
  15121. "Michelle",
  15122. "Fidchell",
  15123. {
  15124. side: {
  15125. height: math.unit(1 + 9/12, "feet"),
  15126. weight: math.unit(38, "lb"),
  15127. name: "Side",
  15128. image: {
  15129. source: "./media/characters/michelle/side.svg",
  15130. extra: 147/136.7,
  15131. bottom: 0.03
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(1 + 9/12, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. )
  15143. };
  15144. characterMakers["Nino"] = () => {
  15145. return makeCharacter(
  15146. "Nino",
  15147. "Fidchell",
  15148. {
  15149. front: {
  15150. height: math.unit(1 + 1/12, "feet"),
  15151. weight: math.unit(18, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/nino/front.svg"
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(1 + 1/12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. )
  15166. };
  15167. characterMakers["Viola"] = () => {
  15168. return makeCharacter(
  15169. "Viola",
  15170. "Fidchell",
  15171. {
  15172. front: {
  15173. height: math.unit(1, "feet"),
  15174. weight: math.unit(16, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/viola/front.svg"
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(1, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. )
  15189. };
  15190. characterMakers["Atlas"] = () => {
  15191. return makeCharacter(
  15192. "Atlas",
  15193. "Fidchell",
  15194. {
  15195. front: {
  15196. height: math.unit(6 + 5/12, "feet"),
  15197. weight: math.unit(580, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/atlas/front.svg",
  15201. extra: 298.5/290,
  15202. bottom: 0.015
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(6 + 5/12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. )
  15214. };
  15215. characterMakers["Davy"] = () => {
  15216. return makeCharacter(
  15217. "Davy",
  15218. "Fidchell",
  15219. {
  15220. side: {
  15221. height: math.unit(1 + 10/12, "feet"),
  15222. weight: math.unit(25, "lb"),
  15223. name: "Side",
  15224. image: {
  15225. source: "./media/characters/davy/side.svg",
  15226. extra: 200/170,
  15227. bottom: 0.01
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(1 + 10/12, "feet"),
  15235. default: true
  15236. },
  15237. ]
  15238. )
  15239. };
  15240. characterMakers["Fiona"] = () => {
  15241. return makeCharacter(
  15242. "Fiona",
  15243. "Fidchell",
  15244. {
  15245. side: {
  15246. height: math.unit(4 + 8/12, "feet"),
  15247. weight: math.unit(166, "lb"),
  15248. name: "Side",
  15249. image: {
  15250. source: "./media/characters/fiona/side.svg",
  15251. extra: 232/220,
  15252. bottom: 0.03
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(4 + 8/12, "feet"),
  15260. default: true
  15261. },
  15262. ]
  15263. )
  15264. };
  15265. characterMakers["Lyla"] = () => {
  15266. return makeCharacter(
  15267. "Lyla",
  15268. "Fidchell",
  15269. {
  15270. front: {
  15271. height: math.unit(2, "feet"),
  15272. weight: math.unit(62, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/lyla/front.svg",
  15276. bottom: 0.1
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(2, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. )
  15288. };
  15289. characterMakers["Perseus"] = () => {
  15290. return makeCharacter(
  15291. "Perseus",
  15292. "Fidchell",
  15293. {
  15294. side: {
  15295. height: math.unit(1.8, "feet"),
  15296. weight: math.unit(44, "lb"),
  15297. name: "Side",
  15298. image: {
  15299. source: "./media/characters/perseus/side.svg",
  15300. bottom: 0.21
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(1.8, "feet"),
  15308. default: true
  15309. },
  15310. ]
  15311. )
  15312. };
  15313. characterMakers["Remus"] = () => {
  15314. return makeCharacter(
  15315. "Remus",
  15316. "Fidchell",
  15317. {
  15318. side: {
  15319. height: math.unit(4 + 2/12, "feet"),
  15320. weight: math.unit(20, "lb"),
  15321. name: "Side",
  15322. image: {
  15323. source: "./media/characters/remus/side.svg"
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(4 + 2/12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. )
  15335. };
  15336. characterMakers["Raf"] = () => {
  15337. return makeCharacter(
  15338. "Raf",
  15339. "the_raf",
  15340. {
  15341. front: {
  15342. height: math.unit(4 + 11/12, "feet"),
  15343. weight: math.unit(114, "lb"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/raf/front.svg",
  15347. bottom: 0.01
  15348. }
  15349. },
  15350. side: {
  15351. height: math.unit(4 + 11/12, "feet"),
  15352. weight: math.unit(114, "lb"),
  15353. name: "Side",
  15354. image: {
  15355. source: "./media/characters/raf/side.svg",
  15356. bottom: 0.005
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Micro",
  15363. height: math.unit(2, "inches")
  15364. },
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(4 + 11/12, "feet"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Macro",
  15372. height: math.unit(70, "feet")
  15373. },
  15374. ]
  15375. )
  15376. };
  15377. characterMakers["Liam Einarr"] = () => {
  15378. return makeCharacter(
  15379. "Liam Einarr",
  15380. "LiamEinarr",
  15381. {
  15382. front: {
  15383. height: math.unit(1.5, "meters"),
  15384. weight: math.unit(68, "kg"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/liam-einarr/front.svg",
  15388. extra: 2822/2666
  15389. }
  15390. },
  15391. back: {
  15392. height: math.unit(1.5, "meters"),
  15393. weight: math.unit(68, "kg"),
  15394. name: "Back",
  15395. image: {
  15396. source: "./media/characters/liam-einarr/back.svg",
  15397. extra: 2822/2666,
  15398. bottom: 0.015
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(1.5, "meters"),
  15406. default: true
  15407. },
  15408. {
  15409. name: "Macro",
  15410. height: math.unit(150, "meters")
  15411. },
  15412. {
  15413. name: "Megamacro",
  15414. height: math.unit(35, "km")
  15415. },
  15416. ]
  15417. )
  15418. };
  15419. characterMakers["Linda"] = () => {
  15420. return makeCharacter(
  15421. "Linda",
  15422. "Dalken",
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(75, "kg"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/linda/front.svg",
  15430. extra: 930/874,
  15431. bottom: 0.004
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(6, "feet"),
  15439. default: true
  15440. },
  15441. ]
  15442. )
  15443. };
  15444. characterMakers["Caylex"] = () => {
  15445. return makeCharacter(
  15446. "Caylex",
  15447. "ArgentVZ",
  15448. {
  15449. front: {
  15450. height: math.unit(6 + 8/12, "feet"),
  15451. weight: math.unit(220, "lb"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/caylex/front.svg",
  15455. extra: 821/772,
  15456. bottom: 0.07
  15457. }
  15458. },
  15459. back: {
  15460. height: math.unit(6 + 8/12, "feet"),
  15461. weight: math.unit(220, "lb"),
  15462. name: "Back",
  15463. image: {
  15464. source: "./media/characters/caylex/back.svg",
  15465. extra: 821/772,
  15466. bottom: 0.022
  15467. }
  15468. },
  15469. hand: {
  15470. height: math.unit(1.25, "feet"),
  15471. name: "Hand",
  15472. image: {
  15473. source: "./media/characters/caylex/hand.svg"
  15474. }
  15475. },
  15476. foot: {
  15477. height: math.unit(1.6, "feet"),
  15478. name: "Foot",
  15479. image: {
  15480. source: "./media/characters/caylex/foot.svg"
  15481. }
  15482. },
  15483. armored: {
  15484. height: math.unit(6 + 8/12, "feet"),
  15485. weight: math.unit(250, "lb"),
  15486. name: "Armored",
  15487. image: {
  15488. source: "./media/characters/caylex/armored.svg",
  15489. extra: 1420/1310,
  15490. bottom: 0.045
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(6 + 8/12, "feet"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Normal+",
  15502. height: math.unit(12, "feet")
  15503. },
  15504. ]
  15505. )
  15506. };
  15507. characterMakers["Alana"] = () => {
  15508. return makeCharacter(
  15509. "Alana",
  15510. "Adeleide",
  15511. {
  15512. front: {
  15513. height: math.unit(7 + 6/12, "feet"),
  15514. weight: math.unit(288, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/alana/front.svg",
  15518. extra: 679/653,
  15519. bottom: 22.5/701
  15520. }
  15521. },
  15522. },
  15523. [
  15524. {
  15525. name: "Normal",
  15526. height: math.unit(7 + 6/12, "feet")
  15527. },
  15528. {
  15529. name: "Large",
  15530. height: math.unit(50, "feet")
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(100, "feet"),
  15535. default: true
  15536. },
  15537. {
  15538. name: "Macro+",
  15539. height: math.unit(200, "feet")
  15540. },
  15541. ]
  15542. )
  15543. };
  15544. characterMakers["Hasani"] = () => {
  15545. return makeCharacter(
  15546. "Hasani",
  15547. "BishopBun",
  15548. {
  15549. front: {
  15550. height: math.unit(6 + 1/12, "feet"),
  15551. weight: math.unit(210, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/hasani/front.svg",
  15555. extra: 244/232,
  15556. bottom: 0.01
  15557. }
  15558. },
  15559. back: {
  15560. height: math.unit(6 + 1/12, "feet"),
  15561. weight: math.unit(210, "lb"),
  15562. name: "Back",
  15563. image: {
  15564. source: "./media/characters/hasani/back.svg",
  15565. extra: 244/232,
  15566. bottom: 0.01
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(6 + 1/12, "feet")
  15574. },
  15575. {
  15576. name: "Macro",
  15577. height: math.unit(175, "feet"),
  15578. default: true
  15579. },
  15580. ]
  15581. )
  15582. };
  15583. characterMakers["Nita"] = () => {
  15584. return makeCharacter(
  15585. "Nita",
  15586. "Ich",
  15587. {
  15588. front: {
  15589. height: math.unit(1.82, "meters"),
  15590. weight: math.unit(140, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/nita/front.svg",
  15594. extra: 2473/2363,
  15595. bottom: 0.01
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(1.82, "m")
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(300, "m")
  15607. },
  15608. {
  15609. name: "Mistake Canon",
  15610. height: math.unit(0.5, "miles"),
  15611. default: true
  15612. },
  15613. {
  15614. name: "Big Mistake",
  15615. height: math.unit(13, "miles")
  15616. },
  15617. {
  15618. name: "Playing God",
  15619. height: math.unit(2450, "miles")
  15620. },
  15621. ]
  15622. )
  15623. };
  15624. characterMakers["Shiriko"] = () => {
  15625. return makeCharacter(
  15626. "Shiriko",
  15627. "Shiriko",
  15628. {
  15629. front: {
  15630. height: math.unit(4, "feet"),
  15631. weight: math.unit(120, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/shiriko/front.svg",
  15635. extra: 195/188
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(4, "feet"),
  15643. default: true
  15644. },
  15645. ]
  15646. )
  15647. };
  15648. characterMakers["Deja"] = () => {
  15649. return makeCharacter(
  15650. "Deja",
  15651. "dejaroo",
  15652. {
  15653. front: {
  15654. height: math.unit(6, "feet"),
  15655. name: "front",
  15656. image: {
  15657. source: "./media/characters/deja/front.svg",
  15658. extra: 926/840,
  15659. bottom: 0.07
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Planck Length",
  15666. height: math.unit(1.6e-35, "meters")
  15667. },
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(30.48, "meters"),
  15671. default: true
  15672. },
  15673. {
  15674. name: "Universal",
  15675. height: math.unit(8.8e26, "meters")
  15676. },
  15677. ]
  15678. )
  15679. };
  15680. characterMakers["Anima"] = () => {
  15681. return makeCharacter(
  15682. "Anima",
  15683. "Anima",
  15684. {
  15685. side: {
  15686. height: math.unit(8, "feet"),
  15687. weight: math.unit(6300, "lb"),
  15688. name: "Side",
  15689. image: {
  15690. source: "./media/characters/anima/side.svg",
  15691. bottom: 0.035
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(8, "feet"),
  15699. default: true
  15700. },
  15701. ]
  15702. )
  15703. };
  15704. characterMakers["Bianca"] = () => {
  15705. return makeCharacter(
  15706. "Bianca",
  15707. "Sdocat",
  15708. {
  15709. front: {
  15710. height: math.unit(8, "feet"),
  15711. weight: math.unit(350, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/bianca/front.svg",
  15715. extra: 234/225,
  15716. bottom: 0.03
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(8, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. )
  15728. };
  15729. characterMakers["Adinia"] = () => {
  15730. return makeCharacter(
  15731. "Adinia",
  15732. "Sdocat",
  15733. {
  15734. front: {
  15735. height: math.unit(6, "feet"),
  15736. weight: math.unit(150, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/adinia/front.svg",
  15740. extra: 1845/1672,
  15741. bottom: 0.02
  15742. }
  15743. },
  15744. back: {
  15745. height: math.unit(6, "feet"),
  15746. weight: math.unit(150, "lb"),
  15747. name: "Back",
  15748. image: {
  15749. source: "./media/characters/adinia/back.svg",
  15750. extra: 1845/1672,
  15751. bottom: 0.002
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(11 + 5/12, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. )
  15763. };
  15764. characterMakers["Lykasa"] = () => {
  15765. return makeCharacter(
  15766. "Lykasa",
  15767. "Roxas00137",
  15768. {
  15769. front: {
  15770. height: math.unit(3, "meters"),
  15771. weight: math.unit(200, "kg"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/lykasa/front.svg",
  15775. extra: 1076/976,
  15776. bottom: 0.06
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(3, "meters")
  15784. },
  15785. {
  15786. name: "Kaiku",
  15787. height: math.unit(120, "meters"),
  15788. default: true
  15789. },
  15790. {
  15791. name: "Mega Kaiju",
  15792. height: math.unit(240, "km")
  15793. },
  15794. {
  15795. name: "Giga Kaiju",
  15796. height: math.unit(400, "megameters")
  15797. },
  15798. {
  15799. name: "Tera Kaiju",
  15800. height: math.unit(800, "gigameters")
  15801. },
  15802. {
  15803. name: "Kaiju Dragon Goddess",
  15804. height: math.unit(26, "zettaparsecs")
  15805. },
  15806. ]
  15807. )
  15808. };
  15809. characterMakers["Malfaren"] = () => {
  15810. return makeCharacter(
  15811. "Malfaren",
  15812. "Malfaren",
  15813. {
  15814. side: {
  15815. height: math.unit(283/124*6, "feet"),
  15816. weight: math.unit(35000, "lb"),
  15817. name: "Side",
  15818. image: {
  15819. source: "./media/characters/malfaren/side.svg",
  15820. extra: 2500/1010,
  15821. bottom: 0.01
  15822. }
  15823. },
  15824. front: {
  15825. height: math.unit(22.36, "feet"),
  15826. weight: math.unit(35000, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/malfaren/front.svg",
  15830. extra: 1631/1476,
  15831. bottom: 0.01
  15832. }
  15833. },
  15834. maw: {
  15835. height: math.unit(6.9, "feet"),
  15836. name: "Maw",
  15837. image: {
  15838. source: "./media/characters/malfaren/maw.svg"
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Big",
  15845. height: math.unit(283/162*6, "feet"),
  15846. },
  15847. {
  15848. name: "Bigger",
  15849. height: math.unit(283/124*6, "feet")
  15850. },
  15851. {
  15852. name: "Massive",
  15853. height: math.unit(283/92*6, "feet"),
  15854. default: true
  15855. },
  15856. {
  15857. name: "👀💦",
  15858. height: math.unit(283/73*6, "feet"),
  15859. },
  15860. ]
  15861. )
  15862. };
  15863. characterMakers["Kernel"] = () => {
  15864. return makeCharacter(
  15865. "Kernel",
  15866. "KernelDecoy",
  15867. {
  15868. front: {
  15869. height: math.unit(1.7, "m"),
  15870. weight: math.unit(70, "kg"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/kernel/front.svg",
  15874. extra: 222/210,
  15875. bottom: 0.007
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Nano",
  15882. height: math.unit(17, "micrometers")
  15883. },
  15884. {
  15885. name: "Micro",
  15886. height: math.unit(1.7, "mm")
  15887. },
  15888. {
  15889. name: "Small",
  15890. height: math.unit(1.7, "cm")
  15891. },
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(1.7, "m"),
  15895. default: true
  15896. },
  15897. ]
  15898. )
  15899. };
  15900. characterMakers["Jayne Folest"] = () => {
  15901. return makeCharacter(
  15902. "Jayne Folest",
  15903. "JayneFolest",
  15904. {
  15905. front: {
  15906. height: math.unit(1.75, "meters"),
  15907. weight: math.unit(65, "kg"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/jayne-folest/front.svg",
  15911. extra: 2115/2007,
  15912. bottom: 0.02
  15913. }
  15914. },
  15915. back: {
  15916. height: math.unit(1.75, "meters"),
  15917. weight: math.unit(65, "kg"),
  15918. name: "Back",
  15919. image: {
  15920. source: "./media/characters/jayne-folest/back.svg",
  15921. extra: 2115/2007,
  15922. bottom: 0.005
  15923. }
  15924. },
  15925. frontClothed: {
  15926. height: math.unit(1.75, "meters"),
  15927. weight: math.unit(65, "kg"),
  15928. name: "Front (Clothed)",
  15929. image: {
  15930. source: "./media/characters/jayne-folest/front-clothed.svg",
  15931. extra: 2115/2007,
  15932. bottom: 0.035
  15933. }
  15934. },
  15935. hand: {
  15936. height: math.unit(1/1.260, "feet"),
  15937. name: "Hand",
  15938. image: {
  15939. source: "./media/characters/jayne-folest/hand.svg"
  15940. }
  15941. },
  15942. foot: {
  15943. height: math.unit(1/0.918, "feet"),
  15944. name: "Foot",
  15945. image: {
  15946. source: "./media/characters/jayne-folest/foot.svg"
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Micro",
  15953. height: math.unit(4, "cm")
  15954. },
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(1.75, "meters")
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(47.5, "meters"),
  15962. default: true
  15963. },
  15964. ]
  15965. )
  15966. };
  15967. characterMakers["Algier"] = () => {
  15968. return makeCharacter(
  15969. "Algier",
  15970. "Silas",
  15971. {
  15972. front: {
  15973. height: math.unit(180, "cm"),
  15974. weight: math.unit(70, "kg"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/algier/front.svg",
  15978. extra: 596/572,
  15979. bottom: 0.04
  15980. }
  15981. },
  15982. back: {
  15983. height: math.unit(180, "cm"),
  15984. weight: math.unit(70, "kg"),
  15985. name: "Back",
  15986. image: {
  15987. source: "./media/characters/algier/back.svg",
  15988. extra: 596/572,
  15989. bottom: 0.025
  15990. }
  15991. },
  15992. frontdressed: {
  15993. height: math.unit(180, "cm"),
  15994. weight: math.unit(150, "kg"),
  15995. name: "Front-dressed",
  15996. image: {
  15997. source: "./media/characters/algier/front-dressed.svg",
  15998. extra: 596/572,
  15999. bottom: 0.038
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Micro",
  16006. height: math.unit(5, "cm")
  16007. },
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(180, "cm"),
  16011. default: true
  16012. },
  16013. {
  16014. name: "Macro",
  16015. height: math.unit(64, "m")
  16016. },
  16017. ]
  16018. )
  16019. };
  16020. characterMakers["Pretzel"] = () => {
  16021. return makeCharacter(
  16022. "Pretzel",
  16023. "Serpentus",
  16024. {
  16025. upright: {
  16026. height: math.unit(7, "feet"),
  16027. weight: math.unit(300, "lb"),
  16028. name: "Upright",
  16029. image: {
  16030. source: "./media/characters/pretzel/upright.svg",
  16031. extra: 534/522,
  16032. bottom: 0.065
  16033. }
  16034. },
  16035. sprawling: {
  16036. height: math.unit(3.75, "feet"),
  16037. weight: math.unit(300, "lb"),
  16038. name: "Sprawling",
  16039. image: {
  16040. source: "./media/characters/pretzel/sprawling.svg",
  16041. extra: 314/281,
  16042. bottom: 0.1
  16043. }
  16044. },
  16045. tongue: {
  16046. height: math.unit(2, "feet"),
  16047. name: "Tongue",
  16048. image: {
  16049. source: "./media/characters/pretzel/tongue.svg"
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Normal",
  16056. height: math.unit(7, "feet"),
  16057. default: true
  16058. },
  16059. {
  16060. name: "Oversized",
  16061. height: math.unit(15, "feet")
  16062. },
  16063. {
  16064. name: "Huge",
  16065. height: math.unit(30, "feet")
  16066. },
  16067. {
  16068. name: "Macro",
  16069. height: math.unit(250, "feet")
  16070. },
  16071. ]
  16072. )
  16073. };
  16074. characterMakers["Roxi"] = () => {
  16075. return makeCharacter(
  16076. "Roxi",
  16077. "carthusflame",
  16078. {
  16079. sideFront: {
  16080. height: math.unit(5 + 2/12, "feet"),
  16081. weight: math.unit(120, "lb"),
  16082. name: "Front Side",
  16083. image: {
  16084. source: "./media/characters/roxi/side-front.svg",
  16085. extra: 2924/2717,
  16086. bottom: 0.08
  16087. }
  16088. },
  16089. sideBack: {
  16090. height: math.unit(5 + 2/12, "feet"),
  16091. weight: math.unit(120, "lb"),
  16092. name: "Back Side",
  16093. image: {
  16094. source: "./media/characters/roxi/side-back.svg",
  16095. extra: 2904/2693,
  16096. bottom: 0.06
  16097. }
  16098. },
  16099. front: {
  16100. height: math.unit(5 + 2/12, "feet"),
  16101. weight: math.unit(120, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/roxi/front.svg",
  16105. extra: 2028/1907,
  16106. bottom: 0.01
  16107. }
  16108. },
  16109. frontAlt: {
  16110. height: math.unit(5 + 2/12, "feet"),
  16111. weight: math.unit(120, "lb"),
  16112. name: "Front (Alt)",
  16113. image: {
  16114. source: "./media/characters/roxi/front-alt.svg",
  16115. extra: 1828/1798,
  16116. bottom: 0.01
  16117. }
  16118. },
  16119. sitting: {
  16120. height: math.unit(2.8, "feet"),
  16121. weight: math.unit(120, "lb"),
  16122. name: "Sitting",
  16123. image: {
  16124. source: "./media/characters/roxi/sitting.svg",
  16125. extra: 2660/2462,
  16126. bottom: 0.1
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(5 + 2/12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. )
  16138. };
  16139. characterMakers["Shadow"] = () => {
  16140. return makeCharacter(
  16141. "Shadow",
  16142. "MKShadowdrake",
  16143. {
  16144. side: {
  16145. height: math.unit(55, "feet"),
  16146. weight: math.unit(153, "tons"),
  16147. name: "Side",
  16148. image: {
  16149. source: "./media/characters/shadow/side.svg",
  16150. extra: 701/628,
  16151. bottom: 0.02
  16152. }
  16153. },
  16154. flying: {
  16155. height: math.unit(145, "feet"),
  16156. weight: math.unit(153, "tons"),
  16157. name: "Flying",
  16158. image: {
  16159. source: "./media/characters/shadow/flying.svg"
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(55, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. )
  16171. };
  16172. characterMakers["Marcie"] = () => {
  16173. return makeCharacter(
  16174. "Marcie",
  16175. "Macroceli",
  16176. {
  16177. front: {
  16178. height: math.unit(6, "feet"),
  16179. weight: math.unit(200, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/marcie/front.svg",
  16183. extra: 960/876,
  16184. bottom: 58/1017.87
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Macro",
  16191. height: math.unit(1, "mile"),
  16192. default: true
  16193. },
  16194. ]
  16195. )
  16196. };
  16197. characterMakers["Kachina"] = () => {
  16198. return makeCharacter(
  16199. "Kachina",
  16200. "Trisha",
  16201. {
  16202. front: {
  16203. height: math.unit(7, "feet"),
  16204. weight: math.unit(200, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/kachina/front.svg",
  16208. extra: 1290.68/1119,
  16209. bottom: 36.5/1327.18
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(7, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. )
  16221. };
  16222. characterMakers["Kash"] = () => {
  16223. return makeCharacter(
  16224. "Kash",
  16225. "4wrz",
  16226. {
  16227. looking: {
  16228. height: math.unit(2, "meters"),
  16229. weight: math.unit(300, "kg"),
  16230. name: "Looking",
  16231. image: {
  16232. source: "./media/characters/kash/looking.svg",
  16233. extra: 474/344,
  16234. bottom: 0.03
  16235. }
  16236. },
  16237. side: {
  16238. height: math.unit(2, "meters"),
  16239. weight: math.unit(300, "kg"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/kash/side.svg",
  16243. extra: 302/251,
  16244. bottom: 0.03
  16245. }
  16246. },
  16247. front: {
  16248. height: math.unit(2, "meters"),
  16249. weight: math.unit(300, "kg"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/kash/front.svg",
  16253. extra: 495/360,
  16254. bottom: 0.015
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(2, "meters"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Big",
  16266. height: math.unit(3, "meters")
  16267. },
  16268. {
  16269. name: "Large",
  16270. height: math.unit(5, "meters")
  16271. },
  16272. ]
  16273. )
  16274. };
  16275. characterMakers["Lalim"] = () => {
  16276. return makeCharacter(
  16277. "Lalim",
  16278. "Bruyaglovae",
  16279. {
  16280. feeding: {
  16281. height: math.unit(6.7, "feet"),
  16282. weight: math.unit(350, "lb"),
  16283. name: "Feeding",
  16284. image: {
  16285. source: "./media/characters/lalim/feeding.svg",
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(6.7, "feet"),
  16293. default: true
  16294. },
  16295. ]
  16296. )
  16297. };
  16298. characterMakers["De'Vout"] = () => {
  16299. return makeCharacter(
  16300. "De'Vout",
  16301. "Bruyaglovae",
  16302. {
  16303. front: {
  16304. height: math.unit(9.5, "feet"),
  16305. weight: math.unit(600, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/de'vout/front.svg",
  16309. extra: 1443/1328,
  16310. bottom: 0.025
  16311. }
  16312. },
  16313. back: {
  16314. height: math.unit(9.5, "feet"),
  16315. weight: math.unit(600, "lb"),
  16316. name: "Back",
  16317. image: {
  16318. source: "./media/characters/de'vout/back.svg",
  16319. extra: 1443/1328
  16320. }
  16321. },
  16322. frontDressed: {
  16323. height: math.unit(9.5, "feet"),
  16324. weight: math.unit(600, "lb"),
  16325. name: "Front (Dressed",
  16326. image: {
  16327. source: "./media/characters/de'vout/front-dressed.svg",
  16328. extra: 1443/1328,
  16329. bottom: 0.025
  16330. }
  16331. },
  16332. backDressed: {
  16333. height: math.unit(9.5, "feet"),
  16334. weight: math.unit(600, "lb"),
  16335. name: "Back (Dressed",
  16336. image: {
  16337. source: "./media/characters/de'vout/back-dressed.svg",
  16338. extra: 1443/1328
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(9.5, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. )
  16350. };
  16351. characterMakers["Talana"] = () => {
  16352. return makeCharacter(
  16353. "Talana",
  16354. "Bruyaglovae",
  16355. {
  16356. front: {
  16357. height: math.unit(8, "feet"),
  16358. weight: math.unit(225, "lb"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/talana/front.svg",
  16362. extra: 1410/1300,
  16363. bottom: 0.015
  16364. }
  16365. },
  16366. frontDressed: {
  16367. height: math.unit(8, "feet"),
  16368. weight: math.unit(225, "lb"),
  16369. name: "Front (Dressed",
  16370. image: {
  16371. source: "./media/characters/talana/front-dressed.svg",
  16372. extra: 1410/1300,
  16373. bottom: 0.015
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(8, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. )
  16385. };
  16386. characterMakers["Xeauvok"] = () => {
  16387. return makeCharacter(
  16388. "Xeauvok",
  16389. "Bruyaglovae",
  16390. {
  16391. side: {
  16392. height: math.unit(7.2, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Side",
  16395. image: {
  16396. source: "./media/characters/xeauvok/side.svg",
  16397. extra: 1975/1523,
  16398. bottom: 0.07
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(7.2, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. )
  16410. };
  16411. characterMakers["Zara"] = () => {
  16412. return makeCharacter(
  16413. "Zara",
  16414. "Dalken",
  16415. {
  16416. side: {
  16417. height: math.unit(10, "feet"),
  16418. weight: math.unit(900, "kg"),
  16419. name: "Side",
  16420. image: {
  16421. source: "./media/characters/zara/side.svg",
  16422. extra: 504/498
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(10, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. )
  16434. };
  16435. characterMakers["Richard (Dragon)"] = () => {
  16436. return makeCharacter(
  16437. "Richard (Dragon)",
  16438. "Xanaomin",
  16439. {
  16440. side: {
  16441. height: math.unit(6, "feet"),
  16442. weight: math.unit(150, "lb"),
  16443. name: "Side",
  16444. image: {
  16445. source: "./media/characters/richard-dragon/side.svg",
  16446. extra: 845/340,
  16447. bottom: 0.017
  16448. }
  16449. },
  16450. maw: {
  16451. height: math.unit(2.97, "feet"),
  16452. name: "Maw",
  16453. image: {
  16454. source: "./media/characters/richard-dragon/maw.svg"
  16455. }
  16456. },
  16457. },
  16458. [
  16459. ]
  16460. )
  16461. };
  16462. characterMakers["Richard (Smeargle)"] = () => {
  16463. return makeCharacter(
  16464. "Richard (Smeargle)",
  16465. "Xanaomin",
  16466. {
  16467. front: {
  16468. height: math.unit(4, "feet"),
  16469. weight: math.unit(100, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/richard-smeargle/front.svg",
  16473. extra: 2952/2820,
  16474. bottom: 0.028
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(4, "feet"),
  16482. default: true
  16483. },
  16484. {
  16485. name: "Dynamax",
  16486. height: math.unit(20, "meters")
  16487. },
  16488. ]
  16489. )
  16490. };
  16491. characterMakers["Klay"] = () => {
  16492. return makeCharacter(
  16493. "Klay",
  16494. "klaythebat",
  16495. {
  16496. front: {
  16497. height: math.unit(6, "feet"),
  16498. weight: math.unit(110, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/klay/front.svg",
  16502. extra: 962/883,
  16503. bottom: 0.04
  16504. }
  16505. },
  16506. back: {
  16507. height: math.unit(6, "feet"),
  16508. weight: math.unit(110, "lb"),
  16509. name: "Back",
  16510. image: {
  16511. source: "./media/characters/klay/back.svg",
  16512. extra: 962/883
  16513. }
  16514. },
  16515. beans: {
  16516. height: math.unit(1.15, "feet"),
  16517. name: "Beans",
  16518. image: {
  16519. source: "./media/characters/klay/beans.svg"
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Micro",
  16526. height: math.unit(6, "inches")
  16527. },
  16528. {
  16529. name: "Mini",
  16530. height: math.unit(3, "feet")
  16531. },
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(6, "feet"),
  16535. default: true
  16536. },
  16537. {
  16538. name: "Big",
  16539. height: math.unit(25, "feet")
  16540. },
  16541. {
  16542. name: "Macro",
  16543. height: math.unit(100, "feet")
  16544. },
  16545. {
  16546. name: "Megamacro",
  16547. height: math.unit(400, "feet")
  16548. },
  16549. ]
  16550. )
  16551. };
  16552. characterMakers["Marcus"] = () => {
  16553. return makeCharacter(
  16554. "Marcus",
  16555. "klaythebat",
  16556. {
  16557. front: {
  16558. height: math.unit(6, "feet"),
  16559. weight: math.unit(160, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/marcus/front.svg",
  16563. extra: 734/676,
  16564. bottom: 0.03
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Little",
  16571. height: math.unit(6, "feet")
  16572. },
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(110, "feet"),
  16576. default: true
  16577. },
  16578. {
  16579. name: "Macro",
  16580. height: math.unit(250, "feet")
  16581. },
  16582. {
  16583. name: "Megamacro",
  16584. height: math.unit(1000, "feet")
  16585. },
  16586. ]
  16587. )
  16588. };
  16589. characterMakers["Claude DelRoute"] = () => {
  16590. return makeCharacter(
  16591. "Claude DelRoute",
  16592. "Claude",
  16593. {
  16594. front: {
  16595. height: math.unit(7, "feet"),
  16596. weight: math.unit(275, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/claude-delroute/front.svg",
  16600. extra: 230/214,
  16601. bottom: 0.007
  16602. }
  16603. },
  16604. side: {
  16605. height: math.unit(7, "feet"),
  16606. weight: math.unit(275, "lb"),
  16607. name: "Side",
  16608. image: {
  16609. source: "./media/characters/claude-delroute/side.svg",
  16610. extra: 222/214,
  16611. bottom: 0.01
  16612. }
  16613. },
  16614. back: {
  16615. height: math.unit(7, "feet"),
  16616. weight: math.unit(275, "lb"),
  16617. name: "Back",
  16618. image: {
  16619. source: "./media/characters/claude-delroute/back.svg",
  16620. extra: 230/214,
  16621. bottom: 0.015
  16622. }
  16623. },
  16624. maw: {
  16625. height: math.unit(0.6407, "meters"),
  16626. name: "Maw",
  16627. image: {
  16628. source: "./media/characters/claude-delroute/maw.svg"
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(7, "feet"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Lorge",
  16640. height: math.unit(20, "feet")
  16641. },
  16642. ]
  16643. )
  16644. };
  16645. characterMakers["Dragonien"] = () => {
  16646. return makeCharacter(
  16647. "Dragonien",
  16648. "Dragonien",
  16649. {
  16650. front: {
  16651. height: math.unit(8 + 4/12, "feet"),
  16652. weight: math.unit(600, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/dragonien/front.svg",
  16656. extra: 100/94,
  16657. bottom: 3.3/103.3445
  16658. }
  16659. },
  16660. back: {
  16661. height: math.unit(8 + 4/12, "feet"),
  16662. weight: math.unit(600, "lb"),
  16663. name: "Back",
  16664. image: {
  16665. source: "./media/characters/dragonien/back.svg",
  16666. extra: 776/746,
  16667. bottom: 6.4/782.0616
  16668. }
  16669. },
  16670. foot: {
  16671. height: math.unit(1.54, "feet"),
  16672. name: "Foot",
  16673. image: {
  16674. source: "./media/characters/dragonien/foot.svg",
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(8 + 4/12, "feet"),
  16682. default: true
  16683. },
  16684. {
  16685. name: "Macro",
  16686. height: math.unit(200, "feet")
  16687. },
  16688. {
  16689. name: "Megamacro",
  16690. height: math.unit(1, "mile")
  16691. },
  16692. {
  16693. name: "Gigamacro",
  16694. height: math.unit(1000, "miles")
  16695. },
  16696. ]
  16697. )
  16698. };
  16699. characterMakers["Desta"] = () => {
  16700. return makeCharacter(
  16701. "Desta",
  16702. "Desta",
  16703. {
  16704. front: {
  16705. height: math.unit(5 + 2/12, "feet"),
  16706. weight: math.unit(110, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/desta/front.svg",
  16710. extra: 1482/1417
  16711. }
  16712. },
  16713. side: {
  16714. height: math.unit(5 + 2/12, "feet"),
  16715. weight: math.unit(110, "lb"),
  16716. name: "Side",
  16717. image: {
  16718. source: "./media/characters/desta/side.svg",
  16719. extra: 2579/2491,
  16720. bottom: 0.053
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Micro",
  16727. height: math.unit(6, "inches")
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(5 + 2/12, "feet"),
  16732. default: true
  16733. },
  16734. {
  16735. name: "Macro",
  16736. height: math.unit(62, "feet")
  16737. },
  16738. {
  16739. name: "Megamacro",
  16740. height: math.unit(1800, "feet")
  16741. },
  16742. ]
  16743. )
  16744. };
  16745. characterMakers["Storm Alystar"] = () => {
  16746. return makeCharacter(
  16747. "Storm Alystar",
  16748. "Thunderbum",
  16749. {
  16750. front: {
  16751. height: math.unit(10, "feet"),
  16752. weight: math.unit(700, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/storm-alystar/front.svg",
  16756. extra: 2112/1898,
  16757. bottom: 0.034
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Micro",
  16764. height: math.unit(3.5, "inches")
  16765. },
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(10, "feet"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Macro",
  16773. height: math.unit(400, "feet")
  16774. },
  16775. {
  16776. name: "Deific",
  16777. height: math.unit(60, "miles")
  16778. },
  16779. ]
  16780. )
  16781. };
  16782. characterMakers["Ilia"] = () => {
  16783. return makeCharacter(
  16784. "Ilia",
  16785. "IliaVulpine",
  16786. {
  16787. front: {
  16788. height: math.unit(2.35, "meters"),
  16789. weight: math.unit(119, "kg"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/ilia/front.svg",
  16793. extra: 1285/1255,
  16794. bottom: 0.06
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(2.35, "meters")
  16802. },
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(140, "meters"),
  16806. default: true
  16807. },
  16808. {
  16809. name: "Megamacro",
  16810. height: math.unit(100, "miles")
  16811. },
  16812. ]
  16813. )
  16814. };
  16815. characterMakers["KingDead"] = () => {
  16816. return makeCharacter(
  16817. "KingDead",
  16818. "KingDead",
  16819. {
  16820. front: {
  16821. height: math.unit(6 + 5/12, "feet"),
  16822. weight: math.unit(190, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/kingdead/front.svg",
  16826. extra: 1228/1177
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Micro",
  16833. height: math.unit(7, "inches")
  16834. },
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(6 + 5/12, "feet")
  16838. },
  16839. {
  16840. name: "Macro",
  16841. height: math.unit(150, "feet"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Megamacro",
  16846. height: math.unit(200, "miles")
  16847. },
  16848. ]
  16849. )
  16850. };
  16851. characterMakers["Kyrehx"] = () => {
  16852. return makeCharacter(
  16853. "Kyrehx",
  16854. "Kyrehx",
  16855. {
  16856. front: {
  16857. height: math.unit(8, "feet"),
  16858. weight: math.unit(600, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/kyrehx/front.svg",
  16862. extra: 1195/1095,
  16863. bottom: 0.034
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Micro",
  16870. height: math.unit(2, "inches")
  16871. },
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(8, "feet"),
  16875. default: true
  16876. },
  16877. {
  16878. name: "Macro",
  16879. height: math.unit(255, "feet")
  16880. },
  16881. ]
  16882. )
  16883. };
  16884. characterMakers["Xang"] = () => {
  16885. return makeCharacter(
  16886. "Xang",
  16887. "Xangoose",
  16888. {
  16889. front: {
  16890. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16891. weight: math.unit(184, "lb"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/xang/front.svg",
  16895. extra: 845/755
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16903. default: true
  16904. },
  16905. {
  16906. name: "Macro",
  16907. height: math.unit(0.935 * 146, "feet")
  16908. },
  16909. {
  16910. name: "Megamacro",
  16911. height: math.unit(0.935 * 3, "miles")
  16912. },
  16913. ]
  16914. )
  16915. };
  16916. characterMakers["Doc Weardno"] = () => {
  16917. return makeCharacter(
  16918. "Doc Weardno",
  16919. "DrWeardno",
  16920. {
  16921. frontDressed: {
  16922. height: math.unit(5 + 7/12, "feet"),
  16923. weight: math.unit(140, "lb"),
  16924. name: "Front (Dressed)",
  16925. image: {
  16926. source: "./media/characters/doc-weardno/front-dressed.svg",
  16927. extra: 263/234
  16928. }
  16929. },
  16930. backDressed: {
  16931. height: math.unit(5 + 7/12, "feet"),
  16932. weight: math.unit(140, "lb"),
  16933. name: "Back (Dressed)",
  16934. image: {
  16935. source: "./media/characters/doc-weardno/back-dressed.svg",
  16936. extra: 266/238
  16937. }
  16938. },
  16939. front: {
  16940. height: math.unit(5 + 7/12, "feet"),
  16941. weight: math.unit(140, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/doc-weardno/front.svg",
  16945. extra: 254/233
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Micro",
  16952. height: math.unit(3, "inches")
  16953. },
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(5 + 7/12, "feet"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Macro",
  16961. height: math.unit(25, "feet")
  16962. },
  16963. {
  16964. name: "Megamacro",
  16965. height: math.unit(2, "miles")
  16966. },
  16967. ]
  16968. )
  16969. };
  16970. characterMakers["Seth Whilst"] = () => {
  16971. return makeCharacter(
  16972. "Seth Whilst",
  16973. "SethWhilst",
  16974. {
  16975. front: {
  16976. height: math.unit(6 + 2/12, "feet"),
  16977. weight: math.unit(153, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/seth-whilst/front.svg",
  16981. bottom: 0.07
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Micro",
  16988. height: math.unit(5, "inches")
  16989. },
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(6 + 2/12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. )
  16997. };
  16998. characterMakers["Pocket Jabari"] = () => {
  16999. return makeCharacter(
  17000. "Pocket Jabari",
  17001. "PocketJabari",
  17002. {
  17003. front: {
  17004. height: math.unit(3, "inches"),
  17005. weight: math.unit(8, "grams"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/pocket-jabari/front.svg",
  17009. extra: 1024/974,
  17010. bottom: 0.039
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Minimicro",
  17017. height: math.unit(8, "mm")
  17018. },
  17019. {
  17020. name: "Micro",
  17021. height: math.unit(3, "inches"),
  17022. default: true
  17023. },
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(3, "feet")
  17027. },
  17028. ]
  17029. )
  17030. };
  17031. characterMakers["Sapphy"] = () => {
  17032. return makeCharacter(
  17033. "Sapphy",
  17034. "Sapphy",
  17035. {
  17036. front: {
  17037. height: math.unit(15, "feet"),
  17038. weight: math.unit(3280, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/sapphy/front.svg",
  17042. extra: 671/577,
  17043. bottom: 0.085
  17044. }
  17045. },
  17046. back: {
  17047. height: math.unit(15, "feet"),
  17048. weight: math.unit(3280, "lb"),
  17049. name: "Back",
  17050. image: {
  17051. source: "./media/characters/sapphy/back.svg",
  17052. extra: 631/607,
  17053. bottom: 0.045
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(15, "feet")
  17061. },
  17062. {
  17063. name: "Casual Macro",
  17064. height: math.unit(120, "feet")
  17065. },
  17066. {
  17067. name: "Macro",
  17068. height: math.unit(2150, "feet"),
  17069. default: true
  17070. },
  17071. {
  17072. name: "Megamacro",
  17073. height: math.unit(8, "miles")
  17074. },
  17075. {
  17076. name: "Galaxy Mom",
  17077. height: math.unit(6, "megalightyears")
  17078. },
  17079. ]
  17080. )
  17081. };
  17082. characterMakers["Kiro"] = () => {
  17083. return makeCharacter(
  17084. "Kiro",
  17085. "Keeya",
  17086. {
  17087. front: {
  17088. height: math.unit(6, "feet"),
  17089. weight: math.unit(170, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/kiro/front.svg",
  17093. extra: 1064/1012,
  17094. bottom: 0.052
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Micro",
  17101. height: math.unit(6, "inches")
  17102. },
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6, "feet"),
  17106. default: true
  17107. },
  17108. {
  17109. name: "Macro",
  17110. height: math.unit(72, "feet")
  17111. },
  17112. ]
  17113. )
  17114. };
  17115. characterMakers["Irishfox"] = () => {
  17116. return makeCharacter(
  17117. "Irishfox",
  17118. "IrishFox",
  17119. {
  17120. front: {
  17121. height: math.unit(5 + 9/12, "feet"),
  17122. weight: math.unit(175, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/irishfox/front.svg",
  17126. extra: 1912/1680,
  17127. bottom: 0.02
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Nano",
  17134. height: math.unit(1, "mm")
  17135. },
  17136. {
  17137. name: "Micro",
  17138. height: math.unit(2, "inches")
  17139. },
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(5 + 9/12, "feet"),
  17143. default: true
  17144. },
  17145. {
  17146. name: "Macro",
  17147. height: math.unit(45, "feet")
  17148. },
  17149. ]
  17150. )
  17151. };
  17152. characterMakers["Aronai Sieyes"] = () => {
  17153. return makeCharacter(
  17154. "Aronai Sieyes",
  17155. "Aronai",
  17156. {
  17157. front: {
  17158. height: math.unit(6 + 1/12, "feet"),
  17159. weight: math.unit(150, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/aronai-sieyes/front.svg",
  17163. extra: 1556/1480,
  17164. bottom: 0.015
  17165. }
  17166. },
  17167. side: {
  17168. height: math.unit(6 + 1/12, "feet"),
  17169. weight: math.unit(150, "lb"),
  17170. name: "Side",
  17171. image: {
  17172. source: "./media/characters/aronai-sieyes/side.svg",
  17173. extra: 1433/1390,
  17174. bottom: 0.0393
  17175. }
  17176. },
  17177. back: {
  17178. height: math.unit(6 + 1/12, "feet"),
  17179. weight: math.unit(150, "lb"),
  17180. name: "Back",
  17181. image: {
  17182. source: "./media/characters/aronai-sieyes/back.svg",
  17183. extra: 1544/1494,
  17184. bottom: 0.02
  17185. }
  17186. },
  17187. frontClothed: {
  17188. height: math.unit(6 + 1/12, "feet"),
  17189. weight: math.unit(150, "lb"),
  17190. name: "Front (Clothed)",
  17191. image: {
  17192. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17193. extra: 1582/1527
  17194. }
  17195. },
  17196. feral: {
  17197. height: math.unit(18, "feet"),
  17198. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17199. name: "Feral",
  17200. image: {
  17201. source: "./media/characters/aronai-sieyes/feral.svg",
  17202. extra: 1530/1240,
  17203. bottom: 0.035
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(2, "inches")
  17211. },
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(6 + 1/12, "feet"),
  17215. default: true
  17216. }
  17217. ]
  17218. )
  17219. };
  17220. characterMakers["Xuna"] = () => {
  17221. return makeCharacter(
  17222. "Xuna",
  17223. "Xuna",
  17224. {
  17225. front: {
  17226. height: math.unit(12, "feet"),
  17227. weight: math.unit(410, "kg"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/xuna/front.svg",
  17231. extra: 2184/1980
  17232. }
  17233. },
  17234. side: {
  17235. height: math.unit(12, "feet"),
  17236. weight: math.unit(410, "kg"),
  17237. name: "Side",
  17238. image: {
  17239. source: "./media/characters/xuna/side.svg",
  17240. extra: 2184/1980
  17241. }
  17242. },
  17243. back: {
  17244. height: math.unit(12, "feet"),
  17245. weight: math.unit(410, "kg"),
  17246. name: "Back",
  17247. image: {
  17248. source: "./media/characters/xuna/back.svg",
  17249. extra: 2184/1980
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Nano glow",
  17256. height: math.unit(10, "nm")
  17257. },
  17258. {
  17259. name: "Micro floof",
  17260. height: math.unit(0.3, "m")
  17261. },
  17262. {
  17263. name: "Huggable softy boi",
  17264. height: math.unit(3.6576, "m"),
  17265. default: true
  17266. },
  17267. {
  17268. name: "Admirable floof",
  17269. height: math.unit(80, "meters")
  17270. },
  17271. {
  17272. name: "Gentle macro",
  17273. height: math.unit(300, "meters")
  17274. },
  17275. {
  17276. name: "Very careful floof",
  17277. height: math.unit(3200, "meters")
  17278. },
  17279. {
  17280. name: "The mega floof",
  17281. height: math.unit(36000, "meters")
  17282. },
  17283. {
  17284. name: "Giga-fur-Wicker",
  17285. height: math.unit(4800000, "meters")
  17286. },
  17287. {
  17288. name: "Licky world",
  17289. height: math.unit(20000000, "meters")
  17290. },
  17291. {
  17292. name: "Floofy cyan sun",
  17293. height: math.unit(1500000000, "meters")
  17294. },
  17295. {
  17296. name: "Milky Wicker",
  17297. height: math.unit(1000000000000000000000, "meters")
  17298. },
  17299. {
  17300. name: "The observing Wicker",
  17301. height: math.unit(999999999999999999999999999, "meters")
  17302. },
  17303. ]
  17304. )
  17305. };
  17306. characterMakers["Arokha Sieyes"] = () => {
  17307. return makeCharacter(
  17308. "Arokha Sieyes",
  17309. "Aronai",
  17310. {
  17311. front: {
  17312. height: math.unit(5 + 9/12, "feet"),
  17313. weight: math.unit(150, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/arokha-sieyes/front.svg",
  17317. extra: 1425/1284,
  17318. bottom: 0.05
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(5 + 9/12, "feet")
  17326. },
  17327. {
  17328. name: "Macro",
  17329. height: math.unit(30, "meters"),
  17330. default: true
  17331. },
  17332. ]
  17333. )
  17334. };
  17335. characterMakers["Arokh Sieyes"] = () => {
  17336. return makeCharacter(
  17337. "Arokh Sieyes",
  17338. "Aronai",
  17339. {
  17340. front: {
  17341. height: math.unit(6, "feet"),
  17342. weight: math.unit(180, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/arokh-sieyes/front.svg",
  17346. extra: 1830/1769,
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(6, "feet")
  17355. },
  17356. {
  17357. name: "Macro",
  17358. height: math.unit(30, "meters"),
  17359. default: true
  17360. },
  17361. ]
  17362. )
  17363. };
  17364. characterMakers["Goldeneye"] = () => {
  17365. return makeCharacter(
  17366. "Goldeneye",
  17367. "Goldeneye Gryphon",
  17368. {
  17369. side: {
  17370. height: math.unit(13 + 1/12, "feet"),
  17371. weight: math.unit(8.5, "tonnes"),
  17372. name: "Side",
  17373. image: {
  17374. source: "./media/characters/goldeneye/side.svg",
  17375. extra: 1182/778,
  17376. bottom: 0.067
  17377. }
  17378. },
  17379. paw: {
  17380. height: math.unit(3.4, "feet"),
  17381. name: "Paw",
  17382. image: {
  17383. source: "./media/characters/goldeneye/paw.svg"
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(13 + 1/12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. )
  17395. };
  17396. characterMakers["Leonardo Lycheborne"] = () => {
  17397. return makeCharacter(
  17398. "Leonardo Lycheborne",
  17399. "Leo",
  17400. {
  17401. front: {
  17402. height: math.unit(6 + 1/12, "feet"),
  17403. weight: math.unit(210, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/leonardo-lycheborne/front.svg",
  17407. extra: 390/365,
  17408. bottom: 0.032
  17409. }
  17410. },
  17411. side: {
  17412. height: math.unit(6 + 1/12, "feet"),
  17413. weight: math.unit(210, "lb"),
  17414. name: "Side",
  17415. image: {
  17416. source: "./media/characters/leonardo-lycheborne/side.svg",
  17417. extra: 390/365,
  17418. bottom: 0.005
  17419. }
  17420. },
  17421. back: {
  17422. height: math.unit(6 + 1/12, "feet"),
  17423. weight: math.unit(210, "lb"),
  17424. name: "Back",
  17425. image: {
  17426. source: "./media/characters/leonardo-lycheborne/back.svg",
  17427. extra: 392/366,
  17428. bottom: 0.01
  17429. }
  17430. },
  17431. hand: {
  17432. height: math.unit(1.08, "feet"),
  17433. name: "Hand",
  17434. image: {
  17435. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17436. }
  17437. },
  17438. foot: {
  17439. height: math.unit(1.32, "feet"),
  17440. name: "Foot",
  17441. image: {
  17442. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17443. }
  17444. },
  17445. were: {
  17446. height: math.unit(20, "feet"),
  17447. weight: math.unit(7800, "lb"),
  17448. name: "Were",
  17449. image: {
  17450. source: "./media/characters/leonardo-lycheborne/were.svg",
  17451. extra: 308/294,
  17452. bottom: 0.048
  17453. }
  17454. },
  17455. feral: {
  17456. height: math.unit(7.5, "feet"),
  17457. weight: math.unit(600, "lb"),
  17458. name: "Feral",
  17459. image: {
  17460. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17461. extra: 210/186,
  17462. bottom: 0.108
  17463. }
  17464. },
  17465. taur: {
  17466. height: math.unit(11, "feet"),
  17467. weight: math.unit(3300, "lb"),
  17468. name: "Taur",
  17469. image: {
  17470. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17471. extra: 320/303,
  17472. bottom: 0.025
  17473. }
  17474. },
  17475. barghest: {
  17476. height: math.unit(11, "feet"),
  17477. weight: math.unit(1300, "lb"),
  17478. name: "Barghest",
  17479. image: {
  17480. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17481. extra: 323/302,
  17482. bottom: 0.027
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(6 + 1/12, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. )
  17494. };
  17495. characterMakers["Jet"] = () => {
  17496. return makeCharacter(
  17497. "Jet",
  17498. "JetHyena",
  17499. {
  17500. front: {
  17501. height: math.unit(10, "feet"),
  17502. weight: math.unit(350, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/jet/front.svg",
  17506. extra: 2050/1980,
  17507. bottom: 0.013
  17508. }
  17509. },
  17510. back: {
  17511. height: math.unit(10, "feet"),
  17512. weight: math.unit(350, "lb"),
  17513. name: "Back",
  17514. image: {
  17515. source: "./media/characters/jet/back.svg",
  17516. extra: 2050/1980,
  17517. bottom: 0.013
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Micro",
  17524. height: math.unit(6, "inches")
  17525. },
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(10, "feet"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(100, "feet")
  17534. },
  17535. ]
  17536. )
  17537. };
  17538. characterMakers["Tanarath"] = () => {
  17539. return makeCharacter(
  17540. "Tanarath",
  17541. "TanarathDragon",
  17542. {
  17543. front: {
  17544. height: math.unit(15, "feet"),
  17545. weight: math.unit(2800, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/tanarath/front.svg",
  17549. extra: 2392/2220,
  17550. bottom: 0.03
  17551. }
  17552. },
  17553. back: {
  17554. height: math.unit(15, "feet"),
  17555. weight: math.unit(2800, "lb"),
  17556. name: "Back",
  17557. image: {
  17558. source: "./media/characters/tanarath/back.svg",
  17559. extra: 2392/2220,
  17560. bottom: 0.03
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(15, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. )
  17572. };
  17573. characterMakers["Patty CattyBatty"] = () => {
  17574. return makeCharacter(
  17575. "Patty CattyBatty",
  17576. "Archangel2100",
  17577. {
  17578. front: {
  17579. height: math.unit(7 + 1/12, "feet"),
  17580. weight: math.unit(175, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/patty-cattybatty/front.svg",
  17584. extra: 908/874,
  17585. bottom: 0.025
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Micro",
  17592. height: math.unit(1, "inch")
  17593. },
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(7 + 1/12, "feet")
  17597. },
  17598. {
  17599. name: "Mini Macro",
  17600. height: math.unit(155, "feet")
  17601. },
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(1077, "feet")
  17605. },
  17606. {
  17607. name: "Mega Macro",
  17608. height: math.unit(47650, "feet"),
  17609. default: true
  17610. },
  17611. {
  17612. name: "Giga Macro",
  17613. height: math.unit(440, "miles")
  17614. },
  17615. {
  17616. name: "Tera Macro",
  17617. height: math.unit(8700, "miles")
  17618. },
  17619. {
  17620. name: "Planetary Macro",
  17621. height: math.unit(32700, "miles")
  17622. },
  17623. {
  17624. name: "Solar Macro",
  17625. height: math.unit(550000, "miles")
  17626. },
  17627. {
  17628. name: "Celestial Macro",
  17629. height: math.unit(2.5, "AU")
  17630. },
  17631. ]
  17632. )
  17633. };
  17634. characterMakers["Cappu"] = () => {
  17635. return makeCharacter(
  17636. "Cappu",
  17637. "CappuTheSheep",
  17638. {
  17639. front: {
  17640. height: math.unit(4 + 5/12, "feet"),
  17641. weight: math.unit(90, "lb"),
  17642. name: "Front",
  17643. image: {
  17644. source: "./media/characters/cappu/front.svg",
  17645. extra: 1247/1152,
  17646. bottom: 0.012
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Normal",
  17653. height: math.unit(4 + 5/12, "feet"),
  17654. default: true
  17655. },
  17656. ]
  17657. )
  17658. };
  17659. characterMakers["Sebi"] = () => {
  17660. return makeCharacter(
  17661. "Sebi",
  17662. "DeathyWolfi",
  17663. {
  17664. frontDressed: {
  17665. height: math.unit(70, "cm"),
  17666. weight: math.unit(6, "kg"),
  17667. name: "Front (Dressed)",
  17668. image: {
  17669. source: "./media/characters/sebi/front-dressed.svg",
  17670. extra: 713.5/686.5,
  17671. bottom: 0.003
  17672. }
  17673. },
  17674. front: {
  17675. height: math.unit(70, "cm"),
  17676. weight: math.unit(5, "kg"),
  17677. name: "Front",
  17678. image: {
  17679. source: "./media/characters/sebi/front.svg",
  17680. extra: 713.5/686.5,
  17681. bottom: 0.003
  17682. }
  17683. }
  17684. },
  17685. [
  17686. {
  17687. name: "Normal",
  17688. height: math.unit(70, "cm"),
  17689. default: true
  17690. },
  17691. {
  17692. name: "Macro",
  17693. height: math.unit(8, "meters")
  17694. },
  17695. ]
  17696. )
  17697. };
  17698. characterMakers["Typhek"] = () => {
  17699. return makeCharacter(
  17700. "Typhek",
  17701. "Adam0800",
  17702. {
  17703. front: {
  17704. height: math.unit(6, "feet"),
  17705. weight: math.unit(150, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/typhek/front.svg",
  17709. extra: 1948/1929,
  17710. bottom: 0.025
  17711. }
  17712. },
  17713. side: {
  17714. height: math.unit(6, "feet"),
  17715. weight: math.unit(150, "lb"),
  17716. name: "Side",
  17717. image: {
  17718. source: "./media/characters/typhek/side.svg",
  17719. extra: 2034/2010,
  17720. bottom: 0.003
  17721. }
  17722. },
  17723. back: {
  17724. height: math.unit(6, "feet"),
  17725. weight: math.unit(150, "lb"),
  17726. name: "Back",
  17727. image: {
  17728. source: "./media/characters/typhek/back.svg",
  17729. extra: 2005/1978,
  17730. bottom: 0.004
  17731. }
  17732. },
  17733. palm: {
  17734. height: math.unit(1.2, "feet"),
  17735. name: "Palm",
  17736. image: {
  17737. source: "./media/characters/typhek/palm.svg"
  17738. }
  17739. },
  17740. fist: {
  17741. height: math.unit(1.1, "feet"),
  17742. name: "Fist",
  17743. image: {
  17744. source: "./media/characters/typhek/fist.svg"
  17745. }
  17746. },
  17747. foot: {
  17748. height: math.unit(1.57, "feet"),
  17749. name: "Foot",
  17750. image: {
  17751. source: "./media/characters/typhek/foot.svg"
  17752. }
  17753. },
  17754. sole: {
  17755. height: math.unit(2.05, "feet"),
  17756. name: "Sole",
  17757. image: {
  17758. source: "./media/characters/typhek/sole.svg"
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(40, "stories"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Megamacro",
  17770. height: math.unit(1, "mile")
  17771. },
  17772. {
  17773. name: "Gigamacro",
  17774. height: math.unit(4000, "solarradii")
  17775. },
  17776. {
  17777. name: "Universal",
  17778. height: math.unit(1.1, "universes")
  17779. }
  17780. ]
  17781. )
  17782. };
  17783. characterMakers["Kassy"] = () => {
  17784. return makeCharacter(
  17785. "Kassy",
  17786. "kclt",
  17787. {
  17788. side: {
  17789. height: math.unit(5 + 7/12, "feet"),
  17790. weight: math.unit(150, "lb"),
  17791. name: "Side",
  17792. image: {
  17793. source: "./media/characters/kassy/side.svg",
  17794. extra: 1280/1225,
  17795. bottom: 0.002
  17796. }
  17797. },
  17798. front: {
  17799. height: math.unit(5 + 7/12, "feet"),
  17800. weight: math.unit(150, "lb"),
  17801. name: "Front",
  17802. image: {
  17803. source: "./media/characters/kassy/front.svg",
  17804. extra: 1280/1225,
  17805. bottom: 0.025
  17806. }
  17807. },
  17808. back: {
  17809. height: math.unit(5 + 7/12, "feet"),
  17810. weight: math.unit(150, "lb"),
  17811. name: "Back",
  17812. image: {
  17813. source: "./media/characters/kassy/back.svg",
  17814. extra: 1280/1225,
  17815. bottom: 0.002
  17816. }
  17817. },
  17818. foot: {
  17819. height: math.unit(1.266, "feet"),
  17820. name: "Foot",
  17821. image: {
  17822. source: "./media/characters/kassy/foot.svg"
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(5 + 7/12, "feet")
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(137, "feet"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Megamacro",
  17838. height: math.unit(1, "mile")
  17839. },
  17840. ]
  17841. )
  17842. };
  17843. characterMakers["Neil"] = () => {
  17844. return makeCharacter(
  17845. "Neil",
  17846. "mZmm",
  17847. {
  17848. front: {
  17849. height: math.unit(6 + 1/12, "feet"),
  17850. weight: math.unit(200, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/neil/front.svg",
  17854. extra: 1326/1250,
  17855. bottom: 0.023
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(6 + 1/12, "feet"),
  17863. default: true
  17864. },
  17865. {
  17866. name: "Macro",
  17867. height: math.unit(200, "feet")
  17868. },
  17869. ]
  17870. )
  17871. };
  17872. characterMakers["Atticus"] = () => {
  17873. return makeCharacter(
  17874. "Atticus",
  17875. "mZmm",
  17876. {
  17877. front: {
  17878. height: math.unit(5 + 9/12, "feet"),
  17879. weight: math.unit(190, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/atticus/front.svg",
  17883. extra: 2934/2785,
  17884. bottom: 0.025
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(5 + 9/12, "feet"),
  17892. default: true
  17893. },
  17894. {
  17895. name: "Macro",
  17896. height: math.unit(180, "feet")
  17897. },
  17898. ]
  17899. )
  17900. };
  17901. characterMakers["Milo"] = () => {
  17902. return makeCharacter(
  17903. "Milo",
  17904. "mZmm",
  17905. {
  17906. side: {
  17907. height: math.unit(9, "feet"),
  17908. weight: math.unit(650, "lb"),
  17909. name: "Side",
  17910. image: {
  17911. source: "./media/characters/milo/side.svg",
  17912. extra: 2644/2310,
  17913. bottom: 0.032
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(9, "feet"),
  17921. default: true
  17922. },
  17923. {
  17924. name: "Macro",
  17925. height: math.unit(300, "feet")
  17926. },
  17927. ]
  17928. )
  17929. };
  17930. characterMakers["Ijzer"] = () => {
  17931. return makeCharacter(
  17932. "Ijzer",
  17933. "Ijzer",
  17934. {
  17935. side: {
  17936. height: math.unit(8, "meters"),
  17937. weight: math.unit(90000, "kg"),
  17938. name: "Side",
  17939. image: {
  17940. source: "./media/characters/ijzer/side.svg",
  17941. extra: 2756/1600,
  17942. bottom: 0.01
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Small",
  17949. height: math.unit(3, "meters")
  17950. },
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(8, "meters"),
  17954. default: true
  17955. },
  17956. {
  17957. name: "Normal+",
  17958. height: math.unit(10, "meters")
  17959. },
  17960. {
  17961. name: "Bigger",
  17962. height: math.unit(24, "meters")
  17963. },
  17964. {
  17965. name: "Huge",
  17966. height: math.unit(80, "meters")
  17967. },
  17968. ]
  17969. )
  17970. };
  17971. characterMakers["Luca Cervicum"] = () => {
  17972. return makeCharacter(
  17973. "Luca Cervicum",
  17974. "Luca Cervicum",
  17975. {
  17976. front: {
  17977. height: math.unit(6 + 2/12, "feet"),
  17978. weight: math.unit(153, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/luca-cervicum/front.svg",
  17982. extra: 370/327,
  17983. bottom: 0.015
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(6 + 2/12, "feet"),
  17988. weight: math.unit(153, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/luca-cervicum/back.svg",
  17992. extra: 367/333,
  17993. bottom: 0.005
  17994. }
  17995. },
  17996. frontGear: {
  17997. height: math.unit(6 + 2/12, "feet"),
  17998. weight: math.unit(173, "lb"),
  17999. name: "Front (Gear)",
  18000. image: {
  18001. source: "./media/characters/luca-cervicum/front-gear.svg",
  18002. extra: 377/333,
  18003. bottom: 0.006
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(6 + 2/12, "feet"),
  18011. default: true
  18012. },
  18013. ]
  18014. )
  18015. };
  18016. characterMakers["Oliver"] = () => {
  18017. return makeCharacter(
  18018. "Oliver",
  18019. "Fidchell",
  18020. {
  18021. front: {
  18022. height: math.unit(6 + 1/12, "feet"),
  18023. weight: math.unit(304, "lb"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/oliver/front.svg",
  18027. extra: 157/143,
  18028. bottom: 0.08
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(6 + 1/12, "feet"),
  18036. default: true
  18037. },
  18038. ]
  18039. )
  18040. };
  18041. characterMakers["Shane"] = () => {
  18042. return makeCharacter(
  18043. "Shane",
  18044. "Fidchell",
  18045. {
  18046. front: {
  18047. height: math.unit(5 + 7/12, "feet"),
  18048. weight: math.unit(140, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/shane/front.svg",
  18052. extra: 304/289,
  18053. bottom: 0.005
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(5 + 7/12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. )
  18065. };
  18066. characterMakers["Shin"] = () => {
  18067. return makeCharacter(
  18068. "Shin",
  18069. "Fidchell",
  18070. {
  18071. front: {
  18072. height: math.unit(5 + 9/12, "feet"),
  18073. weight: math.unit(178, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/shin/front.svg",
  18077. extra: 159/151,
  18078. bottom: 0.015
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(5 + 9/12, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. )
  18090. };
  18091. characterMakers["Xerxes"] = () => {
  18092. return makeCharacter(
  18093. "Xerxes",
  18094. "Fidchell",
  18095. {
  18096. front: {
  18097. height: math.unit(5 + 10/12, "feet"),
  18098. weight: math.unit(168, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/xerxes/front.svg",
  18102. extra: 282/260,
  18103. bottom: 0.045
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(5 + 10/12, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. )
  18115. };
  18116. characterMakers["Chaska"] = () => {
  18117. return makeCharacter(
  18118. "Chaska",
  18119. "Fidchell",
  18120. {
  18121. front: {
  18122. height: math.unit(6 + 7/12, "feet"),
  18123. weight: math.unit(208, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/chaska/front.svg",
  18127. extra: 332/319,
  18128. bottom: 0.015
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(6 + 7/12, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. )
  18140. };
  18141. characterMakers["Enuk"] = () => {
  18142. return makeCharacter(
  18143. "Enuk",
  18144. "Fidchell",
  18145. {
  18146. front: {
  18147. height: math.unit(5 + 8/12, "feet"),
  18148. weight: math.unit(208, "lb"),
  18149. name: "Front",
  18150. image: {
  18151. source: "./media/characters/enuk/front.svg",
  18152. extra: 437/406,
  18153. bottom: 0.02
  18154. }
  18155. },
  18156. },
  18157. [
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(5 + 8/12, "feet"),
  18161. default: true
  18162. },
  18163. ]
  18164. )
  18165. };
  18166. characterMakers["Bruun"] = () => {
  18167. return makeCharacter(
  18168. "Bruun",
  18169. "Fidchell",
  18170. {
  18171. front: {
  18172. height: math.unit(5 + 10/12, "feet"),
  18173. weight: math.unit(252, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/bruun/front.svg",
  18177. extra: 197/187,
  18178. bottom: 0.012
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(5 + 10/12, "feet"),
  18186. default: true
  18187. },
  18188. ]
  18189. )
  18190. };
  18191. characterMakers["Alexeev"] = () => {
  18192. return makeCharacter(
  18193. "Alexeev",
  18194. "Fidchell",
  18195. {
  18196. front: {
  18197. height: math.unit(6 + 10/12, "feet"),
  18198. weight: math.unit(255, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/alexeev/front.svg",
  18202. extra: 213/200,
  18203. bottom: 0.05
  18204. }
  18205. },
  18206. },
  18207. [
  18208. {
  18209. name: "Normal",
  18210. height: math.unit(6 + 10/12, "feet"),
  18211. default: true
  18212. },
  18213. ]
  18214. )
  18215. };
  18216. characterMakers["Evelyn"] = () => {
  18217. return makeCharacter(
  18218. "Evelyn",
  18219. "Fidchell",
  18220. {
  18221. front: {
  18222. height: math.unit(2 + 8/12, "feet"),
  18223. weight: math.unit(22, "lb"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/evelyn/front.svg",
  18227. extra: 208/180
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(2 + 8/12, "feet"),
  18235. default: true
  18236. },
  18237. ]
  18238. )
  18239. };
  18240. characterMakers["Inca"] = () => {
  18241. return makeCharacter(
  18242. "Inca",
  18243. "Fidchell",
  18244. {
  18245. front: {
  18246. height: math.unit(5 + 9/12, "feet"),
  18247. weight: math.unit(139, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/inca/front.svg",
  18251. extra: 294/291,
  18252. bottom: 0.03
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(5 + 9/12, "feet"),
  18260. default: true
  18261. },
  18262. ]
  18263. )
  18264. };
  18265. characterMakers["Magdalene"] = () => {
  18266. return makeCharacter(
  18267. "Magdalene",
  18268. "Fidchell",
  18269. {
  18270. front: {
  18271. height: math.unit(5 + 1/12, "feet"),
  18272. weight: math.unit(84, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/magdalene/front.svg",
  18276. extra: 293/273
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(5 + 1/12, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. )
  18288. };
  18289. characterMakers["Mera"] = () => {
  18290. return makeCharacter(
  18291. "Mera",
  18292. "Fidchell",
  18293. {
  18294. front: {
  18295. height: math.unit(6 + 3/12, "feet"),
  18296. weight: math.unit(185, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/mera/front.svg",
  18300. extra: 291/277,
  18301. bottom: 0.03
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(6 + 3/12, "feet"),
  18309. default: true
  18310. },
  18311. ]
  18312. )
  18313. };
  18314. //characters
  18315. function makeCharacters() {
  18316. const results = [];
  18317. Object.entries(characterMakers).forEach(([key, value]) => {
  18318. results.push({
  18319. name: key,
  18320. constructor: value
  18321. });
  18322. });
  18323. results.push({
  18324. name: "Aigey",
  18325. constructor: makeAigey
  18326. });
  18327. results.push({
  18328. name: "Malik",
  18329. constructor: makeMalik
  18330. });
  18331. results.push({
  18332. name: "Sefer",
  18333. constructor: makeSefer
  18334. });
  18335. return results;
  18336. }