less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14256 lines
374 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsec", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("parsecs", {
  7. definition: "3.086e16 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("lightyears", {
  11. definition: "9.461e15 meters",
  12. prefixes: "long"
  13. })
  14. math.createUnit("AU", {
  15. definition: "149597870700 meters"
  16. })
  17. math.createUnit("AUs", {
  18. definition: "149597870700 meters"
  19. })
  20. function makeCharacter(name, author, viewInfo, defaultSizes, extraInfo) {
  21. if (extraInfo === undefined) {
  22. extraInfo = {}
  23. }
  24. views = {};
  25. Object.entries(viewInfo).forEach(([key, value]) => {
  26. views[key] = {
  27. attributes: {
  28. height: {
  29. name: "Height",
  30. power: 1,
  31. type: "length",
  32. base: value.height
  33. }
  34. },
  35. image: value.image,
  36. name: value.name,
  37. info: value.info,
  38. rename: value.rename
  39. }
  40. if (value.weight) {
  41. views[key].attributes.weight = {
  42. name: "Mass",
  43. power: 3,
  44. type: "mass",
  45. base: value.weight
  46. };
  47. }
  48. });
  49. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  50. return entity;
  51. }
  52. characterMakers["Fen"] = () => {
  53. return makeCharacter(
  54. "Fen",
  55. "chemicalcrux",
  56. {
  57. back: {
  58. height: math.unit(2.2428, "meter"),
  59. weight: math.unit(124.738, "kg"),
  60. name: "Back",
  61. image: {
  62. source: "./media/characters/fen/back.svg",
  63. extra: 1025/935
  64. },
  65. info: {
  66. description: {
  67. mode: "append",
  68. text: "\n\nHe is not currently looking at you."
  69. }
  70. }
  71. },
  72. full: {
  73. height: math.unit(1.34, "meter"),
  74. weight: math.unit(225, "kg"),
  75. name: "Full",
  76. image: {
  77. source: "./media/characters/fen/full.svg"
  78. },
  79. info: {
  80. description: {
  81. mode: "append",
  82. text: "\n\nMunch."
  83. }
  84. }
  85. }
  86. },
  87. [
  88. {
  89. name: "Normal",
  90. height: math.unit(2.2428, "meter")
  91. },
  92. {
  93. name: "Big",
  94. height: math.unit(12, "feet")
  95. },
  96. {
  97. name: "Minimacro",
  98. height: math.unit(30, "meter"),
  99. default: true,
  100. info: {
  101. description: {
  102. mode: "append",
  103. text: "\n\nTOO DAMN BIG"
  104. }
  105. }
  106. },
  107. {
  108. name: "Macro",
  109. height: math.unit(100, "meter"),
  110. info: {
  111. description: {
  112. mode: "append",
  113. text: "\n\nTOO DAMN BIG"
  114. }
  115. }
  116. },
  117. {
  118. name: "Macro+",
  119. height: math.unit(1000, "meter")
  120. },
  121. {
  122. name: "Megamacro",
  123. height: math.unit(10, "miles")
  124. }
  125. ],
  126. {
  127. description: {
  128. title: "Bio",
  129. text: "Very furry. Sheds on everything."
  130. }
  131. }
  132. )
  133. };
  134. characterMakers["Sofia"] = () => {
  135. return makeCharacter(
  136. "Sofia",
  137. "ZakuraTech",
  138. {
  139. front: {
  140. height: math.unit(183, "cm"),
  141. weight: math.unit(80, "kg"),
  142. name: "Front",
  143. image: {
  144. source: "./media/characters/sofia/front.svg",
  145. bottom: 0.01,
  146. extra: 1 / (1 - 0.01)
  147. }
  148. },
  149. frontAlt: {
  150. height: math.unit(183, "cm"),
  151. weight: math.unit(80, "kg"),
  152. name: "Front (alt)",
  153. image: {
  154. source: "./media/characters/sofia/front-alt.svg"
  155. }
  156. },
  157. back: {
  158. height: math.unit(183, "cm"),
  159. weight: math.unit(80, "kg"),
  160. name: "Back",
  161. image: {
  162. source: "./media/characters/sofia/back.svg"
  163. }
  164. },
  165. },
  166. [
  167. {
  168. name: "Normal",
  169. height: math.unit(1.83, "meter")
  170. },
  171. {
  172. name: "Macro",
  173. height: math.unit(96, "feet"),
  174. default: true
  175. },
  176. {
  177. name: "Megamerger",
  178. height: math.unit(650, "feet")
  179. },
  180. ]
  181. )
  182. };
  183. characterMakers["March"] = () => {
  184. return makeCharacter(
  185. "March",
  186. "March-Dragon",
  187. {
  188. front: {
  189. height: math.unit(7, "feet"),
  190. weight: math.unit(100, "kg"),
  191. name: "Front",
  192. image: {
  193. source: "./media/characters/march/front.svg",
  194. extra: (1 / (1 - 0.015)),
  195. bottom: 0.015
  196. }
  197. },
  198. foot: {
  199. height: math.unit(0.9, "feet"),
  200. name: "Foot",
  201. image: {
  202. source: "./media/characters/march/foot.svg"
  203. }
  204. },
  205. },
  206. [
  207. {
  208. name: "Normal",
  209. height: math.unit(7.9, "feet")
  210. },
  211. {
  212. name: "Macro",
  213. height: math.unit(220, "meters")
  214. },
  215. {
  216. name: "Megamacro",
  217. height: math.unit(2.98, "km"),
  218. default: true
  219. },
  220. {
  221. name: "Gigamacro",
  222. height: math.unit(15963, "km")
  223. },
  224. {
  225. name: "Teramacro",
  226. height: math.unit(2980000000, "km")
  227. },
  228. {
  229. name: "Examacro",
  230. height: math.unit(250, "parsecs")
  231. },
  232. ]
  233. )
  234. };
  235. characterMakers["Noir"] = () => {
  236. return makeCharacter(
  237. "Noir",
  238. "March-Dragon",
  239. {
  240. front: {
  241. height: math.unit(6, "feet"),
  242. weight: math.unit(60, "kg"),
  243. name: "Front",
  244. image: {
  245. source: "./media/characters/noir/front.svg",
  246. extra: (1 / (1 - 0.032)),
  247. bottom: 0.032
  248. }
  249. },
  250. },
  251. [
  252. {
  253. name: "Normal",
  254. height: math.unit(6.6, "feet")
  255. },
  256. {
  257. name: "Macro",
  258. height: math.unit(500, "feet")
  259. },
  260. {
  261. name: "Megamacro",
  262. height: math.unit(2.5, "km"),
  263. default: true
  264. },
  265. {
  266. name: "Gigamacro",
  267. height: math.unit(22500, "km")
  268. },
  269. {
  270. name: "Teramacro",
  271. height: math.unit(2500000000, "km")
  272. },
  273. {
  274. name: "Examacro",
  275. height: math.unit(200, "parsecs")
  276. },
  277. ]
  278. )
  279. };
  280. characterMakers["Okuri"] = () => {
  281. return makeCharacter(
  282. "Okuri",
  283. "OrinoMechadragon",
  284. {
  285. front: {
  286. height: math.unit(7, "feet"),
  287. weight: math.unit(100, "kg"),
  288. name: "Front",
  289. image: {
  290. source: "./media/characters/okuri/front.svg",
  291. extra: (1 / (1 - 0.037)),
  292. bottom: 0.037
  293. }
  294. },
  295. back: {
  296. height: math.unit(7, "feet"),
  297. weight: math.unit(100, "kg"),
  298. name: "Back",
  299. image: {
  300. source: "./media/characters/okuri/back.svg",
  301. extra: (1 / (1 - 0.007)),
  302. bottom: 0.007
  303. }
  304. },
  305. },
  306. [
  307. {
  308. name: "Megamacro",
  309. height: math.unit(100, "miles"),
  310. default: true
  311. },
  312. ]
  313. )
  314. };
  315. characterMakers["Manny"] = () => {
  316. return makeCharacter(
  317. "Manny",
  318. "Dialuca01",
  319. {
  320. front: {
  321. height: math.unit(7, "feet"),
  322. weight: math.unit(100, "kg"),
  323. name: "Front",
  324. image: {
  325. source: "./media/characters/manny/front.svg",
  326. extra: 1 / (1 - 0.06),
  327. bottom: 0.06
  328. }
  329. },
  330. back: {
  331. height: math.unit(7, "feet"),
  332. weight: math.unit(100, "kg"),
  333. name: "Back",
  334. image: {
  335. source: "./media/characters/manny/back.svg",
  336. extra: 1 / (1 - 0.014),
  337. bottom: 0.014
  338. }
  339. },
  340. },
  341. [
  342. {
  343. name: "Normal",
  344. height: math.unit(7, "feet"),
  345. },
  346. {
  347. name: "Macro",
  348. height: math.unit(78, "feet"),
  349. default: true
  350. },
  351. {
  352. name: "Macro+",
  353. height: math.unit(300, "meters")
  354. },
  355. {
  356. name: "Macro++",
  357. height: math.unit(2400, "meters")
  358. },
  359. {
  360. name: "Megamacro",
  361. height: math.unit(5167, "meters")
  362. },
  363. {
  364. name: "Gigamacro",
  365. height: math.unit(41769, "miles")
  366. },
  367. ]
  368. )
  369. };
  370. characterMakers["Adake"] = () => {
  371. return makeCharacter(
  372. "Adake",
  373. "Dialuca01",
  374. {
  375. front: {
  376. height: math.unit(7, "feet"),
  377. weight: math.unit(100, "kg"),
  378. name: "Front",
  379. image: {
  380. source: "./media/characters/adake/front-1.svg"
  381. }
  382. },
  383. frontAlt: {
  384. height: math.unit(7, "feet"),
  385. weight: math.unit(100, "kg"),
  386. name: "Front (Alt)",
  387. image: {
  388. source: "./media/characters/adake/front-2.svg",
  389. extra: (1 / (1 - 0.01)),
  390. bottom: 0.01
  391. }
  392. },
  393. back: {
  394. height: math.unit(7, "feet"),
  395. weight: math.unit(100, "kg"),
  396. name: "Back",
  397. image: {
  398. source: "./media/characters/adake/back.svg",
  399. }
  400. },
  401. kneel: {
  402. height: math.unit(5.385, "feet"),
  403. weight: math.unit(100, "kg"),
  404. name: "Kneeling",
  405. image: {
  406. source: "./media/characters/adake/kneel.svg",
  407. bottom: 0.052
  408. }
  409. },
  410. },
  411. [
  412. {
  413. name: "Normal",
  414. height: math.unit(7, "feet"),
  415. },
  416. {
  417. name: "Macro",
  418. height: math.unit(78, "feet"),
  419. default: true
  420. },
  421. {
  422. name: "Macro+",
  423. height: math.unit(300, "meters")
  424. },
  425. {
  426. name: "Macro++",
  427. height: math.unit(2400, "meters")
  428. },
  429. {
  430. name: "Megamacro",
  431. height: math.unit(5167, "meters")
  432. },
  433. {
  434. name: "Gigamacro",
  435. height: math.unit(41769, "miles")
  436. },
  437. ]
  438. )
  439. };
  440. characterMakers["Elijah"] = () => {
  441. return makeCharacter(
  442. "Elijah",
  443. "Elijah",
  444. {
  445. side: {
  446. height: math.unit(7, "feet"),
  447. weight: math.unit(50, "kg"),
  448. name: "Side",
  449. image: {
  450. source: "./media/characters/elijah/side.svg",
  451. extra: (1 / (1 - 0.065)),
  452. bottom: 0.065
  453. }
  454. },
  455. foot: {
  456. height: math.unit(2.05, "feet"),
  457. name: "Foot",
  458. image: {
  459. source: "./media/characters/elijah/foot.svg"
  460. }
  461. },
  462. },
  463. [
  464. {
  465. name: "Normal",
  466. height: math.unit(1.65, "meters")
  467. },
  468. {
  469. name: "Macro",
  470. height: math.unit(55, "meters"),
  471. default: true
  472. },
  473. {
  474. name: "Macro+",
  475. height: math.unit(105, "meters")
  476. },
  477. ]
  478. )
  479. };
  480. characterMakers["Rai"] = () => {
  481. return makeCharacter(
  482. "Rai",
  483. "shadowblade945",
  484. {
  485. front: {
  486. height: math.unit(11, "feet"),
  487. weight: math.unit(80, "kg"),
  488. name: "Front",
  489. image: {
  490. source: "./media/characters/rai/front.svg",
  491. extra: (1 / (1 - 0.03)),
  492. bottom: 0.03
  493. }
  494. },
  495. side: {
  496. height: math.unit(11, "feet"),
  497. weight: math.unit(80, "kg"),
  498. name: "Side",
  499. image: {
  500. source: "./media/characters/rai/side.svg"
  501. }
  502. },
  503. back: {
  504. height: math.unit(11, "feet"),
  505. weight: math.unit(80, "lb"),
  506. name: "Back",
  507. image: {
  508. source: "./media/characters/rai/back.svg",
  509. extra: (1 / (1 - 0.01)),
  510. bottom: 0.01
  511. }
  512. },
  513. feral: {
  514. height: math.unit(11, "feet"),
  515. weight: math.unit(800, "lb"),
  516. name: "Feral",
  517. image: {
  518. source: "./media/characters/rai/feral.svg",
  519. extra: 1050/659 * (1 / (1 - 0.07)),
  520. bottom: 0.07
  521. }
  522. },
  523. maw: {
  524. height: math.unit(6/3.81416, "feet"),
  525. name: "Maw",
  526. image: {
  527. source: "./media/characters/rai/maw.svg"
  528. }
  529. },
  530. },
  531. [
  532. {
  533. name: "Normal",
  534. height: math.unit(11, "feet")
  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. default: true
  1023. }
  1024. ]
  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. default: true
  1055. },
  1056. {
  1057. name: "Gigamacro",
  1058. height: math.unit(5000, "miles")
  1059. },
  1060. {
  1061. name: "Teramacro",
  1062. height: math.unit(100, "parsecs")
  1063. }
  1064. ]
  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. default: true
  1102. },
  1103. {
  1104. name: "Large",
  1105. height: math.unit(25, "feet")
  1106. },
  1107. {
  1108. name: "Macro",
  1109. height: math.unit(0.25, "miles")
  1110. },
  1111. {
  1112. name: "Megamacro",
  1113. height: math.unit(10, "miles")
  1114. }
  1115. ]
  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. default: true
  1137. }
  1138. ]
  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(12, "feet"),
  1173. default: true
  1174. },
  1175. {
  1176. name: "Macro",
  1177. height: math.unit(1500, "feet")
  1178. },
  1179. {
  1180. name: "Megamacro",
  1181. height: math.unit(2, "miles")
  1182. }
  1183. ]
  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. default: true
  1225. },
  1226. {
  1227. name: "Megamacro",
  1228. height: math.unit(10, "miles")
  1229. },
  1230. {
  1231. name: "Gigamacro",
  1232. height: math.unit(25000, "miles")
  1233. },
  1234. {
  1235. name: "Full-Size",
  1236. height: math.unit(8000000, "gigaparsecs")
  1237. }
  1238. ]
  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. default: true
  1271. },
  1272. {
  1273. name: "Megamacro",
  1274. height: math.unit(50, "miles")
  1275. },
  1276. {
  1277. name: "Gigamacro",
  1278. height: math.unit(100000, "miles")
  1279. },
  1280. {
  1281. name: "Full-Size",
  1282. height: math.unit(3000000000, "miles")
  1283. }
  1284. ]
  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. default: true
  1314. },
  1315. {
  1316. name: "Megamacro",
  1317. height: math.unit(5, "miles")
  1318. },
  1319. {
  1320. name: "Full-Size",
  1321. height: math.unit(600, "kiloparsecs")
  1322. }
  1323. ]
  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. default: true
  1358. },
  1359. {
  1360. name: "Macro",
  1361. height: math.unit(300, "feet")
  1362. },
  1363. {
  1364. name: "Macro+",
  1365. height: math.unit(750, "feet")
  1366. },
  1367. {
  1368. name: "Megamacro",
  1369. height: math.unit(3, "miles")
  1370. }
  1371. ]
  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. default: true
  1403. },
  1404. {
  1405. name: "Macro+",
  1406. height: math.unit(300, "feet")
  1407. },
  1408. {
  1409. name: "Megamacro",
  1410. height: math.unit(20000, "feet")
  1411. }
  1412. ]
  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. default: true
  1452. },
  1453. {
  1454. name: "Macro+",
  1455. height: math.unit(2000, "feet")
  1456. },
  1457. {
  1458. name: "True Form",
  1459. height: math.unit(8924, "miles")
  1460. }
  1461. ]
  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. default: true
  1495. },
  1496. {
  1497. name: "Reasonably Sized",
  1498. height: math.unit(25000, "parsecs")
  1499. },
  1500. {
  1501. name: "Slightly Uncompressed",
  1502. height: math.unit(7.77e31, "parsecs")
  1503. },
  1504. {
  1505. name: "Omniversal",
  1506. height: math.unit(1e300, "meters")
  1507. },
  1508. ]
  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. default: true
  1538. }
  1539. ]
  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. default: true
  1571. },
  1572. {
  1573. name: "Large",
  1574. height: math.unit(10, "meters")
  1575. },
  1576. {
  1577. name: "Macro",
  1578. height: math.unit(2500, "meters")
  1579. },
  1580. {
  1581. name: "Megamacro",
  1582. height: math.unit(5e6, "meters")
  1583. },
  1584. {
  1585. name: "Examacro",
  1586. height: math.unit(5e12, "lightyears")
  1587. },
  1588. {
  1589. name: "Max Size",
  1590. height: math.unit(1e31, "lightyears")
  1591. }
  1592. ]
  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. // TODO check why I did this lol
  1633. {
  1634. name: "Standard",
  1635. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1636. default: true
  1637. },
  1638. {
  1639. name: "Macro",
  1640. height: math.unit(200, "feet")
  1641. },
  1642. {
  1643. name: "Gigamacro",
  1644. height: math.unit(13000, "km")
  1645. }
  1646. ]
  1647. )
  1648. };
  1649. characterMakers["Mountain"] = () => {
  1650. return makeCharacter(
  1651. "Mountain",
  1652. "Asana",
  1653. {
  1654. front: {
  1655. height: math.unit(6, "feet"),
  1656. weight: math.unit(175, "lb"),
  1657. name: "Front",
  1658. image: {
  1659. source: "./media/characters/mountain/front.svg"
  1660. }
  1661. },
  1662. back: {
  1663. height: math.unit(6, "feet"),
  1664. weight: math.unit(175, "lb"),
  1665. name: "Back",
  1666. image: {
  1667. source: "./media/characters/mountain/back.svg"
  1668. }
  1669. },
  1670. },
  1671. [
  1672. {
  1673. name: "Large",
  1674. height: math.unit(20, "meters")
  1675. },
  1676. {
  1677. name: "Macro",
  1678. height: math.unit(300, "meters")
  1679. },
  1680. {
  1681. name: "Gigamacro",
  1682. height: math.unit(10000, "km"),
  1683. default: true
  1684. },
  1685. {
  1686. name: "Examacro",
  1687. height: math.unit(10e9, "lightyears")
  1688. }
  1689. ]
  1690. )
  1691. };
  1692. characterMakers["Rick"] = () => {
  1693. return makeCharacter(
  1694. "Rick",
  1695. "Victni",
  1696. {
  1697. front: {
  1698. height: math.unit(8, "feet"),
  1699. weight: math.unit(500, "lb"),
  1700. name: "Front",
  1701. image: {
  1702. source: "./media/characters/rick/front.svg"
  1703. }
  1704. }
  1705. },
  1706. [
  1707. {
  1708. name: "Normal",
  1709. height: math.unit(8, "feet"),
  1710. default: true
  1711. },
  1712. {
  1713. name: "Macro",
  1714. height: math.unit(5, "km")
  1715. }
  1716. ]
  1717. )
  1718. };
  1719. characterMakers["Ona"] = () => {
  1720. return makeCharacter(
  1721. "Ona",
  1722. "Arrogance127",
  1723. {
  1724. front: {
  1725. height: math.unit(8, "feet"),
  1726. weight: math.unit(120, "lb"),
  1727. name: "Front",
  1728. image: {
  1729. source: "./media/characters/ona/front.svg"
  1730. }
  1731. },
  1732. frontAlt: {
  1733. height: math.unit(8, "feet"),
  1734. weight: math.unit(120, "lb"),
  1735. name: "Front (Alt)",
  1736. image: {
  1737. source: "./media/characters/ona/front-alt.svg"
  1738. }
  1739. },
  1740. back: {
  1741. height: math.unit(8, "feet"),
  1742. weight: math.unit(120, "lb"),
  1743. name: "Back",
  1744. image: {
  1745. source: "./media/characters/ona/back.svg"
  1746. }
  1747. },
  1748. foot: {
  1749. height: math.unit(1.1, "feet"),
  1750. name: "Foot",
  1751. image: {
  1752. source: "./media/characters/ona/foot.svg"
  1753. }
  1754. }
  1755. },
  1756. [
  1757. {
  1758. name: "Megamacro",
  1759. height: math.unit(70, "km"),
  1760. default: true
  1761. },
  1762. {
  1763. name: "Gigamacro",
  1764. height: math.unit(681818, "miles")
  1765. },
  1766. {
  1767. name: "Examacro",
  1768. height: math.unit(3800000, "lightyears")
  1769. },
  1770. ]
  1771. )
  1772. };
  1773. characterMakers["Mech"] = () => {
  1774. return makeCharacter(
  1775. "Mech",
  1776. "mechEdragon",
  1777. {
  1778. front: {
  1779. height: math.unit(12, "feet"),
  1780. weight: math.unit(3000, "lb"),
  1781. name: "Front",
  1782. image: {
  1783. source: "./media/characters/mech/front.svg",
  1784. bottom: 0.025,
  1785. }
  1786. },
  1787. back: {
  1788. height: math.unit(12, "feet"),
  1789. weight: math.unit(3000, "lb"),
  1790. name: "Back",
  1791. image: {
  1792. source: "./media/characters/mech/back.svg",
  1793. bottom: 0.03,
  1794. }
  1795. }
  1796. },
  1797. [
  1798. {
  1799. name: "Normal",
  1800. height: math.unit(12, "feet")
  1801. },
  1802. {
  1803. name: "Macro",
  1804. height: math.unit(300, "feet"),
  1805. default: true
  1806. },
  1807. {
  1808. name: "Macro+",
  1809. height: math.unit(1500, "feet")
  1810. },
  1811. ]
  1812. )
  1813. };
  1814. characterMakers["Gregory"] = () => {
  1815. return makeCharacter(
  1816. "Gregory",
  1817. "GregoryKlippenspringer",
  1818. {
  1819. front: {
  1820. height: math.unit(1.3, "meter"),
  1821. weight: math.unit(30, "kg"),
  1822. name: "Front",
  1823. image: {
  1824. source: "./media/characters/gregory/front.svg",
  1825. }
  1826. }
  1827. },
  1828. [
  1829. {
  1830. name: "Normal",
  1831. height: math.unit(1.3, "meter"),
  1832. default: true
  1833. },
  1834. {
  1835. name: "Macro",
  1836. height: math.unit(20, "meter")
  1837. }
  1838. ]
  1839. )
  1840. };
  1841. characterMakers["Elory"] = () => {
  1842. return makeCharacter(
  1843. "Elory",
  1844. "GregoryKlippenspringer",
  1845. {
  1846. front: {
  1847. height: math.unit(2.8, "meter"),
  1848. weight: math.unit(200, "kg"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/elory/front.svg",
  1852. }
  1853. }
  1854. },
  1855. [
  1856. {
  1857. name: "Normal",
  1858. height: math.unit(2.8, "meter"),
  1859. default: true
  1860. },
  1861. {
  1862. name: "Macro",
  1863. height: math.unit(38, "meter")
  1864. }
  1865. ]
  1866. )
  1867. };
  1868. characterMakers["Angelpatamon"] = () => {
  1869. return makeCharacter(
  1870. "Angelpatamon",
  1871. "GregoryKlippenspringer",
  1872. {
  1873. front: {
  1874. height: math.unit(470, "feet"),
  1875. weight: math.unit(924, "tons"),
  1876. name: "Front",
  1877. image: {
  1878. source: "./media/characters/angelpatamon/front.svg",
  1879. }
  1880. }
  1881. },
  1882. [
  1883. {
  1884. name: "Normal",
  1885. height: math.unit(470, "feet"),
  1886. default: true
  1887. },
  1888. {
  1889. name: "Deity Size I",
  1890. height: math.unit(28651.2, "km")
  1891. },
  1892. {
  1893. name: "Deity Size II",
  1894. height: math.unit(171907.2, "km")
  1895. }
  1896. ]
  1897. )
  1898. };
  1899. characterMakers["Cryae"] = () => {
  1900. return makeCharacter(
  1901. "Cryae",
  1902. "GregoryKlippenspringer",
  1903. {
  1904. side: {
  1905. height: math.unit(7.2, "meter"),
  1906. weight: math.unit(8.2, "tons"),
  1907. name: "Side",
  1908. image: {
  1909. source: "./media/characters/cryae/side.svg",
  1910. extra: 3500 / 1500
  1911. }
  1912. }
  1913. },
  1914. [
  1915. {
  1916. name: "Normal",
  1917. height: math.unit(7.2, "meter"),
  1918. default: true
  1919. }
  1920. ]
  1921. )
  1922. };
  1923. characterMakers["Xera"] = () => {
  1924. return makeCharacter(
  1925. "Xera",
  1926. "Asana",
  1927. {
  1928. front: {
  1929. height: math.unit(6, "feet"),
  1930. weight: math.unit(175, "lb"),
  1931. name: "Front",
  1932. image: {
  1933. source: "./media/characters/xera/front.svg",
  1934. extra: 2300 / 2061
  1935. }
  1936. },
  1937. side: {
  1938. height: math.unit(6, "feet"),
  1939. weight: math.unit(175, "lb"),
  1940. name: "Side",
  1941. image: {
  1942. source: "./media/characters/xera/side.svg",
  1943. extra: 2300 / 2061
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(6, "feet"),
  1948. weight: math.unit(175, "lb"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/xera/back.svg"
  1952. }
  1953. },
  1954. },
  1955. [
  1956. {
  1957. name: "Small",
  1958. height: math.unit(10, "feet")
  1959. },
  1960. {
  1961. name: "Macro",
  1962. height: math.unit(500, "meters"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Macro+",
  1967. height: math.unit(10, "km")
  1968. },
  1969. {
  1970. name: "Gigamacro",
  1971. height: math.unit(25000, "km")
  1972. },
  1973. {
  1974. name: "Teramacro",
  1975. height: math.unit(3e6, "km")
  1976. }
  1977. ]
  1978. )
  1979. };
  1980. characterMakers["Nebula"] = () => {
  1981. return makeCharacter(
  1982. "Nebula",
  1983. "Cilenomon",
  1984. {
  1985. front: {
  1986. height: math.unit(6, "feet"),
  1987. weight: math.unit(175, "lb"),
  1988. name: "Front",
  1989. image: {
  1990. source: "./media/characters/nebula/front.svg",
  1991. extra: 2600 / 2450
  1992. }
  1993. }
  1994. },
  1995. [
  1996. {
  1997. name: "Small",
  1998. height: math.unit(4.5, "meters")
  1999. },
  2000. {
  2001. name: "Macro",
  2002. height: math.unit(1500, "meters"),
  2003. default: true
  2004. },
  2005. {
  2006. name: "Megamacro",
  2007. height: math.unit(150, "km")
  2008. },
  2009. {
  2010. name: "Gigamacro",
  2011. height: math.unit(27000, "km")
  2012. }
  2013. ]
  2014. )
  2015. };
  2016. characterMakers["Abysgar"] = () => {
  2017. return makeCharacter(
  2018. "Abysgar",
  2019. "Cilenomon",
  2020. {
  2021. front: {
  2022. height: math.unit(6, "feet"),
  2023. weight: math.unit(225, "lb"),
  2024. name: "Front",
  2025. image: {
  2026. source: "./media/characters/abysgar/front.svg"
  2027. }
  2028. }
  2029. },
  2030. [
  2031. {
  2032. name: "Small",
  2033. height: math.unit(4.5, "meters")
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(1250, "meters"),
  2038. default: true
  2039. },
  2040. {
  2041. name: "Megamacro",
  2042. height: math.unit(125, "km")
  2043. },
  2044. {
  2045. name: "Gigamacro",
  2046. height: math.unit(26000, "km")
  2047. }
  2048. ]
  2049. )
  2050. };
  2051. characterMakers["Yakuz"] = () => {
  2052. return makeCharacter(
  2053. "Yakuz",
  2054. "Cilenomon",
  2055. {
  2056. front: {
  2057. height: math.unit(6, "feet"),
  2058. weight: math.unit(180, "lb"),
  2059. name: "Front",
  2060. image: {
  2061. source: "./media/characters/yakuz/front.svg"
  2062. }
  2063. }
  2064. },
  2065. [
  2066. {
  2067. name: "Small",
  2068. height: math.unit(5, "meters")
  2069. },
  2070. {
  2071. name: "Macro",
  2072. height: math.unit(1500, "meters"),
  2073. default: true
  2074. },
  2075. {
  2076. name: "Megamacro",
  2077. height: math.unit(200, "km")
  2078. },
  2079. {
  2080. name: "Gigamacro",
  2081. height: math.unit(100000, "km")
  2082. }
  2083. ]
  2084. )
  2085. };
  2086. characterMakers["Mirova"] = () => {
  2087. return makeCharacter(
  2088. "Mirova",
  2089. "Cilenomon",
  2090. {
  2091. front: {
  2092. height: math.unit(6, "feet"),
  2093. weight: math.unit(175, "lb"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/mirova/front.svg"
  2097. }
  2098. }
  2099. },
  2100. [
  2101. {
  2102. name: "Small",
  2103. height: math.unit(5, "meters")
  2104. },
  2105. {
  2106. name: "Macro",
  2107. height: math.unit(900, "meters"),
  2108. default: true
  2109. },
  2110. {
  2111. name: "Megamacro",
  2112. height: math.unit(135, "km")
  2113. },
  2114. {
  2115. name: "Gigamacro",
  2116. height: math.unit(20000, "km")
  2117. }
  2118. ]
  2119. )
  2120. };
  2121. characterMakers["Asana (Mech)"] = () => {
  2122. return makeCharacter(
  2123. "Asana (Mech)",
  2124. "Asana",
  2125. {
  2126. side: {
  2127. height: math.unit(28.35, "feet"),
  2128. weight: math.unit(99.75, "tons"),
  2129. name: "Side",
  2130. image: {
  2131. source: "./media/characters/asana-mech/side.svg"
  2132. }
  2133. }
  2134. },
  2135. [
  2136. {
  2137. name: "Normal",
  2138. height: math.unit(28.35, "feet"),
  2139. default: true
  2140. },
  2141. {
  2142. name: "Macro",
  2143. height: math.unit(2500, "feet")
  2144. },
  2145. {
  2146. name: "Megamacro",
  2147. height: math.unit(25, "miles")
  2148. },
  2149. {
  2150. name: "Examacro",
  2151. height: math.unit(6e8, "lightyears")
  2152. },
  2153. ]
  2154. )
  2155. };
  2156. characterMakers["Ashtrek"] = () => {
  2157. return makeCharacter(
  2158. "Ashtrek",
  2159. "Ashtrek",
  2160. {
  2161. front: {
  2162. height: math.unit(2, "meters"),
  2163. weight: math.unit(70, "kg"),
  2164. name: "Front",
  2165. image: {
  2166. source: "./media/characters/ashtrek/front.svg",
  2167. extra: 560/524 * (1 / (1 - 0.01)),
  2168. bottom: 0.01
  2169. }
  2170. },
  2171. frontArmor: {
  2172. height: math.unit(2, "meters"),
  2173. weight: math.unit(76, "kg"),
  2174. name: "Front (Armor)",
  2175. image: {
  2176. source: "./media/characters/ashtrek/front-armor.svg",
  2177. extra: 561/527 * (1 / (1 - 0.01)),
  2178. bottom: 0.01
  2179. }
  2180. },
  2181. side: {
  2182. height: math.unit(2, "meters"),
  2183. weight: math.unit(70, "kg"),
  2184. name: "Side",
  2185. image: {
  2186. source: "./media/characters/ashtrek/side.svg",
  2187. extra: 1717/1609 * (1 / (1 - 0.005)),
  2188. bottom: 0.005
  2189. }
  2190. },
  2191. back: {
  2192. height: math.unit(2, "meters"),
  2193. weight: math.unit(70, "kg"),
  2194. name: "Back",
  2195. image: {
  2196. source: "./media/characters/ashtrek/back.svg",
  2197. extra: 1570/1501
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "DEFCON 5",
  2204. height: math.unit(5, "meters")
  2205. },
  2206. {
  2207. name: "DEFCON 4",
  2208. height: math.unit(500, "meters"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "DEFCON 3",
  2213. height: math.unit(5, "km")
  2214. },
  2215. {
  2216. name: "DEFCON 2",
  2217. height: math.unit(500, "km")
  2218. },
  2219. {
  2220. name: "DEFCON 1",
  2221. height: math.unit(500000, "km")
  2222. },
  2223. {
  2224. name: "DEFCON 0",
  2225. height: math.unit(3, "gigaparsecs")
  2226. },
  2227. ]
  2228. )
  2229. };
  2230. characterMakers["Gale"] = () => {
  2231. return makeCharacter(
  2232. "Gale",
  2233. "GaleFierre",
  2234. {
  2235. front: {
  2236. height: math.unit(2, "meters"),
  2237. weight: math.unit(76, "kg"),
  2238. name: "Front",
  2239. image: {
  2240. source: "./media/characters/gale/front.svg"
  2241. }
  2242. },
  2243. frontAlt1: {
  2244. height: math.unit(2, "meters"),
  2245. weight: math.unit(76, "kg"),
  2246. name: "Front (Alt 1)",
  2247. image: {
  2248. source: "./media/characters/gale/front-alt-1.svg"
  2249. }
  2250. },
  2251. frontAlt2: {
  2252. height: math.unit(2, "meters"),
  2253. weight: math.unit(76, "kg"),
  2254. name: "Front (Alt 2)",
  2255. image: {
  2256. source: "./media/characters/gale/front-alt-2.svg"
  2257. }
  2258. },
  2259. },
  2260. [
  2261. {
  2262. name: "Normal",
  2263. height: math.unit(7, "feet")
  2264. },
  2265. {
  2266. name: "Macro",
  2267. height: math.unit(150, "feet"),
  2268. default: true
  2269. },
  2270. {
  2271. name: "Macro+",
  2272. height: math.unit(300, "feet")
  2273. },
  2274. ]
  2275. )
  2276. };
  2277. characterMakers["Draylen"] = () => {
  2278. return makeCharacter(
  2279. "Draylen",
  2280. "Longshot Coyote",
  2281. {
  2282. front: {
  2283. height: math.unit(2, "meters"),
  2284. weight: math.unit(76, "kg"),
  2285. name: "Front",
  2286. image: {
  2287. source: "./media/characters/draylen/front.svg"
  2288. }
  2289. }
  2290. },
  2291. [
  2292. {
  2293. name: "Macro",
  2294. height: math.unit(150, "feet"),
  2295. default: true
  2296. }
  2297. ]
  2298. )
  2299. };
  2300. characterMakers["Chez"] = () => {
  2301. return makeCharacter(
  2302. "Chez",
  2303. "Ashtrek",
  2304. {
  2305. front: {
  2306. height: math.unit(7 + 9 / 12, "feet"),
  2307. weight: math.unit(379, "lbs"),
  2308. name: "Front",
  2309. image: {
  2310. source: "./media/characters/chez/front.svg"
  2311. }
  2312. },
  2313. side: {
  2314. height: math.unit(7 + 9 / 12, "feet"),
  2315. weight: math.unit(379, "lbs"),
  2316. name: "Side",
  2317. image: {
  2318. source: "./media/characters/chez/side.svg"
  2319. }
  2320. }
  2321. },
  2322. [
  2323. {
  2324. name: "Normal",
  2325. height: math.unit(7 + 9 / 12, "feet"),
  2326. default: true
  2327. },
  2328. {
  2329. name: "God King",
  2330. height: math.unit(9750000, "meters")
  2331. }
  2332. ]
  2333. )
  2334. };
  2335. characterMakers["Kaylum"] = () => {
  2336. return makeCharacter(
  2337. "Kaylum",
  2338. "DJDarkJaro",
  2339. {
  2340. front: {
  2341. height: math.unit(6, "feet"),
  2342. weight: math.unit(275, "lbs"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/kaylum/front.svg",
  2346. bottom: 0.01,
  2347. extra: 1166 / 1031
  2348. }
  2349. },
  2350. frontWingless: {
  2351. height: math.unit(6, "feet"),
  2352. weight: math.unit(275, "lbs"),
  2353. name: "Front (Wingless)",
  2354. image: {
  2355. source: "./media/characters/kaylum/front-wingless.svg",
  2356. bottom: 0.01,
  2357. extra: 1117 / 1031
  2358. }
  2359. }
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(3.05, "meters")
  2365. },
  2366. {
  2367. name: "Master",
  2368. height: math.unit(5.5, "meters")
  2369. },
  2370. {
  2371. name: "Rampage",
  2372. height: math.unit(19, "meters")
  2373. },
  2374. {
  2375. name: "Macro Lite",
  2376. height: math.unit(37, "meters")
  2377. },
  2378. {
  2379. name: "Hyper Predator",
  2380. height: math.unit(61, "meters")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(138, "meters"),
  2385. default: true
  2386. }
  2387. ]
  2388. )
  2389. };
  2390. characterMakers["Geta"] = () => {
  2391. return makeCharacter(
  2392. "Geta",
  2393. "Aeznon",
  2394. {
  2395. front: {
  2396. height: math.unit(6, "feet"),
  2397. weight: math.unit(150, "lbs"),
  2398. name: "Front",
  2399. image: {
  2400. source: "./media/characters/geta/front.svg"
  2401. }
  2402. }
  2403. },
  2404. [
  2405. {
  2406. name: "Micro",
  2407. height: math.unit(3, "inches"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Normal",
  2412. height: math.unit(5 + 5 / 12, "feet")
  2413. }
  2414. ]
  2415. )
  2416. };
  2417. characterMakers["Tyrnn"] = () => {
  2418. return makeCharacter(
  2419. "Tyrnn",
  2420. "Tyrnn",
  2421. {
  2422. front: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(300, "lbs"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/tyrnn/front.svg"
  2428. }
  2429. }
  2430. },
  2431. [
  2432. {
  2433. name: "Main Height",
  2434. height: math.unit(355, "feet"),
  2435. default: true
  2436. },
  2437. {
  2438. name: "Fave. Height",
  2439. height: math.unit(2400, "feet")
  2440. }
  2441. ]
  2442. )
  2443. };
  2444. characterMakers["Apple"] = () => {
  2445. return makeCharacter(
  2446. "Apple",
  2447. "Appledectomy",
  2448. {
  2449. front: {
  2450. height: math.unit(6, "feet"),
  2451. weight: math.unit(300, "lbs"),
  2452. name: "Front",
  2453. image: {
  2454. source: "./media/characters/appledectomy/front.svg"
  2455. }
  2456. }
  2457. },
  2458. [
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(2500, "feet")
  2462. },
  2463. {
  2464. name: "Megamacro",
  2465. height: math.unit(50, "miles"),
  2466. default: true
  2467. },
  2468. {
  2469. name: "Gigamacro",
  2470. height: math.unit(5000, "miles")
  2471. },
  2472. {
  2473. name: "Teramacro",
  2474. height: math.unit(250000, "miles")
  2475. },
  2476. ]
  2477. )
  2478. };
  2479. characterMakers["Vulpes"] = () => {
  2480. return makeCharacter(
  2481. "Vulpes",
  2482. "VulpesPawpad",
  2483. {
  2484. front: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(200, "lbs"),
  2487. name: "Front",
  2488. image: {
  2489. source: "./media/characters/vulpes/front.svg"
  2490. }
  2491. },
  2492. side: {
  2493. height: math.unit(6, "feet"),
  2494. weight: math.unit(200, "lbs"),
  2495. name: "Side",
  2496. image: {
  2497. source: "./media/characters/vulpes/side.svg"
  2498. }
  2499. },
  2500. back: {
  2501. height: math.unit(6, "feet"),
  2502. weight: math.unit(200, "lbs"),
  2503. name: "Back",
  2504. image: {
  2505. source: "./media/characters/vulpes/back.svg"
  2506. }
  2507. },
  2508. feet: {
  2509. height: math.unit(1.276, "feet"),
  2510. name: "Feet",
  2511. image: {
  2512. source: "./media/characters/vulpes/feet.svg"
  2513. }
  2514. },
  2515. },
  2516. [
  2517. {
  2518. name: "Micro",
  2519. height: math.unit(2, "inches")
  2520. },
  2521. {
  2522. name: "Normal",
  2523. height: math.unit(6.3, "feet")
  2524. },
  2525. {
  2526. name: "Macro",
  2527. height: math.unit(850, "feet")
  2528. },
  2529. {
  2530. name: "Megamacro",
  2531. height: math.unit(7500, "feet"),
  2532. default: true
  2533. },
  2534. {
  2535. name: "Gigamacro",
  2536. height: math.unit(570000, "miles")
  2537. }
  2538. ]
  2539. )
  2540. };
  2541. characterMakers["Rain Fallen"] = () => {
  2542. return makeCharacter(
  2543. "Rain Fallen",
  2544. "Rain Fallen",
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(210, "lbs"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/rain/front.svg"
  2552. }
  2553. },
  2554. side: {
  2555. height: math.unit(6, "feet"),
  2556. weight: math.unit(210, "lbs"),
  2557. name: "Side",
  2558. image: {
  2559. source: "./media/characters/rain/side.svg"
  2560. }
  2561. },
  2562. back: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(210, "lbs"),
  2565. name: "Back",
  2566. image: {
  2567. source: "./media/characters/rain/back.svg"
  2568. }
  2569. },
  2570. feral: {
  2571. height: math.unit(9, "feet"),
  2572. weight: math.unit(700, "lbs"),
  2573. name: "Feral",
  2574. image: {
  2575. source: "./media/characters/rain/feral.svg"
  2576. }
  2577. },
  2578. },
  2579. [
  2580. {
  2581. name: "Normal",
  2582. height: math.unit(5, "meter")
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(150, "meter"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Megamacro",
  2591. height: math.unit(278e6, "meter")
  2592. },
  2593. {
  2594. name: "Gigamacro",
  2595. height: math.unit(2e9, "meter")
  2596. },
  2597. {
  2598. name: "Teramacro",
  2599. height: math.unit(8e12, "meter")
  2600. },
  2601. {
  2602. name: "Devourer",
  2603. height: math.unit(14, "zettameters")
  2604. },
  2605. {
  2606. name: "Scarlet King",
  2607. height: math.unit(18, "yottameters")
  2608. },
  2609. {
  2610. name: "Void",
  2611. height: math.unit(6.66e66, "yottameters")
  2612. }
  2613. ]
  2614. )
  2615. };
  2616. characterMakers["Zaakira"] = () => {
  2617. return makeCharacter(
  2618. "Zaakira",
  2619. "Jazzywolf",
  2620. {
  2621. standing: {
  2622. height: math.unit(6, "feet"),
  2623. weight: math.unit(180, "lbs"),
  2624. name: "Standing",
  2625. image: {
  2626. source: "./media/characters/zaakira/standing.svg"
  2627. }
  2628. },
  2629. laying: {
  2630. height: math.unit(3, "feet"),
  2631. weight: math.unit(180, "lbs"),
  2632. name: "Laying",
  2633. image: {
  2634. source: "./media/characters/zaakira/laying.svg"
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Normal",
  2641. height: math.unit(12, "feet")
  2642. },
  2643. {
  2644. name: "Macro",
  2645. height: math.unit(279, "feet"),
  2646. default: true
  2647. }
  2648. ]
  2649. )
  2650. };
  2651. characterMakers["Sigvald"] = () => {
  2652. return makeCharacter(
  2653. "Sigvald",
  2654. "Sigvald",
  2655. {
  2656. front: {
  2657. height: math.unit(6, "feet"),
  2658. weight: math.unit(250, "lbs"),
  2659. name: "Front",
  2660. image: {
  2661. source: "./media/characters/sigvald/front.svg",
  2662. extra: 1000 / 850
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(250, "lbs"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/sigvald/back.svg"
  2671. }
  2672. },
  2673. },
  2674. [
  2675. {
  2676. name: "Normal",
  2677. height: math.unit(8, "feet")
  2678. },
  2679. {
  2680. name: "Large",
  2681. height: math.unit(12, "feet")
  2682. },
  2683. {
  2684. name: "Larger",
  2685. height: math.unit(20, "feet")
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(150, "feet")
  2690. },
  2691. {
  2692. name: "Macro+",
  2693. height: math.unit(200, "feet"),
  2694. default: true
  2695. },
  2696. ]
  2697. )
  2698. };
  2699. characterMakers["Scott"] = () => {
  2700. return makeCharacter(
  2701. "Scott",
  2702. "Scott",
  2703. {
  2704. side: {
  2705. height: math.unit(12, "feet"),
  2706. weight: math.unit(3000, "lbs"),
  2707. name: "Side",
  2708. image: {
  2709. source: "./media/characters/scott/side.svg",
  2710. extra: (1 / (1 - 0.069)),
  2711. bottom: 0.069
  2712. }
  2713. },
  2714. upright: {
  2715. height: math.unit(12, "feet"),
  2716. weight: math.unit(3000, "lbs"),
  2717. name: "Upright",
  2718. image: {
  2719. source: "./media/characters/scott/upright.svg",
  2720. extra: (1 / (1 - 0.05)),
  2721. bottom: 0.05
  2722. }
  2723. },
  2724. },
  2725. [
  2726. {
  2727. name: "Normal",
  2728. height: math.unit(12, "feet"),
  2729. default: true
  2730. },
  2731. ]
  2732. )
  2733. };
  2734. characterMakers["Tobias"] = () => {
  2735. return makeCharacter(
  2736. "Tobias",
  2737. "Tobias",
  2738. {
  2739. side: {
  2740. height: math.unit(8, "meters"),
  2741. weight: math.unit(84755, "lbs"),
  2742. name: "Side",
  2743. image: {
  2744. source: "./media/characters/tobias/side.svg",
  2745. extra: 5 / 4
  2746. }
  2747. },
  2748. },
  2749. [
  2750. {
  2751. name: "Normal",
  2752. height: math.unit(8, "meters"),
  2753. default: true
  2754. },
  2755. ]
  2756. )
  2757. };
  2758. characterMakers["Kieran"] = () => {
  2759. return makeCharacter(
  2760. "Kieran",
  2761. "Kieran",
  2762. {
  2763. front: {
  2764. height: math.unit(5.5, "feet"),
  2765. weight: math.unit(400, "lbs"),
  2766. name: "Front",
  2767. image: {
  2768. source: "./media/characters/kieran/front.svg",
  2769. extra: 1.05
  2770. }
  2771. },
  2772. side: {
  2773. height: math.unit(5.5, "feet"),
  2774. weight: math.unit(400, "lbs"),
  2775. name: "Side",
  2776. image: {
  2777. source: "./media/characters/kieran/side.svg",
  2778. extra: 950 / 850
  2779. }
  2780. },
  2781. },
  2782. [
  2783. {
  2784. name: "Normal",
  2785. height: math.unit(5.5, "feet"),
  2786. default: true
  2787. },
  2788. ]
  2789. )
  2790. };
  2791. characterMakers["Sanya"] = () => {
  2792. return makeCharacter(
  2793. "Sanya",
  2794. "BanterGhost",
  2795. {
  2796. side: {
  2797. height: math.unit(2, "meters"),
  2798. weight: math.unit(70, "kg"),
  2799. name: "Side",
  2800. image: {
  2801. source: "./media/characters/sanya/side.svg",
  2802. bottom: 0.02,
  2803. extra: 1.02
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Small",
  2810. height: math.unit(2, "meters")
  2811. },
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(3, "meters")
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(16, "meters"),
  2819. default: true
  2820. },
  2821. ]
  2822. )
  2823. };
  2824. characterMakers["Miranda"] = () => {
  2825. return makeCharacter(
  2826. "Miranda",
  2827. "MirandaArqayla",
  2828. {
  2829. side: {
  2830. height: math.unit(2, "meters"),
  2831. weight: math.unit(120, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/miranda/front.svg",
  2835. extra: 10.6 / 10
  2836. }
  2837. },
  2838. },
  2839. [
  2840. {
  2841. name: "Normal",
  2842. height: math.unit(10, "feet"),
  2843. default: true
  2844. }
  2845. ]
  2846. )
  2847. };
  2848. characterMakers["James"] = () => {
  2849. return makeCharacter(
  2850. "James",
  2851. "MirandaArqayla",
  2852. {
  2853. side: {
  2854. height: math.unit(2, "meters"),
  2855. weight: math.unit(100, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/james/front.svg",
  2859. extra: 10 / 8.5
  2860. }
  2861. },
  2862. },
  2863. [
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(8.5, "feet"),
  2867. default: true
  2868. }
  2869. ]
  2870. )
  2871. };
  2872. characterMakers["Heather"] = () => {
  2873. return makeCharacter(
  2874. "Heather",
  2875. "MirandaArqayla",
  2876. {
  2877. side: {
  2878. height: math.unit(9.5, "feet"),
  2879. weight: math.unit(2500, "lbs"),
  2880. name: "Side",
  2881. image: {
  2882. source: "./media/characters/heather/side.svg"
  2883. }
  2884. },
  2885. },
  2886. [
  2887. {
  2888. name: "Normal",
  2889. height: math.unit(9.5, "feet"),
  2890. default: true
  2891. }
  2892. ]
  2893. )
  2894. };
  2895. characterMakers["Lukas"] = () => {
  2896. return makeCharacter(
  2897. "Lukas",
  2898. "MirandaArqayla",
  2899. {
  2900. side: {
  2901. height: math.unit(6.5, "feet"),
  2902. weight: math.unit(400, "lbs"),
  2903. name: "Side",
  2904. image: {
  2905. source: "./media/characters/lukas/side.svg",
  2906. extra: 7.25 / 6.5
  2907. }
  2908. },
  2909. },
  2910. [
  2911. {
  2912. name: "Normal",
  2913. height: math.unit(6.5, "feet"),
  2914. default: true
  2915. }
  2916. ]
  2917. )
  2918. };
  2919. characterMakers["Louise"] = () => {
  2920. return makeCharacter(
  2921. "Louise",
  2922. "MirandaArqayla",
  2923. {
  2924. side: {
  2925. height: math.unit(5, "feet"),
  2926. weight: math.unit(3000, "lbs"),
  2927. name: "Side",
  2928. image: {
  2929. source: "./media/characters/louise/side.svg"
  2930. }
  2931. },
  2932. },
  2933. [
  2934. {
  2935. name: "Normal",
  2936. height: math.unit(5, "feet"),
  2937. default: true
  2938. }
  2939. ]
  2940. )
  2941. };
  2942. characterMakers["Ramona"] = () => {
  2943. return makeCharacter(
  2944. "Ramona",
  2945. "ZakuraTech",
  2946. {
  2947. side: {
  2948. height: math.unit(6, "feet"),
  2949. weight: math.unit(150, "lbs"),
  2950. name: "Side",
  2951. image: {
  2952. source: "./media/characters/ramona/side.svg"
  2953. }
  2954. },
  2955. },
  2956. [
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(5.3, "meters"),
  2960. default: true
  2961. },
  2962. {
  2963. name: "Macro",
  2964. height: math.unit(20, "stories")
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(50, "stories")
  2969. },
  2970. ]
  2971. )
  2972. };
  2973. characterMakers["Deerpuff"] = () => {
  2974. return makeCharacter(
  2975. "Deerpuff",
  2976. "Deerpuff",
  2977. {
  2978. standing: {
  2979. height: math.unit(5.75, "feet"),
  2980. weight: math.unit(160, "lbs"),
  2981. name: "Standing",
  2982. image: {
  2983. source: "./media/characters/deerpuff/standing.svg",
  2984. extra: 682 / 624
  2985. }
  2986. },
  2987. sitting: {
  2988. height: math.unit(5.75 / 1.79, "feet"),
  2989. weight: math.unit(160, "lbs"),
  2990. name: "Sitting",
  2991. image: {
  2992. source: "./media/characters/deerpuff/sitting.svg",
  2993. bottom: 44 / 400,
  2994. extra: 1 / (1 - 44 / 400)
  2995. }
  2996. },
  2997. taurLaying: {
  2998. height: math.unit(6, "feet"),
  2999. weight: math.unit(400, "lbs"),
  3000. name: "Taur (Laying)",
  3001. image: {
  3002. source: "./media/characters/deerpuff/taur-laying.svg"
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Puffball",
  3009. height: math.unit(6, "inches")
  3010. },
  3011. {
  3012. name: "Normalpuff",
  3013. height: math.unit(5.75, "feet")
  3014. },
  3015. {
  3016. name: "Macropuff",
  3017. height: math.unit(1500, "feet"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Megapuff",
  3022. height: math.unit(500, "miles")
  3023. },
  3024. {
  3025. name: "Gigapuff",
  3026. height: math.unit(250000, "miles")
  3027. },
  3028. {
  3029. name: "Omegapuff",
  3030. height: math.unit(1000, "lightyears")
  3031. },
  3032. ]
  3033. )
  3034. };
  3035. characterMakers["Vivian"] = () => {
  3036. return makeCharacter(
  3037. "Vivian",
  3038. "Fauxlacine",
  3039. {
  3040. stomping: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(170, "lbs"),
  3043. name: "Stomping",
  3044. image: {
  3045. source: "./media/characters/vivian/stomping.svg"
  3046. }
  3047. },
  3048. sitting: {
  3049. height: math.unit(6 / 1.75, "feet"),
  3050. weight: math.unit(170, "lbs"),
  3051. name: "Sitting",
  3052. image: {
  3053. source: "./media/characters/vivian/sitting.svg",
  3054. bottom: 1 / 6.4,
  3055. extra: (1 / (1 - 1 / 6.4)) * (1 + 164 / 1600)
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Normal",
  3062. height: math.unit(7, "feet"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Macro",
  3067. height: math.unit(10, "stories")
  3068. },
  3069. {
  3070. name: "Macro+",
  3071. height: math.unit(30, "stories")
  3072. },
  3073. {
  3074. name: "Megamacro",
  3075. height: math.unit(10, "miles")
  3076. },
  3077. {
  3078. name: "Megamacro+",
  3079. height: math.unit(2750000, "meters")
  3080. },
  3081. ]
  3082. )
  3083. };
  3084. characterMakers["Prince"] = () => {
  3085. return makeCharacter(
  3086. "Prince",
  3087. "Kurrikage",
  3088. {
  3089. front: {
  3090. height: math.unit(6, "feet"),
  3091. weight: math.unit(160, "lbs"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/prince/front.svg",
  3095. extra: 3400/3000
  3096. }
  3097. },
  3098. jumping: {
  3099. height: math.unit(6, "feet"),
  3100. weight: math.unit(160, "lbs"),
  3101. name: "Jumping",
  3102. image: {
  3103. source: "./media/characters/prince/jump.svg",
  3104. extra: 2555/2134
  3105. }
  3106. },
  3107. },
  3108. [
  3109. {
  3110. name: "Normal",
  3111. height: math.unit(7.75, "feet"),
  3112. default: true
  3113. }
  3114. ]
  3115. )
  3116. };
  3117. characterMakers["Psymon"] = () => {
  3118. return makeCharacter(
  3119. "Psymon",
  3120. "Kurrikage",
  3121. {
  3122. standing: {
  3123. height: math.unit(6, "feet"),
  3124. weight: math.unit(300, "lbs"),
  3125. name: "Standing",
  3126. image: {
  3127. source: "./media/characters/psymon/standing.svg",
  3128. extra: 1888/1810
  3129. }
  3130. },
  3131. slithering: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(300, "lbs"),
  3134. name: "Slithering",
  3135. image: {
  3136. source: "./media/characters/psymon/slithering.svg",
  3137. extra: 1330/1224
  3138. }
  3139. },
  3140. slitheringAlt: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(300, "lbs"),
  3143. name: "Slithering (Alt)",
  3144. image: {
  3145. source: "./media/characters/psymon/slithering-alt.svg",
  3146. extra: 1330/1224
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(11.25, "feet"),
  3154. default: true
  3155. }
  3156. ]
  3157. )
  3158. };
  3159. characterMakers["Daimos"] = () => {
  3160. return makeCharacter(
  3161. "Daimos",
  3162. "Kurrikage",
  3163. {
  3164. front: {
  3165. height: math.unit(6, "feet"),
  3166. weight: math.unit(180, "lbs"),
  3167. name: "Front",
  3168. image: {
  3169. source: "./media/characters/daimos/front.svg",
  3170. extra: 4160/3897
  3171. }
  3172. }
  3173. },
  3174. [
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(8, "feet"),
  3178. default: true
  3179. }
  3180. ]
  3181. )
  3182. };
  3183. characterMakers["Blake"] = () => {
  3184. return makeCharacter(
  3185. "Blake",
  3186. "Kurrikage",
  3187. {
  3188. side: {
  3189. height: math.unit(6, "feet"),
  3190. weight: math.unit(180, "lbs"),
  3191. name: "Side",
  3192. image: {
  3193. source: "./media/characters/blake/side.svg",
  3194. extra: 1212/1120 * (1 / (1 - 0.05)),
  3195. bottom: 0.05
  3196. }
  3197. },
  3198. crouched: {
  3199. height: math.unit(6*0.57, "feet"),
  3200. weight: math.unit(180, "lbs"),
  3201. name: "Crouched",
  3202. image: {
  3203. source: "./media/characters/blake/crouched.svg",
  3204. extra: 840/587 * (1 / (1 - 0.04)),
  3205. bottom: 0.04
  3206. }
  3207. },
  3208. bent: {
  3209. height: math.unit(6*0.75, "feet"),
  3210. weight: math.unit(180, "lbs"),
  3211. name: "Bent",
  3212. image: {
  3213. source: "./media/characters/blake/bent.svg",
  3214. extra: 592/544 * (1 / (1 - 0.035)),
  3215. bottom: 0.035
  3216. }
  3217. },
  3218. },
  3219. [
  3220. {
  3221. name: "Normal",
  3222. height: math.unit(8 + 1/6, "feet"),
  3223. default: true
  3224. }
  3225. ]
  3226. )
  3227. };
  3228. characterMakers["Guisetto"] = () => {
  3229. return makeCharacter(
  3230. "Guisetto",
  3231. "Kurrikage",
  3232. {
  3233. front: {
  3234. height: math.unit(6, "feet"),
  3235. weight: math.unit(180, "lbs"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/guisetto/front.svg",
  3239. extra: 856/817
  3240. }
  3241. },
  3242. airborne: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(180, "lbs"),
  3245. name: "Airborne",
  3246. image: {
  3247. source: "./media/characters/guisetto/airborne.svg",
  3248. extra: 584/525
  3249. }
  3250. },
  3251. },
  3252. [
  3253. {
  3254. name: "Normal",
  3255. height: math.unit(10 + 11/12, "feet"),
  3256. default: true
  3257. }
  3258. ]
  3259. )
  3260. };
  3261. characterMakers["Luxor"] = () => {
  3262. return makeCharacter(
  3263. "Luxor",
  3264. "Kurrikage",
  3265. {
  3266. front: {
  3267. height: math.unit(6, "feet"),
  3268. weight: math.unit(180, "lbs"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/luxor/front.svg",
  3272. extra: 2940/2152
  3273. }
  3274. },
  3275. back: {
  3276. height: math.unit(6, "feet"),
  3277. weight: math.unit(180, "lbs"),
  3278. name: "Back",
  3279. image: {
  3280. source: "./media/characters/luxor/back.svg",
  3281. extra: 1083/960
  3282. }
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(5 + 5/6, "feet"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Lamp",
  3293. height: math.unit(50, "feet")
  3294. },
  3295. {
  3296. name: "Lämp",
  3297. height: math.unit(300, "feet")
  3298. },
  3299. {
  3300. name: "The sun is a lamp",
  3301. height: math.unit(250000, "miles")
  3302. },
  3303. ]
  3304. )
  3305. };
  3306. characterMakers["Huoyan"] = () => {
  3307. return makeCharacter(
  3308. "Huoyan",
  3309. "Kurrikage",
  3310. {
  3311. front: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(50, "lbs"),
  3314. name: "Front",
  3315. image: {
  3316. source: "./media/characters/huoyan/front.svg"
  3317. }
  3318. },
  3319. side: {
  3320. height: math.unit(6, "feet"),
  3321. weight: math.unit(180, "lbs"),
  3322. name: "Side",
  3323. image: {
  3324. source: "./media/characters/huoyan/side.svg"
  3325. }
  3326. },
  3327. },
  3328. [
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(65, "feet"),
  3332. default: true
  3333. }
  3334. ]
  3335. )
  3336. };
  3337. characterMakers["Tails"] = () => {
  3338. return makeCharacter(
  3339. "Tails",
  3340. "Rainier",
  3341. {
  3342. front: {
  3343. height: math.unit(5 + 3/4, "feet"),
  3344. weight: math.unit(120, "lbs"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/tails/front.svg"
  3348. }
  3349. }
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(5 + 3/4, "feet"),
  3355. default: true
  3356. }
  3357. ]
  3358. )
  3359. };
  3360. characterMakers["Rainy"] = () => {
  3361. return makeCharacter(
  3362. "Rainy",
  3363. "Rainier",
  3364. {
  3365. front: {
  3366. height: math.unit(4, "feet"),
  3367. weight: math.unit(50, "lbs"),
  3368. name: "Front",
  3369. image: {
  3370. source: "./media/characters/rainy/front.svg"
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Macro",
  3377. height: math.unit(800, "feet"),
  3378. default: true
  3379. }
  3380. ]
  3381. )
  3382. };
  3383. characterMakers["Rainier"] = () => {
  3384. return makeCharacter(
  3385. "Rainier",
  3386. "Rainier",
  3387. {
  3388. front: {
  3389. height: math.unit(6, "feet"),
  3390. weight: math.unit(150, "lbs"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/rainier/front.svg"
  3394. }
  3395. }
  3396. },
  3397. [
  3398. {
  3399. name: "Micro",
  3400. height: math.unit(2, "mm"),
  3401. default: true
  3402. }
  3403. ]
  3404. )
  3405. };
  3406. characterMakers["Andy"] = () => {
  3407. return makeCharacter(
  3408. "Andy",
  3409. "drewbermeister",
  3410. {
  3411. front: {
  3412. height: math.unit(6, "feet"),
  3413. weight: math.unit(180, "lbs"),
  3414. name: "Front",
  3415. image: {
  3416. source: "./media/characters/andy/front.svg"
  3417. }
  3418. }
  3419. },
  3420. [
  3421. {
  3422. name: "Normal",
  3423. height: math.unit(8, "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Macro",
  3428. height: math.unit(1000, "feet")
  3429. },
  3430. {
  3431. name: "Megamacro",
  3432. height: math.unit(5, "miles")
  3433. },
  3434. {
  3435. name: "Gigamacro",
  3436. height: math.unit(5000, "miles")
  3437. },
  3438. ]
  3439. )
  3440. };
  3441. characterMakers["Cimmaron"] = () => {
  3442. return makeCharacter(
  3443. "Cimmaron",
  3444. "Cimmaron",
  3445. {
  3446. frontClothed: {
  3447. height: math.unit(6, "feet"),
  3448. weight: math.unit(210, "lbs"),
  3449. name: "Front (Clothed)",
  3450. image: {
  3451. source: "./media/characters/cimmaron/front-clothed.svg",
  3452. extra: 701/676 * (1 / (1 - 0.046)),
  3453. bottom: 0.046
  3454. }
  3455. },
  3456. backClothed: {
  3457. height: math.unit(6, "feet"),
  3458. weight: math.unit(210, "lbs"),
  3459. name: "Back (Clothed)",
  3460. image: {
  3461. source: "./media/characters/cimmaron/back-clothed.svg",
  3462. extra: 701/676 * (1 / (1 - 0.046)),
  3463. bottom: 0.046
  3464. }
  3465. },
  3466. frontNude: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(210, "lbs"),
  3469. name: "Front (Nude)",
  3470. image: {
  3471. source: "./media/characters/cimmaron/front-nude.svg",
  3472. extra: 701/676 * (1 / (1 - 0.046)),
  3473. bottom: 0.046
  3474. }
  3475. },
  3476. backNude: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(210, "lbs"),
  3479. name: "Back (Nude)",
  3480. image: {
  3481. source: "./media/characters/cimmaron/back-nude.svg",
  3482. extra: 701/676 * (1 / (1 - 0.046)),
  3483. bottom: 0.046
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(6, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Macro Mayor",
  3495. height: math.unit(350, "meters")
  3496. },
  3497. ]
  3498. )
  3499. };
  3500. characterMakers["Akari Kaen"] = () => {
  3501. return makeCharacter(
  3502. "Akari Kaen",
  3503. "Akari",
  3504. {
  3505. front: {
  3506. height: math.unit(6, "feet"),
  3507. weight: math.unit(200, "lbs"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/akari/front.svg",
  3511. bottom: 0.04,
  3512. extra: (1 / (1 - 0.04)) * (962/901)
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Micro",
  3519. height: math.unit(5, "inches"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Normal",
  3524. height: math.unit(7, "feet")
  3525. },
  3526. ]
  3527. )
  3528. };
  3529. characterMakers["Cynosura"] = () => {
  3530. return makeCharacter(
  3531. "Cynosura",
  3532. "Cynosura",
  3533. {
  3534. front: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(140, "lbs"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/cynosura/front.svg",
  3540. extra: 896/847
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(140, "lbs"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/cynosura/back.svg",
  3549. extra: 1365/1250
  3550. }
  3551. },
  3552. },
  3553. [
  3554. {
  3555. name: "Micro",
  3556. height: math.unit(4, "inches")
  3557. },
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(5.75, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Tall",
  3565. height: math.unit(10, "feet")
  3566. },
  3567. {
  3568. name: "Big",
  3569. height: math.unit(20, "feet")
  3570. },
  3571. {
  3572. name: "Macro",
  3573. height: math.unit(50, "feet")
  3574. },
  3575. ]
  3576. )
  3577. };
  3578. characterMakers["Gin"] = () => {
  3579. return makeCharacter(
  3580. "Gin",
  3581. "Ozzie_gt",
  3582. {
  3583. front: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(170, "lbs"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/gin/front.svg"
  3589. }
  3590. },
  3591. foot: {
  3592. height: math.unit(6/4.25, "feet"),
  3593. name: "Foot",
  3594. image: {
  3595. source: "./media/characters/gin/foot.svg"
  3596. }
  3597. },
  3598. sole: {
  3599. height: math.unit(6/4.40, "feet"),
  3600. name: "Sole",
  3601. image: {
  3602. source: "./media/characters/gin/sole.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Normal",
  3609. height: math.unit(9 + 4/12, "feet")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(1500, "feet")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(200, "miles"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Gigamacro",
  3622. height: math.unit(500, "megameters")
  3623. },
  3624. {
  3625. name: "Teramacro",
  3626. height: math.unit(15, "lightyears")
  3627. }
  3628. ]
  3629. )
  3630. };
  3631. characterMakers["Guy"] = () => {
  3632. return makeCharacter(
  3633. "Guy",
  3634. "Whatastandupguy",
  3635. {
  3636. front: {
  3637. height: math.unit(6 + 1/6, "feet"),
  3638. weight: math.unit(178, "lbs"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/guy/front.svg"
  3642. }
  3643. }
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(6 + 1/6, "feet"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Large",
  3653. height: math.unit(25 + 7/12, "feet")
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(60 + 9/12, "feet")
  3658. },
  3659. {
  3660. name: "Macro+",
  3661. height: math.unit(246, "feet")
  3662. },
  3663. {
  3664. name: "Macro++",
  3665. height: math.unit(878, "feet")
  3666. }
  3667. ]
  3668. )
  3669. };
  3670. characterMakers["Tiberius"] = () => {
  3671. return makeCharacter(
  3672. "Tiberius",
  3673. "movler",
  3674. {
  3675. front: {
  3676. height: math.unit(9, "feet"),
  3677. weight: math.unit(800, "lbs"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/tiberius/front.svg",
  3681. extra: 2295/2071
  3682. }
  3683. },
  3684. back: {
  3685. height: math.unit(9, "feet"),
  3686. weight: math.unit(800, "lbs"),
  3687. name: "Back",
  3688. image: {
  3689. source: "./media/characters/tiberius/back.svg",
  3690. extra: 2373/2160
  3691. }
  3692. },
  3693. },
  3694. [
  3695. {
  3696. name: "Normal",
  3697. height: math.unit(9, "feet"),
  3698. default: true
  3699. }
  3700. ]
  3701. )
  3702. };
  3703. characterMakers["Surgo"] = () => {
  3704. return makeCharacter(
  3705. "Surgo",
  3706. "movler",
  3707. {
  3708. front: {
  3709. height: math.unit(6, "feet"),
  3710. weight: math.unit(600, "lbs"),
  3711. name: "Front",
  3712. image: {
  3713. source: "./media/characters/surgo/front.svg",
  3714. extra: 3591/2227
  3715. }
  3716. },
  3717. back: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(600, "lbs"),
  3720. name: "Back",
  3721. image: {
  3722. source: "./media/characters/surgo/back.svg",
  3723. extra: 3557/2228
  3724. }
  3725. },
  3726. laying: {
  3727. height: math.unit(6 * 0.85, "feet"),
  3728. weight: math.unit(600, "lbs"),
  3729. name: "Laying",
  3730. image: {
  3731. source: "./media/characters/surgo/laying.svg"
  3732. }
  3733. },
  3734. },
  3735. [
  3736. {
  3737. name: "Normal",
  3738. height: math.unit(6, "feet"),
  3739. default: true
  3740. }
  3741. ]
  3742. )
  3743. };
  3744. characterMakers["Cibus"] = () => {
  3745. return makeCharacter(
  3746. "Cibus",
  3747. "movler",
  3748. {
  3749. side: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(150, "lbs"),
  3752. name: "Side",
  3753. image: {
  3754. source: "./media/characters/cibus/side.svg",
  3755. extra: 800/400
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(6, "feet"),
  3763. default: true
  3764. }
  3765. ]
  3766. )
  3767. };
  3768. characterMakers["Nibbles"] = () => {
  3769. return makeCharacter(
  3770. "Nibbles",
  3771. "movler",
  3772. {
  3773. front: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(240, "lbs"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/nibbles/front.svg"
  3779. }
  3780. },
  3781. side: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(240, "lbs"),
  3784. name: "Side",
  3785. image: {
  3786. source: "./media/characters/nibbles/side.svg"
  3787. }
  3788. },
  3789. },
  3790. [
  3791. {
  3792. name: "Normal",
  3793. height: math.unit(9, "feet"),
  3794. default: true
  3795. }
  3796. ]
  3797. )
  3798. };
  3799. characterMakers["Rikky"] = () => {
  3800. return makeCharacter(
  3801. "Rikky",
  3802. "Quake Yote",
  3803. {
  3804. side: {
  3805. height: math.unit(5 + 1/6, "feet"),
  3806. weight: math.unit(130, "lbs"),
  3807. name: "Side",
  3808. image: {
  3809. source: "./media/characters/rikky/side.svg"
  3810. }
  3811. },
  3812. },
  3813. [
  3814. {
  3815. name: "Normal",
  3816. height: math.unit(5 + 1/6, "feet")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(152, "feet"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Megamacro",
  3825. height: math.unit(7, "miles")
  3826. }
  3827. ]
  3828. )
  3829. };
  3830. characterMakers["Malfressa"] = () => {
  3831. return makeCharacter(
  3832. "Malfressa",
  3833. "Scareye",
  3834. {
  3835. side: {
  3836. height: math.unit(370, "cm"),
  3837. weight: math.unit(350, "lbs"),
  3838. name: "Side",
  3839. image: {
  3840. source: "./media/characters/malfressa/side.svg"
  3841. }
  3842. },
  3843. walking: {
  3844. height: math.unit(370, "cm"),
  3845. weight: math.unit(350, "lbs"),
  3846. name: "Walking",
  3847. image: {
  3848. source: "./media/characters/malfressa/walking.svg"
  3849. }
  3850. },
  3851. feral: {
  3852. height: math.unit(2500, "cm"),
  3853. weight: math.unit(100000, "lbs"),
  3854. name: "Feral",
  3855. image: {
  3856. source: "./media/characters/malfressa/feral.svg",
  3857. extra: 2108/837 * (1 / (1 - 0.02)),
  3858. bottom: 0.02
  3859. }
  3860. },
  3861. },
  3862. [
  3863. {
  3864. name: "Normal",
  3865. height: math.unit(370, "cm")
  3866. },
  3867. {
  3868. name: "Macro",
  3869. height: math.unit(300, "meters"),
  3870. default: true
  3871. }
  3872. ]
  3873. )
  3874. };
  3875. characterMakers["Jaro"] = () => {
  3876. return makeCharacter(
  3877. "Jaro",
  3878. "Jaro",
  3879. {
  3880. front: {
  3881. height: math.unit(6, "feet"),
  3882. weight: math.unit(60, "kg"),
  3883. name: "Front",
  3884. image: {
  3885. source: "./media/characters/jaro/front.svg"
  3886. }
  3887. },
  3888. back: {
  3889. height: math.unit(6, "feet"),
  3890. weight: math.unit(60, "kg"),
  3891. name: "Back",
  3892. image: {
  3893. source: "./media/characters/jaro/back.svg"
  3894. }
  3895. },
  3896. },
  3897. [
  3898. {
  3899. name: "Micro",
  3900. height: math.unit(7, "inches")
  3901. },
  3902. {
  3903. name: "Normal",
  3904. height: math.unit(5.5, "feet"),
  3905. default: true
  3906. },
  3907. {
  3908. name: "Minimacro",
  3909. height: math.unit(20, "feet")
  3910. },
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(200, "meters")
  3914. }
  3915. ]
  3916. )
  3917. };
  3918. characterMakers["Rogue"] = () => {
  3919. return makeCharacter(
  3920. "Rogue",
  3921. "Rogue",
  3922. {
  3923. front: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(195, "lb"),
  3926. name: "Front",
  3927. image: {
  3928. source: "./media/characters/rogue/front.svg"
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(90, "feet"),
  3936. default: true
  3937. },
  3938. ]
  3939. )
  3940. };
  3941. characterMakers["Piper"] = () => {
  3942. return makeCharacter(
  3943. "Piper",
  3944. "Flyhar",
  3945. {
  3946. front: {
  3947. height: math.unit(5 + 8/12, "feet"),
  3948. weight: math.unit(140, "lb"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/piper/front.svg",
  3952. extra: 3928/3681
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Micro",
  3959. height: math.unit(2, "inches")
  3960. },
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(5 + 8/12, "feet")
  3964. },
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(250, "feet"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Megamacro",
  3972. height: math.unit(7, "miles")
  3973. },
  3974. ]
  3975. )
  3976. };
  3977. characterMakers["Gemini"] = () => {
  3978. return makeCharacter(
  3979. "Gemini",
  3980. "lajay",
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(220, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/gemini/front.svg"
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(220, "lb"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/gemini/back.svg"
  3996. }
  3997. },
  3998. kneeling: {
  3999. height: math.unit(6/1.5, "feet"),
  4000. weight: math.unit(220, "lb"),
  4001. name: "Kneeling",
  4002. image: {
  4003. source: "./media/characters/gemini/kneeling.svg",
  4004. bottom: 0.02
  4005. }
  4006. },
  4007. },
  4008. [
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(300, "meters"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "Megamacro",
  4016. height: math.unit(6900, "meters")
  4017. },
  4018. ]
  4019. )
  4020. };
  4021. characterMakers["Alicia"] = () => {
  4022. return makeCharacter(
  4023. "Alicia",
  4024. "LittleBig",
  4025. {
  4026. anthro: {
  4027. height: math.unit(2.35, "meters"),
  4028. weight: math.unit(73, "kg"),
  4029. name: "Anthro",
  4030. image: {
  4031. source: "./media/characters/alicia/anthro.svg"
  4032. }
  4033. },
  4034. feral: {
  4035. height: math.unit(1.69, "meters"),
  4036. weight: math.unit(73, "kg"),
  4037. name: "Feral",
  4038. image: {
  4039. source: "./media/characters/alicia/feral.svg"
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(2.35, "meters")
  4047. },
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(60, "meters"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Megamacro",
  4055. height: math.unit(10000, "kilometers")
  4056. },
  4057. ]
  4058. )
  4059. };
  4060. characterMakers["Archy"] = () => {
  4061. return makeCharacter(
  4062. "Archy",
  4063. "ArchyD",
  4064. {
  4065. front: {
  4066. height: math.unit(7, "feet"),
  4067. weight: math.unit(250, "lbs"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/archy/front.svg"
  4071. }
  4072. }
  4073. },
  4074. [
  4075. {
  4076. name: "Micro",
  4077. height: math.unit(1, "inch")
  4078. },
  4079. {
  4080. name: "Shorty",
  4081. height: math.unit(5, "feet")
  4082. },
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(7, "feet")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(600, "meters"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Megamacro",
  4094. height: math.unit(1, "mile")
  4095. },
  4096. ]
  4097. )
  4098. };
  4099. characterMakers["Berri"] = () => {
  4100. return makeCharacter(
  4101. "Berri",
  4102. "LittleBig",
  4103. {
  4104. front: {
  4105. height: math.unit(1.65, "meters"),
  4106. weight: math.unit(74, "kg"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/berri/front.svg"
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Normal",
  4116. height: math.unit(1.65, "meters")
  4117. },
  4118. {
  4119. name: "Macro",
  4120. height: math.unit(60, "m"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Megamacro",
  4125. height: math.unit(9.213, "km")
  4126. },
  4127. {
  4128. name: "Planet Eater",
  4129. height: math.unit(489, "megameters")
  4130. },
  4131. {
  4132. name: "Teramacro",
  4133. height: math.unit(2471635000000, "meters")
  4134. },
  4135. {
  4136. name: "Examacro",
  4137. height: math.unit(8.0624e+26, "meters")
  4138. }
  4139. ]
  4140. )
  4141. };
  4142. characterMakers["Lexi"] = () => {
  4143. return makeCharacter(
  4144. "Lexi",
  4145. "LittleBig",
  4146. {
  4147. front: {
  4148. height: math.unit(1.72, "meters"),
  4149. weight: math.unit(68, "kg"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/lexi/front.svg"
  4153. }
  4154. }
  4155. },
  4156. [
  4157. {
  4158. name: "Very Smol",
  4159. height: math.unit(10, "mm")
  4160. },
  4161. {
  4162. name: "Micro",
  4163. height: math.unit(6.8, "cm"),
  4164. default: true
  4165. },
  4166. {
  4167. name: "Normal",
  4168. height: math.unit(1.72, "m")
  4169. }
  4170. ]
  4171. )
  4172. };
  4173. characterMakers["Martin"] = () => {
  4174. return makeCharacter(
  4175. "Martin",
  4176. "LittleBig",
  4177. {
  4178. front: {
  4179. height: math.unit(1.69, "meters"),
  4180. weight: math.unit(68, "kg"),
  4181. name: "Front",
  4182. image: {
  4183. source: "./media/characters/martin/front.svg",
  4184. extra: 596/581
  4185. }
  4186. }
  4187. },
  4188. [
  4189. {
  4190. name: "Micro",
  4191. height: math.unit(6.85, "cm"),
  4192. default: true
  4193. },
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(1.69, "m")
  4197. }
  4198. ]
  4199. )
  4200. };
  4201. characterMakers["Juno"] = () => {
  4202. return makeCharacter(
  4203. "Juno",
  4204. "LittleBig",
  4205. {
  4206. front: {
  4207. height: math.unit(1.69, "meters"),
  4208. weight: math.unit(68, "kg"),
  4209. name: "Front",
  4210. image: {
  4211. source: "./media/characters/juno/front.svg"
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Micro",
  4218. height: math.unit(7, "cm")
  4219. },
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(1.89, "m")
  4223. },
  4224. {
  4225. name: "Macro",
  4226. height: math.unit(353, "meters"),
  4227. default: true
  4228. }
  4229. ]
  4230. )
  4231. };
  4232. characterMakers["Samantha"] = () => {
  4233. return makeCharacter(
  4234. "Samantha",
  4235. "LittleBig",
  4236. {
  4237. front: {
  4238. height: math.unit(1.93, "meters"),
  4239. weight: math.unit(83, "kg"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/samantha/front.svg"
  4243. }
  4244. },
  4245. frontClothed: {
  4246. height: math.unit(1.93, "meters"),
  4247. weight: math.unit(83, "kg"),
  4248. name: "Front (Clothed)",
  4249. image: {
  4250. source: "./media/characters/samantha/front-clothed.svg"
  4251. }
  4252. },
  4253. back: {
  4254. height: math.unit(1.93, "meters"),
  4255. weight: math.unit(83, "kg"),
  4256. name: "Back",
  4257. image: {
  4258. source: "./media/characters/samantha/back.svg"
  4259. }
  4260. },
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(1.93, "m")
  4266. },
  4267. {
  4268. name: "Macro",
  4269. height: math.unit(74, "meters"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "Macro+",
  4274. height: math.unit(223, "meters"),
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(8381, "meters"),
  4279. },
  4280. {
  4281. name: "Megamacro+",
  4282. height: math.unit(12000, "kilometers")
  4283. },
  4284. ]
  4285. )
  4286. };
  4287. characterMakers["Dr. Clay"] = () => {
  4288. return makeCharacter(
  4289. "Dr. Clay",
  4290. "LittleBig",
  4291. {
  4292. front: {
  4293. height: math.unit(1.92, "meters"),
  4294. weight: math.unit(80, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/dr-clay/front.svg"
  4298. }
  4299. },
  4300. frontClothed: {
  4301. height: math.unit(1.92, "meters"),
  4302. weight: math.unit(80, "kg"),
  4303. name: "Front (Clothed)",
  4304. image: {
  4305. source: "./media/characters/dr-clay/front-clothed.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(1.92, "m")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(214, "meters"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro+",
  4321. height: math.unit(12.237, "meters"),
  4322. },
  4323. {
  4324. name: "Megamacro",
  4325. height: math.unit(557, "megameters"),
  4326. },
  4327. {
  4328. name: "Unimaginable",
  4329. height: math.unit(120e9, "lightyears")
  4330. },
  4331. ]
  4332. )
  4333. };
  4334. characterMakers["Wyvrn Ripsnarl"] = () => {
  4335. return makeCharacter(
  4336. "Wyvrn Ripsnarl",
  4337. "LoboRaptorLo",
  4338. {
  4339. front: {
  4340. height: math.unit(2, "meters"),
  4341. weight: math.unit(80, "kg"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Teramacro",
  4351. height: math.unit(500000, "lightyears"),
  4352. default: true
  4353. },
  4354. ]
  4355. )
  4356. };
  4357. characterMakers["Vemus"] = () => {
  4358. return makeCharacter(
  4359. "Vemus",
  4360. "Vemus",
  4361. {
  4362. front: {
  4363. height: math.unit(2, "meters"),
  4364. weight: math.unit(150, "kg"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/vemus/front.svg",
  4368. extra: 2384/2084
  4369. }
  4370. }
  4371. },
  4372. [
  4373. {
  4374. name: "Normal",
  4375. height: math.unit(3, "meters"),
  4376. default: true
  4377. },
  4378. {
  4379. name: "Lorg",
  4380. height: math.unit(7, "meters")
  4381. },
  4382. {
  4383. name: "More Lorg",
  4384. height: math.unit(250, "meters")
  4385. },
  4386. ]
  4387. )
  4388. };
  4389. characterMakers["Beherit"] = () => {
  4390. return makeCharacter(
  4391. "Beherit",
  4392. "Beherit",
  4393. {
  4394. front: {
  4395. height: math.unit(2, "meters"),
  4396. weight: math.unit(70, "kg"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/beherit/front.svg",
  4400. extra: 1408/1242
  4401. }
  4402. }
  4403. },
  4404. [
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(6, "feet")
  4408. },
  4409. {
  4410. name: "Lorg",
  4411. height: math.unit(25, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Lorger",
  4416. height: math.unit(75, "feet")
  4417. },
  4418. {
  4419. name: "Macro",
  4420. height: math.unit(200, "meters")
  4421. },
  4422. ]
  4423. )
  4424. };
  4425. characterMakers["Everett"] = () => {
  4426. return makeCharacter(
  4427. "Everett",
  4428. "Beherit",
  4429. {
  4430. front: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(150, "kg"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/everett/front.svg",
  4436. extra: 2038/1737 * (1 / (1 - 0.03)),
  4437. bottom: 0.03
  4438. }
  4439. },
  4440. paw: {
  4441. height: math.unit(2/3.6, "meters"),
  4442. name: "Paw",
  4443. image: {
  4444. source: "./media/characters/everett/paw.svg"
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(15, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Lorg",
  4456. height: math.unit(70, "feet"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Lorger",
  4461. height: math.unit(250, "feet")
  4462. },
  4463. {
  4464. name: "Macro",
  4465. height: math.unit(500, "meters")
  4466. },
  4467. ]
  4468. )
  4469. };
  4470. characterMakers["Rose Lion"] = () => {
  4471. return makeCharacter(
  4472. "Rose Lion",
  4473. "Enormouse",
  4474. {
  4475. front: {
  4476. height: math.unit(2, "meters"),
  4477. weight: math.unit(86, "kg"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/rose-lion/front.svg"
  4481. }
  4482. },
  4483. bent: {
  4484. height: math.unit(2/1.4288, "meters"),
  4485. weight: math.unit(86, "kg"),
  4486. name: "Bent",
  4487. image: {
  4488. source: "./media/characters/rose-lion/bent.svg"
  4489. }
  4490. }
  4491. },
  4492. [
  4493. {
  4494. name: "Mini-Micro",
  4495. height: math.unit(1, "cm")
  4496. },
  4497. {
  4498. name: "Micro",
  4499. height: math.unit(3.5, "inches"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(6 + 1/6, "feet")
  4505. },
  4506. {
  4507. name: "Mini-Macro",
  4508. height: math.unit(9 + 10/12, "feet")
  4509. },
  4510. ]
  4511. )
  4512. };
  4513. characterMakers["Regal"] = () => {
  4514. return makeCharacter(
  4515. "Regal",
  4516. "Regal Drennen",
  4517. {
  4518. front: {
  4519. height: math.unit(2, "meters"),
  4520. weight: math.unit(350, "lbs"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/regal/front.svg"
  4524. }
  4525. },
  4526. back: {
  4527. height: math.unit(2, "meters"),
  4528. weight: math.unit(350, "lbs"),
  4529. name: "Back",
  4530. image: {
  4531. source: "./media/characters/regal/back.svg"
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Macro",
  4538. height: math.unit(350, "feet"),
  4539. default: true
  4540. }
  4541. ]
  4542. )
  4543. };
  4544. characterMakers["Opal"] = () => {
  4545. return makeCharacter(
  4546. "Opal",
  4547. "Enormouse",
  4548. {
  4549. front: {
  4550. height: math.unit(4 + 11/12, "feet"),
  4551. weight: math.unit(100, "lbs"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/opal/front.svg"
  4555. }
  4556. },
  4557. frontAlt: {
  4558. height: math.unit(4 + 11/12, "feet"),
  4559. weight: math.unit(100, "lbs"),
  4560. name: "Front (Alt)",
  4561. image: {
  4562. source: "./media/characters/opal/front-alt.svg"
  4563. }
  4564. },
  4565. },
  4566. [
  4567. {
  4568. name: "Small",
  4569. height: math.unit(4 + 11/12, "feet")
  4570. },
  4571. {
  4572. name: "Normal",
  4573. height: math.unit(20, "feet"),
  4574. default: true
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(120, "feet")
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(80, "miles")
  4583. },
  4584. {
  4585. name: "True Size",
  4586. height: math.unit(100000, "lightyears")
  4587. },
  4588. ]
  4589. )
  4590. };
  4591. characterMakers["Vector Wuff"] = () => {
  4592. return makeCharacter(
  4593. "Vector Wuff",
  4594. "Vector",
  4595. {
  4596. front: {
  4597. height: math.unit(6, "feet"),
  4598. weight: math.unit(200, "lbs"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/vector-wuff/front.svg"
  4602. }
  4603. }
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(2.8, "meters")
  4609. },
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(450, "meters"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Megamacro",
  4617. height: math.unit(15, "kilometers")
  4618. }
  4619. ]
  4620. )
  4621. };
  4622. characterMakers["Dannik"] = () => {
  4623. return makeCharacter(
  4624. "Dannik",
  4625. "LuchaLibreLibro",
  4626. {
  4627. front: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(256, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/dannik/front.svg"
  4633. }
  4634. }
  4635. },
  4636. [
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(69.57, "meters"),
  4640. default: true
  4641. },
  4642. ]
  4643. )
  4644. };
  4645. characterMakers["Azura Saharah"] = () => {
  4646. return makeCharacter(
  4647. "Azura Saharah",
  4648. "AzuraSaharah",
  4649. {
  4650. front: {
  4651. height: math.unit(6, "feet"),
  4652. weight: math.unit(120, "lbs"),
  4653. name: "Front",
  4654. image: {
  4655. source: "./media/characters/azura-saharah/front.svg"
  4656. }
  4657. },
  4658. back: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(120, "lbs"),
  4661. name: "Back",
  4662. image: {
  4663. source: "./media/characters/azura-saharah/back.svg"
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(100, "feet"),
  4671. default: true
  4672. },
  4673. ]
  4674. )
  4675. };
  4676. characterMakers["Kennedy"] = () => {
  4677. return makeCharacter(
  4678. "Kennedy",
  4679. "BossVoss",
  4680. {
  4681. side: {
  4682. height: math.unit(5 + 4/12, "feet"),
  4683. weight: math.unit(163, "lbs"),
  4684. name: "Side",
  4685. image: {
  4686. source: "./media/characters/kennedy/side.svg"
  4687. }
  4688. }
  4689. },
  4690. [
  4691. {
  4692. name: "Standard Doggo",
  4693. height: math.unit(5 + 4/12, "feet")
  4694. },
  4695. {
  4696. name: "Big Doggo",
  4697. height: math.unit(25 + 3/12, "feet"),
  4698. default: true
  4699. },
  4700. ]
  4701. )
  4702. };
  4703. characterMakers["Odi Lunar"] = () => {
  4704. return makeCharacter(
  4705. "Odi Lunar",
  4706. "OdiLunar",
  4707. {
  4708. front: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(90, "lbs"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/odi-lunar/front.svg"
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Micro",
  4720. height: math.unit(3, "inches"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Normal",
  4725. height: math.unit(5.5, "feet")
  4726. }
  4727. ]
  4728. )
  4729. };
  4730. characterMakers["Mandake"] = () => {
  4731. return makeCharacter(
  4732. "Mandake",
  4733. "Dialuca01",
  4734. {
  4735. back: {
  4736. height: math.unit(6, "feet"),
  4737. weight: math.unit(220, "lbs"),
  4738. name: "Back",
  4739. image: {
  4740. source: "./media/characters/mandake/back.svg"
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(7, "feet"),
  4748. default: true
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(78, "feet")
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(300, "meters")
  4757. },
  4758. {
  4759. name: "Macro++",
  4760. height: math.unit(2400, "feet")
  4761. },
  4762. {
  4763. name: "Megamacro",
  4764. height: math.unit(5167, "meters")
  4765. },
  4766. {
  4767. name: "Gigamacro",
  4768. height: math.unit(41769, "miles")
  4769. },
  4770. ]
  4771. )
  4772. };
  4773. characterMakers["Yozey"] = () => {
  4774. return makeCharacter(
  4775. "Yozey",
  4776. "Yozey",
  4777. {
  4778. front: {
  4779. height: math.unit(6, "feet"),
  4780. weight: math.unit(120, "lbs"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/yozey/front.svg"
  4784. }
  4785. },
  4786. frontAlt: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(120, "lbs"),
  4789. name: "Front (Alt)",
  4790. image: {
  4791. source: "./media/characters/yozey/front-alt.svg"
  4792. }
  4793. },
  4794. side: {
  4795. height: math.unit(6, "feet"),
  4796. weight: math.unit(120, "lbs"),
  4797. name: "Side",
  4798. image: {
  4799. source: "./media/characters/yozey/side.svg"
  4800. }
  4801. },
  4802. },
  4803. [
  4804. {
  4805. name: "Micro",
  4806. height: math.unit(3, "inches"),
  4807. default: true
  4808. },
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(6, "feet")
  4812. }
  4813. ]
  4814. )
  4815. };
  4816. characterMakers["Valeska Voss"] = () => {
  4817. return makeCharacter(
  4818. "Valeska Voss",
  4819. "BossVoss",
  4820. {
  4821. front: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(103, "lbs"),
  4824. name: "Front",
  4825. image: {
  4826. source: "./media/characters/valeska-voss/front.svg"
  4827. }
  4828. }
  4829. },
  4830. [
  4831. {
  4832. name: "Mini-Sized Sub",
  4833. height: math.unit(3.1, "inches")
  4834. },
  4835. {
  4836. name: "Mid-Sized Sub",
  4837. height: math.unit(6.2, "inches")
  4838. },
  4839. {
  4840. name: "Full-Sized Sub",
  4841. height: math.unit(9.3, "inches")
  4842. },
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(5 + 2/12, "foot"),
  4846. default: true
  4847. },
  4848. ]
  4849. )
  4850. };
  4851. characterMakers["Gene Zeta"] = () => {
  4852. return makeCharacter(
  4853. "Gene Zeta",
  4854. "Xeebes",
  4855. {
  4856. front: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(160, "lbs"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/gene-zeta/front.svg",
  4862. bottom: 0.03,
  4863. extra: 1 / (1 - 0.03)
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(6.25, "foot"),
  4871. default: true
  4872. },
  4873. ]
  4874. )
  4875. };
  4876. characterMakers["Razinox"] = () => {
  4877. return makeCharacter(
  4878. "Razinox",
  4879. "Razinox",
  4880. {
  4881. front: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(350, "lbs"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/razinox/front.svg",
  4887. extra: 1686/1548
  4888. }
  4889. },
  4890. back: {
  4891. height: math.unit(6, "feet"),
  4892. weight: math.unit(350, "lbs"),
  4893. name: "Back",
  4894. image: {
  4895. source: "./media/characters/razinox/back.svg",
  4896. extra: 1660/1590
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(10 + 8/12, "foot")
  4904. },
  4905. {
  4906. name: "Minimacro",
  4907. height: math.unit(15, "foot")
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(60, "foot"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(5, "miles")
  4917. },
  4918. {
  4919. name: "Gigamacro",
  4920. height: math.unit(6000, "miles")
  4921. },
  4922. ]
  4923. )
  4924. };
  4925. characterMakers["Cobalt"] = () => {
  4926. return makeCharacter(
  4927. "Cobalt",
  4928. "Miateshcha",
  4929. {
  4930. front: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(150, "lbs"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/cobalt/front.svg"
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(8 + 1/12, "foot")
  4943. },
  4944. {
  4945. name: "Macro",
  4946. height: math.unit(111, "foot"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Supracosmic",
  4951. height: math.unit(1e42, "feet")
  4952. },
  4953. ]
  4954. )
  4955. };
  4956. characterMakers["Amanda"] = () => {
  4957. return makeCharacter(
  4958. "Amanda",
  4959. "Amanda",
  4960. {
  4961. front: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(140, "lbs"),
  4964. name: "Front",
  4965. image: {
  4966. source: "./media/characters/amanda/front.svg"
  4967. }
  4968. }
  4969. },
  4970. [
  4971. {
  4972. name: "Micro",
  4973. height: math.unit(5, "inches"),
  4974. default: true
  4975. },
  4976. ]
  4977. )
  4978. };
  4979. characterMakers["Teal"] = () => {
  4980. return makeCharacter(
  4981. "Teal",
  4982. "Teal",
  4983. {
  4984. front: {
  4985. height: math.unit(5.59, "feet"),
  4986. weight: math.unit(250, "lbs"),
  4987. name: "Front",
  4988. image: {
  4989. source: "./media/characters/teal/front.svg"
  4990. }
  4991. },
  4992. frontAlt: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(250, "lbs"),
  4995. name: "Front (Alt)",
  4996. image: {
  4997. source: "./media/characters/teal/front-alt.svg",
  4998. bottom: 0.04,
  4999. extra: 1 / (1 - 0.04)
  5000. }
  5001. },
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(12, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(300, "feet")
  5012. },
  5013. ]
  5014. )
  5015. };
  5016. characterMakers["Ravin Amulet"] = () => {
  5017. return makeCharacter(
  5018. "Ravin Amulet",
  5019. "Ravin Amulet",
  5020. {
  5021. frontCat: {
  5022. height: math.unit(6, "feet"),
  5023. weight: math.unit(180, "lbs"),
  5024. name: "Front (Cat)",
  5025. image: {
  5026. source: "./media/characters/ravin-amulet/front-cat.svg"
  5027. }
  5028. },
  5029. frontCatAlt: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(180, "lbs"),
  5032. name: "Front (Alt, Cat)",
  5033. image: {
  5034. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5035. }
  5036. },
  5037. frontWerewolf: {
  5038. height: math.unit(6*1.2, "feet"),
  5039. weight: math.unit(225, "lbs"),
  5040. name: "Front (Werewolf)",
  5041. image: {
  5042. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5043. }
  5044. },
  5045. backWerewolf: {
  5046. height: math.unit(6*1.2, "feet"),
  5047. weight: math.unit(225, "lbs"),
  5048. name: "Back (Werewolf)",
  5049. image: {
  5050. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Nano",
  5057. height: math.unit(1, "micrometer")
  5058. },
  5059. {
  5060. name: "Micro",
  5061. height: math.unit(1, "inch")
  5062. },
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(6, "feet"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(60, "feet")
  5071. }
  5072. ]
  5073. )
  5074. };
  5075. characterMakers["Fluoresce"] = () => {
  5076. return makeCharacter(
  5077. "Fluoresce",
  5078. "Ravin Amulet",
  5079. {
  5080. front: {
  5081. height: math.unit(6, "feet"),
  5082. weight: math.unit(165, "lbs"),
  5083. name: "Front",
  5084. image: {
  5085. source: "./media/characters/fluoresce/front.svg"
  5086. }
  5087. }
  5088. },
  5089. [
  5090. {
  5091. name: "Micro",
  5092. height: math.unit(6, "cm")
  5093. },
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(5 + 7/12, "feet"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(56, "feet")
  5102. },
  5103. {
  5104. name: "Megamacro",
  5105. height: math.unit(1.9, "miles")
  5106. },
  5107. ]
  5108. )
  5109. };
  5110. characterMakers["Aurora"] = () => {
  5111. return makeCharacter(
  5112. "Aurora",
  5113. "Vonadi",
  5114. {
  5115. front: {
  5116. height: math.unit(9 + 6/12, "feet"),
  5117. weight: math.unit(523, "lbs"),
  5118. name: "Side",
  5119. image: {
  5120. source: "./media/characters/aurora/side.svg"
  5121. }
  5122. }
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(9 + 6/12, "feet")
  5128. },
  5129. {
  5130. name: "Macro",
  5131. height: math.unit(96, "feet"),
  5132. default: true
  5133. },
  5134. {
  5135. name: "Macro+",
  5136. height: math.unit(243, "feet")
  5137. },
  5138. ]
  5139. )
  5140. };
  5141. characterMakers["Ranek"] = () => {
  5142. return makeCharacter(
  5143. "Ranek",
  5144. "Ranek",
  5145. {
  5146. front: {
  5147. height: math.unit(194, "cm"),
  5148. weight: math.unit(90, "kg"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/ranek/front.svg"
  5152. }
  5153. },
  5154. side: {
  5155. height: math.unit(194, "cm"),
  5156. weight: math.unit(90, "kg"),
  5157. name: "Side",
  5158. image: {
  5159. source: "./media/characters/ranek/side.svg"
  5160. }
  5161. },
  5162. back: {
  5163. height: math.unit(194, "cm"),
  5164. weight: math.unit(90, "kg"),
  5165. name: "Back",
  5166. image: {
  5167. source: "./media/characters/ranek/back.svg"
  5168. }
  5169. },
  5170. feral: {
  5171. height: math.unit(30, "cm"),
  5172. weight: math.unit(1.6, "lbs"),
  5173. name: "Feral",
  5174. image: {
  5175. source: "./media/characters/ranek/feral.svg"
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(194, "cm"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Macro",
  5187. height: math.unit(100, "meters")
  5188. },
  5189. ]
  5190. )
  5191. };
  5192. characterMakers["Andrew Cooper"] = () => {
  5193. return makeCharacter(
  5194. "Andrew Cooper",
  5195. "Vonadi",
  5196. {
  5197. front: {
  5198. height: math.unit(5 + 6/12, "feet"),
  5199. weight: math.unit(153, "lbs"),
  5200. name: "Front",
  5201. image: {
  5202. source: "./media/characters/andrew-cooper/front.svg"
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Nano",
  5209. height: math.unit(1, "mm")
  5210. },
  5211. {
  5212. name: "Micro",
  5213. height: math.unit(2, "inches")
  5214. },
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(5 + 6/12, "feet"),
  5218. default: true
  5219. }
  5220. ]
  5221. )
  5222. };
  5223. characterMakers["Akane Sato"] = () => {
  5224. return makeCharacter(
  5225. "Akane Sato",
  5226. "Vonadi",
  5227. {
  5228. front: {
  5229. height: math.unit(6, "feet"),
  5230. weight: math.unit(180, "lbs"),
  5231. name: "Front",
  5232. image: {
  5233. source: "./media/characters/akane-sato/front.svg",
  5234. extra: 1219/1140
  5235. }
  5236. },
  5237. back: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(180, "lbs"),
  5240. name: "Back",
  5241. image: {
  5242. source: "./media/characters/akane-sato/back.svg",
  5243. extra: 1219/1170
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(2.5, "meters")
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(250, "meters"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Megamacro",
  5259. height: math.unit(25, "km")
  5260. },
  5261. ]
  5262. )
  5263. };
  5264. characterMakers["Rook"] = () => {
  5265. return makeCharacter(
  5266. "Rook",
  5267. "Rook",
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(65, "kg"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/rook/front.svg"
  5275. }
  5276. }
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(8.8, "feet")
  5282. },
  5283. {
  5284. name: "Macro",
  5285. height: math.unit(88, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Megamacro",
  5290. height: math.unit(8, "miles")
  5291. },
  5292. ]
  5293. )
  5294. };
  5295. characterMakers["Prodigy"] = () => {
  5296. return makeCharacter(
  5297. "Prodigy",
  5298. "Rook",
  5299. {
  5300. front: {
  5301. height: math.unit(12 + 2/12, "feet"),
  5302. weight: math.unit(808, "lbs"),
  5303. name: "Front",
  5304. image: {
  5305. source: "./media/characters/prodigy/front.svg"
  5306. }
  5307. }
  5308. },
  5309. [
  5310. {
  5311. name: "Normal",
  5312. height: math.unit(12 + 2/12, "feet"),
  5313. default: true
  5314. },
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(143, "feet")
  5318. },
  5319. {
  5320. name: "Macro+",
  5321. height: math.unit(400, "feet")
  5322. },
  5323. ]
  5324. )
  5325. };
  5326. characterMakers["Daniel"] = () => {
  5327. return makeCharacter(
  5328. "Daniel",
  5329. "Galactor",
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(225, "lbs"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/daniel/front.svg"
  5337. }
  5338. },
  5339. leaning: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(225, "lbs"),
  5342. name: "Leaning",
  5343. image: {
  5344. source: "./media/characters/daniel/leaning.svg"
  5345. }
  5346. },
  5347. },
  5348. [
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(1000, "feet"),
  5352. default: true
  5353. },
  5354. ]
  5355. )
  5356. };
  5357. characterMakers["Chiros"] = () => {
  5358. return makeCharacter(
  5359. "Chiros",
  5360. "Chiropica",
  5361. {
  5362. front: {
  5363. height: math.unit(6, "feet"),
  5364. weight: math.unit(88, "lbs"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/chiros/front.svg",
  5368. extra: 306/226
  5369. }
  5370. },
  5371. side: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(88, "lbs"),
  5374. name: "Side",
  5375. image: {
  5376. source: "./media/characters/chiros/side.svg",
  5377. extra: 306/226
  5378. }
  5379. },
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(6, "cm"),
  5385. default: true
  5386. },
  5387. ]
  5388. )
  5389. };
  5390. characterMakers["Selka"] = () => {
  5391. return makeCharacter(
  5392. "Selka",
  5393. "Xelchew",
  5394. {
  5395. front: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(100, "lbs"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/selka/front.svg",
  5401. extra: 947/887
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(5, "cm"),
  5409. default: true
  5410. },
  5411. ]
  5412. )
  5413. };
  5414. characterMakers["Verin"] = () => {
  5415. return makeCharacter(
  5416. "Verin",
  5417. "Vonadi",
  5418. {
  5419. front: {
  5420. height: math.unit(8 + 3/12, "feet"),
  5421. weight: math.unit(424, "lbs"),
  5422. name: "Front",
  5423. image: {
  5424. source: "./media/characters/verin/front.svg",
  5425. extra: 1845/1550
  5426. }
  5427. },
  5428. frontArmored: {
  5429. height: math.unit(8 + 3/12, "feet"),
  5430. weight: math.unit(424, "lbs"),
  5431. name: "Front (Armored)",
  5432. image: {
  5433. source: "./media/characters/verin/front-armor.svg",
  5434. extra: 1845/1550 * (1 / (1 - 0.01)),
  5435. bottom: 0.01
  5436. }
  5437. },
  5438. back: {
  5439. height: math.unit(8 + 3/12, "feet"),
  5440. weight: math.unit(424, "lbs"),
  5441. name: "Back",
  5442. image: {
  5443. source: "./media/characters/verin/back.svg",
  5444. bottom: 0.1,
  5445. extra: 1 / (1 - 0.1)
  5446. }
  5447. },
  5448. foot: {
  5449. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5450. name: "Foot",
  5451. image: {
  5452. source: "./media/characters/verin/foot.svg"
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(8 + 3/12, "feet")
  5460. },
  5461. {
  5462. name: "Minimacro",
  5463. height: math.unit(21, "feet"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(626, "feet")
  5469. },
  5470. ]
  5471. )
  5472. };
  5473. characterMakers["Sovrim Terraquian"] = () => {
  5474. return makeCharacter(
  5475. "Sovrim Terraquian",
  5476. "Sovrim Terraquian",
  5477. {
  5478. front: {
  5479. height: math.unit(2.718, "meters"),
  5480. weight: math.unit(150, "lbs"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/sovrim-terraquian/front.svg"
  5484. }
  5485. },
  5486. back: {
  5487. height: math.unit(2.718, "meters"),
  5488. weight: math.unit(150, "lbs"),
  5489. name: "Back",
  5490. image: {
  5491. source: "./media/characters/sovrim-terraquian/back.svg"
  5492. }
  5493. }
  5494. },
  5495. [
  5496. {
  5497. name: "Micro",
  5498. height: math.unit(2, "inches")
  5499. },
  5500. {
  5501. name: "Small",
  5502. height: math.unit(1, "meter")
  5503. },
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(Math.E, "meters"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(20, "meters")
  5512. },
  5513. {
  5514. name: "Macro+",
  5515. height: math.unit(400, "meters")
  5516. },
  5517. ]
  5518. )
  5519. };
  5520. characterMakers["Reece Silvermane"] = () => {
  5521. return makeCharacter(
  5522. "Reece Silvermane",
  5523. "Silverhorsey",
  5524. {
  5525. front: {
  5526. height: math.unit(7, "feet"),
  5527. weight: math.unit(489, "lbs"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/reece-silvermane/front.svg",
  5531. bottom: 0.02,
  5532. extra: 1 / (1 - 0.02)
  5533. }
  5534. },
  5535. },
  5536. [
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(1.5, "miles"),
  5540. default: true
  5541. },
  5542. ]
  5543. )
  5544. };
  5545. characterMakers["Kane"] = () => {
  5546. return makeCharacter(
  5547. "Kane",
  5548. "LittleBigX110",
  5549. {
  5550. front: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(78, "kg"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/kane/front.svg",
  5556. extra: 978/899
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(2.1, "m"),
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(1, "km"),
  5568. default: true
  5569. },
  5570. ]
  5571. )
  5572. };
  5573. characterMakers["Tegon"] = () => {
  5574. return makeCharacter(
  5575. "Tegon",
  5576. "TegonDragon",
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(200, "kg"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/tegon/front.svg",
  5584. bottom: 0.01,
  5585. extra: 1 / (1 - 0.01)
  5586. }
  5587. },
  5588. },
  5589. [
  5590. {
  5591. name: "Micro",
  5592. height: math.unit(1, "inch")
  5593. },
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(6 + 3/12, "feet"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Macro",
  5601. height: math.unit(300, "feet")
  5602. },
  5603. {
  5604. name: "Megamacro",
  5605. height: math.unit(69, "miles")
  5606. },
  5607. ]
  5608. )
  5609. };
  5610. characterMakers["Arcturax"] = () => {
  5611. return makeCharacter(
  5612. "Arcturax",
  5613. "Arcturax",
  5614. {
  5615. side: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(2304, "lbs"),
  5618. name: "Side",
  5619. image: {
  5620. source: "./media/characters/arcturax/side.svg",
  5621. extra: 790/376 * (1 / (1 - 0.01)),
  5622. bottom: 0.01
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Micro",
  5629. height: math.unit(2, "inch")
  5630. },
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(6, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(39, "feet"),
  5638. default: true
  5639. },
  5640. {
  5641. name: "Megamacro",
  5642. height: math.unit(7, "miles")
  5643. },
  5644. ]
  5645. )
  5646. };
  5647. characterMakers["Sentri"] = () => {
  5648. return makeCharacter(
  5649. "Sentri",
  5650. "Sentri",
  5651. {
  5652. front: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(50, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/sentri/front.svg",
  5658. extra: 1750/1570 * (1 / (1 - 0.025)),
  5659. bottom: 0.025
  5660. }
  5661. },
  5662. frontAlt: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(50, "lbs"),
  5665. name: "Front (Alt)",
  5666. image: {
  5667. source: "./media/characters/sentri/front-alt.svg",
  5668. extra: 1750/1570 * (1 / (1 - 0.025)),
  5669. bottom: 0.025
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(15, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Macro",
  5681. height: math.unit(2500, "feet")
  5682. }
  5683. ]
  5684. )
  5685. };
  5686. characterMakers["Corvin"] = () => {
  5687. return makeCharacter(
  5688. "Corvin",
  5689. "Sirffuzzylogik",
  5690. {
  5691. front: {
  5692. height: math.unit(5 + 8/12, "feet"),
  5693. weight: math.unit(130, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/corvin/front.svg",
  5697. extra: 1803/1629
  5698. }
  5699. },
  5700. frontShirt: {
  5701. height: math.unit(5 + 8/12, "feet"),
  5702. weight: math.unit(130, "lbs"),
  5703. name: "Front (Shirt)",
  5704. image: {
  5705. source: "./media/characters/corvin/front-shirt.svg",
  5706. extra: 1803/1629
  5707. }
  5708. },
  5709. frontPoncho: {
  5710. height: math.unit(5 + 8/12, "feet"),
  5711. weight: math.unit(130, "lbs"),
  5712. name: "Front (Poncho)",
  5713. image: {
  5714. source: "./media/characters/corvin/front-poncho.svg",
  5715. extra: 1803/1629
  5716. }
  5717. },
  5718. side: {
  5719. height: math.unit(5 + 8/12, "feet"),
  5720. weight: math.unit(130, "lbs"),
  5721. name: "Side",
  5722. image: {
  5723. source: "./media/characters/corvin/side.svg",
  5724. extra: 1012/945
  5725. }
  5726. },
  5727. back: {
  5728. height: math.unit(5 + 8/12, "feet"),
  5729. weight: math.unit(130, "lbs"),
  5730. name: "Back",
  5731. image: {
  5732. source: "./media/characters/corvin/back.svg",
  5733. extra: 1803/1629
  5734. }
  5735. },
  5736. },
  5737. [
  5738. {
  5739. name: "Micro",
  5740. height: math.unit(3, "inches")
  5741. },
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(5 + 8/12, "feet")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(300, "feet"),
  5749. default: true
  5750. },
  5751. {
  5752. name: "Megamacro",
  5753. height: math.unit(500, "miles")
  5754. }
  5755. ]
  5756. )
  5757. };
  5758. characterMakers["Q"] = () => {
  5759. return makeCharacter(
  5760. "Q",
  5761. "Q Walf",
  5762. {
  5763. front: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(135, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/q/front.svg",
  5769. extra: 854/752 * (1 / (1 - 0.005)),
  5770. bottom: 0.005
  5771. }
  5772. },
  5773. back: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(130, "lbs"),
  5776. name: "Back",
  5777. image: {
  5778. source: "./media/characters/q/back.svg",
  5779. extra: 854/752
  5780. }
  5781. },
  5782. },
  5783. [
  5784. {
  5785. name: "Macro",
  5786. height: math.unit(90, "feet"),
  5787. default: true
  5788. },
  5789. {
  5790. name: "Extra Macro",
  5791. height: math.unit(300, "feet"),
  5792. },
  5793. {
  5794. name: "BIG WALF",
  5795. height: math.unit(750, "feet"),
  5796. },
  5797. ]
  5798. )
  5799. };
  5800. characterMakers["Carley"] = () => {
  5801. return makeCharacter(
  5802. "Carley",
  5803. "QuakeYote",
  5804. {
  5805. front: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(150, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/carley/front.svg",
  5811. extra: 3927/3540 * (1 / (1 - 0.03)),
  5812. bottom: 0.03
  5813. }
  5814. }
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(6 + 3/12, "feet")
  5820. },
  5821. {
  5822. name: "Macro",
  5823. height: math.unit(185, "feet"),
  5824. default: true
  5825. },
  5826. {
  5827. name: "Megamacro",
  5828. height: math.unit(8, "miles"),
  5829. },
  5830. ]
  5831. )
  5832. };
  5833. characterMakers["Citrine"] = () => {
  5834. return makeCharacter(
  5835. "Citrine",
  5836. "thunderstrike23",
  5837. {
  5838. front: {
  5839. height: math.unit(3, "feet"),
  5840. weight: math.unit(28, "lbs"),
  5841. name: "Front",
  5842. image: {
  5843. source: "./media/characters/citrine/front.svg"
  5844. }
  5845. }
  5846. },
  5847. [
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(3, "feet"),
  5851. default: true
  5852. }
  5853. ]
  5854. )
  5855. };
  5856. characterMakers["Aura Starwind"] = () => {
  5857. return makeCharacter(
  5858. "Aura Starwind",
  5859. "StrikeVixen",
  5860. {
  5861. front: {
  5862. height: math.unit(14, "feet"),
  5863. weight: math.unit(1450, "kg"),
  5864. name: "Front",
  5865. image: {
  5866. source: "./media/characters/aura-starwind/front.svg",
  5867. extra: 1455/1335
  5868. }
  5869. },
  5870. side: {
  5871. height: math.unit(14, "feet"),
  5872. weight: math.unit(1450, "kg"),
  5873. name: "Side",
  5874. image: {
  5875. source: "./media/characters/aura-starwind/side.svg",
  5876. extra: 1654/1497
  5877. }
  5878. },
  5879. taur: {
  5880. height: math.unit(18, "feet"),
  5881. weight: math.unit(5500, "kg"),
  5882. name: "Taur",
  5883. image: {
  5884. source: "./media/characters/aura-starwind/taur.svg",
  5885. extra: 1760/1650
  5886. }
  5887. },
  5888. feral: {
  5889. height: math.unit(46, "feet"),
  5890. weight: math.unit(25000, "kg"),
  5891. name: "Feral",
  5892. image: {
  5893. source: "./media/characters/aura-starwind/feral.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(14, "feet"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Macro",
  5905. height: math.unit(50, "meters")
  5906. },
  5907. {
  5908. name: "Megamacro",
  5909. height: math.unit(5000, "meters")
  5910. },
  5911. {
  5912. name: "Gigamacro",
  5913. height: math.unit(100000, "kilometers")
  5914. },
  5915. ]
  5916. )
  5917. };
  5918. characterMakers["Rivet"] = () => {
  5919. return makeCharacter(
  5920. "Rivet",
  5921. "Vonadi",
  5922. {
  5923. front: {
  5924. height: math.unit(2 + 7/12, "feet"),
  5925. weight: math.unit(32, "lbs"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/rivet/front.svg",
  5929. extra: 1716/1658 * (1 / (1 - 0.03)),
  5930. bottom: 0.03
  5931. }
  5932. },
  5933. foot: {
  5934. height: math.unit(0.551, "feet"),
  5935. name: "Rivet's Foot",
  5936. image: {
  5937. source: "./media/characters/rivet/foot.svg"
  5938. },
  5939. rename: true
  5940. }
  5941. },
  5942. [
  5943. {
  5944. name: "Micro",
  5945. height: math.unit(1.5, "inches"),
  5946. },
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(2 + 7/12, "feet"),
  5950. default: true
  5951. },
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(85, "feet")
  5955. },
  5956. {
  5957. name: "Megamacro",
  5958. height: math.unit(2.2, "km")
  5959. }
  5960. ]
  5961. )
  5962. };
  5963. characterMakers["Coffee"] = () => {
  5964. return makeCharacter(
  5965. "Coffee",
  5966. "CoffeeDoggo",
  5967. {
  5968. front: {
  5969. height: math.unit(5 + 9/12, "feet"),
  5970. weight: math.unit(150, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/coffee/front.svg",
  5974. extra: 3666/3032 * (1 / (1 - 0.04)),
  5975. bottom: 0.04
  5976. }
  5977. }
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(2, "inches"),
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(5 + 9/12, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(800, "feet")
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(25, "miles")
  5996. }
  5997. ]
  5998. )
  5999. };
  6000. characterMakers["Chari-Gal"] = () => {
  6001. return makeCharacter(
  6002. "Chari-Gal",
  6003. "Knoem",
  6004. {
  6005. front: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(200, "lbs"),
  6008. name: "Front",
  6009. image: {
  6010. source: "./media/characters/chari-gal/front.svg",
  6011. extra: 1568/1385 * (1 / (1 - 0.047)),
  6012. bottom: 0.047
  6013. }
  6014. },
  6015. gigantamax: {
  6016. height: math.unit(6*16, "feet"),
  6017. weight: math.unit(200*16*16*16, "lbs"),
  6018. name: "Gigantamax",
  6019. image: {
  6020. source: "./media/characters/chari-gal/gigantamax.svg",
  6021. extra: 1124/888 * (1 / (1 - 0.03)),
  6022. bottom: 0.03
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(5 + 7/12, "feet")
  6030. },
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(200, "feet"),
  6034. default: true
  6035. }
  6036. ]
  6037. )
  6038. };
  6039. characterMakers["Nova"] = () => {
  6040. return makeCharacter(
  6041. "Nova",
  6042. "CoffeeDoggo",
  6043. {
  6044. front: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(150, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/nova/front.svg",
  6050. extra: 5000/4722 * (1 / (1 - 0.02)),
  6051. bottom: 0.02
  6052. }
  6053. }
  6054. },
  6055. [
  6056. {
  6057. name: "Micro-",
  6058. height: math.unit(0.8, "inches")
  6059. },
  6060. {
  6061. name: "Micro",
  6062. height: math.unit(2, "inches"),
  6063. default: true
  6064. },
  6065. ]
  6066. )
  6067. };
  6068. characterMakers["Argent"] = () => {
  6069. return makeCharacter(
  6070. "Argent",
  6071. "ArgentVZ",
  6072. {
  6073. front: {
  6074. height: math.unit(3 + 1/12, "feet"),
  6075. weight: math.unit(21.7, "lbs"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/argent/front.svg",
  6079. extra: 1565/1416 * (1 / (1 - 0.01)),
  6080. bottom: 0.01
  6081. }
  6082. }
  6083. },
  6084. [
  6085. {
  6086. name: "Micro",
  6087. height: math.unit(2, "inches")
  6088. },
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(3 + 1/12, "feet"),
  6092. default: true
  6093. },
  6094. {
  6095. name: "Macro",
  6096. height: math.unit(120, "feet")
  6097. },
  6098. ]
  6099. )
  6100. };
  6101. characterMakers["Mira al-Cul"] = () => {
  6102. return makeCharacter(
  6103. "Mira al-Cul",
  6104. "Mariokartsonicriders",
  6105. {
  6106. lamp: {
  6107. height: math.unit(7 * 1559 / 989, "feet"),
  6108. name: "Magic Lamp",
  6109. image: {
  6110. source: "./media/characters/mira-al-cul/lamp.svg",
  6111. extra: 1617/1559
  6112. }
  6113. },
  6114. front: {
  6115. height: math.unit(7, "feet"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/mira-al-cul/front.svg",
  6119. extra: 1044/990
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Heavily Restricted",
  6126. height: math.unit(7 * 1559 / 989, "feet")
  6127. },
  6128. {
  6129. name: "Freshly Freed",
  6130. height: math.unit(50 * 1559 / 989, "feet")
  6131. },
  6132. {
  6133. name: "World Encompassing",
  6134. height: math.unit(10000 * 1559 / 989, "miles")
  6135. },
  6136. {
  6137. name: "Galactic",
  6138. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6139. },
  6140. {
  6141. name: "Palmed Universe",
  6142. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6143. default: true
  6144. },
  6145. {
  6146. name: "Multiversal Matriarch",
  6147. height: math.unit(8.87e10, "yottameters")
  6148. },
  6149. {
  6150. name: "Void Mother",
  6151. height: math.unit(3.14e110, "yottaparsecs")
  6152. },
  6153. ]
  6154. )
  6155. };
  6156. characterMakers["Kuro-shi Uchū"] = () => {
  6157. return makeCharacter(
  6158. "Kuro-shi Uchū",
  6159. "Dragon Shark",
  6160. {
  6161. front: {
  6162. height: math.unit(17 + 1/12, "feet"),
  6163. weight: math.unit(476.2*5, "lbs"),
  6164. name: "Front",
  6165. image: {
  6166. source: "./media/characters/kuro-shi-uchū/front.svg",
  6167. extra: 2329/1835 * (1 / (1 - 0.02)),
  6168. bottom: 0.02
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Micro",
  6175. height: math.unit(2, "inches")
  6176. },
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(12, "meters")
  6180. },
  6181. {
  6182. name: "Planetary",
  6183. height: math.unit(0.00929, "AU"),
  6184. default: true
  6185. },
  6186. {
  6187. name: "Universal",
  6188. height: math.unit(20, "gigaparsecs")
  6189. },
  6190. ]
  6191. )
  6192. };
  6193. characterMakers["Katherine"] = () => {
  6194. return makeCharacter(
  6195. "Katherine",
  6196. "chrisrules123",
  6197. {
  6198. front: {
  6199. height: math.unit(5 + 2/12, "feet"),
  6200. weight: math.unit(120, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/katherine/front.svg",
  6204. extra: 2075/1969
  6205. }
  6206. },
  6207. dress: {
  6208. height: math.unit(5 + 2/12, "feet"),
  6209. weight: math.unit(120, "lbs"),
  6210. name: "Dress",
  6211. image: {
  6212. source: "./media/characters/katherine/dress.svg",
  6213. extra: 2258/2064
  6214. }
  6215. },
  6216. },
  6217. [
  6218. {
  6219. name: "Micro",
  6220. height: math.unit(1, "inches"),
  6221. default: true
  6222. },
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(5 + 2/12, "feet")
  6226. },
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(100, "meters")
  6230. },
  6231. {
  6232. name: "Megamacro",
  6233. height: math.unit(80, "miles")
  6234. },
  6235. ]
  6236. )
  6237. };
  6238. characterMakers["Yevis"] = () => {
  6239. return makeCharacter(
  6240. "Yevis",
  6241. "Mariokartsonicriders",
  6242. {
  6243. front: {
  6244. height: math.unit(7 + 8/12, "feet"),
  6245. weight: math.unit(250, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/yevis/front.svg",
  6249. extra: 1938/1755
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Mortal",
  6256. height: math.unit(7 + 8/12, "feet")
  6257. },
  6258. {
  6259. name: "Battle",
  6260. height: math.unit(25 + 11/12, "feet")
  6261. },
  6262. {
  6263. name: "Wrath",
  6264. height: math.unit(1654 + 11/12, "feet")
  6265. },
  6266. {
  6267. name: "Planet Destroyer",
  6268. height: math.unit(12000, "miles")
  6269. },
  6270. {
  6271. name: "Galaxy Conqueror",
  6272. height: math.unit(1.45, "zettameters"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Universal War",
  6277. height: math.unit(184, "gigaparsecs")
  6278. },
  6279. {
  6280. name: "Eternity War",
  6281. height: math.unit(1.98e55, "yottaparsecs")
  6282. },
  6283. ]
  6284. )
  6285. };
  6286. characterMakers["Xavier"] = () => {
  6287. return makeCharacter(
  6288. "Xavier",
  6289. "zmaster587",
  6290. {
  6291. front: {
  6292. height: math.unit(5 + 8/12, "feet"),
  6293. weight: math.unit(63, "kg"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/xavier/front.svg",
  6297. extra: 944/883
  6298. }
  6299. },
  6300. frontStretch: {
  6301. height: math.unit(5 + 8/12, "feet"),
  6302. weight: math.unit(63, "kg"),
  6303. name: "Stretching",
  6304. image: {
  6305. source: "./media/characters/xavier/front-stretch.svg",
  6306. extra: 962/820
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(5 + 8/12, "feet")
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(100, "meters"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "McLargeHuge",
  6322. height: math.unit(10, "miles")
  6323. },
  6324. ]
  6325. )
  6326. };
  6327. characterMakers["Joshii"] = () => {
  6328. return makeCharacter(
  6329. "Joshii",
  6330. "DarkieTehJester",
  6331. {
  6332. front: {
  6333. height: math.unit(5 + 5/12, "feet"),
  6334. weight: math.unit(150, "lb"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/joshii/front.svg"
  6338. }
  6339. },
  6340. foot: {
  6341. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6342. name: "Foot",
  6343. image: {
  6344. source: "./media/characters/joshii/foot.svg"
  6345. }
  6346. },
  6347. },
  6348. [
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(2, "inches")
  6352. },
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(5 + 5/12, "feet"),
  6356. default: true
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(785, "feet")
  6361. },
  6362. {
  6363. name: "Megamacro",
  6364. height: math.unit(24.5, "miles")
  6365. },
  6366. ]
  6367. )
  6368. };
  6369. characterMakers["Goddess Elizabeth"] = () => {
  6370. return makeCharacter(
  6371. "Goddess Elizabeth",
  6372. "DarkieTehJester",
  6373. {
  6374. front: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(150, "lb"),
  6377. name: "Front",
  6378. image: {
  6379. source: "./media/characters/goddess-elizabeth/front.svg"
  6380. }
  6381. },
  6382. foot: {
  6383. height: math.unit(6 * 0.25436 / 2, "feet"),
  6384. name: "Foot",
  6385. image: {
  6386. source: "./media/characters/goddess-elizabeth/foot.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Micro",
  6393. height: math.unit(12, "feet")
  6394. },
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(80, "miles"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Macro",
  6402. height: math.unit(15000, "parsecs")
  6403. },
  6404. ]
  6405. )
  6406. };
  6407. characterMakers["Kara"] = () => {
  6408. return makeCharacter(
  6409. "Kara",
  6410. "Vonadi",
  6411. {
  6412. front: {
  6413. height: math.unit(5 + 9/12, "feet"),
  6414. weight: math.unit(144, "lb"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/kara/front.svg"
  6418. }
  6419. },
  6420. feet: {
  6421. height: math.unit(6/6.765, "feet"),
  6422. name: "Kara's Feet",
  6423. rename: true,
  6424. image: {
  6425. source: "./media/characters/kara/feet.svg"
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(5 + 9/12, "feet")
  6433. },
  6434. {
  6435. name: "Macro",
  6436. height: math.unit(174, "feet"),
  6437. default: true
  6438. },
  6439. ]
  6440. )
  6441. };
  6442. characterMakers["Tyrone"] = () => {
  6443. return makeCharacter(
  6444. "Tyrone",
  6445. "nanakisan",
  6446. {
  6447. front: {
  6448. height: math.unit(18, "feet"),
  6449. weight: math.unit(4050, "lb"),
  6450. name: "Front",
  6451. image: {
  6452. source: "./media/characters/tyrone/front.svg",
  6453. extra: 2520/2402 * (1 / (1 - 0.025)),
  6454. bottom: 0.025
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(18, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(300, "feet")
  6467. },
  6468. ]
  6469. )
  6470. };
  6471. characterMakers["Danny"] = () => {
  6472. return makeCharacter(
  6473. "Danny",
  6474. "danny_gryphon",
  6475. {
  6476. front: {
  6477. height: math.unit(7 + 8/12, "feet"),
  6478. weight: math.unit(120, "lb"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/danny/front.svg",
  6482. extra: 1490/1350
  6483. }
  6484. },
  6485. back: {
  6486. height: math.unit(7 + 8/12, "feet"),
  6487. weight: math.unit(120, "lb"),
  6488. name: "Back",
  6489. image: {
  6490. source: "./media/characters/danny/back.svg",
  6491. extra: 1490/1350
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(7 + 8/12, "feet"),
  6499. default: true
  6500. },
  6501. ]
  6502. )
  6503. };
  6504. characterMakers["Mallow"] = () => {
  6505. return makeCharacter(
  6506. "Mallow",
  6507. "Mallowchu",
  6508. {
  6509. front: {
  6510. height: math.unit(3.5, "inches"),
  6511. weight: math.unit(19, "grams"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/mallow/front.svg",
  6515. extra: 471/431
  6516. }
  6517. },
  6518. back: {
  6519. height: math.unit(3.5, "inches"),
  6520. weight: math.unit(19, "grams"),
  6521. name: "Back",
  6522. image: {
  6523. source: "./media/characters/mallow/back.svg",
  6524. extra: 471/431
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Normal",
  6531. height: math.unit(3.5, "inches"),
  6532. default: true
  6533. },
  6534. ]
  6535. )
  6536. };
  6537. characterMakers["Starry Aqua"] = () => {
  6538. return makeCharacter(
  6539. "Starry Aqua",
  6540. "StarryAqua",
  6541. {
  6542. front: {
  6543. height: math.unit(9, "feet"),
  6544. weight: math.unit(230, "kg"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/starry-aqua/front.svg"
  6548. }
  6549. },
  6550. back: {
  6551. height: math.unit(9, "feet"),
  6552. weight: math.unit(230, "kg"),
  6553. name: "Back",
  6554. image: {
  6555. source: "./media/characters/starry-aqua/back.svg"
  6556. }
  6557. },
  6558. hand: {
  6559. height: math.unit(9 * 0.1168, "feet"),
  6560. name: "Hand",
  6561. image: {
  6562. source: "./media/characters/starry-aqua/hand.svg"
  6563. }
  6564. },
  6565. foot: {
  6566. height: math.unit(9 * 0.18, "feet"),
  6567. name: "Foot",
  6568. image: {
  6569. source: "./media/characters/starry-aqua/foot.svg"
  6570. }
  6571. }
  6572. },
  6573. [
  6574. {
  6575. name: "Micro",
  6576. height: math.unit(3, "inches")
  6577. },
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(9, "feet")
  6581. },
  6582. {
  6583. name: "Macro",
  6584. height: math.unit(300, "feet"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Megamacro",
  6589. height: math.unit(3200, "feet")
  6590. }
  6591. ]
  6592. )
  6593. };
  6594. characterMakers["Luka"] = () => {
  6595. return makeCharacter(
  6596. "Luka",
  6597. "UmbraHusky",
  6598. {
  6599. front: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(230, "lb"),
  6602. name: "Front",
  6603. image: {
  6604. source: "./media/characters/luka/front.svg",
  6605. extra: 1 / (1 - 0.025),
  6606. bottom: 0.025
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(12 + 8/12, "feet"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Minimacro",
  6618. height: math.unit(20, "feet")
  6619. },
  6620. {
  6621. name: "Macro",
  6622. height: math.unit(250, "feet")
  6623. },
  6624. {
  6625. name: "Megamacro",
  6626. height: math.unit(5, "miles")
  6627. },
  6628. {
  6629. name: "Gigamacro",
  6630. height: math.unit(8000, "miles")
  6631. },
  6632. ]
  6633. )
  6634. };
  6635. characterMakers["Natalie Nightring"] = () => {
  6636. return makeCharacter(
  6637. "Natalie Nightring",
  6638. "NatEdgecomb",
  6639. {
  6640. front: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(150, "lb"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/natalie-nightring/front.svg",
  6646. extra: 1 / (1 - 0.06),
  6647. bottom: 0.06
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Uh Oh",
  6654. height: math.unit(0.1, "mm")
  6655. },
  6656. {
  6657. name: "Small",
  6658. height: math.unit(3, "inches")
  6659. },
  6660. {
  6661. name: "Human Scale",
  6662. height: math.unit(6, "feet")
  6663. },
  6664. {
  6665. name: "Librarian",
  6666. height: math.unit(50, "feet"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Immense",
  6671. height: math.unit(200, "miles")
  6672. },
  6673. ]
  6674. )
  6675. };
  6676. characterMakers["Danni Rosie"] = () => {
  6677. return makeCharacter(
  6678. "Danni Rosie",
  6679. "colwag",
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/danni-rosie/front.svg",
  6687. extra: 1260/1128 * (1 / (1 - 0.022)),
  6688. bottom: 0.022
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Micro",
  6695. height: math.unit(2, "inches"),
  6696. default: true
  6697. },
  6698. ]
  6699. )
  6700. };
  6701. characterMakers["Samantha Kruse"] = () => {
  6702. return makeCharacter(
  6703. "Samantha Kruse",
  6704. "colwag",
  6705. {
  6706. front: {
  6707. height: math.unit(5 + 9/12, "feet"),
  6708. weight: math.unit(220, "lb"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/samantha-kruse/front.svg",
  6712. extra: (985 / 935) * (1 / (1 - 0.03)),
  6713. bottom: 0.03
  6714. }
  6715. },
  6716. frontUndressed: {
  6717. height: math.unit(5 + 9/12, "feet"),
  6718. weight: math.unit(220, "lb"),
  6719. name: "Front (Undressed)",
  6720. image: {
  6721. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6722. extra: (973 / 923) * (1 / (1 - 0.025)),
  6723. bottom: 0.025
  6724. }
  6725. },
  6726. fat: {
  6727. height: math.unit(5 + 9/12, "feet"),
  6728. weight: math.unit(900, "lb"),
  6729. name: "Front (Fat)",
  6730. image: {
  6731. source: "./media/characters/samantha-kruse/fat.svg",
  6732. extra: 2688/2561
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 9/12, "feet"),
  6740. default: true
  6741. }
  6742. ]
  6743. )
  6744. };
  6745. characterMakers["Amelia Rosie"] = () => {
  6746. return makeCharacter(
  6747. "Amelia Rosie",
  6748. "colwag",
  6749. {
  6750. back: {
  6751. height: math.unit(5 + 4/12, "feet"),
  6752. weight: math.unit(4963, "lb"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/amelia-rosie/back.svg",
  6756. extra: 1113/963 * (1 / (1 - 0.01)),
  6757. bottom: 0.01
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Level 0",
  6764. height: math.unit(5 + 4/12, "feet")
  6765. },
  6766. {
  6767. name: "Level 1",
  6768. height: math.unit(164597, "feet"),
  6769. default: true
  6770. },
  6771. {
  6772. name: "Level 2",
  6773. height: math.unit(956243, "miles")
  6774. },
  6775. {
  6776. name: "Level 3",
  6777. height: math.unit(29421709423, "miles")
  6778. },
  6779. {
  6780. name: "Level 4",
  6781. height: math.unit(154, "lightyears")
  6782. },
  6783. {
  6784. name: "Level 5",
  6785. height: math.unit(4738272, "lightyears")
  6786. },
  6787. {
  6788. name: "Level 6",
  6789. height: math.unit(145787152896, "lightyears")
  6790. },
  6791. ]
  6792. )
  6793. };
  6794. characterMakers["Rook Kitara"] = () => {
  6795. return makeCharacter(
  6796. "Rook Kitara",
  6797. "TailsHigh",
  6798. {
  6799. front: {
  6800. height: math.unit(5 + 11/12, "feet"),
  6801. weight: math.unit(65, "kg"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/rook-kitara/front.svg",
  6805. extra: 1347/1274 * (1 / (1 - 0.005)),
  6806. bottom: 0.005
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Totally Unfair",
  6813. height: math.unit(1.8, "mm")
  6814. },
  6815. {
  6816. name: "Lap Rookie",
  6817. height: math.unit(1.4, "feet")
  6818. },
  6819. {
  6820. name: "Normal",
  6821. height: math.unit(5 + 11/12, "feet"),
  6822. default: true
  6823. },
  6824. {
  6825. name: "How Did This Happen",
  6826. height: math.unit(80, "miles")
  6827. }
  6828. ]
  6829. )
  6830. };
  6831. characterMakers["Pisces"] = () => {
  6832. return makeCharacter(
  6833. "Pisces",
  6834. "Pisces_Kelp",
  6835. {
  6836. front: {
  6837. height: math.unit(7, "feet"),
  6838. weight: math.unit(300, "lb"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/pisces/front.svg",
  6842. extra: 2255/2115 * (1 / (1 - 0.03)),
  6843. bottom: 0.03
  6844. }
  6845. },
  6846. back: {
  6847. height: math.unit(7, "feet"),
  6848. weight: math.unit(300, "lb"),
  6849. name: "Back",
  6850. image: {
  6851. source: "./media/characters/pisces/back.svg",
  6852. extra: 2146/2055 * (1 / (1 - 0.04)),
  6853. bottom: 0.04
  6854. }
  6855. },
  6856. },
  6857. [
  6858. {
  6859. name: "Normal",
  6860. height: math.unit(7, "feet"),
  6861. default: true
  6862. },
  6863. {
  6864. name: "Swimming Pool",
  6865. height: math.unit(12.2, "meters")
  6866. },
  6867. {
  6868. name: "Olympic Swimming Pool",
  6869. height: math.unit(56.3, "meters")
  6870. },
  6871. {
  6872. name: "Lake Superior",
  6873. height: math.unit(93900, "meters")
  6874. },
  6875. {
  6876. name: "Mediterranean Sea",
  6877. height: math.unit(644457, "meters")
  6878. },
  6879. {
  6880. name: "World's Oceans",
  6881. height: math.unit(4567491, "meters")
  6882. },
  6883. ]
  6884. )
  6885. };
  6886. characterMakers["Zelas"] = () => {
  6887. return makeCharacter(
  6888. "Zelas",
  6889. "Cirez",
  6890. {
  6891. front: {
  6892. height: math.unit(2.3, "meters"),
  6893. weight: math.unit(120, "kg"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/zelas/front.svg"
  6897. }
  6898. },
  6899. side: {
  6900. height: math.unit(2.3, "meters"),
  6901. weight: math.unit(120, "kg"),
  6902. name: "Side",
  6903. image: {
  6904. source: "./media/characters/zelas/side.svg"
  6905. }
  6906. },
  6907. back: {
  6908. height: math.unit(2.3, "meters"),
  6909. weight: math.unit(120, "kg"),
  6910. name: "Back",
  6911. image: {
  6912. source: "./media/characters/zelas/back.svg"
  6913. }
  6914. },
  6915. foot: {
  6916. height: math.unit(1.116, "feet"),
  6917. name: "Foot",
  6918. image: {
  6919. source: "./media/characters/zelas/foot.svg"
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(2.3, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(30, "meters"),
  6931. default: true
  6932. },
  6933. ]
  6934. )
  6935. };
  6936. characterMakers["Talbot"] = () => {
  6937. return makeCharacter(
  6938. "Talbot",
  6939. "Talbot",
  6940. {
  6941. front: {
  6942. height: math.unit(1, "inch"),
  6943. weight: math.unit(0.21, "grams"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/talbot/front.svg",
  6947. extra: 594/544
  6948. }
  6949. },
  6950. },
  6951. [
  6952. {
  6953. name: "Micro",
  6954. height: math.unit(1, "inch"),
  6955. default: true
  6956. },
  6957. ]
  6958. )
  6959. };
  6960. characterMakers["Fliss"] = () => {
  6961. return makeCharacter(
  6962. "Fliss",
  6963. "Fliss",
  6964. {
  6965. front: {
  6966. height: math.unit(3 + 3/12, "feet"),
  6967. weight: math.unit(51.8, "lb"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/fliss/front.svg",
  6971. extra: 840/640
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Teeny Tiny",
  6978. height: math.unit(1, "mm")
  6979. },
  6980. {
  6981. name: "Small",
  6982. height: math.unit(1, "inch"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Standard Sylveon",
  6987. height: math.unit(3 + 3/12, "feet")
  6988. },
  6989. {
  6990. name: "Large Nuisance",
  6991. height: math.unit(33, "feet")
  6992. },
  6993. {
  6994. name: "City Filler",
  6995. height: math.unit(3000, "feet")
  6996. },
  6997. {
  6998. name: "New Horizon",
  6999. height: math.unit(6000, "miles")
  7000. },
  7001. ]
  7002. )
  7003. };
  7004. characterMakers["Fleta"] = () => {
  7005. return makeCharacter(
  7006. "Fleta",
  7007. "TheFleta",
  7008. {
  7009. front: {
  7010. height: math.unit(5, "cm"),
  7011. weight: math.unit(1.94, "g"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/fleta/front.svg",
  7015. extra: 835/803
  7016. }
  7017. },
  7018. back: {
  7019. height: math.unit(5, "cm"),
  7020. weight: math.unit(1.94, "g"),
  7021. name: "Back",
  7022. image: {
  7023. source: "./media/characters/fleta/back.svg",
  7024. extra: 835/803
  7025. }
  7026. },
  7027. },
  7028. [
  7029. {
  7030. name: "Micro",
  7031. height: math.unit(5, "cm"),
  7032. default: true
  7033. },
  7034. ]
  7035. )
  7036. };
  7037. characterMakers["Dominic"] = () => {
  7038. return makeCharacter(
  7039. "Dominic",
  7040. "HypoTheDerg",
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(225, "lb"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/dominic/front.svg",
  7048. extra: 1770/1620 * (1 / (1 - 0.025)),
  7049. bottom: 0.025
  7050. }
  7051. },
  7052. back: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(225, "lb"),
  7055. name: "Back",
  7056. image: {
  7057. source: "./media/characters/dominic/back.svg",
  7058. extra: 1745/1620 * (1 / (1 - 0.065)),
  7059. bottom: 0.065
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Nano",
  7066. height: math.unit(0.1, "mm")
  7067. },
  7068. {
  7069. name: "Micro-",
  7070. height: math.unit(1, "mm")
  7071. },
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(4, "inches")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(6 + 4/12, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(115, "feet")
  7084. },
  7085. {
  7086. name: "Macro+",
  7087. height: math.unit(955, "feet")
  7088. },
  7089. {
  7090. name: "Megamacro",
  7091. height: math.unit(8990, "feet")
  7092. },
  7093. {
  7094. name: "Gigmacro",
  7095. height: math.unit(9310, "miles")
  7096. },
  7097. {
  7098. name: "Teramacro",
  7099. height: math.unit(1567005010, "miles")
  7100. },
  7101. {
  7102. name: "Examacro",
  7103. height: math.unit(1425, "parsecs")
  7104. },
  7105. ]
  7106. )
  7107. };
  7108. characterMakers["Major Colonel"] = () => {
  7109. return makeCharacter(
  7110. "Major Colonel",
  7111. "Major Colonel",
  7112. {
  7113. front: {
  7114. height: math.unit(400, "feet"),
  7115. weight: math.unit(44444444, "lb"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/major-colonel/front.svg"
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(400, "feet"),
  7123. weight: math.unit(44444444, "lb"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/major-colonel/back.svg"
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(400, "feet"),
  7134. default: true
  7135. },
  7136. ]
  7137. )
  7138. };
  7139. characterMakers["Axel Lycan"] = () => {
  7140. return makeCharacter(
  7141. "Axel Lycan",
  7142. "AxelLycan",
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(120, "lb"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/axel-lycan/front.svg",
  7150. extra: 1 / (1 - 0.08),
  7151. bottom: 0.08
  7152. }
  7153. },
  7154. },
  7155. [
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(1, "km"),
  7159. default: true
  7160. },
  7161. ]
  7162. )
  7163. };
  7164. characterMakers["Vanrel (Hyena)"] = () => {
  7165. return makeCharacter(
  7166. "Vanrel (Hyena)",
  7167. "Vanrel",
  7168. {
  7169. front: {
  7170. height: math.unit(5 + 9/12, "feet"),
  7171. weight: math.unit(175, "lb"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/vanrel-hyena/front.svg",
  7175. extra: 1086/1010 * (1 / (1 - 0.04)),
  7176. bottom: 0.04
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(5 + 9/12, "feet"),
  7184. default: true
  7185. },
  7186. ]
  7187. )
  7188. };
  7189. characterMakers["Abbott Absol"] = () => {
  7190. return makeCharacter(
  7191. "Abbott Absol",
  7192. "Abbott Absol",
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(103, "lb"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/abbott-absol/front.svg",
  7200. extra: 2010/1842
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Megamicro",
  7207. height: math.unit(0.1, "mm")
  7208. },
  7209. {
  7210. name: "Micro",
  7211. height: math.unit(1, "inch")
  7212. },
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(6, "feet"),
  7216. default: true
  7217. },
  7218. ]
  7219. )
  7220. };
  7221. characterMakers["Hector"] = () => {
  7222. return makeCharacter(
  7223. "Hector",
  7224. "LibragonSlvr",
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(264, "lb"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/hector/front.svg",
  7232. extra: 2280/2130 * (1 / (1 - 0.07)),
  7233. bottom: 0.07
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(12.25, "foot"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(160, "feet")
  7246. },
  7247. ]
  7248. )
  7249. };
  7250. characterMakers["Sal"] = () => {
  7251. return makeCharacter(
  7252. "Sal",
  7253. "Bigdur",
  7254. {
  7255. front: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(150, "lb"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/sal/front.svg",
  7261. extra: 1846/1699 * (1 / (1 - 0.04)),
  7262. bottom: 0.04
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Megamacro",
  7269. height: math.unit(10, "miles"),
  7270. default: true
  7271. },
  7272. ]
  7273. )
  7274. };
  7275. characterMakers["Ranger"] = () => {
  7276. return makeCharacter(
  7277. "Ranger",
  7278. "Ranger",
  7279. {
  7280. front: {
  7281. height: math.unit(3, "meters"),
  7282. weight: math.unit(450, "kg"),
  7283. name: "front",
  7284. image: {
  7285. source: "./media/characters/ranger/front.svg",
  7286. extra: 2401/2243 * (1 / (1 - 0.05)),
  7287. bottom: 0.05
  7288. }
  7289. },
  7290. },
  7291. [
  7292. {
  7293. name: "Normal",
  7294. height: math.unit(3, "meters"),
  7295. default: true
  7296. },
  7297. ]
  7298. )
  7299. };
  7300. characterMakers["Theresa"] = () => {
  7301. return makeCharacter(
  7302. "Theresa",
  7303. "Ranger",
  7304. {
  7305. front: {
  7306. height: math.unit(14, "feet"),
  7307. weight: math.unit(800, "kg"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/theresa/front.svg",
  7311. extra: 3575/3346 * (1 / (1 - 0.03)),
  7312. bottom: 0.03
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(14, "feet"),
  7320. default: true
  7321. },
  7322. ]
  7323. )
  7324. };
  7325. characterMakers["Ine"] = () => {
  7326. return makeCharacter(
  7327. "Ine",
  7328. "Ranger",
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(3, "kg"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/ine/front.svg",
  7336. extra: 678/539 * (1 / (1 - 0.023)),
  7337. bottom: 0.023
  7338. }
  7339. },
  7340. },
  7341. [
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(2.265, "feet"),
  7345. default: true
  7346. },
  7347. ]
  7348. )
  7349. };
  7350. characterMakers["Vial"] = () => {
  7351. return makeCharacter(
  7352. "Vial",
  7353. "Ranger",
  7354. {
  7355. front: {
  7356. height: math.unit(5, "feet"),
  7357. weight: math.unit(30, "kg"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/vial/front.svg",
  7361. extra: 1365/1277 * (1 / (1 - 0.04)),
  7362. bottom: 0.04
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(5, "feet"),
  7370. default: true
  7371. },
  7372. ]
  7373. )
  7374. };
  7375. characterMakers["Rovoska"] = () => {
  7376. return makeCharacter(
  7377. "Rovoska",
  7378. "Rovoska",
  7379. {
  7380. side: {
  7381. height: math.unit(3.4, "meters"),
  7382. weight: math.unit(1000, "lb"),
  7383. name: "Side",
  7384. image: {
  7385. source: "./media/characters/rovoska/side.svg",
  7386. extra: 4403/1515
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(3.4, "meters"),
  7394. default: true
  7395. },
  7396. ]
  7397. )
  7398. };
  7399. characterMakers["Gunner Rotthbauer"] = () => {
  7400. return makeCharacter(
  7401. "Gunner Rotthbauer",
  7402. "GunnerRott",
  7403. {
  7404. front: {
  7405. height: math.unit(8, "feet"),
  7406. weight: math.unit(315, "lb"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/gunner-rotthbauer/front.svg"
  7410. }
  7411. },
  7412. back: {
  7413. height: math.unit(8, "feet"),
  7414. weight: math.unit(315, "lb"),
  7415. name: "Back",
  7416. image: {
  7417. source: "./media/characters/gunner-rotthbauer/back.svg"
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(3.5, "inches")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(8, "feet"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(250, "feet")
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(1, "AU")
  7438. },
  7439. ]
  7440. )
  7441. };
  7442. characterMakers["Allatia"] = () => {
  7443. return makeCharacter(
  7444. "Allatia",
  7445. "ilikefurrystoo",
  7446. {
  7447. front: {
  7448. height: math.unit(5 + 5/12, "feet"),
  7449. weight: math.unit(140, "lb"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/allatia/front.svg",
  7453. extra: 1227/1180 * (1 / (1 - 0.027)),
  7454. bottom: 0.027
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(5 + 5/12, "feet")
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(250, "feet"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(8, "miles")
  7471. }
  7472. ]
  7473. )
  7474. };
  7475. characterMakers["Tene"] = () => {
  7476. return makeCharacter(
  7477. "Tene",
  7478. "TenebrisDrox",
  7479. {
  7480. front: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(120, "lb"),
  7483. name: "Front",
  7484. image: {
  7485. source: "./media/characters/tene/front.svg",
  7486. extra: 1728/1578 * (1 / (1 - 0.022)),
  7487. bottom: 0.022
  7488. }
  7489. },
  7490. stomping: {
  7491. height: math.unit(2.025, "meters"),
  7492. weight: math.unit(120, "lb"),
  7493. name: "Stomping",
  7494. image: {
  7495. source: "./media/characters/tene/stomping.svg",
  7496. extra: 938/873 * (1 / (1 - 0.01)),
  7497. bottom: 0.01
  7498. }
  7499. },
  7500. sitting: {
  7501. height: math.unit(1, "meter"),
  7502. weight: math.unit(120, "lb"),
  7503. name: "Sitting",
  7504. image: {
  7505. source: "./media/characters/tene/sitting.svg",
  7506. extra: 437/415 * (1 / (1 - 0.1)),
  7507. bottom: 0.1
  7508. }
  7509. },
  7510. feral: {
  7511. height: math.unit(3.9, "feet"),
  7512. weight: math.unit(250, "lb"),
  7513. name: "Feral",
  7514. image: {
  7515. source: "./media/characters/tene/feral.svg",
  7516. extra: 717/458 * (1 / (1 - 0.179)),
  7517. bottom: 0.179
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(6, "feet")
  7525. },
  7526. {
  7527. name: "Macro",
  7528. height: math.unit(300, "feet"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Megamacro",
  7533. height: math.unit(5, "miles")
  7534. },
  7535. ]
  7536. )
  7537. };
  7538. characterMakers["Evander"] = () => {
  7539. return makeCharacter(
  7540. "Evander",
  7541. "KlezmerGryphon",
  7542. {
  7543. side: {
  7544. height: math.unit(6, "feet"),
  7545. name: "Side",
  7546. image: {
  7547. source: "./media/characters/evander/side.svg",
  7548. extra: 877/477
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(0.83, "meters"),
  7556. default: true
  7557. },
  7558. ]
  7559. )
  7560. };
  7561. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7562. return makeCharacter(
  7563. "Ka'Tamra \"Spaz\" Ci'Karan",
  7564. "Spazman",
  7565. {
  7566. front: {
  7567. height: math.unit(12, "feet"),
  7568. weight: math.unit(1000, "lb"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7572. extra: 1762/1611
  7573. }
  7574. },
  7575. back: {
  7576. height: math.unit(12, "feet"),
  7577. weight: math.unit(1000, "lb"),
  7578. name: "Back",
  7579. image: {
  7580. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7581. extra: 1762/1611
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(12, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Kaiju",
  7593. height: math.unit(150, "feet")
  7594. },
  7595. ]
  7596. )
  7597. };
  7598. characterMakers["Zero Alurus"] = () => {
  7599. return makeCharacter(
  7600. "Zero Alurus",
  7601. "",
  7602. {
  7603. front: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(150, "lb"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/zero-alurus/front.svg"
  7609. }
  7610. },
  7611. back: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(150, "lb"),
  7614. name: "Back",
  7615. image: {
  7616. source: "./media/characters/zero-alurus/back.svg"
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(5 + 10/12, "feet")
  7624. },
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(60, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Macro+",
  7632. height: math.unit(450, "feet")
  7633. },
  7634. ]
  7635. )
  7636. };
  7637. characterMakers["Mega Shi"] = () => {
  7638. return makeCharacter(
  7639. "Mega Shi",
  7640. "MShi8027",
  7641. {
  7642. front: {
  7643. height: math.unit(6, "feet"),
  7644. weight: math.unit(200, "lb"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/mega-shi/front.svg",
  7648. extra: 1279/1250 * (1 / (1 - 0.02)),
  7649. bottom: 0.02
  7650. }
  7651. },
  7652. back: {
  7653. height: math.unit(6, "feet"),
  7654. weight: math.unit(200, "lb"),
  7655. name: "Back",
  7656. image: {
  7657. source: "./media/characters/mega-shi/back.svg",
  7658. extra: 1279/1250 * (1 / (1 - 0.02)),
  7659. bottom: 0.02
  7660. }
  7661. },
  7662. },
  7663. [
  7664. {
  7665. name: "Micro",
  7666. height: math.unit(16 + 6/12, "feet")
  7667. },
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(660, "feet"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Megamacro",
  7675. height: math.unit(10, "miles")
  7676. },
  7677. {
  7678. name: "Planetary Launch",
  7679. height: math.unit(500, "miles")
  7680. },
  7681. {
  7682. name: "Interstellar",
  7683. height: math.unit(1e9, "miles")
  7684. },
  7685. {
  7686. name: "Leaving the Universe",
  7687. height: math.unit(1, "gigaparsec")
  7688. },
  7689. {
  7690. name: "Travelling Universes",
  7691. height: math.unit(30e15, "parsecs")
  7692. },
  7693. ]
  7694. )
  7695. };
  7696. characterMakers["Odyssey"] = () => {
  7697. return makeCharacter(
  7698. "Odyssey",
  7699. "Freschlauhs",
  7700. {
  7701. front: {
  7702. height: math.unit(6, "feet"),
  7703. weight: math.unit(150, "lb"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/odyssey/front.svg",
  7707. extra: 1782/1582 * (1 / (1 - 0.01)),
  7708. bottom: 0.01
  7709. }
  7710. },
  7711. side: {
  7712. height: math.unit(5.6, "feet"),
  7713. weight: math.unit(140, "lb"),
  7714. name: "Side",
  7715. image: {
  7716. source: "./media/characters/odyssey/side.svg",
  7717. extra: 6462/5700
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(5 + 4/12, "feet")
  7725. },
  7726. {
  7727. name: "Macro",
  7728. height: math.unit(1, "km")
  7729. },
  7730. {
  7731. name: "Megamacro",
  7732. height: math.unit(3000, "km")
  7733. },
  7734. {
  7735. name: "Gigamacro",
  7736. height: math.unit(1, "AU"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Omniversal",
  7741. height: math.unit(100e14, "lightyears")
  7742. },
  7743. ]
  7744. )
  7745. };
  7746. characterMakers["Mekuto"] = () => {
  7747. return makeCharacter(
  7748. "Mekuto",
  7749. "Mekuto",
  7750. {
  7751. front: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(300, "lb"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/mekuto/front.svg",
  7757. extra: 921/832 * (1 / (1 - 0.03)),
  7758. bottom: 0.03
  7759. }
  7760. },
  7761. hand: {
  7762. height: math.unit(6/10.24, "feet"),
  7763. name: "Hand",
  7764. image: {
  7765. source: "./media/characters/mekuto/hand.svg"
  7766. }
  7767. },
  7768. foot: {
  7769. height: math.unit(6/5.05, "feet"),
  7770. name: "Foot",
  7771. image: {
  7772. source: "./media/characters/mekuto/foot.svg"
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Minimicro",
  7779. height: math.unit(0.2, "inches")
  7780. },
  7781. {
  7782. name: "Micro",
  7783. height: math.unit(1.5, "inches")
  7784. },
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(5 + 11/12, "feet"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Minimacro",
  7792. height: math.unit(17 + 9/12, "feet")
  7793. },
  7794. {
  7795. name: "Macro",
  7796. height: math.unit(177.5, "feet")
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(152, "miles")
  7801. },
  7802. ]
  7803. )
  7804. };
  7805. characterMakers["Dafydd Tomos"] = () => {
  7806. return makeCharacter(
  7807. "Dafydd Tomos",
  7808. "SolarfoxArt",
  7809. {
  7810. front: {
  7811. height: math.unit(6.5, "inches"),
  7812. weight: math.unit(13, "oz"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/dafydd-tomos/front.svg",
  7816. extra: 2990/2603 * (1 / (1 - 0.03)),
  7817. bottom: 0.03
  7818. }
  7819. },
  7820. },
  7821. [
  7822. {
  7823. name: "Micro",
  7824. height: math.unit(6.5, "inches"),
  7825. default: true
  7826. },
  7827. ]
  7828. )
  7829. };
  7830. characterMakers["Splinter"] = () => {
  7831. return makeCharacter(
  7832. "Splinter",
  7833. "SirSplinter",
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(150, "lb"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/splinter/front.svg",
  7841. extra: 2990/2882 * (1 / (1 - 0.04)),
  7842. bottom: 0.04
  7843. }
  7844. },
  7845. back: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(150, "lb"),
  7848. name: "Back",
  7849. image: {
  7850. source: "./media/characters/splinter/back.svg",
  7851. extra: 2990/2882 * (1 / (1 - 0.04)),
  7852. bottom: 0.04
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(6, "feet")
  7860. },
  7861. {
  7862. name: "Macro",
  7863. height: math.unit(230, "meters"),
  7864. default: true
  7865. },
  7866. ]
  7867. )
  7868. };
  7869. characterMakers["SnowGabumon"] = () => {
  7870. return makeCharacter(
  7871. "SnowGabumon",
  7872. "SnowGabumon",
  7873. {
  7874. front: {
  7875. height: math.unit(4 + 10/12, "feet"),
  7876. weight: math.unit(480, "lb"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/snow-gabumon/front.svg",
  7880. extra: 1140/963 * (1 / (1 - 0.058)),
  7881. bottom: 0.058
  7882. }
  7883. },
  7884. back: {
  7885. height: math.unit(4 + 10/12, "feet"),
  7886. weight: math.unit(480, "lb"),
  7887. name: "Back",
  7888. image: {
  7889. source: "./media/characters/snow-gabumon/back.svg",
  7890. extra: 1115/962 * (1 / (1 - 0.041)),
  7891. bottom: 0.041
  7892. }
  7893. },
  7894. frontUndresed: {
  7895. height: math.unit(4 + 10/12, "feet"),
  7896. weight: math.unit(480, "lb"),
  7897. name: "Front (Undressed)",
  7898. image: {
  7899. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7900. extra: 1061/960 * (1 / (1 - 0.045)),
  7901. bottom: 0.045
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(1, "inch")
  7909. },
  7910. {
  7911. name: "Normal",
  7912. height: math.unit(4 + 10/12, "feet"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(200, "feet")
  7918. },
  7919. {
  7920. name: "Megamacro",
  7921. height: math.unit(120, "miles")
  7922. },
  7923. {
  7924. name: "Gigamacro",
  7925. height: math.unit(9800, "miles")
  7926. },
  7927. ]
  7928. )
  7929. };
  7930. characterMakers["Moody"] = () => {
  7931. return makeCharacter(
  7932. "Moody",
  7933. "MoodysterDog",
  7934. {
  7935. front: {
  7936. height: math.unit(1.7, "meters"),
  7937. weight: math.unit(140, "lb"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/moody/front.svg",
  7941. extra: 3226/3007 * (1 / (1 - 0.087)),
  7942. bottom: 0.087
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Micro",
  7949. height: math.unit(1, "mm")
  7950. },
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(1.7, "meters"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Macro",
  7958. height: math.unit(80, "meters")
  7959. },
  7960. {
  7961. name: "Macro+",
  7962. height: math.unit(500, "meters")
  7963. },
  7964. ]
  7965. )
  7966. };
  7967. characterMakers["Zyas"] = () => {
  7968. return makeCharacter(
  7969. "Zyas",
  7970. "Delathar",
  7971. {
  7972. front: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(150, "lb"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/zyas/front.svg",
  7978. extra: 1180/1120 * (1 / (1 - 0.045)),
  7979. bottom: 0.045
  7980. }
  7981. },
  7982. },
  7983. [
  7984. {
  7985. name: "Normal",
  7986. height: math.unit(10, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(500, "feet")
  7992. },
  7993. {
  7994. name: "Megamacro",
  7995. height: math.unit(5, "miles")
  7996. },
  7997. {
  7998. name: "Teramacro",
  7999. height: math.unit(150000, "miles")
  8000. },
  8001. ]
  8002. )
  8003. };
  8004. characterMakers["Cuon"] = () => {
  8005. return makeCharacter(
  8006. "Cuon",
  8007. "CollieCuon",
  8008. {
  8009. front: {
  8010. height: math.unit(6, "feet"),
  8011. weight: math.unit(150, "lb"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/cuon/front.svg",
  8015. extra: 1390/1320 * (1 / (1 - 0.008)),
  8016. bottom: 0.008
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(3, "inches")
  8024. },
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(18 + 9/12, "feet"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(360, "feet")
  8033. },
  8034. {
  8035. name: "Megamacro",
  8036. height: math.unit(360, "miles")
  8037. },
  8038. ]
  8039. )
  8040. };
  8041. characterMakers["Nyanuxk"] = () => {
  8042. return makeCharacter(
  8043. "Nyanuxk",
  8044. "Nyanuxk",
  8045. {
  8046. front: {
  8047. height: math.unit(2.4, "meters"),
  8048. weight: math.unit(70, "kg"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/nyanuxk/front.svg",
  8052. extra: 1172/1084 * (1 / (1 - 0.065)),
  8053. bottom: 0.065
  8054. }
  8055. },
  8056. side: {
  8057. height: math.unit(2.4, "meters"),
  8058. weight: math.unit(70, "kg"),
  8059. name: "Side",
  8060. image: {
  8061. source: "./media/characters/nyanuxk/side.svg",
  8062. extra: 1190/1132 * (1 / (1 - 0.007)),
  8063. bottom: 0.007
  8064. }
  8065. },
  8066. back: {
  8067. height: math.unit(2.4, "meters"),
  8068. weight: math.unit(70, "kg"),
  8069. name: "Back",
  8070. image: {
  8071. source: "./media/characters/nyanuxk/back.svg",
  8072. extra: 1200/1141 * (1 / (1 - 0.015)),
  8073. bottom: 0.015
  8074. }
  8075. },
  8076. foot: {
  8077. height: math.unit(0.52, "meters"),
  8078. name: "Foot",
  8079. image: {
  8080. source: "./media/characters/nyanuxk/foot.svg"
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Micro",
  8087. height: math.unit(2, "cm")
  8088. },
  8089. {
  8090. name: "Normal",
  8091. height: math.unit(2.4, "meters"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Smaller Macro",
  8096. height: math.unit(120, "meters")
  8097. },
  8098. {
  8099. name: "Bigger Macro",
  8100. height: math.unit(1.2, "km")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(15, "kilometers")
  8105. },
  8106. {
  8107. name: "Gigamacro",
  8108. height: math.unit(2000, "km")
  8109. },
  8110. {
  8111. name: "Teramacro",
  8112. height: math.unit(500000, "km")
  8113. },
  8114. ]
  8115. )
  8116. };
  8117. characterMakers["Ailbhe"] = () => {
  8118. return makeCharacter(
  8119. "Ailbhe",
  8120. "KlezmerGryphon",
  8121. {
  8122. side: {
  8123. height: math.unit(6, "feet"),
  8124. name: "Side",
  8125. image: {
  8126. source: "./media/characters/ailbhe/side.svg",
  8127. extra: 757/464 * (1 / (1 - 0.041)),
  8128. bottom: 0.041
  8129. }
  8130. },
  8131. },
  8132. [
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(1.07, "meters"),
  8136. default: true
  8137. },
  8138. ]
  8139. )
  8140. };
  8141. characterMakers["Zevulfius"] = () => {
  8142. return makeCharacter(
  8143. "Zevulfius",
  8144. "Nyanuxk",
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(120, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/zevulfius/front.svg",
  8152. extra: 965/903
  8153. }
  8154. },
  8155. side: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(120, "kg"),
  8158. name: "Side",
  8159. image: {
  8160. source: "./media/characters/zevulfius/side.svg",
  8161. extra: 939/900
  8162. }
  8163. },
  8164. back: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(120, "kg"),
  8167. name: "Back",
  8168. image: {
  8169. source: "./media/characters/zevulfius/back.svg",
  8170. extra: 918/854 * (1 / (1 - 0.005)),
  8171. bottom: 0.005
  8172. }
  8173. },
  8174. foot: {
  8175. height: math.unit(6/3.72, "feet"),
  8176. name: "Foot",
  8177. image: {
  8178. source: "./media/characters/zevulfius/foot.svg"
  8179. }
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "Macro",
  8185. height: math.unit(750, "meters")
  8186. },
  8187. {
  8188. name: "Megamacro",
  8189. height: math.unit(20, "km"),
  8190. default: true
  8191. },
  8192. {
  8193. name: "Gigamacro",
  8194. height: math.unit(2000, "km")
  8195. },
  8196. {
  8197. name: "Teramacro",
  8198. height: math.unit(250000, "km")
  8199. },
  8200. ]
  8201. )
  8202. };
  8203. characterMakers["Rikes"] = () => {
  8204. return makeCharacter(
  8205. "Rikes",
  8206. "VeryLargeDog",
  8207. {
  8208. front: {
  8209. height: math.unit(100, "feet"),
  8210. weight: math.unit(350, "kg"),
  8211. name: "Front",
  8212. image: {
  8213. source: "./media/characters/rikes/front.svg",
  8214. extra: 1565/1483 * (1 / (1 - 0.017)),
  8215. bottom: 0.017
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(100, "feet"),
  8223. default: true
  8224. },
  8225. ]
  8226. )
  8227. };
  8228. characterMakers["Adam Silver-Mane"] = () => {
  8229. return makeCharacter(
  8230. "Adam Silver-Mane",
  8231. "Dragonknightadam",
  8232. {
  8233. anthro: {
  8234. height: math.unit(8, "feet"),
  8235. weight: math.unit(120, "kg"),
  8236. name: "Anthro",
  8237. image: {
  8238. source: "./media/characters/adam-silver-mane/anthro.svg",
  8239. extra: 5743/5339 * (1 / (1 - 0.07)),
  8240. bottom: 0.07
  8241. }
  8242. },
  8243. taur: {
  8244. height: math.unit(16, "feet"),
  8245. weight: math.unit(1500, "kg"),
  8246. name: "Taur",
  8247. image: {
  8248. source: "./media/characters/adam-silver-mane/taur.svg",
  8249. extra: 1713/1571 * (1 / (1 - 0.01)),
  8250. bottom: 0.01
  8251. }
  8252. },
  8253. },
  8254. [
  8255. {
  8256. name: "Normal",
  8257. height: math.unit(8, "feet")
  8258. },
  8259. {
  8260. name: "Minimacro",
  8261. height: math.unit(80, "feet")
  8262. },
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(800, "feet"),
  8266. default: true
  8267. },
  8268. {
  8269. name: "Megamacro",
  8270. height: math.unit(8000, "feet")
  8271. },
  8272. {
  8273. name: "Gigamacro",
  8274. height: math.unit(800, "miles")
  8275. },
  8276. {
  8277. name: "Teramacro",
  8278. height: math.unit(80000, "miles")
  8279. },
  8280. {
  8281. name: "Celestial",
  8282. height: math.unit(8e6, "miles")
  8283. },
  8284. {
  8285. name: "Star Dragon",
  8286. height: math.unit(800000, "parsecs")
  8287. },
  8288. {
  8289. name: "Godly",
  8290. height: math.unit(800, "teraparsecs")
  8291. },
  8292. ]
  8293. )
  8294. };
  8295. characterMakers["Ky'owin"] = () => {
  8296. return makeCharacter(
  8297. "Ky'owin",
  8298. "Kyowin",
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(150, "lb"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/ky'owin/front.svg",
  8306. extra: 3888/3068 * (1 / (1 - 0.015)),
  8307. bottom: 0.015
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(6 + 8/12, "feet")
  8315. },
  8316. {
  8317. name: "Large",
  8318. height: math.unit(68, "feet")
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(132, "feet")
  8323. },
  8324. {
  8325. name: "Macro+",
  8326. height: math.unit(340, "feet")
  8327. },
  8328. {
  8329. name: "Macro++",
  8330. height: math.unit(680, "feet"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Megamacro",
  8335. height: math.unit(1, "mile")
  8336. },
  8337. {
  8338. name: "Megamacro+",
  8339. height: math.unit(10, "miles")
  8340. },
  8341. ]
  8342. )
  8343. };
  8344. characterMakers["Mal"] = () => {
  8345. return makeCharacter(
  8346. "Mal",
  8347. "agrosarmadillo",
  8348. {
  8349. front: {
  8350. height: math.unit(4, "feet"),
  8351. weight: math.unit(50, "lb"),
  8352. name: "Front",
  8353. image: {
  8354. source: "./media/characters/mal/front.svg",
  8355. extra: 785/724 * (1 / (1 - 0.07)),
  8356. bottom: 0.07
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Micro",
  8363. height: math.unit(4, "inches")
  8364. },
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(4, "feet"),
  8368. default: true
  8369. },
  8370. {
  8371. name: "Macro",
  8372. height: math.unit(200, "feet")
  8373. },
  8374. ]
  8375. )
  8376. };
  8377. characterMakers["Jordan Deware"] = () => {
  8378. return makeCharacter(
  8379. "Jordan Deware",
  8380. "JordanDeware",
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(150, "lb"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/jordan-deware/front.svg",
  8388. extra: 1191/1012
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Nano",
  8395. height: math.unit(0.01, "mm")
  8396. },
  8397. {
  8398. name: "Minimicro",
  8399. height: math.unit(1, "mm")
  8400. },
  8401. {
  8402. name: "Micro",
  8403. height: math.unit(0.5, "inches")
  8404. },
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(4, "feet"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "Minimacro",
  8412. height: math.unit(40, "meters")
  8413. },
  8414. {
  8415. name: "Small Macro",
  8416. height: math.unit(400, "meters")
  8417. },
  8418. {
  8419. name: "Macro",
  8420. height: math.unit(4, "miles")
  8421. },
  8422. {
  8423. name: "Megamacro",
  8424. height: math.unit(40, "miles")
  8425. },
  8426. {
  8427. name: "Megamacro+",
  8428. height: math.unit(400, "miles")
  8429. },
  8430. {
  8431. name: "Gigamacro",
  8432. height: math.unit(400000, "miles")
  8433. },
  8434. ]
  8435. )
  8436. };
  8437. characterMakers["Kimiko"] = () => {
  8438. return makeCharacter(
  8439. "Kimiko",
  8440. "HypoTheDerg",
  8441. {
  8442. side: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(150, "lb"),
  8445. name: "Side",
  8446. image: {
  8447. source: "./media/characters/kimiko/side.svg",
  8448. extra: 600/358
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(15, "feet"),
  8456. default: true
  8457. },
  8458. {
  8459. name: "Macro",
  8460. height: math.unit(220, "feet")
  8461. },
  8462. {
  8463. name: "Macro+",
  8464. height: math.unit(1450, "feet")
  8465. },
  8466. {
  8467. name: "Megamacro",
  8468. height: math.unit(11500, "feet")
  8469. },
  8470. {
  8471. name: "Gigamacro",
  8472. height: math.unit(9500, "miles")
  8473. },
  8474. {
  8475. name: "Teramacro",
  8476. height: math.unit(2208005005, "miles")
  8477. },
  8478. {
  8479. name: "Examacro",
  8480. height: math.unit(2750, "parsecs")
  8481. },
  8482. {
  8483. name: "Zettamacro",
  8484. height: math.unit(101500, "parsecs")
  8485. },
  8486. ]
  8487. )
  8488. };
  8489. characterMakers["Andrew Sleepy"] = () => {
  8490. return makeCharacter(
  8491. "Andrew Sleepy",
  8492. "Proky",
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(70, "kg"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/andrew-sleepy/front.svg"
  8500. }
  8501. },
  8502. side: {
  8503. height: math.unit(6, "feet"),
  8504. weight: math.unit(70, "kg"),
  8505. name: "Side",
  8506. image: {
  8507. source: "./media/characters/andrew-sleepy/side.svg"
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Micro",
  8514. height: math.unit(1, "mm"),
  8515. default: true
  8516. },
  8517. ]
  8518. )
  8519. };
  8520. characterMakers["Judio"] = () => {
  8521. return makeCharacter(
  8522. "Judio",
  8523. "HypoTheDerg",
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(150, "lb"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/judio/front.svg",
  8531. extra: 1258/1110
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(5 + 6/12, "feet")
  8539. },
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(1000, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Megamacro",
  8547. height: math.unit(10, "miles")
  8548. },
  8549. ]
  8550. )
  8551. };
  8552. characterMakers["Nomaxice"] = () => {
  8553. return makeCharacter(
  8554. "Nomaxice",
  8555. "Nomaxice",
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(68, "kg"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/nomaxice/front.svg",
  8563. extra: 1498/1073 * (1 / (1 - 0.075)),
  8564. bottom: 0.075
  8565. }
  8566. },
  8567. foot: {
  8568. height: math.unit(1.1, "feet"),
  8569. name: "Foot",
  8570. image: {
  8571. source: "./media/characters/nomaxice/foot.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(8, "cm")
  8579. },
  8580. {
  8581. name: "Norm",
  8582. height: math.unit(1.82, "m")
  8583. },
  8584. {
  8585. name: "Norm+",
  8586. height: math.unit(8.8, "feet")
  8587. },
  8588. {
  8589. name: "Big",
  8590. height: math.unit(8, "meters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(18, "meters")
  8596. },
  8597. {
  8598. name: "Macro+",
  8599. height: math.unit(88, "meters")
  8600. },
  8601. ]
  8602. )
  8603. };
  8604. characterMakers["Dydros"] = () => {
  8605. return makeCharacter(
  8606. "Dydros",
  8607. "DatCyberDragon",
  8608. {
  8609. front: {
  8610. height: math.unit(12, "feet"),
  8611. weight: math.unit(1.5, "tons"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/dydros/front.svg",
  8615. extra: 863/800 * (1 / (1 - 0.015)),
  8616. bottom: 0.015
  8617. }
  8618. },
  8619. back: {
  8620. height: math.unit(12, "feet"),
  8621. weight: math.unit(1.5, "tons"),
  8622. name: "Back",
  8623. image: {
  8624. source: "./media/characters/dydros/back.svg",
  8625. extra: 900/843 * (1 / (1 - 0.005)),
  8626. bottom: 0.005
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(12, "feet"),
  8634. default: true
  8635. },
  8636. ]
  8637. )
  8638. };
  8639. characterMakers["Riggi"] = () => {
  8640. return makeCharacter(
  8641. "Riggi",
  8642. "Fyre_ace",
  8643. {
  8644. front: {
  8645. height: math.unit(6, "feet"),
  8646. weight: math.unit(100, "kg"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/riggi/front.svg",
  8650. extra: 5787/5303
  8651. }
  8652. },
  8653. hyper: {
  8654. height: math.unit(6*5/3, "feet"),
  8655. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8656. name: "Hyper",
  8657. image: {
  8658. source: "./media/characters/riggi/hyper.svg",
  8659. extra: 3595/3485
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Small Macro",
  8666. height: math.unit(50, "feet")
  8667. },
  8668. {
  8669. name: "Default",
  8670. height: math.unit(200, "feet"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Loom",
  8675. height: math.unit(10000, "feet")
  8676. },
  8677. {
  8678. name: "Cruising Altitude",
  8679. height: math.unit(30000, "feet")
  8680. },
  8681. {
  8682. name: "Megamacro",
  8683. height: math.unit(100, "miles")
  8684. },
  8685. {
  8686. name: "Continent Sized",
  8687. height: math.unit(2800, "miles")
  8688. },
  8689. {
  8690. name: "Earth Sized",
  8691. height: math.unit(8000, "miles")
  8692. },
  8693. ]
  8694. )
  8695. };
  8696. characterMakers["Alexi"] = () => {
  8697. return makeCharacter(
  8698. "Alexi",
  8699. "AlexiWerewolf",
  8700. {
  8701. front: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(250, "lb"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/alexi/front.svg",
  8707. extra: 3483/3291 * (1 / (1 - 0.04)),
  8708. bottom: 0.04
  8709. }
  8710. },
  8711. back: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(250, "lb"),
  8714. name: "Back",
  8715. image: {
  8716. source: "./media/characters/alexi/back.svg",
  8717. extra: 3533/3356 * (1 / (1 - 0.021)),
  8718. bottom: 0.021
  8719. }
  8720. },
  8721. frontTransformed: {
  8722. height: math.unit(12.5, "feet"),
  8723. weight: math.unit(4000, "lb"),
  8724. name: "Front (Transformed)",
  8725. image: {
  8726. source: "./media/characters/alexi/front-transformed.svg",
  8727. extra: 5345/5100 * (1 / (1 - 0.03)),
  8728. bottom: 0.03
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(3, "meters"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Minimacro",
  8740. height: math.unit(30, "meters")
  8741. },
  8742. {
  8743. name: "Macro",
  8744. height: math.unit(500, "meters")
  8745. },
  8746. {
  8747. name: "Megamacro",
  8748. height: math.unit(9000, "km")
  8749. },
  8750. {
  8751. name: "Teramacro",
  8752. height: math.unit(384000, "km")
  8753. },
  8754. ]
  8755. )
  8756. };
  8757. characterMakers["Kayroo"] = () => {
  8758. return makeCharacter(
  8759. "Kayroo",
  8760. "Kayroo",
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(150, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/kayroo/front.svg",
  8768. extra: 1153/1038 * (1 / (1 - 0.06)),
  8769. bottom: 0.06
  8770. }
  8771. },
  8772. foot: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(150, "lb"),
  8775. name: "Foot",
  8776. image: {
  8777. source: "./media/characters/kayroo/foot.svg"
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(8, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Minimacro",
  8789. height: math.unit(250, "feet")
  8790. },
  8791. {
  8792. name: "Macro",
  8793. height: math.unit(2800, "feet")
  8794. },
  8795. {
  8796. name: "Megamacro",
  8797. height: math.unit(5200, "feet")
  8798. },
  8799. {
  8800. name: "Gigamacro",
  8801. height: math.unit(27000, "feet")
  8802. },
  8803. {
  8804. name: "Omega",
  8805. height: math.unit(45000, "feet")
  8806. },
  8807. ]
  8808. )
  8809. };
  8810. characterMakers["Rhys"] = () => {
  8811. return makeCharacter(
  8812. "Rhys",
  8813. "BigMountainCat",
  8814. {
  8815. front: {
  8816. height: math.unit(18, "feet"),
  8817. weight: math.unit(5800, "lb"),
  8818. name: "Front",
  8819. image: {
  8820. source: "./media/characters/rhys/front.svg",
  8821. extra: 3386/3090 * (1 / (1 - 0.07)),
  8822. bottom: 0.07
  8823. }
  8824. },
  8825. },
  8826. [
  8827. {
  8828. name: "Normal",
  8829. height: math.unit(18, "feet"),
  8830. default: true
  8831. },
  8832. {
  8833. name: "Working Size",
  8834. height: math.unit(200, "feet")
  8835. },
  8836. {
  8837. name: "Demolition Size",
  8838. height: math.unit(2000, "feet")
  8839. },
  8840. {
  8841. name: "Maximum Licensed Size",
  8842. height: math.unit(5, "miles")
  8843. },
  8844. {
  8845. name: "Maximum Observed Size",
  8846. height: math.unit(10, "yottameters")
  8847. },
  8848. ]
  8849. )
  8850. };
  8851. characterMakers["Toto"] = () => {
  8852. return makeCharacter(
  8853. "Toto",
  8854. "Totoly_Toto",
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(250, "lb"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/toto/front.svg",
  8862. exra: 527 / 479 * (1 / (1 - 0.05)),
  8863. bottom: 0.05
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Micro",
  8870. height: math.unit(3, "feet")
  8871. },
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(10, "feet")
  8875. },
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(150, "feet"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Megamacro",
  8883. height: math.unit(1200, "feet")
  8884. },
  8885. ]
  8886. )
  8887. };
  8888. characterMakers["King"] = () => {
  8889. return makeCharacter(
  8890. "King",
  8891. "KingSizedLion",
  8892. {
  8893. back: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(150, "lb"),
  8896. name: "Back",
  8897. image: {
  8898. source: "./media/characters/king/back.svg"
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Micro",
  8905. height: math.unit(2, "inches")
  8906. },
  8907. {
  8908. name: "Normal",
  8909. height: math.unit(8, "feet")
  8910. },
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(200, "feet"),
  8914. default: true
  8915. },
  8916. {
  8917. name: "Megamacro",
  8918. height: math.unit(50, "miles")
  8919. },
  8920. ]
  8921. )
  8922. };
  8923. characterMakers["Cordite"] = () => {
  8924. return makeCharacter(
  8925. "Cordite",
  8926. "photonman2",
  8927. {
  8928. anthro: {
  8929. height: math.unit(6 + 5/12, "feet"),
  8930. weight: math.unit(280, "lb"),
  8931. name: "Anthro",
  8932. image: {
  8933. source: "./media/characters/cordite/anthro.svg",
  8934. extra: 1986/1905 * (1 / (1 - 0.025)),
  8935. bottom: 0.025
  8936. }
  8937. },
  8938. feral: {
  8939. height: math.unit(2, "feet"),
  8940. weight: math.unit(90, "lb"),
  8941. name: "Feral",
  8942. image: {
  8943. source: "./media/characters/cordite/feral.svg",
  8944. extra: 1260/755 * (1 / (1 - 0.05)),
  8945. bottom: 0.05
  8946. }
  8947. },
  8948. },
  8949. [
  8950. {
  8951. name: "Normal",
  8952. height: math.unit(6 + 5/12, "feet"),
  8953. default: true
  8954. },
  8955. ]
  8956. )
  8957. };
  8958. characterMakers["Pianostrong"] = () => {
  8959. return makeCharacter(
  8960. "Pianostrong",
  8961. "Pianostrong",
  8962. {
  8963. front: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(150, "lb"),
  8966. name: "Front",
  8967. image: {
  8968. source: "./media/characters/pianostrong/front.svg",
  8969. extra: 6577/6254 * (1 / (1 - 0.02)),
  8970. bottom: 0.02
  8971. }
  8972. },
  8973. side: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(150, "lb"),
  8976. name: "Side",
  8977. image: {
  8978. source: "./media/characters/pianostrong/side.svg",
  8979. extra: 6106/5730
  8980. }
  8981. },
  8982. back: {
  8983. height: math.unit(6, "feet"),
  8984. weight: math.unit(150, "lb"),
  8985. name: "Back",
  8986. image: {
  8987. source: "./media/characters/pianostrong/back.svg",
  8988. extra: 6085/5733 * (1 / (1 - 0.01)),
  8989. bottom: 0.01
  8990. }
  8991. },
  8992. },
  8993. [
  8994. {
  8995. name: "Macro",
  8996. height: math.unit(100, "feet")
  8997. },
  8998. {
  8999. name: "Macro+",
  9000. height: math.unit(300, "feet"),
  9001. default: true
  9002. },
  9003. {
  9004. name: "Macro++",
  9005. height: math.unit(1000, "feet")
  9006. },
  9007. ]
  9008. )
  9009. };
  9010. characterMakers["Kona"] = () => {
  9011. return makeCharacter(
  9012. "Kona",
  9013. "Konadh",
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(150, "lb"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/kona/front.svg",
  9021. extra: 2960/2629 * (1 / (1 - 0.005)),
  9022. bottom: 0.005
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(11 + 8/12, "feet")
  9030. },
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(850, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Macro+",
  9038. height: math.unit(1.5, "km"),
  9039. default: true
  9040. },
  9041. {
  9042. name: "Megamacro",
  9043. height: math.unit(80, "miles")
  9044. },
  9045. {
  9046. name: "Gigamacro",
  9047. height: math.unit(3500, "miles")
  9048. },
  9049. ]
  9050. )
  9051. };
  9052. characterMakers["Levi"] = () => {
  9053. return makeCharacter(
  9054. "Levi",
  9055. "LeviCurrie",
  9056. {
  9057. side: {
  9058. height: math.unit(1.9, "meters"),
  9059. weight: math.unit(326, "kg"),
  9060. name: "Side",
  9061. image: {
  9062. source: "./media/characters/levi/side.svg",
  9063. extra: 1704/1334 * (1 / (1 - 0.02)),
  9064. bottom: 0.02
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(1.9, "meters"),
  9072. default: true
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(20, "meters")
  9077. },
  9078. {
  9079. name: "Macro+",
  9080. height: math.unit(200, "meters")
  9081. },
  9082. {
  9083. name: "Megamacro",
  9084. height: math.unit(2, "km")
  9085. },
  9086. {
  9087. name: "Megamacro+",
  9088. height: math.unit(20, "km")
  9089. },
  9090. {
  9091. name: "Gigamacro",
  9092. height: math.unit(2500, "km")
  9093. },
  9094. {
  9095. name: "Gigamacro+",
  9096. height: math.unit(120000, "km")
  9097. },
  9098. {
  9099. name: "Teramacro",
  9100. height: math.unit(7.77e6, "km")
  9101. },
  9102. ]
  9103. )
  9104. };
  9105. characterMakers["BMC"] = () => {
  9106. return makeCharacter(
  9107. "BMC",
  9108. "BigMountainCat",
  9109. {
  9110. front: {
  9111. height: math.unit(6 + 4/12, "feet"),
  9112. weight: math.unit(188, "lb"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/bmc/front.svg",
  9116. extra: 1067/1022 * (1 / (1 - 0.047)),
  9117. bottom: 0.047
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Human-sized",
  9124. height: math.unit(6 + 4/12, "feet")
  9125. },
  9126. {
  9127. name: "Small",
  9128. height: math.unit(250, "feet")
  9129. },
  9130. {
  9131. name: "Normal",
  9132. height: math.unit(1250, "feet"),
  9133. default: true
  9134. },
  9135. {
  9136. name: "Good Day",
  9137. height: math.unit(88, "miles")
  9138. },
  9139. {
  9140. name: "Largest Measured Size",
  9141. height: math.unit(11.2e6, "lightyears")
  9142. },
  9143. ]
  9144. )
  9145. };
  9146. characterMakers["Sven the Kaiju"] = () => {
  9147. return makeCharacter(
  9148. "Sven the Kaiju",
  9149. "OfActionMan",
  9150. {
  9151. front: {
  9152. height: math.unit(20, "feet"),
  9153. weight: math.unit(2016, "kg"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/sven-the-kaiju/front.svg",
  9157. extra: 1479/1449 * (1 / (1 - 0.05)),
  9158. bottom: 0.05
  9159. }
  9160. },
  9161. },
  9162. [
  9163. {
  9164. name: "Fairy",
  9165. height: math.unit(6, "inches")
  9166. },
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(20, "feet"),
  9170. default: true
  9171. },
  9172. {
  9173. name: "Rampage",
  9174. height: math.unit(200, "feet")
  9175. },
  9176. {
  9177. name: "Archfey Forest Guardian",
  9178. height: math.unit(1, "mile")
  9179. },
  9180. ]
  9181. )
  9182. };
  9183. characterMakers["Marik"] = () => {
  9184. return makeCharacter(
  9185. "Marik",
  9186. "Acrarun",
  9187. {
  9188. front: {
  9189. height: math.unit(4, "meters"),
  9190. weight: math.unit(2, "tons"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/marik/front.svg",
  9194. extra: 1057/1003 * (1 / (1 - 0.08)),
  9195. bottom: 0.08
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(4, "meters"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(20, "meters")
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(50, "km")
  9212. },
  9213. {
  9214. name: "Gigamacro",
  9215. height: math.unit(100, "km")
  9216. },
  9217. {
  9218. name: "Alpha Macro",
  9219. height: math.unit(7.88e7, "yottameters")
  9220. },
  9221. ]
  9222. )
  9223. };
  9224. characterMakers["Mel"] = () => {
  9225. return makeCharacter(
  9226. "Mel",
  9227. "SomedayNotSoon",
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(110, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/mel/front.svg",
  9235. extra: 736/617 * (1 / (1 - 0.017)),
  9236. bottom: 0.017
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Pico",
  9243. height: math.unit(3, "pm")
  9244. },
  9245. {
  9246. name: "Nano",
  9247. height: math.unit(3, "nm")
  9248. },
  9249. {
  9250. name: "Micro",
  9251. height: math.unit(0.3, "mm"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Micro+",
  9256. height: math.unit(3, "mm")
  9257. },
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(5 + 10.5/12, "feet")
  9261. },
  9262. ]
  9263. )
  9264. };
  9265. characterMakers["Lykonous"] = () => {
  9266. return makeCharacter(
  9267. "Lykonous",
  9268. "Lykonous",
  9269. {
  9270. kaiju: {
  9271. height: math.unit(1.75, "meters"),
  9272. weight: math.unit(55, "kg"),
  9273. name: "Kaiju",
  9274. image: {
  9275. source: "./media/characters/lykonous/kaiju.svg",
  9276. extra: 1055/946 * (1 / (1 - 0.135)),
  9277. bottom: 0.135
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Normal",
  9284. height: math.unit(2.5, "meters"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Kaiju Dragon",
  9289. height: math.unit(60, "meters")
  9290. },
  9291. {
  9292. name: "Mega Kaiju",
  9293. height: math.unit(120, "km")
  9294. },
  9295. {
  9296. name: "Giga Kaiju",
  9297. height: math.unit(200, "megameters")
  9298. },
  9299. {
  9300. name: "Terra Kaiju",
  9301. height: math.unit(400, "gigameters")
  9302. },
  9303. {
  9304. name: "Kaiju Dragon God",
  9305. height: math.unit(13000, "exaparsecs")
  9306. },
  9307. ]
  9308. )
  9309. };
  9310. characterMakers["Blü"] = () => {
  9311. return makeCharacter(
  9312. "Blü",
  9313. "BluTheFagon",
  9314. {
  9315. front: {
  9316. height: math.unit(6, "feet"),
  9317. weight: math.unit(150, "lb"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/blü/front.svg",
  9321. extra: 1883/1564 * (1 / (1 - 0.031)),
  9322. bottom: 0.031
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(13, "feet"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Big Boi",
  9334. height: math.unit(150, "meters")
  9335. },
  9336. {
  9337. name: "Mini Stomper",
  9338. height: math.unit(300, "meters")
  9339. },
  9340. {
  9341. name: "Macro",
  9342. height: math.unit(1000, "meters")
  9343. },
  9344. {
  9345. name: "Megamacro",
  9346. height: math.unit(11000, "meters")
  9347. },
  9348. {
  9349. name: "Gigamacro",
  9350. height: math.unit(11000, "km")
  9351. },
  9352. {
  9353. name: "Teramacro",
  9354. height: math.unit(420000, "km")
  9355. },
  9356. {
  9357. name: "Examacro",
  9358. height: math.unit(120, "parsecs")
  9359. },
  9360. {
  9361. name: "God Tho",
  9362. height: math.unit(98000000000, "parsecs")
  9363. },
  9364. ]
  9365. )
  9366. };
  9367. characterMakers["Scales"] = () => {
  9368. return makeCharacter(
  9369. "Scales",
  9370. "Scales",
  9371. {
  9372. taurFront: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(200, "lb"),
  9375. name: "Taur (Front)",
  9376. image: {
  9377. source: "./media/characters/scales/taur-front.svg",
  9378. extra: 1 / (1 - 0.05),
  9379. bottom: 0.05
  9380. }
  9381. },
  9382. taurBack: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(200, "lb"),
  9385. name: "Taur (Back)",
  9386. image: {
  9387. source: "./media/characters/scales/taur-back.svg",
  9388. extra: 1 / (1 - 0.08),
  9389. bottom: 0.08
  9390. }
  9391. },
  9392. anthro: {
  9393. height: math.unit(6*7/12, "feet"),
  9394. weight: math.unit(100, "lb"),
  9395. name: "Anthro",
  9396. image: {
  9397. source: "./media/characters/scales/anthro.svg",
  9398. extra: 1 / (1 - 0.06),
  9399. bottom: 0.06
  9400. }
  9401. },
  9402. },
  9403. [
  9404. {
  9405. name: "Normal",
  9406. height: math.unit(12, "feet"),
  9407. default: true
  9408. },
  9409. ]
  9410. )
  9411. };
  9412. characterMakers["Koragos"] = () => {
  9413. return makeCharacter(
  9414. "Koragos",
  9415. "Koragos",
  9416. {
  9417. front: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(150, "lb"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/koragos/front.svg",
  9423. extra: 841/794 * (1 / (1 - 0.035)),
  9424. bottom: 0.035
  9425. }
  9426. },
  9427. back: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(150, "lb"),
  9430. name: "Back",
  9431. image: {
  9432. source: "./media/characters/koragos/back.svg",
  9433. extra: 841/810 * (1 / (1 - 0.022)),
  9434. bottom: 0.022
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(6 + 11/12, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Macro",
  9446. height: math.unit(490, "feet")
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(10, "miles")
  9451. },
  9452. {
  9453. name: "Gigamacro",
  9454. height: math.unit(50, "miles")
  9455. },
  9456. ]
  9457. )
  9458. };
  9459. characterMakers["Xylrem"] = () => {
  9460. return makeCharacter(
  9461. "Xylrem",
  9462. "",
  9463. {
  9464. front: {
  9465. height: math.unit(6, "feet"),
  9466. weight: math.unit(250, "lb"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/xylrem/front.svg",
  9470. extra: 3323/3050 * (1 / (1 - 0.065)),
  9471. bottom: 0.065
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(4, "feet")
  9479. },
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(16, "feet"),
  9483. default: true
  9484. },
  9485. {
  9486. name: "Macro",
  9487. height: math.unit(2720, "feet")
  9488. },
  9489. {
  9490. name: "Megamacro",
  9491. height: math.unit(25000, "miles")
  9492. },
  9493. ]
  9494. )
  9495. };
  9496. characterMakers["Ikideru"] = () => {
  9497. return makeCharacter(
  9498. "Ikideru",
  9499. "Ikideru",
  9500. {
  9501. front: {
  9502. height: math.unit(8, "feet"),
  9503. weight: math.unit(250, "kg"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/ikideru/front.svg",
  9507. extra: 930/870 * (1 / (1 - 0.087)),
  9508. bottom: 0.087
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(8, "feet"),
  9513. weight: math.unit(250, "kg"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/ikideru/back.svg",
  9517. extra: 919/852 * (1 / (1 - 0.055)),
  9518. bottom: 0.055
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Rare",
  9525. height: math.unit(8, "feet"),
  9526. default: true
  9527. },
  9528. {
  9529. name: "Playful Loom",
  9530. height: math.unit(80, "feet")
  9531. },
  9532. {
  9533. name: "City Leaner",
  9534. height: math.unit(230, "feet")
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(2500, "feet")
  9539. },
  9540. {
  9541. name: "Gigamacro",
  9542. height: math.unit(26400, "feet")
  9543. },
  9544. {
  9545. name: "Tectonic Shifter",
  9546. height: math.unit(1.7, "megameters")
  9547. },
  9548. {
  9549. name: "Planet Carer",
  9550. height: math.unit(21, "megameters")
  9551. },
  9552. {
  9553. name: "God",
  9554. height: math.unit(11157.22, "parsecs")
  9555. },
  9556. ]
  9557. )
  9558. };
  9559. characterMakers["Neo"] = () => {
  9560. return makeCharacter(
  9561. "Neo",
  9562. "neonsnake",
  9563. {
  9564. front: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/neo/front.svg"
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Micro",
  9576. height: math.unit(2, "inches"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Human Size",
  9581. height: math.unit(5 + 8/12, "feet")
  9582. },
  9583. ]
  9584. )
  9585. };
  9586. characterMakers["Chauncey (Chantz)"] = () => {
  9587. return makeCharacter(
  9588. "Chauncey (Chantz)",
  9589. "RyGaLo",
  9590. {
  9591. front: {
  9592. height: math.unit(13 + 10/12, "feet"),
  9593. weight: math.unit(5320, "lb"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/chauncey-chantz/front.svg",
  9597. extra: 1587/1435 * (1 / (1 - 0.02)),
  9598. bottom: 0.02
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(13 + 10/12, "feet"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Macro",
  9610. height: math.unit(45, "feet")
  9611. },
  9612. {
  9613. name: "Megamacro",
  9614. height: math.unit(250, "miles")
  9615. },
  9616. {
  9617. name: "Planetary",
  9618. height: math.unit(10000, "miles")
  9619. },
  9620. {
  9621. name: "Galactic",
  9622. height: math.unit(40000, "parsecs")
  9623. },
  9624. {
  9625. name: "Universal",
  9626. height: math.unit(1, "yottameter")
  9627. },
  9628. ]
  9629. )
  9630. };
  9631. characterMakers["Epifox"] = () => {
  9632. return makeCharacter(
  9633. "Epifox",
  9634. "Epifox",
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(150, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/epifox/front.svg",
  9642. extra: (1 / (1 - 0.075)),
  9643. bottom: 0.075
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Micro",
  9650. height: math.unit(6, "inches")
  9651. },
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(12, "feet"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Macro",
  9659. height: math.unit(3810, "feet")
  9660. },
  9661. {
  9662. name: "Megamacro",
  9663. height: math.unit(500, "miles")
  9664. },
  9665. ]
  9666. )
  9667. };
  9668. characterMakers["Colin T."] = () => {
  9669. return makeCharacter(
  9670. "Colin T.",
  9671. "DragonLugia58",
  9672. {
  9673. front: {
  9674. height: math.unit(1.8796, "m"),
  9675. weight: math.unit(230, "lb"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/colin-t/front.svg",
  9679. extra: 1272/1193 * (1 / (1 - 0.07)),
  9680. bottom: 0.07
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Micro",
  9687. height: math.unit(0.571, "meters")
  9688. },
  9689. {
  9690. name: "Normal",
  9691. height: math.unit(1.8796, "meters"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "Tall",
  9696. height: math.unit(4, "meters")
  9697. },
  9698. {
  9699. name: "Macro",
  9700. height: math.unit(67.241, "meters")
  9701. },
  9702. {
  9703. name: "Megamacro",
  9704. height: math.unit(371.856, "meters")
  9705. },
  9706. {
  9707. name: "Planetary",
  9708. height: math.unit(12631.5689, "km")
  9709. },
  9710. ]
  9711. )
  9712. };
  9713. characterMakers["Matvei"] = () => {
  9714. return makeCharacter(
  9715. "Matvei",
  9716. "Matt_Da_Master",
  9717. {
  9718. front: {
  9719. height: math.unit(1.85, "meters"),
  9720. weight: math.unit(80, "kg"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/matvei/front.svg",
  9724. extra: 614/594 * (1 / (1 - 0.01)),
  9725. bottom: 0.01
  9726. }
  9727. },
  9728. },
  9729. [
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(1.85, "meters"),
  9733. default: true
  9734. },
  9735. ]
  9736. )
  9737. };
  9738. characterMakers["Quincy"] = () => {
  9739. return makeCharacter(
  9740. "Quincy",
  9741. "Paradisaea",
  9742. {
  9743. front: {
  9744. height: math.unit(5 + 9/12, "feet"),
  9745. weight: math.unit(70, "lb"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/quincy/front.svg",
  9749. extra: 3041/2751
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(5 + 9/12, "feet"),
  9754. weight: math.unit(70, "lb"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/quincy/back.svg",
  9758. extra: 3041/2751
  9759. }
  9760. },
  9761. flying: {
  9762. height: math.unit(5 + 4/12, "feet"),
  9763. weight: math.unit(70, "lb"),
  9764. name: "Flying",
  9765. image: {
  9766. source: "./media/characters/quincy/flying.svg",
  9767. extra: 1044/930
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Micro",
  9774. height: math.unit(3, "cm")
  9775. },
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(5 + 9/12, "feet")
  9779. },
  9780. {
  9781. name: "Macro",
  9782. height: math.unit(200, "meters"),
  9783. default: true
  9784. },
  9785. {
  9786. name: "Megamacro",
  9787. height: math.unit(1000, "meters")
  9788. },
  9789. ]
  9790. )
  9791. };
  9792. characterMakers["Vanrel"] = () => {
  9793. return makeCharacter(
  9794. "Vanrel",
  9795. "KuiPaws",
  9796. {
  9797. front: {
  9798. height: math.unit(4 + 7/12, "feet"),
  9799. weight: math.unit(150, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/vanrel/front.svg",
  9803. extra: (1 / (1 - 0.02)),
  9804. bottom: 0.02
  9805. }
  9806. },
  9807. side: {
  9808. height: math.unit(4 + 7/12, "feet"),
  9809. weight: math.unit(150, "lb"),
  9810. name: "Side",
  9811. image: {
  9812. source: "./media/characters/vanrel/side.svg",
  9813. extra: (1 / (1 - 0.025)),
  9814. bottom: 0.025
  9815. }
  9816. },
  9817. beans: {
  9818. height: math.unit(0.89, "feet"),
  9819. name: "Beans",
  9820. image: {
  9821. source: "./media/characters/vanrel/beans.svg"
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(4 + 7/12, "feet"),
  9829. default: true
  9830. },
  9831. ]
  9832. )
  9833. };
  9834. characterMakers["Kuiper Vanrel"] = () => {
  9835. return makeCharacter(
  9836. "Kuiper Vanrel",
  9837. "KuiPaws",
  9838. {
  9839. front: {
  9840. height: math.unit(7 + 5/12, "feet"),
  9841. weight: math.unit(150, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/kuiper-vanrel/front.svg",
  9845. extra: 1118/1068 * (1 / (1 - 0.09)),
  9846. bottom: 0.09
  9847. }
  9848. },
  9849. foot: {
  9850. height: math.unit(0.55, "meters"),
  9851. name: "Foot",
  9852. image: {
  9853. source: "./media/characters/kuiper-vanrel/foot.svg",
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Normal",
  9860. height: math.unit(7 + 5/12, "feet"),
  9861. default: true
  9862. },
  9863. ]
  9864. )
  9865. };
  9866. characterMakers["Keset Vanrel"] = () => {
  9867. return makeCharacter(
  9868. "Keset Vanrel",
  9869. "KuiPaws",
  9870. {
  9871. front: {
  9872. height: math.unit(8 + 5/12, "feet"),
  9873. weight: math.unit(150, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/keset-vanrel/front.svg",
  9877. extra: 1150/1084 * (1 / (1 - 0.05)),
  9878. bottom: 0.05
  9879. }
  9880. },
  9881. hand: {
  9882. height: math.unit(0.6, "meters"),
  9883. name: "Hand",
  9884. image: {
  9885. source: "./media/characters/keset-vanrel/hand.svg"
  9886. }
  9887. },
  9888. foot: {
  9889. height: math.unit(0.94978, "meters"),
  9890. name: "Foot",
  9891. image: {
  9892. source: "./media/characters/keset-vanrel/foot.svg"
  9893. }
  9894. },
  9895. },
  9896. [
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(8 + 5/12, "feet"),
  9900. default: true
  9901. },
  9902. ]
  9903. )
  9904. };
  9905. characterMakers["Neos"] = () => {
  9906. return makeCharacter(
  9907. "Neos",
  9908. "CakeyCake",
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(150, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/neos/front.svg",
  9916. extra: 1696/992 * (1 / ( 1 - 0.14)),
  9917. bottom: 0.14
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(54, "cm"),
  9925. default: true
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(100, "m")
  9930. },
  9931. {
  9932. name: "Megamacro",
  9933. height: math.unit(10, "km")
  9934. },
  9935. {
  9936. name: "Megamacro+",
  9937. height: math.unit(100, "km")
  9938. },
  9939. {
  9940. name: "Gigamacro",
  9941. height: math.unit(100, "Mm")
  9942. },
  9943. {
  9944. name: "Teramacro",
  9945. height: math.unit(100, "Gm")
  9946. },
  9947. {
  9948. name: "Examacro",
  9949. height: math.unit(100, "Em")
  9950. },
  9951. {
  9952. name: "Godly",
  9953. height: math.unit(10000, "Ym")
  9954. },
  9955. {
  9956. name: "Beyond Godly",
  9957. height: math.unit(10000000, "Ym")
  9958. },
  9959. ]
  9960. )
  9961. };
  9962. characterMakers["Sammy Mouse"] = () => {
  9963. return makeCharacter(
  9964. "Sammy Mouse",
  9965. "Piedunk",
  9966. {
  9967. feminine: {
  9968. height: math.unit(5, "feet"),
  9969. weight: math.unit(100, "lb"),
  9970. name: "Feminine",
  9971. image: {
  9972. source: "./media/characters/sammy-mouse/feminine.svg",
  9973. extra: 2526/2425 * (1 / (1 - 0.123)),
  9974. bottom: 0.123
  9975. }
  9976. },
  9977. masculine: {
  9978. height: math.unit(5, "feet"),
  9979. weight: math.unit(100, "lb"),
  9980. name: "Masculine",
  9981. image: {
  9982. source: "./media/characters/sammy-mouse/masculine.svg",
  9983. extra: 2526/2425 * (1 / (1 - 0.123)),
  9984. bottom: 0.123
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Micro",
  9991. height: math.unit(5, "inches")
  9992. },
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(5, "feet"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Macro",
  10000. height: math.unit(60, "feet")
  10001. },
  10002. ]
  10003. )
  10004. };
  10005. characterMakers["Kole"] = () => {
  10006. return makeCharacter(
  10007. "Kole",
  10008. "Cats_55",
  10009. {
  10010. front: {
  10011. height: math.unit(4, "feet"),
  10012. weight: math.unit(50, "lb"),
  10013. name: "Front",
  10014. image: {
  10015. source: "./media/characters/kole/front.svg",
  10016. extra: 1423/1303 * (1 / (1 - 0.025)),
  10017. bottom: 0.025
  10018. }
  10019. },
  10020. back: {
  10021. height: math.unit(4, "feet"),
  10022. weight: math.unit(50, "lb"),
  10023. name: "Back",
  10024. image: {
  10025. source: "./media/characters/kole/back.svg",
  10026. extra: 1426/1280 * (1 / (1 - 0.02)),
  10027. bottom: 0.02
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Normal",
  10034. height: math.unit(4, "feet"),
  10035. default: true
  10036. },
  10037. ]
  10038. )
  10039. };
  10040. characterMakers["Rufran"] = () => {
  10041. return makeCharacter(
  10042. "Rufran",
  10043. "Rufran",
  10044. {
  10045. front: {
  10046. height: math.unit(2 + 6/12, "feet"),
  10047. weight: math.unit(20, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/rufran/front.svg",
  10051. extra: 2041/1839 * (1 / (1 - 0.055)),
  10052. bottom: 0.055
  10053. }
  10054. },
  10055. back: {
  10056. height: math.unit(2 + 6/12, "feet"),
  10057. weight: math.unit(20, "lb"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/rufran/back.svg",
  10061. extra: 2054/1839 * (1 / (1 - 0.01)),
  10062. bottom: 0.01
  10063. }
  10064. },
  10065. hand: {
  10066. height: math.unit(0.2166, "meters"),
  10067. name: "Hand",
  10068. image: {
  10069. source: "./media/characters/rufran/hand.svg"
  10070. }
  10071. },
  10072. foot: {
  10073. height: math.unit(0.185, "meters"),
  10074. name: "Foot",
  10075. image: {
  10076. source: "./media/characters/rufran/foot.svg"
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Micro",
  10083. height: math.unit(1, "inch")
  10084. },
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(2 + 6/12, "feet"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Big",
  10092. height: math.unit(60, "feet")
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(325, "feet")
  10097. },
  10098. ]
  10099. )
  10100. };
  10101. characterMakers["Chip"] = () => {
  10102. return makeCharacter(
  10103. "Chip",
  10104. "Chiptuni",
  10105. {
  10106. front: {
  10107. height: math.unit(0.3, "meters"),
  10108. weight: math.unit(3.5, "kg"),
  10109. name: "Front",
  10110. image: {
  10111. source: "./media/characters/chip/front.svg",
  10112. extra: 748/674
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1, "inch"),
  10120. default: true
  10121. },
  10122. ]
  10123. )
  10124. };
  10125. characterMakers["Torvid"] = () => {
  10126. return makeCharacter(
  10127. "Torvid",
  10128. "Torvid",
  10129. {
  10130. side: {
  10131. height: math.unit(2.3, "meters"),
  10132. weight: math.unit(3500, "lb"),
  10133. name: "Side",
  10134. image: {
  10135. source: "./media/characters/torvid/side.svg",
  10136. extra: 1972/722 * (1 / (1 - 0.035)),
  10137. bottom: 0.035
  10138. }
  10139. },
  10140. },
  10141. [
  10142. {
  10143. name: "Normal",
  10144. height: math.unit(2.3, "meters"),
  10145. default: true
  10146. },
  10147. ]
  10148. )
  10149. };
  10150. characterMakers["Susan"] = () => {
  10151. return makeCharacter(
  10152. "Susan",
  10153. "Jasmith",
  10154. {
  10155. front: {
  10156. height: math.unit(2, "meters"),
  10157. weight: math.unit(150.5, "kg"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/susan/front.svg",
  10161. extra: 693/635 * (1 / (1 - 0.05)),
  10162. bottom: 0.05
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Megamacro",
  10169. height: math.unit(505, "miles"),
  10170. default: true
  10171. },
  10172. ]
  10173. )
  10174. };
  10175. characterMakers["Raindrops"] = () => {
  10176. return makeCharacter(
  10177. "Raindrops",
  10178. "RaindropsJFL",
  10179. {
  10180. front: {
  10181. height: math.unit(6, "feet"),
  10182. weight: math.unit(150, "lb"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/raindrops/front.svg",
  10186. extra: 2655/2461 * (1 / (1 - 0.02)),
  10187. bottom: 0.02
  10188. }
  10189. },
  10190. back: {
  10191. height: math.unit(6, "feet"),
  10192. weight: math.unit(150, "lb"),
  10193. name: "Back",
  10194. image: {
  10195. source: "./media/characters/raindrops/back.svg",
  10196. extra: 2574/2400 * (1 / (1 - 0.03)),
  10197. bottom: 0.03
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Micro",
  10204. height: math.unit(6, "inches")
  10205. },
  10206. {
  10207. name: "Normal",
  10208. height: math.unit(6 + 2/12, "feet")
  10209. },
  10210. {
  10211. name: "Macro",
  10212. height: math.unit(131, "feet"),
  10213. default: true
  10214. },
  10215. {
  10216. name: "Megamacro",
  10217. height: math.unit(15, "miles")
  10218. },
  10219. {
  10220. name: "Gigamacro",
  10221. height: math.unit(4000, "miles")
  10222. },
  10223. {
  10224. name: "Teramacro",
  10225. height: math.unit(315000, "miles")
  10226. },
  10227. ]
  10228. )
  10229. };
  10230. characterMakers["Tezwa"] = () => {
  10231. return makeCharacter(
  10232. "Tezwa",
  10233. "TitanTezwa",
  10234. {
  10235. front: {
  10236. height: math.unit(2.794, "meters"),
  10237. weight: math.unit(325, "kg"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/tezwa/front.svg",
  10241. extra: 2083/1906 * (1 / (1 - 0.031)),
  10242. bottom: 0.031
  10243. }
  10244. },
  10245. foot: {
  10246. height: math.unit(0.687, "meters"),
  10247. name: "Foot",
  10248. image: {
  10249. source: "./media/characters/tezwa/foot.svg"
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(9 + 2/12, "feet"),
  10257. default: true
  10258. },
  10259. ]
  10260. )
  10261. };
  10262. characterMakers["Typhus"] = () => {
  10263. return makeCharacter(
  10264. "Typhus",
  10265. "Jasmith",
  10266. {
  10267. front: {
  10268. height: math.unit(58, "feet"),
  10269. weight: math.unit(89000, "lb"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/typhus/front.svg",
  10273. extra: 816/800 * (1 / (1 - 0.065)),
  10274. bottom: 0.065
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Macro",
  10281. height: math.unit(58, "feet"),
  10282. default: true
  10283. },
  10284. ]
  10285. )
  10286. };
  10287. characterMakers["Lyra Von Wulf"] = () => {
  10288. return makeCharacter(
  10289. "Lyra Von Wulf",
  10290. "LyraVonWulf",
  10291. {
  10292. front: {
  10293. height: math.unit(12, "feet"),
  10294. weight: math.unit(6, "tonnes"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/lyra-von-wulf/front.svg",
  10298. extra: (1 / (1 - 0.10)),
  10299. bottom: 0.10
  10300. }
  10301. },
  10302. frontMecha: {
  10303. height: math.unit(12, "feet"),
  10304. weight: math.unit(12, "tonnes"),
  10305. name: "Front (Mecha)",
  10306. image: {
  10307. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10308. extra: (1 / (1 - 0.042)),
  10309. bottom: 0.042
  10310. }
  10311. },
  10312. maw: {
  10313. height: math.unit(2.2, "feet"),
  10314. name: "Maw",
  10315. image: {
  10316. source: "./media/characters/lyra-von-wulf/maw.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(12, "feet"),
  10324. default: true
  10325. },
  10326. {
  10327. name: "Classic",
  10328. height: math.unit(50, "feet")
  10329. },
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(500, "feet")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(1, "mile")
  10337. },
  10338. {
  10339. name: "Gigamacro",
  10340. height: math.unit(400, "miles")
  10341. },
  10342. {
  10343. name: "Teramacro",
  10344. height: math.unit(22000, "miles")
  10345. },
  10346. {
  10347. name: "Solarmacro",
  10348. height: math.unit(8600000, "miles")
  10349. },
  10350. {
  10351. name: "Galactic",
  10352. height: math.unit(1057000, "lightyears")
  10353. },
  10354. ]
  10355. )
  10356. };
  10357. characterMakers["Dixon"] = () => {
  10358. return makeCharacter(
  10359. "Dixon",
  10360. "Seabury",
  10361. {
  10362. front: {
  10363. height: math.unit(6 + 10/12, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/dixon/front.svg",
  10368. extra: 3361/3209 * (1 / (1 - 0.01)),
  10369. bottom: 0.01
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(6 + 10/12, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Big",
  10381. height: math.unit(12, "meters")
  10382. },
  10383. {
  10384. name: "Macro",
  10385. height: math.unit(500, "meters")
  10386. },
  10387. {
  10388. name: "Megamacro",
  10389. height: math.unit(2, "km")
  10390. },
  10391. ]
  10392. )
  10393. };
  10394. characterMakers["Kauko"] = () => {
  10395. return makeCharacter(
  10396. "Kauko",
  10397. "Kauko",
  10398. {
  10399. front: {
  10400. height: math.unit(185, "cm"),
  10401. weight: math.unit(68, "kg"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/kauko/front.svg",
  10405. extra: 1455/1421 * (1 / (1 - 0.03)),
  10406. bottom: 0.03
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(185, "cm"),
  10411. weight: math.unit(68, "kg"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/kauko/back.svg",
  10415. extra: 1455/1421 * (1 / (1 - 0.004)),
  10416. bottom: 0.004
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(185, "cm"),
  10424. default: true
  10425. },
  10426. ]
  10427. )
  10428. };
  10429. characterMakers["Varg"] = () => {
  10430. return makeCharacter(
  10431. "Varg",
  10432. "va0027",
  10433. {
  10434. front: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(150, "kg"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/varg/front.svg",
  10440. extra: 1108/1018 * (1 / (1 - 0.0375)),
  10441. bottom: 0.0375
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(5, "meters")
  10449. },
  10450. {
  10451. name: "Gigamacro",
  10452. height: math.unit(211, "km"),
  10453. default: true
  10454. },
  10455. ]
  10456. )
  10457. };
  10458. characterMakers["Dayza"] = () => {
  10459. return makeCharacter(
  10460. "Dayza",
  10461. "Vonadi",
  10462. {
  10463. front: {
  10464. height: math.unit(7 + 7/12, "feet"),
  10465. weight: math.unit(267, "lb"),
  10466. name: "Front",
  10467. image: {
  10468. source: "./media/characters/dayza/front.svg",
  10469. extra: 1262/1200 * (1 / (1 - 0.035)),
  10470. bottom: 0.035
  10471. }
  10472. },
  10473. side: {
  10474. height: math.unit(7 + 7/12, "feet"),
  10475. weight: math.unit(267, "lb"),
  10476. name: "Side",
  10477. image: {
  10478. source: "./media/characters/dayza/side.svg",
  10479. extra: 1295/1245 * (1 / (1 - 0.05)),
  10480. bottom: 0.05
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(7 + 7/12, "feet"),
  10485. weight: math.unit(267, "lb"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/dayza/back.svg",
  10489. extra: 1241/1170
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Normal",
  10496. height: math.unit(7 + 7/12, "feet"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "Macro",
  10501. height: math.unit(155, "feet")
  10502. },
  10503. ]
  10504. )
  10505. };
  10506. characterMakers["Xanthos"] = () => {
  10507. return makeCharacter(
  10508. "Xanthos",
  10509. "ArgentVZ",
  10510. {
  10511. front: {
  10512. height: math.unit(6 + 5/12, "feet"),
  10513. weight: math.unit(160, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/xanthos/front.svg",
  10517. extra: (1 / (1 - 0.04)),
  10518. bottom: 0.04
  10519. }
  10520. },
  10521. back: {
  10522. height: math.unit(6 + 5/12, "feet"),
  10523. weight: math.unit(160, "lb"),
  10524. name: "Back",
  10525. image: {
  10526. source: "./media/characters/xanthos/back.svg",
  10527. extra: (1 / (1 - 0.03)),
  10528. bottom: 0.03
  10529. }
  10530. },
  10531. hand: {
  10532. height: math.unit(0.928, "feet"),
  10533. name: "Hand",
  10534. image: {
  10535. source: "./media/characters/xanthos/hand.svg"
  10536. }
  10537. },
  10538. foot: {
  10539. height: math.unit(1.286, "feet"),
  10540. name: "Foot",
  10541. image: {
  10542. source: "./media/characters/xanthos/foot.svg"
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(6 + 5/12, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Normal+",
  10554. height: math.unit(6, "meters")
  10555. },
  10556. {
  10557. name: "Macro",
  10558. height: math.unit(40, "feet")
  10559. },
  10560. {
  10561. name: "Macro+",
  10562. height: math.unit(200, "meters")
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(20, "km")
  10567. },
  10568. {
  10569. name: "Megamacro+",
  10570. height: math.unit(100, "km")
  10571. },
  10572. ]
  10573. )
  10574. };
  10575. characterMakers["Grynn"] = () => {
  10576. return makeCharacter(
  10577. "Grynn",
  10578. "Grynn",
  10579. {
  10580. front: {
  10581. height: math.unit(6 + 3/12, "feet"),
  10582. weight: math.unit(215, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/grynn/front.svg",
  10586. extra: 4627/4209 * (1 / (1 - 0.047)),
  10587. bottom: 0.047
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Micro",
  10594. height: math.unit(6, "inches")
  10595. },
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(6 + 3/12, "feet"),
  10599. default: true
  10600. },
  10601. {
  10602. name: "Big",
  10603. height: math.unit(104, "feet")
  10604. },
  10605. {
  10606. name: "Macro",
  10607. height: math.unit(944, "feet")
  10608. },
  10609. {
  10610. name: "Macro+",
  10611. height: math.unit(9480, "feet")
  10612. },
  10613. {
  10614. name: "Megamacro",
  10615. height: math.unit(78752, "feet")
  10616. },
  10617. {
  10618. name: "Megamacro+",
  10619. height: math.unit(630128, "feet")
  10620. },
  10621. {
  10622. name: "Megamacro++",
  10623. height: math.unit(3150695, "feet")
  10624. },
  10625. ]
  10626. )
  10627. };
  10628. characterMakers["Mocha Aura"] = () => {
  10629. return makeCharacter(
  10630. "Mocha Aura",
  10631. "Mocha-Aura",
  10632. {
  10633. front: {
  10634. height: math.unit(7 + 5/12, "feet"),
  10635. weight: math.unit(450, "lb"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/mocha-aura/front.svg",
  10639. extra: 1907/1817 * (1 / (1 - 0.04)),
  10640. bottom: 0.04
  10641. }
  10642. },
  10643. back: {
  10644. height: math.unit(7 + 5/12, "feet"),
  10645. weight: math.unit(450, "lb"),
  10646. name: "Back",
  10647. image: {
  10648. source: "./media/characters/mocha-aura/back.svg",
  10649. extra: 1900/1825 * (1 / (1 - 0.045)),
  10650. bottom: 0.045
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Nano",
  10657. height: math.unit(1, "nm")
  10658. },
  10659. {
  10660. name: "Megamicro",
  10661. height: math.unit(1, "mm")
  10662. },
  10663. {
  10664. name: "Micro",
  10665. height: math.unit(3, "inches")
  10666. },
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(7 + 5/12, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Macro",
  10674. height: math.unit(30, "feet")
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(3500, "feet")
  10679. },
  10680. {
  10681. name: "Teramacro",
  10682. height: math.unit(500000, "miles")
  10683. },
  10684. {
  10685. name: "Petamacro",
  10686. height: math.unit(50000000000000000 , "parsecs")
  10687. },
  10688. ]
  10689. )
  10690. };
  10691. characterMakers["Ilisha Devya"] = () => {
  10692. return makeCharacter(
  10693. "Ilisha Devya",
  10694. "Neopuc",
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/ilisha-devya/front.svg",
  10702. extra: (1 / (1 - 0.175)),
  10703. bottom: 0.175
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(150, "lb"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/ilisha-devya/back.svg",
  10712. extra: (1 / (1 - 0.015)),
  10713. bottom: 0.015
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(500, "feet"),
  10721. default: true
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(10, "miles")
  10726. },
  10727. {
  10728. name: "Gigamacro",
  10729. height: math.unit(100000, "miles")
  10730. },
  10731. {
  10732. name: "Examacro",
  10733. height: math.unit(1e9, "lightyears")
  10734. },
  10735. {
  10736. name: "Omniversal",
  10737. height: math.unit(1e33, "lightyears")
  10738. },
  10739. {
  10740. name: "Beyond Infinite",
  10741. height: math.unit(1e100, "lightyears")
  10742. },
  10743. ]
  10744. )
  10745. };
  10746. characterMakers["Mira"] = () => {
  10747. return makeCharacter(
  10748. "Mira",
  10749. "Neopuc",
  10750. {
  10751. Side: {
  10752. height: math.unit(6, "feet"),
  10753. weight: math.unit(150, "lb"),
  10754. name: "Side",
  10755. image: {
  10756. source: "./media/characters/mira/side.svg",
  10757. extra: 900/799 * (1 / (1 - 0.02)),
  10758. bottom: 0.02
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Human Size",
  10765. height: math.unit(6, "feet")
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(100, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(10, "miles")
  10775. },
  10776. {
  10777. name: "Gigamacro",
  10778. height: math.unit(25000, "miles")
  10779. },
  10780. {
  10781. name: "Teramacro",
  10782. height: math.unit(300, "AU")
  10783. },
  10784. {
  10785. name: "Full Size",
  10786. height: math.unit(4.5e10, "lightyears")
  10787. },
  10788. ]
  10789. )
  10790. };
  10791. characterMakers["Holly"] = () => {
  10792. return makeCharacter(
  10793. "Holly",
  10794. "Neopuc",
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/holly/front.svg",
  10802. extra: 639/606
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(150, "lb"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/holly/back.svg",
  10811. extra: 623/598
  10812. }
  10813. },
  10814. frontWorking: {
  10815. height: math.unit(6, "feet"),
  10816. weight: math.unit(150, "lb"),
  10817. name: "Front (Working)",
  10818. image: {
  10819. source: "./media/characters/holly/front-working.svg",
  10820. extra: 607/577 * (1 / (1 - 0.048)),
  10821. bottom: 0.048
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Normal",
  10828. height: math.unit(12 + 3/12, "feet"),
  10829. default: true
  10830. },
  10831. ]
  10832. )
  10833. };
  10834. characterMakers["Porter"] = () => {
  10835. return makeCharacter(
  10836. "Porter",
  10837. "Neopuc",
  10838. {
  10839. front: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(150, "lb"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/porter/front.svg",
  10845. extra: 1 / (1 - 0.01),
  10846. bottom: 0.01
  10847. }
  10848. },
  10849. frontRobes: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front (Robes)",
  10853. image: {
  10854. source: "./media/characters/porter/front-robes.svg",
  10855. extra: 1.01 * (1 / (1 - 0.01)),
  10856. bottom: 0.01
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(11 + 9/12, "feet"),
  10864. default: true
  10865. },
  10866. ]
  10867. )
  10868. };
  10869. characterMakers["Lucy"] = () => {
  10870. return makeCharacter(
  10871. "Lucy",
  10872. "Jasmith",
  10873. {
  10874. legendary: {
  10875. height: math.unit(6, "feet"),
  10876. weight: math.unit(150, "lb"),
  10877. name: "Legendary",
  10878. image: {
  10879. source: "./media/characters/lucy/legendary.svg",
  10880. extra: 1355/1100 * (1 / (1 - 0.045)),
  10881. bottom: 0.045
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Legendary",
  10888. height: math.unit(86882*2, "miles"),
  10889. default: true
  10890. },
  10891. ]
  10892. )
  10893. };
  10894. characterMakers["Drusilla"] = () => {
  10895. return makeCharacter(
  10896. "Drusilla",
  10897. "Neopuc",
  10898. {
  10899. front: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(150, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/drusilla/front.svg",
  10905. extra: 678/635 * (1 / (1 - 0.03)),
  10906. bottom: 0.03
  10907. }
  10908. },
  10909. back: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(150, "lb"),
  10912. name: "Back",
  10913. image: {
  10914. source: "./media/characters/drusilla/back.svg",
  10915. extra: 678/635 * (1 / (1 - 0.005)),
  10916. bottom: 0.005
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Macro",
  10923. height: math.unit(100, "feet")
  10924. },
  10925. {
  10926. name: "Canon Height",
  10927. height: math.unit(2000, "feet"),
  10928. default: true
  10929. },
  10930. ]
  10931. )
  10932. };
  10933. characterMakers["Renard Thatch"] = () => {
  10934. return makeCharacter(
  10935. "Renard Thatch",
  10936. "Renard Thatch",
  10937. {
  10938. front: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(180, "lb"),
  10941. name: "Front",
  10942. image: {
  10943. source: "./media/characters/renard-thatch/front.svg",
  10944. extra: 2411/2275 * (1 / (1 - 0.01)),
  10945. bottom: 0.01
  10946. }
  10947. },
  10948. frontPosing: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(180, "lb"),
  10951. name: "Front (Posing)",
  10952. image: {
  10953. source: "./media/characters/renard-thatch/front-posing.svg",
  10954. extra: 2381/2261 * (1 / (1 - 0.01)),
  10955. bottom: 0.01
  10956. }
  10957. },
  10958. back: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(180, "lb"),
  10961. name: "Back",
  10962. image: {
  10963. source: "./media/characters/renard-thatch/back.svg",
  10964. extra: 2428/2288
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Micro",
  10971. height: math.unit(3, "inches")
  10972. },
  10973. {
  10974. name: "Default",
  10975. height: math.unit(6, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Macro",
  10980. height: math.unit(75, "feet")
  10981. },
  10982. ]
  10983. )
  10984. };
  10985. characterMakers["Sekvra"] = () => {
  10986. return makeCharacter(
  10987. "Sekvra",
  10988. "Neopuc",
  10989. {
  10990. front: {
  10991. height: math.unit(1450, "feet"),
  10992. weight: math.unit(1.21e6, "tons"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/sekvra/front.svg",
  10996. extra: (1 / (1 - 0.03)),
  10997. bottom: 0.03
  10998. }
  10999. },
  11000. frontClothed: {
  11001. height: math.unit(1450, "feet"),
  11002. weight: math.unit(1.21e6, "tons"),
  11003. name: "Front (Clothed)",
  11004. image: {
  11005. source: "./media/characters/sekvra/front-clothed.svg",
  11006. extra: (1 / (1 - 0.03)),
  11007. bottom: 0.03
  11008. }
  11009. },
  11010. side: {
  11011. height: math.unit(1450, "feet"),
  11012. weight: math.unit(1.21e6, "tons"),
  11013. name: "Side",
  11014. image: {
  11015. source: "./media/characters/sekvra/side.svg",
  11016. extra: (1 / (1 - 0.025)),
  11017. bottom: 0.025
  11018. }
  11019. },
  11020. back: {
  11021. height: math.unit(1450, "feet"),
  11022. weight: math.unit(1.21e6, "tons"),
  11023. name: "Back",
  11024. image: {
  11025. source: "./media/characters/sekvra/back.svg",
  11026. extra: (1 / (1 - 0.005)),
  11027. bottom: 0.005
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Macro",
  11034. height: math.unit(1450, "feet"),
  11035. default: true
  11036. },
  11037. {
  11038. name: "Megamacro",
  11039. height: math.unit(15000, "feet")
  11040. },
  11041. ]
  11042. )
  11043. };
  11044. characterMakers["Carmine"] = () => {
  11045. return makeCharacter(
  11046. "Carmine",
  11047. "Neopuc",
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(150, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/carmine/front.svg",
  11055. extra: 1 / (1 - 0.035),
  11056. bottom: 0.035
  11057. }
  11058. },
  11059. frontArmor: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(150, "lb"),
  11062. name: "Front (Armor)",
  11063. image: {
  11064. source: "./media/characters/carmine/front-armor.svg",
  11065. extra: 1 / (1 - 0.035),
  11066. bottom: 0.035
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Large",
  11073. height: math.unit(1, "mile")
  11074. },
  11075. {
  11076. name: "Huge",
  11077. height: math.unit(40, "miles"),
  11078. default: true
  11079. },
  11080. {
  11081. name: "Colossal",
  11082. height: math.unit(2500, "miles")
  11083. },
  11084. ]
  11085. )
  11086. };
  11087. characterMakers["Elyssia"] = () => {
  11088. return makeCharacter(
  11089. "Elyssia",
  11090. "Neopuc",
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(150, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/elyssia/front.svg",
  11098. extra: 2201/2035 * (1 / (1 - 0.05)),
  11099. bottom: 0.05
  11100. }
  11101. },
  11102. frontClothed: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Front (Clothed)",
  11106. image: {
  11107. source: "./media/characters/elyssia/front-clothed.svg",
  11108. extra: 2201/2035 * (1 / (1 - 0.05)),
  11109. bottom: 0.05
  11110. }
  11111. },
  11112. back: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(150, "lb"),
  11115. name: "Back",
  11116. image: {
  11117. source: "./media/characters/elyssia/back.svg",
  11118. extra: 2201/2035 * (1 / (1 - 0.013)),
  11119. bottom: 0.013
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Smaller",
  11126. height: math.unit(150, "feet")
  11127. },
  11128. {
  11129. name: "Standard",
  11130. height: math.unit(1400, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Distracted",
  11135. height: math.unit(15000, "feet")
  11136. },
  11137. ]
  11138. )
  11139. };
  11140. characterMakers["Geno Maxwell"] = () => {
  11141. return makeCharacter(
  11142. "Geno Maxwell",
  11143. "Geckonori",
  11144. {
  11145. front: {
  11146. height: math.unit(7 + 4/12, "feet"),
  11147. weight: math.unit(500, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/geno-maxwell/front.svg",
  11151. extra: 2207/2040 * (1 / (1 - 0.015)),
  11152. bottom: 0.015
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Micro",
  11159. height: math.unit(3, "inches")
  11160. },
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(7 + 4/12, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Macro",
  11168. height: math.unit(220, "feet")
  11169. },
  11170. {
  11171. name: "Megamacro",
  11172. height: math.unit(11, "miles")
  11173. },
  11174. ]
  11175. )
  11176. };
  11177. characterMakers["Regena Maxwell"] = () => {
  11178. return makeCharacter(
  11179. "Regena Maxwell",
  11180. "Geckonori",
  11181. {
  11182. front: {
  11183. height: math.unit(7 + 4/12, "feet"),
  11184. weight: math.unit(500, "lb"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/regena-maxwell/front.svg",
  11188. extra: 3115/2770 * (1 / (1 - 0.02)),
  11189. bottom: 0.02
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(7 + 4/12, "feet"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Macro",
  11201. height: math.unit(220, "feet")
  11202. },
  11203. {
  11204. name: "Megamacro",
  11205. height: math.unit(11, "miles")
  11206. },
  11207. ]
  11208. )
  11209. };
  11210. characterMakers["XGlidingDragonX"] = () => {
  11211. return makeCharacter(
  11212. "XGlidingDragonX",
  11213. "XGlidingDragonX",
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(150, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11221. extra: 860/690 * (1 / (1 - 0.03)),
  11222. bottom: 0.03
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(1.7, "meters"),
  11230. default: true
  11231. },
  11232. ]
  11233. )
  11234. };
  11235. characterMakers["Quilly"] = () => {
  11236. return makeCharacter(
  11237. "Quilly",
  11238. "Jasmith",
  11239. {
  11240. front: {
  11241. height: math.unit(6, "feet"),
  11242. weight: math.unit(150, "lb"),
  11243. name: "Front",
  11244. image: {
  11245. source: "./media/characters/quilly/front.svg",
  11246. extra: 890/776
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Gigamacro",
  11253. height: math.unit(404090, "miles"),
  11254. default: true
  11255. },
  11256. ]
  11257. )
  11258. };
  11259. characterMakers["Tempest"] = () => {
  11260. return makeCharacter(
  11261. "Tempest",
  11262. "XsomeoneX",
  11263. {
  11264. front: {
  11265. height: math.unit(7 + 8/12, "feet"),
  11266. weight: math.unit(350, "lb"),
  11267. name: "Front",
  11268. image: {
  11269. source: "./media/characters/tempest/front.svg",
  11270. extra: 1175/1086 * (1 / (1 - 0.02)),
  11271. bottom: 0.02
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Normal",
  11278. height: math.unit(7 + 8/12, "feet"),
  11279. default: true
  11280. },
  11281. ]
  11282. )
  11283. };
  11284. characterMakers["Rodger"] = () => {
  11285. return makeCharacter(
  11286. "Rodger",
  11287. "Guywithastupidname",
  11288. {
  11289. side: {
  11290. height: math.unit(4 + 5/12, "feet"),
  11291. weight: math.unit(80, "lb"),
  11292. name: "Side",
  11293. image: {
  11294. source: "./media/characters/rodger/side.svg",
  11295. extra: 1235/1118
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Micro",
  11302. height: math.unit(1, "inch")
  11303. },
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(4 + 5/12, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(120, "feet")
  11312. },
  11313. ]
  11314. )
  11315. };
  11316. characterMakers["Danyel"] = () => {
  11317. return makeCharacter(
  11318. "Danyel",
  11319. "Danyelx",
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/danyel/front.svg",
  11327. extra: 1185/1123 * (1 / (1 - 0.05)),
  11328. bottom: 0.05
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Shrunken",
  11335. height: math.unit(0.5, "mm")
  11336. },
  11337. {
  11338. name: "Micro",
  11339. height: math.unit(1, "mm"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Upsized",
  11344. height: math.unit(5 + 5/12, "feet")
  11345. },
  11346. ]
  11347. )
  11348. };
  11349. characterMakers["Vivian Bijoux"] = () => {
  11350. return makeCharacter(
  11351. "Vivian Bijoux",
  11352. "Geckonori",
  11353. {
  11354. front: {
  11355. height: math.unit(5 + 6/12, "feet"),
  11356. weight: math.unit(200, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/vivian-bijoux/front.svg",
  11360. extra: (1 / (1 - 0.072)),
  11361. bottom: 0.072
  11362. }
  11363. },
  11364. },
  11365. [
  11366. {
  11367. name: "Normal",
  11368. height: math.unit(5 + 6/12, "feet"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Bad Dream",
  11373. height: math.unit(500, "feet")
  11374. },
  11375. {
  11376. name: "Nightmare",
  11377. height: math.unit(500, "miles")
  11378. },
  11379. ]
  11380. )
  11381. };
  11382. characterMakers["Zeta"] = () => {
  11383. return makeCharacter(
  11384. "Zeta",
  11385. "thenerdherd102",
  11386. {
  11387. front: {
  11388. height: math.unit(6 + 1/12, "feet"),
  11389. weight: math.unit(260, "lb"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/zeta/front.svg",
  11393. extra: 1968/1889 * (1 / (1 - 0.06)),
  11394. bottom: 0.06
  11395. }
  11396. },
  11397. back: {
  11398. height: math.unit(6 + 1/12, "feet"),
  11399. weight: math.unit(260, "lb"),
  11400. name: "Back",
  11401. image: {
  11402. source: "./media/characters/zeta/back.svg",
  11403. extra: 1944/1858 * (1 / (1 - 0.03)),
  11404. bottom: 0.03
  11405. }
  11406. },
  11407. hand: {
  11408. height: math.unit(1.112, "feet"),
  11409. name: "Hand",
  11410. image: {
  11411. source: "./media/characters/zeta/hand.svg"
  11412. }
  11413. },
  11414. foot: {
  11415. height: math.unit(1.48, "feet"),
  11416. name: "Foot",
  11417. image: {
  11418. source: "./media/characters/zeta/foot.svg"
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Micro",
  11425. height: math.unit(6, "inches")
  11426. },
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(6 + 1/12, "feet"),
  11430. default: true
  11431. },
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(20, "feet")
  11435. },
  11436. ]
  11437. )
  11438. };
  11439. characterMakers["Jamie Larsen"] = () => {
  11440. return makeCharacter(
  11441. "Jamie Larsen",
  11442. "Mt_Jamie_Larsen",
  11443. {
  11444. front: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(150, "lb"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/jamie-larsen/front.svg",
  11450. extra: 962/933 * (1 / (1 - 0.02)),
  11451. bottom: 0.02
  11452. }
  11453. },
  11454. back: {
  11455. height: math.unit(6, "feet"),
  11456. weight: math.unit(150, "lb"),
  11457. name: "Back",
  11458. image: {
  11459. source: "./media/characters/jamie-larsen/back.svg",
  11460. extra: 997/946
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Macro",
  11467. height: math.unit(28 + 7/12, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Macro+",
  11472. height: math.unit(180, "feet")
  11473. },
  11474. {
  11475. name: "Megamacro",
  11476. height: math.unit(10, "miles")
  11477. },
  11478. {
  11479. name: "Gigamacro",
  11480. height: math.unit(200000, "miles")
  11481. },
  11482. ]
  11483. )
  11484. };
  11485. characterMakers["Vance"] = () => {
  11486. return makeCharacter(
  11487. "Vance",
  11488. "Neopuc",
  11489. {
  11490. front: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(120, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/vance/front.svg",
  11496. extra: 1980/1890 * (1 / (1 - 0.09)),
  11497. bottom: 0.09
  11498. }
  11499. },
  11500. back: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(120, "lb"),
  11503. name: "Back",
  11504. image: {
  11505. source: "./media/characters/vance/back.svg",
  11506. extra: 2081/1994 * (1 / (1 - 0.014)),
  11507. bottom: 0.014
  11508. }
  11509. },
  11510. hand: {
  11511. height: math.unit(0.88, "feet"),
  11512. name: "Hand",
  11513. image: {
  11514. source: "./media/characters/vance/hand.svg"
  11515. }
  11516. },
  11517. foot: {
  11518. height: math.unit(0.64, "feet"),
  11519. name: "Foot",
  11520. image: {
  11521. source: "./media/characters/vance/foot.svg"
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Small",
  11528. height: math.unit(90, "feet"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Macro",
  11533. height: math.unit(100, "meters")
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(15, "miles")
  11538. },
  11539. ]
  11540. )
  11541. };
  11542. characterMakers["Xochitl"] = () => {
  11543. return makeCharacter(
  11544. "Xochitl",
  11545. "Neopuc",
  11546. {
  11547. front: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(180, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/xochitl/front.svg",
  11553. extra: 2297/2261 * (1 / (1 - 0.065)),
  11554. bottom: 0.065
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(180, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/xochitl/back.svg",
  11563. extra: 2386/2354 * (1 / (1 - 0.01)),
  11564. bottom: 0.01
  11565. }
  11566. },
  11567. foot: {
  11568. height: math.unit(6/5 * 1.15, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Foot",
  11571. image: {
  11572. source: "./media/characters/xochitl/foot.svg"
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Macro",
  11579. height: math.unit(80, "feet")
  11580. },
  11581. {
  11582. name: "Macro+",
  11583. height: math.unit(400, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Gigamacro",
  11588. height: math.unit(80000, "miles")
  11589. },
  11590. {
  11591. name: "Gigamacro+",
  11592. height: math.unit(400000, "miles")
  11593. },
  11594. {
  11595. name: "Teramacro",
  11596. height: math.unit(300, "AU")
  11597. },
  11598. ]
  11599. )
  11600. };
  11601. characterMakers["Vincent"] = () => {
  11602. return makeCharacter(
  11603. "Vincent",
  11604. "Neopuc",
  11605. {
  11606. front: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(150, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/vincent/front.svg",
  11612. extra: 1130/1080 * (1 / (1 - 0.055)),
  11613. bottom: 0.055
  11614. }
  11615. },
  11616. beak: {
  11617. height: math.unit(6 * 0.1, "feet"),
  11618. name: "Beak",
  11619. image: {
  11620. source: "./media/characters/vincent/beak.svg"
  11621. }
  11622. },
  11623. hand: {
  11624. height: math.unit(6 * 0.85, "feet"),
  11625. weight: math.unit(150, "lb"),
  11626. name: "Hand",
  11627. image: {
  11628. source: "./media/characters/vincent/hand.svg"
  11629. }
  11630. },
  11631. foot: {
  11632. height: math.unit(6 * 0.19, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Foot",
  11635. image: {
  11636. source: "./media/characters/vincent/foot.svg"
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Base",
  11643. height: math.unit(6 + 5/12, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(300, "feet")
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(2, "miles")
  11653. },
  11654. {
  11655. name: "Gigamacro",
  11656. height: math.unit(1000, "miles")
  11657. },
  11658. ]
  11659. )
  11660. };
  11661. characterMakers["Jay"] = () => {
  11662. return makeCharacter(
  11663. "Jay",
  11664. "J-Forse",
  11665. {
  11666. front: {
  11667. height: math.unit(6 + 2/12, "feet"),
  11668. weight: math.unit(65, "lb"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/jay/front.svg",
  11672. extra: 1510/1430 * (1 / (1 - 0.042)),
  11673. bottom: 0.042
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(6 + 2/12, "feet"),
  11678. weight: math.unit(65, "lb"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/jay/back.svg",
  11682. extra: 1510/1430 * (1 / (1 - 0.025)),
  11683. bottom: 0.025
  11684. }
  11685. },
  11686. clothed: {
  11687. height: math.unit(6 + 2/12, "feet"),
  11688. weight: math.unit(65, "lb"),
  11689. name: "Front (Clothed)",
  11690. image: {
  11691. source: "./media/characters/jay/clothed.svg",
  11692. extra: 744/699 * (1 / (1 - 0.043)),
  11693. bottom: 0.043
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Micro",
  11700. height: math.unit(1, "inch")
  11701. },
  11702. {
  11703. name: "Normal",
  11704. height: math.unit(6 + 2/12, "feet"),
  11705. default: true
  11706. },
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(1, "mile")
  11710. },
  11711. {
  11712. name: "Megamacro",
  11713. height: math.unit(100, "miles")
  11714. },
  11715. ]
  11716. )
  11717. };
  11718. characterMakers["Coatl"] = () => {
  11719. return makeCharacter(
  11720. "Coatl",
  11721. "Jagaz",
  11722. {
  11723. front: {
  11724. height: math.unit(2, "meters"),
  11725. weight: math.unit(500 , "kg"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/coatl/front.svg",
  11729. extra: 3948 / 3500 * (1 / (1 - 0.082)),
  11730. bottom: 0.082
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(4, "meters")
  11738. },
  11739. {
  11740. name: "Macro",
  11741. height: math.unit(100, "meters"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Macro+",
  11746. height: math.unit(300, "meters")
  11747. },
  11748. {
  11749. name: "Megamacro",
  11750. height: math.unit(3, "gigameters")
  11751. },
  11752. {
  11753. name: "Megamacro+",
  11754. height: math.unit(300, "terameters")
  11755. },
  11756. {
  11757. name: "Megamacro++",
  11758. height: math.unit(3, "lightyears")
  11759. },
  11760. ]
  11761. )
  11762. };
  11763. characterMakers["Shiroryu"] = () => {
  11764. return makeCharacter(
  11765. "Shiroryu",
  11766. "Roxas00137",
  11767. {
  11768. front: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(50, "kg"),
  11771. name: "front",
  11772. image: {
  11773. source: "./media/characters/shiroryu/front.svg",
  11774. extra: 1990/1935
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Mortal Mingling",
  11781. height: math.unit(3, "meters")
  11782. },
  11783. {
  11784. name: "Kaiju-ish",
  11785. height: math.unit(250, "meters")
  11786. },
  11787. {
  11788. name: "Somewhat Godly",
  11789. height: math.unit(400, "km"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Planetary",
  11794. height: math.unit(300, "megameters")
  11795. },
  11796. {
  11797. name: "Galaxy-dwarfing",
  11798. height: math.unit(450, "kiloparsecs")
  11799. },
  11800. {
  11801. name: "Universe Eater",
  11802. height: math.unit(150, "gigaparsecs")
  11803. },
  11804. {
  11805. name: "Almost Immeasurable",
  11806. height: math.unit(1.3e266, "yottaparsecs")
  11807. },
  11808. ]
  11809. )
  11810. };
  11811. characterMakers["Umeko"] = () => {
  11812. return makeCharacter(
  11813. "Umeko",
  11814. "Neopuc",
  11815. {
  11816. front: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(150, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/umeko/front.svg",
  11822. extra: (1 / (1 - 0.019)),
  11823. bottom: 0.019
  11824. }
  11825. },
  11826. frontArmored: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(150, "lb"),
  11829. name: "Front (Armored)",
  11830. image: {
  11831. source: "./media/characters/umeko/front-armored.svg",
  11832. extra: (1 / (1 - 0.021)),
  11833. bottom: 0.021
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Macro",
  11840. height: math.unit(220, "feet"),
  11841. default: true
  11842. },
  11843. {
  11844. name: "Guardian Dragon",
  11845. height: math.unit(50, "miles")
  11846. },
  11847. {
  11848. name: "Cosmic",
  11849. height: math.unit(800000, "miles")
  11850. },
  11851. ]
  11852. )
  11853. };
  11854. characterMakers["Cassidy"] = () => {
  11855. return makeCharacter(
  11856. "Cassidy",
  11857. "Neopuc",
  11858. {
  11859. front: {
  11860. height: math.unit(6, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/cassidy/front.svg",
  11865. extra: (1 / (1 - 0.043)),
  11866. bottom: 0.043
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Canon Height",
  11873. height: math.unit(120, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Macro+",
  11878. height: math.unit(400, "feet")
  11879. },
  11880. {
  11881. name: "Macro++",
  11882. height: math.unit(4000, "feet")
  11883. },
  11884. {
  11885. name: "Megamacro",
  11886. height: math.unit(3, "miles")
  11887. },
  11888. ]
  11889. )
  11890. };
  11891. characterMakers["Isaac"] = () => {
  11892. return makeCharacter(
  11893. "Isaac",
  11894. "Neopuc",
  11895. {
  11896. front: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/isaac/front.svg",
  11902. extra: 896/815 * (1 / (1 - 0.11)),
  11903. bottom: 0.11
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Human Size",
  11910. height: math.unit(8, "feet"),
  11911. default: true
  11912. },
  11913. {
  11914. name: "Macro",
  11915. height: math.unit(400, "feet")
  11916. },
  11917. {
  11918. name: "Megamacro",
  11919. height: math.unit(50, "miles")
  11920. },
  11921. {
  11922. name: "Canon Height",
  11923. height: math.unit(200, "AU")
  11924. },
  11925. ]
  11926. )
  11927. };
  11928. characterMakers["Sleekit"] = () => {
  11929. return makeCharacter(
  11930. "Sleekit",
  11931. "AnAnonymousIndividual",
  11932. {
  11933. front: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(72, "kg"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/sleekit/front.svg",
  11939. extra: 4693/4487 * (1 / (1 - 0.012)),
  11940. bottom: 0.012
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Minimum Height",
  11947. height: math.unit(10, "meters")
  11948. },
  11949. {
  11950. name: "Smaller",
  11951. height: math.unit(25, "meters")
  11952. },
  11953. {
  11954. name: "Larger",
  11955. height: math.unit(38, "meters"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Maximum height",
  11960. height: math.unit(100, "meters")
  11961. },
  11962. ]
  11963. )
  11964. };
  11965. characterMakers["Nillia"] = () => {
  11966. return makeCharacter(
  11967. "Nillia",
  11968. "Neopuc",
  11969. {
  11970. front: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(150, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/nillia/front.svg",
  11976. extra: 2195/2037 * (1 / (1 - 0.005)),
  11977. bottom: 0.005
  11978. }
  11979. },
  11980. back: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/nillia/back.svg",
  11986. extra: 2195/2037 * (1 / (1 - 0.005)),
  11987. bottom: 0.005
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Canon Height",
  11994. height: math.unit(489, "feet"),
  11995. default: true
  11996. }
  11997. ]
  11998. )
  11999. };
  12000. characterMakers["Mesmyriza"] = () => {
  12001. return makeCharacter(
  12002. "Mesmyriza",
  12003. "-fluffy-",
  12004. {
  12005. front: {
  12006. height: math.unit(6, "feet"),
  12007. weight: math.unit(150, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/mesmyriza/front.svg",
  12011. extra: 2067/1784 * (1 / (1 - 0.035)),
  12012. bottom: 0.035
  12013. }
  12014. },
  12015. foot: {
  12016. height: math.unit(6/(250/35), "feet"),
  12017. name: "Foot",
  12018. image: {
  12019. source: "./media/characters/mesmyriza/foot.svg"
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Macro",
  12026. height: math.unit(457, "meters"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Megamacro",
  12031. height: math.unit(8, "megameters")
  12032. },
  12033. ]
  12034. )
  12035. };
  12036. characterMakers["Saudade"] = () => {
  12037. return makeCharacter(
  12038. "Saudade",
  12039. "lordbo",
  12040. {
  12041. front: {
  12042. height: math.unit(6, "feet"),
  12043. weight: math.unit(250, "lb"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/saudade/front.svg",
  12047. extra: 1172/1139 * (1 / (1 - 0.035)),
  12048. bottom: 0.035
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Micro",
  12055. height: math.unit(3, "inches")
  12056. },
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(6, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(50, "feet")
  12065. },
  12066. {
  12067. name: "Megamacro",
  12068. height: math.unit(2800, "feet")
  12069. },
  12070. ]
  12071. )
  12072. };
  12073. characterMakers["Keireer"] = () => {
  12074. return makeCharacter(
  12075. "Keireer",
  12076. "teedash",
  12077. {
  12078. front: {
  12079. height: math.unit(5 + 4/12, "feet"),
  12080. weight: math.unit(100, "lb"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/keireer/front.svg",
  12084. extra: 716/666 * (1 / (1 - 0.05)),
  12085. bottom: 0.05
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(5 + 4/12, "feet"),
  12093. default: true
  12094. },
  12095. ]
  12096. )
  12097. };
  12098. characterMakers["Mirja"] = () => {
  12099. return makeCharacter(
  12100. "Mirja",
  12101. "vabad",
  12102. {
  12103. front: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(90, "kg"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/mirja/front.svg",
  12109. extra: 1789/1683 * (1 / (1 - 0.05)),
  12110. bottom: 0.05
  12111. }
  12112. },
  12113. frontDressed: {
  12114. height: math.unit(6, "feet"),
  12115. weight: math.unit(90, "lb"),
  12116. name: "Front (Dressed)",
  12117. image: {
  12118. source: "./media/characters/mirja/front-dressed.svg",
  12119. extra: 1789/1683 * (1 / (1 - 0.05)),
  12120. bottom: 0.05
  12121. }
  12122. },
  12123. back: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(90, "lb"),
  12126. name: "Back",
  12127. image: {
  12128. source: "./media/characters/mirja/back.svg",
  12129. extra: 953/917 * (1 / (1 - 0.017)),
  12130. bottom: 0.017
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "\"Incognito\"",
  12137. height: math.unit(3, "meters")
  12138. },
  12139. {
  12140. name: "Strolling Size",
  12141. height: math.unit(15, "km")
  12142. },
  12143. {
  12144. name: "Larger Strolling Size",
  12145. height: math.unit(400, "km")
  12146. },
  12147. {
  12148. name: "Preferred Size",
  12149. height: math.unit(5000, "km")
  12150. },
  12151. {
  12152. name: "True Size",
  12153. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12154. default: true
  12155. },
  12156. ]
  12157. )
  12158. };
  12159. characterMakers["Nightraver"] = () => {
  12160. return makeCharacter(
  12161. "Nightraver",
  12162. "Nightraver",
  12163. {
  12164. front: {
  12165. height: math.unit(15, "feet"),
  12166. weight: math.unit(880, "kg"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/nightraver/front.svg",
  12170. extra: 2444/2160 * (1 / (1 - 0.027)),
  12171. bottom: 0.027
  12172. }
  12173. },
  12174. back: {
  12175. height: math.unit(15, "feet"),
  12176. weight: math.unit(880, "kg"),
  12177. name: "Back",
  12178. image: {
  12179. source: "./media/characters/nightraver/back.svg",
  12180. extra: 2309/2180 * (1 / (1 - 0.005)),
  12181. bottom: 0.005
  12182. }
  12183. },
  12184. sole: {
  12185. height: math.unit(2.878, "feet"),
  12186. name: "Sole",
  12187. image: {
  12188. source: "./media/characters/nightraver/sole.svg"
  12189. }
  12190. },
  12191. foot: {
  12192. height: math.unit(2.285, "feet"),
  12193. name: "Foot",
  12194. image: {
  12195. source: "./media/characters/nightraver/foot.svg"
  12196. }
  12197. },
  12198. maw: {
  12199. height: math.unit(2.67, "feet"),
  12200. name: "Maw",
  12201. image: {
  12202. source: "./media/characters/nightraver/maw.svg"
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Micro",
  12209. height: math.unit(1, "cm")
  12210. },
  12211. {
  12212. name: "Normal",
  12213. height: math.unit(15, "feet"),
  12214. default: true
  12215. },
  12216. {
  12217. name: "Macro",
  12218. height: math.unit(300, "feet")
  12219. },
  12220. {
  12221. name: "Megamacro",
  12222. height: math.unit(300, "miles")
  12223. },
  12224. {
  12225. name: "Gigamacro",
  12226. height: math.unit(10000, "miles")
  12227. },
  12228. ]
  12229. )
  12230. };
  12231. characterMakers["Arc"] = () => {
  12232. return makeCharacter(
  12233. "Arc",
  12234. "DinoKiddo",
  12235. {
  12236. side: {
  12237. height: math.unit(2, "inches"),
  12238. weight: math.unit(5, "grams"),
  12239. name: "Side",
  12240. image: {
  12241. source: "./media/characters/arc/side.svg"
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Micro",
  12248. height: math.unit(2, "inches"),
  12249. default: true
  12250. },
  12251. ]
  12252. )
  12253. };
  12254. characterMakers["Nebula Shahar"] = () => {
  12255. return makeCharacter(
  12256. "Nebula Shahar",
  12257. "Kypleo",
  12258. {
  12259. front: {
  12260. height: math.unit(1.1938, "meters"),
  12261. weight: math.unit(54, "kg"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/nebula-shahar/front.svg",
  12265. extra: 1642/1436 * (1 / (1 - 0.06)),
  12266. bottom: 0.06
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Megamicro",
  12273. height: math.unit(0.3, "mm")
  12274. },
  12275. {
  12276. name: "Micro",
  12277. height: math.unit(3, "cm")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(138, "cm"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(30, "m")
  12287. },
  12288. ]
  12289. )
  12290. };
  12291. characterMakers["Shayla"] = () => {
  12292. return makeCharacter(
  12293. "Shayla",
  12294. "Ziralkia",
  12295. {
  12296. front: {
  12297. height: math.unit(5.24, "feet"),
  12298. weight: math.unit(150, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/shayla/front.svg",
  12302. extra: 1512/1414 * (1 / (1 - 0.01)),
  12303. bottom: 0.01
  12304. }
  12305. },
  12306. back: {
  12307. height: math.unit(5.24, "feet"),
  12308. weight: math.unit(150, "lb"),
  12309. name: "Back",
  12310. image: {
  12311. source: "./media/characters/shayla/back.svg",
  12312. extra: 1512/1414
  12313. }
  12314. },
  12315. hand: {
  12316. height: math.unit(0.7781496062992126, "feet"),
  12317. name: "Hand",
  12318. image: {
  12319. source: "./media/characters/shayla/hand.svg"
  12320. }
  12321. },
  12322. foot: {
  12323. height: math.unit(1.4206036745406823, "feet"),
  12324. name: "Foot",
  12325. image: {
  12326. source: "./media/characters/shayla/foot.svg"
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Micro",
  12333. height: math.unit(0.32, "feet")
  12334. },
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(5.24, "feet"),
  12338. default: true
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(492.12, "feet")
  12343. },
  12344. {
  12345. name: "Megamacro",
  12346. height: math.unit(186.41, "miles")
  12347. },
  12348. ]
  12349. )
  12350. };
  12351. characterMakers["Pia Jr."] = () => {
  12352. return makeCharacter(
  12353. "Pia Jr.",
  12354. "Ziralkia",
  12355. {
  12356. front: {
  12357. height: math.unit(2.2, "m"),
  12358. weight: math.unit(120, "kg"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/pia-jr/front.svg",
  12362. extra: 1000/970 * (1 / (1 - 0.035)),
  12363. bottom: 0.035
  12364. }
  12365. },
  12366. hand: {
  12367. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12368. name: "Hand",
  12369. image: {
  12370. source: "./media/characters/pia-jr/hand.svg"
  12371. }
  12372. },
  12373. paw: {
  12374. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12375. name: "Paw",
  12376. image: {
  12377. source: "./media/characters/pia-jr/paw.svg"
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Micro",
  12384. height: math.unit(1.2, "cm")
  12385. },
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(2.2, "m"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Macro",
  12393. height: math.unit(180, "m")
  12394. },
  12395. {
  12396. name: "Megamacro",
  12397. height: math.unit(420, "km")
  12398. },
  12399. ]
  12400. )
  12401. };
  12402. characterMakers["Pia Sr."] = () => {
  12403. return makeCharacter(
  12404. "Pia Sr.",
  12405. "Ziralkia",
  12406. {
  12407. front: {
  12408. height: math.unit(2, "m"),
  12409. weight: math.unit(115, "kg"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/pia-sr/front.svg",
  12413. extra: 760/730 * (1 / (1 - 0.015)),
  12414. bottom: 0.015
  12415. }
  12416. },
  12417. back: {
  12418. height: math.unit(2, "m"),
  12419. weight: math.unit(115, "kg"),
  12420. name: "Back",
  12421. image: {
  12422. source: "./media/characters/pia-sr/back.svg",
  12423. extra: 760/730 * (1 / (1 - 0.01)),
  12424. bottom: 0.01
  12425. }
  12426. },
  12427. hand: {
  12428. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12429. name: "Hand",
  12430. image: {
  12431. source: "./media/characters/pia-sr/hand.svg"
  12432. }
  12433. },
  12434. foot: {
  12435. height: math.unit(1.83, "feet"),
  12436. name: "Foot",
  12437. image: {
  12438. source: "./media/characters/pia-sr/foot.svg"
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Micro",
  12445. height: math.unit(88, "mm")
  12446. },
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(2, "m"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Macro",
  12454. height: math.unit(200, "m")
  12455. },
  12456. {
  12457. name: "Megamacro",
  12458. height: math.unit(420, "km")
  12459. },
  12460. ]
  12461. )
  12462. };
  12463. characterMakers["KIBIBYTE"] = () => {
  12464. return makeCharacter(
  12465. "KIBIBYTE",
  12466. "gamefreak1215",
  12467. {
  12468. front: {
  12469. height: math.unit(8 + 2/12, "feet"),
  12470. weight: math.unit(300, "lb"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/kibibyte/front.svg",
  12474. extra: 2221/2098 * (1 / (1 - 0.04)),
  12475. bottom: 0.04
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Normal",
  12482. height: math.unit(8 + 2/12, "feet"),
  12483. default: true
  12484. },
  12485. {
  12486. name: "Socialable Macro",
  12487. height: math.unit(50, "feet")
  12488. },
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(300, "feet")
  12492. },
  12493. {
  12494. name: "Megamacro",
  12495. height: math.unit(500, "miles")
  12496. },
  12497. ]
  12498. )
  12499. };
  12500. characterMakers["Felix"] = () => {
  12501. return makeCharacter(
  12502. "Felix",
  12503. "MeanDumpsterCat",
  12504. {
  12505. front: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/felix/front.svg",
  12511. extra: 762/722 * (1 / (1 - 0.02)),
  12512. bottom: 0.02
  12513. }
  12514. },
  12515. frontClothed: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Front (Clothed)",
  12519. image: {
  12520. source: "./media/characters/felix/front-clothed.svg",
  12521. extra: 762/722 * (1 / (1 - 0.02)),
  12522. bottom: 0.02
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Normal",
  12529. height: math.unit(6 + 8/12, "feet"),
  12530. default: true
  12531. },
  12532. {
  12533. name: "Macro",
  12534. height: math.unit(2600, "feet")
  12535. },
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(450, "miles")
  12539. },
  12540. ]
  12541. )
  12542. };
  12543. characterMakers["Tobo"] = () => {
  12544. return makeCharacter(
  12545. "Tobo",
  12546. "Naoya_Raichi",
  12547. {
  12548. front: {
  12549. height: math.unit(6 + 1/12, "feet"),
  12550. weight: math.unit(250, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/tobo/front.svg",
  12554. extra: 608/586 * (1 / (1 - 0.023)),
  12555. bottom: 0.023
  12556. }
  12557. },
  12558. back: {
  12559. height: math.unit(6 + 1/12, "feet"),
  12560. weight: math.unit(250, "lb"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/tobo/back.svg",
  12564. extra: 608/586
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Nano",
  12571. height: math.unit(2, "nm")
  12572. },
  12573. {
  12574. name: "Megamicro",
  12575. height: math.unit(0.1, "mm")
  12576. },
  12577. {
  12578. name: "Micro",
  12579. height: math.unit(1, "inch"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Human-sized",
  12584. height: math.unit(6 + 1/12, "feet")
  12585. },
  12586. {
  12587. name: "Macro",
  12588. height: math.unit(250, "feet")
  12589. },
  12590. {
  12591. name: "Megamacro",
  12592. height: math.unit(75, "miles")
  12593. },
  12594. {
  12595. name: "Texas-sized",
  12596. height: math.unit(750, "miles")
  12597. },
  12598. {
  12599. name: "Teramacro",
  12600. height: math.unit(50000, "miles")
  12601. },
  12602. ]
  12603. )
  12604. };
  12605. characterMakers["Danny Kapowsky"] = () => {
  12606. return makeCharacter(
  12607. "Danny Kapowsky",
  12608. "nh63879",
  12609. {
  12610. front: {
  12611. height: math.unit(6, "feet"),
  12612. weight: math.unit(269, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/danny-kapowsky/front.svg",
  12616. extra: 766/736 * (1 / (1 - 0.044)),
  12617. bottom: 0.044
  12618. }
  12619. },
  12620. back: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(269, "lb"),
  12623. name: "Back",
  12624. image: {
  12625. source: "./media/characters/danny-kapowsky/back.svg",
  12626. extra: 797/760 * (1 / (1 - 0.025)),
  12627. bottom: 0.025
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(150, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Macro+",
  12639. height: math.unit(200, "feet")
  12640. },
  12641. {
  12642. name: "Macro++",
  12643. height: math.unit(300, "feet")
  12644. },
  12645. {
  12646. name: "Macro+++",
  12647. height: math.unit(400, "feet")
  12648. },
  12649. ]
  12650. )
  12651. };
  12652. characterMakers["Finn"] = () => {
  12653. return makeCharacter(
  12654. "Finn",
  12655. "Finn-The-Fennecfox",
  12656. {
  12657. side: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(170, "lb"),
  12660. name: "Side",
  12661. image: {
  12662. source: "./media/characters/finn/side.svg",
  12663. extra: 1953/1807 * (1 / (1 - 0.057)),
  12664. bottom: 0.057
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Megamacro",
  12671. height: math.unit(14445, "feet"),
  12672. default: true
  12673. },
  12674. ]
  12675. )
  12676. };
  12677. characterMakers["Roy"] = () => {
  12678. return makeCharacter(
  12679. "Roy",
  12680. "dracodare",
  12681. {
  12682. front: {
  12683. height: math.unit(5 + 6/12, "feet"),
  12684. weight: math.unit(125, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/roy/front.svg",
  12688. extra: (1 / (1 - 0.11)),
  12689. bottom: 0.11
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(3, "inches"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(5 + 6/12, "feet")
  12702. },
  12703. {
  12704. name: "Lesser Macro",
  12705. height: math.unit(60, "feet")
  12706. },
  12707. {
  12708. name: "Greater Macro",
  12709. height: math.unit(120, "feet")
  12710. },
  12711. ]
  12712. )
  12713. };
  12714. characterMakers["Aevsivs"] = () => {
  12715. return makeCharacter(
  12716. "Aevsivs",
  12717. "Aevsivs",
  12718. {
  12719. front: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(100, "lb"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/aevsivs/front.svg",
  12725. extra: (1 / (1 - 0.03)),
  12726. bottom: 0.03
  12727. }
  12728. },
  12729. back: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(100, "lb"),
  12732. name: "Back",
  12733. image: {
  12734. source: "./media/characters/aevsivs/back.svg"
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Micro",
  12741. height: math.unit(2, "inches"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Normal",
  12746. height: math.unit(5, "feet")
  12747. },
  12748. ]
  12749. )
  12750. };
  12751. characterMakers["Hildegard"] = () => {
  12752. return makeCharacter(
  12753. "Hildegard",
  12754. "Fidchell",
  12755. {
  12756. front: {
  12757. height: math.unit(5 + 7/12, "feet"),
  12758. weight: math.unit(159, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/hildegard/front.svg",
  12762. extra: 312/286 * (1 / (1 - 0.005)),
  12763. bottom: 0.005
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(5 + 7/12, "feet"),
  12771. default: true
  12772. },
  12773. ]
  12774. )
  12775. };
  12776. characterMakers["Bernard & Wilder"] = () => {
  12777. return makeCharacter(
  12778. "Bernard & Wilder",
  12779. "Fidchell",
  12780. {
  12781. bernard: {
  12782. height: math.unit(2 + 7/12, "feet"),
  12783. weight: math.unit(66, "lb"),
  12784. name: "Bernard",
  12785. rename: true,
  12786. image: {
  12787. source: "./media/characters/bernard-wilder/bernard.svg",
  12788. extra: 192/128 * (1 / (1 - 0.05)),
  12789. bottom: 0.05
  12790. }
  12791. },
  12792. wilder: {
  12793. height: math.unit(5 + 8/12, "feet"),
  12794. weight: math.unit(143, "lb"),
  12795. name: "Wilder",
  12796. rename: true,
  12797. image: {
  12798. source: "./media/characters/bernard-wilder/wilder.svg",
  12799. extra: 361/312 * (1 / (1 - 0.02)),
  12800. bottom: 0.02
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(2 + 7/12, "feet"),
  12808. default: true
  12809. },
  12810. ]
  12811. )
  12812. };
  12813. characterMakers["Hearth"] = () => {
  12814. return makeCharacter(
  12815. "Hearth",
  12816. "Fidchell",
  12817. {
  12818. anthro: {
  12819. height: math.unit(6 + 1/12, "feet"),
  12820. weight: math.unit(155, "lb"),
  12821. name: "Anthro",
  12822. image: {
  12823. source: "./media/characters/hearth/anthro.svg",
  12824. extra: 260/250 * (1 / (1 - 0.02)),
  12825. bottom: 0.02
  12826. }
  12827. },
  12828. feral: {
  12829. height: math.unit(3.78, "feet"),
  12830. weight: math.unit(35, "kg"),
  12831. name: "Feral",
  12832. image: {
  12833. source: "./media/characters/hearth/feral.svg",
  12834. extra: 153/135 * (1 / (1 - 0.03)),
  12835. bottom: 0.03
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(6 + 1/12, "feet"),
  12843. default: true
  12844. },
  12845. ]
  12846. )
  12847. };
  12848. characterMakers["Ingrid"] = () => {
  12849. return makeCharacter(
  12850. "Ingrid",
  12851. "Fidchell",
  12852. {
  12853. front: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(182, "lb"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/ingrid/front.svg",
  12859. extra: 294/268 * (1 / (1 - 0.027)),
  12860. bottom: 0.027
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(6, "feet"),
  12868. default: true
  12869. },
  12870. ]
  12871. )
  12872. };
  12873. characterMakers["Malgam"] = () => {
  12874. return makeCharacter(
  12875. "Malgam",
  12876. "Fidchell",
  12877. {
  12878. eevee: {
  12879. height: math.unit(2 + 10/12, "feet"),
  12880. weight: math.unit(86, "lb"),
  12881. name: "Malgam",
  12882. image: {
  12883. source: "./media/characters/malgam/eevee.svg",
  12884. extra: 218/180 * (1 / (1 - 0.2)),
  12885. bottom: 0.2
  12886. }
  12887. },
  12888. sylveon: {
  12889. height: math.unit(4, "feet"),
  12890. weight: math.unit(101, "lb"),
  12891. name: "Future Malgam",
  12892. rename: true,
  12893. image: {
  12894. source: "./media/characters/malgam/sylveon.svg",
  12895. extra: 371/325 * (1 / (1 - 0.015)),
  12896. bottom: 0.015
  12897. }
  12898. },
  12899. gigantamax: {
  12900. height: math.unit(50, "feet"),
  12901. name: "Gigantamax Malgam",
  12902. rename: true,
  12903. image: {
  12904. source: "./media/characters/malgam/gigantamax.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(2 + 10/12, "feet"),
  12912. default: true
  12913. },
  12914. ]
  12915. )
  12916. };
  12917. characterMakers["Fleur"] = () => {
  12918. return makeCharacter(
  12919. "Fleur",
  12920. "Fidchell",
  12921. {
  12922. front: {
  12923. height: math.unit(5 + 11/12, "feet"),
  12924. weight: math.unit(188, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/fleur/front.svg",
  12928. extra: 309/283 * (1 / (1 - 0.007)),
  12929. bottom: 0.007
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(5 + 11/12, "feet"),
  12937. default: true
  12938. },
  12939. ]
  12940. )
  12941. };
  12942. characterMakers["Jude"] = () => {
  12943. return makeCharacter(
  12944. "Jude",
  12945. "Fidchell",
  12946. {
  12947. front: {
  12948. height: math.unit(5 + 4/12, "feet"),
  12949. weight: math.unit(122, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/jude/front.svg",
  12953. extra: 288/273 * (1 / (1 - 0.03)),
  12954. bottom: 0.03
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(5 + 4/12, "feet"),
  12962. default: true
  12963. },
  12964. ]
  12965. )
  12966. };
  12967. characterMakers["Seara"] = () => {
  12968. return makeCharacter(
  12969. "Seara",
  12970. "Fidchell",
  12971. {
  12972. front: {
  12973. height: math.unit(5 + 11/12, "feet"),
  12974. weight: math.unit(190, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/seara/front.svg",
  12978. extra: (1 / (1 - 0.05)),
  12979. bottom: 0.05
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(5 + 11/12, "feet"),
  12987. default: true
  12988. },
  12989. ]
  12990. )
  12991. };
  12992. characterMakers["Caspian"] = () => {
  12993. return makeCharacter(
  12994. "Caspian",
  12995. "Fidchell",
  12996. {
  12997. front: {
  12998. height: math.unit(16 + 5/12, "feet"),
  12999. weight: math.unit(524, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/caspian/front.svg",
  13003. extra: (1 / (1 - 0.04)),
  13004. bottom: 0.04
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(16 + 5/12, "feet"),
  13012. default: true
  13013. },
  13014. ]
  13015. )
  13016. };
  13017. characterMakers["Mika"] = () => {
  13018. return makeCharacter(
  13019. "Mika",
  13020. "Fidchell",
  13021. {
  13022. front: {
  13023. height: math.unit(5 + 7/12, "feet"),
  13024. weight: math.unit(170, "lb"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/mika/front.svg",
  13028. extra: (1 / (1 - 0.016)),
  13029. bottom: 0.016
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Normal",
  13036. height: math.unit(5 + 7/12, "feet"),
  13037. default: true
  13038. },
  13039. ]
  13040. )
  13041. };
  13042. characterMakers["Sol"] = () => {
  13043. return makeCharacter(
  13044. "Sol",
  13045. "Fidchell",
  13046. {
  13047. front: {
  13048. height: math.unit(6 + 2/12, "feet"),
  13049. weight: math.unit(268, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/sol/front.svg",
  13053. extra: 247/231 * (1 / (1 - 0.05)),
  13054. bottom: 0.05
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(6 + 2/12, "feet"),
  13062. default: true
  13063. },
  13064. ]
  13065. )
  13066. };
  13067. characterMakers["Umiko"] = () => {
  13068. return makeCharacter(
  13069. "Umiko",
  13070. "Fidchell",
  13071. {
  13072. buizel: {
  13073. height: math.unit(2 + 5/12, "feet"),
  13074. weight: math.unit(87, "lb"),
  13075. name: "Buizel",
  13076. image: {
  13077. source: "./media/characters/umiko/buizel.svg",
  13078. extra: 172/157 * (1 / (1 - 0.01)),
  13079. bottom: 0.01
  13080. }
  13081. },
  13082. floatzel: {
  13083. height: math.unit(5 + 9/12, "feet"),
  13084. weight: math.unit(250, "lb"),
  13085. name: "Floatzel",
  13086. image: {
  13087. source: "./media/characters/umiko/floatzel.svg",
  13088. extra: 262/248
  13089. }
  13090. },
  13091. },
  13092. [
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(2 + 5/12, "feet"),
  13096. default: true
  13097. },
  13098. ]
  13099. )
  13100. };
  13101. characterMakers["Iliac"] = () => {
  13102. return makeCharacter(
  13103. "Iliac",
  13104. "Fidchell",
  13105. {
  13106. front: {
  13107. height: math.unit(6 + 2/12, "feet"),
  13108. weight: math.unit(146, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/iliac/front.svg",
  13112. extra: 389/365 * (1 / (1 - 0.035)),
  13113. bottom: 0.035
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(6 + 2/12, "feet"),
  13121. default: true
  13122. },
  13123. ]
  13124. )
  13125. };
  13126. characterMakers["Topaz"] = () => {
  13127. return makeCharacter(
  13128. "Topaz",
  13129. "Fidchell",
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(170, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/topaz/front.svg",
  13137. extra: 317/303 * (1 / (1 - 0.055)),
  13138. bottom: 0.055
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Normal",
  13145. height: math.unit(6, "feet"),
  13146. default: true
  13147. },
  13148. ]
  13149. )
  13150. };
  13151. characterMakers["Gabriel"] = () => {
  13152. return makeCharacter(
  13153. "Gabriel",
  13154. "Fidchell",
  13155. {
  13156. front: {
  13157. height: math.unit(5 + 11/12, "feet"),
  13158. weight: math.unit(144, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/gabriel/front.svg",
  13162. extra: 285/262 * (1 / (1 - 0.004)),
  13163. bottom: 0.004
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(5 + 11/12, "feet"),
  13171. default: true
  13172. },
  13173. ]
  13174. )
  13175. };
  13176. characterMakers["Tempest (Suicune)"] = () => {
  13177. return makeCharacter(
  13178. "Tempest (Suicune)",
  13179. "Fidchell",
  13180. {
  13181. side: {
  13182. height: math.unit(6 + 5/12, "feet"),
  13183. weight: math.unit(300, "lb"),
  13184. name: "Side",
  13185. image: {
  13186. source: "./media/characters/tempest-suicune/side.svg",
  13187. extra: 195/154 * (1 / (1 - 0.04)),
  13188. bottom: 0.04
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(6 + 5/12, "feet"),
  13196. default: true
  13197. },
  13198. ]
  13199. )
  13200. };
  13201. characterMakers["Vulcan"] = () => {
  13202. return makeCharacter(
  13203. "Vulcan",
  13204. "Fidchell",
  13205. {
  13206. front: {
  13207. height: math.unit(7 + 2/12, "feet"),
  13208. weight: math.unit(322, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/vulcan/front.svg",
  13212. extra: 154/147 * (1 / (1 - 0.04)),
  13213. bottom: 0.04
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(7 + 2/12, "feet"),
  13221. default: true
  13222. },
  13223. ]
  13224. )
  13225. };
  13226. characterMakers["Gault"] = () => {
  13227. return makeCharacter(
  13228. "Gault",
  13229. "Fidchell",
  13230. {
  13231. front: {
  13232. height: math.unit(5 + 10/12, "feet"),
  13233. weight: math.unit(264, "lb"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/gault/front.svg",
  13237. extra: 161/140 * (1 / (1 - 0.028)),
  13238. bottom: 0.028
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Normal",
  13245. height: math.unit(5 + 10/12, "feet"),
  13246. default: true
  13247. },
  13248. ]
  13249. )
  13250. };
  13251. characterMakers["Shard"] = () => {
  13252. return makeCharacter(
  13253. "Shard",
  13254. "Fidchell",
  13255. {
  13256. front: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/shard/front.svg",
  13262. extra: 273/238 * (1 / (1 - 0.02)),
  13263. bottom: 0.02
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(3 + 6/12, "feet"),
  13271. default: true
  13272. },
  13273. ]
  13274. )
  13275. };
  13276. characterMakers["Ashe"] = () => {
  13277. return makeCharacter(
  13278. "Ashe",
  13279. "Fidchell",
  13280. {
  13281. front: {
  13282. height: math.unit(5 + 11/12, "feet"),
  13283. weight: math.unit(146, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/ashe/front.svg",
  13287. extra: 400/373 * (1 / (1 - 0.01)),
  13288. bottom: 0.01
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(5 + 11/12, "feet"),
  13296. default: true
  13297. },
  13298. ]
  13299. )
  13300. };
  13301. characterMakers["Beatrix"] = () => {
  13302. return makeCharacter(
  13303. "Beatrix",
  13304. "Fidchell",
  13305. {
  13306. front: {
  13307. height: math.unit(5 + 5/12, "feet"),
  13308. weight: math.unit(135, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/beatrix/front.svg",
  13312. extra: 392/379 * (1 / (1 - 0.01)),
  13313. bottom: 0.01
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(6, "feet"),
  13321. default: true
  13322. },
  13323. ]
  13324. )
  13325. };
  13326. characterMakers["Ignatius"] = () => {
  13327. return makeCharacter(
  13328. "Ignatius",
  13329. "Fidchell",
  13330. {
  13331. front: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/ignatius/front.svg",
  13337. extra: 245/222 * (1 / (1 - 0.01)),
  13338. bottom: 0.01
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(5 + 5/12, "feet"),
  13346. default: true
  13347. },
  13348. ]
  13349. )
  13350. };
  13351. characterMakers["Mei Li"] = () => {
  13352. return makeCharacter(
  13353. "Mei Li",
  13354. "Fidchell",
  13355. {
  13356. front: {
  13357. height: math.unit(6 + 2/12, "feet"),
  13358. weight: math.unit(138, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/mei-li/front.svg",
  13362. extra: 237/229 * (1 / (1 - 0.03)),
  13363. bottom: 0.03
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(6 + 2/12, "feet"),
  13371. default: true
  13372. },
  13373. ]
  13374. )
  13375. };
  13376. characterMakers["Puru"] = () => {
  13377. return makeCharacter(
  13378. "Puru",
  13379. "Fidchell",
  13380. {
  13381. front: {
  13382. height: math.unit(2 + 4/12, "feet"),
  13383. weight: math.unit(62, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/puru/front.svg",
  13387. extra: 206/149 * (1 / (1 - 0.06)),
  13388. bottom: 0.06
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(2 + 4/12, "feet"),
  13396. default: true
  13397. },
  13398. ]
  13399. )
  13400. };
  13401. characterMakers["Kee"] = () => {
  13402. return makeCharacter(
  13403. "Kee",
  13404. "AardwolfKee",
  13405. {
  13406. taur: {
  13407. height: math.unit(11, "feet"),
  13408. weight: math.unit(500, "lb"),
  13409. name: "Taur",
  13410. image: {
  13411. source: "./media/characters/kee/taur.svg",
  13412. extra: (1 / (1 - 0.04)),
  13413. bottom: 0.04
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(11, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. )
  13425. };
  13426. characterMakers["Cobalt (Dracha)"] = () => {
  13427. return makeCharacter(
  13428. "Cobalt (Dracha)",
  13429. "Fidchell",
  13430. {
  13431. anthro: {
  13432. height: math.unit(7, "feet"),
  13433. weight: math.unit(190, "lb"),
  13434. name: "Anthro",
  13435. image: {
  13436. source: "./media/characters/cobalt-dracha/anthro.svg",
  13437. extra: 231/225 * (1 / (1 - 0.04)),
  13438. bottom: 0.04
  13439. }
  13440. },
  13441. feral: {
  13442. height: math.unit(9 + 7/12, "feet"),
  13443. weight: math.unit(294, "lb"),
  13444. name: "Feral",
  13445. image: {
  13446. source: "./media/characters/cobalt-dracha/feral.svg",
  13447. extra: 692/633 * (1 / (1 - 0.05)),
  13448. bottom: 0.05
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Normal",
  13455. height: math.unit(7, "feet"),
  13456. default: true
  13457. },
  13458. ]
  13459. )
  13460. };
  13461. characterMakers["Java"] = () => {
  13462. return makeCharacter(
  13463. "Java",
  13464. "Fidchell",
  13465. {
  13466. fallen: {
  13467. height: math.unit(11 + 8/12, "feet"),
  13468. weight: math.unit(485, "lb"),
  13469. name: "Java (Fallen)",
  13470. rename: true,
  13471. image: {
  13472. source: "./media/characters/java/fallen.svg",
  13473. extra: 226/208 * (1 / (1 - 0.005)),
  13474. bottom: 0.005
  13475. }
  13476. },
  13477. godkin: {
  13478. height: math.unit(10 + 6/12, "feet"),
  13479. weight: math.unit(328, "lb"),
  13480. name: "Java (Godkin)",
  13481. rename: true,
  13482. image: {
  13483. source: "./media/characters/java/godkin.svg",
  13484. extra: 270/262 * (1 / (1 - 0.02)),
  13485. bottom: 0.02
  13486. }
  13487. },
  13488. },
  13489. [
  13490. {
  13491. name: "Normal",
  13492. height: math.unit(11 + 8/12, "feet"),
  13493. default: true
  13494. },
  13495. ]
  13496. )
  13497. };
  13498. characterMakers["Skoll"] = () => {
  13499. return makeCharacter(
  13500. "Skoll",
  13501. "Fidchell",
  13502. {
  13503. front: {
  13504. height: math.unit(7 + 8/12, "feet"),
  13505. weight: math.unit(320, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/skoll/front.svg",
  13509. extra: 232/220 * (1 / (1 - 0.02)),
  13510. bottom: 0.02
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(7 + 8/12, "feet"),
  13518. default: true
  13519. },
  13520. ]
  13521. )
  13522. };
  13523. characterMakers["Purna"] = () => {
  13524. return makeCharacter(
  13525. "Purna",
  13526. "Fidchell",
  13527. {
  13528. front: {
  13529. height: math.unit(5 + 9/12, "feet"),
  13530. weight: math.unit(170, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/purna/front.svg",
  13534. extra: 239/229 * (1 / (1 - 0.01)),
  13535. bottom: 0.01
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(5 + 9/12, "feet"),
  13543. default: true
  13544. },
  13545. ]
  13546. )
  13547. };
  13548. characterMakers["Kuva"] = () => {
  13549. return makeCharacter(
  13550. "Kuva",
  13551. "Fidchell",
  13552. {
  13553. front: {
  13554. height: math.unit(5 + 9/12, "feet"),
  13555. weight: math.unit(142, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/kuva/front.svg",
  13559. extra: 281/271 * (1 / (1 - 0.006)),
  13560. bottom: 0.006
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(5 + 9/12, "feet"),
  13568. default: true
  13569. },
  13570. ]
  13571. )
  13572. };
  13573. characterMakers["Embra"] = () => {
  13574. return makeCharacter(
  13575. "Embra",
  13576. "Fidchell",
  13577. {
  13578. anthro: {
  13579. height: math.unit(9 + 2/12, "feet"),
  13580. weight: math.unit(270, "lb"),
  13581. name: "Anthro",
  13582. image: {
  13583. source: "./media/characters/embra/anthro.svg",
  13584. extra: 200/187 * (1 / (1 - 0.02)),
  13585. bottom: 0.02
  13586. }
  13587. },
  13588. feral: {
  13589. height: math.unit(18 + 8/12, "feet"),
  13590. weight: math.unit(576, "lb"),
  13591. name: "Feral",
  13592. image: {
  13593. source: "./media/characters/embra/feral.svg",
  13594. extra: 152/137 * (1 / (1 - 0.037)),
  13595. bottom: 0.037
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Normal",
  13602. height: math.unit(9 + 2/12, "feet"),
  13603. default: true
  13604. },
  13605. ]
  13606. )
  13607. };
  13608. characterMakers["Grottos"] = () => {
  13609. return makeCharacter(
  13610. "Grottos",
  13611. "Fidchell",
  13612. {
  13613. anthro: {
  13614. height: math.unit(10 + 9/12, "feet"),
  13615. weight: math.unit(224, "lb"),
  13616. name: "Anthro",
  13617. image: {
  13618. source: "./media/characters/grottos/anthro.svg",
  13619. extra: 350/332 * (1 / (1 - 0.045)),
  13620. bottom: 0.045
  13621. }
  13622. },
  13623. feral: {
  13624. height: math.unit(20 + 7/12, "feet"),
  13625. weight: math.unit(629, "lb"),
  13626. name: "Feral",
  13627. image: {
  13628. source: "./media/characters/grottos/feral.svg",
  13629. extra: 207/190 * (1 / (1 - 0.05)),
  13630. bottom: 0.05
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(10 + 9/12, "feet"),
  13638. default: true
  13639. },
  13640. ]
  13641. )
  13642. };
  13643. characterMakers["Frifna"] = () => {
  13644. return makeCharacter(
  13645. "Frifna",
  13646. "Fidchell",
  13647. {
  13648. anthro: {
  13649. height: math.unit(9 + 6/12, "feet"),
  13650. weight: math.unit(298, "lb"),
  13651. name: "Anthro",
  13652. image: {
  13653. source: "./media/characters/frifna/anthro.svg",
  13654. extra: 282/269 * (1 / (1 - 0.015)),
  13655. bottom: 0.015
  13656. }
  13657. },
  13658. feral: {
  13659. height: math.unit(16 + 2/12, "feet"),
  13660. weight: math.unit(624, "lb"),
  13661. name: "Feral",
  13662. image: {
  13663. source: "./media/characters/frifna/feral.svg"
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Normal",
  13670. height: math.unit(9 + 6/12, "feet"),
  13671. default: true
  13672. },
  13673. ]
  13674. )
  13675. };
  13676. characterMakers["Elise"] = () => {
  13677. return makeCharacter(
  13678. "Elise",
  13679. "Fidchell",
  13680. {
  13681. front: {
  13682. height: math.unit(6 + 2/12, "feet"),
  13683. weight: math.unit(168, "lb"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/elise/front.svg",
  13687. extra: 276/271
  13688. }
  13689. },
  13690. },
  13691. [
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(6 + 2/12, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. )
  13699. };
  13700. characterMakers["Glade"] = () => {
  13701. return makeCharacter(
  13702. "Glade",
  13703. "Fidchell",
  13704. {
  13705. front: {
  13706. height: math.unit(5 + 10/12, "feet"),
  13707. weight: math.unit(210, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/glade/front.svg",
  13711. extra: 258/247 * (1 / (1 - 0.008)),
  13712. bottom: 0.008
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(5 + 10/12, "feet"),
  13720. default: true
  13721. },
  13722. ]
  13723. )
  13724. };
  13725. characterMakers["Rina"] = () => {
  13726. return makeCharacter(
  13727. "Rina",
  13728. "Fidchell",
  13729. {
  13730. front: {
  13731. height: math.unit(5 + 10/12, "feet"),
  13732. weight: math.unit(129, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/rina/front.svg",
  13736. extra: 266/255 * (1 / (1 - 0.005)),
  13737. bottom: 0.005
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(5 + 10/12, "feet"),
  13745. default: true
  13746. },
  13747. ]
  13748. )
  13749. };
  13750. characterMakers["Veronica"] = () => {
  13751. return makeCharacter(
  13752. "Veronica",
  13753. "Fidchell",
  13754. {
  13755. front: {
  13756. height: math.unit(6 + 1/12, "feet"),
  13757. weight: math.unit(192, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/veronica/front.svg",
  13761. extra: 319/309 * (1 / (1 - 0.005)),
  13762. bottom: 0.005
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(6 + 1/12, "feet"),
  13770. default: true
  13771. },
  13772. ]
  13773. )
  13774. };
  13775. characterMakers["Braxton"] = () => {
  13776. return makeCharacter(
  13777. "Braxton",
  13778. "jdolbear",
  13779. {
  13780. front: {
  13781. height: math.unit(9 + 3/12, "feet"),
  13782. weight: math.unit(1100, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/braxton/front.svg",
  13786. extra: 1057/984 * (1 / (1 - 0.05)),
  13787. bottom: 0.05
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(9 + 3/12, "feet")
  13795. },
  13796. {
  13797. name: "Giant",
  13798. height: math.unit(300, "feet"),
  13799. default: true
  13800. },
  13801. {
  13802. name: "Macro",
  13803. height: math.unit(700, "feet")
  13804. },
  13805. {
  13806. name: "Megamacro",
  13807. height: math.unit(6000, "feet")
  13808. },
  13809. ]
  13810. )
  13811. };
  13812. characterMakers["Blue Feyonics"] = () => {
  13813. return makeCharacter(
  13814. "Blue Feyonics",
  13815. "bluefiremarkii",
  13816. {
  13817. front: {
  13818. height: math.unit(6 + 7/12, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front",
  13821. image: {
  13822. source: "./media/characters/blue-feyonics/front.svg",
  13823. extra: 1403/1306 * (1 / (1 - 0.047)),
  13824. bottom: 0.047
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(6 + 7/12, "feet"),
  13832. default: true
  13833. },
  13834. ]
  13835. )
  13836. };
  13837. //characters
  13838. function makeCharacters() {
  13839. const results = [];
  13840. Object.entries(characterMakers).forEach(([key, value]) => {
  13841. results.push({
  13842. name: key,
  13843. constructor: value
  13844. });
  13845. });
  13846. results.push({
  13847. name: "Aigey",
  13848. constructor: makeAigey
  13849. });
  13850. results.push({
  13851. name: "Natasha",
  13852. constructor: makeNatasha
  13853. });
  13854. results.push({
  13855. name: "Malik",
  13856. constructor: makeMalik
  13857. });
  13858. results.push({
  13859. name: "Sefer",
  13860. constructor: makeSefer
  13861. });
  13862. return results;
  13863. }