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.
 
 
 

13348 lines
351 KiB

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