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

14121 строка
370 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, defaultSize, 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. if (defaultSize) {
  51. entity.views[entity.defaultView].height = defaultSize;
  52. }
  53. return entity;
  54. }
  55. characterMakers["Fen"] = () => {
  56. return makeCharacter(
  57. "Fen",
  58. "chemicalcrux",
  59. {
  60. back: {
  61. height: math.unit(2.2428, "meter"),
  62. weight: math.unit(124.738, "kg"),
  63. name: "Back",
  64. image: {
  65. source: "./media/characters/fen/back.svg",
  66. extra: 1025/935
  67. },
  68. info: {
  69. description: {
  70. mode: "append",
  71. text: "\n\nHe is not currently looking at you."
  72. }
  73. }
  74. },
  75. full: {
  76. height: math.unit(1.34, "meter"),
  77. weight: math.unit(225, "kg"),
  78. name: "Full",
  79. image: {
  80. source: "./media/characters/fen/full.svg"
  81. },
  82. info: {
  83. description: {
  84. mode: "append",
  85. text: "\n\nMunch."
  86. }
  87. }
  88. }
  89. },
  90. [
  91. {
  92. name: "Normal",
  93. height: math.unit(2.2428, "meter")
  94. },
  95. {
  96. name: "Big",
  97. height: math.unit(12, "feet")
  98. },
  99. {
  100. name: "Minimacro",
  101. height: math.unit(30, "meter"),
  102. default: true,
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro",
  112. height: math.unit(100, "meter"),
  113. info: {
  114. description: {
  115. mode: "append",
  116. text: "\n\nTOO DAMN BIG"
  117. }
  118. }
  119. },
  120. {
  121. name: "Macro+",
  122. height: math.unit(1000, "meter")
  123. },
  124. {
  125. name: "Megamacro",
  126. height: math.unit(10, "miles")
  127. }
  128. ],
  129. math.unit(100, "meter"),
  130. {
  131. description: {
  132. title: "Bio",
  133. text: "Very furry. Sheds on everything."
  134. }
  135. }
  136. )
  137. };
  138. characterMakers["Sofia"] = () => {
  139. return makeCharacter(
  140. "Sofia",
  141. "ZakuraTech",
  142. {
  143. front: {
  144. height: math.unit(183, "cm"),
  145. weight: math.unit(80, "kg"),
  146. name: "Front",
  147. image: {
  148. source: "./media/characters/sofia/front.svg",
  149. bottom: 0.01,
  150. extra: 1 / (1 - 0.01)
  151. }
  152. },
  153. frontAlt: {
  154. height: math.unit(183, "cm"),
  155. weight: math.unit(80, "kg"),
  156. name: "Front (alt)",
  157. image: {
  158. source: "./media/characters/sofia/front-alt.svg"
  159. }
  160. },
  161. back: {
  162. height: math.unit(183, "cm"),
  163. weight: math.unit(80, "kg"),
  164. name: "Back",
  165. image: {
  166. source: "./media/characters/sofia/back.svg"
  167. }
  168. },
  169. },
  170. [
  171. {
  172. name: "Normal",
  173. height: math.unit(1.83, "meter")
  174. },
  175. {
  176. name: "Macro",
  177. height: math.unit(96, "feet")
  178. },
  179. {
  180. name: "Megamerger",
  181. height: math.unit(650, "feet")
  182. },
  183. ],
  184. math.unit(96, "feet")
  185. )
  186. };
  187. characterMakers["March"] = () => {
  188. return makeCharacter(
  189. "March",
  190. "March-Dragon",
  191. {
  192. front: {
  193. height: math.unit(7, "feet"),
  194. weight: math.unit(100, "kg"),
  195. name: "Front",
  196. image: {
  197. source: "./media/characters/march/front.svg",
  198. extra: (1 / (1 - 0.015)),
  199. bottom: 0.015
  200. }
  201. },
  202. foot: {
  203. height: math.unit(0.9, "feet"),
  204. name: "Foot",
  205. image: {
  206. source: "./media/characters/march/foot.svg"
  207. }
  208. },
  209. },
  210. [
  211. {
  212. name: "Normal",
  213. height: math.unit(7.9, "feet")
  214. },
  215. {
  216. name: "Macro",
  217. height: math.unit(220, "meters")
  218. },
  219. {
  220. name: "Megamacro",
  221. height: math.unit(2.98, "km"),
  222. default: true
  223. },
  224. {
  225. name: "Gigamacro",
  226. height: math.unit(15963, "km")
  227. },
  228. {
  229. name: "Teramacro",
  230. height: math.unit(2980000000, "km")
  231. },
  232. {
  233. name: "Examacro",
  234. height: math.unit(250, "parsecs")
  235. },
  236. ]
  237. )
  238. };
  239. characterMakers["Noir"] = () => {
  240. return makeCharacter(
  241. "Noir",
  242. "March-Dragon",
  243. {
  244. front: {
  245. height: math.unit(6, "feet"),
  246. weight: math.unit(60, "kg"),
  247. name: "Front",
  248. image: {
  249. source: "./media/characters/noir/front.svg",
  250. extra: (1 / (1 - 0.032)),
  251. bottom: 0.032
  252. }
  253. },
  254. },
  255. [
  256. {
  257. name: "Normal",
  258. height: math.unit(6.6, "feet")
  259. },
  260. {
  261. name: "Macro",
  262. height: math.unit(500, "feet")
  263. },
  264. {
  265. name: "Megamacro",
  266. height: math.unit(2.5, "km"),
  267. default: true
  268. },
  269. {
  270. name: "Gigamacro",
  271. height: math.unit(22500, "km")
  272. },
  273. {
  274. name: "Teramacro",
  275. height: math.unit(2500000000, "km")
  276. },
  277. {
  278. name: "Examacro",
  279. height: math.unit(200, "parsecs")
  280. },
  281. ]
  282. )
  283. };
  284. characterMakers["Okuri"] = () => {
  285. return makeCharacter(
  286. "Okuri",
  287. "OrinoMechadragon",
  288. {
  289. front: {
  290. height: math.unit(7, "feet"),
  291. weight: math.unit(100, "kg"),
  292. name: "Front",
  293. image: {
  294. source: "./media/characters/okuri/front.svg",
  295. extra: (1 / (1 - 0.037)),
  296. bottom: 0.037
  297. }
  298. },
  299. back: {
  300. height: math.unit(7, "feet"),
  301. weight: math.unit(100, "kg"),
  302. name: "Back",
  303. image: {
  304. source: "./media/characters/okuri/back.svg",
  305. extra: (1 / (1 - 0.007)),
  306. bottom: 0.007
  307. }
  308. },
  309. },
  310. [
  311. {
  312. name: "Megamacro",
  313. height: math.unit(100, "miles"),
  314. default: true
  315. },
  316. ]
  317. )
  318. };
  319. characterMakers["Manny"] = () => {
  320. return makeCharacter(
  321. "Manny",
  322. "Dialuca01",
  323. {
  324. front: {
  325. height: math.unit(7, "feet"),
  326. weight: math.unit(100, "kg"),
  327. name: "Front",
  328. image: {
  329. source: "./media/characters/manny/front.svg",
  330. extra: 1 / (1 - 0.06),
  331. bottom: 0.06
  332. }
  333. },
  334. back: {
  335. height: math.unit(7, "feet"),
  336. weight: math.unit(100, "kg"),
  337. name: "Back",
  338. image: {
  339. source: "./media/characters/manny/back.svg",
  340. extra: 1 / (1 - 0.014),
  341. bottom: 0.014
  342. }
  343. },
  344. },
  345. [
  346. {
  347. name: "Normal",
  348. height: math.unit(7, "feet"),
  349. },
  350. {
  351. name: "Macro",
  352. height: math.unit(78, "feet"),
  353. default: true
  354. },
  355. {
  356. name: "Macro+",
  357. height: math.unit(300, "meters")
  358. },
  359. {
  360. name: "Macro++",
  361. height: math.unit(2400, "meters")
  362. },
  363. {
  364. name: "Megamacro",
  365. height: math.unit(5167, "meters")
  366. },
  367. {
  368. name: "Gigamacro",
  369. height: math.unit(41769, "miles")
  370. },
  371. ]
  372. )
  373. };
  374. characterMakers["Adake"] = () => {
  375. return makeCharacter(
  376. "Adake",
  377. "Dialuca01",
  378. {
  379. front: {
  380. height: math.unit(7, "feet"),
  381. weight: math.unit(100, "kg"),
  382. name: "Front",
  383. image: {
  384. source: "./media/characters/adake/front-1.svg"
  385. }
  386. },
  387. frontAlt: {
  388. height: math.unit(7, "feet"),
  389. weight: math.unit(100, "kg"),
  390. name: "Front (Alt)",
  391. image: {
  392. source: "./media/characters/adake/front-2.svg",
  393. extra: (1 / (1 - 0.01)),
  394. bottom: 0.01
  395. }
  396. },
  397. back: {
  398. height: math.unit(7, "feet"),
  399. weight: math.unit(100, "kg"),
  400. name: "Back",
  401. image: {
  402. source: "./media/characters/adake/back.svg",
  403. }
  404. },
  405. kneel: {
  406. height: math.unit(5.385, "feet"),
  407. weight: math.unit(100, "kg"),
  408. name: "Kneeling",
  409. image: {
  410. source: "./media/characters/adake/kneel.svg",
  411. bottom: 0.052
  412. }
  413. },
  414. },
  415. [
  416. {
  417. name: "Normal",
  418. height: math.unit(7, "feet"),
  419. },
  420. {
  421. name: "Macro",
  422. height: math.unit(78, "feet"),
  423. default: true
  424. },
  425. {
  426. name: "Macro+",
  427. height: math.unit(300, "meters")
  428. },
  429. {
  430. name: "Macro++",
  431. height: math.unit(2400, "meters")
  432. },
  433. {
  434. name: "Megamacro",
  435. height: math.unit(5167, "meters")
  436. },
  437. {
  438. name: "Gigamacro",
  439. height: math.unit(41769, "miles")
  440. },
  441. ]
  442. )
  443. };
  444. characterMakers["Elijah"] = () => {
  445. return makeCharacter(
  446. "Elijah",
  447. "Elijah",
  448. {
  449. side: {
  450. height: math.unit(7, "feet"),
  451. weight: math.unit(50, "kg"),
  452. name: "Side",
  453. image: {
  454. source: "./media/characters/elijah/side.svg",
  455. extra: (1 / (1 - 0.065)),
  456. bottom: 0.065
  457. }
  458. },
  459. foot: {
  460. height: math.unit(2.05, "feet"),
  461. name: "Foot",
  462. image: {
  463. source: "./media/characters/elijah/foot.svg"
  464. }
  465. },
  466. },
  467. [
  468. {
  469. name: "Normal",
  470. height: math.unit(1.65, "meters")
  471. },
  472. {
  473. name: "Macro",
  474. height: math.unit(55, "meters"),
  475. default: true
  476. },
  477. {
  478. name: "Macro+",
  479. height: math.unit(105, "meters")
  480. },
  481. ]
  482. )
  483. };
  484. characterMakers["Rai"] = () => {
  485. return makeCharacter(
  486. "Rai",
  487. "shadowblade945",
  488. {
  489. front: {
  490. height: math.unit(7, "feet"),
  491. weight: math.unit(80, "kg"),
  492. name: "Front",
  493. image: {
  494. source: "./media/characters/rai/front.svg",
  495. extra: (1 / (1 - 0.03)),
  496. bottom: 0.03
  497. }
  498. },
  499. side: {
  500. height: math.unit(7, "feet"),
  501. weight: math.unit(80, "kg"),
  502. name: "Side",
  503. image: {
  504. source: "./media/characters/rai/side.svg"
  505. }
  506. },
  507. back: {
  508. height: math.unit(7, "feet"),
  509. weight: math.unit(80, "lb"),
  510. name: "Back",
  511. image: {
  512. source: "./media/characters/rai/back.svg",
  513. extra: (1 / (1 - 0.01)),
  514. bottom: 0.01
  515. }
  516. },
  517. feral: {
  518. height: math.unit(11, "feet"),
  519. weight: math.unit(800, "lb"),
  520. name: "Feral",
  521. image: {
  522. source: "./media/characters/rai/feral.svg",
  523. extra: 1050/659 * (1 / (1 - 0.07)),
  524. bottom: 0.07
  525. }
  526. },
  527. maw: {
  528. height: math.unit(6/3.81416, "feet"),
  529. name: "Maw",
  530. image: {
  531. source: "./media/characters/rai/maw.svg"
  532. }
  533. },
  534. },
  535. [
  536. {
  537. name: "Macro",
  538. height: math.unit(302, "feet"),
  539. default: true
  540. },
  541. ]
  542. )
  543. };
  544. characterMakers["Jazzy"] = () => {
  545. return makeCharacter(
  546. "Jazzy",
  547. "JazzyWolf",
  548. {
  549. front: {
  550. height: math.unit(7, "feet"),
  551. weight: math.unit(80, "kg"),
  552. name: "Front",
  553. image: {
  554. source: "./media/characters/jazzy/front.svg",
  555. extra: (1 / (1 - 0.01)),
  556. bottom: 0.01
  557. }
  558. },
  559. back: {
  560. height: math.unit(7, "feet"),
  561. weight: math.unit(80, "kg"),
  562. name: "Back",
  563. image: {
  564. source: "./media/characters/jazzy/back.svg",
  565. extra: (1 / (1 - 0.01)),
  566. bottom: 0.01
  567. }
  568. },
  569. },
  570. [
  571. {
  572. name: "Macro",
  573. height: math.unit(216, "feet"),
  574. default: true
  575. },
  576. ]
  577. )
  578. };
  579. characterMakers["Flamm"] = () => {
  580. return makeCharacter(
  581. "Flamm",
  582. "Flamm",
  583. {
  584. front: {
  585. height: math.unit(7, "feet"),
  586. weight: math.unit(80, "kg"),
  587. name: "Front",
  588. image: {
  589. source: "./media/characters/flamm/front.svg",
  590. extra: (1 / (1 - 0.02)),
  591. bottom: 0.02
  592. }
  593. },
  594. },
  595. [
  596. {
  597. name: "Normal",
  598. height: math.unit(9.5, "feet")
  599. },
  600. {
  601. name: "Macro",
  602. height: math.unit(200, "feet"),
  603. default: true
  604. },
  605. ]
  606. )
  607. };
  608. characterMakers["Zephiro"] = () => {
  609. return makeCharacter(
  610. "Zephiro",
  611. "Zephiro",
  612. {
  613. front: {
  614. height: math.unit(7, "feet"),
  615. weight: math.unit(80, "kg"),
  616. name: "Front",
  617. image: {
  618. source: "./media/characters/zephiro/front.svg",
  619. extra: 2309/2162 * (1 / (1 - 0.069)),
  620. bottom: 0.069
  621. }
  622. },
  623. side: {
  624. height: math.unit(7, "feet"),
  625. weight: math.unit(80, "kg"),
  626. name: "Side",
  627. image: {
  628. source: "./media/characters/zephiro/side.svg",
  629. extra: 2403/2279 * (1 / (1 - 0.015)),
  630. bottom: 0.015
  631. }
  632. },
  633. back: {
  634. height: math.unit(7, "feet"),
  635. weight: math.unit(80, "kg"),
  636. name: "Back",
  637. image: {
  638. source: "./media/characters/zephiro/back.svg",
  639. extra: 2373/2244 * (1 / (1 - 0.013)),
  640. bottom: 0.013
  641. }
  642. },
  643. },
  644. [
  645. {
  646. name: "Micro",
  647. height: math.unit(3, "inches")
  648. },
  649. {
  650. name: "Normal",
  651. height: math.unit(5 + 3/12, "feet"),
  652. default: true
  653. },
  654. {
  655. name: "Macro",
  656. height: math.unit(118, "feet")
  657. },
  658. ]
  659. )
  660. };
  661. characterMakers["Fory"] = () => {
  662. return makeCharacter(
  663. "Fory",
  664. "Manny",
  665. {
  666. front: {
  667. height: math.unit(7, "feet"),
  668. weight: math.unit(90, "kg"),
  669. name: "Front",
  670. image: {
  671. source: "./media/characters/fory/front.svg",
  672. extra: (1 / (1 - 0.03)),
  673. bottom: 0.03
  674. }
  675. },
  676. },
  677. [
  678. {
  679. name: "Normal",
  680. height: math.unit(5, "feet")
  681. },
  682. {
  683. name: "Macro",
  684. height: math.unit(50, "feet"),
  685. default: true
  686. },
  687. ]
  688. )
  689. };
  690. characterMakers["Kurrikage"] = () => {
  691. return makeCharacter(
  692. "Kurrikage",
  693. "Kurrikage",
  694. {
  695. front: {
  696. height: math.unit(7, "feet"),
  697. weight: math.unit(90, "kg"),
  698. name: "Front",
  699. image: {
  700. source: "./media/characters/kurrikage/front.svg",
  701. extra: (1 / (1 - 0.035)),
  702. bottom: 0.035
  703. }
  704. },
  705. back: {
  706. height: math.unit(7, "feet"),
  707. weight: math.unit(90, "lb"),
  708. name: "Back",
  709. image: {
  710. source: "./media/characters/kurrikage/back.svg"
  711. }
  712. },
  713. paw: {
  714. height: math.unit(1.5, "feet"),
  715. name: "Paw",
  716. image: {
  717. source: "./media/characters/kurrikage/paw.svg"
  718. }
  719. },
  720. staff: {
  721. height: math.unit(6.7, "feet"),
  722. name: "Staff",
  723. image: {
  724. source: "./media/characters/kurrikage/staff.svg"
  725. }
  726. },
  727. peek: {
  728. height: math.unit(1.05, "feet"),
  729. name: "Peeking",
  730. image: {
  731. source: "./media/characters/kurrikage/peek.svg",
  732. bottom: 0.08
  733. }
  734. },
  735. },
  736. [
  737. {
  738. name: "Normal",
  739. height: math.unit(12, "feet"),
  740. default: true
  741. },
  742. {
  743. name: "Big",
  744. height: math.unit(20, "feet")
  745. },
  746. {
  747. name: "Macro",
  748. height: math.unit(500, "feet")
  749. },
  750. {
  751. name: "Megamacro",
  752. height: math.unit(20, "miles")
  753. },
  754. ]
  755. )
  756. };
  757. characterMakers["Shingo"] = () => {
  758. return makeCharacter(
  759. "Shingo",
  760. "Shingo",
  761. {
  762. front: {
  763. height: math.unit(6, "feet"),
  764. weight: math.unit(75, "kg"),
  765. name: "Front",
  766. image: {
  767. source: "./media/characters/shingo/front.svg",
  768. extra: 3511/3338 * (1 / (1 - 0.005)),
  769. bottom: 0.005
  770. }
  771. },
  772. },
  773. [
  774. {
  775. name: "Micro",
  776. height: math.unit(4, "inches")
  777. },
  778. {
  779. name: "Normal",
  780. height: math.unit(6, "feet"),
  781. default: true
  782. },
  783. {
  784. name: "Macro",
  785. height: math.unit(108, "feet")
  786. }
  787. ]
  788. )
  789. };
  790. function makeAigey() {
  791. const views = {
  792. side: {
  793. attributes: {
  794. height: {
  795. name: "Height",
  796. power: 1,
  797. type: "length",
  798. base: math.unit(6, "feet")
  799. },
  800. weight: {
  801. name: "Weight",
  802. power: 3,
  803. type: "mass",
  804. base: math.unit(75, "kg")
  805. }
  806. },
  807. image: {
  808. source: "./media/characters/aigey/side.svg"
  809. },
  810. name: "Side"
  811. }
  812. };
  813. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  814. entity.sizes.push({
  815. name: "Macro",
  816. height: math.unit(200, "feet")
  817. });
  818. entity.sizes.push({
  819. name: "Megamacro",
  820. height: math.unit(100, "miles")
  821. });
  822. entity.views[entity.defaultView].height = math.unit(200, "feet");
  823. return entity;
  824. }
  825. function makeNatasha() {
  826. const views = {
  827. side: {
  828. attributes: {
  829. height: {
  830. name: "Height",
  831. power: 1,
  832. type: "length",
  833. base: math.unit(6, "feet")
  834. },
  835. weight: {
  836. name: "Weight",
  837. power: 3,
  838. type: "mass",
  839. base: math.unit(75, "kg")
  840. }
  841. },
  842. image: {
  843. source: "./media/characters/natasha/front.svg"
  844. },
  845. name: "Side"
  846. }
  847. };
  848. const entity = makeEntity({ name: "Natasha", author: "Natasha" }, views, []);
  849. entity.sizes.push({
  850. name: "Normal",
  851. height: math.unit(5 + 5 / 12, "feet")
  852. });
  853. entity.sizes.push({
  854. name: "Large",
  855. height: math.unit(12, "feet")
  856. });
  857. entity.sizes.push({
  858. name: "Macro",
  859. height: math.unit(100, "feet")
  860. });
  861. entity.sizes.push({
  862. name: "Macro+",
  863. height: math.unit(260, "feet")
  864. });
  865. entity.sizes.push({
  866. name: "Macro++",
  867. height: math.unit(1, "mile")
  868. });
  869. entity.views[entity.defaultView].height = math.unit(100, "feet");
  870. return entity;
  871. }
  872. function makeMalik() {
  873. const views = {
  874. front: {
  875. attributes: {
  876. height: {
  877. name: "Height",
  878. power: 1,
  879. type: "length",
  880. base: math.unit(6, "feet")
  881. },
  882. weight: {
  883. name: "Weight",
  884. power: 3,
  885. type: "mass",
  886. base: math.unit(75, "kg")
  887. }
  888. },
  889. image: {
  890. source: "./media/characters/malik/front.svg"
  891. },
  892. name: "Front"
  893. },
  894. side: {
  895. attributes: {
  896. height: {
  897. name: "Height",
  898. power: 1,
  899. type: "length",
  900. base: math.unit(6, "feet")
  901. },
  902. weight: {
  903. name: "Weight",
  904. power: 3,
  905. type: "mass",
  906. base: math.unit(75, "kg")
  907. }
  908. },
  909. image: {
  910. extra: 1.1539,
  911. source: "./media/characters/malik/side.svg"
  912. },
  913. name: "Side"
  914. },
  915. back: {
  916. attributes: {
  917. height: {
  918. name: "Height",
  919. power: 1,
  920. type: "length",
  921. base: math.unit(6, "feet")
  922. },
  923. weight: {
  924. name: "Weight",
  925. power: 3,
  926. type: "mass",
  927. base: math.unit(75, "kg")
  928. }
  929. },
  930. image: {
  931. source: "./media/characters/malik/back.svg"
  932. },
  933. name: "Back"
  934. },
  935. };
  936. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  937. entity.sizes.push({
  938. name: "Macro",
  939. height: math.unit(156, "feet")
  940. });
  941. entity.sizes.push({
  942. name: "Macro+",
  943. height: math.unit(1188, "feet")
  944. });
  945. entity.views[entity.defaultView].height = math.unit(156, "feet");
  946. return entity;
  947. }
  948. function makeSefer() {
  949. const views = {
  950. front: {
  951. attributes: {
  952. height: {
  953. name: "Height",
  954. power: 1,
  955. type: "length",
  956. base: math.unit(6, "feet")
  957. },
  958. weight: {
  959. name: "Weight",
  960. power: 3,
  961. type: "mass",
  962. base: math.unit(75, "kg")
  963. }
  964. },
  965. image: {
  966. source: "./media/characters/sefer/front.svg"
  967. },
  968. name: "Front"
  969. },
  970. back: {
  971. attributes: {
  972. height: {
  973. name: "Height",
  974. power: 1,
  975. type: "length",
  976. base: math.unit(6, "feet")
  977. },
  978. weight: {
  979. name: "Weight",
  980. power: 3,
  981. type: "mass",
  982. base: math.unit(75, "kg")
  983. }
  984. },
  985. image: {
  986. source: "./media/characters/sefer/back.svg"
  987. },
  988. name: "Back"
  989. },
  990. };
  991. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  992. entity.views[entity.defaultView].height = math.unit(6, "feet");
  993. return entity;
  994. }
  995. characterMakers["North"] = () => {
  996. return makeCharacter(
  997. "North",
  998. "chemicalcrux",
  999. {
  1000. body: {
  1001. height: math.unit(2.2428, "meter"),
  1002. weight: math.unit(124.738, "kg"),
  1003. name: "Body",
  1004. image: {
  1005. extra: 1225 / 1050,
  1006. source: "./media/characters/north/front.svg"
  1007. }
  1008. }
  1009. },
  1010. [
  1011. {
  1012. name: "Micro",
  1013. height: math.unit(4, "inches")
  1014. },
  1015. {
  1016. name: "Macro",
  1017. height: math.unit(63, "meters")
  1018. },
  1019. {
  1020. name: "Megamacro",
  1021. height: math.unit(101, "miles")
  1022. }
  1023. ],
  1024. math.unit(101, "miles")
  1025. )
  1026. };
  1027. characterMakers["Talan"] = () => {
  1028. return makeCharacter(
  1029. "Talan",
  1030. "talanstrider",
  1031. {
  1032. body: {
  1033. height: math.unit(2, "meter"),
  1034. weight: math.unit(70, "kg"),
  1035. name: "Body",
  1036. image: {
  1037. bottom: 0.02,
  1038. source: "./media/characters/talan/front.svg"
  1039. }
  1040. }
  1041. },
  1042. [
  1043. {
  1044. name: "Normal",
  1045. height: math.unit(4, "meters")
  1046. },
  1047. {
  1048. name: "Macro",
  1049. height: math.unit(100, "meters")
  1050. },
  1051. {
  1052. name: "Megamacro",
  1053. height: math.unit(2, "miles")
  1054. },
  1055. {
  1056. name: "Gigamacro",
  1057. height: math.unit(5000, "miles")
  1058. },
  1059. {
  1060. name: "Teramacro",
  1061. height: math.unit(100, "parsecs")
  1062. }
  1063. ],
  1064. math.unit(2, "miles")
  1065. )
  1066. };
  1067. characterMakers["Gael'Rathus"] = () => {
  1068. return makeCharacter(
  1069. "Gael'Rathus",
  1070. "Kurrikage",
  1071. {
  1072. front: {
  1073. height: math.unit(2, "meter"),
  1074. weight: math.unit(90, "kg"),
  1075. name: "Front",
  1076. image: {
  1077. source: "./media/characters/gael'rathus/front.svg"
  1078. }
  1079. },
  1080. frontAlt: {
  1081. height: math.unit(2, "meter"),
  1082. weight: math.unit(90, "kg"),
  1083. name: "Front (alt)",
  1084. image: {
  1085. source: "./media/characters/gael'rathus/front-alt.svg"
  1086. }
  1087. },
  1088. frontAlt2: {
  1089. height: math.unit(2, "meter"),
  1090. weight: math.unit(90, "kg"),
  1091. name: "Front (alt 2)",
  1092. image: {
  1093. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1094. }
  1095. }
  1096. },
  1097. [
  1098. {
  1099. name: "Normal",
  1100. height: math.unit(9, "feet")
  1101. },
  1102. {
  1103. name: "Large",
  1104. height: math.unit(25, "feet")
  1105. },
  1106. {
  1107. name: "Macro",
  1108. height: math.unit(0.25, "miles")
  1109. },
  1110. {
  1111. name: "Megamacro",
  1112. height: math.unit(10, "miles")
  1113. }
  1114. ],
  1115. math.unit(9, "feet")
  1116. )
  1117. };
  1118. characterMakers["Sosha"] = () => {
  1119. return makeCharacter(
  1120. "Sosha",
  1121. "Sdocat",
  1122. {
  1123. side: {
  1124. height: math.unit(2, "meter"),
  1125. weight: math.unit(140, "kg"),
  1126. name: "Side",
  1127. image: {
  1128. source: "./media/characters/sosha/side.svg"
  1129. }
  1130. },
  1131. },
  1132. [
  1133. {
  1134. name: "Normal",
  1135. height: math.unit(12, "feet")
  1136. }
  1137. ],
  1138. math.unit(12, "feet")
  1139. )
  1140. };
  1141. characterMakers["Kurribird"] = () => {
  1142. return makeCharacter(
  1143. "Kurribird",
  1144. "Kurrikage",
  1145. {
  1146. front: {
  1147. height: math.unit(2, "meter"),
  1148. weight: math.unit(50, "kg"),
  1149. name: "Front",
  1150. image: {
  1151. source: "./media/characters/kurribird/front.svg",
  1152. bottom: 0.015
  1153. }
  1154. },
  1155. frontAlt: {
  1156. height: math.unit(1.5, "meter"),
  1157. weight: math.unit(50, "kg"),
  1158. name: "Front (Alt)",
  1159. image: {
  1160. source: "./media/characters/kurribird/front-alt.svg",
  1161. extra: 1.45
  1162. }
  1163. },
  1164. },
  1165. [
  1166. {
  1167. name: "Normal",
  1168. height: math.unit(7, "feet")
  1169. },
  1170. {
  1171. name: "Big",
  1172. height: math.unit(15, "feet")
  1173. },
  1174. {
  1175. name: "Macro",
  1176. height: math.unit(1500, "feet")
  1177. },
  1178. {
  1179. name: "Megamacro",
  1180. height: math.unit(2, "miles")
  1181. }
  1182. ],
  1183. math.unit(12, "feet")
  1184. )
  1185. };
  1186. characterMakers["Elbial"] = () => {
  1187. return makeCharacter(
  1188. "Elbial",
  1189. "Neopuc",
  1190. {
  1191. front: {
  1192. height: math.unit(2, "meter"),
  1193. weight: math.unit(80, "kg"),
  1194. name: "Front",
  1195. image: {
  1196. source: "./media/characters/elbial/front.svg"
  1197. }
  1198. },
  1199. side: {
  1200. height: math.unit(2, "meter"),
  1201. weight: math.unit(80, "kg"),
  1202. name: "Side",
  1203. image: {
  1204. source: "./media/characters/elbial/side.svg"
  1205. }
  1206. },
  1207. back: {
  1208. height: math.unit(2, "meter"),
  1209. weight: math.unit(80, "kg"),
  1210. name: "Back",
  1211. image: {
  1212. source: "./media/characters/elbial/back.svg"
  1213. }
  1214. },
  1215. },
  1216. [
  1217. {
  1218. name: "Large",
  1219. height: math.unit(100, "feet")
  1220. },
  1221. {
  1222. name: "Macro",
  1223. height: math.unit(500, "feet")
  1224. },
  1225. {
  1226. name: "Megamacro",
  1227. height: math.unit(10, "miles")
  1228. },
  1229. {
  1230. name: "Gigamacro",
  1231. height: math.unit(25000, "miles")
  1232. },
  1233. {
  1234. name: "Full-Size",
  1235. height: math.unit(8000000, "gigaparsecs")
  1236. }
  1237. ],
  1238. math.unit(500, "feet")
  1239. )
  1240. };
  1241. characterMakers["Noah"] = () => {
  1242. return makeCharacter(
  1243. "Noah",
  1244. "Neopuc",
  1245. {
  1246. front: {
  1247. height: math.unit(2, "meter"),
  1248. weight: math.unit(60, "kg"),
  1249. name: "Front",
  1250. image: {
  1251. source: "./media/characters/noah/front.svg"
  1252. }
  1253. },
  1254. talons: {
  1255. height: math.unit(0.315, "meter"),
  1256. name: "Talons",
  1257. image: {
  1258. source: "./media/characters/noah/talons.svg"
  1259. }
  1260. }
  1261. },
  1262. [
  1263. {
  1264. name: "Large",
  1265. height: math.unit(50, "feet")
  1266. },
  1267. {
  1268. name: "Macro",
  1269. height: math.unit(750, "feet")
  1270. },
  1271. {
  1272. name: "Megamacro",
  1273. height: math.unit(50, "miles")
  1274. },
  1275. {
  1276. name: "Gigamacro",
  1277. height: math.unit(100000, "miles")
  1278. },
  1279. {
  1280. name: "Full-Size",
  1281. height: math.unit(3000000000, "miles")
  1282. }
  1283. ],
  1284. math.unit(750, "feet")
  1285. )
  1286. };
  1287. characterMakers["Natalya"] = () => {
  1288. return makeCharacter(
  1289. "Natalya",
  1290. "Neopuc",
  1291. {
  1292. front: {
  1293. height: math.unit(2, "meter"),
  1294. weight: math.unit(80, "kg"),
  1295. name: "Front",
  1296. image: {
  1297. source: "./media/characters/natalya/front.svg"
  1298. }
  1299. },
  1300. back: {
  1301. height: math.unit(2, "meter"),
  1302. weight: math.unit(80, "kg"),
  1303. name: "Back",
  1304. image: {
  1305. source: "./media/characters/natalya/back.svg"
  1306. }
  1307. }
  1308. },
  1309. [
  1310. {
  1311. name: "Normal",
  1312. height: math.unit(150, "feet")
  1313. },
  1314. {
  1315. name: "Megamacro",
  1316. height: math.unit(5, "miles")
  1317. },
  1318. {
  1319. name: "Full-Size",
  1320. height: math.unit(600, "kiloparsecs")
  1321. }
  1322. ],
  1323. math.unit(150, "feet")
  1324. )
  1325. };
  1326. characterMakers["Erestrebah"] = () => {
  1327. return makeCharacter(
  1328. "Erestrebah",
  1329. "Kurrikage",
  1330. {
  1331. front: {
  1332. height: math.unit(2, "meter"),
  1333. weight: math.unit(50, "kg"),
  1334. name: "Front",
  1335. image: {
  1336. source: "./media/characters/erestrebah/front.svg"
  1337. }
  1338. },
  1339. back: {
  1340. height: math.unit(2, "meter"),
  1341. weight: math.unit(50, "kg"),
  1342. name: "Back",
  1343. image: {
  1344. source: "./media/characters/erestrebah/back.svg",
  1345. extra: 1.2139
  1346. }
  1347. }
  1348. },
  1349. [
  1350. {
  1351. name: "Normal",
  1352. height: math.unit(10, "feet")
  1353. },
  1354. {
  1355. name: "Large",
  1356. height: math.unit(50, "feet")
  1357. },
  1358. {
  1359. name: "Macro",
  1360. height: math.unit(300, "feet")
  1361. },
  1362. {
  1363. name: "Macro+",
  1364. height: math.unit(750, "feet")
  1365. },
  1366. {
  1367. name: "Megamacro",
  1368. height: math.unit(3, "miles")
  1369. }
  1370. ],
  1371. math.unit(50, "feet")
  1372. )
  1373. };
  1374. characterMakers["Jennifer"] = () => {
  1375. return makeCharacter(
  1376. "Jennifer",
  1377. "Neopuc",
  1378. {
  1379. front: {
  1380. height: math.unit(2, "meter"),
  1381. weight: math.unit(80, "kg"),
  1382. name: "Front",
  1383. image: {
  1384. source: "./media/characters/jennifer/front.svg",
  1385. bottom: 0.11,
  1386. extra: 1.16
  1387. }
  1388. },
  1389. frontAlt: {
  1390. height: math.unit(2, "meter"),
  1391. weight: math.unit(80, "kg"),
  1392. name: "Front (Alt)",
  1393. image: {
  1394. source: "./media/characters/jennifer/front-alt.svg"
  1395. }
  1396. }
  1397. },
  1398. [
  1399. {
  1400. name: "Canon Height",
  1401. height: math.unit(120, "feet")
  1402. },
  1403. {
  1404. name: "Macro+",
  1405. height: math.unit(300, "feet")
  1406. },
  1407. {
  1408. name: "Megamacro",
  1409. height: math.unit(20000, "feet")
  1410. }
  1411. ],
  1412. math.unit(120, "feet")
  1413. )
  1414. };
  1415. characterMakers["Kalista"] = () => {
  1416. return makeCharacter(
  1417. "Kalista",
  1418. "Kalista",
  1419. {
  1420. front: {
  1421. height: math.unit(2, "meter"),
  1422. weight: math.unit(50, "kg"),
  1423. name: "Front",
  1424. image: {
  1425. source: "./media/characters/kalista/front.svg",
  1426. extra: 1947/1700
  1427. }
  1428. },
  1429. back: {
  1430. height: math.unit(2, "meter"),
  1431. weight: math.unit(50, "kg"),
  1432. name: "Back",
  1433. image: {
  1434. source: "./media/characters/kalista/back.svg",
  1435. extra: 1366/1156
  1436. }
  1437. }
  1438. },
  1439. [
  1440. {
  1441. name: "Uncomfortably Small",
  1442. height: math.unit(10, "feet")
  1443. },
  1444. {
  1445. name: "Small",
  1446. height: math.unit(30, "feet")
  1447. },
  1448. {
  1449. name: "Macro",
  1450. height: math.unit(100, "feet")
  1451. },
  1452. {
  1453. name: "Macro+",
  1454. height: math.unit(2000, "feet")
  1455. },
  1456. {
  1457. name: "True Form",
  1458. height: math.unit(8924, "miles")
  1459. }
  1460. ],
  1461. math.unit(100, "feet")
  1462. )
  1463. };
  1464. characterMakers["GiantGrowingVixen"] = () => {
  1465. return makeCharacter(
  1466. "GiantGrowingVixen",
  1467. "GiantGrowingVixen",
  1468. {
  1469. front: {
  1470. height: math.unit(2, "meter"),
  1471. weight: math.unit(120, "kg"),
  1472. name: "Front",
  1473. image: {
  1474. source: "./media/characters/ggv/front.svg"
  1475. }
  1476. },
  1477. side: {
  1478. height: math.unit(2, "meter"),
  1479. weight: math.unit(120, "kg"),
  1480. name: "Side",
  1481. image: {
  1482. source: "./media/characters/ggv/side.svg"
  1483. }
  1484. }
  1485. },
  1486. [
  1487. {
  1488. name: "Extremely Puny",
  1489. height: math.unit(9 + 5 / 12, "feet")
  1490. },
  1491. {
  1492. name: "Horribly Small",
  1493. height: math.unit(47.7, "miles")
  1494. },
  1495. {
  1496. name: "Reasonably Sized",
  1497. height: math.unit(25000, "parsecs")
  1498. },
  1499. {
  1500. name: "Slightly Uncompressed",
  1501. height: math.unit(7.77e31, "parsecs")
  1502. },
  1503. {
  1504. name: "Omniversal",
  1505. height: math.unit(1e300, "meters")
  1506. },
  1507. ],
  1508. math.unit(47.7, "miles")
  1509. )
  1510. };
  1511. characterMakers["Napalm"] = () => {
  1512. return makeCharacter(
  1513. "Napalm",
  1514. "RathDaKrogan",
  1515. {
  1516. front: {
  1517. height: math.unit(2, "meter"),
  1518. weight: math.unit(75, "lb"),
  1519. name: "Front",
  1520. image: {
  1521. source: "./media/characters/napalm/front.svg"
  1522. }
  1523. },
  1524. back: {
  1525. height: math.unit(2, "meter"),
  1526. weight: math.unit(75, "lb"),
  1527. name: "Back",
  1528. image: {
  1529. source: "./media/characters/napalm/back.svg"
  1530. }
  1531. }
  1532. },
  1533. [
  1534. {
  1535. name: "Standard",
  1536. height: math.unit(55, "feet")
  1537. }
  1538. ],
  1539. math.unit(55, "feet")
  1540. )
  1541. };
  1542. characterMakers["Asana"] = () => {
  1543. return makeCharacter(
  1544. "Asana",
  1545. "Asana",
  1546. {
  1547. front: {
  1548. height: math.unit(7 + 5 / 6, "feet"),
  1549. weight: math.unit(325, "lb"),
  1550. name: "Front",
  1551. image: {
  1552. source: "./media/characters/asana/front.svg",
  1553. extra: 1128 / 1068
  1554. }
  1555. },
  1556. back: {
  1557. height: math.unit(7 + 5 / 6, "feet"),
  1558. weight: math.unit(325, "lb"),
  1559. name: "Back",
  1560. image: {
  1561. source: "./media/characters/asana/back.svg",
  1562. extra: 1128 / 1068
  1563. }
  1564. },
  1565. },
  1566. [
  1567. {
  1568. name: "Standard",
  1569. height: math.unit(7 + 5 / 6, "feet")
  1570. },
  1571. {
  1572. name: "Large",
  1573. height: math.unit(10, "meters")
  1574. },
  1575. {
  1576. name: "Macro",
  1577. height: math.unit(2500, "meters")
  1578. },
  1579. {
  1580. name: "Megamacro",
  1581. height: math.unit(5e6, "meters")
  1582. },
  1583. {
  1584. name: "Examacro",
  1585. height: math.unit(5e12, "lightyears")
  1586. },
  1587. {
  1588. name: "Max Size",
  1589. height: math.unit(1e31, "lightyears")
  1590. }
  1591. ],
  1592. math.unit(7 + 5 / 6, "feet")
  1593. )
  1594. };
  1595. characterMakers["Ebony"] = () => {
  1596. return makeCharacter(
  1597. "Ebony",
  1598. "Lazerwolf",
  1599. {
  1600. front: {
  1601. height: math.unit(2, "meter"),
  1602. weight: math.unit(60, "kg"),
  1603. name: "Front",
  1604. image: {
  1605. source: "./media/characters/ebony/front.svg",
  1606. bottom: 0.03,
  1607. extra: 1045 / 810 + 0.03
  1608. }
  1609. },
  1610. side: {
  1611. height: math.unit(2, "meter"),
  1612. weight: math.unit(60, "kg"),
  1613. name: "Side",
  1614. image: {
  1615. source: "./media/characters/ebony/side.svg",
  1616. bottom: 0.03,
  1617. extra: 1045 / 810 + 0.03
  1618. }
  1619. },
  1620. back: {
  1621. height: math.unit(2, "meter"),
  1622. weight: math.unit(60, "kg"),
  1623. name: "Back",
  1624. image: {
  1625. source: "./media/characters/ebony/back.svg",
  1626. bottom: 0.01,
  1627. extra: 1045 / 810 + 0.01
  1628. }
  1629. },
  1630. },
  1631. [
  1632. {
  1633. name: "Standard",
  1634. height: math.unit(9 / 8 * (7 + 5 / 12), "feet")
  1635. },
  1636. {
  1637. name: "Macro",
  1638. height: math.unit(200, "feet")
  1639. },
  1640. {
  1641. name: "Gigamacro",
  1642. height: math.unit(13000, "km")
  1643. }
  1644. ],
  1645. math.unit(7 + 5 / 12, "feet")
  1646. )
  1647. };
  1648. characterMakers["Mountain"] = () => {
  1649. return makeCharacter(
  1650. "Mountain",
  1651. "Asana",
  1652. {
  1653. front: {
  1654. height: math.unit(6, "feet"),
  1655. weight: math.unit(175, "lb"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/mountain/front.svg"
  1659. }
  1660. },
  1661. back: {
  1662. height: math.unit(6, "feet"),
  1663. weight: math.unit(175, "lb"),
  1664. name: "Back",
  1665. image: {
  1666. source: "./media/characters/mountain/back.svg"
  1667. }
  1668. },
  1669. },
  1670. [
  1671. {
  1672. name: "Large",
  1673. height: math.unit(20, "meters")
  1674. },
  1675. {
  1676. name: "Macro",
  1677. height: math.unit(300, "meters")
  1678. },
  1679. {
  1680. name: "Gigamacro",
  1681. height: math.unit(10000, "km")
  1682. },
  1683. {
  1684. name: "Examacro",
  1685. height: math.unit(10e9, "lightyears")
  1686. }
  1687. ],
  1688. math.unit(10000, "km")
  1689. )
  1690. };
  1691. characterMakers["Rick"] = () => {
  1692. return makeCharacter(
  1693. "Rick",
  1694. "Victni",
  1695. {
  1696. front: {
  1697. height: math.unit(8, "feet"),
  1698. weight: math.unit(500, "lb"),
  1699. name: "Front",
  1700. image: {
  1701. source: "./media/characters/rick/front.svg"
  1702. }
  1703. }
  1704. },
  1705. [
  1706. {
  1707. name: "Normal",
  1708. height: math.unit(8, "feet")
  1709. },
  1710. {
  1711. name: "Macro",
  1712. height: math.unit(5, "km")
  1713. }
  1714. ],
  1715. math.unit(8, "feet")
  1716. )
  1717. };
  1718. characterMakers["Ona"] = () => {
  1719. return makeCharacter(
  1720. "Ona",
  1721. "Arrogance127",
  1722. {
  1723. front: {
  1724. height: math.unit(8, "feet"),
  1725. weight: math.unit(120, "lb"),
  1726. name: "Front",
  1727. image: {
  1728. source: "./media/characters/ona/front.svg"
  1729. }
  1730. },
  1731. frontAlt: {
  1732. height: math.unit(8, "feet"),
  1733. weight: math.unit(120, "lb"),
  1734. name: "Front (Alt)",
  1735. image: {
  1736. source: "./media/characters/ona/front-alt.svg"
  1737. }
  1738. },
  1739. back: {
  1740. height: math.unit(8, "feet"),
  1741. weight: math.unit(120, "lb"),
  1742. name: "Back",
  1743. image: {
  1744. source: "./media/characters/ona/back.svg"
  1745. }
  1746. },
  1747. foot: {
  1748. height: math.unit(1.1, "feet"),
  1749. name: "Foot",
  1750. image: {
  1751. source: "./media/characters/ona/foot.svg"
  1752. }
  1753. }
  1754. },
  1755. [
  1756. {
  1757. name: "Megamacro",
  1758. height: math.unit(70, "km")
  1759. },
  1760. {
  1761. name: "Gigamacro",
  1762. height: math.unit(681818, "miles")
  1763. },
  1764. {
  1765. name: "Examacro",
  1766. height: math.unit(3800000, "lightyears")
  1767. },
  1768. ],
  1769. math.unit(70, "km")
  1770. )
  1771. };
  1772. characterMakers["Mech"] = () => {
  1773. return makeCharacter(
  1774. "Mech",
  1775. "mechEdragon",
  1776. {
  1777. front: {
  1778. height: math.unit(12, "feet"),
  1779. weight: math.unit(3000, "lb"),
  1780. name: "Front",
  1781. image: {
  1782. source: "./media/characters/mech/front.svg",
  1783. bottom: 0.025,
  1784. }
  1785. },
  1786. back: {
  1787. height: math.unit(12, "feet"),
  1788. weight: math.unit(3000, "lb"),
  1789. name: "Back",
  1790. image: {
  1791. source: "./media/characters/mech/back.svg",
  1792. bottom: 0.03,
  1793. }
  1794. }
  1795. },
  1796. [
  1797. {
  1798. name: "Normal",
  1799. height: math.unit(12, "feet")
  1800. },
  1801. {
  1802. name: "Macro",
  1803. height: math.unit(300, "feet")
  1804. },
  1805. {
  1806. name: "Macro+",
  1807. height: math.unit(1500, "feet")
  1808. },
  1809. ],
  1810. math.unit(300, "feet")
  1811. )
  1812. };
  1813. characterMakers["Gregory"] = () => {
  1814. return makeCharacter(
  1815. "Gregory",
  1816. "GregoryKlippenspringer",
  1817. {
  1818. front: {
  1819. height: math.unit(1.3, "meter"),
  1820. weight: math.unit(30, "kg"),
  1821. name: "Front",
  1822. image: {
  1823. source: "./media/characters/gregory/front.svg",
  1824. }
  1825. }
  1826. },
  1827. [
  1828. {
  1829. name: "Normal",
  1830. height: math.unit(1.3, "meter")
  1831. },
  1832. {
  1833. name: "Macro",
  1834. height: math.unit(20, "meter")
  1835. }
  1836. ],
  1837. math.unit(1.3, "meter")
  1838. )
  1839. };
  1840. characterMakers["Elory"] = () => {
  1841. return makeCharacter(
  1842. "Elory",
  1843. "GregoryKlippenspringer",
  1844. {
  1845. front: {
  1846. height: math.unit(2.8, "meter"),
  1847. weight: math.unit(200, "kg"),
  1848. name: "Front",
  1849. image: {
  1850. source: "./media/characters/elory/front.svg",
  1851. }
  1852. }
  1853. },
  1854. [
  1855. {
  1856. name: "Normal",
  1857. height: math.unit(2.8, "meter")
  1858. },
  1859. {
  1860. name: "Macro",
  1861. height: math.unit(38, "meter")
  1862. }
  1863. ],
  1864. math.unit(2.8, "meter")
  1865. )
  1866. };
  1867. characterMakers["Angelpatamon"] = () => {
  1868. return makeCharacter(
  1869. "Angelpatamon",
  1870. "GregoryKlippenspringer",
  1871. {
  1872. front: {
  1873. height: math.unit(470, "feet"),
  1874. weight: math.unit(924, "tons"),
  1875. name: "Front",
  1876. image: {
  1877. source: "./media/characters/angelpatamon/front.svg",
  1878. }
  1879. }
  1880. },
  1881. [
  1882. {
  1883. name: "Normal",
  1884. height: math.unit(470, "feet")
  1885. },
  1886. {
  1887. name: "Deity Size I",
  1888. height: math.unit(28651.2, "km")
  1889. },
  1890. {
  1891. name: "Deity Size II",
  1892. height: math.unit(171907.2, "km")
  1893. }
  1894. ],
  1895. math.unit(470, "feet")
  1896. )
  1897. };
  1898. characterMakers["Cryae"] = () => {
  1899. return makeCharacter(
  1900. "Cryae",
  1901. "GregoryKlippenspringer",
  1902. {
  1903. side: {
  1904. height: math.unit(7.2, "meter"),
  1905. weight: math.unit(8.2, "tons"),
  1906. name: "Side",
  1907. image: {
  1908. source: "./media/characters/cryae/side.svg",
  1909. extra: 3500 / 1500
  1910. }
  1911. }
  1912. },
  1913. [
  1914. {
  1915. name: "Normal",
  1916. height: math.unit(7.2, "meter")
  1917. }
  1918. ],
  1919. math.unit(7.2, "meter")
  1920. )
  1921. };
  1922. characterMakers["Xera"] = () => {
  1923. return makeCharacter(
  1924. "Xera",
  1925. "Asana",
  1926. {
  1927. front: {
  1928. height: math.unit(6, "feet"),
  1929. weight: math.unit(175, "lb"),
  1930. name: "Front",
  1931. image: {
  1932. source: "./media/characters/xera/front.svg",
  1933. extra: 2300 / 2061
  1934. }
  1935. },
  1936. side: {
  1937. height: math.unit(6, "feet"),
  1938. weight: math.unit(175, "lb"),
  1939. name: "Side",
  1940. image: {
  1941. source: "./media/characters/xera/side.svg",
  1942. extra: 2300 / 2061
  1943. }
  1944. },
  1945. back: {
  1946. height: math.unit(6, "feet"),
  1947. weight: math.unit(175, "lb"),
  1948. name: "Back",
  1949. image: {
  1950. source: "./media/characters/xera/back.svg"
  1951. }
  1952. },
  1953. },
  1954. [
  1955. {
  1956. name: "Small",
  1957. height: math.unit(10, "feet")
  1958. },
  1959. {
  1960. name: "Macro",
  1961. height: math.unit(500, "meters")
  1962. },
  1963. {
  1964. name: "Macro+",
  1965. height: math.unit(10, "km")
  1966. },
  1967. {
  1968. name: "Gigamacro",
  1969. height: math.unit(25000, "km")
  1970. },
  1971. {
  1972. name: "Teramacro",
  1973. height: math.unit(3e6, "km")
  1974. }
  1975. ],
  1976. math.unit(500, "meters")
  1977. )
  1978. };
  1979. characterMakers["Nebula"] = () => {
  1980. return makeCharacter(
  1981. "Nebula",
  1982. "Cilenomon",
  1983. {
  1984. front: {
  1985. height: math.unit(6, "feet"),
  1986. weight: math.unit(175, "lb"),
  1987. name: "Front",
  1988. image: {
  1989. source: "./media/characters/nebula/front.svg",
  1990. extra: 2600 / 2450
  1991. }
  1992. }
  1993. },
  1994. [
  1995. {
  1996. name: "Small",
  1997. height: math.unit(4.5, "meters")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(1500, "meters")
  2002. },
  2003. {
  2004. name: "Megamacro",
  2005. height: math.unit(150, "km")
  2006. },
  2007. {
  2008. name: "Gigamacro",
  2009. height: math.unit(27000, "km")
  2010. }
  2011. ],
  2012. math.unit(1500, "meters")
  2013. )
  2014. };
  2015. characterMakers["Abysgar"] = () => {
  2016. return makeCharacter(
  2017. "Abysgar",
  2018. "Cilenomon",
  2019. {
  2020. front: {
  2021. height: math.unit(6, "feet"),
  2022. weight: math.unit(225, "lb"),
  2023. name: "Front",
  2024. image: {
  2025. source: "./media/characters/abysgar/front.svg"
  2026. }
  2027. }
  2028. },
  2029. [
  2030. {
  2031. name: "Small",
  2032. height: math.unit(4.5, "meters")
  2033. },
  2034. {
  2035. name: "Macro",
  2036. height: math.unit(1250, "meters")
  2037. },
  2038. {
  2039. name: "Megamacro",
  2040. height: math.unit(125, "km")
  2041. },
  2042. {
  2043. name: "Gigamacro",
  2044. height: math.unit(26000, "km")
  2045. }
  2046. ],
  2047. math.unit(1250, "meters")
  2048. )
  2049. };
  2050. characterMakers["Yakuz"] = () => {
  2051. return makeCharacter(
  2052. "Yakuz",
  2053. "Cilenomon",
  2054. {
  2055. front: {
  2056. height: math.unit(6, "feet"),
  2057. weight: math.unit(180, "lb"),
  2058. name: "Front",
  2059. image: {
  2060. source: "./media/characters/yakuz/front.svg"
  2061. }
  2062. }
  2063. },
  2064. [
  2065. {
  2066. name: "Small",
  2067. height: math.unit(5, "meters")
  2068. },
  2069. {
  2070. name: "Macro",
  2071. height: math.unit(2500, "meters")
  2072. },
  2073. {
  2074. name: "Megamacro",
  2075. height: math.unit(200, "km")
  2076. },
  2077. {
  2078. name: "Gigamacro",
  2079. height: math.unit(100000, "km")
  2080. }
  2081. ],
  2082. math.unit(1500, "meters")
  2083. )
  2084. };
  2085. characterMakers["Mirova"] = () => {
  2086. return makeCharacter(
  2087. "Mirova",
  2088. "Cilenomon",
  2089. {
  2090. front: {
  2091. height: math.unit(6, "feet"),
  2092. weight: math.unit(175, "lb"),
  2093. name: "Front",
  2094. image: {
  2095. source: "./media/characters/mirova/front.svg"
  2096. }
  2097. }
  2098. },
  2099. [
  2100. {
  2101. name: "Small",
  2102. height: math.unit(5, "meters")
  2103. },
  2104. {
  2105. name: "Macro",
  2106. height: math.unit(900, "meters")
  2107. },
  2108. {
  2109. name: "Megamacro",
  2110. height: math.unit(135, "km")
  2111. },
  2112. {
  2113. name: "Gigamacro",
  2114. height: math.unit(20000, "km")
  2115. }
  2116. ],
  2117. math.unit(900, "meters")
  2118. )
  2119. };
  2120. characterMakers["Asana (Mech)"] = () => {
  2121. return makeCharacter(
  2122. "Asana (Mech)",
  2123. "Asana",
  2124. {
  2125. side: {
  2126. height: math.unit(28.35, "feet"),
  2127. weight: math.unit(99.75, "tons"),
  2128. name: "Side",
  2129. image: {
  2130. source: "./media/characters/asana-mech/side.svg"
  2131. }
  2132. }
  2133. },
  2134. [
  2135. {
  2136. name: "Normal",
  2137. height: math.unit(28.35, "feet")
  2138. },
  2139. {
  2140. name: "Macro",
  2141. height: math.unit(2500, "feet")
  2142. },
  2143. {
  2144. name: "Megamacro",
  2145. height: math.unit(25, "miles")
  2146. },
  2147. {
  2148. name: "Examacro",
  2149. height: math.unit(6e8, "lightyears")
  2150. },
  2151. ],
  2152. math.unit(28.35, "feet")
  2153. )
  2154. };
  2155. characterMakers["Ashtrek"] = () => {
  2156. return makeCharacter(
  2157. "Ashtrek",
  2158. "Ashtrek",
  2159. {
  2160. front: {
  2161. height: math.unit(2, "meters"),
  2162. weight: math.unit(70, "kg"),
  2163. name: "Front",
  2164. image: {
  2165. source: "./media/characters/ashtrek/front.svg",
  2166. extra: 560/524 * (1 / (1 - 0.01)),
  2167. bottom: 0.01
  2168. }
  2169. },
  2170. frontArmor: {
  2171. height: math.unit(2, "meters"),
  2172. weight: math.unit(76, "kg"),
  2173. name: "Front (Armor)",
  2174. image: {
  2175. source: "./media/characters/ashtrek/front-armor.svg",
  2176. extra: 561/527 * (1 / (1 - 0.01)),
  2177. bottom: 0.01
  2178. }
  2179. },
  2180. side: {
  2181. height: math.unit(2, "meters"),
  2182. weight: math.unit(70, "kg"),
  2183. name: "Side",
  2184. image: {
  2185. source: "./media/characters/ashtrek/side.svg",
  2186. extra: 1717/1609 * (1 / (1 - 0.005)),
  2187. bottom: 0.005
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(2, "meters"),
  2192. weight: math.unit(70, "kg"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/ashtrek/back.svg",
  2196. extra: 1570/1501
  2197. }
  2198. },
  2199. },
  2200. [
  2201. {
  2202. name: "DEFCON 5",
  2203. height: math.unit(5, "meters")
  2204. },
  2205. {
  2206. name: "DEFCON 4",
  2207. height: math.unit(500, "meters")
  2208. },
  2209. {
  2210. name: "DEFCON 3",
  2211. height: math.unit(5, "km")
  2212. },
  2213. {
  2214. name: "DEFCON 2",
  2215. height: math.unit(500, "km")
  2216. },
  2217. {
  2218. name: "DEFCON 1",
  2219. height: math.unit(500000, "km")
  2220. },
  2221. {
  2222. name: "DEFCON 0",
  2223. height: math.unit(3, "gigaparsecs")
  2224. },
  2225. ],
  2226. math.unit(500, "meters")
  2227. )
  2228. };
  2229. characterMakers["Gale"] = () => {
  2230. return makeCharacter(
  2231. "Gale",
  2232. "GaleFierre",
  2233. {
  2234. front: {
  2235. height: math.unit(2, "meters"),
  2236. weight: math.unit(76, "kg"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/gale/front.svg"
  2240. }
  2241. },
  2242. frontAlt1: {
  2243. height: math.unit(2, "meters"),
  2244. weight: math.unit(76, "kg"),
  2245. name: "Front (Alt 1)",
  2246. image: {
  2247. source: "./media/characters/gale/front-alt-1.svg"
  2248. }
  2249. },
  2250. frontAlt2: {
  2251. height: math.unit(2, "meters"),
  2252. weight: math.unit(76, "kg"),
  2253. name: "Front (Alt 2)",
  2254. image: {
  2255. source: "./media/characters/gale/front-alt-2.svg"
  2256. }
  2257. },
  2258. },
  2259. [
  2260. {
  2261. name: "Normal",
  2262. height: math.unit(7, "feet")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(150, "feet")
  2267. },
  2268. {
  2269. name: "Macro+",
  2270. height: math.unit(300, "feet")
  2271. },
  2272. ],
  2273. math.unit(150, "feet")
  2274. )
  2275. };
  2276. characterMakers["Draylen"] = () => {
  2277. return makeCharacter(
  2278. "Draylen",
  2279. "Longshot Coyote",
  2280. {
  2281. front: {
  2282. height: math.unit(2, "meters"),
  2283. weight: math.unit(76, "kg"),
  2284. name: "Front",
  2285. image: {
  2286. source: "./media/characters/draylen/front.svg"
  2287. }
  2288. }
  2289. },
  2290. [
  2291. {
  2292. name: "Macro",
  2293. height: math.unit(150, "feet")
  2294. }
  2295. ],
  2296. math.unit(150, "feet")
  2297. )
  2298. };
  2299. characterMakers["Chez"] = () => {
  2300. return makeCharacter(
  2301. "Chez",
  2302. "Ashtrek",
  2303. {
  2304. front: {
  2305. height: math.unit(7 + 9 / 12, "feet"),
  2306. weight: math.unit(379, "lbs"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/chez/front.svg"
  2310. }
  2311. },
  2312. side: {
  2313. height: math.unit(7 + 9 / 12, "feet"),
  2314. weight: math.unit(379, "lbs"),
  2315. name: "Side",
  2316. image: {
  2317. source: "./media/characters/chez/side.svg"
  2318. }
  2319. }
  2320. },
  2321. [
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(7 + 9 / 12, "feet")
  2325. },
  2326. {
  2327. name: "God King",
  2328. height: math.unit(9750000, "meters")
  2329. }
  2330. ],
  2331. math.unit(7 + 9 / 12, "feet")
  2332. )
  2333. };
  2334. characterMakers["Kaylum"] = () => {
  2335. return makeCharacter(
  2336. "Kaylum",
  2337. "DJDarkJaro",
  2338. {
  2339. front: {
  2340. height: math.unit(6, "feet"),
  2341. weight: math.unit(275, "lbs"),
  2342. name: "Front",
  2343. image: {
  2344. source: "./media/characters/kaylum/front.svg",
  2345. bottom: 0.01,
  2346. extra: 1166 / 1031
  2347. }
  2348. },
  2349. frontWingless: {
  2350. height: math.unit(6, "feet"),
  2351. weight: math.unit(275, "lbs"),
  2352. name: "Front (Wingless)",
  2353. image: {
  2354. source: "./media/characters/kaylum/front-wingless.svg",
  2355. bottom: 0.01,
  2356. extra: 1117 / 1031
  2357. }
  2358. }
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(3.05, "meters")
  2364. },
  2365. {
  2366. name: "Master",
  2367. height: math.unit(5.5, "meters")
  2368. },
  2369. {
  2370. name: "Rampage",
  2371. height: math.unit(19, "meters")
  2372. },
  2373. {
  2374. name: "Macro Lite",
  2375. height: math.unit(37, "meters")
  2376. },
  2377. {
  2378. name: "Hyper Predator",
  2379. height: math.unit(61, "meters")
  2380. },
  2381. {
  2382. name: "Macro",
  2383. height: math.unit(138, "meters")
  2384. }
  2385. ],
  2386. math.unit(138, "meters")
  2387. )
  2388. };
  2389. characterMakers["Geta"] = () => {
  2390. return makeCharacter(
  2391. "Geta",
  2392. "Aeznon",
  2393. {
  2394. front: {
  2395. height: math.unit(6, "feet"),
  2396. weight: math.unit(150, "lbs"),
  2397. name: "Front",
  2398. image: {
  2399. source: "./media/characters/geta/front.svg"
  2400. }
  2401. }
  2402. },
  2403. [
  2404. {
  2405. name: "Micro",
  2406. height: math.unit(3, "inches")
  2407. },
  2408. {
  2409. name: "Normal",
  2410. height: math.unit(5 + 5 / 12, "feet")
  2411. }
  2412. ],
  2413. math.unit(3, "inches")
  2414. )
  2415. };
  2416. characterMakers["Tyrnn"] = () => {
  2417. return makeCharacter(
  2418. "Tyrnn",
  2419. "Tyrnn",
  2420. {
  2421. front: {
  2422. height: math.unit(6, "feet"),
  2423. weight: math.unit(300, "lbs"),
  2424. name: "Front",
  2425. image: {
  2426. source: "./media/characters/tyrnn/front.svg"
  2427. }
  2428. }
  2429. },
  2430. [
  2431. {
  2432. name: "Main Height",
  2433. height: math.unit(355, "feet")
  2434. },
  2435. {
  2436. name: "Fave. Height",
  2437. height: math.unit(2400, "feet")
  2438. }
  2439. ],
  2440. math.unit(355, "feet")
  2441. )
  2442. };
  2443. characterMakers["Apple"] = () => {
  2444. return makeCharacter(
  2445. "Apple",
  2446. "Appledectomy",
  2447. {
  2448. front: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(300, "lbs"),
  2451. name: "Front",
  2452. image: {
  2453. source: "./media/characters/appledectomy/front.svg"
  2454. }
  2455. }
  2456. },
  2457. [
  2458. {
  2459. name: "Macro",
  2460. height: math.unit(2500, "feet")
  2461. },
  2462. {
  2463. name: "Megamacro",
  2464. height: math.unit(50, "miles")
  2465. },
  2466. {
  2467. name: "Gigamacro",
  2468. height: math.unit(5000, "miles")
  2469. },
  2470. {
  2471. name: "Teramacro",
  2472. height: math.unit(250000, "miles")
  2473. },
  2474. ],
  2475. math.unit(50, "miles")
  2476. )
  2477. };
  2478. characterMakers["Vulpes"] = () => {
  2479. return makeCharacter(
  2480. "Vulpes",
  2481. "VulpesPawpad",
  2482. {
  2483. front: {
  2484. height: math.unit(6, "feet"),
  2485. weight: math.unit(200, "lbs"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/vulpes/front.svg"
  2489. }
  2490. },
  2491. side: {
  2492. height: math.unit(6, "feet"),
  2493. weight: math.unit(200, "lbs"),
  2494. name: "Side",
  2495. image: {
  2496. source: "./media/characters/vulpes/side.svg"
  2497. }
  2498. },
  2499. back: {
  2500. height: math.unit(6, "feet"),
  2501. weight: math.unit(200, "lbs"),
  2502. name: "Back",
  2503. image: {
  2504. source: "./media/characters/vulpes/back.svg"
  2505. }
  2506. },
  2507. feet: {
  2508. height: math.unit(1.276, "feet"),
  2509. name: "Feet",
  2510. image: {
  2511. source: "./media/characters/vulpes/feet.svg"
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Micro",
  2518. height: math.unit(2, "inches")
  2519. },
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(6.3, "feet")
  2523. },
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(850, "feet")
  2527. },
  2528. {
  2529. name: "Megamacro",
  2530. height: math.unit(7500, "feet")
  2531. },
  2532. {
  2533. name: "Gigamacro",
  2534. height: math.unit(570000, "miles")
  2535. }
  2536. ],
  2537. math.unit(7500, "feet")
  2538. )
  2539. };
  2540. characterMakers["Rain Fallen"] = () => {
  2541. return makeCharacter(
  2542. "Rain Fallen",
  2543. "Rain Fallen",
  2544. {
  2545. front: {
  2546. height: math.unit(6, "feet"),
  2547. weight: math.unit(210, "lbs"),
  2548. name: "Front",
  2549. image: {
  2550. source: "./media/characters/rain/front.svg"
  2551. }
  2552. },
  2553. side: {
  2554. height: math.unit(6, "feet"),
  2555. weight: math.unit(210, "lbs"),
  2556. name: "Side",
  2557. image: {
  2558. source: "./media/characters/rain/side.svg"
  2559. }
  2560. },
  2561. back: {
  2562. height: math.unit(6, "feet"),
  2563. weight: math.unit(210, "lbs"),
  2564. name: "Back",
  2565. image: {
  2566. source: "./media/characters/rain/back.svg"
  2567. }
  2568. },
  2569. feral: {
  2570. height: math.unit(9, "feet"),
  2571. weight: math.unit(700, "lbs"),
  2572. name: "Feral",
  2573. image: {
  2574. source: "./media/characters/rain/feral.svg"
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(5, "meter")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(150, "meter")
  2586. },
  2587. {
  2588. name: "Megamacro",
  2589. height: math.unit(278e6, "meter")
  2590. },
  2591. {
  2592. name: "Gigamacro",
  2593. height: math.unit(2e9, "meter")
  2594. },
  2595. {
  2596. name: "Teramacro",
  2597. height: math.unit(8e12, "meter")
  2598. },
  2599. {
  2600. name: "Devourer",
  2601. height: math.unit(14, "zettameters")
  2602. },
  2603. {
  2604. name: "Scarlet King",
  2605. height: math.unit(18, "yottameters")
  2606. },
  2607. {
  2608. name: "Void",
  2609. height: math.unit(6.66e66, "yottameters")
  2610. }
  2611. ],
  2612. math.unit(150, "meter")
  2613. )
  2614. };
  2615. characterMakers["Zaakira"] = () => {
  2616. return makeCharacter(
  2617. "Zaakira",
  2618. "Jazzywolf",
  2619. {
  2620. standing: {
  2621. height: math.unit(6, "feet"),
  2622. weight: math.unit(180, "lbs"),
  2623. name: "Standing",
  2624. image: {
  2625. source: "./media/characters/zaakira/standing.svg"
  2626. }
  2627. },
  2628. laying: {
  2629. height: math.unit(3, "feet"),
  2630. weight: math.unit(180, "lbs"),
  2631. name: "Laying",
  2632. image: {
  2633. source: "./media/characters/zaakira/laying.svg"
  2634. }
  2635. },
  2636. },
  2637. [
  2638. {
  2639. name: "Normal",
  2640. height: math.unit(12, "feet")
  2641. },
  2642. {
  2643. name: "Macro",
  2644. height: math.unit(279, "feet")
  2645. }
  2646. ],
  2647. math.unit(279, "feet")
  2648. )
  2649. };
  2650. characterMakers["Sigvald"] = () => {
  2651. return makeCharacter(
  2652. "Sigvald",
  2653. "Sigvald",
  2654. {
  2655. front: {
  2656. height: math.unit(6, "feet"),
  2657. weight: math.unit(250, "lbs"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/sigvald/front.svg",
  2661. extra: 1000 / 850
  2662. }
  2663. },
  2664. back: {
  2665. height: math.unit(6, "feet"),
  2666. weight: math.unit(250, "lbs"),
  2667. name: "Back",
  2668. image: {
  2669. source: "./media/characters/sigvald/back.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(8, "feet")
  2677. },
  2678. {
  2679. name: "Large",
  2680. height: math.unit(12, "feet")
  2681. },
  2682. {
  2683. name: "Larger",
  2684. height: math.unit(20, "feet")
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(150, "feet")
  2689. },
  2690. {
  2691. name: "Macro+",
  2692. height: math.unit(200, "feet")
  2693. },
  2694. ],
  2695. math.unit(200, "feet")
  2696. )
  2697. };
  2698. characterMakers["Scott"] = () => {
  2699. return makeCharacter(
  2700. "Scott",
  2701. "Scott",
  2702. {
  2703. side: {
  2704. height: math.unit(12, "feet"),
  2705. weight: math.unit(3000, "lbs"),
  2706. name: "Side",
  2707. image: {
  2708. source: "./media/characters/scott/side.svg",
  2709. extra: (1 / (1 - 0.069)),
  2710. bottom: 0.069
  2711. }
  2712. },
  2713. upright: {
  2714. height: math.unit(12, "feet"),
  2715. weight: math.unit(3000, "lbs"),
  2716. name: "Upright",
  2717. image: {
  2718. source: "./media/characters/scott/upright.svg",
  2719. extra: (1 / (1 - 0.05)),
  2720. bottom: 0.05
  2721. }
  2722. },
  2723. },
  2724. [],
  2725. math.unit(12, "feet")
  2726. )
  2727. };
  2728. characterMakers["Tobias"] = () => {
  2729. return makeCharacter(
  2730. "Tobias",
  2731. "Tobias",
  2732. {
  2733. side: {
  2734. height: math.unit(8, "meters"),
  2735. weight: math.unit(84755, "lbs"),
  2736. name: "Side",
  2737. image: {
  2738. source: "./media/characters/tobias/side.svg",
  2739. extra: 5 / 4
  2740. }
  2741. },
  2742. },
  2743. [],
  2744. math.unit(8, "meters")
  2745. )
  2746. };
  2747. characterMakers["Kieran"] = () => {
  2748. return makeCharacter(
  2749. "Kieran",
  2750. "Kieran",
  2751. {
  2752. front: {
  2753. height: math.unit(5.5, "feet"),
  2754. weight: math.unit(400, "lbs"),
  2755. name: "Front",
  2756. image: {
  2757. source: "./media/characters/kieran/front.svg",
  2758. extra: 1.05
  2759. }
  2760. },
  2761. side: {
  2762. height: math.unit(5.5, "feet"),
  2763. weight: math.unit(400, "lbs"),
  2764. name: "Side",
  2765. image: {
  2766. source: "./media/characters/kieran/side.svg",
  2767. extra: 950 / 850
  2768. }
  2769. },
  2770. },
  2771. [],
  2772. math.unit(5.5, "feet")
  2773. )
  2774. };
  2775. characterMakers["Sanya"] = () => {
  2776. return makeCharacter(
  2777. "Sanya",
  2778. "BanterGhost",
  2779. {
  2780. side: {
  2781. height: math.unit(2, "meters"),
  2782. weight: math.unit(70, "kg"),
  2783. name: "Side",
  2784. image: {
  2785. source: "./media/characters/sanya/side.svg",
  2786. bottom: 0.02,
  2787. extra: 1.02
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Small",
  2794. height: math.unit(2, "meters")
  2795. },
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(3, "meters")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(16, "meters")
  2803. },
  2804. ],
  2805. math.unit(16, "meters")
  2806. )
  2807. };
  2808. characterMakers["Miranda"] = () => {
  2809. return makeCharacter(
  2810. "Miranda",
  2811. "MirandaAqrayla",
  2812. {
  2813. side: {
  2814. height: math.unit(2, "meters"),
  2815. weight: math.unit(120, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/miranda/front.svg",
  2819. extra: 10.6 / 10
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(10, "feet")
  2827. }
  2828. ],
  2829. math.unit(10, "feet")
  2830. )
  2831. };
  2832. characterMakers["James"] = () => {
  2833. return makeCharacter(
  2834. "James",
  2835. "MirandaAqrayla",
  2836. {
  2837. side: {
  2838. height: math.unit(2, "meters"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/james/front.svg",
  2843. extra: 10 / 8.5
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Normal",
  2850. height: math.unit(8.5, "feet")
  2851. }
  2852. ],
  2853. math.unit(8.5, "feet")
  2854. )
  2855. };
  2856. characterMakers["Heather"] = () => {
  2857. return makeCharacter(
  2858. "Heather",
  2859. "MirandaAqrayla",
  2860. {
  2861. side: {
  2862. height: math.unit(9.5, "feet"),
  2863. weight: math.unit(2500, "lbs"),
  2864. name: "Side",
  2865. image: {
  2866. source: "./media/characters/heather/side.svg"
  2867. }
  2868. },
  2869. },
  2870. [
  2871. {
  2872. name: "Normal",
  2873. height: math.unit(9.5, "feet")
  2874. }
  2875. ],
  2876. math.unit(9.5, "feet")
  2877. )
  2878. };
  2879. characterMakers["Lukas"] = () => {
  2880. return makeCharacter(
  2881. "Lukas",
  2882. "MirandaAqrayla",
  2883. {
  2884. side: {
  2885. height: math.unit(6.5, "feet"),
  2886. weight: math.unit(400, "lbs"),
  2887. name: "Side",
  2888. image: {
  2889. source: "./media/characters/lukas/side.svg",
  2890. extra: 7.25 / 6.5
  2891. }
  2892. },
  2893. },
  2894. [
  2895. {
  2896. name: "Normal",
  2897. height: math.unit(6.5, "feet")
  2898. }
  2899. ],
  2900. math.unit(6.5, "feet")
  2901. )
  2902. };
  2903. characterMakers["Louise"] = () => {
  2904. return makeCharacter(
  2905. "Louise",
  2906. "MirandaAqrayla",
  2907. {
  2908. side: {
  2909. height: math.unit(5, "feet"),
  2910. weight: math.unit(3000, "lbs"),
  2911. name: "Side",
  2912. image: {
  2913. source: "./media/characters/louise/side.svg"
  2914. }
  2915. },
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(5, "feet")
  2921. }
  2922. ],
  2923. math.unit(5, "feet")
  2924. )
  2925. };
  2926. characterMakers["Ramona"] = () => {
  2927. return makeCharacter(
  2928. "Ramona",
  2929. "ZakuraTech",
  2930. {
  2931. side: {
  2932. height: math.unit(6, "feet"),
  2933. weight: math.unit(150, "lbs"),
  2934. name: "Side",
  2935. image: {
  2936. source: "./media/characters/ramona/side.svg"
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Normal",
  2943. height: math.unit(5.3, "meters")
  2944. },
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(20, "stories")
  2948. },
  2949. {
  2950. name: "Macro+",
  2951. height: math.unit(50, "stories")
  2952. },
  2953. ],
  2954. math.unit(5.3, "meters")
  2955. )
  2956. };
  2957. characterMakers["Deerpuff"] = () => {
  2958. return makeCharacter(
  2959. "Deerpuff",
  2960. "Deerpuff",
  2961. {
  2962. standing: {
  2963. height: math.unit(5.75, "feet"),
  2964. weight: math.unit(160, "lbs"),
  2965. name: "Standing",
  2966. image: {
  2967. source: "./media/characters/deerpuff/standing.svg",
  2968. extra: 682 / 624
  2969. }
  2970. },
  2971. sitting: {
  2972. height: math.unit(5.75 / 1.79, "feet"),
  2973. weight: math.unit(160, "lbs"),
  2974. name: "Sitting",
  2975. image: {
  2976. source: "./media/characters/deerpuff/sitting.svg",
  2977. bottom: 44 / 400,
  2978. extra: 1 / (1 - 44 / 400)
  2979. }
  2980. },
  2981. taurLaying: {
  2982. height: math.unit(6, "feet"),
  2983. weight: math.unit(400, "lbs"),
  2984. name: "Taur (Laying)",
  2985. image: {
  2986. source: "./media/characters/deerpuff/taur-laying.svg"
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Puffball",
  2993. height: math.unit(6, "inches")
  2994. },
  2995. {
  2996. name: "Normalpuff",
  2997. height: math.unit(5.75, "feet")
  2998. },
  2999. {
  3000. name: "Macropuff",
  3001. height: math.unit(1500, "feet")
  3002. },
  3003. {
  3004. name: "Megapuff",
  3005. height: math.unit(500, "miles")
  3006. },
  3007. {
  3008. name: "Gigapuff",
  3009. height: math.unit(250000, "miles")
  3010. },
  3011. {
  3012. name: "Omegapuff",
  3013. height: math.unit(1000, "lightyears")
  3014. },
  3015. ],
  3016. math.unit(1500, "feet")
  3017. )
  3018. };
  3019. characterMakers["Vivian"] = () => {
  3020. return makeCharacter(
  3021. "Vivian",
  3022. "Fauxlacine",
  3023. {
  3024. stomping: {
  3025. height: math.unit(6, "feet"),
  3026. weight: math.unit(170, "lbs"),
  3027. name: "Stomping",
  3028. image: {
  3029. source: "./media/characters/vivian/stomping.svg"
  3030. }
  3031. },
  3032. sitting: {
  3033. height: math.unit(6 / 1.75, "feet"),
  3034. weight: math.unit(170, "lbs"),
  3035. name: "Sitting",
  3036. image: {
  3037. source: "./media/characters/vivian/sitting.svg",
  3038. bottom: 1 / 6.4,
  3039. extra: (1 / (1 - 1 / 6.4)) * (1 + 164 / 1600)
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(7, "feet")
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(10, "stories")
  3051. },
  3052. {
  3053. name: "Macro+",
  3054. height: math.unit(30, "stories")
  3055. },
  3056. {
  3057. name: "Megamacro",
  3058. height: math.unit(10, "miles")
  3059. },
  3060. {
  3061. name: "Megamacro+",
  3062. height: math.unit(2750000, "meters")
  3063. },
  3064. ],
  3065. math.unit(7, "feet")
  3066. )
  3067. };
  3068. characterMakers["Prince"] = () => {
  3069. return makeCharacter(
  3070. "Prince",
  3071. "Kurrikage",
  3072. {
  3073. front: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(160, "lbs"),
  3076. name: "Front",
  3077. image: {
  3078. source: "./media/characters/prince/front.svg",
  3079. extra: 3400/3000
  3080. }
  3081. },
  3082. jumping: {
  3083. height: math.unit(6, "feet"),
  3084. weight: math.unit(160, "lbs"),
  3085. name: "Jumping",
  3086. image: {
  3087. source: "./media/characters/prince/jump.svg",
  3088. extra: 2555/2134
  3089. }
  3090. },
  3091. },
  3092. [
  3093. {
  3094. name: "Normal",
  3095. height: math.unit(7.75, "feet"),
  3096. default: true
  3097. }
  3098. ]
  3099. )
  3100. };
  3101. characterMakers["Psymon"] = () => {
  3102. return makeCharacter(
  3103. "Psymon",
  3104. "Kurrikage",
  3105. {
  3106. standing: {
  3107. height: math.unit(6, "feet"),
  3108. weight: math.unit(300, "lbs"),
  3109. name: "Standing",
  3110. image: {
  3111. source: "./media/characters/psymon/standing.svg",
  3112. extra: 1888/1810
  3113. }
  3114. },
  3115. slithering: {
  3116. height: math.unit(6, "feet"),
  3117. weight: math.unit(300, "lbs"),
  3118. name: "Slithering",
  3119. image: {
  3120. source: "./media/characters/psymon/slithering.svg",
  3121. extra: 1330/1224
  3122. }
  3123. },
  3124. slitheringAlt: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(300, "lbs"),
  3127. name: "Slithering (Alt)",
  3128. image: {
  3129. source: "./media/characters/psymon/slithering-alt.svg",
  3130. extra: 1330/1224
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Normal",
  3137. height: math.unit(11.25, "feet")
  3138. }
  3139. ]
  3140. )
  3141. };
  3142. characterMakers["Daimos"] = () => {
  3143. return makeCharacter(
  3144. "Daimos",
  3145. "Kurrikage",
  3146. {
  3147. front: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(180, "lbs"),
  3150. name: "Front",
  3151. image: {
  3152. source: "./media/characters/daimos/front.svg",
  3153. extra: 4160/3897
  3154. }
  3155. }
  3156. },
  3157. [
  3158. {
  3159. name: "Normal",
  3160. height: math.unit(8, "feet")
  3161. }
  3162. ]
  3163. )
  3164. };
  3165. characterMakers["Blake"] = () => {
  3166. return makeCharacter(
  3167. "Blake",
  3168. "Kurrikage",
  3169. {
  3170. side: {
  3171. height: math.unit(6, "feet"),
  3172. weight: math.unit(180, "lbs"),
  3173. name: "Side",
  3174. image: {
  3175. source: "./media/characters/blake/side.svg",
  3176. extra: 1212/1120 * (1 / (1 - 0.05)),
  3177. bottom: 0.05
  3178. }
  3179. },
  3180. crouched: {
  3181. height: math.unit(6*0.57, "feet"),
  3182. weight: math.unit(180, "lbs"),
  3183. name: "Crouched",
  3184. image: {
  3185. source: "./media/characters/blake/crouched.svg",
  3186. extra: 840/587 * (1 / (1 - 0.04)),
  3187. bottom: 0.04
  3188. }
  3189. },
  3190. bent: {
  3191. height: math.unit(6*0.75, "feet"),
  3192. weight: math.unit(180, "lbs"),
  3193. name: "Bent",
  3194. image: {
  3195. source: "./media/characters/blake/bent.svg",
  3196. extra: 592/544 * (1 / (1 - 0.035)),
  3197. bottom: 0.035
  3198. }
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Normal",
  3204. height: math.unit(8 + 1/6, "feet")
  3205. }
  3206. ]
  3207. )
  3208. };
  3209. characterMakers["Guisetto"] = () => {
  3210. return makeCharacter(
  3211. "Guisetto",
  3212. "Kurrikage",
  3213. {
  3214. front: {
  3215. height: math.unit(6, "feet"),
  3216. weight: math.unit(180, "lbs"),
  3217. name: "Front",
  3218. image: {
  3219. source: "./media/characters/guisetto/front.svg",
  3220. extra: 856/817
  3221. }
  3222. },
  3223. airborne: {
  3224. height: math.unit(6, "feet"),
  3225. weight: math.unit(180, "lbs"),
  3226. name: "Airborne",
  3227. image: {
  3228. source: "./media/characters/guisetto/airborne.svg",
  3229. extra: 584/525
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(10 + 11/12, "feet")
  3237. }
  3238. ]
  3239. )
  3240. };
  3241. characterMakers["Luxor"] = () => {
  3242. return makeCharacter(
  3243. "Luxor",
  3244. "Kurrikage",
  3245. {
  3246. front: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(180, "lbs"),
  3249. name: "Front",
  3250. image: {
  3251. source: "./media/characters/luxor/front.svg",
  3252. extra: 2940/2152
  3253. }
  3254. },
  3255. back: {
  3256. height: math.unit(6, "feet"),
  3257. weight: math.unit(180, "lbs"),
  3258. name: "Back",
  3259. image: {
  3260. source: "./media/characters/luxor/back.svg",
  3261. extra: 1083/960
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(5 + 5/6, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Lamp",
  3273. height: math.unit(50, "feet")
  3274. },
  3275. {
  3276. name: "Lämp",
  3277. height: math.unit(300, "feet")
  3278. },
  3279. {
  3280. name: "The sun is a lamp",
  3281. height: math.unit(250000, "miles")
  3282. },
  3283. ]
  3284. )
  3285. };
  3286. characterMakers["Huoyan"] = () => {
  3287. return makeCharacter(
  3288. "Huoyan",
  3289. "Kurrikage",
  3290. {
  3291. front: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(50, "lbs"),
  3294. name: "Front",
  3295. image: {
  3296. source: "./media/characters/huoyan/front.svg"
  3297. }
  3298. },
  3299. side: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(180, "lbs"),
  3302. name: "Side",
  3303. image: {
  3304. source: "./media/characters/huoyan/side.svg"
  3305. }
  3306. },
  3307. },
  3308. [
  3309. {
  3310. name: "Normal",
  3311. height: math.unit(65, "feet")
  3312. }
  3313. ]
  3314. )
  3315. };
  3316. characterMakers["Tails"] = () => {
  3317. return makeCharacter(
  3318. "Tails",
  3319. "Rainier",
  3320. {
  3321. front: {
  3322. height: math.unit(5 + 3/4, "feet"),
  3323. weight: math.unit(120, "lbs"),
  3324. name: "Front",
  3325. image: {
  3326. source: "./media/characters/tails/front.svg"
  3327. }
  3328. }
  3329. },
  3330. [
  3331. {
  3332. name: "Normal",
  3333. height: math.unit(5 + 3/4, "feet")
  3334. }
  3335. ]
  3336. )
  3337. };
  3338. characterMakers["Rainy"] = () => {
  3339. return makeCharacter(
  3340. "Rainy",
  3341. "Rainier",
  3342. {
  3343. front: {
  3344. height: math.unit(4, "feet"),
  3345. weight: math.unit(50, "lbs"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/rainy/front.svg"
  3349. }
  3350. }
  3351. },
  3352. [
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(800, "feet")
  3356. }
  3357. ]
  3358. )
  3359. };
  3360. characterMakers["Rainier"] = () => {
  3361. return makeCharacter(
  3362. "Rainier",
  3363. "Rainier",
  3364. {
  3365. front: {
  3366. height: math.unit(6, "feet"),
  3367. weight: math.unit(150, "lbs"),
  3368. name: "Front",
  3369. image: {
  3370. source: "./media/characters/rainier/front.svg"
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Micro",
  3377. height: math.unit(2, "mm")
  3378. }
  3379. ]
  3380. )
  3381. };
  3382. characterMakers["Andy"] = () => {
  3383. return makeCharacter(
  3384. "Andy",
  3385. "drewbermeister",
  3386. {
  3387. front: {
  3388. height: math.unit(6, "feet"),
  3389. weight: math.unit(180, "lbs"),
  3390. name: "Front",
  3391. image: {
  3392. source: "./media/characters/andy/front.svg"
  3393. }
  3394. }
  3395. },
  3396. [
  3397. {
  3398. name: "Normal",
  3399. height: math.unit(8, "feet")
  3400. },
  3401. {
  3402. name: "Macro",
  3403. height: math.unit(1000, "feet")
  3404. },
  3405. {
  3406. name: "Megamacro",
  3407. height: math.unit(5, "miles")
  3408. },
  3409. {
  3410. name: "Gigamacro",
  3411. height: math.unit(5000, "miles")
  3412. },
  3413. ]
  3414. )
  3415. };
  3416. characterMakers["Cimmaron"] = () => {
  3417. return makeCharacter(
  3418. "Cimmaron",
  3419. "Cimmaron",
  3420. {
  3421. frontClothed: {
  3422. height: math.unit(6, "feet"),
  3423. weight: math.unit(210, "lbs"),
  3424. name: "Front (Clothed)",
  3425. image: {
  3426. source: "./media/characters/cimmaron/front-clothed.svg",
  3427. extra: 701/676 * (1 / (1 - 0.046)),
  3428. bottom: 0.046
  3429. }
  3430. },
  3431. backClothed: {
  3432. height: math.unit(6, "feet"),
  3433. weight: math.unit(210, "lbs"),
  3434. name: "Back (Clothed)",
  3435. image: {
  3436. source: "./media/characters/cimmaron/back-clothed.svg",
  3437. extra: 701/676 * (1 / (1 - 0.046)),
  3438. bottom: 0.046
  3439. }
  3440. },
  3441. frontNude: {
  3442. height: math.unit(6, "feet"),
  3443. weight: math.unit(210, "lbs"),
  3444. name: "Front (Nude)",
  3445. image: {
  3446. source: "./media/characters/cimmaron/front-nude.svg",
  3447. extra: 701/676 * (1 / (1 - 0.046)),
  3448. bottom: 0.046
  3449. }
  3450. },
  3451. backNude: {
  3452. height: math.unit(6, "feet"),
  3453. weight: math.unit(210, "lbs"),
  3454. name: "Back (Nude)",
  3455. image: {
  3456. source: "./media/characters/cimmaron/back-nude.svg",
  3457. extra: 701/676 * (1 / (1 - 0.046)),
  3458. bottom: 0.046
  3459. }
  3460. }
  3461. },
  3462. [
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(6, "feet"),
  3466. default: true
  3467. },
  3468. {
  3469. name: "Macro Mayor",
  3470. height: math.unit(350, "meters")
  3471. },
  3472. ]
  3473. )
  3474. };
  3475. characterMakers["Akari Kaen"] = () => {
  3476. return makeCharacter(
  3477. "Akari Kaen",
  3478. "Akari",
  3479. {
  3480. front: {
  3481. height: math.unit(6, "feet"),
  3482. weight: math.unit(200, "lbs"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/akari/front.svg",
  3486. bottom: 0.04,
  3487. extra: (1 / (1 - 0.04)) * (962/901)
  3488. }
  3489. }
  3490. },
  3491. [
  3492. {
  3493. name: "Micro",
  3494. height: math.unit(5, "inches"),
  3495. default: true
  3496. },
  3497. {
  3498. name: "Normal",
  3499. height: math.unit(7, "feet")
  3500. },
  3501. ]
  3502. )
  3503. };
  3504. characterMakers["Cynosura"] = () => {
  3505. return makeCharacter(
  3506. "Cynosura",
  3507. "Cynosura",
  3508. {
  3509. front: {
  3510. height: math.unit(6, "feet"),
  3511. weight: math.unit(140, "lbs"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/cynosura/front.svg",
  3515. extra: 896/847
  3516. }
  3517. },
  3518. back: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(140, "lbs"),
  3521. name: "Back",
  3522. image: {
  3523. source: "./media/characters/cynosura/back.svg",
  3524. extra: 1365/1250
  3525. }
  3526. },
  3527. },
  3528. [
  3529. {
  3530. name: "Micro",
  3531. height: math.unit(4, "inches")
  3532. },
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(5.75, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Tall",
  3540. height: math.unit(10, "feet")
  3541. },
  3542. {
  3543. name: "Big",
  3544. height: math.unit(20, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(50, "feet")
  3549. },
  3550. ]
  3551. )
  3552. };
  3553. characterMakers["Gin"] = () => {
  3554. return makeCharacter(
  3555. "Gin",
  3556. "Ozzie_gt",
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(170, "lbs"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/gin/front.svg"
  3564. }
  3565. },
  3566. foot: {
  3567. height: math.unit(6/4.25, "feet"),
  3568. name: "Foot",
  3569. image: {
  3570. source: "./media/characters/gin/foot.svg"
  3571. }
  3572. },
  3573. sole: {
  3574. height: math.unit(6/4.40, "feet"),
  3575. name: "Sole",
  3576. image: {
  3577. source: "./media/characters/gin/sole.svg"
  3578. }
  3579. },
  3580. },
  3581. [
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(9 + 4/12, "feet")
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(1500, "feet")
  3589. },
  3590. {
  3591. name: "Megamacro",
  3592. height: math.unit(200, "miles"),
  3593. default: true
  3594. },
  3595. {
  3596. name: "Gigamacro",
  3597. height: math.unit(500, "megameters")
  3598. },
  3599. {
  3600. name: "Teramacro",
  3601. height: math.unit(15, "lightyears")
  3602. }
  3603. ]
  3604. )
  3605. };
  3606. characterMakers["Guy"] = () => {
  3607. return makeCharacter(
  3608. "Guy",
  3609. "Whatastandupguy",
  3610. {
  3611. front: {
  3612. height: math.unit(6 + 1/6, "feet"),
  3613. weight: math.unit(178, "lbs"),
  3614. name: "Front",
  3615. image: {
  3616. source: "./media/characters/guy/front.svg"
  3617. }
  3618. }
  3619. },
  3620. [
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(6 + 1/6, "feet")
  3624. },
  3625. {
  3626. name: "Large",
  3627. height: math.unit(25 + 7/12, "feet")
  3628. },
  3629. {
  3630. name: "Macro",
  3631. height: math.unit(60 + 9/12, "feet")
  3632. },
  3633. {
  3634. name: "Macro+",
  3635. height: math.unit(246, "feet")
  3636. },
  3637. {
  3638. name: "Macro++",
  3639. height: math.unit(878, "feet")
  3640. }
  3641. ]
  3642. )
  3643. };
  3644. characterMakers["Tiberius"] = () => {
  3645. return makeCharacter(
  3646. "Tiberius",
  3647. "movler",
  3648. {
  3649. front: {
  3650. height: math.unit(9, "feet"),
  3651. weight: math.unit(800, "lbs"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/tiberius/front.svg",
  3655. extra: 2295/2071
  3656. }
  3657. },
  3658. back: {
  3659. height: math.unit(9, "feet"),
  3660. weight: math.unit(800, "lbs"),
  3661. name: "Back",
  3662. image: {
  3663. source: "./media/characters/tiberius/back.svg",
  3664. extra: 2373/2160
  3665. }
  3666. },
  3667. },
  3668. [
  3669. {
  3670. name: "Normal",
  3671. height: math.unit(9, "feet"),
  3672. default: true
  3673. }
  3674. ]
  3675. )
  3676. };
  3677. characterMakers["Surgo"] = () => {
  3678. return makeCharacter(
  3679. "Surgo",
  3680. "movler",
  3681. {
  3682. front: {
  3683. height: math.unit(6, "feet"),
  3684. weight: math.unit(600, "lbs"),
  3685. name: "Front",
  3686. image: {
  3687. source: "./media/characters/surgo/front.svg",
  3688. extra: 3591/2227
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(6, "feet"),
  3693. weight: math.unit(600, "lbs"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/surgo/back.svg",
  3697. extra: 3557/2228
  3698. }
  3699. },
  3700. laying: {
  3701. height: math.unit(6 * 0.85, "feet"),
  3702. weight: math.unit(600, "lbs"),
  3703. name: "Laying",
  3704. image: {
  3705. source: "./media/characters/surgo/laying.svg"
  3706. }
  3707. },
  3708. },
  3709. [
  3710. {
  3711. name: "Normal",
  3712. height: math.unit(6, "feet"),
  3713. default: true
  3714. }
  3715. ]
  3716. )
  3717. };
  3718. characterMakers["Cibus"] = () => {
  3719. return makeCharacter(
  3720. "Cibus",
  3721. "movler",
  3722. {
  3723. side: {
  3724. height: math.unit(6, "feet"),
  3725. weight: math.unit(150, "lbs"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/cibus/side.svg",
  3729. extra: 800/400
  3730. }
  3731. },
  3732. },
  3733. [
  3734. {
  3735. name: "Normal",
  3736. height: math.unit(6, "feet"),
  3737. default: true
  3738. }
  3739. ]
  3740. )
  3741. };
  3742. characterMakers["Nibbles"] = () => {
  3743. return makeCharacter(
  3744. "Nibbles",
  3745. "movler",
  3746. {
  3747. front: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(240, "lbs"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/nibbles/front.svg"
  3753. }
  3754. },
  3755. side: {
  3756. height: math.unit(6, "feet"),
  3757. weight: math.unit(240, "lbs"),
  3758. name: "Side",
  3759. image: {
  3760. source: "./media/characters/nibbles/side.svg"
  3761. }
  3762. },
  3763. },
  3764. [
  3765. {
  3766. name: "Normal",
  3767. height: math.unit(9, "feet"),
  3768. default: true
  3769. }
  3770. ]
  3771. )
  3772. };
  3773. characterMakers["Rikky"] = () => {
  3774. return makeCharacter(
  3775. "Rikky",
  3776. "Quake Yote",
  3777. {
  3778. side: {
  3779. height: math.unit(5 + 1/6, "feet"),
  3780. weight: math.unit(130, "lbs"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/rikky/side.svg"
  3784. }
  3785. },
  3786. },
  3787. [
  3788. {
  3789. name: "Normal",
  3790. height: math.unit(5 + 1/6, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(152, "feet"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Megamacro",
  3799. height: math.unit(7, "miles")
  3800. }
  3801. ]
  3802. )
  3803. };
  3804. characterMakers["Malfressa"] = () => {
  3805. return makeCharacter(
  3806. "Malfressa",
  3807. "Scareye",
  3808. {
  3809. side: {
  3810. height: math.unit(370, "cm"),
  3811. weight: math.unit(350, "lbs"),
  3812. name: "Side",
  3813. image: {
  3814. source: "./media/characters/malfressa/side.svg"
  3815. }
  3816. },
  3817. walking: {
  3818. height: math.unit(370, "cm"),
  3819. weight: math.unit(350, "lbs"),
  3820. name: "Walking",
  3821. image: {
  3822. source: "./media/characters/malfressa/walking.svg"
  3823. }
  3824. },
  3825. feral: {
  3826. height: math.unit(2500, "cm"),
  3827. weight: math.unit(100000, "lbs"),
  3828. name: "Feral",
  3829. image: {
  3830. source: "./media/characters/malfressa/feral.svg",
  3831. extra: 2108/837 * (1 / (1 - 0.02)),
  3832. bottom: 0.02
  3833. }
  3834. },
  3835. },
  3836. [
  3837. {
  3838. name: "Normal",
  3839. height: math.unit(370, "cm")
  3840. },
  3841. {
  3842. name: "Macro",
  3843. height: math.unit(300, "meters"),
  3844. default: true
  3845. }
  3846. ]
  3847. )
  3848. };
  3849. characterMakers["Jaro"] = () => {
  3850. return makeCharacter(
  3851. "Jaro",
  3852. "Jaro",
  3853. {
  3854. front: {
  3855. height: math.unit(6, "feet"),
  3856. weight: math.unit(60, "kg"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/jaro/front.svg"
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(60, "kg"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/jaro/back.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Micro",
  3874. height: math.unit(7, "inches")
  3875. },
  3876. {
  3877. name: "Normal",
  3878. height: math.unit(5.5, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Minimacro",
  3883. height: math.unit(20, "feet")
  3884. },
  3885. {
  3886. name: "Macro",
  3887. height: math.unit(200, "meters")
  3888. }
  3889. ]
  3890. )
  3891. };
  3892. characterMakers["Rogue"] = () => {
  3893. return makeCharacter(
  3894. "Rogue",
  3895. "Rogue",
  3896. {
  3897. front: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(195, "lb"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/rogue/front.svg"
  3903. }
  3904. },
  3905. },
  3906. [
  3907. {
  3908. name: "Macro",
  3909. height: math.unit(90, "feet"),
  3910. default: true
  3911. },
  3912. ]
  3913. )
  3914. };
  3915. characterMakers["Piper"] = () => {
  3916. return makeCharacter(
  3917. "Piper",
  3918. "Flyhar",
  3919. {
  3920. front: {
  3921. height: math.unit(5 + 8/12, "feet"),
  3922. weight: math.unit(140, "lb"),
  3923. name: "Front",
  3924. image: {
  3925. source: "./media/characters/piper/front.svg",
  3926. extra: 3928/3681
  3927. }
  3928. },
  3929. },
  3930. [
  3931. {
  3932. name: "Micro",
  3933. height: math.unit(2, "inches")
  3934. },
  3935. {
  3936. name: "Normal",
  3937. height: math.unit(5 + 8/12, "feet")
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(250, "feet"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Megamacro",
  3946. height: math.unit(7, "miles")
  3947. },
  3948. ]
  3949. )
  3950. };
  3951. characterMakers["Gemini"] = () => {
  3952. return makeCharacter(
  3953. "Gemini",
  3954. "lajay",
  3955. {
  3956. front: {
  3957. height: math.unit(6, "feet"),
  3958. weight: math.unit(220, "lb"),
  3959. name: "Front",
  3960. image: {
  3961. source: "./media/characters/gemini/front.svg"
  3962. }
  3963. },
  3964. back: {
  3965. height: math.unit(6, "feet"),
  3966. weight: math.unit(220, "lb"),
  3967. name: "Back",
  3968. image: {
  3969. source: "./media/characters/gemini/back.svg"
  3970. }
  3971. },
  3972. kneeling: {
  3973. height: math.unit(6/1.5, "feet"),
  3974. weight: math.unit(220, "lb"),
  3975. name: "Kneeling",
  3976. image: {
  3977. source: "./media/characters/gemini/kneeling.svg",
  3978. bottom: 0.02
  3979. }
  3980. },
  3981. },
  3982. [
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(300, "meters"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(6900, "meters")
  3991. },
  3992. ]
  3993. )
  3994. };
  3995. characterMakers["Alicia"] = () => {
  3996. return makeCharacter(
  3997. "Alicia",
  3998. "LittleBig",
  3999. {
  4000. anthro: {
  4001. height: math.unit(2.35, "meters"),
  4002. weight: math.unit(73, "kg"),
  4003. name: "Anthro",
  4004. image: {
  4005. source: "./media/characters/alicia/anthro.svg"
  4006. }
  4007. },
  4008. feral: {
  4009. height: math.unit(1.69, "meters"),
  4010. weight: math.unit(73, "kg"),
  4011. name: "Feral",
  4012. image: {
  4013. source: "./media/characters/alicia/feral.svg"
  4014. }
  4015. },
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(2.35, "meters")
  4021. },
  4022. {
  4023. name: "Macro",
  4024. height: math.unit(60, "meters"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Megamacro",
  4029. height: math.unit(10000, "kilometers")
  4030. },
  4031. ]
  4032. )
  4033. };
  4034. characterMakers["Archy"] = () => {
  4035. return makeCharacter(
  4036. "Archy",
  4037. "ArchyD",
  4038. {
  4039. front: {
  4040. height: math.unit(7, "feet"),
  4041. weight: math.unit(250, "lbs"),
  4042. name: "Front",
  4043. image: {
  4044. source: "./media/characters/archy/front.svg"
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Micro",
  4051. height: math.unit(1, "inch")
  4052. },
  4053. {
  4054. name: "Shorty",
  4055. height: math.unit(5, "feet")
  4056. },
  4057. {
  4058. name: "Normal",
  4059. height: math.unit(7, "feet")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(600, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(1, "mile")
  4069. },
  4070. ]
  4071. )
  4072. };
  4073. characterMakers["Berri"] = () => {
  4074. return makeCharacter(
  4075. "Berri",
  4076. "LittleBig",
  4077. {
  4078. front: {
  4079. height: math.unit(1.65, "meters"),
  4080. weight: math.unit(74, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/berri/front.svg"
  4084. }
  4085. }
  4086. },
  4087. [
  4088. {
  4089. name: "Normal",
  4090. height: math.unit(1.65, "meters")
  4091. },
  4092. {
  4093. name: "Macro",
  4094. height: math.unit(60, "m"),
  4095. default: true
  4096. },
  4097. {
  4098. name: "Megamacro",
  4099. height: math.unit(9.213, "km")
  4100. },
  4101. {
  4102. name: "Planet Eater",
  4103. height: math.unit(489, "megameters")
  4104. },
  4105. {
  4106. name: "Teramacro",
  4107. height: math.unit(2471635000000, "meters")
  4108. },
  4109. {
  4110. name: "Examacro",
  4111. height: math.unit(8.0624e+26, "meters")
  4112. }
  4113. ]
  4114. )
  4115. };
  4116. characterMakers["Lexi"] = () => {
  4117. return makeCharacter(
  4118. "Lexi",
  4119. "LittleBig",
  4120. {
  4121. front: {
  4122. height: math.unit(1.72, "meters"),
  4123. weight: math.unit(68, "kg"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/lexi/front.svg"
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Very Smol",
  4133. height: math.unit(10, "mm")
  4134. },
  4135. {
  4136. name: "Micro",
  4137. height: math.unit(6.8, "cm"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Normal",
  4142. height: math.unit(1.72, "m")
  4143. }
  4144. ]
  4145. )
  4146. };
  4147. characterMakers["Martin"] = () => {
  4148. return makeCharacter(
  4149. "Martin",
  4150. "LittleBig",
  4151. {
  4152. front: {
  4153. height: math.unit(1.69, "meters"),
  4154. weight: math.unit(68, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/martin/front.svg",
  4158. extra: 596/581
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Micro",
  4165. height: math.unit(6.85, "cm"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(1.69, "m")
  4171. }
  4172. ]
  4173. )
  4174. };
  4175. characterMakers["Juno"] = () => {
  4176. return makeCharacter(
  4177. "Juno",
  4178. "LittleBig",
  4179. {
  4180. front: {
  4181. height: math.unit(1.69, "meters"),
  4182. weight: math.unit(68, "kg"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/juno/front.svg"
  4186. }
  4187. }
  4188. },
  4189. [
  4190. {
  4191. name: "Micro",
  4192. height: math.unit(7, "cm")
  4193. },
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(1.89, "m")
  4197. },
  4198. {
  4199. name: "Macro",
  4200. height: math.unit(353, "meters"),
  4201. default: true
  4202. }
  4203. ]
  4204. )
  4205. };
  4206. characterMakers["Samantha"] = () => {
  4207. return makeCharacter(
  4208. "Samantha",
  4209. "LittleBig",
  4210. {
  4211. front: {
  4212. height: math.unit(1.93, "meters"),
  4213. weight: math.unit(83, "kg"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/samantha/front.svg"
  4217. }
  4218. },
  4219. frontClothed: {
  4220. height: math.unit(1.93, "meters"),
  4221. weight: math.unit(83, "kg"),
  4222. name: "Front (Clothed)",
  4223. image: {
  4224. source: "./media/characters/samantha/front-clothed.svg"
  4225. }
  4226. },
  4227. back: {
  4228. height: math.unit(1.93, "meters"),
  4229. weight: math.unit(83, "kg"),
  4230. name: "Back",
  4231. image: {
  4232. source: "./media/characters/samantha/back.svg"
  4233. }
  4234. },
  4235. },
  4236. [
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(1.93, "m")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(74, "meters"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Macro+",
  4248. height: math.unit(223, "meters"),
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(8381, "meters"),
  4253. },
  4254. {
  4255. name: "Megamacro+",
  4256. height: math.unit(12000, "kilometers")
  4257. },
  4258. ]
  4259. )
  4260. };
  4261. characterMakers["Dr. Clay"] = () => {
  4262. return makeCharacter(
  4263. "Dr. Clay",
  4264. "LittleBig",
  4265. {
  4266. front: {
  4267. height: math.unit(1.92, "meters"),
  4268. weight: math.unit(80, "kg"),
  4269. name: "Front",
  4270. image: {
  4271. source: "./media/characters/dr-clay/front.svg"
  4272. }
  4273. },
  4274. frontClothed: {
  4275. height: math.unit(1.92, "meters"),
  4276. weight: math.unit(80, "kg"),
  4277. name: "Front (Clothed)",
  4278. image: {
  4279. source: "./media/characters/dr-clay/front-clothed.svg"
  4280. }
  4281. }
  4282. },
  4283. [
  4284. {
  4285. name: "Normal",
  4286. height: math.unit(1.92, "m")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(214, "meters"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Macro+",
  4295. height: math.unit(12.237, "meters"),
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(557, "megameters"),
  4300. },
  4301. {
  4302. name: "Unimaginable",
  4303. height: math.unit(120e9, "lightyears")
  4304. },
  4305. ]
  4306. )
  4307. };
  4308. characterMakers["Wyvrn Ripsnarl"] = () => {
  4309. return makeCharacter(
  4310. "Wyvrn Ripsnarl",
  4311. "LoboRaptorLo",
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meters"),
  4315. weight: math.unit(80, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Teramacro",
  4325. height: math.unit(500000, "lightyears")
  4326. },
  4327. ]
  4328. )
  4329. };
  4330. characterMakers["Vemus"] = () => {
  4331. return makeCharacter(
  4332. "Vemus",
  4333. "Vemus",
  4334. {
  4335. front: {
  4336. height: math.unit(2, "meters"),
  4337. weight: math.unit(150, "kg"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/vemus/front.svg",
  4341. extra: 2384/2084
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(3, "meters"),
  4349. default: true
  4350. },
  4351. {
  4352. name: "Lorg",
  4353. height: math.unit(7, "meters")
  4354. },
  4355. {
  4356. name: "More Lorg",
  4357. height: math.unit(250, "meters")
  4358. },
  4359. ]
  4360. )
  4361. };
  4362. characterMakers["Beherit"] = () => {
  4363. return makeCharacter(
  4364. "Beherit",
  4365. "Beherit",
  4366. {
  4367. front: {
  4368. height: math.unit(2, "meters"),
  4369. weight: math.unit(70, "kg"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/beherit/front.svg",
  4373. extra: 1408/1242
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Normal",
  4380. height: math.unit(6, "feet")
  4381. },
  4382. {
  4383. name: "Lorg",
  4384. height: math.unit(25, "feet"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Lorger",
  4389. height: math.unit(75, "feet")
  4390. },
  4391. {
  4392. name: "Macro",
  4393. height: math.unit(200, "meters")
  4394. },
  4395. ]
  4396. )
  4397. };
  4398. characterMakers["Everett"] = () => {
  4399. return makeCharacter(
  4400. "Everett",
  4401. "Beherit",
  4402. {
  4403. front: {
  4404. height: math.unit(2, "meters"),
  4405. weight: math.unit(150, "kg"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/everett/front.svg",
  4409. extra: 2038/1737 * (1 / (1 - 0.03)),
  4410. bottom: 0.03
  4411. }
  4412. },
  4413. paw: {
  4414. height: math.unit(2/3.6, "meters"),
  4415. name: "Paw",
  4416. image: {
  4417. source: "./media/characters/everett/paw.svg"
  4418. }
  4419. },
  4420. },
  4421. [
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(15, "feet"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Lorg",
  4429. height: math.unit(70, "feet"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Lorger",
  4434. height: math.unit(250, "feet")
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(500, "meters")
  4439. },
  4440. ]
  4441. )
  4442. };
  4443. characterMakers["Rose Lion"] = () => {
  4444. return makeCharacter(
  4445. "Rose Lion",
  4446. "Enormouse",
  4447. {
  4448. front: {
  4449. height: math.unit(2, "meters"),
  4450. weight: math.unit(86, "kg"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/rose-lion/front.svg"
  4454. }
  4455. },
  4456. bent: {
  4457. height: math.unit(2/1.4288, "meters"),
  4458. weight: math.unit(86, "kg"),
  4459. name: "Bent",
  4460. image: {
  4461. source: "./media/characters/rose-lion/bent.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Mini-Micro",
  4468. height: math.unit(1, "cm")
  4469. },
  4470. {
  4471. name: "Micro",
  4472. height: math.unit(3.5, "inches"),
  4473. default: true
  4474. },
  4475. {
  4476. name: "Normal",
  4477. height: math.unit(6 + 1/6, "feet")
  4478. },
  4479. {
  4480. name: "Mini-Macro",
  4481. height: math.unit(9 + 10/12, "feet")
  4482. },
  4483. ]
  4484. )
  4485. };
  4486. characterMakers["Regal"] = () => {
  4487. return makeCharacter(
  4488. "Regal",
  4489. "Regal Drennen",
  4490. {
  4491. front: {
  4492. height: math.unit(2, "meters"),
  4493. weight: math.unit(350, "lbs"),
  4494. name: "Front",
  4495. image: {
  4496. source: "./media/characters/regal/front.svg"
  4497. }
  4498. },
  4499. back: {
  4500. height: math.unit(2, "meters"),
  4501. weight: math.unit(350, "lbs"),
  4502. name: "Back",
  4503. image: {
  4504. source: "./media/characters/regal/back.svg"
  4505. }
  4506. },
  4507. },
  4508. [
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(350, "feet"),
  4512. default: true
  4513. }
  4514. ]
  4515. )
  4516. };
  4517. characterMakers["Opal"] = () => {
  4518. return makeCharacter(
  4519. "Opal",
  4520. "Enormouse",
  4521. {
  4522. front: {
  4523. height: math.unit(4 + 11/12, "feet"),
  4524. weight: math.unit(100, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/opal/front.svg"
  4528. }
  4529. },
  4530. frontAlt: {
  4531. height: math.unit(4 + 11/12, "feet"),
  4532. weight: math.unit(100, "lbs"),
  4533. name: "Front (Alt)",
  4534. image: {
  4535. source: "./media/characters/opal/front-alt.svg"
  4536. }
  4537. },
  4538. },
  4539. [
  4540. {
  4541. name: "Small",
  4542. height: math.unit(4 + 11/12, "feet")
  4543. },
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(20, "feet"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Macro",
  4551. height: math.unit(120, "feet")
  4552. },
  4553. {
  4554. name: "Megamacro",
  4555. height: math.unit(80, "miles")
  4556. },
  4557. {
  4558. name: "True Size",
  4559. height: math.unit(100000, "lightyears")
  4560. },
  4561. ]
  4562. )
  4563. };
  4564. characterMakers["Vector Wuff"] = () => {
  4565. return makeCharacter(
  4566. "Vector Wuff",
  4567. "Vector",
  4568. {
  4569. front: {
  4570. height: math.unit(6, "feet"),
  4571. weight: math.unit(200, "lbs"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/vector-wuff/front.svg"
  4575. }
  4576. }
  4577. },
  4578. [
  4579. {
  4580. name: "Normal",
  4581. height: math.unit(2.8, "meters")
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(450, "meters"),
  4586. default: true
  4587. },
  4588. {
  4589. name: "Megamacro",
  4590. height: math.unit(15, "kilometers")
  4591. }
  4592. ]
  4593. )
  4594. };
  4595. characterMakers["Dannik"] = () => {
  4596. return makeCharacter(
  4597. "Dannik",
  4598. "LuchaLibreLibro",
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(256, "lbs"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/dannik/front.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(69.57, "meters"),
  4613. default: true
  4614. },
  4615. ]
  4616. )
  4617. };
  4618. characterMakers["Azura Saharah"] = () => {
  4619. return makeCharacter(
  4620. "Azura Saharah",
  4621. "AzuraSaharah",
  4622. {
  4623. front: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(120, "lbs"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/azura-saharah/front.svg"
  4629. }
  4630. },
  4631. back: {
  4632. height: math.unit(6, "feet"),
  4633. weight: math.unit(120, "lbs"),
  4634. name: "Back",
  4635. image: {
  4636. source: "./media/characters/azura-saharah/back.svg"
  4637. }
  4638. },
  4639. },
  4640. [
  4641. {
  4642. name: "Macro",
  4643. height: math.unit(100, "feet"),
  4644. default: true
  4645. },
  4646. ]
  4647. )
  4648. };
  4649. characterMakers["Kennedy"] = () => {
  4650. return makeCharacter(
  4651. "Kennedy",
  4652. "BossVoss",
  4653. {
  4654. side: {
  4655. height: math.unit(5 + 4/12, "feet"),
  4656. weight: math.unit(163, "lbs"),
  4657. name: "Side",
  4658. image: {
  4659. source: "./media/characters/kennedy/side.svg"
  4660. }
  4661. }
  4662. },
  4663. [
  4664. {
  4665. name: "Standard Doggo",
  4666. height: math.unit(5 + 4/12, "feet")
  4667. },
  4668. {
  4669. name: "Big Doggo",
  4670. height: math.unit(25 + 3/12, "feet"),
  4671. default: true
  4672. },
  4673. ]
  4674. )
  4675. };
  4676. characterMakers["Odi Lunar"] = () => {
  4677. return makeCharacter(
  4678. "Odi Lunar",
  4679. "OdiLunar",
  4680. {
  4681. front: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(90, "lbs"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/odi-lunar/front.svg"
  4687. }
  4688. }
  4689. },
  4690. [
  4691. {
  4692. name: "Micro",
  4693. height: math.unit(3, "inches"),
  4694. default: true
  4695. },
  4696. {
  4697. name: "Normal",
  4698. height: math.unit(5.5, "feet")
  4699. }
  4700. ]
  4701. )
  4702. };
  4703. characterMakers["Mandake"] = () => {
  4704. return makeCharacter(
  4705. "Mandake",
  4706. "Dialuca01",
  4707. {
  4708. back: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(220, "lbs"),
  4711. name: "Back",
  4712. image: {
  4713. source: "./media/characters/mandake/back.svg"
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Normal",
  4720. height: math.unit(7, "feet")
  4721. },
  4722. {
  4723. name: "Macro",
  4724. height: math.unit(78, "feet")
  4725. },
  4726. {
  4727. name: "Macro+",
  4728. height: math.unit(300, "meters")
  4729. },
  4730. {
  4731. name: "Macro++",
  4732. height: math.unit(2400, "feet")
  4733. },
  4734. {
  4735. name: "Megamacro",
  4736. height: math.unit(5167, "meters")
  4737. },
  4738. {
  4739. name: "Gigamacro",
  4740. height: math.unit(41769, "miles")
  4741. },
  4742. ]
  4743. )
  4744. };
  4745. characterMakers["Yozey"] = () => {
  4746. return makeCharacter(
  4747. "Yozey",
  4748. "Yozey",
  4749. {
  4750. front: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(120, "lbs"),
  4753. name: "Front",
  4754. image: {
  4755. source: "./media/characters/yozey/front.svg"
  4756. }
  4757. },
  4758. frontAlt: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(120, "lbs"),
  4761. name: "Front (Alt)",
  4762. image: {
  4763. source: "./media/characters/yozey/front-alt.svg"
  4764. }
  4765. },
  4766. side: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(120, "lbs"),
  4769. name: "Side",
  4770. image: {
  4771. source: "./media/characters/yozey/side.svg"
  4772. }
  4773. },
  4774. },
  4775. [
  4776. {
  4777. name: "Micro",
  4778. height: math.unit(3, "inches"),
  4779. default: true
  4780. },
  4781. {
  4782. name: "Normal",
  4783. height: math.unit(6, "feet")
  4784. }
  4785. ]
  4786. )
  4787. };
  4788. characterMakers["Valeska Voss"] = () => {
  4789. return makeCharacter(
  4790. "Valeska Voss",
  4791. "BossVoss",
  4792. {
  4793. front: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(103, "lbs"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/valeska-voss/front.svg"
  4799. }
  4800. }
  4801. },
  4802. [
  4803. {
  4804. name: "Mini-Sized Sub",
  4805. height: math.unit(3.1, "inches")
  4806. },
  4807. {
  4808. name: "Mid-Sized Sub",
  4809. height: math.unit(6.2, "inches")
  4810. },
  4811. {
  4812. name: "Full-Sized Sub",
  4813. height: math.unit(9.3, "inches")
  4814. },
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(5 + 2/12, "foot"),
  4818. default: true
  4819. },
  4820. ]
  4821. )
  4822. };
  4823. characterMakers["Gene Zeta"] = () => {
  4824. return makeCharacter(
  4825. "Gene Zeta",
  4826. "Xeebes",
  4827. {
  4828. front: {
  4829. height: math.unit(6, "feet"),
  4830. weight: math.unit(160, "lbs"),
  4831. name: "Front",
  4832. image: {
  4833. source: "./media/characters/gene-zeta/front.svg",
  4834. bottom: 0.03,
  4835. extra: 1 / (1 - 0.03)
  4836. }
  4837. }
  4838. },
  4839. [
  4840. {
  4841. name: "Normal",
  4842. height: math.unit(6.25, "foot"),
  4843. default: true
  4844. },
  4845. ]
  4846. )
  4847. };
  4848. characterMakers["Razinox"] = () => {
  4849. return makeCharacter(
  4850. "Razinox",
  4851. "Razinox",
  4852. {
  4853. front: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(350, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/razinox/front.svg",
  4859. extra: 1686/1548
  4860. }
  4861. },
  4862. back: {
  4863. height: math.unit(6, "feet"),
  4864. weight: math.unit(350, "lbs"),
  4865. name: "Back",
  4866. image: {
  4867. source: "./media/characters/razinox/back.svg",
  4868. extra: 1660/1590
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(10 + 8/12, "foot")
  4876. },
  4877. {
  4878. name: "Minimacro",
  4879. height: math.unit(15, "foot")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(60, "foot"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Megamacro",
  4888. height: math.unit(5, "miles")
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(6000, "miles")
  4893. },
  4894. ]
  4895. )
  4896. };
  4897. characterMakers["Cobalt"] = () => {
  4898. return makeCharacter(
  4899. "Cobalt",
  4900. "Miateshcha",
  4901. {
  4902. front: {
  4903. height: math.unit(6, "feet"),
  4904. weight: math.unit(150, "lbs"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/cobalt/front.svg"
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(8 + 1/12, "foot")
  4915. },
  4916. {
  4917. name: "Macro",
  4918. height: math.unit(111, "foot"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Supracosmic",
  4923. height: math.unit(1e42, "feet")
  4924. },
  4925. ]
  4926. )
  4927. };
  4928. characterMakers["Amanda"] = () => {
  4929. return makeCharacter(
  4930. "Amanda",
  4931. "Amanda",
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(140, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/amanda/front.svg"
  4939. }
  4940. }
  4941. },
  4942. [
  4943. {
  4944. name: "Micro",
  4945. height: math.unit(5, "inches"),
  4946. default: true
  4947. },
  4948. ]
  4949. )
  4950. };
  4951. characterMakers["Teal"] = () => {
  4952. return makeCharacter(
  4953. "Teal",
  4954. "Teal",
  4955. {
  4956. front: {
  4957. height: math.unit(5.59, "feet"),
  4958. weight: math.unit(250, "lbs"),
  4959. name: "Front",
  4960. image: {
  4961. source: "./media/characters/teal/front.svg"
  4962. }
  4963. },
  4964. frontAlt: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(250, "lbs"),
  4967. name: "Front (Alt)",
  4968. image: {
  4969. source: "./media/characters/teal/front-alt.svg",
  4970. bottom: 0.04,
  4971. extra: 1 / (1 - 0.04)
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(12, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(300, "feet")
  4984. },
  4985. ]
  4986. )
  4987. };
  4988. characterMakers["Ravin Amulet"] = () => {
  4989. return makeCharacter(
  4990. "Ravin Amulet",
  4991. "Ravin Amulet",
  4992. {
  4993. frontCat: {
  4994. height: math.unit(6, "feet"),
  4995. weight: math.unit(180, "lbs"),
  4996. name: "Front (Cat)",
  4997. image: {
  4998. source: "./media/characters/ravin-amulet/front-cat.svg"
  4999. }
  5000. },
  5001. frontCatAlt: {
  5002. height: math.unit(6, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Front (Alt, Cat)",
  5005. image: {
  5006. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5007. }
  5008. },
  5009. frontWerewolf: {
  5010. height: math.unit(6*1.2, "feet"),
  5011. weight: math.unit(225, "lbs"),
  5012. name: "Front (Werewolf)",
  5013. image: {
  5014. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5015. }
  5016. },
  5017. backWerewolf: {
  5018. height: math.unit(6*1.2, "feet"),
  5019. weight: math.unit(225, "lbs"),
  5020. name: "Back (Werewolf)",
  5021. image: {
  5022. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Nano",
  5029. height: math.unit(1, "micrometer")
  5030. },
  5031. {
  5032. name: "Micro",
  5033. height: math.unit(1, "inch")
  5034. },
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(6, "feet"),
  5038. default: true
  5039. },
  5040. {
  5041. name: "Macro",
  5042. height: math.unit(60, "feet")
  5043. }
  5044. ]
  5045. )
  5046. };
  5047. characterMakers["Fluoresce"] = () => {
  5048. return makeCharacter(
  5049. "Fluoresce",
  5050. "Ravin Amulet",
  5051. {
  5052. front: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(165, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/fluoresce/front.svg"
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Micro",
  5064. height: math.unit(6, "cm")
  5065. },
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(5 + 7/12, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(56, "feet")
  5074. },
  5075. {
  5076. name: "Megamacro",
  5077. height: math.unit(1.9, "miles")
  5078. },
  5079. ]
  5080. )
  5081. };
  5082. characterMakers["Aurora"] = () => {
  5083. return makeCharacter(
  5084. "Aurora",
  5085. "Vonadi",
  5086. {
  5087. front: {
  5088. height: math.unit(9 + 6/12, "feet"),
  5089. weight: math.unit(523, "lbs"),
  5090. name: "Side",
  5091. image: {
  5092. source: "./media/characters/aurora/side.svg"
  5093. }
  5094. }
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(9 + 6/12, "feet")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(96, "feet"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Macro+",
  5108. height: math.unit(243, "feet")
  5109. },
  5110. ]
  5111. )
  5112. };
  5113. characterMakers["Ranek"] = () => {
  5114. return makeCharacter(
  5115. "Ranek",
  5116. "Ranek",
  5117. {
  5118. front: {
  5119. height: math.unit(194, "cm"),
  5120. weight: math.unit(90, "kg"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/ranek/front.svg"
  5124. }
  5125. },
  5126. side: {
  5127. height: math.unit(194, "cm"),
  5128. weight: math.unit(90, "kg"),
  5129. name: "Side",
  5130. image: {
  5131. source: "./media/characters/ranek/side.svg"
  5132. }
  5133. },
  5134. back: {
  5135. height: math.unit(194, "cm"),
  5136. weight: math.unit(90, "kg"),
  5137. name: "Back",
  5138. image: {
  5139. source: "./media/characters/ranek/back.svg"
  5140. }
  5141. },
  5142. feral: {
  5143. height: math.unit(30, "cm"),
  5144. weight: math.unit(1.6, "lbs"),
  5145. name: "Feral",
  5146. image: {
  5147. source: "./media/characters/ranek/feral.svg"
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(194, "cm"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(100, "meters")
  5160. },
  5161. ]
  5162. )
  5163. };
  5164. characterMakers["Andrew Cooper"] = () => {
  5165. return makeCharacter(
  5166. "Andrew Cooper",
  5167. "Vonadi",
  5168. {
  5169. front: {
  5170. height: math.unit(5 + 6/12, "feet"),
  5171. weight: math.unit(153, "lbs"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/andrew-cooper/front.svg"
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Nano",
  5181. height: math.unit(1, "mm")
  5182. },
  5183. {
  5184. name: "Micro",
  5185. height: math.unit(2, "inches")
  5186. },
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(5 + 6/12, "feet"),
  5190. default: true
  5191. }
  5192. ]
  5193. )
  5194. };
  5195. characterMakers["Akane Sato"] = () => {
  5196. return makeCharacter(
  5197. "Akane Sato",
  5198. "Vonadi",
  5199. {
  5200. front: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(180, "lbs"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/akane-sato/front.svg",
  5206. extra: 1219/1140
  5207. }
  5208. },
  5209. back: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(180, "lbs"),
  5212. name: "Back",
  5213. image: {
  5214. source: "./media/characters/akane-sato/back.svg",
  5215. extra: 1219/1170
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(2.5, "meters")
  5223. },
  5224. {
  5225. name: "Macro",
  5226. height: math.unit(250, "meters"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Megamacro",
  5231. height: math.unit(25, "km")
  5232. },
  5233. ]
  5234. )
  5235. };
  5236. characterMakers["Rook"] = () => {
  5237. return makeCharacter(
  5238. "Rook",
  5239. "Rook",
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(65, "kg"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/rook/front.svg"
  5247. }
  5248. }
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(8.8, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(88, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(8, "miles")
  5263. },
  5264. ]
  5265. )
  5266. };
  5267. characterMakers["Prodigy"] = () => {
  5268. return makeCharacter(
  5269. "Prodigy",
  5270. "Rook",
  5271. {
  5272. front: {
  5273. height: math.unit(12 + 2/12, "feet"),
  5274. weight: math.unit(808, "lbs"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/prodigy/front.svg"
  5278. }
  5279. }
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(12 + 2/12, "feet"),
  5285. default: true
  5286. },
  5287. {
  5288. name: "Macro",
  5289. height: math.unit(143, "feet")
  5290. },
  5291. {
  5292. name: "Macro+",
  5293. height: math.unit(400, "feet")
  5294. },
  5295. ]
  5296. )
  5297. };
  5298. characterMakers["Daniel"] = () => {
  5299. return makeCharacter(
  5300. "Daniel",
  5301. "Galactor",
  5302. {
  5303. front: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(225, "lbs"),
  5306. name: "Front",
  5307. image: {
  5308. source: "./media/characters/daniel/front.svg"
  5309. }
  5310. },
  5311. leaning: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(225, "lbs"),
  5314. name: "Leaning",
  5315. image: {
  5316. source: "./media/characters/daniel/leaning.svg"
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(1000, "feet"),
  5324. default: true
  5325. },
  5326. ]
  5327. )
  5328. };
  5329. characterMakers["Chiros"] = () => {
  5330. return makeCharacter(
  5331. "Chiros",
  5332. "Chiropica",
  5333. {
  5334. front: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(88, "lbs"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/chiros/front.svg",
  5340. extra: 306/226
  5341. }
  5342. },
  5343. side: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(88, "lbs"),
  5346. name: "Side",
  5347. image: {
  5348. source: "./media/characters/chiros/side.svg",
  5349. extra: 306/226
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(6, "cm"),
  5357. default: true
  5358. },
  5359. ]
  5360. )
  5361. };
  5362. characterMakers["Selka"] = () => {
  5363. return makeCharacter(
  5364. "Selka",
  5365. "Xelchew",
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(100, "lbs"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/selka/front.svg",
  5373. extra: 947/887
  5374. }
  5375. }
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(5, "cm"),
  5381. default: true
  5382. },
  5383. ]
  5384. )
  5385. };
  5386. characterMakers["Verin"] = () => {
  5387. return makeCharacter(
  5388. "Verin",
  5389. "Vonadi",
  5390. {
  5391. front: {
  5392. height: math.unit(8 + 3/12, "feet"),
  5393. weight: math.unit(424, "lbs"),
  5394. name: "Front",
  5395. image: {
  5396. source: "./media/characters/verin/front.svg",
  5397. extra: 1845/1550
  5398. }
  5399. },
  5400. frontArmored: {
  5401. height: math.unit(8 + 3/12, "feet"),
  5402. weight: math.unit(424, "lbs"),
  5403. name: "Front (Armored)",
  5404. image: {
  5405. source: "./media/characters/verin/front-armor.svg",
  5406. extra: 1845/1550 * (1 / (1 - 0.01)),
  5407. bottom: 0.01
  5408. }
  5409. },
  5410. back: {
  5411. height: math.unit(8 + 3/12, "feet"),
  5412. weight: math.unit(424, "lbs"),
  5413. name: "Back",
  5414. image: {
  5415. source: "./media/characters/verin/back.svg",
  5416. bottom: 0.1,
  5417. extra: 1 / (1 - 0.1)
  5418. }
  5419. },
  5420. foot: {
  5421. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5422. name: "Foot",
  5423. image: {
  5424. source: "./media/characters/verin/foot.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(8 + 3/12, "feet")
  5432. },
  5433. {
  5434. name: "Minimacro",
  5435. height: math.unit(21, "feet"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Macro",
  5440. height: math.unit(626, "feet")
  5441. },
  5442. ]
  5443. )
  5444. };
  5445. characterMakers["Sovrim Terraquian"] = () => {
  5446. return makeCharacter(
  5447. "Sovrim Terraquian",
  5448. "Sovrim Terraquian",
  5449. {
  5450. front: {
  5451. height: math.unit(2.718, "meters"),
  5452. weight: math.unit(150, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/sovrim-terraquian/front.svg"
  5456. }
  5457. },
  5458. back: {
  5459. height: math.unit(2.718, "meters"),
  5460. weight: math.unit(150, "lbs"),
  5461. name: "Back",
  5462. image: {
  5463. source: "./media/characters/sovrim-terraquian/back.svg"
  5464. }
  5465. }
  5466. },
  5467. [
  5468. {
  5469. name: "Micro",
  5470. height: math.unit(2, "inches")
  5471. },
  5472. {
  5473. name: "Small",
  5474. height: math.unit(1, "meter")
  5475. },
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(Math.E, "meters"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(20, "meters")
  5484. },
  5485. {
  5486. name: "Macro+",
  5487. height: math.unit(400, "meters")
  5488. },
  5489. ]
  5490. )
  5491. };
  5492. characterMakers["Reece Silvermane"] = () => {
  5493. return makeCharacter(
  5494. "Reece Silvermane",
  5495. "Silverhorsey",
  5496. {
  5497. front: {
  5498. height: math.unit(7, "feet"),
  5499. weight: math.unit(489, "lbs"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/reece-silvermane/front.svg",
  5503. bottom: 0.02,
  5504. extra: 1 / (1 - 0.02)
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(1.5, "miles"),
  5512. default: true
  5513. },
  5514. ]
  5515. )
  5516. };
  5517. characterMakers["Kane"] = () => {
  5518. return makeCharacter(
  5519. "Kane",
  5520. "LittleBigX110",
  5521. {
  5522. front: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(78, "kg"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/kane/front.svg",
  5528. extra: 978/899
  5529. }
  5530. },
  5531. },
  5532. [
  5533. {
  5534. name: "Normal",
  5535. height: math.unit(2.1, "m"),
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(1, "km"),
  5540. default: true
  5541. },
  5542. ]
  5543. )
  5544. };
  5545. characterMakers["Tegon"] = () => {
  5546. return makeCharacter(
  5547. "Tegon",
  5548. "TegonDragon",
  5549. {
  5550. front: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(200, "kg"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/tegon/front.svg",
  5556. bottom: 0.01,
  5557. extra: 1 / (1 - 0.01)
  5558. }
  5559. },
  5560. },
  5561. [
  5562. {
  5563. name: "Micro",
  5564. height: math.unit(1, "inch")
  5565. },
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(6 + 3/12, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(300, "feet")
  5574. },
  5575. {
  5576. name: "Megamacro",
  5577. height: math.unit(69, "miles")
  5578. },
  5579. ]
  5580. )
  5581. };
  5582. characterMakers["Arcturax"] = () => {
  5583. return makeCharacter(
  5584. "Arcturax",
  5585. "Arcturax",
  5586. {
  5587. side: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(2304, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/arcturax/side.svg",
  5593. extra: 790/376 * (1 / (1 - 0.01)),
  5594. bottom: 0.01
  5595. }
  5596. },
  5597. },
  5598. [
  5599. {
  5600. name: "Micro",
  5601. height: math.unit(2, "inch")
  5602. },
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(6, "feet")
  5606. },
  5607. {
  5608. name: "Macro",
  5609. height: math.unit(39, "feet"),
  5610. default: true
  5611. },
  5612. {
  5613. name: "Megamacro",
  5614. height: math.unit(7, "miles")
  5615. },
  5616. ]
  5617. )
  5618. };
  5619. characterMakers["Sentri"] = () => {
  5620. return makeCharacter(
  5621. "Sentri",
  5622. "Sentri",
  5623. {
  5624. front: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(50, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/sentri/front.svg",
  5630. extra: 1750/1570 * (1 / (1 - 0.025)),
  5631. bottom: 0.025
  5632. }
  5633. },
  5634. frontAlt: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(50, "lbs"),
  5637. name: "Front (Alt)",
  5638. image: {
  5639. source: "./media/characters/sentri/front-alt.svg",
  5640. extra: 1750/1570 * (1 / (1 - 0.025)),
  5641. bottom: 0.025
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(15, "feet"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(2500, "feet")
  5654. }
  5655. ]
  5656. )
  5657. };
  5658. characterMakers["Corvin"] = () => {
  5659. return makeCharacter(
  5660. "Corvin",
  5661. "Sirffuzzylogik",
  5662. {
  5663. front: {
  5664. height: math.unit(5 + 8/12, "feet"),
  5665. weight: math.unit(130, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/corvin/front.svg",
  5669. extra: 1803/1629
  5670. }
  5671. },
  5672. frontShirt: {
  5673. height: math.unit(5 + 8/12, "feet"),
  5674. weight: math.unit(130, "lbs"),
  5675. name: "Front (Shirt)",
  5676. image: {
  5677. source: "./media/characters/corvin/front-shirt.svg",
  5678. extra: 1803/1629
  5679. }
  5680. },
  5681. frontPoncho: {
  5682. height: math.unit(5 + 8/12, "feet"),
  5683. weight: math.unit(130, "lbs"),
  5684. name: "Front (Poncho)",
  5685. image: {
  5686. source: "./media/characters/corvin/front-poncho.svg",
  5687. extra: 1803/1629
  5688. }
  5689. },
  5690. side: {
  5691. height: math.unit(5 + 8/12, "feet"),
  5692. weight: math.unit(130, "lbs"),
  5693. name: "Side",
  5694. image: {
  5695. source: "./media/characters/corvin/side.svg",
  5696. extra: 1012/945
  5697. }
  5698. },
  5699. back: {
  5700. height: math.unit(5 + 8/12, "feet"),
  5701. weight: math.unit(130, "lbs"),
  5702. name: "Back",
  5703. image: {
  5704. source: "./media/characters/corvin/back.svg",
  5705. extra: 1803/1629
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Micro",
  5712. height: math.unit(3, "inches")
  5713. },
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(5 + 8/12, "feet")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(300, "feet"),
  5721. default: true
  5722. },
  5723. {
  5724. name: "Megamacro",
  5725. height: math.unit(500, "miles")
  5726. }
  5727. ]
  5728. )
  5729. };
  5730. characterMakers["Q"] = () => {
  5731. return makeCharacter(
  5732. "Q",
  5733. "Q Walf",
  5734. {
  5735. front: {
  5736. height: math.unit(6, "feet"),
  5737. weight: math.unit(135, "lbs"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/q/front.svg",
  5741. extra: 854/752 * (1 / (1 - 0.005)),
  5742. bottom: 0.005
  5743. }
  5744. },
  5745. back: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(130, "lbs"),
  5748. name: "Back",
  5749. image: {
  5750. source: "./media/characters/q/back.svg",
  5751. extra: 854/752
  5752. }
  5753. },
  5754. },
  5755. [
  5756. {
  5757. name: "Macro",
  5758. height: math.unit(90, "feet"),
  5759. default: true
  5760. },
  5761. {
  5762. name: "Extra Macro",
  5763. height: math.unit(300, "feet"),
  5764. },
  5765. {
  5766. name: "BIG WALF",
  5767. height: math.unit(750, "feet"),
  5768. },
  5769. ]
  5770. )
  5771. };
  5772. characterMakers["Carley"] = () => {
  5773. return makeCharacter(
  5774. "Carley",
  5775. "QuakeYote",
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(150, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/carley/front.svg",
  5783. extra: 3927/3540 * (1 / (1 - 0.03)),
  5784. bottom: 0.03
  5785. }
  5786. }
  5787. },
  5788. [
  5789. {
  5790. name: "Normal",
  5791. height: math.unit(6 + 3/12, "feet")
  5792. },
  5793. {
  5794. name: "Macro",
  5795. height: math.unit(185, "feet"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Megamacro",
  5800. height: math.unit(8, "miles"),
  5801. },
  5802. ]
  5803. )
  5804. };
  5805. characterMakers["Citrine"] = () => {
  5806. return makeCharacter(
  5807. "Citrine",
  5808. "thunderstrike23",
  5809. {
  5810. front: {
  5811. height: math.unit(3, "feet"),
  5812. weight: math.unit(28, "lbs"),
  5813. name: "Front",
  5814. image: {
  5815. source: "./media/characters/citrine/front.svg"
  5816. }
  5817. }
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(3, "feet")
  5823. }
  5824. ]
  5825. )
  5826. };
  5827. characterMakers["Aura Starwind"] = () => {
  5828. return makeCharacter(
  5829. "Aura Starwind",
  5830. "StrikeVixen",
  5831. {
  5832. front: {
  5833. height: math.unit(14, "feet"),
  5834. weight: math.unit(1450, "kg"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/aura-starwind/front.svg",
  5838. extra: 1455/1335
  5839. }
  5840. },
  5841. side: {
  5842. height: math.unit(14, "feet"),
  5843. weight: math.unit(1450, "kg"),
  5844. name: "Side",
  5845. image: {
  5846. source: "./media/characters/aura-starwind/side.svg",
  5847. extra: 1654/1497
  5848. }
  5849. },
  5850. taur: {
  5851. height: math.unit(18, "feet"),
  5852. weight: math.unit(5500, "kg"),
  5853. name: "Taur",
  5854. image: {
  5855. source: "./media/characters/aura-starwind/taur.svg",
  5856. extra: 1760/1650
  5857. }
  5858. },
  5859. feral: {
  5860. height: math.unit(46, "feet"),
  5861. weight: math.unit(25000, "kg"),
  5862. name: "Feral",
  5863. image: {
  5864. source: "./media/characters/aura-starwind/feral.svg"
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(14, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(50, "meters")
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(5000, "meters")
  5880. },
  5881. {
  5882. name: "Gigamacro",
  5883. height: math.unit(100000, "kilometers")
  5884. },
  5885. ]
  5886. )
  5887. };
  5888. characterMakers["Rivet"] = () => {
  5889. return makeCharacter(
  5890. "Rivet",
  5891. "Vonadi",
  5892. {
  5893. front: {
  5894. height: math.unit(2 + 7/12, "feet"),
  5895. weight: math.unit(32, "lbs"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/rivet/front.svg",
  5899. extra: 1716/1658 * (1 / (1 - 0.03)),
  5900. bottom: 0.03
  5901. }
  5902. },
  5903. foot: {
  5904. height: math.unit(0.551, "feet"),
  5905. name: "Rivet's Foot",
  5906. image: {
  5907. source: "./media/characters/rivet/foot.svg"
  5908. },
  5909. rename: true
  5910. }
  5911. },
  5912. [
  5913. {
  5914. name: "Micro",
  5915. height: math.unit(1.5, "inches"),
  5916. },
  5917. {
  5918. name: "Normal",
  5919. height: math.unit(2 + 7/12, "feet"),
  5920. default: true
  5921. },
  5922. {
  5923. name: "Macro",
  5924. height: math.unit(85, "feet")
  5925. },
  5926. {
  5927. name: "Megamacro",
  5928. height: math.unit(2.2, "km")
  5929. }
  5930. ]
  5931. )
  5932. };
  5933. characterMakers["Coffee"] = () => {
  5934. return makeCharacter(
  5935. "Coffee",
  5936. "CoffeeDoggo",
  5937. {
  5938. front: {
  5939. height: math.unit(5 + 9/12, "feet"),
  5940. weight: math.unit(150, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/coffee/front.svg",
  5944. extra: 3666/3032 * (1 / (1 - 0.04)),
  5945. bottom: 0.04
  5946. }
  5947. }
  5948. },
  5949. [
  5950. {
  5951. name: "Micro",
  5952. height: math.unit(2, "inches"),
  5953. },
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(5 + 9/12, "feet"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(800, "feet")
  5962. },
  5963. {
  5964. name: "Megamacro",
  5965. height: math.unit(25, "miles")
  5966. }
  5967. ]
  5968. )
  5969. };
  5970. characterMakers["Chari-Gal"] = () => {
  5971. return makeCharacter(
  5972. "Chari-Gal",
  5973. "Knoem",
  5974. {
  5975. front: {
  5976. height: math.unit(6, "feet"),
  5977. weight: math.unit(200, "lbs"),
  5978. name: "Front",
  5979. image: {
  5980. source: "./media/characters/chari-gal/front.svg",
  5981. extra: 1568/1385 * (1 / (1 - 0.047)),
  5982. bottom: 0.047
  5983. }
  5984. },
  5985. gigantamax: {
  5986. height: math.unit(6*16, "feet"),
  5987. weight: math.unit(200*16*16*16, "lbs"),
  5988. name: "Gigantamax",
  5989. image: {
  5990. source: "./media/characters/chari-gal/gigantamax.svg",
  5991. extra: 1124/888 * (1 / (1 - 0.03)),
  5992. bottom: 0.03
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(5 + 7/12, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(200, "feet"),
  6004. default: true
  6005. }
  6006. ]
  6007. )
  6008. };
  6009. characterMakers["Nova"] = () => {
  6010. return makeCharacter(
  6011. "Nova",
  6012. "CoffeeDoggo",
  6013. {
  6014. front: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(150, "lbs"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/nova/front.svg",
  6020. extra: 5000/4722 * (1 / (1 - 0.02)),
  6021. bottom: 0.02
  6022. }
  6023. }
  6024. },
  6025. [
  6026. {
  6027. name: "Micro-",
  6028. height: math.unit(0.8, "inches")
  6029. },
  6030. {
  6031. name: "Micro",
  6032. height: math.unit(2, "inches"),
  6033. normal: true
  6034. },
  6035. ]
  6036. )
  6037. };
  6038. characterMakers["Argent"] = () => {
  6039. return makeCharacter(
  6040. "Argent",
  6041. "ArgentVZ",
  6042. {
  6043. front: {
  6044. height: math.unit(3 + 1/12, "feet"),
  6045. weight: math.unit(21.7, "lbs"),
  6046. name: "Front",
  6047. image: {
  6048. source: "./media/characters/argent/front.svg",
  6049. extra: 1565/1416 * (1 / (1 - 0.01)),
  6050. bottom: 0.01
  6051. }
  6052. }
  6053. },
  6054. [
  6055. {
  6056. name: "Micro",
  6057. height: math.unit(2, "inches")
  6058. },
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(3 + 1/12, "feet"),
  6062. normal: true
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(120, "feet")
  6067. },
  6068. ]
  6069. )
  6070. };
  6071. characterMakers["Mira al-Cul"] = () => {
  6072. return makeCharacter(
  6073. "Mira al-Cul",
  6074. "Mariokartsonicriders",
  6075. {
  6076. lamp: {
  6077. height: math.unit(7 * 1559 / 989, "feet"),
  6078. name: "Magic Lamp",
  6079. image: {
  6080. source: "./media/characters/mira-al-cul/lamp.svg",
  6081. extra: 1617/1559
  6082. }
  6083. },
  6084. front: {
  6085. height: math.unit(7, "feet"),
  6086. name: "Front",
  6087. image: {
  6088. source: "./media/characters/mira-al-cul/front.svg",
  6089. extra: 1044/990
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Heavily Restricted",
  6096. height: math.unit(7 * 1559 / 989, "feet")
  6097. },
  6098. {
  6099. name: "Freshly Freed",
  6100. height: math.unit(50 * 1559 / 989, "feet")
  6101. },
  6102. {
  6103. name: "World Encompassing",
  6104. height: math.unit(10000 * 1559 / 989, "miles")
  6105. },
  6106. {
  6107. name: "Galactic",
  6108. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6109. },
  6110. {
  6111. name: "Palmed Universe",
  6112. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Multiversal Matriarch",
  6117. height: math.unit(8.87e10, "yottameters")
  6118. },
  6119. {
  6120. name: "Void Mother",
  6121. height: math.unit(3.14e110, "yottaparsecs")
  6122. },
  6123. ]
  6124. )
  6125. };
  6126. characterMakers["Kuro-shi Uchū"] = () => {
  6127. return makeCharacter(
  6128. "Kuro-shi Uchū",
  6129. "Dragon Shark",
  6130. {
  6131. front: {
  6132. height: math.unit(17 + 1/12, "feet"),
  6133. weight: math.unit(476.2*5, "lbs"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/kuro-shi-uchū/front.svg",
  6137. extra: 2329/1835 * (1 / (1 - 0.02)),
  6138. bottom: 0.02
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Micro",
  6145. height: math.unit(2, "inches")
  6146. },
  6147. {
  6148. name: "Normal",
  6149. height: math.unit(12, "meters")
  6150. },
  6151. {
  6152. name: "Planetary",
  6153. height: math.unit(0.00929, "AU"),
  6154. default: true
  6155. },
  6156. {
  6157. name: "Universal",
  6158. height: math.unit(20, "gigaparsecs")
  6159. },
  6160. ]
  6161. )
  6162. };
  6163. characterMakers["Katherine"] = () => {
  6164. return makeCharacter(
  6165. "Katherine",
  6166. "chrisrules123",
  6167. {
  6168. front: {
  6169. height: math.unit(5 + 2/12, "feet"),
  6170. weight: math.unit(120, "lbs"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/katherine/front.svg",
  6174. extra: 2075/1969
  6175. }
  6176. },
  6177. dress: {
  6178. height: math.unit(5 + 2/12, "feet"),
  6179. weight: math.unit(120, "lbs"),
  6180. name: "Dress",
  6181. image: {
  6182. source: "./media/characters/katherine/dress.svg",
  6183. extra: 2258/2064
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Micro",
  6190. height: math.unit(1, "inches"),
  6191. default: true
  6192. },
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(5 + 2/12, "feet")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(100, "meters")
  6200. },
  6201. {
  6202. name: "Megamacro",
  6203. height: math.unit(80, "miles")
  6204. },
  6205. ]
  6206. )
  6207. };
  6208. characterMakers["Yevis"] = () => {
  6209. return makeCharacter(
  6210. "Yevis",
  6211. "Mariokartsonicriders",
  6212. {
  6213. front: {
  6214. height: math.unit(7 + 8/12, "feet"),
  6215. weight: math.unit(250, "lbs"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/yevis/front.svg",
  6219. extra: 1938/1755
  6220. }
  6221. }
  6222. },
  6223. [
  6224. {
  6225. name: "Mortal",
  6226. height: math.unit(7 + 8/12, "feet")
  6227. },
  6228. {
  6229. name: "Battle",
  6230. height: math.unit(25 + 11/12, "feet")
  6231. },
  6232. {
  6233. name: "Wrath",
  6234. height: math.unit(1654 + 11/12, "feet")
  6235. },
  6236. {
  6237. name: "Planet Destroyer",
  6238. height: math.unit(12000, "miles")
  6239. },
  6240. {
  6241. name: "Galaxy Conqueror",
  6242. height: math.unit(1.45, "zettameters"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Universal War",
  6247. height: math.unit(184, "gigaparsecs")
  6248. },
  6249. {
  6250. name: "Eternity War",
  6251. height: math.unit(1.98e55, "yottaparsecs")
  6252. },
  6253. ]
  6254. )
  6255. };
  6256. characterMakers["Xavier"] = () => {
  6257. return makeCharacter(
  6258. "Xavier",
  6259. "zmaster587",
  6260. {
  6261. front: {
  6262. height: math.unit(5 + 8/12, "feet"),
  6263. weight: math.unit(63, "kg"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/xavier/front.svg",
  6267. extra: 944/883
  6268. }
  6269. },
  6270. frontStretch: {
  6271. height: math.unit(5 + 8/12, "feet"),
  6272. weight: math.unit(63, "kg"),
  6273. name: "Stretching",
  6274. image: {
  6275. source: "./media/characters/xavier/front-stretch.svg",
  6276. extra: 962/820
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Normal",
  6283. height: math.unit(5 + 8/12, "feet")
  6284. },
  6285. {
  6286. name: "Macro",
  6287. height: math.unit(100, "meters"),
  6288. default: true
  6289. },
  6290. {
  6291. name: "McLargeHuge",
  6292. height: math.unit(10, "miles")
  6293. },
  6294. ]
  6295. )
  6296. };
  6297. characterMakers["Joshii"] = () => {
  6298. return makeCharacter(
  6299. "Joshii",
  6300. "DarkieTehJester",
  6301. {
  6302. front: {
  6303. height: math.unit(5 + 5/12, "feet"),
  6304. weight: math.unit(150, "lb"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/joshii/front.svg"
  6308. }
  6309. },
  6310. foot: {
  6311. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6312. name: "Foot",
  6313. image: {
  6314. source: "./media/characters/joshii/foot.svg"
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Micro",
  6321. height: math.unit(2, "inches")
  6322. },
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(5 + 5/12, "feet"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Macro",
  6330. height: math.unit(785, "feet")
  6331. },
  6332. {
  6333. name: "Megamacro",
  6334. height: math.unit(24.5, "miles")
  6335. },
  6336. ]
  6337. )
  6338. };
  6339. characterMakers["Goddess Elizabeth"] = () => {
  6340. return makeCharacter(
  6341. "Goddess Elizabeth",
  6342. "DarkieTehJester",
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(150, "lb"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/goddess-elizabeth/front.svg"
  6350. }
  6351. },
  6352. foot: {
  6353. height: math.unit(6 * 0.25436 / 2, "feet"),
  6354. name: "Foot",
  6355. image: {
  6356. source: "./media/characters/goddess-elizabeth/foot.svg"
  6357. }
  6358. },
  6359. },
  6360. [
  6361. {
  6362. name: "Micro",
  6363. height: math.unit(12, "feet")
  6364. },
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(80, "miles"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(15000, "parsecs")
  6373. },
  6374. ]
  6375. )
  6376. };
  6377. characterMakers["Kara"] = () => {
  6378. return makeCharacter(
  6379. "Kara",
  6380. "Vonadi",
  6381. {
  6382. front: {
  6383. height: math.unit(5 + 9/12, "feet"),
  6384. weight: math.unit(144, "lb"),
  6385. name: "Front",
  6386. image: {
  6387. source: "./media/characters/kara/front.svg"
  6388. }
  6389. },
  6390. feet: {
  6391. height: math.unit(6/6.765, "feet"),
  6392. name: "Kara's Feet",
  6393. rename: true,
  6394. image: {
  6395. source: "./media/characters/kara/feet.svg"
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(5 + 9/12, "feet")
  6403. },
  6404. {
  6405. name: "Macro",
  6406. height: math.unit(174, "feet"),
  6407. default: true
  6408. },
  6409. ]
  6410. )
  6411. };
  6412. characterMakers["Tyrone"] = () => {
  6413. return makeCharacter(
  6414. "Tyrone",
  6415. "nanakisan",
  6416. {
  6417. front: {
  6418. height: math.unit(18, "feet"),
  6419. weight: math.unit(4050, "lb"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/tyrone/front.svg",
  6423. extra: 2520/2402 * (1 / (1 - 0.025)),
  6424. bottom: 0.025
  6425. }
  6426. },
  6427. },
  6428. [
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(18, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Macro",
  6436. height: math.unit(300, "feet")
  6437. },
  6438. ]
  6439. )
  6440. };
  6441. characterMakers["Danny"] = () => {
  6442. return makeCharacter(
  6443. "Danny",
  6444. "danny_gryphon",
  6445. {
  6446. front: {
  6447. height: math.unit(7 + 8/12, "feet"),
  6448. weight: math.unit(120, "lb"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/danny/front.svg",
  6452. extra: 1490/1350
  6453. }
  6454. },
  6455. back: {
  6456. height: math.unit(7 + 8/12, "feet"),
  6457. weight: math.unit(120, "lb"),
  6458. name: "Back",
  6459. image: {
  6460. source: "./media/characters/danny/back.svg",
  6461. extra: 1490/1350
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(7 + 8/12, "feet"),
  6469. default: true
  6470. },
  6471. ]
  6472. )
  6473. };
  6474. characterMakers["Mallow"] = () => {
  6475. return makeCharacter(
  6476. "Mallow",
  6477. "Mallowchu",
  6478. {
  6479. front: {
  6480. height: math.unit(3.5, "inches"),
  6481. weight: math.unit(19, "grams"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/mallow/front.svg",
  6485. extra: 471/431
  6486. }
  6487. },
  6488. back: {
  6489. height: math.unit(3.5, "inches"),
  6490. weight: math.unit(19, "grams"),
  6491. name: "Back",
  6492. image: {
  6493. source: "./media/characters/mallow/back.svg",
  6494. extra: 471/431
  6495. }
  6496. },
  6497. },
  6498. [
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(3.5, "inches")
  6502. },
  6503. ]
  6504. )
  6505. };
  6506. characterMakers["Starry Aqua"] = () => {
  6507. return makeCharacter(
  6508. "Starry Aqua",
  6509. "StarryAqua",
  6510. {
  6511. front: {
  6512. height: math.unit(9, "feet"),
  6513. weight: math.unit(230, "kg"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/starry-aqua/front.svg"
  6517. }
  6518. },
  6519. back: {
  6520. height: math.unit(9, "feet"),
  6521. weight: math.unit(230, "kg"),
  6522. name: "Back",
  6523. image: {
  6524. source: "./media/characters/starry-aqua/back.svg"
  6525. }
  6526. },
  6527. hand: {
  6528. height: math.unit(9 * 0.1168, "feet"),
  6529. name: "Hand",
  6530. image: {
  6531. source: "./media/characters/starry-aqua/hand.svg"
  6532. }
  6533. },
  6534. foot: {
  6535. height: math.unit(9 * 0.18, "feet"),
  6536. name: "Foot",
  6537. image: {
  6538. source: "./media/characters/starry-aqua/foot.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Micro",
  6545. height: math.unit(3, "inches")
  6546. },
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(9, "feet")
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(300, "feet"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(3200, "feet")
  6559. }
  6560. ]
  6561. )
  6562. };
  6563. characterMakers["Luka"] = () => {
  6564. return makeCharacter(
  6565. "Luka",
  6566. "UmbraHusky",
  6567. {
  6568. front: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(230, "lb"),
  6571. name: "Front",
  6572. image: {
  6573. source: "./media/characters/luka/front.svg",
  6574. extra: 1 / (1 - 0.025),
  6575. bottom: 0.025
  6576. }
  6577. },
  6578. },
  6579. [
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(12 + 8/12, "feet")
  6583. },
  6584. {
  6585. name: "Minimacro",
  6586. height: math.unit(20, "feet")
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(250, "feet")
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(5, "miles")
  6595. },
  6596. {
  6597. name: "Gigamacro",
  6598. height: math.unit(8000, "miles")
  6599. },
  6600. ]
  6601. )
  6602. };
  6603. characterMakers["Natalie Nightring"] = () => {
  6604. return makeCharacter(
  6605. "Natalie Nightring",
  6606. "NatEdgecomb",
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(150, "lb"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/natalie-nightring/front.svg",
  6614. extra: 1 / (1 - 0.06),
  6615. bottom: 0.06
  6616. }
  6617. },
  6618. },
  6619. [
  6620. {
  6621. name: "Uh Oh",
  6622. height: math.unit(0.1, "mm")
  6623. },
  6624. {
  6625. name: "Small",
  6626. height: math.unit(3, "inches")
  6627. },
  6628. {
  6629. name: "Human Scale",
  6630. height: math.unit(6, "feet")
  6631. },
  6632. {
  6633. name: "Librarian",
  6634. height: math.unit(50, "feet"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Immense",
  6639. height: math.unit(200, "miles")
  6640. },
  6641. ]
  6642. )
  6643. };
  6644. characterMakers["Danni Rosie"] = () => {
  6645. return makeCharacter(
  6646. "Danni Rosie",
  6647. "colwag",
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(180, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/danni-rosie/front.svg",
  6655. extra: 1260/1128 * (1 / (1 - 0.022)),
  6656. bottom: 0.022
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Micro",
  6663. height: math.unit(2, "inches"),
  6664. default: true
  6665. },
  6666. ]
  6667. )
  6668. };
  6669. characterMakers["Samantha Kruse"] = () => {
  6670. return makeCharacter(
  6671. "Samantha Kruse",
  6672. "colwag",
  6673. {
  6674. front: {
  6675. height: math.unit(5 + 9/12, "feet"),
  6676. weight: math.unit(220, "lb"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/samantha-kruse/front.svg",
  6680. extra: (985 / 935) * (1 / (1 - 0.03)),
  6681. bottom: 0.03
  6682. }
  6683. },
  6684. frontUndressed: {
  6685. height: math.unit(5 + 9/12, "feet"),
  6686. weight: math.unit(220, "lb"),
  6687. name: "Front (Undressed)",
  6688. image: {
  6689. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6690. extra: (973 / 923) * (1 / (1 - 0.025)),
  6691. bottom: 0.025
  6692. }
  6693. },
  6694. fat: {
  6695. height: math.unit(5 + 9/12, "feet"),
  6696. weight: math.unit(900, "lb"),
  6697. name: "Front (Fat)",
  6698. image: {
  6699. source: "./media/characters/samantha-kruse/fat.svg",
  6700. extra: 2688/2561
  6701. }
  6702. },
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(5 + 9/12, "feet"),
  6708. default: true
  6709. }
  6710. ]
  6711. )
  6712. };
  6713. characterMakers["Amelia Rosie"] = () => {
  6714. return makeCharacter(
  6715. "Amelia Rosie",
  6716. "colwag",
  6717. {
  6718. back: {
  6719. height: math.unit(5 + 4/12, "feet"),
  6720. weight: math.unit(4963, "lb"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/amelia-rosie/back.svg",
  6724. extra: 1113/963 * (1 / (1 - 0.01)),
  6725. bottom: 0.01
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Level 0",
  6732. height: math.unit(5 + 4/12, "feet")
  6733. },
  6734. {
  6735. name: "Level 1",
  6736. height: math.unit(164597, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Level 2",
  6741. height: math.unit(956243, "miles")
  6742. },
  6743. {
  6744. name: "Level 3",
  6745. height: math.unit(29421709423, "miles")
  6746. },
  6747. {
  6748. name: "Level 4",
  6749. height: math.unit(154, "lightyears")
  6750. },
  6751. {
  6752. name: "Level 5",
  6753. height: math.unit(4738272, "lightyears")
  6754. },
  6755. {
  6756. name: "Level 6",
  6757. height: math.unit(145787152896, "lightyears")
  6758. },
  6759. ]
  6760. )
  6761. };
  6762. characterMakers["Rook Kitara"] = () => {
  6763. return makeCharacter(
  6764. "Rook Kitara",
  6765. "TailsHigh",
  6766. {
  6767. front: {
  6768. height: math.unit(5 + 11/12, "feet"),
  6769. weight: math.unit(65, "kg"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/rook-kitara/front.svg",
  6773. extra: 1347/1274 * (1 / (1 - 0.005)),
  6774. bottom: 0.005
  6775. }
  6776. },
  6777. },
  6778. [
  6779. {
  6780. name: "Totally Unfair",
  6781. height: math.unit(1.8, "mm")
  6782. },
  6783. {
  6784. name: "Lap Rookie",
  6785. height: math.unit(1.4, "feet")
  6786. },
  6787. {
  6788. name: "Normal",
  6789. height: math.unit(5 + 11/12, "feet"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "How Did This Happen",
  6794. height: math.unit(80, "miles")
  6795. }
  6796. ]
  6797. )
  6798. };
  6799. characterMakers["Pisces"] = () => {
  6800. return makeCharacter(
  6801. "Pisces",
  6802. "Pisces_Kelp",
  6803. {
  6804. front: {
  6805. height: math.unit(7, "feet"),
  6806. weight: math.unit(300, "lb"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/pisces/front.svg",
  6810. extra: 2255/2115 * (1 / (1 - 0.03)),
  6811. bottom: 0.03
  6812. }
  6813. },
  6814. back: {
  6815. height: math.unit(7, "feet"),
  6816. weight: math.unit(300, "lb"),
  6817. name: "Back",
  6818. image: {
  6819. source: "./media/characters/pisces/back.svg",
  6820. extra: 2146/2055 * (1 / (1 - 0.04)),
  6821. bottom: 0.04
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "Normal",
  6828. height: math.unit(7, "feet")
  6829. },
  6830. {
  6831. name: "Swimming Pool",
  6832. height: math.unit(12.2, "meters")
  6833. },
  6834. {
  6835. name: "Olympic Swimming Pool",
  6836. height: math.unit(56.3, "meters")
  6837. },
  6838. {
  6839. name: "Lake Superior",
  6840. height: math.unit(93900, "meters")
  6841. },
  6842. {
  6843. name: "Mediterranean Sea",
  6844. height: math.unit(644457, "meters")
  6845. },
  6846. {
  6847. name: "World's Oceans",
  6848. height: math.unit(4567491, "meters")
  6849. },
  6850. ]
  6851. )
  6852. };
  6853. characterMakers["Zelas"] = () => {
  6854. return makeCharacter(
  6855. "Zelas",
  6856. "Cirez",
  6857. {
  6858. front: {
  6859. height: math.unit(2.3, "meters"),
  6860. weight: math.unit(120, "kg"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/zelas/front.svg"
  6864. }
  6865. },
  6866. side: {
  6867. height: math.unit(2.3, "meters"),
  6868. weight: math.unit(120, "kg"),
  6869. name: "Side",
  6870. image: {
  6871. source: "./media/characters/zelas/side.svg"
  6872. }
  6873. },
  6874. back: {
  6875. height: math.unit(2.3, "meters"),
  6876. weight: math.unit(120, "kg"),
  6877. name: "Back",
  6878. image: {
  6879. source: "./media/characters/zelas/back.svg"
  6880. }
  6881. },
  6882. foot: {
  6883. height: math.unit(1.116, "feet"),
  6884. name: "Foot",
  6885. image: {
  6886. source: "./media/characters/zelas/foot.svg"
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Normal",
  6893. height: math.unit(2.3, "meters")
  6894. },
  6895. {
  6896. name: "Macro",
  6897. height: math.unit(30, "meters"),
  6898. default: true
  6899. },
  6900. ]
  6901. )
  6902. };
  6903. characterMakers["Talbot"] = () => {
  6904. return makeCharacter(
  6905. "Talbot",
  6906. "Talbot",
  6907. {
  6908. front: {
  6909. height: math.unit(1, "inch"),
  6910. weight: math.unit(0.21, "grams"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/talbot/front.svg",
  6914. extra: 594/544
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Micro",
  6921. height: math.unit(1, "inch")
  6922. },
  6923. ]
  6924. )
  6925. };
  6926. characterMakers["Fliss"] = () => {
  6927. return makeCharacter(
  6928. "Fliss",
  6929. "Fliss",
  6930. {
  6931. front: {
  6932. height: math.unit(3 + 3/12, "feet"),
  6933. weight: math.unit(51.8, "lb"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/fliss/front.svg",
  6937. extra: 840/640
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Teeny Tiny",
  6944. height: math.unit(1, "mm")
  6945. },
  6946. {
  6947. name: "Small",
  6948. height: math.unit(1, "inch"),
  6949. default: true
  6950. },
  6951. {
  6952. name: "Standard Sylveon",
  6953. height: math.unit(3 + 3/12, "feet")
  6954. },
  6955. {
  6956. name: "Large Nuisance",
  6957. height: math.unit(33, "feet")
  6958. },
  6959. {
  6960. name: "City Filler",
  6961. height: math.unit(3000, "feet")
  6962. },
  6963. {
  6964. name: "New Horizon",
  6965. height: math.unit(6000, "miles")
  6966. },
  6967. ]
  6968. )
  6969. };
  6970. characterMakers["Fleta"] = () => {
  6971. return makeCharacter(
  6972. "Fleta",
  6973. "TheFleta",
  6974. {
  6975. front: {
  6976. height: math.unit(5, "cm"),
  6977. weight: math.unit(1.94, "g"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/fleta/front.svg",
  6981. extra: 835/803
  6982. }
  6983. },
  6984. back: {
  6985. height: math.unit(5, "cm"),
  6986. weight: math.unit(1.94, "g"),
  6987. name: "Back",
  6988. image: {
  6989. source: "./media/characters/fleta/back.svg",
  6990. extra: 835/803
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Micro",
  6997. height: math.unit(5, "cm"),
  6998. default: true
  6999. },
  7000. ]
  7001. )
  7002. };
  7003. characterMakers["Dominic"] = () => {
  7004. return makeCharacter(
  7005. "Dominic",
  7006. "HypoTheDerg",
  7007. {
  7008. front: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(225, "lb"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/dominic/front.svg",
  7014. extra: 1770/1620 * (1 / (1 - 0.025)),
  7015. bottom: 0.025
  7016. }
  7017. },
  7018. back: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(225, "lb"),
  7021. name: "Back",
  7022. image: {
  7023. source: "./media/characters/dominic/back.svg",
  7024. extra: 1745/1620 * (1 / (1 - 0.065)),
  7025. bottom: 0.065
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Nano",
  7032. height: math.unit(0.1, "mm")
  7033. },
  7034. {
  7035. name: "Micro-",
  7036. height: math.unit(1, "mm")
  7037. },
  7038. {
  7039. name: "Micro",
  7040. height: math.unit(4, "inches")
  7041. },
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(6 + 4/12, "feet"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Macro",
  7049. height: math.unit(115, "feet")
  7050. },
  7051. {
  7052. name: "Macro+",
  7053. height: math.unit(955, "feet")
  7054. },
  7055. {
  7056. name: "Megamacro",
  7057. height: math.unit(8990, "feet")
  7058. },
  7059. {
  7060. name: "Gigmacro",
  7061. height: math.unit(9310, "miles")
  7062. },
  7063. {
  7064. name: "Teramacro",
  7065. height: math.unit(1567005010, "miles")
  7066. },
  7067. {
  7068. name: "Examacro",
  7069. height: math.unit(1425, "parsecs")
  7070. },
  7071. ]
  7072. )
  7073. };
  7074. characterMakers["Major Colonel"] = () => {
  7075. return makeCharacter(
  7076. "Major Colonel",
  7077. "Major Colonel",
  7078. {
  7079. front: {
  7080. height: math.unit(400, "feet"),
  7081. weight: math.unit(44444444, "lb"),
  7082. name: "Front",
  7083. image: {
  7084. source: "./media/characters/major-colonel/front.svg"
  7085. }
  7086. },
  7087. back: {
  7088. height: math.unit(400, "feet"),
  7089. weight: math.unit(44444444, "lb"),
  7090. name: "Back",
  7091. image: {
  7092. source: "./media/characters/major-colonel/back.svg"
  7093. }
  7094. },
  7095. },
  7096. [
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(400, "feet"),
  7100. default: true
  7101. },
  7102. ]
  7103. )
  7104. };
  7105. characterMakers["Axel Lycan"] = () => {
  7106. return makeCharacter(
  7107. "Axel Lycan",
  7108. "AxelLycan",
  7109. {
  7110. front: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(120, "lb"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/axel-lycan/front.svg",
  7116. extra: 1 / (1 - 0.08),
  7117. bottom: 0.08
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Macro",
  7124. height: math.unit(1, "km")
  7125. },
  7126. ]
  7127. )
  7128. };
  7129. characterMakers["Vanrel (Hyena)"] = () => {
  7130. return makeCharacter(
  7131. "Vanrel (Hyena)",
  7132. "Vanrel",
  7133. {
  7134. front: {
  7135. height: math.unit(5 + 9/12, "feet"),
  7136. weight: math.unit(175, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/vanrel-hyena/front.svg",
  7140. extra: 1086/1010 * (1 / (1 - 0.04)),
  7141. bottom: 0.04
  7142. }
  7143. },
  7144. },
  7145. [
  7146. {
  7147. name: "Normal",
  7148. height: math.unit(5 + 9/12, "feet"),
  7149. default: true
  7150. },
  7151. ]
  7152. )
  7153. };
  7154. characterMakers["Abbott Absol"] = () => {
  7155. return makeCharacter(
  7156. "Abbott Absol",
  7157. "Abbott Absol",
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(103, "lb"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/abbott-absol/front.svg",
  7165. extra: 2010/1842
  7166. }
  7167. },
  7168. },
  7169. [
  7170. {
  7171. name: "Megamicro",
  7172. height: math.unit(0.1, "mm")
  7173. },
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(1, "inch")
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(6, "feet"),
  7181. default: true
  7182. },
  7183. ]
  7184. )
  7185. };
  7186. characterMakers["Hector"] = () => {
  7187. return makeCharacter(
  7188. "Hector",
  7189. "LibragonSlvr",
  7190. {
  7191. front: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(264, "lb"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/hector/front.svg",
  7197. extra: 2280/2130 * (1 / (1 - 0.07)),
  7198. bottom: 0.07
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(12.25, "foot"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(160, "feet")
  7211. },
  7212. ]
  7213. )
  7214. };
  7215. characterMakers["Sal"] = () => {
  7216. return makeCharacter(
  7217. "Sal",
  7218. "Bigdur",
  7219. {
  7220. front: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(150, "lb"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/sal/front.svg",
  7226. extra: 1846/1699 * (1 / (1 - 0.04)),
  7227. bottom: 0.04
  7228. }
  7229. },
  7230. },
  7231. [
  7232. {
  7233. name: "Megamacro",
  7234. height: math.unit(10, "miles")
  7235. },
  7236. ]
  7237. )
  7238. };
  7239. characterMakers["Ranger"] = () => {
  7240. return makeCharacter(
  7241. "Ranger",
  7242. "Ranger",
  7243. {
  7244. front: {
  7245. height: math.unit(3, "meters"),
  7246. weight: math.unit(450, "kg"),
  7247. name: "front",
  7248. image: {
  7249. source: "./media/characters/ranger/front.svg",
  7250. extra: 2401/2243 * (1 / (1 - 0.05)),
  7251. bottom: 0.05
  7252. }
  7253. },
  7254. },
  7255. [
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(3, "meters")
  7259. },
  7260. ]
  7261. )
  7262. };
  7263. characterMakers["Theresa"] = () => {
  7264. return makeCharacter(
  7265. "Theresa",
  7266. "Ranger",
  7267. {
  7268. front: {
  7269. height: math.unit(14, "feet"),
  7270. weight: math.unit(800, "kg"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/theresa/front.svg",
  7274. extra: 3575/3346 * (1 / (1 - 0.03)),
  7275. bottom: 0.03
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Normal",
  7282. height: math.unit(14, "feet")
  7283. },
  7284. ]
  7285. )
  7286. };
  7287. characterMakers["Ine"] = () => {
  7288. return makeCharacter(
  7289. "Ine",
  7290. "Ranger",
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(3, "kg"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/ine/front.svg",
  7298. extra: 678/539 * (1 / (1 - 0.023)),
  7299. bottom: 0.023
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Normal",
  7306. height: math.unit(2.265, "feet")
  7307. },
  7308. ]
  7309. )
  7310. };
  7311. characterMakers["Vial"] = () => {
  7312. return makeCharacter(
  7313. "Vial",
  7314. "Ranger",
  7315. {
  7316. front: {
  7317. height: math.unit(5, "feet"),
  7318. weight: math.unit(30, "kg"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/vial/front.svg",
  7322. extra: 1365/1277 * (1 / (1 - 0.04)),
  7323. bottom: 0.04
  7324. }
  7325. },
  7326. },
  7327. [
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(5, "feet")
  7331. },
  7332. ]
  7333. )
  7334. };
  7335. characterMakers["Rovoska"] = () => {
  7336. return makeCharacter(
  7337. "Rovoska",
  7338. "Rovoska",
  7339. {
  7340. side: {
  7341. height: math.unit(3.4, "meters"),
  7342. weight: math.unit(1000, "lb"),
  7343. name: "Side",
  7344. image: {
  7345. source: "./media/characters/rovoska/side.svg",
  7346. extra: 4403/1515
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(3.4, "meters")
  7354. },
  7355. ]
  7356. )
  7357. };
  7358. characterMakers["Gunner Rotthbauer"] = () => {
  7359. return makeCharacter(
  7360. "Gunner Rotthbauer",
  7361. "GunnerRott",
  7362. {
  7363. front: {
  7364. height: math.unit(8, "feet"),
  7365. weight: math.unit(315, "lb"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/gunner-rotthbauer/front.svg"
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(8, "feet"),
  7373. weight: math.unit(315, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/gunner-rotthbauer/back.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Micro",
  7383. height: math.unit(3.5, "inches")
  7384. },
  7385. {
  7386. name: "Normal",
  7387. height: math.unit(8, "feet")
  7388. },
  7389. {
  7390. name: "Macro",
  7391. height: math.unit(250, "feet")
  7392. },
  7393. {
  7394. name: "Megamacro",
  7395. height: math.unit(1, "AU")
  7396. },
  7397. ]
  7398. )
  7399. };
  7400. characterMakers["Allatia"] = () => {
  7401. return makeCharacter(
  7402. "Allatia",
  7403. "ilikefurrystoo",
  7404. {
  7405. front: {
  7406. height: math.unit(5 + 5/12, "feet"),
  7407. weight: math.unit(140, "lb"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/allatia/front.svg",
  7411. extra: 1227/1180 * (1 / (1 - 0.027)),
  7412. bottom: 0.027
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Normal",
  7419. height: math.unit(5 + 5/12, "feet")
  7420. },
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(250, "feet"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Megamacro",
  7428. height: math.unit(8, "miles")
  7429. }
  7430. ]
  7431. )
  7432. };
  7433. characterMakers["Tene"] = () => {
  7434. return makeCharacter(
  7435. "Tene",
  7436. "TenebrisDrox",
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(120, "lb"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/tene/front.svg",
  7444. extra: 1728/1578 * (1 / (1 - 0.022)),
  7445. bottom: 0.022
  7446. }
  7447. },
  7448. stomping: {
  7449. height: math.unit(2.025, "meters"),
  7450. weight: math.unit(120, "lb"),
  7451. name: "Stomping",
  7452. image: {
  7453. source: "./media/characters/tene/stomping.svg",
  7454. extra: 938/873 * (1 / (1 - 0.01)),
  7455. bottom: 0.01
  7456. }
  7457. },
  7458. sitting: {
  7459. height: math.unit(1, "meter"),
  7460. weight: math.unit(120, "lb"),
  7461. name: "Sitting",
  7462. image: {
  7463. source: "./media/characters/tene/sitting.svg",
  7464. extra: 437/415 * (1 / (1 - 0.1)),
  7465. bottom: 0.1
  7466. }
  7467. },
  7468. feral: {
  7469. height: math.unit(3.9, "feet"),
  7470. weight: math.unit(250, "lb"),
  7471. name: "Feral",
  7472. image: {
  7473. source: "./media/characters/tene/feral.svg",
  7474. extra: 717/458 * (1 / (1 - 0.179)),
  7475. bottom: 0.179
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(6, "feet")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(300, "feet"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Megamacro",
  7491. height: math.unit(5, "miles")
  7492. },
  7493. ]
  7494. )
  7495. };
  7496. characterMakers["Evander"] = () => {
  7497. return makeCharacter(
  7498. "Evander",
  7499. "KlezmerGryphon",
  7500. {
  7501. side: {
  7502. height: math.unit(6, "feet"),
  7503. name: "Side",
  7504. image: {
  7505. source: "./media/characters/evander/side.svg",
  7506. extra: 877/477
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(0.83, "meters")
  7514. },
  7515. ]
  7516. )
  7517. };
  7518. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7519. return makeCharacter(
  7520. "Ka'Tamra \"Spaz\" Ci'Karan",
  7521. "Spazman",
  7522. {
  7523. front: {
  7524. height: math.unit(12, "feet"),
  7525. weight: math.unit(1000, "lb"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7529. extra: 1762/1611
  7530. }
  7531. },
  7532. back: {
  7533. height: math.unit(12, "feet"),
  7534. weight: math.unit(1000, "lb"),
  7535. name: "Back",
  7536. image: {
  7537. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7538. extra: 1762/1611
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Normal",
  7545. height: math.unit(12, "feet"),
  7546. default: true
  7547. },
  7548. {
  7549. name: "Kaiju",
  7550. height: math.unit(150, "feet")
  7551. },
  7552. ]
  7553. )
  7554. };
  7555. characterMakers["Zero Alurus"] = () => {
  7556. return makeCharacter(
  7557. "Zero Alurus",
  7558. "",
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(150, "lb"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/zero-alurus/front.svg"
  7566. }
  7567. },
  7568. back: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(150, "lb"),
  7571. name: "Back",
  7572. image: {
  7573. source: "./media/characters/zero-alurus/back.svg"
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(5 + 10/12, "feet")
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(60, "feet"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Macro+",
  7589. height: math.unit(450, "feet")
  7590. },
  7591. ]
  7592. )
  7593. };
  7594. characterMakers["Mega Shi"] = () => {
  7595. return makeCharacter(
  7596. "Mega Shi",
  7597. "MShi8027",
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(200, "lb"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/mega-shi/front.svg",
  7605. extra: 1279/1250 * (1 / (1 - 0.02)),
  7606. bottom: 0.02
  7607. }
  7608. },
  7609. back: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(200, "lb"),
  7612. name: "Back",
  7613. image: {
  7614. source: "./media/characters/mega-shi/back.svg",
  7615. extra: 1279/1250 * (1 / (1 - 0.02)),
  7616. bottom: 0.02
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Micro",
  7623. height: math.unit(16 + 6/12, "feet")
  7624. },
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(660, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Megamacro",
  7632. height: math.unit(10, "miles")
  7633. },
  7634. {
  7635. name: "Planetary Launch",
  7636. height: math.unit(500, "miles")
  7637. },
  7638. {
  7639. name: "Interstellar",
  7640. height: math.unit(1e9, "miles")
  7641. },
  7642. {
  7643. name: "Leaving the Universe",
  7644. height: math.unit(1, "gigaparsec")
  7645. },
  7646. {
  7647. name: "Travelling Universes",
  7648. height: math.unit(30e15, "parsecs")
  7649. },
  7650. ]
  7651. )
  7652. };
  7653. characterMakers["Odyssey"] = () => {
  7654. return makeCharacter(
  7655. "Odyssey",
  7656. "Freschlauhs",
  7657. {
  7658. front: {
  7659. height: math.unit(6, "feet"),
  7660. weight: math.unit(150, "lb"),
  7661. name: "Front",
  7662. image: {
  7663. source: "./media/characters/odyssey/front.svg",
  7664. extra: 1782/1582 * (1 / (1 - 0.01)),
  7665. bottom: 0.01
  7666. }
  7667. },
  7668. side: {
  7669. height: math.unit(5.6, "feet"),
  7670. weight: math.unit(140, "lb"),
  7671. name: "Side",
  7672. image: {
  7673. source: "./media/characters/odyssey/side.svg",
  7674. extra: 6462/5700
  7675. }
  7676. },
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(5 + 4/12, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(1, "km")
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(3000, "km")
  7690. },
  7691. {
  7692. name: "Gigamacro",
  7693. height: math.unit(1, "AU"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Omniversal",
  7698. height: math.unit(100e14, "lightyears")
  7699. },
  7700. ]
  7701. )
  7702. };
  7703. characterMakers["Mekuto"] = () => {
  7704. return makeCharacter(
  7705. "Mekuto",
  7706. "Mekuto",
  7707. {
  7708. front: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(300, "lb"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/mekuto/front.svg",
  7714. extra: 921/832 * (1 / (1 - 0.03)),
  7715. bottom: 0.03
  7716. }
  7717. },
  7718. hand: {
  7719. height: math.unit(6/10.24, "feet"),
  7720. name: "Hand",
  7721. image: {
  7722. source: "./media/characters/mekuto/hand.svg"
  7723. }
  7724. },
  7725. foot: {
  7726. height: math.unit(6/5.05, "feet"),
  7727. name: "Foot",
  7728. image: {
  7729. source: "./media/characters/mekuto/foot.svg"
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Minimicro",
  7736. height: math.unit(0.2, "inches")
  7737. },
  7738. {
  7739. name: "Micro",
  7740. height: math.unit(1.5, "inches")
  7741. },
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(5 + 11/12, "feet"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Minimacro",
  7749. height: math.unit(17 + 9/12, "feet")
  7750. },
  7751. {
  7752. name: "Macro",
  7753. height: math.unit(177.5, "feet")
  7754. },
  7755. {
  7756. name: "Megamacro",
  7757. height: math.unit(152, "miles")
  7758. },
  7759. ]
  7760. )
  7761. };
  7762. characterMakers["Dafydd Tomos"] = () => {
  7763. return makeCharacter(
  7764. "Dafydd Tomos",
  7765. "SolarfoxArt",
  7766. {
  7767. front: {
  7768. height: math.unit(6.5, "inches"),
  7769. weight: math.unit(13, "oz"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/dafydd-tomos/front.svg",
  7773. extra: 2990/2603 * (1 / (1 - 0.03)),
  7774. bottom: 0.03
  7775. }
  7776. },
  7777. },
  7778. [
  7779. {
  7780. name: "Micro",
  7781. height: math.unit(6.5, "inches"),
  7782. default: true
  7783. },
  7784. ]
  7785. )
  7786. };
  7787. characterMakers["Splinter"] = () => {
  7788. return makeCharacter(
  7789. "Splinter",
  7790. "SirSplinter",
  7791. {
  7792. front: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(150, "lb"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/splinter/front.svg",
  7798. extra: 2990/2882 * (1 / (1 - 0.04)),
  7799. bottom: 0.04
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(6, "feet"),
  7804. weight: math.unit(150, "lb"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/splinter/back.svg",
  7808. extra: 2990/2882 * (1 / (1 - 0.04)),
  7809. bottom: 0.04
  7810. }
  7811. },
  7812. },
  7813. [
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(6, "feet")
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(230, "meters"),
  7821. default: true
  7822. },
  7823. ]
  7824. )
  7825. };
  7826. characterMakers["SnowGabumon"] = () => {
  7827. return makeCharacter(
  7828. "SnowGabumon",
  7829. "SnowGabumon",
  7830. {
  7831. front: {
  7832. height: math.unit(4 + 10/12, "feet"),
  7833. weight: math.unit(480, "lb"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/snow-gabumon/front.svg",
  7837. extra: 1140/963 * (1 / (1 - 0.058)),
  7838. bottom: 0.058
  7839. }
  7840. },
  7841. back: {
  7842. height: math.unit(4 + 10/12, "feet"),
  7843. weight: math.unit(480, "lb"),
  7844. name: "Back",
  7845. image: {
  7846. source: "./media/characters/snow-gabumon/back.svg",
  7847. extra: 1115/962 * (1 / (1 - 0.041)),
  7848. bottom: 0.041
  7849. }
  7850. },
  7851. frontUndresed: {
  7852. height: math.unit(4 + 10/12, "feet"),
  7853. weight: math.unit(480, "lb"),
  7854. name: "Front (Undressed)",
  7855. image: {
  7856. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7857. extra: 1061/960 * (1 / (1 - 0.045)),
  7858. bottom: 0.045
  7859. }
  7860. },
  7861. },
  7862. [
  7863. {
  7864. name: "Micro",
  7865. height: math.unit(1, "inch")
  7866. },
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(4 + 10/12, "feet"),
  7870. default: true
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(200, "feet")
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(120, "miles")
  7879. },
  7880. {
  7881. name: "Gigamacro",
  7882. height: math.unit(9800, "miles")
  7883. },
  7884. ]
  7885. )
  7886. };
  7887. characterMakers["Moody"] = () => {
  7888. return makeCharacter(
  7889. "Moody",
  7890. "MoodysterDog",
  7891. {
  7892. front: {
  7893. height: math.unit(1.7, "meters"),
  7894. weight: math.unit(140, "lb"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/moody/front.svg",
  7898. extra: 3226/3007 * (1 / (1 - 0.087)),
  7899. bottom: 0.087
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(1, "mm")
  7907. },
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(1.7, "meters"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(80, "meters")
  7916. },
  7917. {
  7918. name: "Macro+",
  7919. height: math.unit(500, "meters")
  7920. },
  7921. ]
  7922. )
  7923. };
  7924. characterMakers["Zyas"] = () => {
  7925. return makeCharacter(
  7926. "Zyas",
  7927. "Delathar",
  7928. {
  7929. front: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(150, "lb"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/zyas/front.svg",
  7935. extra: 1180/1120 * (1 / (1 - 0.045)),
  7936. bottom: 0.045
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(10, "feet"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(500, "feet")
  7949. },
  7950. {
  7951. name: "Megamacro",
  7952. height: math.unit(5, "miles")
  7953. },
  7954. {
  7955. name: "Teramacro",
  7956. height: math.unit(150000, "miles")
  7957. },
  7958. ]
  7959. )
  7960. };
  7961. characterMakers["Cuon"] = () => {
  7962. return makeCharacter(
  7963. "Cuon",
  7964. "CollieCuon",
  7965. {
  7966. front: {
  7967. height: math.unit(6, "feet"),
  7968. weight: math.unit(150, "lb"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/cuon/front.svg",
  7972. extra: 1390/1320 * (1 / (1 - 0.008)),
  7973. bottom: 0.008
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Micro",
  7980. height: math.unit(3, "inches")
  7981. },
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(18 + 9/12, "feet"),
  7985. default: true
  7986. },
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(360, "feet")
  7990. },
  7991. {
  7992. name: "Megamacro",
  7993. height: math.unit(360, "miles")
  7994. },
  7995. ]
  7996. )
  7997. };
  7998. characterMakers["Nyanuxk"] = () => {
  7999. return makeCharacter(
  8000. "Nyanuxk",
  8001. "Nyanuxk",
  8002. {
  8003. front: {
  8004. height: math.unit(2.4, "meters"),
  8005. weight: math.unit(70, "kg"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/nyanuxk/front.svg",
  8009. extra: 1172/1084 * (1 / (1 - 0.065)),
  8010. bottom: 0.065
  8011. }
  8012. },
  8013. side: {
  8014. height: math.unit(2.4, "meters"),
  8015. weight: math.unit(70, "kg"),
  8016. name: "Side",
  8017. image: {
  8018. source: "./media/characters/nyanuxk/side.svg",
  8019. extra: 1190/1132 * (1 / (1 - 0.007)),
  8020. bottom: 0.007
  8021. }
  8022. },
  8023. back: {
  8024. height: math.unit(2.4, "meters"),
  8025. weight: math.unit(70, "kg"),
  8026. name: "Back",
  8027. image: {
  8028. source: "./media/characters/nyanuxk/back.svg",
  8029. extra: 1200/1141 * (1 / (1 - 0.015)),
  8030. bottom: 0.015
  8031. }
  8032. },
  8033. foot: {
  8034. height: math.unit(0.52, "meters"),
  8035. name: "Foot",
  8036. image: {
  8037. source: "./media/characters/nyanuxk/foot.svg"
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Micro",
  8044. height: math.unit(2, "cm")
  8045. },
  8046. {
  8047. name: "Normal",
  8048. height: math.unit(2.4, "meters"),
  8049. default: true
  8050. },
  8051. {
  8052. name: "Smaller Macro",
  8053. height: math.unit(120, "meters")
  8054. },
  8055. {
  8056. name: "Bigger Macro",
  8057. height: math.unit(1.2, "km")
  8058. },
  8059. {
  8060. name: "Megamacro",
  8061. height: math.unit(15, "kilometers")
  8062. },
  8063. {
  8064. name: "Gigamacro",
  8065. height: math.unit(2000, "km")
  8066. },
  8067. {
  8068. name: "Teramacro",
  8069. height: math.unit(500000, "km")
  8070. },
  8071. ]
  8072. )
  8073. };
  8074. characterMakers["Ailbhe"] = () => {
  8075. return makeCharacter(
  8076. "Ailbhe",
  8077. "KlezmerGryphon",
  8078. {
  8079. side: {
  8080. height: math.unit(6, "feet"),
  8081. name: "Side",
  8082. image: {
  8083. source: "./media/characters/ailbhe/side.svg",
  8084. extra: 757/464 * (1 / (1 - 0.041)),
  8085. bottom: 0.041
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(1.07, "meters"),
  8093. default: true
  8094. },
  8095. ]
  8096. )
  8097. };
  8098. characterMakers["Zevulfius"] = () => {
  8099. return makeCharacter(
  8100. "Zevulfius",
  8101. "Nyanuxk",
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(120, "kg"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/zevulfius/front.svg",
  8109. extra: 965/903
  8110. }
  8111. },
  8112. side: {
  8113. height: math.unit(6, "feet"),
  8114. weight: math.unit(120, "kg"),
  8115. name: "Side",
  8116. image: {
  8117. source: "./media/characters/zevulfius/side.svg",
  8118. extra: 939/900
  8119. }
  8120. },
  8121. back: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(120, "kg"),
  8124. name: "Back",
  8125. image: {
  8126. source: "./media/characters/zevulfius/back.svg",
  8127. extra: 918/854 * (1 / (1 - 0.005)),
  8128. bottom: 0.005
  8129. }
  8130. },
  8131. foot: {
  8132. height: math.unit(6/3.72, "feet"),
  8133. name: "Foot",
  8134. image: {
  8135. source: "./media/characters/zevulfius/foot.svg"
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(750, "meters")
  8143. },
  8144. {
  8145. name: "Megamacro",
  8146. height: math.unit(20, "km"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Gigamacro",
  8151. height: math.unit(2000, "km")
  8152. },
  8153. {
  8154. name: "Teramacro",
  8155. height: math.unit(250000, "km")
  8156. },
  8157. ]
  8158. )
  8159. };
  8160. characterMakers["Rikes"] = () => {
  8161. return makeCharacter(
  8162. "Rikes",
  8163. "VeryLargeDog",
  8164. {
  8165. front: {
  8166. height: math.unit(100, "feet"),
  8167. weight: math.unit(350, "kg"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/rikes/front.svg",
  8171. extra: 1565/1483 * (1 / (1 - 0.017)),
  8172. bottom: 0.017
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(100, "feet"),
  8180. default: true
  8181. },
  8182. ]
  8183. )
  8184. };
  8185. characterMakers["Adam Silver-Mane"] = () => {
  8186. return makeCharacter(
  8187. "Adam Silver-Mane",
  8188. "Dragonknightadam",
  8189. {
  8190. anthro: {
  8191. height: math.unit(8, "feet"),
  8192. weight: math.unit(120, "kg"),
  8193. name: "Anthro",
  8194. image: {
  8195. source: "./media/characters/adam-silver-mane/anthro.svg",
  8196. extra: 5743/5339 * (1 / (1 - 0.07)),
  8197. bottom: 0.07
  8198. }
  8199. },
  8200. taur: {
  8201. height: math.unit(16, "feet"),
  8202. weight: math.unit(1500, "kg"),
  8203. name: "Taur",
  8204. image: {
  8205. source: "./media/characters/adam-silver-mane/taur.svg",
  8206. extra: 1713/1571 * (1 / (1 - 0.01)),
  8207. bottom: 0.01
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(8, "feet")
  8215. },
  8216. {
  8217. name: "Minimacro",
  8218. height: math.unit(80, "feet")
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(800, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Megamacro",
  8227. height: math.unit(8000, "feet")
  8228. },
  8229. {
  8230. name: "Gigamacro",
  8231. height: math.unit(800, "miles")
  8232. },
  8233. {
  8234. name: "Teramacro",
  8235. height: math.unit(80000, "miles")
  8236. },
  8237. {
  8238. name: "Celestial",
  8239. height: math.unit(8e6, "miles")
  8240. },
  8241. {
  8242. name: "Star Dragon",
  8243. height: math.unit(800000, "parsecs")
  8244. },
  8245. {
  8246. name: "Godly",
  8247. height: math.unit(800, "teraparsecs")
  8248. },
  8249. ]
  8250. )
  8251. };
  8252. characterMakers["Ky'owin"] = () => {
  8253. return makeCharacter(
  8254. "Ky'owin",
  8255. "Kyowin",
  8256. {
  8257. front: {
  8258. height: math.unit(6, "feet"),
  8259. weight: math.unit(150, "lb"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/ky'owin/front.svg",
  8263. extra: 3888/3068 * (1 / (1 - 0.015)),
  8264. bottom: 0.015
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(6 + 8/12, "feet")
  8272. },
  8273. {
  8274. name: "Large",
  8275. height: math.unit(68, "feet")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(132, "feet")
  8280. },
  8281. {
  8282. name: "Macro+",
  8283. height: math.unit(340, "feet")
  8284. },
  8285. {
  8286. name: "Macro++",
  8287. height: math.unit(680, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(1, "mile")
  8293. },
  8294. {
  8295. name: "Megamacro+",
  8296. height: math.unit(10, "miles")
  8297. },
  8298. ]
  8299. )
  8300. };
  8301. characterMakers["Mal"] = () => {
  8302. return makeCharacter(
  8303. "Mal",
  8304. "agrosarmadillo",
  8305. {
  8306. front: {
  8307. height: math.unit(4, "feet"),
  8308. weight: math.unit(50, "lb"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/mal/front.svg",
  8312. extra: 785/724 * (1 / (1 - 0.07)),
  8313. bottom: 0.07
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(4, "inches")
  8321. },
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(4, "feet"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Macro",
  8329. height: math.unit(200, "feet")
  8330. },
  8331. ]
  8332. )
  8333. };
  8334. characterMakers["Jordan Deware"] = () => {
  8335. return makeCharacter(
  8336. "Jordan Deware",
  8337. "JordanDeware",
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(150, "lb"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/jordan-deware/front.svg",
  8345. extra: 1191/1012
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Nano",
  8352. height: math.unit(0.01, "mm")
  8353. },
  8354. {
  8355. name: "Minimicro",
  8356. height: math.unit(1, "mm")
  8357. },
  8358. {
  8359. name: "Micro",
  8360. height: math.unit(0.5, "inches")
  8361. },
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(4, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Minimacro",
  8369. height: math.unit(40, "meters")
  8370. },
  8371. {
  8372. name: "Small Macro",
  8373. height: math.unit(400, "meters")
  8374. },
  8375. {
  8376. name: "Macro",
  8377. height: math.unit(4, "miles")
  8378. },
  8379. {
  8380. name: "Megamacro",
  8381. height: math.unit(40, "miles")
  8382. },
  8383. {
  8384. name: "Megamacro+",
  8385. height: math.unit(400, "miles")
  8386. },
  8387. {
  8388. name: "Gigamacro",
  8389. height: math.unit(400000, "miles")
  8390. },
  8391. ]
  8392. )
  8393. };
  8394. characterMakers["Kimiko"] = () => {
  8395. return makeCharacter(
  8396. "Kimiko",
  8397. "HypoTheDerg",
  8398. {
  8399. side: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(150, "lb"),
  8402. name: "Side",
  8403. image: {
  8404. source: "./media/characters/kimiko/side.svg",
  8405. extra: 600/358
  8406. }
  8407. },
  8408. },
  8409. [
  8410. {
  8411. name: "Normal",
  8412. height: math.unit(15, "feet")
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(220, "feet")
  8417. },
  8418. {
  8419. name: "Macro+",
  8420. height: math.unit(1450, "feet")
  8421. },
  8422. {
  8423. name: "Megamacro",
  8424. height: math.unit(11500, "feet")
  8425. },
  8426. {
  8427. name: "Gigamacro",
  8428. height: math.unit(9500, "miles")
  8429. },
  8430. {
  8431. name: "Teramacro",
  8432. height: math.unit(2208005005, "miles")
  8433. },
  8434. {
  8435. name: "Examacro",
  8436. height: math.unit(2750, "parsecs")
  8437. },
  8438. {
  8439. name: "Zettamacro",
  8440. height: math.unit(101500, "parsecs")
  8441. },
  8442. ]
  8443. )
  8444. };
  8445. characterMakers["Andrew Sleepy"] = () => {
  8446. return makeCharacter(
  8447. "Andrew Sleepy",
  8448. "Proky",
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(70, "kg"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/andrew-sleepy/front.svg"
  8456. }
  8457. },
  8458. side: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(70, "kg"),
  8461. name: "Side",
  8462. image: {
  8463. source: "./media/characters/andrew-sleepy/side.svg"
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(1, "mm"),
  8471. default: true
  8472. },
  8473. ]
  8474. )
  8475. };
  8476. characterMakers["Judio"] = () => {
  8477. return makeCharacter(
  8478. "Judio",
  8479. "HypoTheDerg",
  8480. {
  8481. front: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(150, "lb"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/judio/front.svg",
  8487. extra: 1258/1110
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(5 + 6/12, "feet")
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(1000, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Megamacro",
  8503. height: math.unit(10, "miles")
  8504. },
  8505. ]
  8506. )
  8507. };
  8508. characterMakers["Nomaxice"] = () => {
  8509. return makeCharacter(
  8510. "Nomaxice",
  8511. "Nomaxice",
  8512. {
  8513. front: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(68, "kg"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/nomaxice/front.svg",
  8519. extra: 1498/1073 * (1 / (1 - 0.075)),
  8520. bottom: 0.075
  8521. }
  8522. },
  8523. foot: {
  8524. height: math.unit(1.1, "feet"),
  8525. name: "Foot",
  8526. image: {
  8527. source: "./media/characters/nomaxice/foot.svg"
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Micro",
  8534. height: math.unit(8, "cm")
  8535. },
  8536. {
  8537. name: "Norm",
  8538. height: math.unit(1.82, "m")
  8539. },
  8540. {
  8541. name: "Norm+",
  8542. height: math.unit(8.8, "feet")
  8543. },
  8544. {
  8545. name: "Big",
  8546. height: math.unit(8, "meters"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(18, "meters")
  8552. },
  8553. {
  8554. name: "Macro+",
  8555. height: math.unit(88, "meters")
  8556. },
  8557. ]
  8558. )
  8559. };
  8560. characterMakers["Dydros"] = () => {
  8561. return makeCharacter(
  8562. "Dydros",
  8563. "DatCyberDragon",
  8564. {
  8565. front: {
  8566. height: math.unit(12, "feet"),
  8567. weight: math.unit(1.5, "tons"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/dydros/front.svg",
  8571. extra: 863/800 * (1 / (1 - 0.015)),
  8572. bottom: 0.015
  8573. }
  8574. },
  8575. back: {
  8576. height: math.unit(12, "feet"),
  8577. weight: math.unit(1.5, "tons"),
  8578. name: "Back",
  8579. image: {
  8580. source: "./media/characters/dydros/back.svg",
  8581. extra: 900/843 * (1 / (1 - 0.005)),
  8582. bottom: 0.005
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(12, "feet"),
  8590. default: true
  8591. },
  8592. ]
  8593. )
  8594. };
  8595. characterMakers["Riggi"] = () => {
  8596. return makeCharacter(
  8597. "Riggi",
  8598. "Fyre_ace",
  8599. {
  8600. front: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(100, "kg"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/riggi/front.svg",
  8606. extra: 5787/5303
  8607. }
  8608. },
  8609. hyper: {
  8610. height: math.unit(6*5/3, "feet"),
  8611. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8612. name: "Hyper",
  8613. image: {
  8614. source: "./media/characters/riggi/hyper.svg",
  8615. extra: 3595/3485
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Small Macro",
  8622. height: math.unit(50, "feet")
  8623. },
  8624. {
  8625. name: "Default",
  8626. height: math.unit(200, "feet"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Loom",
  8631. height: math.unit(10000, "feet")
  8632. },
  8633. {
  8634. name: "Cruising Altitude",
  8635. height: math.unit(30000, "feet")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(100, "miles")
  8640. },
  8641. {
  8642. name: "Continent Sized",
  8643. height: math.unit(2800, "miles")
  8644. },
  8645. {
  8646. name: "Earth Sized",
  8647. height: math.unit(8000, "miles")
  8648. },
  8649. ]
  8650. )
  8651. };
  8652. characterMakers["Alexi"] = () => {
  8653. return makeCharacter(
  8654. "Alexi",
  8655. "AlexiWerewolf",
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(250, "lb"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/alexi/front.svg",
  8663. extra: 3483/3291 * (1 / (1 - 0.04)),
  8664. bottom: 0.04
  8665. }
  8666. },
  8667. back: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(250, "lb"),
  8670. name: "Back",
  8671. image: {
  8672. source: "./media/characters/alexi/back.svg",
  8673. extra: 3533/3356 * (1 / (1 - 0.021)),
  8674. bottom: 0.021
  8675. }
  8676. },
  8677. frontTransformed: {
  8678. height: math.unit(12.5, "feet"),
  8679. weight: math.unit(4000, "lb"),
  8680. name: "Front (Transformed)",
  8681. image: {
  8682. source: "./media/characters/alexi/front-transformed.svg",
  8683. extra: 5345/5100 * (1 / (1 - 0.03)),
  8684. bottom: 0.03
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(3, "meters"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Minimacro",
  8696. height: math.unit(30, "meters")
  8697. },
  8698. {
  8699. name: "Macro",
  8700. height: math.unit(500, "meters")
  8701. },
  8702. {
  8703. name: "Megamacro",
  8704. height: math.unit(9000, "km")
  8705. },
  8706. {
  8707. name: "Teramacro",
  8708. height: math.unit(384000, "km")
  8709. },
  8710. ]
  8711. )
  8712. };
  8713. characterMakers["Kayroo"] = () => {
  8714. return makeCharacter(
  8715. "Kayroo",
  8716. "Kayroo",
  8717. {
  8718. front: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(150, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/kayroo/front.svg",
  8724. extra: 1153/1038 * (1 / (1 - 0.06)),
  8725. bottom: 0.06
  8726. }
  8727. },
  8728. foot: {
  8729. height: math.unit(6, "feet"),
  8730. weight: math.unit(150, "lb"),
  8731. name: "Foot",
  8732. image: {
  8733. source: "./media/characters/kayroo/foot.svg"
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(8, "feet")
  8741. },
  8742. {
  8743. name: "Minimacro",
  8744. height: math.unit(250, "feet")
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(2800, "feet")
  8749. },
  8750. {
  8751. name: "Megamacro",
  8752. height: math.unit(5200, "feet")
  8753. },
  8754. {
  8755. name: "Gigamacro",
  8756. height: math.unit(27000, "feet")
  8757. },
  8758. {
  8759. name: "Omega",
  8760. height: math.unit(45000, "feet")
  8761. },
  8762. ]
  8763. )
  8764. };
  8765. characterMakers["Rhys"] = () => {
  8766. return makeCharacter(
  8767. "Rhys",
  8768. "BigMountainCat",
  8769. {
  8770. front: {
  8771. height: math.unit(18, "feet"),
  8772. weight: math.unit(5800, "lb"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/rhys/front.svg",
  8776. extra: 3386/3090 * (1 / (1 - 0.07)),
  8777. bottom: 0.07
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(18, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Working Size",
  8789. height: math.unit(200, "feet")
  8790. },
  8791. {
  8792. name: "Demolition Size",
  8793. height: math.unit(2000, "feet")
  8794. },
  8795. {
  8796. name: "Maximum Licensed Size",
  8797. height: math.unit(5, "miles")
  8798. },
  8799. {
  8800. name: "Maximum Observed Size",
  8801. height: math.unit(10, "yottameters")
  8802. },
  8803. ]
  8804. )
  8805. };
  8806. characterMakers["Toto"] = () => {
  8807. return makeCharacter(
  8808. "Toto",
  8809. "Totoly_Toto",
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(250, "lb"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/toto/front.svg",
  8817. exra: 527 / 479 * (1 / (1 - 0.05)),
  8818. bottom: 0.05
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Micro",
  8825. height: math.unit(3, "feet")
  8826. },
  8827. {
  8828. name: "Normal",
  8829. height: math.unit(10, "feet")
  8830. },
  8831. {
  8832. name: "Macro",
  8833. height: math.unit(150, "feet"),
  8834. default: true
  8835. },
  8836. {
  8837. name: "Megamacro",
  8838. height: math.unit(1200, "feet")
  8839. },
  8840. ]
  8841. )
  8842. };
  8843. characterMakers["King"] = () => {
  8844. return makeCharacter(
  8845. "King",
  8846. "KingSizedLion",
  8847. {
  8848. back: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(150, "lb"),
  8851. name: "Back",
  8852. image: {
  8853. source: "./media/characters/king/back.svg"
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Micro",
  8860. height: math.unit(2, "inches")
  8861. },
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(8, "feet")
  8865. },
  8866. {
  8867. name: "Macro",
  8868. height: math.unit(200, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Megamacro",
  8873. height: math.unit(50, "miles")
  8874. },
  8875. ]
  8876. )
  8877. };
  8878. characterMakers["Cordite"] = () => {
  8879. return makeCharacter(
  8880. "Cordite",
  8881. "photonman2",
  8882. {
  8883. anthro: {
  8884. height: math.unit(6 + 5/12, "feet"),
  8885. weight: math.unit(280, "lb"),
  8886. name: "Anthro",
  8887. image: {
  8888. source: "./media/characters/cordite/anthro.svg",
  8889. extra: 1986/1905 * (1 / (1 - 0.025)),
  8890. bottom: 0.025
  8891. }
  8892. },
  8893. feral: {
  8894. height: math.unit(2, "feet"),
  8895. weight: math.unit(90, "lb"),
  8896. name: "Feral",
  8897. image: {
  8898. source: "./media/characters/cordite/feral.svg",
  8899. extra: 1260/755 * (1 / (1 - 0.05)),
  8900. bottom: 0.05
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(6 + 5/12, "feet")
  8908. },
  8909. ]
  8910. )
  8911. };
  8912. characterMakers["Pianostrong"] = () => {
  8913. return makeCharacter(
  8914. "Pianostrong",
  8915. "Pianostrong",
  8916. {
  8917. front: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(150, "lb"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/pianostrong/front.svg",
  8923. extra: 6577/6254 * (1 / (1 - 0.02)),
  8924. bottom: 0.02
  8925. }
  8926. },
  8927. side: {
  8928. height: math.unit(6, "feet"),
  8929. weight: math.unit(150, "lb"),
  8930. name: "Side",
  8931. image: {
  8932. source: "./media/characters/pianostrong/side.svg",
  8933. extra: 6106/5730
  8934. }
  8935. },
  8936. back: {
  8937. height: math.unit(6, "feet"),
  8938. weight: math.unit(150, "lb"),
  8939. name: "Back",
  8940. image: {
  8941. source: "./media/characters/pianostrong/back.svg",
  8942. extra: 6085/5733 * (1 / (1 - 0.01)),
  8943. bottom: 0.01
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(100, "feet")
  8951. },
  8952. {
  8953. name: "Macro+",
  8954. height: math.unit(300, "feet"),
  8955. default: true
  8956. },
  8957. {
  8958. name: "Macro++",
  8959. height: math.unit(1000, "feet")
  8960. },
  8961. ]
  8962. )
  8963. };
  8964. characterMakers["Kona"] = () => {
  8965. return makeCharacter(
  8966. "Kona",
  8967. "Konadh",
  8968. {
  8969. front: {
  8970. height: math.unit(6, "feet"),
  8971. weight: math.unit(150, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/kona/front.svg",
  8975. extra: 2960/2629 * (1 / (1 - 0.005)),
  8976. bottom: 0.005
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(11 + 8/12, "feet")
  8984. },
  8985. {
  8986. name: "Macro",
  8987. height: math.unit(850, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro+",
  8992. height: math.unit(1.5, "km"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Megamacro",
  8997. height: math.unit(80, "miles")
  8998. },
  8999. {
  9000. name: "Gigamacro",
  9001. height: math.unit(3500, "miles")
  9002. },
  9003. ]
  9004. )
  9005. };
  9006. characterMakers["Levi"] = () => {
  9007. return makeCharacter(
  9008. "Levi",
  9009. "LeviCurrie",
  9010. {
  9011. side: {
  9012. height: math.unit(1.9, "meters"),
  9013. weight: math.unit(326, "kg"),
  9014. name: "Side",
  9015. image: {
  9016. source: "./media/characters/levi/side.svg",
  9017. extra: 1704/1334 * (1 / (1 - 0.02)),
  9018. bottom: 0.02
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(1.9, "meters")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(20, "meters")
  9030. },
  9031. {
  9032. name: "Macro+",
  9033. height: math.unit(200, "meters")
  9034. },
  9035. {
  9036. name: "Megamacro",
  9037. height: math.unit(2, "km")
  9038. },
  9039. {
  9040. name: "Megamacro+",
  9041. height: math.unit(20, "km")
  9042. },
  9043. {
  9044. name: "Gigamacro",
  9045. height: math.unit(2500, "km")
  9046. },
  9047. {
  9048. name: "Gigamacro+",
  9049. height: math.unit(120000, "km")
  9050. },
  9051. {
  9052. name: "Teramacro",
  9053. height: math.unit(7.77e6, "km")
  9054. },
  9055. ]
  9056. )
  9057. };
  9058. characterMakers["BMC"] = () => {
  9059. return makeCharacter(
  9060. "BMC",
  9061. "BigMountainCat",
  9062. {
  9063. front: {
  9064. height: math.unit(6 + 4/12, "feet"),
  9065. weight: math.unit(188, "lb"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/bmc/front.svg",
  9069. extra: 1067/1022 * (1 / (1 - 0.047)),
  9070. bottom: 0.047
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Human-sized",
  9077. height: math.unit(6 + 4/12, "feet")
  9078. },
  9079. {
  9080. name: "Small",
  9081. height: math.unit(250, "feet")
  9082. },
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(1250, "feet"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "Good Day",
  9090. height: math.unit(88, "miles")
  9091. },
  9092. {
  9093. name: "Largest Measured Size",
  9094. height: math.unit(11.2e6, "lightyears")
  9095. },
  9096. ]
  9097. )
  9098. };
  9099. characterMakers["Sven the Kaiju"] = () => {
  9100. return makeCharacter(
  9101. "Sven the Kaiju",
  9102. "OfActionMan",
  9103. {
  9104. front: {
  9105. height: math.unit(20, "feet"),
  9106. weight: math.unit(2016, "kg"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/sven-the-kaiju/front.svg",
  9110. extra: 1479/1449 * (1 / (1 - 0.05)),
  9111. bottom: 0.05
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Fairy",
  9118. height: math.unit(6, "inches")
  9119. },
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(20, "feet"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Rampage",
  9127. height: math.unit(200, "feet")
  9128. },
  9129. {
  9130. name: "Archfey Forest Guardian",
  9131. height: math.unit(1, "mile")
  9132. },
  9133. ]
  9134. )
  9135. };
  9136. characterMakers["Marik"] = () => {
  9137. return makeCharacter(
  9138. "Marik",
  9139. "Acrarun",
  9140. {
  9141. front: {
  9142. height: math.unit(4, "meters"),
  9143. weight: math.unit(2, "tons"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/marik/front.svg",
  9147. extra: 1057/1003 * (1 / (1 - 0.08)),
  9148. bottom: 0.08
  9149. }
  9150. },
  9151. },
  9152. [
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(4, "meters"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Macro",
  9160. height: math.unit(20, "meters")
  9161. },
  9162. {
  9163. name: "Megamacro",
  9164. height: math.unit(50, "km")
  9165. },
  9166. {
  9167. name: "Gigamacro",
  9168. height: math.unit(100, "km")
  9169. },
  9170. {
  9171. name: "Alpha Macro",
  9172. height: math.unit(7.88e7, "yottameters")
  9173. },
  9174. ]
  9175. )
  9176. };
  9177. characterMakers["Mel"] = () => {
  9178. return makeCharacter(
  9179. "Mel",
  9180. "SomedayNotSoon",
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(110, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/mel/front.svg",
  9188. extra: 736/617 * (1 / (1 - 0.017)),
  9189. bottom: 0.017
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Pico",
  9196. height: math.unit(3, "pm")
  9197. },
  9198. {
  9199. name: "Nano",
  9200. height: math.unit(3, "nm")
  9201. },
  9202. {
  9203. name: "Micro",
  9204. height: math.unit(0.3, "mm"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Micro+",
  9209. height: math.unit(3, "mm")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(5 + 10.5/12, "feet")
  9214. },
  9215. ]
  9216. )
  9217. };
  9218. characterMakers["Lykonous"] = () => {
  9219. return makeCharacter(
  9220. "Lykonous",
  9221. "Lykonous",
  9222. {
  9223. kaiju: {
  9224. height: math.unit(1.75, "meters"),
  9225. weight: math.unit(55, "kg"),
  9226. name: "Kaiju",
  9227. image: {
  9228. source: "./media/characters/lykonous/kaiju.svg",
  9229. extra: 1055/946 * (1 / (1 - 0.135)),
  9230. bottom: 0.135
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(2.5, "meters")
  9238. },
  9239. {
  9240. name: "Kaiju Dragon",
  9241. height: math.unit(60, "meters")
  9242. },
  9243. {
  9244. name: "Mega Kaiju",
  9245. height: math.unit(120, "km")
  9246. },
  9247. {
  9248. name: "Giga Kaiju",
  9249. height: math.unit(200, "megameters")
  9250. },
  9251. {
  9252. name: "Terra Kaiju",
  9253. height: math.unit(400, "gigameters")
  9254. },
  9255. {
  9256. name: "Kaiju Dragon God",
  9257. height: math.unit(13000, "exaparsecs")
  9258. },
  9259. ]
  9260. )
  9261. };
  9262. characterMakers["Blü"] = () => {
  9263. return makeCharacter(
  9264. "Blü",
  9265. "BluTheFagon",
  9266. {
  9267. front: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/blü/front.svg",
  9273. extra: 1883/1564 * (1 / (1 - 0.031)),
  9274. bottom: 0.031
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(13, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Big Boi",
  9286. height: math.unit(150, "meters")
  9287. },
  9288. {
  9289. name: "Mini Stomper",
  9290. height: math.unit(300, "meters")
  9291. },
  9292. {
  9293. name: "Macro",
  9294. height: math.unit(1000, "meters")
  9295. },
  9296. {
  9297. name: "Megamacro",
  9298. height: math.unit(11000, "meters")
  9299. },
  9300. {
  9301. name: "Gigamacro",
  9302. height: math.unit(11000, "km")
  9303. },
  9304. {
  9305. name: "Teramacro",
  9306. height: math.unit(420000, "km")
  9307. },
  9308. {
  9309. name: "Examacro",
  9310. height: math.unit(120, "parsecs")
  9311. },
  9312. {
  9313. name: "God Tho",
  9314. height: math.unit(98000000000, "parsecs")
  9315. },
  9316. ]
  9317. )
  9318. };
  9319. characterMakers["Scales"] = () => {
  9320. return makeCharacter(
  9321. "Scales",
  9322. "Scales",
  9323. {
  9324. taurFront: {
  9325. height: math.unit(6, "feet"),
  9326. weight: math.unit(200, "lb"),
  9327. name: "Taur (Front)",
  9328. image: {
  9329. source: "./media/characters/scales/taur-front.svg",
  9330. extra: 1 / (1 - 0.05),
  9331. bottom: 0.05
  9332. }
  9333. },
  9334. taurBack: {
  9335. height: math.unit(6, "feet"),
  9336. weight: math.unit(200, "lb"),
  9337. name: "Taur (Back)",
  9338. image: {
  9339. source: "./media/characters/scales/taur-back.svg",
  9340. extra: 1 / (1 - 0.08),
  9341. bottom: 0.08
  9342. }
  9343. },
  9344. anthro: {
  9345. height: math.unit(6*7/12, "feet"),
  9346. weight: math.unit(100, "lb"),
  9347. name: "Anthro",
  9348. image: {
  9349. source: "./media/characters/scales/anthro.svg",
  9350. extra: 1 / (1 - 0.06),
  9351. bottom: 0.06
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(12, "feet"),
  9359. default: true
  9360. },
  9361. ]
  9362. )
  9363. };
  9364. characterMakers["Koragos"] = () => {
  9365. return makeCharacter(
  9366. "Koragos",
  9367. "Koragos",
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(150, "lb"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/koragos/front.svg",
  9375. extra: 841/794 * (1 / (1 - 0.035)),
  9376. bottom: 0.035
  9377. }
  9378. },
  9379. back: {
  9380. height: math.unit(6, "feet"),
  9381. weight: math.unit(150, "lb"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/koragos/back.svg",
  9385. extra: 841/810 * (1 / (1 - 0.022)),
  9386. bottom: 0.022
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(6 + 11/12, "feet")
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(490, "feet")
  9398. },
  9399. {
  9400. name: "Megamacro",
  9401. height: math.unit(10, "miles")
  9402. },
  9403. {
  9404. name: "Gigamacro",
  9405. height: math.unit(50, "miles")
  9406. },
  9407. ]
  9408. )
  9409. };
  9410. characterMakers["Xylrem"] = () => {
  9411. return makeCharacter(
  9412. "Xylrem",
  9413. "",
  9414. {
  9415. front: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(250, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/xylrem/front.svg",
  9421. extra: 3323/3050 * (1 / (1 - 0.065)),
  9422. bottom: 0.065
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(4, "feet")
  9430. },
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(16, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(2720, "feet")
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(25000, "miles")
  9443. },
  9444. ]
  9445. )
  9446. };
  9447. characterMakers["Ikideru"] = () => {
  9448. return makeCharacter(
  9449. "Ikideru",
  9450. "Ikideru",
  9451. {
  9452. front: {
  9453. height: math.unit(8, "feet"),
  9454. weight: math.unit(250, "kg"),
  9455. name: "Front",
  9456. image: {
  9457. source: "./media/characters/ikideru/front.svg",
  9458. extra: 930/870 * (1 / (1 - 0.087)),
  9459. bottom: 0.087
  9460. }
  9461. },
  9462. back: {
  9463. height: math.unit(8, "feet"),
  9464. weight: math.unit(250, "kg"),
  9465. name: "Back",
  9466. image: {
  9467. source: "./media/characters/ikideru/back.svg",
  9468. extra: 919/852 * (1 / (1 - 0.055)),
  9469. bottom: 0.055
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Rare",
  9476. height: math.unit(8, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "Playful Loom",
  9481. height: math.unit(80, "feet")
  9482. },
  9483. {
  9484. name: "City Leaner",
  9485. height: math.unit(230, "feet")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(2500, "feet")
  9490. },
  9491. {
  9492. name: "Gigamacro",
  9493. height: math.unit(26400, "feet")
  9494. },
  9495. {
  9496. name: "Tectonic Shifter",
  9497. height: math.unit(1.7, "megameters")
  9498. },
  9499. {
  9500. name: "Planet Carer",
  9501. height: math.unit(21, "megameters")
  9502. },
  9503. {
  9504. name: "God",
  9505. height: math.unit(11157.22, "parsecs")
  9506. },
  9507. ]
  9508. )
  9509. };
  9510. characterMakers["Neo"] = () => {
  9511. return makeCharacter(
  9512. "Neo",
  9513. "neonsnake",
  9514. {
  9515. front: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(120, "lb"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/neo/front.svg"
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(2, "inches"),
  9528. default: true
  9529. },
  9530. {
  9531. name: "Human Size",
  9532. height: math.unit(5 + 8/12, "feet")
  9533. },
  9534. ]
  9535. )
  9536. };
  9537. characterMakers["Chauncey (Chantz)"] = () => {
  9538. return makeCharacter(
  9539. "Chauncey (Chantz)",
  9540. "RyGaLo",
  9541. {
  9542. front: {
  9543. height: math.unit(13 + 10/12, "feet"),
  9544. weight: math.unit(5320, "lb"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/chauncey-chantz/front.svg",
  9548. extra: 1587/1435 * (1 / (1 - 0.02)),
  9549. bottom: 0.02
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(13 + 10/12, "feet")
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(45, "feet")
  9561. },
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(250, "miles")
  9565. },
  9566. {
  9567. name: "Planetary",
  9568. height: math.unit(10000, "miles")
  9569. },
  9570. {
  9571. name: "Galactic",
  9572. height: math.unit(40000, "parsecs")
  9573. },
  9574. {
  9575. name: "Universal",
  9576. height: math.unit(1, "yottameter")
  9577. },
  9578. ]
  9579. )
  9580. };
  9581. characterMakers["Epifox"] = () => {
  9582. return makeCharacter(
  9583. "Epifox",
  9584. "Epifox",
  9585. {
  9586. front: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(150, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/epifox/front.svg",
  9592. extra: (1 / (1 - 0.075)),
  9593. bottom: 0.075
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Micro",
  9600. height: math.unit(6, "inches")
  9601. },
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(12, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(3810, "feet")
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(500, "miles")
  9614. },
  9615. ]
  9616. )
  9617. };
  9618. characterMakers["Colin T."] = () => {
  9619. return makeCharacter(
  9620. "Colin T.",
  9621. "DragonLugia58",
  9622. {
  9623. front: {
  9624. height: math.unit(1.8796, "m"),
  9625. weight: math.unit(230, "lb"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/colin-t/front.svg",
  9629. extra: 1272/1193 * (1 / (1 - 0.07)),
  9630. bottom: 0.07
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(0.571, "meters")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(1.8796, "meters")
  9642. },
  9643. {
  9644. name: "Tall",
  9645. height: math.unit(4, "meters")
  9646. },
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(67.241, "meters")
  9650. },
  9651. {
  9652. name: "Megamacro",
  9653. height: math.unit(371.856, "meters")
  9654. },
  9655. {
  9656. name: "Planetary",
  9657. height: math.unit(12631.5689, "km")
  9658. },
  9659. ]
  9660. )
  9661. };
  9662. characterMakers["Matvei"] = () => {
  9663. return makeCharacter(
  9664. "Matvei",
  9665. "Matt_Da_Master",
  9666. {
  9667. front: {
  9668. height: math.unit(1.85, "meters"),
  9669. weight: math.unit(80, "kg"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/matvei/front.svg",
  9673. extra: 614/594 * (1 / (1 - 0.01)),
  9674. bottom: 0.01
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(1.85, "meters")
  9682. },
  9683. ]
  9684. )
  9685. };
  9686. characterMakers["Quincy"] = () => {
  9687. return makeCharacter(
  9688. "Quincy",
  9689. "Paradisaea",
  9690. {
  9691. front: {
  9692. height: math.unit(5 + 9/12, "feet"),
  9693. weight: math.unit(70, "lb"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/quincy/front.svg",
  9697. extra: 3041/2751
  9698. }
  9699. },
  9700. back: {
  9701. height: math.unit(5 + 9/12, "feet"),
  9702. weight: math.unit(70, "lb"),
  9703. name: "Back",
  9704. image: {
  9705. source: "./media/characters/quincy/back.svg",
  9706. extra: 3041/2751
  9707. }
  9708. },
  9709. flying: {
  9710. height: math.unit(5 + 4/12, "feet"),
  9711. weight: math.unit(70, "lb"),
  9712. name: "Flying",
  9713. image: {
  9714. source: "./media/characters/quincy/flying.svg",
  9715. extra: 1044/930
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Micro",
  9722. height: math.unit(3, "cm")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(5 + 9/12, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(200, "meters"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(1000, "meters")
  9736. },
  9737. ]
  9738. )
  9739. };
  9740. characterMakers["Vanrel"] = () => {
  9741. return makeCharacter(
  9742. "Vanrel",
  9743. "KuiPaws",
  9744. {
  9745. front: {
  9746. height: math.unit(4 + 7/12, "feet"),
  9747. weight: math.unit(150, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/vanrel/front.svg",
  9751. extra: (1 / (1 - 0.02)),
  9752. bottom: 0.02
  9753. }
  9754. },
  9755. side: {
  9756. height: math.unit(4 + 7/12, "feet"),
  9757. weight: math.unit(150, "lb"),
  9758. name: "Side",
  9759. image: {
  9760. source: "./media/characters/vanrel/side.svg",
  9761. extra: (1 / (1 - 0.025)),
  9762. bottom: 0.025
  9763. }
  9764. },
  9765. beans: {
  9766. height: math.unit(0.89, "feet"),
  9767. name: "Beans",
  9768. image: {
  9769. source: "./media/characters/vanrel/beans.svg"
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(4 + 7/12, "feet"),
  9777. default: true
  9778. },
  9779. ]
  9780. )
  9781. };
  9782. characterMakers["Kuiper Vanrel"] = () => {
  9783. return makeCharacter(
  9784. "Kuiper Vanrel",
  9785. "KuiPaws",
  9786. {
  9787. front: {
  9788. height: math.unit(7 + 5/12, "feet"),
  9789. weight: math.unit(150, "lb"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/kuiper-vanrel/front.svg",
  9793. extra: 1118/1068 * (1 / (1 - 0.09)),
  9794. bottom: 0.09
  9795. }
  9796. },
  9797. foot: {
  9798. height: math.unit(0.55, "meters"),
  9799. name: "Foot",
  9800. image: {
  9801. source: "./media/characters/kuiper-vanrel/foot.svg",
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(7 + 5/12, "feet"),
  9809. default: true
  9810. },
  9811. ]
  9812. )
  9813. };
  9814. characterMakers["Keset Vanrel"] = () => {
  9815. return makeCharacter(
  9816. "Keset Vanrel",
  9817. "KuiPaws",
  9818. {
  9819. front: {
  9820. height: math.unit(8 + 5/12, "feet"),
  9821. weight: math.unit(150, "lb"),
  9822. name: "Front",
  9823. image: {
  9824. source: "./media/characters/keset-vanrel/front.svg",
  9825. extra: 1150/1084 * (1 / (1 - 0.05)),
  9826. bottom: 0.05
  9827. }
  9828. },
  9829. hand: {
  9830. height: math.unit(0.6, "meters"),
  9831. name: "Hand",
  9832. image: {
  9833. source: "./media/characters/keset-vanrel/hand.svg"
  9834. }
  9835. },
  9836. foot: {
  9837. height: math.unit(0.94978, "meters"),
  9838. name: "Foot",
  9839. image: {
  9840. source: "./media/characters/keset-vanrel/foot.svg"
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(8 + 5/12, "feet")
  9848. },
  9849. ]
  9850. )
  9851. };
  9852. characterMakers["Neos"] = () => {
  9853. return makeCharacter(
  9854. "Neos",
  9855. "CakeyCake",
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(150, "lb"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/neos/front.svg",
  9863. extra: 1696/992 * (1 / ( 1 - 0.14)),
  9864. bottom: 0.14
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(54, "cm"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Macro",
  9876. height: math.unit(100, "m")
  9877. },
  9878. {
  9879. name: "Megamacro",
  9880. height: math.unit(10, "km")
  9881. },
  9882. {
  9883. name: "Megamacro+",
  9884. height: math.unit(100, "km")
  9885. },
  9886. {
  9887. name: "Gigamacro",
  9888. height: math.unit(100, "Mm")
  9889. },
  9890. {
  9891. name: "Teramacro",
  9892. height: math.unit(100, "Gm")
  9893. },
  9894. {
  9895. name: "Examacro",
  9896. height: math.unit(100, "Em")
  9897. },
  9898. {
  9899. name: "Godly",
  9900. height: math.unit(10000, "Ym")
  9901. },
  9902. {
  9903. name: "Beyond Godly",
  9904. height: math.unit(10000000, "Ym")
  9905. },
  9906. ]
  9907. )
  9908. };
  9909. characterMakers["Sammy Mouse"] = () => {
  9910. return makeCharacter(
  9911. "Sammy Mouse",
  9912. "Piedunk",
  9913. {
  9914. feminine: {
  9915. height: math.unit(5, "feet"),
  9916. weight: math.unit(100, "lb"),
  9917. name: "Feminine",
  9918. image: {
  9919. source: "./media/characters/sammy-mouse/feminine.svg",
  9920. extra: 2526/2425 * (1 / (1 - 0.123)),
  9921. bottom: 0.123
  9922. }
  9923. },
  9924. masculine: {
  9925. height: math.unit(5, "feet"),
  9926. weight: math.unit(100, "lb"),
  9927. name: "Masculine",
  9928. image: {
  9929. source: "./media/characters/sammy-mouse/masculine.svg",
  9930. extra: 2526/2425 * (1 / (1 - 0.123)),
  9931. bottom: 0.123
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(5, "inches")
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(5, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(60, "feet")
  9948. },
  9949. ]
  9950. )
  9951. };
  9952. characterMakers["Kole"] = () => {
  9953. return makeCharacter(
  9954. "Kole",
  9955. "Cats_55",
  9956. {
  9957. front: {
  9958. height: math.unit(4, "feet"),
  9959. weight: math.unit(50, "lb"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/kole/front.svg",
  9963. extra: 1423/1303 * (1 / (1 - 0.025)),
  9964. bottom: 0.025
  9965. }
  9966. },
  9967. back: {
  9968. height: math.unit(4, "feet"),
  9969. weight: math.unit(50, "lb"),
  9970. name: "Back",
  9971. image: {
  9972. source: "./media/characters/kole/back.svg",
  9973. extra: 1426/1280 * (1 / (1 - 0.02)),
  9974. bottom: 0.02
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(4, "feet")
  9982. },
  9983. ]
  9984. )
  9985. };
  9986. characterMakers["Rufran"] = () => {
  9987. return makeCharacter(
  9988. "Rufran",
  9989. "Rufran",
  9990. {
  9991. front: {
  9992. height: math.unit(2 + 6/12, "feet"),
  9993. weight: math.unit(20, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/rufran/front.svg",
  9997. extra: 2041/1839 * (1 / (1 - 0.055)),
  9998. bottom: 0.055
  9999. }
  10000. },
  10001. back: {
  10002. height: math.unit(2 + 6/12, "feet"),
  10003. weight: math.unit(20, "lb"),
  10004. name: "Back",
  10005. image: {
  10006. source: "./media/characters/rufran/back.svg",
  10007. extra: 2054/1839 * (1 / (1 - 0.01)),
  10008. bottom: 0.01
  10009. }
  10010. },
  10011. hand: {
  10012. height: math.unit(0.2166, "meters"),
  10013. name: "Hand",
  10014. image: {
  10015. source: "./media/characters/rufran/hand.svg"
  10016. }
  10017. },
  10018. foot: {
  10019. height: math.unit(0.185, "meters"),
  10020. name: "Foot",
  10021. image: {
  10022. source: "./media/characters/rufran/foot.svg"
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Micro",
  10029. height: math.unit(1, "inch")
  10030. },
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(2 + 6/12, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Big",
  10038. height: math.unit(60, "feet")
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(325, "feet")
  10043. },
  10044. ]
  10045. )
  10046. };
  10047. characterMakers["Chip"] = () => {
  10048. return makeCharacter(
  10049. "Chip",
  10050. "Chiptuni",
  10051. {
  10052. front: {
  10053. height: math.unit(0.3, "meters"),
  10054. weight: math.unit(3.5, "kg"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/chip/front.svg",
  10058. extra: 748/674
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Micro",
  10065. height: math.unit(1, "inch"),
  10066. default: true
  10067. },
  10068. ]
  10069. )
  10070. };
  10071. characterMakers["Torvid"] = () => {
  10072. return makeCharacter(
  10073. "Torvid",
  10074. "Torvid",
  10075. {
  10076. side: {
  10077. height: math.unit(2.3, "meters"),
  10078. weight: math.unit(3500, "lb"),
  10079. name: "Side",
  10080. image: {
  10081. source: "./media/characters/torvid/side.svg",
  10082. extra: 1972/722 * (1 / (1 - 0.035)),
  10083. bottom: 0.035
  10084. }
  10085. },
  10086. },
  10087. [
  10088. {
  10089. name: "Normal",
  10090. height: math.unit(2.3, "meters"),
  10091. default: true
  10092. },
  10093. ]
  10094. )
  10095. };
  10096. characterMakers["Susan"] = () => {
  10097. return makeCharacter(
  10098. "Susan",
  10099. "Jasmith",
  10100. {
  10101. front: {
  10102. height: math.unit(2, "meters"),
  10103. weight: math.unit(150.5, "kg"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/susan/front.svg",
  10107. extra: 693/635 * (1 / (1 - 0.05)),
  10108. bottom: 0.05
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(505, "miles"),
  10116. default: true
  10117. },
  10118. ]
  10119. )
  10120. };
  10121. characterMakers["Raindrops"] = () => {
  10122. return makeCharacter(
  10123. "Raindrops",
  10124. "RaindropsJFL",
  10125. {
  10126. front: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(150, "lb"),
  10129. name: "Front",
  10130. image: {
  10131. source: "./media/characters/raindrops/front.svg",
  10132. extra: 2655/2461 * (1 / (1 - 0.02)),
  10133. bottom: 0.02
  10134. }
  10135. },
  10136. back: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(150, "lb"),
  10139. name: "Back",
  10140. image: {
  10141. source: "./media/characters/raindrops/back.svg",
  10142. extra: 2574/2400 * (1 / (1 - 0.03)),
  10143. bottom: 0.03
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(6, "inches")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(6 + 2/12, "feet")
  10155. },
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(131, "feet"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(15, "miles")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(4000, "miles")
  10168. },
  10169. {
  10170. name: "Teramacro",
  10171. height: math.unit(315000, "miles")
  10172. },
  10173. ]
  10174. )
  10175. };
  10176. characterMakers["Tezwa"] = () => {
  10177. return makeCharacter(
  10178. "Tezwa",
  10179. "TitanTezwa",
  10180. {
  10181. front: {
  10182. height: math.unit(2.794, "meters"),
  10183. weight: math.unit(325, "kg"),
  10184. name: "Front",
  10185. image: {
  10186. source: "./media/characters/tezwa/front.svg",
  10187. extra: 2083/1906 * (1 / (1 - 0.031)),
  10188. bottom: 0.031
  10189. }
  10190. },
  10191. foot: {
  10192. height: math.unit(0.687, "meters"),
  10193. name: "Foot",
  10194. image: {
  10195. source: "./media/characters/tezwa/foot.svg"
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(9 + 2/12, "feet"),
  10203. default: true
  10204. },
  10205. ]
  10206. )
  10207. };
  10208. characterMakers["Typhus"] = () => {
  10209. return makeCharacter(
  10210. "Typhus",
  10211. "Jasmith",
  10212. {
  10213. front: {
  10214. height: math.unit(58, "feet"),
  10215. weight: math.unit(89000, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/typhus/front.svg",
  10219. extra: 816/800 * (1 / (1 - 0.065)),
  10220. bottom: 0.065
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(58, "feet")
  10228. },
  10229. ]
  10230. )
  10231. };
  10232. characterMakers["Lyra Von Wulf"] = () => {
  10233. return makeCharacter(
  10234. "Lyra Von Wulf",
  10235. "LyraVonWulf",
  10236. {
  10237. front: {
  10238. height: math.unit(12, "feet"),
  10239. weight: math.unit(6, "tonnes"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/lyra-von-wulf/front.svg",
  10243. extra: (1 / (1 - 0.10)),
  10244. bottom: 0.10
  10245. }
  10246. },
  10247. frontMecha: {
  10248. height: math.unit(12, "feet"),
  10249. weight: math.unit(12, "tonnes"),
  10250. name: "Front (Mecha)",
  10251. image: {
  10252. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10253. extra: (1 / (1 - 0.042)),
  10254. bottom: 0.042
  10255. }
  10256. },
  10257. maw: {
  10258. height: math.unit(2.2, "feet"),
  10259. name: "Maw",
  10260. image: {
  10261. source: "./media/characters/lyra-von-wulf/maw.svg"
  10262. }
  10263. },
  10264. },
  10265. [
  10266. {
  10267. name: "Normal",
  10268. height: math.unit(12, "feet"),
  10269. default: true
  10270. },
  10271. {
  10272. name: "Classic",
  10273. height: math.unit(50, "feet")
  10274. },
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(500, "feet")
  10278. },
  10279. {
  10280. name: "Megamacro",
  10281. height: math.unit(1, "mile")
  10282. },
  10283. {
  10284. name: "Gigamacro",
  10285. height: math.unit(400, "miles")
  10286. },
  10287. {
  10288. name: "Teramacro",
  10289. height: math.unit(22000, "miles")
  10290. },
  10291. {
  10292. name: "Solarmacro",
  10293. height: math.unit(8600000, "miles")
  10294. },
  10295. {
  10296. name: "Galactic",
  10297. height: math.unit(1057000, "lightyears")
  10298. },
  10299. ]
  10300. )
  10301. };
  10302. characterMakers["Dixon"] = () => {
  10303. return makeCharacter(
  10304. "Dixon",
  10305. "Seabury",
  10306. {
  10307. front: {
  10308. height: math.unit(6 + 10/12, "feet"),
  10309. weight: math.unit(150, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/dixon/front.svg",
  10313. extra: 3361/3209 * (1 / (1 - 0.01)),
  10314. bottom: 0.01
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(6 + 10/12, "feet"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Big",
  10326. height: math.unit(12, "meters")
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(500, "meters")
  10331. },
  10332. {
  10333. name: "Megamacro",
  10334. height: math.unit(2, "km")
  10335. },
  10336. ]
  10337. )
  10338. };
  10339. characterMakers["Kauko"] = () => {
  10340. return makeCharacter(
  10341. "Kauko",
  10342. "Kauko",
  10343. {
  10344. front: {
  10345. height: math.unit(185, "cm"),
  10346. weight: math.unit(68, "kg"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/kauko/front.svg",
  10350. extra: 1455/1421 * (1 / (1 - 0.03)),
  10351. bottom: 0.03
  10352. }
  10353. },
  10354. back: {
  10355. height: math.unit(185, "cm"),
  10356. weight: math.unit(68, "kg"),
  10357. name: "Back",
  10358. image: {
  10359. source: "./media/characters/kauko/back.svg",
  10360. extra: 1455/1421 * (1 / (1 - 0.004)),
  10361. bottom: 0.004
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(185, "cm"),
  10369. default: true
  10370. },
  10371. ]
  10372. )
  10373. };
  10374. characterMakers["Varg"] = () => {
  10375. return makeCharacter(
  10376. "Varg",
  10377. "va0027",
  10378. {
  10379. front: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(150, "kg"),
  10382. name: "Front",
  10383. image: {
  10384. source: "./media/characters/varg/front.svg",
  10385. extra: 1108/1018 * (1 / (1 - 0.0375)),
  10386. bottom: 0.0375
  10387. }
  10388. },
  10389. },
  10390. [
  10391. {
  10392. name: "Normal",
  10393. height: math.unit(5, "meters")
  10394. },
  10395. {
  10396. name: "Gigamacro",
  10397. height: math.unit(211, "km"),
  10398. default: true
  10399. },
  10400. ]
  10401. )
  10402. };
  10403. characterMakers["Dayza"] = () => {
  10404. return makeCharacter(
  10405. "Dayza",
  10406. "Vonadi",
  10407. {
  10408. front: {
  10409. height: math.unit(7 + 7/12, "feet"),
  10410. weight: math.unit(267, "lb"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/dayza/front.svg",
  10414. extra: 1262/1200 * (1 / (1 - 0.035)),
  10415. bottom: 0.035
  10416. }
  10417. },
  10418. side: {
  10419. height: math.unit(7 + 7/12, "feet"),
  10420. weight: math.unit(267, "lb"),
  10421. name: "Side",
  10422. image: {
  10423. source: "./media/characters/dayza/side.svg",
  10424. extra: 1295/1245 * (1 / (1 - 0.05)),
  10425. bottom: 0.05
  10426. }
  10427. },
  10428. back: {
  10429. height: math.unit(7 + 7/12, "feet"),
  10430. weight: math.unit(267, "lb"),
  10431. name: "Back",
  10432. image: {
  10433. source: "./media/characters/dayza/back.svg",
  10434. extra: 1241/1170
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(7 + 7/12, "feet"),
  10442. default: true
  10443. },
  10444. {
  10445. name: "Macro",
  10446. height: math.unit(155, "feet")
  10447. },
  10448. ]
  10449. )
  10450. };
  10451. characterMakers["Xanthos"] = () => {
  10452. return makeCharacter(
  10453. "Xanthos",
  10454. "ArgentVZ",
  10455. {
  10456. front: {
  10457. height: math.unit(6 + 5/12, "feet"),
  10458. weight: math.unit(160, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/xanthos/front.svg",
  10462. extra: (1 / (1 - 0.04)),
  10463. bottom: 0.04
  10464. }
  10465. },
  10466. back: {
  10467. height: math.unit(6 + 5/12, "feet"),
  10468. weight: math.unit(160, "lb"),
  10469. name: "Back",
  10470. image: {
  10471. source: "./media/characters/xanthos/back.svg",
  10472. extra: (1 / (1 - 0.03)),
  10473. bottom: 0.03
  10474. }
  10475. },
  10476. hand: {
  10477. height: math.unit(0.928, "feet"),
  10478. name: "Hand",
  10479. image: {
  10480. source: "./media/characters/xanthos/hand.svg"
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(1.286, "feet"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/xanthos/foot.svg"
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(6 + 5/12, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Normal+",
  10499. height: math.unit(6, "meters")
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(40, "feet")
  10504. },
  10505. {
  10506. name: "Macro+",
  10507. height: math.unit(200, "meters")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(20, "km")
  10512. },
  10513. {
  10514. name: "Megamacro+",
  10515. height: math.unit(100, "km")
  10516. },
  10517. ]
  10518. )
  10519. };
  10520. characterMakers["Grynn"] = () => {
  10521. return makeCharacter(
  10522. "Grynn",
  10523. "Grynn",
  10524. {
  10525. front: {
  10526. height: math.unit(6 + 3/12, "feet"),
  10527. weight: math.unit(215, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/grynn/front.svg",
  10531. extra: 4627/4209 * (1 / (1 - 0.047)),
  10532. bottom: 0.047
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Micro",
  10539. height: math.unit(6, "inches")
  10540. },
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(6 + 3/12, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Big",
  10548. height: math.unit(104, "feet")
  10549. },
  10550. {
  10551. name: "Macro",
  10552. height: math.unit(944, "feet")
  10553. },
  10554. {
  10555. name: "Macro+",
  10556. height: math.unit(9480, "feet")
  10557. },
  10558. {
  10559. name: "Megamacro",
  10560. height: math.unit(78752, "feet")
  10561. },
  10562. {
  10563. name: "Megamacro+",
  10564. height: math.unit(630128, "feet")
  10565. },
  10566. {
  10567. name: "Megamacro++",
  10568. height: math.unit(3150695, "feet")
  10569. },
  10570. ]
  10571. )
  10572. };
  10573. characterMakers["Mocha Aura"] = () => {
  10574. return makeCharacter(
  10575. "Mocha Aura",
  10576. "Mocha-Aura",
  10577. {
  10578. front: {
  10579. height: math.unit(7 + 5/12, "feet"),
  10580. weight: math.unit(450, "lb"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/mocha-aura/front.svg",
  10584. extra: 1907/1817 * (1 / (1 - 0.04)),
  10585. bottom: 0.04
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(7 + 5/12, "feet"),
  10590. weight: math.unit(450, "lb"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/mocha-aura/back.svg",
  10594. extra: 1900/1825 * (1 / (1 - 0.045)),
  10595. bottom: 0.045
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Nano",
  10602. height: math.unit(1, "nm")
  10603. },
  10604. {
  10605. name: "Megamicro",
  10606. height: math.unit(1, "mm")
  10607. },
  10608. {
  10609. name: "Micro",
  10610. height: math.unit(3, "inches")
  10611. },
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(7 + 5/12, "feet"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Macro",
  10619. height: math.unit(30, "feet")
  10620. },
  10621. {
  10622. name: "Megamacro",
  10623. height: math.unit(3500, "feet")
  10624. },
  10625. {
  10626. name: "Teramacro",
  10627. height: math.unit(500000, "miles")
  10628. },
  10629. {
  10630. name: "Petamacro",
  10631. height: math.unit(50000000000000000 , "parsecs")
  10632. },
  10633. ]
  10634. )
  10635. };
  10636. characterMakers["Ilisha Devya"] = () => {
  10637. return makeCharacter(
  10638. "Ilisha Devya",
  10639. "Neopuc",
  10640. {
  10641. front: {
  10642. height: math.unit(6, "feet"),
  10643. weight: math.unit(150, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/ilisha-devya/front.svg",
  10647. extra: (1 / (1 - 0.175)),
  10648. bottom: 0.175
  10649. }
  10650. },
  10651. back: {
  10652. height: math.unit(6, "feet"),
  10653. weight: math.unit(150, "lb"),
  10654. name: "Back",
  10655. image: {
  10656. source: "./media/characters/ilisha-devya/back.svg",
  10657. extra: (1 / (1 - 0.015)),
  10658. bottom: 0.015
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(500, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(10, "miles")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(100000, "miles")
  10675. },
  10676. {
  10677. name: "Examacro",
  10678. height: math.unit(1e9, "lightyears")
  10679. },
  10680. {
  10681. name: "Omniversal",
  10682. height: math.unit(1e33, "lightyears")
  10683. },
  10684. {
  10685. name: "Beyond Infinite",
  10686. height: math.unit(1e100, "lightyears")
  10687. },
  10688. ]
  10689. )
  10690. };
  10691. characterMakers["Mira"] = () => {
  10692. return makeCharacter(
  10693. "Mira",
  10694. "Neopuc",
  10695. {
  10696. Side: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/mira/side.svg",
  10702. extra: 900/799 * (1 / (1 - 0.02)),
  10703. bottom: 0.02
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Human Size",
  10710. height: math.unit(6, "feet")
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(100, "feet"),
  10715. default: true
  10716. },
  10717. {
  10718. name: "Megamacro",
  10719. height: math.unit(10, "miles")
  10720. },
  10721. {
  10722. name: "Gigamacro",
  10723. height: math.unit(25000, "miles")
  10724. },
  10725. {
  10726. name: "Teramacro",
  10727. height: math.unit(300, "AU")
  10728. },
  10729. {
  10730. name: "Full Size",
  10731. height: math.unit(4.5e10, "lightyears")
  10732. },
  10733. ]
  10734. )
  10735. };
  10736. characterMakers["Holly"] = () => {
  10737. return makeCharacter(
  10738. "Holly",
  10739. "Neopuc",
  10740. {
  10741. front: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/holly/front.svg",
  10747. extra: 639/606
  10748. }
  10749. },
  10750. back: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(150, "lb"),
  10753. name: "Back",
  10754. image: {
  10755. source: "./media/characters/holly/back.svg",
  10756. extra: 623/598
  10757. }
  10758. },
  10759. frontWorking: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(150, "lb"),
  10762. name: "Front (Working)",
  10763. image: {
  10764. source: "./media/characters/holly/front-working.svg",
  10765. extra: 607/577 * (1 / (1 - 0.048)),
  10766. bottom: 0.048
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(12 + 3/12, "feet")
  10774. },
  10775. ]
  10776. )
  10777. };
  10778. characterMakers["Porter"] = () => {
  10779. return makeCharacter(
  10780. "Porter",
  10781. "Neopuc",
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(150, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/porter/front.svg",
  10789. extra: 1 / (1 - 0.01),
  10790. bottom: 0.01
  10791. }
  10792. },
  10793. frontRobes: {
  10794. height: math.unit(6, "feet"),
  10795. weight: math.unit(150, "lb"),
  10796. name: "Front (Robes)",
  10797. image: {
  10798. source: "./media/characters/porter/front-robes.svg",
  10799. extra: 1.01 * (1 / (1 - 0.01)),
  10800. bottom: 0.01
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Normal",
  10807. height: math.unit(11 + 9/12, "feet")
  10808. },
  10809. ]
  10810. )
  10811. };
  10812. characterMakers["Lucy"] = () => {
  10813. return makeCharacter(
  10814. "Lucy",
  10815. "Jasmith",
  10816. {
  10817. legendary: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(150, "lb"),
  10820. name: "Legendary",
  10821. image: {
  10822. source: "./media/characters/lucy/legendary.svg",
  10823. extra: 1355/1100 * (1 / (1 - 0.045)),
  10824. bottom: 0.045
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Legendary",
  10831. height: math.unit(86882*2, "miles")
  10832. },
  10833. ]
  10834. )
  10835. };
  10836. characterMakers["Drusilla"] = () => {
  10837. return makeCharacter(
  10838. "Drusilla",
  10839. "Neopuc",
  10840. {
  10841. front: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(150, "lb"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/drusilla/front.svg",
  10847. extra: 678/635 * (1 / (1 - 0.03)),
  10848. bottom: 0.03
  10849. }
  10850. },
  10851. back: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(150, "lb"),
  10854. name: "Back",
  10855. image: {
  10856. source: "./media/characters/drusilla/back.svg",
  10857. extra: 678/635 * (1 / (1 - 0.005)),
  10858. bottom: 0.005
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Macro",
  10865. height: math.unit(100, "feet")
  10866. },
  10867. {
  10868. name: "Canon Height",
  10869. height: math.unit(2000, "feet"),
  10870. default: true
  10871. },
  10872. ]
  10873. )
  10874. };
  10875. characterMakers["Renard Thatch"] = () => {
  10876. return makeCharacter(
  10877. "Renard Thatch",
  10878. "Renard Thatch",
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(180, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/renard-thatch/front.svg",
  10886. extra: 2411/2275 * (1 / (1 - 0.01)),
  10887. bottom: 0.01
  10888. }
  10889. },
  10890. frontPosing: {
  10891. height: math.unit(6, "feet"),
  10892. weight: math.unit(180, "lb"),
  10893. name: "Front (Posing)",
  10894. image: {
  10895. source: "./media/characters/renard-thatch/front-posing.svg",
  10896. extra: 2381/2261 * (1 / (1 - 0.01)),
  10897. bottom: 0.01
  10898. }
  10899. },
  10900. back: {
  10901. height: math.unit(6, "feet"),
  10902. weight: math.unit(180, "lb"),
  10903. name: "Back",
  10904. image: {
  10905. source: "./media/characters/renard-thatch/back.svg",
  10906. extra: 2428/2288
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(3, "inches")
  10914. },
  10915. {
  10916. name: "Default",
  10917. height: math.unit(6, "feet"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(75, "feet")
  10923. },
  10924. ]
  10925. )
  10926. };
  10927. characterMakers["Sekvra"] = () => {
  10928. return makeCharacter(
  10929. "Sekvra",
  10930. "Neopuc",
  10931. {
  10932. front: {
  10933. height: math.unit(1450, "feet"),
  10934. weight: math.unit(1.21e6, "tons"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/sekvra/front.svg",
  10938. extra: (1 / (1 - 0.03)),
  10939. bottom: 0.03
  10940. }
  10941. },
  10942. frontClothed: {
  10943. height: math.unit(1450, "feet"),
  10944. weight: math.unit(1.21e6, "tons"),
  10945. name: "Front (Clothed)",
  10946. image: {
  10947. source: "./media/characters/sekvra/front-clothed.svg",
  10948. extra: (1 / (1 - 0.03)),
  10949. bottom: 0.03
  10950. }
  10951. },
  10952. side: {
  10953. height: math.unit(1450, "feet"),
  10954. weight: math.unit(1.21e6, "tons"),
  10955. name: "Side",
  10956. image: {
  10957. source: "./media/characters/sekvra/side.svg",
  10958. extra: (1 / (1 - 0.025)),
  10959. bottom: 0.025
  10960. }
  10961. },
  10962. back: {
  10963. height: math.unit(1450, "feet"),
  10964. weight: math.unit(1.21e6, "tons"),
  10965. name: "Back",
  10966. image: {
  10967. source: "./media/characters/sekvra/back.svg",
  10968. extra: (1 / (1 - 0.005)),
  10969. bottom: 0.005
  10970. }
  10971. },
  10972. },
  10973. [
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(1450, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Megamacro",
  10981. height: math.unit(15000, "feet")
  10982. },
  10983. ]
  10984. )
  10985. };
  10986. characterMakers["Carmine"] = () => {
  10987. return makeCharacter(
  10988. "Carmine",
  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/carmine/front.svg",
  10997. extra: 1 / (1 - 0.035),
  10998. bottom: 0.035
  10999. }
  11000. },
  11001. frontArmor: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(150, "lb"),
  11004. name: "Front (Armor)",
  11005. image: {
  11006. source: "./media/characters/carmine/front-armor.svg",
  11007. extra: 1 / (1 - 0.035),
  11008. bottom: 0.035
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Large",
  11015. height: math.unit(1, "mile")
  11016. },
  11017. {
  11018. name: "Huge",
  11019. height: math.unit(40, "miles"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Colossal",
  11024. height: math.unit(2500, "miles")
  11025. },
  11026. ]
  11027. )
  11028. };
  11029. characterMakers["Elyssia"] = () => {
  11030. return makeCharacter(
  11031. "Elyssia",
  11032. "Neopuc",
  11033. {
  11034. front: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(150, "lb"),
  11037. name: "Front",
  11038. image: {
  11039. source: "./media/characters/elyssia/front.svg",
  11040. extra: 2201/2035 * (1 / (1 - 0.05)),
  11041. bottom: 0.05
  11042. }
  11043. },
  11044. frontClothed: {
  11045. height: math.unit(6, "feet"),
  11046. weight: math.unit(150, "lb"),
  11047. name: "Front (Clothed)",
  11048. image: {
  11049. source: "./media/characters/elyssia/front-clothed.svg",
  11050. extra: 2201/2035 * (1 / (1 - 0.05)),
  11051. bottom: 0.05
  11052. }
  11053. },
  11054. back: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(150, "lb"),
  11057. name: "Back",
  11058. image: {
  11059. source: "./media/characters/elyssia/back.svg",
  11060. extra: 2201/2035 * (1 / (1 - 0.013)),
  11061. bottom: 0.013
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Smaller",
  11068. height: math.unit(150, "feet")
  11069. },
  11070. {
  11071. name: "Standard",
  11072. height: math.unit(1400, "feet"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Distracted",
  11077. height: math.unit(15000, "feet")
  11078. },
  11079. ]
  11080. )
  11081. };
  11082. characterMakers["Geno Maxwell"] = () => {
  11083. return makeCharacter(
  11084. "Geno Maxwell",
  11085. "Geckonori",
  11086. {
  11087. front: {
  11088. height: math.unit(7 + 4/12, "feet"),
  11089. weight: math.unit(500, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/geno-maxwell/front.svg",
  11093. extra: 2207/2040 * (1 / (1 - 0.015)),
  11094. bottom: 0.015
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(3, "inches")
  11102. },
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(7 + 4/12, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(220, "feet")
  11111. },
  11112. {
  11113. name: "Megamacro",
  11114. height: math.unit(11, "miles")
  11115. },
  11116. ]
  11117. )
  11118. };
  11119. characterMakers["Regena Maxwell"] = () => {
  11120. return makeCharacter(
  11121. "Regena Maxwell",
  11122. "Geckonori",
  11123. {
  11124. front: {
  11125. height: math.unit(7 + 4/12, "feet"),
  11126. weight: math.unit(500, "lb"),
  11127. name: "Front",
  11128. image: {
  11129. source: "./media/characters/regena-maxwell/front.svg",
  11130. extra: 3115/2770 * (1 / (1 - 0.02)),
  11131. bottom: 0.02
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(7 + 4/12, "feet"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Macro",
  11143. height: math.unit(220, "feet")
  11144. },
  11145. {
  11146. name: "Megamacro",
  11147. height: math.unit(11, "miles")
  11148. },
  11149. ]
  11150. )
  11151. };
  11152. characterMakers["XGlidingDragonX"] = () => {
  11153. return makeCharacter(
  11154. "XGlidingDragonX",
  11155. "XGlidingDragonX",
  11156. {
  11157. front: {
  11158. height: math.unit(6, "feet"),
  11159. weight: math.unit(150, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11163. extra: 860/690 * (1 / (1 - 0.03)),
  11164. bottom: 0.03
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(1.7, "meters"),
  11172. default: true
  11173. },
  11174. ]
  11175. )
  11176. };
  11177. characterMakers["Quilly"] = () => {
  11178. return makeCharacter(
  11179. "Quilly",
  11180. "Jasmith",
  11181. {
  11182. front: {
  11183. height: math.unit(6, "feet"),
  11184. weight: math.unit(150, "lb"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/quilly/front.svg",
  11188. extra: 890/776
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Gigamacro",
  11195. height: math.unit(404090, "miles")
  11196. },
  11197. ]
  11198. )
  11199. };
  11200. characterMakers["Tempest"] = () => {
  11201. return makeCharacter(
  11202. "Tempest",
  11203. "XsomeoneX",
  11204. {
  11205. front: {
  11206. height: math.unit(7 + 8/12, "feet"),
  11207. weight: math.unit(350, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/tempest/front.svg",
  11211. extra: 1175/1086 * (1 / (1 - 0.02)),
  11212. bottom: 0.02
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(7 + 8/12, "feet")
  11220. },
  11221. ]
  11222. )
  11223. };
  11224. characterMakers["Rodger"] = () => {
  11225. return makeCharacter(
  11226. "Rodger",
  11227. "Guywithastupidname",
  11228. {
  11229. side: {
  11230. height: math.unit(4 + 5/12, "feet"),
  11231. weight: math.unit(80, "lb"),
  11232. name: "Side",
  11233. image: {
  11234. source: "./media/characters/rodger/side.svg",
  11235. extra: 1235/1118
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Micro",
  11242. height: math.unit(1, "inch")
  11243. },
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(4 + 5/12, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(120, "feet")
  11252. },
  11253. ]
  11254. )
  11255. };
  11256. characterMakers["Danyel"] = () => {
  11257. return makeCharacter(
  11258. "Danyel",
  11259. "Danyelx",
  11260. {
  11261. front: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/danyel/front.svg",
  11267. extra: 1185/1123 * (1 / (1 - 0.05)),
  11268. bottom: 0.05
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Shrunken",
  11275. height: math.unit(0.5, "mm")
  11276. },
  11277. {
  11278. name: "Micro",
  11279. height: math.unit(1, "mm"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Upsized",
  11284. height: math.unit(5 + 5/12, "feet")
  11285. },
  11286. ]
  11287. )
  11288. };
  11289. characterMakers["Vivian Bijoux"] = () => {
  11290. return makeCharacter(
  11291. "Vivian Bijoux",
  11292. "Geckonori",
  11293. {
  11294. front: {
  11295. height: math.unit(5 + 6/12, "feet"),
  11296. weight: math.unit(200, "lb"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/vivian-bijoux/front.svg",
  11300. extra: (1 / (1 - 0.072)),
  11301. bottom: 0.072
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(5 + 6/12, "feet"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Bad Dream",
  11313. height: math.unit(500, "feet")
  11314. },
  11315. {
  11316. name: "Nightmare",
  11317. height: math.unit(500, "miles")
  11318. },
  11319. ]
  11320. )
  11321. };
  11322. characterMakers["Zeta"] = () => {
  11323. return makeCharacter(
  11324. "Zeta",
  11325. "thenerdherd102",
  11326. {
  11327. front: {
  11328. height: math.unit(6 + 1/12, "feet"),
  11329. weight: math.unit(260, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/zeta/front.svg",
  11333. extra: 1968/1889 * (1 / (1 - 0.06)),
  11334. bottom: 0.06
  11335. }
  11336. },
  11337. back: {
  11338. height: math.unit(6 + 1/12, "feet"),
  11339. weight: math.unit(260, "lb"),
  11340. name: "Back",
  11341. image: {
  11342. source: "./media/characters/zeta/back.svg",
  11343. extra: 1944/1858 * (1 / (1 - 0.03)),
  11344. bottom: 0.03
  11345. }
  11346. },
  11347. hand: {
  11348. height: math.unit(1.112, "feet"),
  11349. name: "Hand",
  11350. image: {
  11351. source: "./media/characters/zeta/hand.svg"
  11352. }
  11353. },
  11354. foot: {
  11355. height: math.unit(1.48, "feet"),
  11356. name: "Foot",
  11357. image: {
  11358. source: "./media/characters/zeta/foot.svg"
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(6, "inches")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(6 + 1/12, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(20, "feet")
  11375. },
  11376. ]
  11377. )
  11378. };
  11379. characterMakers["Jamie Larsen"] = () => {
  11380. return makeCharacter(
  11381. "Jamie Larsen",
  11382. "Mt_Jamie_Larsen",
  11383. {
  11384. front: {
  11385. height: math.unit(6, "feet"),
  11386. weight: math.unit(150, "lb"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/jamie-larsen/front.svg",
  11390. extra: 962/933 * (1 / (1 - 0.02)),
  11391. bottom: 0.02
  11392. }
  11393. },
  11394. back: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Back",
  11398. image: {
  11399. source: "./media/characters/jamie-larsen/back.svg",
  11400. extra: 997/946
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(28 + 7/12, "feet"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Macro+",
  11412. height: math.unit(180, "feet")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(10, "miles")
  11417. },
  11418. {
  11419. name: "Gigamacro",
  11420. height: math.unit(200000, "miles")
  11421. },
  11422. ]
  11423. )
  11424. };
  11425. characterMakers["Vance"] = () => {
  11426. return makeCharacter(
  11427. "Vance",
  11428. "Neopuc",
  11429. {
  11430. front: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(120, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/vance/front.svg",
  11436. extra: 1980/1890 * (1 / (1 - 0.09)),
  11437. bottom: 0.09
  11438. }
  11439. },
  11440. back: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(120, "lb"),
  11443. name: "Back",
  11444. image: {
  11445. source: "./media/characters/vance/back.svg",
  11446. extra: 2081/1994 * (1 / (1 - 0.014)),
  11447. bottom: 0.014
  11448. }
  11449. },
  11450. hand: {
  11451. height: math.unit(0.88, "feet"),
  11452. name: "Hand",
  11453. image: {
  11454. source: "./media/characters/vance/hand.svg"
  11455. }
  11456. },
  11457. foot: {
  11458. height: math.unit(0.64, "feet"),
  11459. name: "Foot",
  11460. image: {
  11461. source: "./media/characters/vance/foot.svg"
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Small",
  11468. height: math.unit(90, "feet")
  11469. },
  11470. {
  11471. name: "Macro",
  11472. height: math.unit(100, "meters")
  11473. },
  11474. {
  11475. name: "Megamacro",
  11476. height: math.unit(15, "miles")
  11477. },
  11478. ]
  11479. )
  11480. };
  11481. characterMakers["Xochitl"] = () => {
  11482. return makeCharacter(
  11483. "Xochitl",
  11484. "Neopuc",
  11485. {
  11486. front: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(180, "lb"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/xochitl/front.svg",
  11492. extra: 2297/2261 * (1 / (1 - 0.065)),
  11493. bottom: 0.065
  11494. }
  11495. },
  11496. back: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(180, "lb"),
  11499. name: "Back",
  11500. image: {
  11501. source: "./media/characters/xochitl/back.svg",
  11502. extra: 2386/2354 * (1 / (1 - 0.01)),
  11503. bottom: 0.01
  11504. }
  11505. },
  11506. foot: {
  11507. height: math.unit(6/5 * 1.15, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Foot",
  11510. image: {
  11511. source: "./media/characters/xochitl/foot.svg"
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(80, "feet")
  11519. },
  11520. {
  11521. name: "Macro+",
  11522. height: math.unit(400, "feet"),
  11523. default: true
  11524. },
  11525. {
  11526. name: "Gigamacro",
  11527. height: math.unit(80000, "miles")
  11528. },
  11529. {
  11530. name: "Gigamacro+",
  11531. height: math.unit(400000, "miles")
  11532. },
  11533. {
  11534. name: "Teramacro",
  11535. height: math.unit(300, "AU")
  11536. },
  11537. ]
  11538. )
  11539. };
  11540. characterMakers["Vincent"] = () => {
  11541. return makeCharacter(
  11542. "Vincent",
  11543. "Neopuc",
  11544. {
  11545. front: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(150, "lb"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/vincent/front.svg",
  11551. extra: 1130/1080 * (1 / (1 - 0.055)),
  11552. bottom: 0.055
  11553. }
  11554. },
  11555. beak: {
  11556. height: math.unit(6 * 0.1, "feet"),
  11557. name: "Beak",
  11558. image: {
  11559. source: "./media/characters/vincent/beak.svg"
  11560. }
  11561. },
  11562. hand: {
  11563. height: math.unit(6 * 0.85, "feet"),
  11564. weight: math.unit(150, "lb"),
  11565. name: "Hand",
  11566. image: {
  11567. source: "./media/characters/vincent/hand.svg"
  11568. }
  11569. },
  11570. foot: {
  11571. height: math.unit(6 * 0.19, "feet"),
  11572. weight: math.unit(150, "lb"),
  11573. name: "Foot",
  11574. image: {
  11575. source: "./media/characters/vincent/foot.svg"
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Base",
  11582. height: math.unit(6 + 5/12, "feet")
  11583. },
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(300, "feet")
  11587. },
  11588. {
  11589. name: "Megamacro",
  11590. height: math.unit(2, "miles")
  11591. },
  11592. {
  11593. name: "Gigamacro",
  11594. height: math.unit(1000, "miles")
  11595. },
  11596. ]
  11597. )
  11598. };
  11599. characterMakers["Jay"] = () => {
  11600. return makeCharacter(
  11601. "Jay",
  11602. "Neopuc",
  11603. {
  11604. front: {
  11605. height: math.unit(6 + 2/12, "feet"),
  11606. weight: math.unit(65, "lb"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/jay/front.svg",
  11610. extra: 1510/1430 * (1 / (1 - 0.042)),
  11611. bottom: 0.042
  11612. }
  11613. },
  11614. back: {
  11615. height: math.unit(6 + 2/12, "feet"),
  11616. weight: math.unit(65, "lb"),
  11617. name: "Back",
  11618. image: {
  11619. source: "./media/characters/jay/back.svg",
  11620. extra: 1510/1430 * (1 / (1 - 0.025)),
  11621. bottom: 0.025
  11622. }
  11623. },
  11624. clothed: {
  11625. height: math.unit(6 + 2/12, "feet"),
  11626. weight: math.unit(65, "lb"),
  11627. name: "Front (Clothed)",
  11628. image: {
  11629. source: "./media/characters/jay/clothed.svg",
  11630. extra: 744/699 * (1 / (1 - 0.043)),
  11631. bottom: 0.043
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(1, "inch")
  11639. },
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(6 + 2/12, "feet")
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(1, "mile")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(100, "miles")
  11651. },
  11652. ]
  11653. )
  11654. };
  11655. characterMakers["Coatl"] = () => {
  11656. return makeCharacter(
  11657. "Coatl",
  11658. "Jagaz",
  11659. {
  11660. front: {
  11661. height: math.unit(2, "meters"),
  11662. weight: math.unit(500 , "kg"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/coatl/front.svg",
  11666. extra: 3948 / 3500 * (1 / (1 - 0.082)),
  11667. bottom: 0.082
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(4, "meters")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(100, "meters"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Macro+",
  11683. height: math.unit(300, "meters")
  11684. },
  11685. {
  11686. name: "Megamacro",
  11687. height: math.unit(3, "gigameters")
  11688. },
  11689. {
  11690. name: "Megamacro+",
  11691. height: math.unit(300, "terameters")
  11692. },
  11693. {
  11694. name: "Megamacro++",
  11695. height: math.unit(3, "lightyears")
  11696. },
  11697. ]
  11698. )
  11699. };
  11700. characterMakers["Shiroryu"] = () => {
  11701. return makeCharacter(
  11702. "Shiroryu",
  11703. "Roxas00137",
  11704. {
  11705. front: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(50, "kg"),
  11708. name: "front",
  11709. image: {
  11710. source: "./media/characters/shiroryu/front.svg",
  11711. extra: 1990/1935
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Mortal Mingling",
  11718. height: math.unit(3, "meters")
  11719. },
  11720. {
  11721. name: "Kaiju-ish",
  11722. height: math.unit(250, "meters")
  11723. },
  11724. {
  11725. name: "Somewhat Godly",
  11726. height: math.unit(400, "km"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Planetary",
  11731. height: math.unit(300, "megameters")
  11732. },
  11733. {
  11734. name: "Galaxy-dwarfing",
  11735. height: math.unit(450, "kiloparsecs")
  11736. },
  11737. {
  11738. name: "Universe Eater",
  11739. height: math.unit(150, "gigaparsecs")
  11740. },
  11741. {
  11742. name: "Almost Immeasurable",
  11743. height: math.unit(1.3e266, "yottaparsecs")
  11744. },
  11745. ]
  11746. )
  11747. };
  11748. characterMakers["Umeko"] = () => {
  11749. return makeCharacter(
  11750. "Umeko",
  11751. "Neopuc",
  11752. {
  11753. front: {
  11754. height: math.unit(6, "feet"),
  11755. weight: math.unit(150, "lb"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/umeko/front.svg",
  11759. extra: (1 / (1 - 0.019)),
  11760. bottom: 0.019
  11761. }
  11762. },
  11763. frontArmored: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front (Armored)",
  11767. image: {
  11768. source: "./media/characters/umeko/front-armored.svg",
  11769. extra: (1 / (1 - 0.021)),
  11770. bottom: 0.021
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(220, "feet"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Guardian Dragon",
  11782. height: math.unit(50, "miles")
  11783. },
  11784. {
  11785. name: "Cosmic",
  11786. height: math.unit(800000, "miles")
  11787. },
  11788. ]
  11789. )
  11790. };
  11791. characterMakers["Cassidy"] = () => {
  11792. return makeCharacter(
  11793. "Cassidy",
  11794. "Neopuc",
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/cassidy/front.svg",
  11802. extra: (1 / (1 - 0.043)),
  11803. bottom: 0.043
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Canon Height",
  11810. height: math.unit(120, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Macro+",
  11815. height: math.unit(400, "feet")
  11816. },
  11817. {
  11818. name: "Macro++",
  11819. height: math.unit(4000, "feet")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(3, "miles")
  11824. },
  11825. ]
  11826. )
  11827. };
  11828. characterMakers["Isaac"] = () => {
  11829. return makeCharacter(
  11830. "Isaac",
  11831. "Neopuc",
  11832. {
  11833. front: {
  11834. height: math.unit(6, "feet"),
  11835. weight: math.unit(150, "lb"),
  11836. name: "Front",
  11837. image: {
  11838. source: "./media/characters/isaac/front.svg",
  11839. extra: 896/815 * (1 / (1 - 0.11)),
  11840. bottom: 0.11
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Human Size",
  11847. height: math.unit(8, "feet"),
  11848. default: true
  11849. },
  11850. {
  11851. name: "Macro",
  11852. height: math.unit(400, "feet")
  11853. },
  11854. {
  11855. name: "Megamacro",
  11856. height: math.unit(50, "miles")
  11857. },
  11858. {
  11859. name: "Canon Height",
  11860. height: math.unit(200, "AU")
  11861. },
  11862. ]
  11863. )
  11864. };
  11865. characterMakers["Sleekit"] = () => {
  11866. return makeCharacter(
  11867. "Sleekit",
  11868. "AnAnonymousIndividual",
  11869. {
  11870. front: {
  11871. height: math.unit(6, "feet"),
  11872. weight: math.unit(72, "kg"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/sleekit/front.svg",
  11876. extra: 4693/4487 * (1 / (1 - 0.012)),
  11877. bottom: 0.012
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Minimum Height",
  11884. height: math.unit(10, "meters")
  11885. },
  11886. {
  11887. name: "Smaller",
  11888. height: math.unit(25, "meters")
  11889. },
  11890. {
  11891. name: "Larger",
  11892. height: math.unit(38, "meters"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Maximum height",
  11897. height: math.unit(100, "meters")
  11898. },
  11899. ]
  11900. )
  11901. };
  11902. characterMakers["Nillia"] = () => {
  11903. return makeCharacter(
  11904. "Nillia",
  11905. "Neopuc",
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/nillia/front.svg",
  11913. extra: 2195/2037 * (1 / (1 - 0.005)),
  11914. bottom: 0.005
  11915. }
  11916. },
  11917. back: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Back",
  11921. image: {
  11922. source: "./media/characters/nillia/back.svg",
  11923. extra: 2195/2037 * (1 / (1 - 0.005)),
  11924. bottom: 0.005
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Canon Height",
  11931. height: math.unit(489, "feet")
  11932. }
  11933. ]
  11934. )
  11935. };
  11936. characterMakers["Mesmyriza"] = () => {
  11937. return makeCharacter(
  11938. "Mesmyriza",
  11939. "-fluffy-",
  11940. {
  11941. front: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(150, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/mesmyriza/front.svg",
  11947. extra: 2067/1784 * (1 / (1 - 0.035)),
  11948. bottom: 0.035
  11949. }
  11950. },
  11951. foot: {
  11952. height: math.unit(6/(250/35), "feet"),
  11953. name: "Foot",
  11954. image: {
  11955. source: "./media/characters/mesmyriza/foot.svg"
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(457, "meters"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(8, "megameters")
  11968. },
  11969. ]
  11970. )
  11971. };
  11972. characterMakers["Saudade"] = () => {
  11973. return makeCharacter(
  11974. "Saudade",
  11975. "lordbo",
  11976. {
  11977. front: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(250, "lb"),
  11980. name: "Front",
  11981. image: {
  11982. source: "./media/characters/saudade/front.svg",
  11983. extra: 1172/1139 * (1 / (1 - 0.035)),
  11984. bottom: 0.035
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Micro",
  11991. height: math.unit(3, "inches")
  11992. },
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(6, "feet"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(50, "feet")
  12001. },
  12002. {
  12003. name: "Megamacro",
  12004. height: math.unit(2800, "feet")
  12005. },
  12006. ]
  12007. )
  12008. };
  12009. characterMakers["Keireer"] = () => {
  12010. return makeCharacter(
  12011. "Keireer",
  12012. "teedash",
  12013. {
  12014. front: {
  12015. height: math.unit(5 + 4/12, "feet"),
  12016. weight: math.unit(100, "lb"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/keireer/front.svg",
  12020. extra: 716/666 * (1 / (1 - 0.05)),
  12021. bottom: 0.05
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(5 + 4/12, "feet")
  12029. },
  12030. ]
  12031. )
  12032. };
  12033. characterMakers["Mirja"] = () => {
  12034. return makeCharacter(
  12035. "Mirja",
  12036. "vabad",
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(90, "kg"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/mirja/front.svg",
  12044. extra: 1789/1683 * (1 / (1 - 0.05)),
  12045. bottom: 0.05
  12046. }
  12047. },
  12048. frontDressed: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(90, "lb"),
  12051. name: "Front (Dressed)",
  12052. image: {
  12053. source: "./media/characters/mirja/front-dressed.svg",
  12054. extra: 1789/1683 * (1 / (1 - 0.05)),
  12055. bottom: 0.05
  12056. }
  12057. },
  12058. back: {
  12059. height: math.unit(6, "feet"),
  12060. weight: math.unit(90, "lb"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/mirja/back.svg",
  12064. extra: 953/917 * (1 / (1 - 0.017)),
  12065. bottom: 0.017
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "\"Incognito\"",
  12072. height: math.unit(3, "meters")
  12073. },
  12074. {
  12075. name: "Strolling Size",
  12076. height: math.unit(15, "km")
  12077. },
  12078. {
  12079. name: "Larger Strolling Size",
  12080. height: math.unit(400, "km")
  12081. },
  12082. {
  12083. name: "Preferred Size",
  12084. height: math.unit(5000, "km")
  12085. },
  12086. {
  12087. name: "True Size",
  12088. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12089. default: true
  12090. },
  12091. ]
  12092. )
  12093. };
  12094. characterMakers["Nightraver"] = () => {
  12095. return makeCharacter(
  12096. "Nightraver",
  12097. "Nightraver",
  12098. {
  12099. front: {
  12100. height: math.unit(15, "feet"),
  12101. weight: math.unit(880, "kg"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/nightraver/front.svg",
  12105. extra: 2444/2160 * (1 / (1 - 0.027)),
  12106. bottom: 0.027
  12107. }
  12108. },
  12109. back: {
  12110. height: math.unit(15, "feet"),
  12111. weight: math.unit(880, "kg"),
  12112. name: "Back",
  12113. image: {
  12114. source: "./media/characters/nightraver/back.svg",
  12115. extra: 2309/2180 * (1 / (1 - 0.005)),
  12116. bottom: 0.005
  12117. }
  12118. },
  12119. sole: {
  12120. height: math.unit(2.878, "feet"),
  12121. name: "Sole",
  12122. image: {
  12123. source: "./media/characters/nightraver/sole.svg"
  12124. }
  12125. },
  12126. foot: {
  12127. height: math.unit(2.285, "feet"),
  12128. name: "Foot",
  12129. image: {
  12130. source: "./media/characters/nightraver/foot.svg"
  12131. }
  12132. },
  12133. maw: {
  12134. height: math.unit(2.67, "feet"),
  12135. name: "Maw",
  12136. image: {
  12137. source: "./media/characters/nightraver/maw.svg"
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Micro",
  12144. height: math.unit(1, "cm")
  12145. },
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(15, "feet"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(300, "feet")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(300, "miles")
  12158. },
  12159. {
  12160. name: "Gigamacro",
  12161. height: math.unit(10000, "miles")
  12162. },
  12163. ]
  12164. )
  12165. };
  12166. characterMakers["Arc"] = () => {
  12167. return makeCharacter(
  12168. "Arc",
  12169. "DinoKiddo",
  12170. {
  12171. side: {
  12172. height: math.unit(2, "inches"),
  12173. weight: math.unit(5, "grams"),
  12174. name: "Side",
  12175. image: {
  12176. source: "./media/characters/arc/side.svg"
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Micro",
  12183. height: math.unit(2, "inches"),
  12184. default: true
  12185. },
  12186. ]
  12187. )
  12188. };
  12189. characterMakers["Nebula Shahar"] = () => {
  12190. return makeCharacter(
  12191. "Nebula Shahar",
  12192. "Kypleo",
  12193. {
  12194. front: {
  12195. height: math.unit(1.1938, "meters"),
  12196. weight: math.unit(54, "kg"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/nebula-shahar/front.svg",
  12200. extra: 1642/1436 * (1 / (1 - 0.06)),
  12201. bottom: 0.06
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Megamicro",
  12208. height: math.unit(0.3, "mm")
  12209. },
  12210. {
  12211. name: "Micro",
  12212. height: math.unit(3, "cm")
  12213. },
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(138, "cm"),
  12217. default: true
  12218. },
  12219. {
  12220. name: "Macro",
  12221. height: math.unit(30, "m")
  12222. },
  12223. ]
  12224. )
  12225. };
  12226. characterMakers["Shayla"] = () => {
  12227. return makeCharacter(
  12228. "Shayla",
  12229. "Ziralkia",
  12230. {
  12231. front: {
  12232. height: math.unit(5.24, "feet"),
  12233. weight: math.unit(150, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/shayla/front.svg",
  12237. extra: 1512/1414 * (1 / (1 - 0.01)),
  12238. bottom: 0.01
  12239. }
  12240. },
  12241. back: {
  12242. height: math.unit(5.24, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Back",
  12245. image: {
  12246. source: "./media/characters/shayla/back.svg",
  12247. extra: 1512/1414
  12248. }
  12249. },
  12250. hand: {
  12251. height: math.unit(0.7781496062992126, "feet"),
  12252. name: "Hand",
  12253. image: {
  12254. source: "./media/characters/shayla/hand.svg"
  12255. }
  12256. },
  12257. foot: {
  12258. height: math.unit(1.4206036745406823, "feet"),
  12259. name: "Foot",
  12260. image: {
  12261. source: "./media/characters/shayla/foot.svg"
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Micro",
  12268. height: math.unit(0.32, "feet")
  12269. },
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(5.24, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Macro",
  12277. height: math.unit(492.12, "feet")
  12278. },
  12279. {
  12280. name: "Megamacro",
  12281. height: math.unit(186.41, "miles")
  12282. },
  12283. ]
  12284. )
  12285. };
  12286. characterMakers["Pia Jr."] = () => {
  12287. return makeCharacter(
  12288. "Pia Jr.",
  12289. "Ziralkia",
  12290. {
  12291. front: {
  12292. height: math.unit(2.2, "m"),
  12293. weight: math.unit(120, "kg"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/pia-jr/front.svg",
  12297. extra: 1000/970 * (1 / (1 - 0.035)),
  12298. bottom: 0.035
  12299. }
  12300. },
  12301. hand: {
  12302. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12303. name: "Hand",
  12304. image: {
  12305. source: "./media/characters/pia-jr/hand.svg"
  12306. }
  12307. },
  12308. paw: {
  12309. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12310. name: "Paw",
  12311. image: {
  12312. source: "./media/characters/pia-jr/paw.svg"
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Micro",
  12319. height: math.unit(1.2, "cm")
  12320. },
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(2.2, "m"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(180, "m")
  12329. },
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(420, "km")
  12333. },
  12334. ]
  12335. )
  12336. };
  12337. characterMakers["Pia Sr."] = () => {
  12338. return makeCharacter(
  12339. "Pia Sr.",
  12340. "Ziralkia",
  12341. {
  12342. front: {
  12343. height: math.unit(2, "m"),
  12344. weight: math.unit(115, "kg"),
  12345. name: "Front",
  12346. image: {
  12347. source: "./media/characters/pia-sr/front.svg",
  12348. extra: 760/730 * (1 / (1 - 0.015)),
  12349. bottom: 0.015
  12350. }
  12351. },
  12352. back: {
  12353. height: math.unit(2, "m"),
  12354. weight: math.unit(115, "kg"),
  12355. name: "Back",
  12356. image: {
  12357. source: "./media/characters/pia-sr/back.svg",
  12358. extra: 760/730 * (1 / (1 - 0.01)),
  12359. bottom: 0.01
  12360. }
  12361. },
  12362. hand: {
  12363. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12364. name: "Hand",
  12365. image: {
  12366. source: "./media/characters/pia-sr/hand.svg"
  12367. }
  12368. },
  12369. foot: {
  12370. height: math.unit(1.83, "feet"),
  12371. name: "Foot",
  12372. image: {
  12373. source: "./media/characters/pia-sr/foot.svg"
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Micro",
  12380. height: math.unit(88, "mm")
  12381. },
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(2, "m"),
  12385. default: true
  12386. },
  12387. {
  12388. name: "Macro",
  12389. height: math.unit(200, "m")
  12390. },
  12391. {
  12392. name: "Megamacro",
  12393. height: math.unit(420, "km")
  12394. },
  12395. ]
  12396. )
  12397. };
  12398. characterMakers["KIBIBYTE"] = () => {
  12399. return makeCharacter(
  12400. "KIBIBYTE",
  12401. "gamefreak1215",
  12402. {
  12403. front: {
  12404. height: math.unit(8 + 2/12, "feet"),
  12405. weight: math.unit(300, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kibibyte/front.svg",
  12409. extra: 2221/2098 * (1 / (1 - 0.04)),
  12410. bottom: 0.04
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(8 + 2/12, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Socialable Macro",
  12422. height: math.unit(50, "feet")
  12423. },
  12424. {
  12425. name: "Macro",
  12426. height: math.unit(300, "feet")
  12427. },
  12428. {
  12429. name: "Megamacro",
  12430. height: math.unit(500, "miles")
  12431. },
  12432. ]
  12433. )
  12434. };
  12435. characterMakers["Felix"] = () => {
  12436. return makeCharacter(
  12437. "Felix",
  12438. "MeanDumpsterCat",
  12439. {
  12440. front: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(150, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/felix/front.svg",
  12446. extra: 762/722 * (1 / (1 - 0.02)),
  12447. bottom: 0.02
  12448. }
  12449. },
  12450. frontClothed: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(150, "lb"),
  12453. name: "Front (Clothed)",
  12454. image: {
  12455. source: "./media/characters/felix/front-clothed.svg",
  12456. extra: 762/722 * (1 / (1 - 0.02)),
  12457. bottom: 0.02
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(6 + 8/12, "feet"),
  12465. default: true
  12466. },
  12467. {
  12468. name: "Macro",
  12469. height: math.unit(2600, "feet")
  12470. },
  12471. {
  12472. name: "Megamacro",
  12473. height: math.unit(450, "miles")
  12474. },
  12475. ]
  12476. )
  12477. };
  12478. characterMakers["Tobo"] = () => {
  12479. return makeCharacter(
  12480. "Tobo",
  12481. "Naoya_Raichi",
  12482. {
  12483. front: {
  12484. height: math.unit(6 + 1/12, "feet"),
  12485. weight: math.unit(250, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/tobo/front.svg",
  12489. extra: 608/586 * (1 / (1 - 0.023)),
  12490. bottom: 0.023
  12491. }
  12492. },
  12493. back: {
  12494. height: math.unit(6 + 1/12, "feet"),
  12495. weight: math.unit(250, "lb"),
  12496. name: "Back",
  12497. image: {
  12498. source: "./media/characters/tobo/back.svg",
  12499. extra: 608/586
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Nano",
  12506. height: math.unit(2, "nm")
  12507. },
  12508. {
  12509. name: "Megamicro",
  12510. height: math.unit(0.1, "mm")
  12511. },
  12512. {
  12513. name: "Micro",
  12514. height: math.unit(1, "inch"),
  12515. default: true
  12516. },
  12517. {
  12518. name: "Human-sized",
  12519. height: math.unit(6 + 1/12, "feet")
  12520. },
  12521. {
  12522. name: "Macro",
  12523. height: math.unit(250, "feet")
  12524. },
  12525. {
  12526. name: "Megamacro",
  12527. height: math.unit(75, "miles")
  12528. },
  12529. {
  12530. name: "Texas-sized",
  12531. height: math.unit(750, "miles")
  12532. },
  12533. {
  12534. name: "Teramacro",
  12535. height: math.unit(50000, "miles")
  12536. },
  12537. ]
  12538. )
  12539. };
  12540. characterMakers["Danny Kapowsky"] = () => {
  12541. return makeCharacter(
  12542. "Danny Kapowsky",
  12543. "nh63879",
  12544. {
  12545. front: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(269, "lb"),
  12548. name: "Front",
  12549. image: {
  12550. source: "./media/characters/danny-kapowsky/front.svg",
  12551. extra: 766/736 * (1 / (1 - 0.044)),
  12552. bottom: 0.044
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(269, "lb"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/danny-kapowsky/back.svg",
  12561. extra: 797/760 * (1 / (1 - 0.025)),
  12562. bottom: 0.025
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(150, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Macro+",
  12574. height: math.unit(200, "feet")
  12575. },
  12576. {
  12577. name: "Macro++",
  12578. height: math.unit(300, "feet")
  12579. },
  12580. {
  12581. name: "Macro+++",
  12582. height: math.unit(400, "feet")
  12583. },
  12584. ]
  12585. )
  12586. };
  12587. characterMakers["Finn"] = () => {
  12588. return makeCharacter(
  12589. "Finn",
  12590. "Finn-The-Fennecfox",
  12591. {
  12592. side: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(170, "lb"),
  12595. name: "Side",
  12596. image: {
  12597. source: "./media/characters/finn/side.svg",
  12598. extra: 1953/1807 * (1 / (1 - 0.057)),
  12599. bottom: 0.057
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Megamacro",
  12606. height: math.unit(14445, "feet"),
  12607. default: true
  12608. },
  12609. ]
  12610. )
  12611. };
  12612. characterMakers["Roy"] = () => {
  12613. return makeCharacter(
  12614. "Roy",
  12615. "dracodare",
  12616. {
  12617. front: {
  12618. height: math.unit(5 + 6/12, "feet"),
  12619. weight: math.unit(125, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/roy/front.svg",
  12623. extra: (1 / (1 - 0.11)),
  12624. bottom: 0.11
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Micro",
  12631. height: math.unit(3, "inches"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Normal",
  12636. height: math.unit(5 + 6/12, "feet")
  12637. },
  12638. {
  12639. name: "Lesser Macro",
  12640. height: math.unit(60, "feet")
  12641. },
  12642. {
  12643. name: "Greater Macro",
  12644. height: math.unit(120, "feet")
  12645. },
  12646. ]
  12647. )
  12648. };
  12649. characterMakers["Aevsivs"] = () => {
  12650. return makeCharacter(
  12651. "Aevsivs",
  12652. "Aevsivs",
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(100, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/aevsivs/front.svg",
  12660. extra: (1 / (1 - 0.03)),
  12661. bottom: 0.03
  12662. }
  12663. },
  12664. back: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(100, "lb"),
  12667. name: "Back",
  12668. image: {
  12669. source: "./media/characters/aevsivs/back.svg"
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Micro",
  12676. height: math.unit(2, "inches"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(5, "feet")
  12682. },
  12683. ]
  12684. )
  12685. };
  12686. characterMakers["Hildegard"] = () => {
  12687. return makeCharacter(
  12688. "Hildegard",
  12689. "Fidchell",
  12690. {
  12691. front: {
  12692. height: math.unit(5 + 7/12, "feet"),
  12693. weight: math.unit(159, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/hildegard/front.svg",
  12697. extra: 312/286 * (1 / (1 - 0.005)),
  12698. bottom: 0.005
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(5 + 7/12, "feet"),
  12706. default: true
  12707. },
  12708. ]
  12709. )
  12710. };
  12711. characterMakers["Bernard & Wilder"] = () => {
  12712. return makeCharacter(
  12713. "Bernard & Wilder",
  12714. "Fidchell",
  12715. {
  12716. bernard: {
  12717. height: math.unit(2 + 7/12, "feet"),
  12718. weight: math.unit(66, "lb"),
  12719. name: "Bernard",
  12720. rename: true,
  12721. image: {
  12722. source: "./media/characters/bernard-wilder/bernard.svg",
  12723. extra: 192/128 * (1 / (1 - 0.05)),
  12724. bottom: 0.05
  12725. }
  12726. },
  12727. wilder: {
  12728. height: math.unit(5 + 8/12, "feet"),
  12729. weight: math.unit(143, "lb"),
  12730. name: "Wilder",
  12731. rename: true,
  12732. image: {
  12733. source: "./media/characters/bernard-wilder/wilder.svg",
  12734. extra: 361/312 * (1 / (1 - 0.02)),
  12735. bottom: 0.02
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(2 + 7/12, "feet"),
  12743. default: true
  12744. },
  12745. ]
  12746. )
  12747. };
  12748. characterMakers["Hearth"] = () => {
  12749. return makeCharacter(
  12750. "Hearth",
  12751. "Fidchell",
  12752. {
  12753. anthro: {
  12754. height: math.unit(6 + 1/12, "feet"),
  12755. weight: math.unit(155, "lb"),
  12756. name: "Anthro",
  12757. image: {
  12758. source: "./media/characters/hearth/anthro.svg",
  12759. extra: 260/250 * (1 / (1 - 0.02)),
  12760. bottom: 0.02
  12761. }
  12762. },
  12763. feral: {
  12764. height: math.unit(3.78, "feet"),
  12765. weight: math.unit(35, "kg"),
  12766. name: "Feral",
  12767. image: {
  12768. source: "./media/characters/hearth/feral.svg",
  12769. extra: 153/135 * (1 / (1 - 0.03)),
  12770. bottom: 0.03
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(6 + 1/12, "feet"),
  12778. default: true
  12779. },
  12780. ]
  12781. )
  12782. };
  12783. characterMakers["Ingrid"] = () => {
  12784. return makeCharacter(
  12785. "Ingrid",
  12786. "Fidchell",
  12787. {
  12788. front: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(182, "lb"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/ingrid/front.svg",
  12794. extra: 294/268 * (1 / (1 - 0.027)),
  12795. bottom: 0.027
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(6, "feet"),
  12803. default: true
  12804. },
  12805. ]
  12806. )
  12807. };
  12808. characterMakers["Malgam"] = () => {
  12809. return makeCharacter(
  12810. "Malgam",
  12811. "Fidchell",
  12812. {
  12813. eevee: {
  12814. height: math.unit(2 + 10/12, "feet"),
  12815. weight: math.unit(86, "lb"),
  12816. name: "Malgam",
  12817. image: {
  12818. source: "./media/characters/malgam/eevee.svg",
  12819. extra: 218/180 * (1 / (1 - 0.2)),
  12820. bottom: 0.2
  12821. }
  12822. },
  12823. sylveon: {
  12824. height: math.unit(4, "feet"),
  12825. weight: math.unit(101, "lb"),
  12826. name: "Future Malgam",
  12827. rename: true,
  12828. image: {
  12829. source: "./media/characters/malgam/sylveon.svg",
  12830. extra: 371/325 * (1 / (1 - 0.015)),
  12831. bottom: 0.015
  12832. }
  12833. },
  12834. gigantamax: {
  12835. height: math.unit(50, "feet"),
  12836. name: "Gigantamax Malgam",
  12837. rename: true,
  12838. image: {
  12839. source: "./media/characters/malgam/gigantamax.svg"
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(2 + 10/12, "feet"),
  12847. default: true
  12848. },
  12849. ]
  12850. )
  12851. };
  12852. characterMakers["Fleur"] = () => {
  12853. return makeCharacter(
  12854. "Fleur",
  12855. "Fidchell",
  12856. {
  12857. front: {
  12858. height: math.unit(5 + 11/12, "feet"),
  12859. weight: math.unit(188, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/fleur/front.svg",
  12863. extra: 309/283 * (1 / (1 - 0.007)),
  12864. bottom: 0.007
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(5 + 11/12, "feet"),
  12872. default: true
  12873. },
  12874. ]
  12875. )
  12876. };
  12877. characterMakers["Jude"] = () => {
  12878. return makeCharacter(
  12879. "Jude",
  12880. "Fidchell",
  12881. {
  12882. front: {
  12883. height: math.unit(5 + 4/12, "feet"),
  12884. weight: math.unit(122, "lb"),
  12885. name: "Front",
  12886. image: {
  12887. source: "./media/characters/jude/front.svg",
  12888. extra: 288/273 * (1 / (1 - 0.03)),
  12889. bottom: 0.03
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Normal",
  12896. height: math.unit(5 + 4/12, "feet"),
  12897. default: true
  12898. },
  12899. ]
  12900. )
  12901. };
  12902. characterMakers["Seara"] = () => {
  12903. return makeCharacter(
  12904. "Seara",
  12905. "Fidchell",
  12906. {
  12907. front: {
  12908. height: math.unit(5 + 11/12, "feet"),
  12909. weight: math.unit(190, "lb"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/seara/front.svg",
  12913. extra: (1 / (1 - 0.05)),
  12914. bottom: 0.05
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(5 + 11/12, "feet"),
  12922. default: true
  12923. },
  12924. ]
  12925. )
  12926. };
  12927. characterMakers["Caspian"] = () => {
  12928. return makeCharacter(
  12929. "Caspian",
  12930. "Fidchell",
  12931. {
  12932. front: {
  12933. height: math.unit(16 + 5/12, "feet"),
  12934. weight: math.unit(524, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/caspian/front.svg",
  12938. extra: (1 / (1 - 0.04)),
  12939. bottom: 0.04
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(16 + 5/12, "feet")
  12947. },
  12948. ]
  12949. )
  12950. };
  12951. characterMakers["Mika"] = () => {
  12952. return makeCharacter(
  12953. "Mika",
  12954. "Fidchell",
  12955. {
  12956. front: {
  12957. height: math.unit(5 + 7/12, "feet"),
  12958. weight: math.unit(170, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/mika/front.svg",
  12962. extra: (1 / (1 - 0.016)),
  12963. bottom: 0.016
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(5 + 7/12, "feet")
  12971. },
  12972. ]
  12973. )
  12974. };
  12975. characterMakers["Sol"] = () => {
  12976. return makeCharacter(
  12977. "Sol",
  12978. "Fidchell",
  12979. {
  12980. front: {
  12981. height: math.unit(6 + 2/12, "feet"),
  12982. weight: math.unit(268, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/sol/front.svg",
  12986. extra: 247/231 * (1 / (1 - 0.05)),
  12987. bottom: 0.05
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(6 + 2/12, "feet")
  12995. },
  12996. ]
  12997. )
  12998. };
  12999. characterMakers["Umiko"] = () => {
  13000. return makeCharacter(
  13001. "Umiko",
  13002. "Fidchell",
  13003. {
  13004. buizel: {
  13005. height: math.unit(2 + 5/12, "feet"),
  13006. weight: math.unit(87, "lb"),
  13007. name: "Buizel",
  13008. image: {
  13009. source: "./media/characters/umiko/buizel.svg",
  13010. extra: 172/157 * (1 / (1 - 0.01)),
  13011. bottom: 0.01
  13012. }
  13013. },
  13014. floatzel: {
  13015. height: math.unit(5 + 9/12, "feet"),
  13016. weight: math.unit(250, "lb"),
  13017. name: "Floatzel",
  13018. image: {
  13019. source: "./media/characters/umiko/floatzel.svg",
  13020. extra: 262/248
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(2 + 5/12, "feet"),
  13028. default: true
  13029. },
  13030. ]
  13031. )
  13032. };
  13033. characterMakers["Iliac"] = () => {
  13034. return makeCharacter(
  13035. "Iliac",
  13036. "Fidchell",
  13037. {
  13038. front: {
  13039. height: math.unit(6 + 2/12, "feet"),
  13040. weight: math.unit(146, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/iliac/front.svg",
  13044. extra: 389/365 * (1 / (1 - 0.035)),
  13045. bottom: 0.035
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(6 + 2/12, "feet"),
  13053. default: true
  13054. },
  13055. ]
  13056. )
  13057. };
  13058. characterMakers["Topaz"] = () => {
  13059. return makeCharacter(
  13060. "Topaz",
  13061. "Fidchell",
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(170, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/topaz/front.svg",
  13069. extra: 317/303 * (1 / (1 - 0.055)),
  13070. bottom: 0.055
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(6, "feet"),
  13078. default: true
  13079. },
  13080. ]
  13081. )
  13082. };
  13083. characterMakers["Gabriel"] = () => {
  13084. return makeCharacter(
  13085. "Gabriel",
  13086. "Fidchell",
  13087. {
  13088. front: {
  13089. height: math.unit(5 + 11/12, "feet"),
  13090. weight: math.unit(144, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/gabriel/front.svg",
  13094. extra: 285/262 * (1 / (1 - 0.004)),
  13095. bottom: 0.004
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(5 + 11/12, "feet"),
  13103. default: true
  13104. },
  13105. ]
  13106. )
  13107. };
  13108. characterMakers["Tempest (Suicune)"] = () => {
  13109. return makeCharacter(
  13110. "Tempest (Suicune)",
  13111. "Fidchell",
  13112. {
  13113. side: {
  13114. height: math.unit(6 + 5/12, "feet"),
  13115. weight: math.unit(300, "lb"),
  13116. name: "Side",
  13117. image: {
  13118. source: "./media/characters/tempest-suicune/side.svg",
  13119. extra: 195/154 * (1 / (1 - 0.04)),
  13120. bottom: 0.04
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(6 + 5/12, "feet"),
  13128. default: true
  13129. },
  13130. ]
  13131. )
  13132. };
  13133. characterMakers["Vulcan"] = () => {
  13134. return makeCharacter(
  13135. "Vulcan",
  13136. "Fidchell",
  13137. {
  13138. front: {
  13139. height: math.unit(7 + 2/12, "feet"),
  13140. weight: math.unit(322, "lb"),
  13141. name: "Front",
  13142. image: {
  13143. source: "./media/characters/vulcan/front.svg",
  13144. extra: 154/147 * (1 / (1 - 0.04)),
  13145. bottom: 0.04
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Normal",
  13152. height: math.unit(7 + 2/12, "feet"),
  13153. default: true
  13154. },
  13155. ]
  13156. )
  13157. };
  13158. characterMakers["Gault"] = () => {
  13159. return makeCharacter(
  13160. "Gault",
  13161. "Fidchell",
  13162. {
  13163. front: {
  13164. height: math.unit(5 + 10/12, "feet"),
  13165. weight: math.unit(264, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/gault/front.svg",
  13169. extra: 161/140 * (1 / (1 - 0.028)),
  13170. bottom: 0.028
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(5 + 10/12, "feet"),
  13178. default: true
  13179. },
  13180. ]
  13181. )
  13182. };
  13183. characterMakers["Shard"] = () => {
  13184. return makeCharacter(
  13185. "Shard",
  13186. "Fidchell",
  13187. {
  13188. front: {
  13189. height: math.unit(6, "feet"),
  13190. weight: math.unit(150, "lb"),
  13191. name: "Front",
  13192. image: {
  13193. source: "./media/characters/shard/front.svg",
  13194. extra: 273/238 * (1 / (1 - 0.02)),
  13195. bottom: 0.02
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(3 + 6/12, "feet"),
  13203. default: true
  13204. },
  13205. ]
  13206. )
  13207. };
  13208. characterMakers["Ashe"] = () => {
  13209. return makeCharacter(
  13210. "Ashe",
  13211. "Fidchell",
  13212. {
  13213. front: {
  13214. height: math.unit(5 + 11/12, "feet"),
  13215. weight: math.unit(146, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/ashe/front.svg",
  13219. extra: 400/373 * (1 / (1 - 0.01)),
  13220. bottom: 0.01
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(5 + 11/12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. )
  13232. };
  13233. characterMakers["Beatrix"] = () => {
  13234. return makeCharacter(
  13235. "Beatrix",
  13236. "Fidchell",
  13237. {
  13238. front: {
  13239. height: math.unit(5 + 5/12, "feet"),
  13240. weight: math.unit(135, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/beatrix/front.svg",
  13244. extra: 392/379 * (1 / (1 - 0.01)),
  13245. bottom: 0.01
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(6, "feet"),
  13253. default: true
  13254. },
  13255. ]
  13256. )
  13257. };
  13258. characterMakers["Ignatius"] = () => {
  13259. return makeCharacter(
  13260. "Ignatius",
  13261. "Fidchell",
  13262. {
  13263. front: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(150, "lb"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/ignatius/front.svg",
  13269. extra: 245/222 * (1 / (1 - 0.01)),
  13270. bottom: 0.01
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(5 + 5/12, "feet"),
  13278. default: true
  13279. },
  13280. ]
  13281. )
  13282. };
  13283. characterMakers["Mei Li"] = () => {
  13284. return makeCharacter(
  13285. "Mei Li",
  13286. "Fidchell",
  13287. {
  13288. front: {
  13289. height: math.unit(6 + 2/12, "feet"),
  13290. weight: math.unit(138, "lb"),
  13291. name: "Front",
  13292. image: {
  13293. source: "./media/characters/mei-li/front.svg",
  13294. extra: 237/229 * (1 / (1 - 0.03)),
  13295. bottom: 0.03
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(6 + 2/12, "feet")
  13303. },
  13304. ]
  13305. )
  13306. };
  13307. characterMakers["Puru"] = () => {
  13308. return makeCharacter(
  13309. "Puru",
  13310. "Fidchell",
  13311. {
  13312. front: {
  13313. height: math.unit(2 + 4/12, "feet"),
  13314. weight: math.unit(62, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/puru/front.svg",
  13318. extra: 206/149 * (1 / (1 - 0.06)),
  13319. bottom: 0.06
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Normal",
  13326. height: math.unit(2 + 4/12, "feet")
  13327. },
  13328. ]
  13329. )
  13330. };
  13331. characterMakers["Kee"] = () => {
  13332. return makeCharacter(
  13333. "Kee",
  13334. "AardwolfKee",
  13335. {
  13336. taur: {
  13337. height: math.unit(11, "feet"),
  13338. weight: math.unit(500, "lb"),
  13339. name: "Taur",
  13340. image: {
  13341. source: "./media/characters/kee/taur.svg",
  13342. extra: (1 / (1 - 0.04)),
  13343. bottom: 0.04
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(11, "feet"),
  13351. default: true
  13352. },
  13353. ]
  13354. )
  13355. };
  13356. characterMakers["Cobalt (Dracha)"] = () => {
  13357. return makeCharacter(
  13358. "Cobalt (Dracha)",
  13359. "Fidchell",
  13360. {
  13361. anthro: {
  13362. height: math.unit(7, "feet"),
  13363. weight: math.unit(190, "lb"),
  13364. name: "Anthro",
  13365. image: {
  13366. source: "./media/characters/cobalt-dracha/anthro.svg",
  13367. extra: 231/225 * (1 / (1 - 0.04)),
  13368. bottom: 0.04
  13369. }
  13370. },
  13371. feral: {
  13372. height: math.unit(9 + 7/12, "feet"),
  13373. weight: math.unit(294, "lb"),
  13374. name: "Feral",
  13375. image: {
  13376. source: "./media/characters/cobalt-dracha/feral.svg",
  13377. extra: 692/633 * (1 / (1 - 0.05)),
  13378. bottom: 0.05
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Normal",
  13385. height: math.unit(7, "feet"),
  13386. default: true
  13387. },
  13388. ]
  13389. )
  13390. };
  13391. characterMakers["Java"] = () => {
  13392. return makeCharacter(
  13393. "Java",
  13394. "Fidchell",
  13395. {
  13396. fallen: {
  13397. height: math.unit(11 + 8/12, "feet"),
  13398. weight: math.unit(485, "lb"),
  13399. name: "Java (Fallen)",
  13400. rename: true,
  13401. image: {
  13402. source: "./media/characters/java/fallen.svg",
  13403. extra: 226/208 * (1 / (1 - 0.005)),
  13404. bottom: 0.005
  13405. }
  13406. },
  13407. godkin: {
  13408. height: math.unit(10 + 6/12, "feet"),
  13409. weight: math.unit(328, "lb"),
  13410. name: "Java (Godkin)",
  13411. rename: true,
  13412. image: {
  13413. source: "./media/characters/java/godkin.svg",
  13414. extra: 270/262 * (1 / (1 - 0.02)),
  13415. bottom: 0.02
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(11 + 8/12, "feet"),
  13423. default: true
  13424. },
  13425. ]
  13426. )
  13427. };
  13428. characterMakers["Skoll"] = () => {
  13429. return makeCharacter(
  13430. "Skoll",
  13431. "Fidchell",
  13432. {
  13433. front: {
  13434. height: math.unit(7 + 8/12, "feet"),
  13435. weight: math.unit(320, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/skoll/front.svg",
  13439. extra: 232/220 * (1 / (1 - 0.02)),
  13440. bottom: 0.02
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(7 + 8/12, "feet"),
  13448. default: true
  13449. },
  13450. ]
  13451. )
  13452. };
  13453. characterMakers["Purna"] = () => {
  13454. return makeCharacter(
  13455. "Purna",
  13456. "Fidchell",
  13457. {
  13458. front: {
  13459. height: math.unit(5 + 9/12, "feet"),
  13460. weight: math.unit(170, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/purna/front.svg",
  13464. extra: 239/229 * (1 / (1 - 0.01)),
  13465. bottom: 0.01
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(5 + 9/12, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. )
  13477. };
  13478. characterMakers["Kuva"] = () => {
  13479. return makeCharacter(
  13480. "Kuva",
  13481. "Fidchell",
  13482. {
  13483. front: {
  13484. height: math.unit(5 + 9/12, "feet"),
  13485. weight: math.unit(142, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/kuva/front.svg",
  13489. extra: 281/271 * (1 / (1 - 0.006)),
  13490. bottom: 0.006
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Normal",
  13497. height: math.unit(5 + 9/12, "feet")
  13498. },
  13499. ]
  13500. )
  13501. };
  13502. characterMakers["Embra"] = () => {
  13503. return makeCharacter(
  13504. "Embra",
  13505. "Fidchell",
  13506. {
  13507. anthro: {
  13508. height: math.unit(9 + 2/12, "feet"),
  13509. weight: math.unit(270, "lb"),
  13510. name: "Anthro",
  13511. image: {
  13512. source: "./media/characters/embra/anthro.svg",
  13513. extra: 200/187 * (1 / (1 - 0.02)),
  13514. bottom: 0.02
  13515. }
  13516. },
  13517. feral: {
  13518. height: math.unit(18 + 8/12, "feet"),
  13519. weight: math.unit(576, "lb"),
  13520. name: "Feral",
  13521. image: {
  13522. source: "./media/characters/embra/feral.svg",
  13523. extra: 152/137 * (1 / (1 - 0.037)),
  13524. bottom: 0.037
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Normal",
  13531. height: math.unit(9 + 2/12, "feet"),
  13532. default: true
  13533. },
  13534. ]
  13535. )
  13536. };
  13537. characterMakers["Grottos"] = () => {
  13538. return makeCharacter(
  13539. "Grottos",
  13540. "Fidchell",
  13541. {
  13542. anthro: {
  13543. height: math.unit(10 + 9/12, "feet"),
  13544. weight: math.unit(224, "lb"),
  13545. name: "Anthro",
  13546. image: {
  13547. source: "./media/characters/grottos/anthro.svg",
  13548. extra: 350/332 * (1 / (1 - 0.045)),
  13549. bottom: 0.045
  13550. }
  13551. },
  13552. feral: {
  13553. height: math.unit(20 + 7/12, "feet"),
  13554. weight: math.unit(629, "lb"),
  13555. name: "Feral",
  13556. image: {
  13557. source: "./media/characters/grottos/feral.svg",
  13558. extra: 207/190 * (1 / (1 - 0.05)),
  13559. bottom: 0.05
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(10 + 9/12, "feet"),
  13567. default: true
  13568. },
  13569. ]
  13570. )
  13571. };
  13572. characterMakers["Frifna"] = () => {
  13573. return makeCharacter(
  13574. "Frifna",
  13575. "Fidchell",
  13576. {
  13577. anthro: {
  13578. height: math.unit(9 + 6/12, "feet"),
  13579. weight: math.unit(298, "lb"),
  13580. name: "Anthro",
  13581. image: {
  13582. source: "./media/characters/frifna/anthro.svg",
  13583. extra: 282/269 * (1 / (1 - 0.015)),
  13584. bottom: 0.015
  13585. }
  13586. },
  13587. feral: {
  13588. height: math.unit(16 + 2/12, "feet"),
  13589. weight: math.unit(624, "lb"),
  13590. name: "Feral",
  13591. image: {
  13592. source: "./media/characters/frifna/feral.svg"
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Normal",
  13599. height: math.unit(9 + 6/12, "feet"),
  13600. default: true
  13601. },
  13602. ]
  13603. )
  13604. };
  13605. characterMakers["Elise"] = () => {
  13606. return makeCharacter(
  13607. "Elise",
  13608. "Fidchell",
  13609. {
  13610. front: {
  13611. height: math.unit(6 + 2/12, "feet"),
  13612. weight: math.unit(168, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/elise/front.svg",
  13616. extra: 276/271
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Normal",
  13623. height: math.unit(6 + 2/12, "feet"),
  13624. default: true
  13625. },
  13626. ]
  13627. )
  13628. };
  13629. characterMakers["Glade"] = () => {
  13630. return makeCharacter(
  13631. "Glade",
  13632. "Fidchell",
  13633. {
  13634. front: {
  13635. height: math.unit(5 + 10/12, "feet"),
  13636. weight: math.unit(210, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/glade/front.svg",
  13640. extra: 258/247 * (1 / (1 - 0.008)),
  13641. bottom: 0.008
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(5 + 10/12, "feet"),
  13649. default: true
  13650. },
  13651. ]
  13652. )
  13653. };
  13654. characterMakers["Rina"] = () => {
  13655. return makeCharacter(
  13656. "Rina",
  13657. "Fidchell",
  13658. {
  13659. front: {
  13660. height: math.unit(5 + 10/12, "feet"),
  13661. weight: math.unit(129, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/rina/front.svg",
  13665. extra: 266/255 * (1 / (1 - 0.005)),
  13666. bottom: 0.005
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(5 + 10/12, "feet"),
  13674. default: true
  13675. },
  13676. ]
  13677. )
  13678. };
  13679. characterMakers["Veronica"] = () => {
  13680. return makeCharacter(
  13681. "Veronica",
  13682. "Fidchell",
  13683. {
  13684. front: {
  13685. height: math.unit(6 + 1/12, "feet"),
  13686. weight: math.unit(192, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/veronica/front.svg",
  13690. extra: 319/309 * (1 / (1 - 0.005)),
  13691. bottom: 0.005
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Normal",
  13698. height: math.unit(6 + 1/12, "feet"),
  13699. default: true
  13700. },
  13701. ]
  13702. )
  13703. };
  13704. //characters
  13705. function makeCharacters() {
  13706. const results = [];
  13707. Object.entries(characterMakers).forEach(([key, value]) => {
  13708. results.push({
  13709. name: key,
  13710. constructor: value
  13711. });
  13712. });
  13713. results.push({
  13714. name: "Aigey",
  13715. constructor: makeAigey
  13716. });
  13717. results.push({
  13718. name: "Natasha",
  13719. constructor: makeNatasha
  13720. });
  13721. results.push({
  13722. name: "Malik",
  13723. constructor: makeMalik
  13724. });
  13725. results.push({
  13726. name: "Sefer",
  13727. constructor: makeSefer
  13728. });
  13729. return results;
  13730. }