less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

16064 řádky
416 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsec", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("parsecs", {
  7. definition: "3.086e16 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("lightyears", {
  11. definition: "9.461e15 meters",
  12. prefixes: "long"
  13. })
  14. math.createUnit("AU", {
  15. definition: "149597870700 meters"
  16. })
  17. math.createUnit("AUs", {
  18. definition: "149597870700 meters"
  19. })
  20. function makeCharacter(name, author, viewInfo, defaultSizes, extraInfo) {
  21. if (extraInfo === undefined) {
  22. extraInfo = {}
  23. }
  24. views = {};
  25. Object.entries(viewInfo).forEach(([key, value]) => {
  26. views[key] = {
  27. attributes: {
  28. height: {
  29. name: "Height",
  30. power: 1,
  31. type: "length",
  32. base: value.height
  33. }
  34. },
  35. image: value.image,
  36. name: value.name,
  37. info: value.info,
  38. rename: value.rename
  39. }
  40. if (value.weight) {
  41. views[key].attributes.weight = {
  42. name: "Mass",
  43. power: 3,
  44. type: "mass",
  45. base: value.weight
  46. };
  47. }
  48. });
  49. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  50. return entity;
  51. }
  52. characterMakers["Fen"] = () => {
  53. return makeCharacter(
  54. "Fen",
  55. "chemicalcrux",
  56. {
  57. back: {
  58. height: math.unit(2.2428, "meter"),
  59. weight: math.unit(124.738, "kg"),
  60. name: "Back",
  61. image: {
  62. source: "./media/characters/fen/back.svg",
  63. extra: 1025/935
  64. },
  65. info: {
  66. description: {
  67. mode: "append",
  68. text: "\n\nHe is not currently looking at you."
  69. }
  70. }
  71. },
  72. full: {
  73. height: math.unit(1.34, "meter"),
  74. weight: math.unit(225, "kg"),
  75. name: "Full",
  76. image: {
  77. source: "./media/characters/fen/full.svg"
  78. },
  79. info: {
  80. description: {
  81. mode: "append",
  82. text: "\n\nMunch."
  83. }
  84. }
  85. },
  86. kneeling: {
  87. height: math.unit(5.4, "feet"),
  88. weight: math.unit(124.738, "kg"),
  89. name: "Kneeling",
  90. image: {
  91. source: "./media/characters/fen/kneeling.svg",
  92. extra: 563/507
  93. }
  94. },
  95. },
  96. [
  97. {
  98. name: "Normal",
  99. height: math.unit(2.2428, "meter")
  100. },
  101. {
  102. name: "Big",
  103. height: math.unit(12, "feet")
  104. },
  105. {
  106. name: "Minimacro",
  107. height: math.unit(30, "meter"),
  108. default: true,
  109. info: {
  110. description: {
  111. mode: "append",
  112. text: "\n\nTOO DAMN BIG"
  113. }
  114. }
  115. },
  116. {
  117. name: "Macro",
  118. height: math.unit(100, "meter"),
  119. info: {
  120. description: {
  121. mode: "append",
  122. text: "\n\nTOO DAMN BIG"
  123. }
  124. }
  125. },
  126. {
  127. name: "Macro+",
  128. height: math.unit(1000, "meter")
  129. },
  130. {
  131. name: "Megamacro",
  132. height: math.unit(10, "miles")
  133. }
  134. ],
  135. {
  136. description: {
  137. title: "Bio",
  138. text: "Very furry. Sheds on everything."
  139. }
  140. }
  141. )
  142. };
  143. characterMakers["Sofia"] = () => {
  144. return makeCharacter(
  145. "Sofia",
  146. "ZakuraTech",
  147. {
  148. front: {
  149. height: math.unit(183, "cm"),
  150. weight: math.unit(80, "kg"),
  151. name: "Front",
  152. image: {
  153. source: "./media/characters/sofia/front.svg",
  154. bottom: 0.01,
  155. extra: 1
  156. }
  157. },
  158. frontAlt: {
  159. height: math.unit(183, "cm"),
  160. weight: math.unit(80, "kg"),
  161. name: "Front (alt)",
  162. image: {
  163. source: "./media/characters/sofia/front-alt.svg"
  164. }
  165. },
  166. back: {
  167. height: math.unit(183, "cm"),
  168. weight: math.unit(80, "kg"),
  169. name: "Back",
  170. image: {
  171. source: "./media/characters/sofia/back.svg"
  172. }
  173. },
  174. },
  175. [
  176. {
  177. name: "Normal",
  178. height: math.unit(1.83, "meter")
  179. },
  180. {
  181. name: "Macro",
  182. height: math.unit(96, "feet"),
  183. default: true
  184. },
  185. {
  186. name: "Megamerger",
  187. height: math.unit(650, "feet")
  188. },
  189. ]
  190. )
  191. };
  192. characterMakers["March"] = () => {
  193. return makeCharacter(
  194. "March",
  195. "March-Dragon",
  196. {
  197. front: {
  198. height: math.unit(7, "feet"),
  199. weight: math.unit(100, "kg"),
  200. name: "Front",
  201. image: {
  202. source: "./media/characters/march/front.svg",
  203. extra: 1,
  204. bottom: 0.015
  205. }
  206. },
  207. foot: {
  208. height: math.unit(0.9, "feet"),
  209. name: "Foot",
  210. image: {
  211. source: "./media/characters/march/foot.svg"
  212. }
  213. },
  214. },
  215. [
  216. {
  217. name: "Normal",
  218. height: math.unit(7.9, "feet")
  219. },
  220. {
  221. name: "Macro",
  222. height: math.unit(220, "meters")
  223. },
  224. {
  225. name: "Megamacro",
  226. height: math.unit(2.98, "km"),
  227. default: true
  228. },
  229. {
  230. name: "Gigamacro",
  231. height: math.unit(15963, "km")
  232. },
  233. {
  234. name: "Teramacro",
  235. height: math.unit(2980000000, "km")
  236. },
  237. {
  238. name: "Examacro",
  239. height: math.unit(250, "parsecs")
  240. },
  241. ]
  242. )
  243. };
  244. characterMakers["Noir"] = () => {
  245. return makeCharacter(
  246. "Noir",
  247. "March-Dragon",
  248. {
  249. front: {
  250. height: math.unit(6, "feet"),
  251. weight: math.unit(60, "kg"),
  252. name: "Front",
  253. image: {
  254. source: "./media/characters/noir/front.svg",
  255. extra: 1,
  256. bottom: 0.032
  257. }
  258. },
  259. },
  260. [
  261. {
  262. name: "Normal",
  263. height: math.unit(6.6, "feet")
  264. },
  265. {
  266. name: "Macro",
  267. height: math.unit(500, "feet")
  268. },
  269. {
  270. name: "Megamacro",
  271. height: math.unit(2.5, "km"),
  272. default: true
  273. },
  274. {
  275. name: "Gigamacro",
  276. height: math.unit(22500, "km")
  277. },
  278. {
  279. name: "Teramacro",
  280. height: math.unit(2500000000, "km")
  281. },
  282. {
  283. name: "Examacro",
  284. height: math.unit(200, "parsecs")
  285. },
  286. ]
  287. )
  288. };
  289. characterMakers["Okuri"] = () => {
  290. return makeCharacter(
  291. "Okuri",
  292. "OrinoMechadragon",
  293. {
  294. front: {
  295. height: math.unit(7, "feet"),
  296. weight: math.unit(100, "kg"),
  297. name: "Front",
  298. image: {
  299. source: "./media/characters/okuri/front.svg",
  300. extra: 1,
  301. bottom: 0.037
  302. }
  303. },
  304. back: {
  305. height: math.unit(7, "feet"),
  306. weight: math.unit(100, "kg"),
  307. name: "Back",
  308. image: {
  309. source: "./media/characters/okuri/back.svg",
  310. extra: 1,
  311. bottom: 0.007
  312. }
  313. },
  314. },
  315. [
  316. {
  317. name: "Megamacro",
  318. height: math.unit(100, "miles"),
  319. default: true
  320. },
  321. ]
  322. )
  323. };
  324. characterMakers["Manny"] = () => {
  325. return makeCharacter(
  326. "Manny",
  327. "Dialuca01",
  328. {
  329. front: {
  330. height: math.unit(7, "feet"),
  331. weight: math.unit(100, "kg"),
  332. name: "Front",
  333. image: {
  334. source: "./media/characters/manny/front.svg",
  335. extra: 1,
  336. bottom: 0.06
  337. }
  338. },
  339. back: {
  340. height: math.unit(7, "feet"),
  341. weight: math.unit(100, "kg"),
  342. name: "Back",
  343. image: {
  344. source: "./media/characters/manny/back.svg",
  345. extra: 1,
  346. bottom: 0.014
  347. }
  348. },
  349. },
  350. [
  351. {
  352. name: "Normal",
  353. height: math.unit(7, "feet"),
  354. },
  355. {
  356. name: "Macro",
  357. height: math.unit(78, "feet"),
  358. default: true
  359. },
  360. {
  361. name: "Macro+",
  362. height: math.unit(300, "meters")
  363. },
  364. {
  365. name: "Macro++",
  366. height: math.unit(2400, "meters")
  367. },
  368. {
  369. name: "Megamacro",
  370. height: math.unit(5167, "meters")
  371. },
  372. {
  373. name: "Gigamacro",
  374. height: math.unit(41769, "miles")
  375. },
  376. ]
  377. )
  378. };
  379. characterMakers["Adake"] = () => {
  380. return makeCharacter(
  381. "Adake",
  382. "Dialuca01",
  383. {
  384. front: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front",
  388. image: {
  389. source: "./media/characters/adake/front-1.svg"
  390. }
  391. },
  392. frontAlt: {
  393. height: math.unit(7, "feet"),
  394. weight: math.unit(100, "kg"),
  395. name: "Front (Alt)",
  396. image: {
  397. source: "./media/characters/adake/front-2.svg",
  398. extra: 1,
  399. bottom: 0.01
  400. }
  401. },
  402. back: {
  403. height: math.unit(7, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Back",
  406. image: {
  407. source: "./media/characters/adake/back.svg",
  408. }
  409. },
  410. kneel: {
  411. height: math.unit(5.385, "feet"),
  412. weight: math.unit(100, "kg"),
  413. name: "Kneeling",
  414. image: {
  415. source: "./media/characters/adake/kneel.svg",
  416. bottom: 0.052
  417. }
  418. },
  419. },
  420. [
  421. {
  422. name: "Normal",
  423. height: math.unit(7, "feet"),
  424. },
  425. {
  426. name: "Macro",
  427. height: math.unit(78, "feet"),
  428. default: true
  429. },
  430. {
  431. name: "Macro+",
  432. height: math.unit(300, "meters")
  433. },
  434. {
  435. name: "Macro++",
  436. height: math.unit(2400, "meters")
  437. },
  438. {
  439. name: "Megamacro",
  440. height: math.unit(5167, "meters")
  441. },
  442. {
  443. name: "Gigamacro",
  444. height: math.unit(41769, "miles")
  445. },
  446. ]
  447. )
  448. };
  449. characterMakers["Elijah"] = () => {
  450. return makeCharacter(
  451. "Elijah",
  452. "Elijah",
  453. {
  454. side: {
  455. height: math.unit(7, "feet"),
  456. weight: math.unit(50, "kg"),
  457. name: "Side",
  458. image: {
  459. source: "./media/characters/elijah/side.svg",
  460. extra: 1,
  461. bottom: 0.065
  462. }
  463. },
  464. foot: {
  465. height: math.unit(2.05, "feet"),
  466. name: "Foot",
  467. image: {
  468. source: "./media/characters/elijah/foot.svg"
  469. }
  470. },
  471. },
  472. [
  473. {
  474. name: "Normal",
  475. height: math.unit(1.65, "meters")
  476. },
  477. {
  478. name: "Macro",
  479. height: math.unit(55, "meters"),
  480. default: true
  481. },
  482. {
  483. name: "Macro+",
  484. height: math.unit(105, "meters")
  485. },
  486. ]
  487. )
  488. };
  489. characterMakers["Rai"] = () => {
  490. return makeCharacter(
  491. "Rai",
  492. "shadowblade945",
  493. {
  494. front: {
  495. height: math.unit(11, "feet"),
  496. weight: math.unit(80, "kg"),
  497. name: "Front",
  498. image: {
  499. source: "./media/characters/rai/front.svg",
  500. extra: 1,
  501. bottom: 0.03
  502. }
  503. },
  504. side: {
  505. height: math.unit(11, "feet"),
  506. weight: math.unit(80, "kg"),
  507. name: "Side",
  508. image: {
  509. source: "./media/characters/rai/side.svg"
  510. }
  511. },
  512. back: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "lb"),
  515. name: "Back",
  516. image: {
  517. source: "./media/characters/rai/back.svg",
  518. extra: 1,
  519. bottom: 0.01
  520. }
  521. },
  522. feral: {
  523. height: math.unit(11, "feet"),
  524. weight: math.unit(800, "lb"),
  525. name: "Feral",
  526. image: {
  527. source: "./media/characters/rai/feral.svg",
  528. extra: 1050/659 ,
  529. bottom: 0.07
  530. }
  531. },
  532. maw: {
  533. height: math.unit(6/3.81416, "feet"),
  534. name: "Maw",
  535. image: {
  536. source: "./media/characters/rai/maw.svg"
  537. }
  538. },
  539. },
  540. [
  541. {
  542. name: "Normal",
  543. height: math.unit(11, "feet")
  544. },
  545. {
  546. name: "Macro",
  547. height: math.unit(302, "feet"),
  548. default: true
  549. },
  550. ]
  551. )
  552. };
  553. characterMakers["Jazzy"] = () => {
  554. return makeCharacter(
  555. "Jazzy",
  556. "JazzyWolf",
  557. {
  558. front: {
  559. height: math.unit(7, "feet"),
  560. weight: math.unit(80, "kg"),
  561. name: "Front",
  562. image: {
  563. source: "./media/characters/jazzy/front.svg",
  564. extra: 1,
  565. bottom: 0.01
  566. }
  567. },
  568. back: {
  569. height: math.unit(7, "feet"),
  570. weight: math.unit(80, "kg"),
  571. name: "Back",
  572. image: {
  573. source: "./media/characters/jazzy/back.svg",
  574. extra: 1,
  575. bottom: 0.01
  576. }
  577. },
  578. },
  579. [
  580. {
  581. name: "Macro",
  582. height: math.unit(216, "feet"),
  583. default: true
  584. },
  585. ]
  586. )
  587. };
  588. characterMakers["Flamm"] = () => {
  589. return makeCharacter(
  590. "Flamm",
  591. "Flamm",
  592. {
  593. front: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Front",
  597. image: {
  598. source: "./media/characters/flamm/front.svg",
  599. extra: 1,
  600. bottom: 0.02
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Normal",
  607. height: math.unit(9.5, "feet")
  608. },
  609. {
  610. name: "Macro",
  611. height: math.unit(200, "feet"),
  612. default: true
  613. },
  614. ]
  615. )
  616. };
  617. characterMakers["Zephiro"] = () => {
  618. return makeCharacter(
  619. "Zephiro",
  620. "Zephiro",
  621. {
  622. front: {
  623. height: math.unit(7, "feet"),
  624. weight: math.unit(80, "kg"),
  625. name: "Front",
  626. image: {
  627. source: "./media/characters/zephiro/front.svg",
  628. extra: 2309/2162 ,
  629. bottom: 0.069
  630. }
  631. },
  632. side: {
  633. height: math.unit(7, "feet"),
  634. weight: math.unit(80, "kg"),
  635. name: "Side",
  636. image: {
  637. source: "./media/characters/zephiro/side.svg",
  638. extra: 2403/2279 ,
  639. bottom: 0.015
  640. }
  641. },
  642. back: {
  643. height: math.unit(7, "feet"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/zephiro/back.svg",
  648. extra: 2373/2244 ,
  649. bottom: 0.013
  650. }
  651. },
  652. },
  653. [
  654. {
  655. name: "Micro",
  656. height: math.unit(3, "inches")
  657. },
  658. {
  659. name: "Normal",
  660. height: math.unit(5 + 3/12, "feet"),
  661. default: true
  662. },
  663. {
  664. name: "Macro",
  665. height: math.unit(118, "feet")
  666. },
  667. ]
  668. )
  669. };
  670. characterMakers["Fory"] = () => {
  671. return makeCharacter(
  672. "Fory",
  673. "Manny",
  674. {
  675. front: {
  676. height: math.unit(7, "feet"),
  677. weight: math.unit(90, "kg"),
  678. name: "Front",
  679. image: {
  680. source: "./media/characters/fory/front.svg",
  681. extra: 1,
  682. bottom: 0.03
  683. }
  684. },
  685. },
  686. [
  687. {
  688. name: "Normal",
  689. height: math.unit(5, "feet")
  690. },
  691. {
  692. name: "Macro",
  693. height: math.unit(50, "feet"),
  694. default: true
  695. },
  696. ]
  697. )
  698. };
  699. characterMakers["Kurrikage"] = () => {
  700. return makeCharacter(
  701. "Kurrikage",
  702. "Kurrikage",
  703. {
  704. front: {
  705. height: math.unit(7, "feet"),
  706. weight: math.unit(90, "kg"),
  707. name: "Front",
  708. image: {
  709. source: "./media/characters/kurrikage/front.svg",
  710. extra: 1,
  711. bottom: 0.035
  712. }
  713. },
  714. back: {
  715. height: math.unit(7, "feet"),
  716. weight: math.unit(90, "lb"),
  717. name: "Back",
  718. image: {
  719. source: "./media/characters/kurrikage/back.svg"
  720. }
  721. },
  722. paw: {
  723. height: math.unit(1.5, "feet"),
  724. name: "Paw",
  725. image: {
  726. source: "./media/characters/kurrikage/paw.svg"
  727. }
  728. },
  729. staff: {
  730. height: math.unit(6.7, "feet"),
  731. name: "Staff",
  732. image: {
  733. source: "./media/characters/kurrikage/staff.svg"
  734. }
  735. },
  736. peek: {
  737. height: math.unit(1.05, "feet"),
  738. name: "Peeking",
  739. image: {
  740. source: "./media/characters/kurrikage/peek.svg",
  741. bottom: 0.08
  742. }
  743. },
  744. },
  745. [
  746. {
  747. name: "Normal",
  748. height: math.unit(12, "feet"),
  749. default: true
  750. },
  751. {
  752. name: "Big",
  753. height: math.unit(20, "feet")
  754. },
  755. {
  756. name: "Macro",
  757. height: math.unit(500, "feet")
  758. },
  759. {
  760. name: "Megamacro",
  761. height: math.unit(20, "miles")
  762. },
  763. ]
  764. )
  765. };
  766. characterMakers["Shingo"] = () => {
  767. return makeCharacter(
  768. "Shingo",
  769. "Shingo",
  770. {
  771. front: {
  772. height: math.unit(6, "feet"),
  773. weight: math.unit(75, "kg"),
  774. name: "Front",
  775. image: {
  776. source: "./media/characters/shingo/front.svg",
  777. extra: 3511/3338 ,
  778. bottom: 0.005
  779. }
  780. },
  781. },
  782. [
  783. {
  784. name: "Micro",
  785. height: math.unit(4, "inches")
  786. },
  787. {
  788. name: "Normal",
  789. height: math.unit(6, "feet"),
  790. default: true
  791. },
  792. {
  793. name: "Macro",
  794. height: math.unit(108, "feet")
  795. }
  796. ]
  797. )
  798. };
  799. function makeAigey() {
  800. const views = {
  801. side: {
  802. attributes: {
  803. height: {
  804. name: "Height",
  805. power: 1,
  806. type: "length",
  807. base: math.unit(6, "feet")
  808. },
  809. weight: {
  810. name: "Weight",
  811. power: 3,
  812. type: "mass",
  813. base: math.unit(75, "kg")
  814. }
  815. },
  816. image: {
  817. source: "./media/characters/aigey/side.svg"
  818. },
  819. name: "Side"
  820. }
  821. };
  822. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  823. entity.sizes.push({
  824. name: "Macro",
  825. height: math.unit(200, "feet")
  826. });
  827. entity.sizes.push({
  828. name: "Megamacro",
  829. height: math.unit(100, "miles")
  830. });
  831. entity.views[entity.defaultView].height = math.unit(200, "feet");
  832. return entity;
  833. }
  834. function makeNatasha() {
  835. const views = {
  836. side: {
  837. attributes: {
  838. height: {
  839. name: "Height",
  840. power: 1,
  841. type: "length",
  842. base: math.unit(6, "feet")
  843. },
  844. weight: {
  845. name: "Weight",
  846. power: 3,
  847. type: "mass",
  848. base: math.unit(75, "kg")
  849. }
  850. },
  851. image: {
  852. source: "./media/characters/natasha/front.svg"
  853. },
  854. name: "Side"
  855. }
  856. };
  857. const entity = makeEntity({ name: "Natasha", author: "Natasha" }, views, []);
  858. entity.sizes.push({
  859. name: "Normal",
  860. height: math.unit(5 + 5 / 12, "feet")
  861. });
  862. entity.sizes.push({
  863. name: "Large",
  864. height: math.unit(12, "feet")
  865. });
  866. entity.sizes.push({
  867. name: "Macro",
  868. height: math.unit(100, "feet")
  869. });
  870. entity.sizes.push({
  871. name: "Macro+",
  872. height: math.unit(260, "feet")
  873. });
  874. entity.sizes.push({
  875. name: "Macro++",
  876. height: math.unit(1, "mile")
  877. });
  878. entity.views[entity.defaultView].height = math.unit(100, "feet");
  879. return entity;
  880. }
  881. function makeMalik() {
  882. const views = {
  883. front: {
  884. attributes: {
  885. height: {
  886. name: "Height",
  887. power: 1,
  888. type: "length",
  889. base: math.unit(6, "feet")
  890. },
  891. weight: {
  892. name: "Weight",
  893. power: 3,
  894. type: "mass",
  895. base: math.unit(75, "kg")
  896. }
  897. },
  898. image: {
  899. source: "./media/characters/malik/front.svg"
  900. },
  901. name: "Front"
  902. },
  903. side: {
  904. attributes: {
  905. height: {
  906. name: "Height",
  907. power: 1,
  908. type: "length",
  909. base: math.unit(6, "feet")
  910. },
  911. weight: {
  912. name: "Weight",
  913. power: 3,
  914. type: "mass",
  915. base: math.unit(75, "kg")
  916. }
  917. },
  918. image: {
  919. extra: 1.1539,
  920. source: "./media/characters/malik/side.svg"
  921. },
  922. name: "Side"
  923. },
  924. back: {
  925. attributes: {
  926. height: {
  927. name: "Height",
  928. power: 1,
  929. type: "length",
  930. base: math.unit(6, "feet")
  931. },
  932. weight: {
  933. name: "Weight",
  934. power: 3,
  935. type: "mass",
  936. base: math.unit(75, "kg")
  937. }
  938. },
  939. image: {
  940. source: "./media/characters/malik/back.svg"
  941. },
  942. name: "Back"
  943. },
  944. };
  945. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  946. entity.sizes.push({
  947. name: "Macro",
  948. height: math.unit(156, "feet")
  949. });
  950. entity.sizes.push({
  951. name: "Macro+",
  952. height: math.unit(1188, "feet")
  953. });
  954. entity.views[entity.defaultView].height = math.unit(156, "feet");
  955. return entity;
  956. }
  957. function makeSefer() {
  958. const views = {
  959. front: {
  960. attributes: {
  961. height: {
  962. name: "Height",
  963. power: 1,
  964. type: "length",
  965. base: math.unit(6, "feet")
  966. },
  967. weight: {
  968. name: "Weight",
  969. power: 3,
  970. type: "mass",
  971. base: math.unit(75, "kg")
  972. }
  973. },
  974. image: {
  975. source: "./media/characters/sefer/front.svg"
  976. },
  977. name: "Front"
  978. },
  979. back: {
  980. attributes: {
  981. height: {
  982. name: "Height",
  983. power: 1,
  984. type: "length",
  985. base: math.unit(6, "feet")
  986. },
  987. weight: {
  988. name: "Weight",
  989. power: 3,
  990. type: "mass",
  991. base: math.unit(75, "kg")
  992. }
  993. },
  994. image: {
  995. source: "./media/characters/sefer/back.svg"
  996. },
  997. name: "Back"
  998. },
  999. };
  1000. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  1001. entity.views[entity.defaultView].height = math.unit(6, "feet");
  1002. return entity;
  1003. }
  1004. characterMakers["North"] = () => {
  1005. return makeCharacter(
  1006. "North",
  1007. "chemicalcrux",
  1008. {
  1009. body: {
  1010. height: math.unit(2.2428, "meter"),
  1011. weight: math.unit(124.738, "kg"),
  1012. name: "Body",
  1013. image: {
  1014. extra: 1225 / 1050,
  1015. source: "./media/characters/north/front.svg"
  1016. }
  1017. }
  1018. },
  1019. [
  1020. {
  1021. name: "Micro",
  1022. height: math.unit(4, "inches")
  1023. },
  1024. {
  1025. name: "Macro",
  1026. height: math.unit(63, "meters")
  1027. },
  1028. {
  1029. name: "Megamacro",
  1030. height: math.unit(101, "miles"),
  1031. default: true
  1032. }
  1033. ]
  1034. )
  1035. };
  1036. characterMakers["Talan"] = () => {
  1037. return makeCharacter(
  1038. "Talan",
  1039. "talanstrider",
  1040. {
  1041. body: {
  1042. height: math.unit(2, "meter"),
  1043. weight: math.unit(70, "kg"),
  1044. name: "Body",
  1045. image: {
  1046. bottom: 0.02,
  1047. source: "./media/characters/talan/front.svg"
  1048. }
  1049. }
  1050. },
  1051. [
  1052. {
  1053. name: "Normal",
  1054. height: math.unit(4, "meters")
  1055. },
  1056. {
  1057. name: "Macro",
  1058. height: math.unit(100, "meters")
  1059. },
  1060. {
  1061. name: "Megamacro",
  1062. height: math.unit(2, "miles"),
  1063. default: true
  1064. },
  1065. {
  1066. name: "Gigamacro",
  1067. height: math.unit(5000, "miles")
  1068. },
  1069. {
  1070. name: "Teramacro",
  1071. height: math.unit(100, "parsecs")
  1072. }
  1073. ]
  1074. )
  1075. };
  1076. characterMakers["Gael'Rathus"] = () => {
  1077. return makeCharacter(
  1078. "Gael'Rathus",
  1079. "Kurrikage",
  1080. {
  1081. front: {
  1082. height: math.unit(2, "meter"),
  1083. weight: math.unit(90, "kg"),
  1084. name: "Front",
  1085. image: {
  1086. source: "./media/characters/gael'rathus/front.svg"
  1087. }
  1088. },
  1089. frontAlt: {
  1090. height: math.unit(2, "meter"),
  1091. weight: math.unit(90, "kg"),
  1092. name: "Front (alt)",
  1093. image: {
  1094. source: "./media/characters/gael'rathus/front-alt.svg"
  1095. }
  1096. },
  1097. frontAlt2: {
  1098. height: math.unit(2, "meter"),
  1099. weight: math.unit(90, "kg"),
  1100. name: "Front (alt 2)",
  1101. image: {
  1102. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1103. }
  1104. }
  1105. },
  1106. [
  1107. {
  1108. name: "Normal",
  1109. height: math.unit(9, "feet"),
  1110. default: true
  1111. },
  1112. {
  1113. name: "Large",
  1114. height: math.unit(25, "feet")
  1115. },
  1116. {
  1117. name: "Macro",
  1118. height: math.unit(0.25, "miles")
  1119. },
  1120. {
  1121. name: "Megamacro",
  1122. height: math.unit(10, "miles")
  1123. }
  1124. ]
  1125. )
  1126. };
  1127. characterMakers["Sosha"] = () => {
  1128. return makeCharacter(
  1129. "Sosha",
  1130. "Sdocat",
  1131. {
  1132. side: {
  1133. height: math.unit(2, "meter"),
  1134. weight: math.unit(140, "kg"),
  1135. name: "Side",
  1136. image: {
  1137. source: "./media/characters/sosha/side.svg",
  1138. bottom: 0.042
  1139. }
  1140. },
  1141. },
  1142. [
  1143. {
  1144. name: "Normal",
  1145. height: math.unit(12, "feet"),
  1146. default: true
  1147. }
  1148. ]
  1149. )
  1150. };
  1151. characterMakers["RuNNoLa"] = () => {
  1152. return makeCharacter(
  1153. "RuNNoLa",
  1154. "RuNNoLa",
  1155. {
  1156. side: {
  1157. height: math.unit(5 + 5/12, "feet"),
  1158. weight: math.unit(170, "kg"),
  1159. name: "Side",
  1160. image: {
  1161. source: "./media/characters/runnola/side.svg",
  1162. extra: 741/448,
  1163. bottom: 0.05
  1164. }
  1165. },
  1166. },
  1167. [
  1168. {
  1169. name: "Small",
  1170. height: math.unit(3, "feet")
  1171. },
  1172. {
  1173. name: "Normal",
  1174. height: math.unit(5 + 5/12, "feet"),
  1175. default: true
  1176. },
  1177. {
  1178. name: "Big",
  1179. height: math.unit(10, "feet")
  1180. },
  1181. ]
  1182. )
  1183. };
  1184. characterMakers["Kurribird"] = () => {
  1185. return makeCharacter(
  1186. "Kurribird",
  1187. "Kurrikage",
  1188. {
  1189. front: {
  1190. height: math.unit(2, "meter"),
  1191. weight: math.unit(50, "kg"),
  1192. name: "Front",
  1193. image: {
  1194. source: "./media/characters/kurribird/front.svg",
  1195. bottom: 0.015
  1196. }
  1197. },
  1198. frontAlt: {
  1199. height: math.unit(1.5, "meter"),
  1200. weight: math.unit(50, "kg"),
  1201. name: "Front (Alt)",
  1202. image: {
  1203. source: "./media/characters/kurribird/front-alt.svg",
  1204. extra: 1.45
  1205. }
  1206. },
  1207. },
  1208. [
  1209. {
  1210. name: "Normal",
  1211. height: math.unit(7, "feet")
  1212. },
  1213. {
  1214. name: "Big",
  1215. height: math.unit(12, "feet"),
  1216. default: true
  1217. },
  1218. {
  1219. name: "Macro",
  1220. height: math.unit(1500, "feet")
  1221. },
  1222. {
  1223. name: "Megamacro",
  1224. height: math.unit(2, "miles")
  1225. }
  1226. ]
  1227. )
  1228. };
  1229. characterMakers["Elbial"] = () => {
  1230. return makeCharacter(
  1231. "Elbial",
  1232. "Neopuc",
  1233. {
  1234. front: {
  1235. height: math.unit(2, "meter"),
  1236. weight: math.unit(80, "kg"),
  1237. name: "Front",
  1238. image: {
  1239. source: "./media/characters/elbial/front.svg"
  1240. }
  1241. },
  1242. side: {
  1243. height: math.unit(2, "meter"),
  1244. weight: math.unit(80, "kg"),
  1245. name: "Side",
  1246. image: {
  1247. source: "./media/characters/elbial/side.svg"
  1248. }
  1249. },
  1250. back: {
  1251. height: math.unit(2, "meter"),
  1252. weight: math.unit(80, "kg"),
  1253. name: "Back",
  1254. image: {
  1255. source: "./media/characters/elbial/back.svg"
  1256. }
  1257. },
  1258. },
  1259. [
  1260. {
  1261. name: "Large",
  1262. height: math.unit(100, "feet")
  1263. },
  1264. {
  1265. name: "Macro",
  1266. height: math.unit(500, "feet"),
  1267. default: true
  1268. },
  1269. {
  1270. name: "Megamacro",
  1271. height: math.unit(10, "miles")
  1272. },
  1273. {
  1274. name: "Gigamacro",
  1275. height: math.unit(25000, "miles")
  1276. },
  1277. {
  1278. name: "Full-Size",
  1279. height: math.unit(8000000, "gigaparsecs")
  1280. }
  1281. ]
  1282. )
  1283. };
  1284. characterMakers["Noah"] = () => {
  1285. return makeCharacter(
  1286. "Noah",
  1287. "Neopuc",
  1288. {
  1289. front: {
  1290. height: math.unit(2, "meter"),
  1291. weight: math.unit(60, "kg"),
  1292. name: "Front",
  1293. image: {
  1294. source: "./media/characters/noah/front.svg"
  1295. }
  1296. },
  1297. talons: {
  1298. height: math.unit(0.315, "meter"),
  1299. name: "Talons",
  1300. image: {
  1301. source: "./media/characters/noah/talons.svg"
  1302. }
  1303. }
  1304. },
  1305. [
  1306. {
  1307. name: "Large",
  1308. height: math.unit(50, "feet")
  1309. },
  1310. {
  1311. name: "Macro",
  1312. height: math.unit(750, "feet"),
  1313. default: true
  1314. },
  1315. {
  1316. name: "Megamacro",
  1317. height: math.unit(50, "miles")
  1318. },
  1319. {
  1320. name: "Gigamacro",
  1321. height: math.unit(100000, "miles")
  1322. },
  1323. {
  1324. name: "Full-Size",
  1325. height: math.unit(3000000000, "miles")
  1326. }
  1327. ]
  1328. )
  1329. };
  1330. characterMakers["Natalya"] = () => {
  1331. return makeCharacter(
  1332. "Natalya",
  1333. "Neopuc",
  1334. {
  1335. front: {
  1336. height: math.unit(2, "meter"),
  1337. weight: math.unit(80, "kg"),
  1338. name: "Front",
  1339. image: {
  1340. source: "./media/characters/natalya/front.svg"
  1341. }
  1342. },
  1343. back: {
  1344. height: math.unit(2, "meter"),
  1345. weight: math.unit(80, "kg"),
  1346. name: "Back",
  1347. image: {
  1348. source: "./media/characters/natalya/back.svg"
  1349. }
  1350. }
  1351. },
  1352. [
  1353. {
  1354. name: "Normal",
  1355. height: math.unit(150, "feet"),
  1356. default: true
  1357. },
  1358. {
  1359. name: "Megamacro",
  1360. height: math.unit(5, "miles")
  1361. },
  1362. {
  1363. name: "Full-Size",
  1364. height: math.unit(600, "kiloparsecs")
  1365. }
  1366. ]
  1367. )
  1368. };
  1369. characterMakers["Erestrebah"] = () => {
  1370. return makeCharacter(
  1371. "Erestrebah",
  1372. "Kurrikage",
  1373. {
  1374. front: {
  1375. height: math.unit(2, "meter"),
  1376. weight: math.unit(50, "kg"),
  1377. name: "Front",
  1378. image: {
  1379. source: "./media/characters/erestrebah/front.svg"
  1380. }
  1381. },
  1382. back: {
  1383. height: math.unit(2, "meter"),
  1384. weight: math.unit(50, "kg"),
  1385. name: "Back",
  1386. image: {
  1387. source: "./media/characters/erestrebah/back.svg",
  1388. extra: 1.2139
  1389. }
  1390. }
  1391. },
  1392. [
  1393. {
  1394. name: "Normal",
  1395. height: math.unit(10, "feet")
  1396. },
  1397. {
  1398. name: "Large",
  1399. height: math.unit(50, "feet"),
  1400. default: true
  1401. },
  1402. {
  1403. name: "Macro",
  1404. height: math.unit(300, "feet")
  1405. },
  1406. {
  1407. name: "Macro+",
  1408. height: math.unit(750, "feet")
  1409. },
  1410. {
  1411. name: "Megamacro",
  1412. height: math.unit(3, "miles")
  1413. }
  1414. ]
  1415. )
  1416. };
  1417. characterMakers["Jennifer"] = () => {
  1418. return makeCharacter(
  1419. "Jennifer",
  1420. "Neopuc",
  1421. {
  1422. front: {
  1423. height: math.unit(2, "meter"),
  1424. weight: math.unit(80, "kg"),
  1425. name: "Front",
  1426. image: {
  1427. source: "./media/characters/jennifer/front.svg",
  1428. bottom: 0.11,
  1429. extra: 1.16
  1430. }
  1431. },
  1432. frontAlt: {
  1433. height: math.unit(2, "meter"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Front (Alt)",
  1436. image: {
  1437. source: "./media/characters/jennifer/front-alt.svg"
  1438. }
  1439. }
  1440. },
  1441. [
  1442. {
  1443. name: "Canon Height",
  1444. height: math.unit(120, "feet"),
  1445. default: true
  1446. },
  1447. {
  1448. name: "Macro+",
  1449. height: math.unit(300, "feet")
  1450. },
  1451. {
  1452. name: "Megamacro",
  1453. height: math.unit(20000, "feet")
  1454. }
  1455. ]
  1456. )
  1457. };
  1458. characterMakers["Kalista"] = () => {
  1459. return makeCharacter(
  1460. "Kalista",
  1461. "Kalista",
  1462. {
  1463. front: {
  1464. height: math.unit(2, "meter"),
  1465. weight: math.unit(50, "kg"),
  1466. name: "Front",
  1467. image: {
  1468. source: "./media/characters/kalista/front.svg",
  1469. extra: 1947/1700
  1470. }
  1471. },
  1472. back: {
  1473. height: math.unit(2, "meter"),
  1474. weight: math.unit(50, "kg"),
  1475. name: "Back",
  1476. image: {
  1477. source: "./media/characters/kalista/back.svg",
  1478. extra: 1366/1156
  1479. }
  1480. }
  1481. },
  1482. [
  1483. {
  1484. name: "Uncomfortably Small",
  1485. height: math.unit(10, "feet")
  1486. },
  1487. {
  1488. name: "Small",
  1489. height: math.unit(30, "feet")
  1490. },
  1491. {
  1492. name: "Macro",
  1493. height: math.unit(100, "feet"),
  1494. default: true
  1495. },
  1496. {
  1497. name: "Macro+",
  1498. height: math.unit(2000, "feet")
  1499. },
  1500. {
  1501. name: "True Form",
  1502. height: math.unit(8924, "miles")
  1503. }
  1504. ]
  1505. )
  1506. };
  1507. characterMakers["GiantGrowingVixen"] = () => {
  1508. return makeCharacter(
  1509. "GiantGrowingVixen",
  1510. "GiantGrowingVixen",
  1511. {
  1512. front: {
  1513. height: math.unit(2, "meter"),
  1514. weight: math.unit(120, "kg"),
  1515. name: "Front",
  1516. image: {
  1517. source: "./media/characters/ggv/front.svg"
  1518. }
  1519. },
  1520. side: {
  1521. height: math.unit(2, "meter"),
  1522. weight: math.unit(120, "kg"),
  1523. name: "Side",
  1524. image: {
  1525. source: "./media/characters/ggv/side.svg"
  1526. }
  1527. }
  1528. },
  1529. [
  1530. {
  1531. name: "Extremely Puny",
  1532. height: math.unit(9 + 5 / 12, "feet")
  1533. },
  1534. {
  1535. name: "Horribly Small",
  1536. height: math.unit(47.7, "miles"),
  1537. default: true
  1538. },
  1539. {
  1540. name: "Reasonably Sized",
  1541. height: math.unit(25000, "parsecs")
  1542. },
  1543. {
  1544. name: "Slightly Uncompressed",
  1545. height: math.unit(7.77e31, "parsecs")
  1546. },
  1547. {
  1548. name: "Omniversal",
  1549. height: math.unit(1e300, "meters")
  1550. },
  1551. ]
  1552. )
  1553. };
  1554. characterMakers["Napalm"] = () => {
  1555. return makeCharacter(
  1556. "Napalm",
  1557. "RathDaKrogan",
  1558. {
  1559. front: {
  1560. height: math.unit(2, "meter"),
  1561. weight: math.unit(75, "lb"),
  1562. name: "Front",
  1563. image: {
  1564. source: "./media/characters/napalm/front.svg"
  1565. }
  1566. },
  1567. back: {
  1568. height: math.unit(2, "meter"),
  1569. weight: math.unit(75, "lb"),
  1570. name: "Back",
  1571. image: {
  1572. source: "./media/characters/napalm/back.svg"
  1573. }
  1574. }
  1575. },
  1576. [
  1577. {
  1578. name: "Standard",
  1579. height: math.unit(55, "feet"),
  1580. default: true
  1581. }
  1582. ]
  1583. )
  1584. };
  1585. characterMakers["Asana"] = () => {
  1586. return makeCharacter(
  1587. "Asana",
  1588. "Asana",
  1589. {
  1590. front: {
  1591. height: math.unit(7 + 5 / 6, "feet"),
  1592. weight: math.unit(325, "lb"),
  1593. name: "Front",
  1594. image: {
  1595. source: "./media/characters/asana/front.svg",
  1596. extra: 1128 / 1068
  1597. }
  1598. },
  1599. back: {
  1600. height: math.unit(7 + 5 / 6, "feet"),
  1601. weight: math.unit(325, "lb"),
  1602. name: "Back",
  1603. image: {
  1604. source: "./media/characters/asana/back.svg",
  1605. extra: 1128 / 1068
  1606. }
  1607. },
  1608. },
  1609. [
  1610. {
  1611. name: "Standard",
  1612. height: math.unit(7 + 5 / 6, "feet"),
  1613. default: true
  1614. },
  1615. {
  1616. name: "Large",
  1617. height: math.unit(10, "meters")
  1618. },
  1619. {
  1620. name: "Macro",
  1621. height: math.unit(2500, "meters")
  1622. },
  1623. {
  1624. name: "Megamacro",
  1625. height: math.unit(5e6, "meters")
  1626. },
  1627. {
  1628. name: "Examacro",
  1629. height: math.unit(5e12, "lightyears")
  1630. },
  1631. {
  1632. name: "Max Size",
  1633. height: math.unit(1e31, "lightyears")
  1634. }
  1635. ]
  1636. )
  1637. };
  1638. characterMakers["Ebony"] = () => {
  1639. return makeCharacter(
  1640. "Ebony",
  1641. "Lazerwolf",
  1642. {
  1643. front: {
  1644. height: math.unit(2, "meter"),
  1645. weight: math.unit(60, "kg"),
  1646. name: "Front",
  1647. image: {
  1648. source: "./media/characters/ebony/front.svg",
  1649. bottom: 0.03,
  1650. extra: 1045 / 810 + 0.03
  1651. }
  1652. },
  1653. side: {
  1654. height: math.unit(2, "meter"),
  1655. weight: math.unit(60, "kg"),
  1656. name: "Side",
  1657. image: {
  1658. source: "./media/characters/ebony/side.svg",
  1659. bottom: 0.03,
  1660. extra: 1045 / 810 + 0.03
  1661. }
  1662. },
  1663. back: {
  1664. height: math.unit(2, "meter"),
  1665. weight: math.unit(60, "kg"),
  1666. name: "Back",
  1667. image: {
  1668. source: "./media/characters/ebony/back.svg",
  1669. bottom: 0.01,
  1670. extra: 1045 / 810 + 0.01
  1671. }
  1672. },
  1673. },
  1674. [
  1675. // TODO check why I did this lol
  1676. {
  1677. name: "Standard",
  1678. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1679. default: true
  1680. },
  1681. {
  1682. name: "Macro",
  1683. height: math.unit(200, "feet")
  1684. },
  1685. {
  1686. name: "Gigamacro",
  1687. height: math.unit(13000, "km")
  1688. }
  1689. ]
  1690. )
  1691. };
  1692. characterMakers["Mountain"] = () => {
  1693. return makeCharacter(
  1694. "Mountain",
  1695. "Asana",
  1696. {
  1697. front: {
  1698. height: math.unit(6, "feet"),
  1699. weight: math.unit(175, "lb"),
  1700. name: "Front",
  1701. image: {
  1702. source: "./media/characters/mountain/front.svg"
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(6, "feet"),
  1707. weight: math.unit(175, "lb"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/mountain/back.svg"
  1711. }
  1712. },
  1713. },
  1714. [
  1715. {
  1716. name: "Large",
  1717. height: math.unit(20, "meters")
  1718. },
  1719. {
  1720. name: "Macro",
  1721. height: math.unit(300, "meters")
  1722. },
  1723. {
  1724. name: "Gigamacro",
  1725. height: math.unit(10000, "km"),
  1726. default: true
  1727. },
  1728. {
  1729. name: "Examacro",
  1730. height: math.unit(10e9, "lightyears")
  1731. }
  1732. ]
  1733. )
  1734. };
  1735. characterMakers["Rick"] = () => {
  1736. return makeCharacter(
  1737. "Rick",
  1738. "Victni",
  1739. {
  1740. front: {
  1741. height: math.unit(8, "feet"),
  1742. weight: math.unit(500, "lb"),
  1743. name: "Front",
  1744. image: {
  1745. source: "./media/characters/rick/front.svg"
  1746. }
  1747. }
  1748. },
  1749. [
  1750. {
  1751. name: "Normal",
  1752. height: math.unit(8, "feet"),
  1753. default: true
  1754. },
  1755. {
  1756. name: "Macro",
  1757. height: math.unit(5, "km")
  1758. }
  1759. ]
  1760. )
  1761. };
  1762. characterMakers["Ona"] = () => {
  1763. return makeCharacter(
  1764. "Ona",
  1765. "Arrogance127",
  1766. {
  1767. front: {
  1768. height: math.unit(8, "feet"),
  1769. weight: math.unit(120, "lb"),
  1770. name: "Front",
  1771. image: {
  1772. source: "./media/characters/ona/front.svg"
  1773. }
  1774. },
  1775. frontAlt: {
  1776. height: math.unit(8, "feet"),
  1777. weight: math.unit(120, "lb"),
  1778. name: "Front (Alt)",
  1779. image: {
  1780. source: "./media/characters/ona/front-alt.svg"
  1781. }
  1782. },
  1783. back: {
  1784. height: math.unit(8, "feet"),
  1785. weight: math.unit(120, "lb"),
  1786. name: "Back",
  1787. image: {
  1788. source: "./media/characters/ona/back.svg"
  1789. }
  1790. },
  1791. foot: {
  1792. height: math.unit(1.1, "feet"),
  1793. name: "Foot",
  1794. image: {
  1795. source: "./media/characters/ona/foot.svg"
  1796. }
  1797. }
  1798. },
  1799. [
  1800. {
  1801. name: "Megamacro",
  1802. height: math.unit(70, "km"),
  1803. default: true
  1804. },
  1805. {
  1806. name: "Gigamacro",
  1807. height: math.unit(681818, "miles")
  1808. },
  1809. {
  1810. name: "Examacro",
  1811. height: math.unit(3800000, "lightyears")
  1812. },
  1813. ]
  1814. )
  1815. };
  1816. characterMakers["Mech"] = () => {
  1817. return makeCharacter(
  1818. "Mech",
  1819. "mechEdragon",
  1820. {
  1821. front: {
  1822. height: math.unit(12, "feet"),
  1823. weight: math.unit(3000, "lb"),
  1824. name: "Front",
  1825. image: {
  1826. source: "./media/characters/mech/front.svg",
  1827. bottom: 0.025,
  1828. }
  1829. },
  1830. back: {
  1831. height: math.unit(12, "feet"),
  1832. weight: math.unit(3000, "lb"),
  1833. name: "Back",
  1834. image: {
  1835. source: "./media/characters/mech/back.svg",
  1836. bottom: 0.03,
  1837. }
  1838. }
  1839. },
  1840. [
  1841. {
  1842. name: "Normal",
  1843. height: math.unit(12, "feet")
  1844. },
  1845. {
  1846. name: "Macro",
  1847. height: math.unit(300, "feet"),
  1848. default: true
  1849. },
  1850. {
  1851. name: "Macro+",
  1852. height: math.unit(1500, "feet")
  1853. },
  1854. ]
  1855. )
  1856. };
  1857. characterMakers["Gregory"] = () => {
  1858. return makeCharacter(
  1859. "Gregory",
  1860. "GregoryKlippenspringer",
  1861. {
  1862. front: {
  1863. height: math.unit(1.3, "meter"),
  1864. weight: math.unit(30, "kg"),
  1865. name: "Front",
  1866. image: {
  1867. source: "./media/characters/gregory/front.svg",
  1868. }
  1869. }
  1870. },
  1871. [
  1872. {
  1873. name: "Normal",
  1874. height: math.unit(1.3, "meter"),
  1875. default: true
  1876. },
  1877. {
  1878. name: "Macro",
  1879. height: math.unit(20, "meter")
  1880. }
  1881. ]
  1882. )
  1883. };
  1884. characterMakers["Elory"] = () => {
  1885. return makeCharacter(
  1886. "Elory",
  1887. "GregoryKlippenspringer",
  1888. {
  1889. front: {
  1890. height: math.unit(2.8, "meter"),
  1891. weight: math.unit(200, "kg"),
  1892. name: "Front",
  1893. image: {
  1894. source: "./media/characters/elory/front.svg",
  1895. }
  1896. }
  1897. },
  1898. [
  1899. {
  1900. name: "Normal",
  1901. height: math.unit(2.8, "meter"),
  1902. default: true
  1903. },
  1904. {
  1905. name: "Macro",
  1906. height: math.unit(38, "meter")
  1907. }
  1908. ]
  1909. )
  1910. };
  1911. characterMakers["Angelpatamon"] = () => {
  1912. return makeCharacter(
  1913. "Angelpatamon",
  1914. "GregoryKlippenspringer",
  1915. {
  1916. front: {
  1917. height: math.unit(470, "feet"),
  1918. weight: math.unit(924, "tons"),
  1919. name: "Front",
  1920. image: {
  1921. source: "./media/characters/angelpatamon/front.svg",
  1922. }
  1923. }
  1924. },
  1925. [
  1926. {
  1927. name: "Normal",
  1928. height: math.unit(470, "feet"),
  1929. default: true
  1930. },
  1931. {
  1932. name: "Deity Size I",
  1933. height: math.unit(28651.2, "km")
  1934. },
  1935. {
  1936. name: "Deity Size II",
  1937. height: math.unit(171907.2, "km")
  1938. }
  1939. ]
  1940. )
  1941. };
  1942. characterMakers["Cryae"] = () => {
  1943. return makeCharacter(
  1944. "Cryae",
  1945. "GregoryKlippenspringer",
  1946. {
  1947. side: {
  1948. height: math.unit(7.2, "meter"),
  1949. weight: math.unit(8.2, "tons"),
  1950. name: "Side",
  1951. image: {
  1952. source: "./media/characters/cryae/side.svg",
  1953. extra: 3500 / 1500
  1954. }
  1955. }
  1956. },
  1957. [
  1958. {
  1959. name: "Normal",
  1960. height: math.unit(7.2, "meter"),
  1961. default: true
  1962. }
  1963. ]
  1964. )
  1965. };
  1966. characterMakers["Xera"] = () => {
  1967. return makeCharacter(
  1968. "Xera",
  1969. "Asana",
  1970. {
  1971. front: {
  1972. height: math.unit(6, "feet"),
  1973. weight: math.unit(175, "lb"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/xera/front.svg",
  1977. extra: 2300 / 2061
  1978. }
  1979. },
  1980. side: {
  1981. height: math.unit(6, "feet"),
  1982. weight: math.unit(175, "lb"),
  1983. name: "Side",
  1984. image: {
  1985. source: "./media/characters/xera/side.svg",
  1986. extra: 2300 / 2061
  1987. }
  1988. },
  1989. back: {
  1990. height: math.unit(6, "feet"),
  1991. weight: math.unit(175, "lb"),
  1992. name: "Back",
  1993. image: {
  1994. source: "./media/characters/xera/back.svg"
  1995. }
  1996. },
  1997. },
  1998. [
  1999. {
  2000. name: "Small",
  2001. height: math.unit(10, "feet")
  2002. },
  2003. {
  2004. name: "Macro",
  2005. height: math.unit(500, "meters"),
  2006. default: true
  2007. },
  2008. {
  2009. name: "Macro+",
  2010. height: math.unit(10, "km")
  2011. },
  2012. {
  2013. name: "Gigamacro",
  2014. height: math.unit(25000, "km")
  2015. },
  2016. {
  2017. name: "Teramacro",
  2018. height: math.unit(3e6, "km")
  2019. }
  2020. ]
  2021. )
  2022. };
  2023. characterMakers["Nebula"] = () => {
  2024. return makeCharacter(
  2025. "Nebula",
  2026. "Cilenomon",
  2027. {
  2028. front: {
  2029. height: math.unit(6, "feet"),
  2030. weight: math.unit(175, "lb"),
  2031. name: "Front",
  2032. image: {
  2033. source: "./media/characters/nebula/front.svg",
  2034. extra: 2600 / 2450
  2035. }
  2036. }
  2037. },
  2038. [
  2039. {
  2040. name: "Small",
  2041. height: math.unit(4.5, "meters")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(1500, "meters"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamacro",
  2050. height: math.unit(150, "km")
  2051. },
  2052. {
  2053. name: "Gigamacro",
  2054. height: math.unit(27000, "km")
  2055. }
  2056. ]
  2057. )
  2058. };
  2059. characterMakers["Abysgar"] = () => {
  2060. return makeCharacter(
  2061. "Abysgar",
  2062. "Cilenomon",
  2063. {
  2064. front: {
  2065. height: math.unit(6, "feet"),
  2066. weight: math.unit(225, "lb"),
  2067. name: "Front",
  2068. image: {
  2069. source: "./media/characters/abysgar/front.svg"
  2070. }
  2071. }
  2072. },
  2073. [
  2074. {
  2075. name: "Small",
  2076. height: math.unit(4.5, "meters")
  2077. },
  2078. {
  2079. name: "Macro",
  2080. height: math.unit(1250, "meters"),
  2081. default: true
  2082. },
  2083. {
  2084. name: "Megamacro",
  2085. height: math.unit(125, "km")
  2086. },
  2087. {
  2088. name: "Gigamacro",
  2089. height: math.unit(26000, "km")
  2090. }
  2091. ]
  2092. )
  2093. };
  2094. characterMakers["Yakuz"] = () => {
  2095. return makeCharacter(
  2096. "Yakuz",
  2097. "Cilenomon",
  2098. {
  2099. front: {
  2100. height: math.unit(6, "feet"),
  2101. weight: math.unit(180, "lb"),
  2102. name: "Front",
  2103. image: {
  2104. source: "./media/characters/yakuz/front.svg"
  2105. }
  2106. }
  2107. },
  2108. [
  2109. {
  2110. name: "Small",
  2111. height: math.unit(5, "meters")
  2112. },
  2113. {
  2114. name: "Macro",
  2115. height: math.unit(1500, "meters"),
  2116. default: true
  2117. },
  2118. {
  2119. name: "Megamacro",
  2120. height: math.unit(200, "km")
  2121. },
  2122. {
  2123. name: "Gigamacro",
  2124. height: math.unit(100000, "km")
  2125. }
  2126. ]
  2127. )
  2128. };
  2129. characterMakers["Mirova"] = () => {
  2130. return makeCharacter(
  2131. "Mirova",
  2132. "Cilenomon",
  2133. {
  2134. front: {
  2135. height: math.unit(6, "feet"),
  2136. weight: math.unit(175, "lb"),
  2137. name: "Front",
  2138. image: {
  2139. source: "./media/characters/mirova/front.svg"
  2140. }
  2141. }
  2142. },
  2143. [
  2144. {
  2145. name: "Small",
  2146. height: math.unit(5, "meters")
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(900, "meters"),
  2151. default: true
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(135, "km")
  2156. },
  2157. {
  2158. name: "Gigamacro",
  2159. height: math.unit(20000, "km")
  2160. }
  2161. ]
  2162. )
  2163. };
  2164. characterMakers["Asana (Mech)"] = () => {
  2165. return makeCharacter(
  2166. "Asana (Mech)",
  2167. "Asana",
  2168. {
  2169. side: {
  2170. height: math.unit(28.35, "feet"),
  2171. weight: math.unit(99.75, "tons"),
  2172. name: "Side",
  2173. image: {
  2174. source: "./media/characters/asana-mech/side.svg"
  2175. }
  2176. }
  2177. },
  2178. [
  2179. {
  2180. name: "Normal",
  2181. height: math.unit(28.35, "feet"),
  2182. default: true
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(2500, "feet")
  2187. },
  2188. {
  2189. name: "Megamacro",
  2190. height: math.unit(25, "miles")
  2191. },
  2192. {
  2193. name: "Examacro",
  2194. height: math.unit(6e8, "lightyears")
  2195. },
  2196. ]
  2197. )
  2198. };
  2199. characterMakers["Ashtrek"] = () => {
  2200. return makeCharacter(
  2201. "Ashtrek",
  2202. "Ashtrek",
  2203. {
  2204. front: {
  2205. height: math.unit(2, "meters"),
  2206. weight: math.unit(70, "kg"),
  2207. name: "Front",
  2208. image: {
  2209. source: "./media/characters/ashtrek/front.svg",
  2210. extra: 560/524 ,
  2211. bottom: 0.01
  2212. }
  2213. },
  2214. frontArmor: {
  2215. height: math.unit(2, "meters"),
  2216. weight: math.unit(76, "kg"),
  2217. name: "Front (Armor)",
  2218. image: {
  2219. source: "./media/characters/ashtrek/front-armor.svg",
  2220. extra: 561/527 ,
  2221. bottom: 0.01
  2222. }
  2223. },
  2224. side: {
  2225. height: math.unit(2, "meters"),
  2226. weight: math.unit(70, "kg"),
  2227. name: "Side",
  2228. image: {
  2229. source: "./media/characters/ashtrek/side.svg",
  2230. extra: 1717/1609 ,
  2231. bottom: 0.005
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(2, "meters"),
  2236. weight: math.unit(70, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/ashtrek/back.svg",
  2240. extra: 1570/1501
  2241. }
  2242. },
  2243. },
  2244. [
  2245. {
  2246. name: "DEFCON 5",
  2247. height: math.unit(5, "meters")
  2248. },
  2249. {
  2250. name: "DEFCON 4",
  2251. height: math.unit(500, "meters"),
  2252. default: true
  2253. },
  2254. {
  2255. name: "DEFCON 3",
  2256. height: math.unit(5, "km")
  2257. },
  2258. {
  2259. name: "DEFCON 2",
  2260. height: math.unit(500, "km")
  2261. },
  2262. {
  2263. name: "DEFCON 1",
  2264. height: math.unit(500000, "km")
  2265. },
  2266. {
  2267. name: "DEFCON 0",
  2268. height: math.unit(3, "gigaparsecs")
  2269. },
  2270. ]
  2271. )
  2272. };
  2273. characterMakers["Gale"] = () => {
  2274. return makeCharacter(
  2275. "Gale",
  2276. "GaleFierre",
  2277. {
  2278. front: {
  2279. height: math.unit(2, "meters"),
  2280. weight: math.unit(76, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/gale/front.svg"
  2284. }
  2285. },
  2286. frontAlt1: {
  2287. height: math.unit(2, "meters"),
  2288. weight: math.unit(76, "kg"),
  2289. name: "Front (Alt 1)",
  2290. image: {
  2291. source: "./media/characters/gale/front-alt-1.svg"
  2292. }
  2293. },
  2294. frontAlt2: {
  2295. height: math.unit(2, "meters"),
  2296. weight: math.unit(76, "kg"),
  2297. name: "Front (Alt 2)",
  2298. image: {
  2299. source: "./media/characters/gale/front-alt-2.svg"
  2300. }
  2301. },
  2302. },
  2303. [
  2304. {
  2305. name: "Normal",
  2306. height: math.unit(7, "feet")
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(150, "feet"),
  2311. default: true
  2312. },
  2313. {
  2314. name: "Macro+",
  2315. height: math.unit(300, "feet")
  2316. },
  2317. ]
  2318. )
  2319. };
  2320. characterMakers["Draylen"] = () => {
  2321. return makeCharacter(
  2322. "Draylen",
  2323. "Longshot Coyote",
  2324. {
  2325. front: {
  2326. height: math.unit(2, "meters"),
  2327. weight: math.unit(76, "kg"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/draylen/front.svg"
  2331. }
  2332. }
  2333. },
  2334. [
  2335. {
  2336. name: "Macro",
  2337. height: math.unit(150, "feet"),
  2338. default: true
  2339. }
  2340. ]
  2341. )
  2342. };
  2343. characterMakers["Chez"] = () => {
  2344. return makeCharacter(
  2345. "Chez",
  2346. "Ashtrek",
  2347. {
  2348. front: {
  2349. height: math.unit(7 + 9 / 12, "feet"),
  2350. weight: math.unit(379, "lbs"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/chez/front.svg"
  2354. }
  2355. },
  2356. side: {
  2357. height: math.unit(7 + 9 / 12, "feet"),
  2358. weight: math.unit(379, "lbs"),
  2359. name: "Side",
  2360. image: {
  2361. source: "./media/characters/chez/side.svg"
  2362. }
  2363. }
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(7 + 9 / 12, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "God King",
  2373. height: math.unit(9750000, "meters")
  2374. }
  2375. ]
  2376. )
  2377. };
  2378. characterMakers["Kaylum"] = () => {
  2379. return makeCharacter(
  2380. "Kaylum",
  2381. "DJDarkJaro",
  2382. {
  2383. front: {
  2384. height: math.unit(6, "feet"),
  2385. weight: math.unit(275, "lbs"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/kaylum/front.svg",
  2389. bottom: 0.01,
  2390. extra: 1166 / 1031
  2391. }
  2392. },
  2393. frontWingless: {
  2394. height: math.unit(6, "feet"),
  2395. weight: math.unit(275, "lbs"),
  2396. name: "Front (Wingless)",
  2397. image: {
  2398. source: "./media/characters/kaylum/front-wingless.svg",
  2399. bottom: 0.01,
  2400. extra: 1117 / 1031
  2401. }
  2402. }
  2403. },
  2404. [
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(3.05, "meters")
  2408. },
  2409. {
  2410. name: "Master",
  2411. height: math.unit(5.5, "meters")
  2412. },
  2413. {
  2414. name: "Rampage",
  2415. height: math.unit(19, "meters")
  2416. },
  2417. {
  2418. name: "Macro Lite",
  2419. height: math.unit(37, "meters")
  2420. },
  2421. {
  2422. name: "Hyper Predator",
  2423. height: math.unit(61, "meters")
  2424. },
  2425. {
  2426. name: "Macro",
  2427. height: math.unit(138, "meters"),
  2428. default: true
  2429. }
  2430. ]
  2431. )
  2432. };
  2433. characterMakers["Geta"] = () => {
  2434. return makeCharacter(
  2435. "Geta",
  2436. "Aeznon",
  2437. {
  2438. front: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(150, "lbs"),
  2441. name: "Front",
  2442. image: {
  2443. source: "./media/characters/geta/front.svg"
  2444. }
  2445. }
  2446. },
  2447. [
  2448. {
  2449. name: "Micro",
  2450. height: math.unit(3, "inches"),
  2451. default: true
  2452. },
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(5 + 5 / 12, "feet")
  2456. }
  2457. ]
  2458. )
  2459. };
  2460. characterMakers["Tyrnn"] = () => {
  2461. return makeCharacter(
  2462. "Tyrnn",
  2463. "Tyrnn",
  2464. {
  2465. front: {
  2466. height: math.unit(6, "feet"),
  2467. weight: math.unit(300, "lbs"),
  2468. name: "Front",
  2469. image: {
  2470. source: "./media/characters/tyrnn/front.svg"
  2471. }
  2472. }
  2473. },
  2474. [
  2475. {
  2476. name: "Main Height",
  2477. height: math.unit(355, "feet"),
  2478. default: true
  2479. },
  2480. {
  2481. name: "Fave. Height",
  2482. height: math.unit(2400, "feet")
  2483. }
  2484. ]
  2485. )
  2486. };
  2487. characterMakers["Apple"] = () => {
  2488. return makeCharacter(
  2489. "Apple",
  2490. "Appledectomy",
  2491. {
  2492. front: {
  2493. height: math.unit(6, "feet"),
  2494. weight: math.unit(300, "lbs"),
  2495. name: "Front",
  2496. image: {
  2497. source: "./media/characters/appledectomy/front.svg"
  2498. }
  2499. }
  2500. },
  2501. [
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(2500, "feet")
  2505. },
  2506. {
  2507. name: "Megamacro",
  2508. height: math.unit(50, "miles"),
  2509. default: true
  2510. },
  2511. {
  2512. name: "Gigamacro",
  2513. height: math.unit(5000, "miles")
  2514. },
  2515. {
  2516. name: "Teramacro",
  2517. height: math.unit(250000, "miles")
  2518. },
  2519. ]
  2520. )
  2521. };
  2522. characterMakers["Vulpes"] = () => {
  2523. return makeCharacter(
  2524. "Vulpes",
  2525. "VulpesPawpad",
  2526. {
  2527. front: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(200, "lbs"),
  2530. name: "Front",
  2531. image: {
  2532. source: "./media/characters/vulpes/front.svg"
  2533. }
  2534. },
  2535. side: {
  2536. height: math.unit(6, "feet"),
  2537. weight: math.unit(200, "lbs"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/vulpes/side.svg"
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(200, "lbs"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/vulpes/back.svg"
  2549. }
  2550. },
  2551. feet: {
  2552. height: math.unit(1.276, "feet"),
  2553. name: "Feet",
  2554. image: {
  2555. source: "./media/characters/vulpes/feet.svg"
  2556. }
  2557. },
  2558. },
  2559. [
  2560. {
  2561. name: "Micro",
  2562. height: math.unit(2, "inches")
  2563. },
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(6.3, "feet")
  2567. },
  2568. {
  2569. name: "Macro",
  2570. height: math.unit(850, "feet")
  2571. },
  2572. {
  2573. name: "Megamacro",
  2574. height: math.unit(7500, "feet"),
  2575. default: true
  2576. },
  2577. {
  2578. name: "Gigamacro",
  2579. height: math.unit(570000, "miles")
  2580. }
  2581. ]
  2582. )
  2583. };
  2584. characterMakers["Rain Fallen"] = () => {
  2585. return makeCharacter(
  2586. "Rain Fallen",
  2587. "Rain Fallen",
  2588. {
  2589. front: {
  2590. height: math.unit(6, "feet"),
  2591. weight: math.unit(210, "lbs"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/rain/front.svg"
  2595. }
  2596. },
  2597. side: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(210, "lbs"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/rain/side.svg"
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(6, "feet"),
  2607. weight: math.unit(210, "lbs"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rain/back.svg"
  2611. }
  2612. },
  2613. feral: {
  2614. height: math.unit(9, "feet"),
  2615. weight: math.unit(700, "lbs"),
  2616. name: "Feral",
  2617. image: {
  2618. source: "./media/characters/rain/feral.svg"
  2619. }
  2620. },
  2621. },
  2622. [
  2623. {
  2624. name: "Normal",
  2625. height: math.unit(5, "meter")
  2626. },
  2627. {
  2628. name: "Macro",
  2629. height: math.unit(150, "meter"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(278e6, "meter")
  2635. },
  2636. {
  2637. name: "Gigamacro",
  2638. height: math.unit(2e9, "meter")
  2639. },
  2640. {
  2641. name: "Teramacro",
  2642. height: math.unit(8e12, "meter")
  2643. },
  2644. {
  2645. name: "Devourer",
  2646. height: math.unit(14, "zettameters")
  2647. },
  2648. {
  2649. name: "Scarlet King",
  2650. height: math.unit(18, "yottameters")
  2651. },
  2652. {
  2653. name: "Void",
  2654. height: math.unit(6.66e66, "yottameters")
  2655. }
  2656. ]
  2657. )
  2658. };
  2659. characterMakers["Zaakira"] = () => {
  2660. return makeCharacter(
  2661. "Zaakira",
  2662. "Jazzywolf",
  2663. {
  2664. standing: {
  2665. height: math.unit(6, "feet"),
  2666. weight: math.unit(180, "lbs"),
  2667. name: "Standing",
  2668. image: {
  2669. source: "./media/characters/zaakira/standing.svg"
  2670. }
  2671. },
  2672. laying: {
  2673. height: math.unit(3, "feet"),
  2674. weight: math.unit(180, "lbs"),
  2675. name: "Laying",
  2676. image: {
  2677. source: "./media/characters/zaakira/laying.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(12, "feet")
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(279, "feet"),
  2689. default: true
  2690. }
  2691. ]
  2692. )
  2693. };
  2694. characterMakers["Sigvald"] = () => {
  2695. return makeCharacter(
  2696. "Sigvald",
  2697. "Sigvald",
  2698. {
  2699. front: {
  2700. height: math.unit(6, "feet"),
  2701. weight: math.unit(250, "lbs"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/sigvald/front.svg",
  2705. extra: 1000 / 850
  2706. }
  2707. },
  2708. back: {
  2709. height: math.unit(6, "feet"),
  2710. weight: math.unit(250, "lbs"),
  2711. name: "Back",
  2712. image: {
  2713. source: "./media/characters/sigvald/back.svg"
  2714. }
  2715. },
  2716. },
  2717. [
  2718. {
  2719. name: "Normal",
  2720. height: math.unit(8, "feet")
  2721. },
  2722. {
  2723. name: "Large",
  2724. height: math.unit(12, "feet")
  2725. },
  2726. {
  2727. name: "Larger",
  2728. height: math.unit(20, "feet")
  2729. },
  2730. {
  2731. name: "Macro",
  2732. height: math.unit(150, "feet")
  2733. },
  2734. {
  2735. name: "Macro+",
  2736. height: math.unit(200, "feet"),
  2737. default: true
  2738. },
  2739. ]
  2740. )
  2741. };
  2742. characterMakers["Scott"] = () => {
  2743. return makeCharacter(
  2744. "Scott",
  2745. "Scott",
  2746. {
  2747. side: {
  2748. height: math.unit(12, "feet"),
  2749. weight: math.unit(3000, "lbs"),
  2750. name: "Side",
  2751. image: {
  2752. source: "./media/characters/scott/side.svg",
  2753. extra: 1,
  2754. bottom: 0.069
  2755. }
  2756. },
  2757. upright: {
  2758. height: math.unit(12, "feet"),
  2759. weight: math.unit(3000, "lbs"),
  2760. name: "Upright",
  2761. image: {
  2762. source: "./media/characters/scott/upright.svg",
  2763. extra: 1,
  2764. bottom: 0.05
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Normal",
  2771. height: math.unit(12, "feet"),
  2772. default: true
  2773. },
  2774. ]
  2775. )
  2776. };
  2777. characterMakers["Tobias"] = () => {
  2778. return makeCharacter(
  2779. "Tobias",
  2780. "Tobias",
  2781. {
  2782. side: {
  2783. height: math.unit(8, "meters"),
  2784. weight: math.unit(84755, "lbs"),
  2785. name: "Side",
  2786. image: {
  2787. source: "./media/characters/tobias/side.svg",
  2788. extra: 5 / 4
  2789. }
  2790. },
  2791. },
  2792. [
  2793. {
  2794. name: "Normal",
  2795. height: math.unit(8, "meters"),
  2796. default: true
  2797. },
  2798. ]
  2799. )
  2800. };
  2801. characterMakers["Kieran"] = () => {
  2802. return makeCharacter(
  2803. "Kieran",
  2804. "Kieran",
  2805. {
  2806. front: {
  2807. height: math.unit(5.5, "feet"),
  2808. weight: math.unit(400, "lbs"),
  2809. name: "Front",
  2810. image: {
  2811. source: "./media/characters/kieran/front.svg",
  2812. extra: 1.05
  2813. }
  2814. },
  2815. side: {
  2816. height: math.unit(5.5, "feet"),
  2817. weight: math.unit(400, "lbs"),
  2818. name: "Side",
  2819. image: {
  2820. source: "./media/characters/kieran/side.svg",
  2821. extra: 950 / 850
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Normal",
  2828. height: math.unit(5.5, "feet"),
  2829. default: true
  2830. },
  2831. ]
  2832. )
  2833. };
  2834. characterMakers["Sanya"] = () => {
  2835. return makeCharacter(
  2836. "Sanya",
  2837. "BanterGhost",
  2838. {
  2839. side: {
  2840. height: math.unit(2, "meters"),
  2841. weight: math.unit(70, "kg"),
  2842. name: "Side",
  2843. image: {
  2844. source: "./media/characters/sanya/side.svg",
  2845. bottom: 0.02,
  2846. extra: 1.02
  2847. }
  2848. },
  2849. },
  2850. [
  2851. {
  2852. name: "Small",
  2853. height: math.unit(2, "meters")
  2854. },
  2855. {
  2856. name: "Normal",
  2857. height: math.unit(3, "meters")
  2858. },
  2859. {
  2860. name: "Macro",
  2861. height: math.unit(16, "meters"),
  2862. default: true
  2863. },
  2864. ]
  2865. )
  2866. };
  2867. characterMakers["Miranda"] = () => {
  2868. return makeCharacter(
  2869. "Miranda",
  2870. "MirandaArqayla",
  2871. {
  2872. side: {
  2873. height: math.unit(2, "meters"),
  2874. weight: math.unit(120, "kg"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/miranda/front.svg",
  2878. extra: 10.6 / 10
  2879. }
  2880. },
  2881. },
  2882. [
  2883. {
  2884. name: "Normal",
  2885. height: math.unit(10, "feet"),
  2886. default: true
  2887. }
  2888. ]
  2889. )
  2890. };
  2891. characterMakers["James"] = () => {
  2892. return makeCharacter(
  2893. "James",
  2894. "MirandaArqayla",
  2895. {
  2896. side: {
  2897. height: math.unit(2, "meters"),
  2898. weight: math.unit(100, "kg"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/james/front.svg",
  2902. extra: 10 / 8.5
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(8.5, "feet"),
  2910. default: true
  2911. }
  2912. ]
  2913. )
  2914. };
  2915. characterMakers["Heather"] = () => {
  2916. return makeCharacter(
  2917. "Heather",
  2918. "MirandaArqayla",
  2919. {
  2920. side: {
  2921. height: math.unit(9.5, "feet"),
  2922. weight: math.unit(2500, "lbs"),
  2923. name: "Side",
  2924. image: {
  2925. source: "./media/characters/heather/side.svg"
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(9.5, "feet"),
  2933. default: true
  2934. }
  2935. ]
  2936. )
  2937. };
  2938. characterMakers["Lukas"] = () => {
  2939. return makeCharacter(
  2940. "Lukas",
  2941. "MirandaArqayla",
  2942. {
  2943. side: {
  2944. height: math.unit(6.5, "feet"),
  2945. weight: math.unit(400, "lbs"),
  2946. name: "Side",
  2947. image: {
  2948. source: "./media/characters/lukas/side.svg",
  2949. extra: 7.25 / 6.5
  2950. }
  2951. },
  2952. },
  2953. [
  2954. {
  2955. name: "Normal",
  2956. height: math.unit(6.5, "feet"),
  2957. default: true
  2958. }
  2959. ]
  2960. )
  2961. };
  2962. characterMakers["Louise"] = () => {
  2963. return makeCharacter(
  2964. "Louise",
  2965. "MirandaArqayla",
  2966. {
  2967. side: {
  2968. height: math.unit(5, "feet"),
  2969. weight: math.unit(3000, "lbs"),
  2970. name: "Side",
  2971. image: {
  2972. source: "./media/characters/louise/side.svg"
  2973. }
  2974. },
  2975. },
  2976. [
  2977. {
  2978. name: "Normal",
  2979. height: math.unit(5, "feet"),
  2980. default: true
  2981. }
  2982. ]
  2983. )
  2984. };
  2985. characterMakers["Ramona"] = () => {
  2986. return makeCharacter(
  2987. "Ramona",
  2988. "ZakuraTech",
  2989. {
  2990. side: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(150, "lbs"),
  2993. name: "Side",
  2994. image: {
  2995. source: "./media/characters/ramona/side.svg"
  2996. }
  2997. },
  2998. },
  2999. [
  3000. {
  3001. name: "Normal",
  3002. height: math.unit(5.3, "meters"),
  3003. default: true
  3004. },
  3005. {
  3006. name: "Macro",
  3007. height: math.unit(20, "stories")
  3008. },
  3009. {
  3010. name: "Macro+",
  3011. height: math.unit(50, "stories")
  3012. },
  3013. ]
  3014. )
  3015. };
  3016. characterMakers["Deerpuff"] = () => {
  3017. return makeCharacter(
  3018. "Deerpuff",
  3019. "Deerpuff",
  3020. {
  3021. standing: {
  3022. height: math.unit(5.75, "feet"),
  3023. weight: math.unit(160, "lbs"),
  3024. name: "Standing",
  3025. image: {
  3026. source: "./media/characters/deerpuff/standing.svg",
  3027. extra: 682 / 624
  3028. }
  3029. },
  3030. sitting: {
  3031. height: math.unit(5.75 / 1.79, "feet"),
  3032. weight: math.unit(160, "lbs"),
  3033. name: "Sitting",
  3034. image: {
  3035. source: "./media/characters/deerpuff/sitting.svg",
  3036. bottom: 44 / 400,
  3037. extra: 1
  3038. }
  3039. },
  3040. taurLaying: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(400, "lbs"),
  3043. name: "Taur (Laying)",
  3044. image: {
  3045. source: "./media/characters/deerpuff/taur-laying.svg"
  3046. }
  3047. },
  3048. },
  3049. [
  3050. {
  3051. name: "Puffball",
  3052. height: math.unit(6, "inches")
  3053. },
  3054. {
  3055. name: "Normalpuff",
  3056. height: math.unit(5.75, "feet")
  3057. },
  3058. {
  3059. name: "Macropuff",
  3060. height: math.unit(1500, "feet"),
  3061. default: true
  3062. },
  3063. {
  3064. name: "Megapuff",
  3065. height: math.unit(500, "miles")
  3066. },
  3067. {
  3068. name: "Gigapuff",
  3069. height: math.unit(250000, "miles")
  3070. },
  3071. {
  3072. name: "Omegapuff",
  3073. height: math.unit(1000, "lightyears")
  3074. },
  3075. ]
  3076. )
  3077. };
  3078. characterMakers["Vivian"] = () => {
  3079. return makeCharacter(
  3080. "Vivian",
  3081. "Fauxlacine",
  3082. {
  3083. stomping: {
  3084. height: math.unit(6, "feet"),
  3085. weight: math.unit(170, "lbs"),
  3086. name: "Stomping",
  3087. image: {
  3088. source: "./media/characters/vivian/stomping.svg"
  3089. }
  3090. },
  3091. sitting: {
  3092. height: math.unit(6 / 1.75, "feet"),
  3093. weight: math.unit(170, "lbs"),
  3094. name: "Sitting",
  3095. image: {
  3096. source: "./media/characters/vivian/sitting.svg",
  3097. bottom: 1 / 6.4,
  3098. extra: 1,
  3099. }
  3100. },
  3101. },
  3102. [
  3103. {
  3104. name: "Normal",
  3105. height: math.unit(7, "feet"),
  3106. default: true
  3107. },
  3108. {
  3109. name: "Macro",
  3110. height: math.unit(10, "stories")
  3111. },
  3112. {
  3113. name: "Macro+",
  3114. height: math.unit(30, "stories")
  3115. },
  3116. {
  3117. name: "Megamacro",
  3118. height: math.unit(10, "miles")
  3119. },
  3120. {
  3121. name: "Megamacro+",
  3122. height: math.unit(2750000, "meters")
  3123. },
  3124. ]
  3125. )
  3126. };
  3127. characterMakers["Prince"] = () => {
  3128. return makeCharacter(
  3129. "Prince",
  3130. "Kurrikage",
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(160, "lbs"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/prince/front.svg",
  3138. extra: 3400/3000
  3139. }
  3140. },
  3141. jumping: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(160, "lbs"),
  3144. name: "Jumping",
  3145. image: {
  3146. source: "./media/characters/prince/jump.svg",
  3147. extra: 2555/2134
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(7.75, "feet"),
  3155. default: true
  3156. }
  3157. ]
  3158. )
  3159. };
  3160. characterMakers["Psymon"] = () => {
  3161. return makeCharacter(
  3162. "Psymon",
  3163. "Kurrikage",
  3164. {
  3165. standing: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(300, "lbs"),
  3168. name: "Standing",
  3169. image: {
  3170. source: "./media/characters/psymon/standing.svg",
  3171. extra: 1888/1810
  3172. }
  3173. },
  3174. slithering: {
  3175. height: math.unit(6, "feet"),
  3176. weight: math.unit(300, "lbs"),
  3177. name: "Slithering",
  3178. image: {
  3179. source: "./media/characters/psymon/slithering.svg",
  3180. extra: 1330/1224
  3181. }
  3182. },
  3183. slitheringAlt: {
  3184. height: math.unit(6, "feet"),
  3185. weight: math.unit(300, "lbs"),
  3186. name: "Slithering (Alt)",
  3187. image: {
  3188. source: "./media/characters/psymon/slithering-alt.svg",
  3189. extra: 1330/1224
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(11.25, "feet"),
  3197. default: true
  3198. }
  3199. ]
  3200. )
  3201. };
  3202. characterMakers["Daimos"] = () => {
  3203. return makeCharacter(
  3204. "Daimos",
  3205. "Kurrikage",
  3206. {
  3207. front: {
  3208. height: math.unit(6, "feet"),
  3209. weight: math.unit(180, "lbs"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/daimos/front.svg",
  3213. extra: 4160/3897
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Normal",
  3220. height: math.unit(8, "feet"),
  3221. default: true
  3222. }
  3223. ]
  3224. )
  3225. };
  3226. characterMakers["Blake"] = () => {
  3227. return makeCharacter(
  3228. "Blake",
  3229. "Kurrikage",
  3230. {
  3231. side: {
  3232. height: math.unit(6, "feet"),
  3233. weight: math.unit(180, "lbs"),
  3234. name: "Side",
  3235. image: {
  3236. source: "./media/characters/blake/side.svg",
  3237. extra: 1212/1120 ,
  3238. bottom: 0.05
  3239. }
  3240. },
  3241. crouched: {
  3242. height: math.unit(6*0.57, "feet"),
  3243. weight: math.unit(180, "lbs"),
  3244. name: "Crouched",
  3245. image: {
  3246. source: "./media/characters/blake/crouched.svg",
  3247. extra: 840/587 ,
  3248. bottom: 0.04
  3249. }
  3250. },
  3251. bent: {
  3252. height: math.unit(6*0.75, "feet"),
  3253. weight: math.unit(180, "lbs"),
  3254. name: "Bent",
  3255. image: {
  3256. source: "./media/characters/blake/bent.svg",
  3257. extra: 592/544 ,
  3258. bottom: 0.035
  3259. }
  3260. },
  3261. },
  3262. [
  3263. {
  3264. name: "Normal",
  3265. height: math.unit(8 + 1/6, "feet"),
  3266. default: true
  3267. }
  3268. ]
  3269. )
  3270. };
  3271. characterMakers["Guisetto"] = () => {
  3272. return makeCharacter(
  3273. "Guisetto",
  3274. "Kurrikage",
  3275. {
  3276. front: {
  3277. height: math.unit(6, "feet"),
  3278. weight: math.unit(180, "lbs"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/guisetto/front.svg",
  3282. extra: 856/817
  3283. }
  3284. },
  3285. airborne: {
  3286. height: math.unit(6, "feet"),
  3287. weight: math.unit(180, "lbs"),
  3288. name: "Airborne",
  3289. image: {
  3290. source: "./media/characters/guisetto/airborne.svg",
  3291. extra: 584/525
  3292. }
  3293. },
  3294. },
  3295. [
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(10 + 11/12, "feet"),
  3299. default: true
  3300. }
  3301. ]
  3302. )
  3303. };
  3304. characterMakers["Luxor"] = () => {
  3305. return makeCharacter(
  3306. "Luxor",
  3307. "Kurrikage",
  3308. {
  3309. front: {
  3310. height: math.unit(6, "feet"),
  3311. weight: math.unit(180, "lbs"),
  3312. name: "Front",
  3313. image: {
  3314. source: "./media/characters/luxor/front.svg",
  3315. extra: 2940/2152
  3316. }
  3317. },
  3318. back: {
  3319. height: math.unit(6, "feet"),
  3320. weight: math.unit(180, "lbs"),
  3321. name: "Back",
  3322. image: {
  3323. source: "./media/characters/luxor/back.svg",
  3324. extra: 1083/960
  3325. }
  3326. },
  3327. },
  3328. [
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(5 + 5/6, "feet"),
  3332. default: true
  3333. },
  3334. {
  3335. name: "Lamp",
  3336. height: math.unit(50, "feet")
  3337. },
  3338. {
  3339. name: "Lämp",
  3340. height: math.unit(300, "feet")
  3341. },
  3342. {
  3343. name: "The sun is a lamp",
  3344. height: math.unit(250000, "miles")
  3345. },
  3346. ]
  3347. )
  3348. };
  3349. characterMakers["Huoyan"] = () => {
  3350. return makeCharacter(
  3351. "Huoyan",
  3352. "Kurrikage",
  3353. {
  3354. front: {
  3355. height: math.unit(6, "feet"),
  3356. weight: math.unit(50, "lbs"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/huoyan/front.svg"
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(6, "feet"),
  3364. weight: math.unit(180, "lbs"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/huoyan/side.svg"
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(65, "feet"),
  3375. default: true
  3376. }
  3377. ]
  3378. )
  3379. };
  3380. characterMakers["Tails"] = () => {
  3381. return makeCharacter(
  3382. "Tails",
  3383. "Rainier",
  3384. {
  3385. front: {
  3386. height: math.unit(5 + 3/4, "feet"),
  3387. weight: math.unit(120, "lbs"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/tails/front.svg"
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5 + 3/4, "feet"),
  3398. default: true
  3399. }
  3400. ]
  3401. )
  3402. };
  3403. characterMakers["Rainy"] = () => {
  3404. return makeCharacter(
  3405. "Rainy",
  3406. "Rainier",
  3407. {
  3408. front: {
  3409. height: math.unit(4, "feet"),
  3410. weight: math.unit(50, "lbs"),
  3411. name: "Front",
  3412. image: {
  3413. source: "./media/characters/rainy/front.svg"
  3414. }
  3415. }
  3416. },
  3417. [
  3418. {
  3419. name: "Macro",
  3420. height: math.unit(800, "feet"),
  3421. default: true
  3422. }
  3423. ]
  3424. )
  3425. };
  3426. characterMakers["Rainier"] = () => {
  3427. return makeCharacter(
  3428. "Rainier",
  3429. "Rainier",
  3430. {
  3431. front: {
  3432. height: math.unit(6, "feet"),
  3433. weight: math.unit(150, "lbs"),
  3434. name: "Front",
  3435. image: {
  3436. source: "./media/characters/rainier/front.svg"
  3437. }
  3438. }
  3439. },
  3440. [
  3441. {
  3442. name: "Micro",
  3443. height: math.unit(2, "mm"),
  3444. default: true
  3445. }
  3446. ]
  3447. )
  3448. };
  3449. characterMakers["Andy"] = () => {
  3450. return makeCharacter(
  3451. "Andy",
  3452. "drewbermeister",
  3453. {
  3454. front: {
  3455. height: math.unit(6, "feet"),
  3456. weight: math.unit(180, "lbs"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/andy/front.svg"
  3460. }
  3461. }
  3462. },
  3463. [
  3464. {
  3465. name: "Normal",
  3466. height: math.unit(8, "feet"),
  3467. default: true
  3468. },
  3469. {
  3470. name: "Macro",
  3471. height: math.unit(1000, "feet")
  3472. },
  3473. {
  3474. name: "Megamacro",
  3475. height: math.unit(5, "miles")
  3476. },
  3477. {
  3478. name: "Gigamacro",
  3479. height: math.unit(5000, "miles")
  3480. },
  3481. ]
  3482. )
  3483. };
  3484. characterMakers["Cimmaron"] = () => {
  3485. return makeCharacter(
  3486. "Cimmaron",
  3487. "Cimmaron",
  3488. {
  3489. frontClothed: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(210, "lbs"),
  3492. name: "Front (Clothed)",
  3493. image: {
  3494. source: "./media/characters/cimmaron/front-clothed.svg",
  3495. extra: 701/676 ,
  3496. bottom: 0.046
  3497. }
  3498. },
  3499. backClothed: {
  3500. height: math.unit(6, "feet"),
  3501. weight: math.unit(210, "lbs"),
  3502. name: "Back (Clothed)",
  3503. image: {
  3504. source: "./media/characters/cimmaron/back-clothed.svg",
  3505. extra: 701/676 ,
  3506. bottom: 0.046
  3507. }
  3508. },
  3509. frontNude: {
  3510. height: math.unit(6, "feet"),
  3511. weight: math.unit(210, "lbs"),
  3512. name: "Front (Nude)",
  3513. image: {
  3514. source: "./media/characters/cimmaron/front-nude.svg",
  3515. extra: 701/676 ,
  3516. bottom: 0.046
  3517. }
  3518. },
  3519. backNude: {
  3520. height: math.unit(6, "feet"),
  3521. weight: math.unit(210, "lbs"),
  3522. name: "Back (Nude)",
  3523. image: {
  3524. source: "./media/characters/cimmaron/back-nude.svg",
  3525. extra: 701/676 ,
  3526. bottom: 0.046
  3527. }
  3528. }
  3529. },
  3530. [
  3531. {
  3532. name: "Normal",
  3533. height: math.unit(6, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro Mayor",
  3538. height: math.unit(350, "meters")
  3539. },
  3540. ]
  3541. )
  3542. };
  3543. characterMakers["Akari Kaen"] = () => {
  3544. return makeCharacter(
  3545. "Akari Kaen",
  3546. "Akari",
  3547. {
  3548. front: {
  3549. height: math.unit(6, "feet"),
  3550. weight: math.unit(200, "lbs"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/akari/front.svg",
  3554. extra: 962/901,
  3555. bottom: 0.04
  3556. }
  3557. }
  3558. },
  3559. [
  3560. {
  3561. name: "Micro",
  3562. height: math.unit(5, "inches"),
  3563. default: true
  3564. },
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(7, "feet")
  3568. },
  3569. ]
  3570. )
  3571. };
  3572. characterMakers["Cynosura"] = () => {
  3573. return makeCharacter(
  3574. "Cynosura",
  3575. "Cynosura",
  3576. {
  3577. front: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(140, "lbs"),
  3580. name: "Front",
  3581. image: {
  3582. source: "./media/characters/cynosura/front.svg",
  3583. extra: 896/847
  3584. }
  3585. },
  3586. back: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(140, "lbs"),
  3589. name: "Back",
  3590. image: {
  3591. source: "./media/characters/cynosura/back.svg",
  3592. extra: 1365/1250
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Micro",
  3599. height: math.unit(4, "inches")
  3600. },
  3601. {
  3602. name: "Normal",
  3603. height: math.unit(5.75, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Tall",
  3608. height: math.unit(10, "feet")
  3609. },
  3610. {
  3611. name: "Big",
  3612. height: math.unit(20, "feet")
  3613. },
  3614. {
  3615. name: "Macro",
  3616. height: math.unit(50, "feet")
  3617. },
  3618. ]
  3619. )
  3620. };
  3621. characterMakers["Gin"] = () => {
  3622. return makeCharacter(
  3623. "Gin",
  3624. "Ozzie_gt",
  3625. {
  3626. front: {
  3627. height: math.unit(6, "feet"),
  3628. weight: math.unit(170, "lbs"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/gin/front.svg"
  3632. }
  3633. },
  3634. foot: {
  3635. height: math.unit(6/4.25, "feet"),
  3636. name: "Foot",
  3637. image: {
  3638. source: "./media/characters/gin/foot.svg"
  3639. }
  3640. },
  3641. sole: {
  3642. height: math.unit(6/4.40, "feet"),
  3643. name: "Sole",
  3644. image: {
  3645. source: "./media/characters/gin/sole.svg"
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(9 + 4/12, "feet")
  3653. },
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(1500, "feet")
  3657. },
  3658. {
  3659. name: "Megamacro",
  3660. height: math.unit(200, "miles"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Gigamacro",
  3665. height: math.unit(500, "megameters")
  3666. },
  3667. {
  3668. name: "Teramacro",
  3669. height: math.unit(15, "lightyears")
  3670. }
  3671. ]
  3672. )
  3673. };
  3674. characterMakers["Guy"] = () => {
  3675. return makeCharacter(
  3676. "Guy",
  3677. "Whatastandupguy",
  3678. {
  3679. front: {
  3680. height: math.unit(6 + 1/6, "feet"),
  3681. weight: math.unit(178, "lbs"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/guy/front.svg"
  3685. }
  3686. }
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(6 + 1/6, "feet"),
  3692. default: true
  3693. },
  3694. {
  3695. name: "Large",
  3696. height: math.unit(25 + 7/12, "feet")
  3697. },
  3698. {
  3699. name: "Macro",
  3700. height: math.unit(60 + 9/12, "feet")
  3701. },
  3702. {
  3703. name: "Macro+",
  3704. height: math.unit(246, "feet")
  3705. },
  3706. {
  3707. name: "Macro++",
  3708. height: math.unit(878, "feet")
  3709. }
  3710. ]
  3711. )
  3712. };
  3713. characterMakers["Tiberius"] = () => {
  3714. return makeCharacter(
  3715. "Tiberius",
  3716. "movler",
  3717. {
  3718. front: {
  3719. height: math.unit(9, "feet"),
  3720. weight: math.unit(800, "lbs"),
  3721. name: "Front",
  3722. image: {
  3723. source: "./media/characters/tiberius/front.svg",
  3724. extra: 2295/2071
  3725. }
  3726. },
  3727. back: {
  3728. height: math.unit(9, "feet"),
  3729. weight: math.unit(800, "lbs"),
  3730. name: "Back",
  3731. image: {
  3732. source: "./media/characters/tiberius/back.svg",
  3733. extra: 2373/2160
  3734. }
  3735. },
  3736. },
  3737. [
  3738. {
  3739. name: "Normal",
  3740. height: math.unit(9, "feet"),
  3741. default: true
  3742. }
  3743. ]
  3744. )
  3745. };
  3746. characterMakers["Surgo"] = () => {
  3747. return makeCharacter(
  3748. "Surgo",
  3749. "movler",
  3750. {
  3751. front: {
  3752. height: math.unit(6, "feet"),
  3753. weight: math.unit(600, "lbs"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/surgo/front.svg",
  3757. extra: 3591/2227
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(6, "feet"),
  3762. weight: math.unit(600, "lbs"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/surgo/back.svg",
  3766. extra: 3557/2228
  3767. }
  3768. },
  3769. laying: {
  3770. height: math.unit(6 * 0.85, "feet"),
  3771. weight: math.unit(600, "lbs"),
  3772. name: "Laying",
  3773. image: {
  3774. source: "./media/characters/surgo/laying.svg"
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(6, "feet"),
  3782. default: true
  3783. }
  3784. ]
  3785. )
  3786. };
  3787. characterMakers["Cibus"] = () => {
  3788. return makeCharacter(
  3789. "Cibus",
  3790. "movler",
  3791. {
  3792. side: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(150, "lbs"),
  3795. name: "Side",
  3796. image: {
  3797. source: "./media/characters/cibus/side.svg",
  3798. extra: 800/400
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(6, "feet"),
  3806. default: true
  3807. }
  3808. ]
  3809. )
  3810. };
  3811. characterMakers["Nibbles"] = () => {
  3812. return makeCharacter(
  3813. "Nibbles",
  3814. "movler",
  3815. {
  3816. front: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(240, "lbs"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/nibbles/front.svg"
  3822. }
  3823. },
  3824. side: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(240, "lbs"),
  3827. name: "Side",
  3828. image: {
  3829. source: "./media/characters/nibbles/side.svg"
  3830. }
  3831. },
  3832. },
  3833. [
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(9, "feet"),
  3837. default: true
  3838. }
  3839. ]
  3840. )
  3841. };
  3842. characterMakers["Rikky"] = () => {
  3843. return makeCharacter(
  3844. "Rikky",
  3845. "Quake Yote",
  3846. {
  3847. side: {
  3848. height: math.unit(5 + 1/6, "feet"),
  3849. weight: math.unit(130, "lbs"),
  3850. name: "Side",
  3851. image: {
  3852. source: "./media/characters/rikky/side.svg"
  3853. }
  3854. },
  3855. },
  3856. [
  3857. {
  3858. name: "Normal",
  3859. height: math.unit(5 + 1/6, "feet")
  3860. },
  3861. {
  3862. name: "Macro",
  3863. height: math.unit(152, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Megamacro",
  3868. height: math.unit(7, "miles")
  3869. }
  3870. ]
  3871. )
  3872. };
  3873. characterMakers["Malfressa"] = () => {
  3874. return makeCharacter(
  3875. "Malfressa",
  3876. "Scareye",
  3877. {
  3878. side: {
  3879. height: math.unit(370, "cm"),
  3880. weight: math.unit(350, "lbs"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/malfressa/side.svg"
  3884. }
  3885. },
  3886. walking: {
  3887. height: math.unit(370, "cm"),
  3888. weight: math.unit(350, "lbs"),
  3889. name: "Walking",
  3890. image: {
  3891. source: "./media/characters/malfressa/walking.svg"
  3892. }
  3893. },
  3894. feral: {
  3895. height: math.unit(2500, "cm"),
  3896. weight: math.unit(100000, "lbs"),
  3897. name: "Feral",
  3898. image: {
  3899. source: "./media/characters/malfressa/feral.svg",
  3900. extra: 2108/837 ,
  3901. bottom: 0.02
  3902. }
  3903. },
  3904. },
  3905. [
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(370, "cm")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(300, "meters"),
  3913. default: true
  3914. }
  3915. ]
  3916. )
  3917. };
  3918. characterMakers["Jaro"] = () => {
  3919. return makeCharacter(
  3920. "Jaro",
  3921. "Jaro",
  3922. {
  3923. front: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(60, "kg"),
  3926. name: "Front",
  3927. image: {
  3928. source: "./media/characters/jaro/front.svg"
  3929. }
  3930. },
  3931. back: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(60, "kg"),
  3934. name: "Back",
  3935. image: {
  3936. source: "./media/characters/jaro/back.svg"
  3937. }
  3938. },
  3939. },
  3940. [
  3941. {
  3942. name: "Micro",
  3943. height: math.unit(7, "inches")
  3944. },
  3945. {
  3946. name: "Normal",
  3947. height: math.unit(5.5, "feet"),
  3948. default: true
  3949. },
  3950. {
  3951. name: "Minimacro",
  3952. height: math.unit(20, "feet")
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(200, "meters")
  3957. }
  3958. ]
  3959. )
  3960. };
  3961. characterMakers["Rogue"] = () => {
  3962. return makeCharacter(
  3963. "Rogue",
  3964. "Rogue",
  3965. {
  3966. front: {
  3967. height: math.unit(6, "feet"),
  3968. weight: math.unit(195, "lb"),
  3969. name: "Front",
  3970. image: {
  3971. source: "./media/characters/rogue/front.svg"
  3972. }
  3973. },
  3974. },
  3975. [
  3976. {
  3977. name: "Macro",
  3978. height: math.unit(90, "feet"),
  3979. default: true
  3980. },
  3981. ]
  3982. )
  3983. };
  3984. characterMakers["Piper"] = () => {
  3985. return makeCharacter(
  3986. "Piper",
  3987. "Flyhar",
  3988. {
  3989. front: {
  3990. height: math.unit(5 + 8/12, "feet"),
  3991. weight: math.unit(140, "lb"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/piper/front.svg",
  3995. extra: 3928/3681
  3996. }
  3997. },
  3998. },
  3999. [
  4000. {
  4001. name: "Micro",
  4002. height: math.unit(2, "inches")
  4003. },
  4004. {
  4005. name: "Normal",
  4006. height: math.unit(5 + 8/12, "feet")
  4007. },
  4008. {
  4009. name: "Macro",
  4010. height: math.unit(250, "feet"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Megamacro",
  4015. height: math.unit(7, "miles")
  4016. },
  4017. ]
  4018. )
  4019. };
  4020. characterMakers["Gemini"] = () => {
  4021. return makeCharacter(
  4022. "Gemini",
  4023. "lajay",
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(220, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/gemini/front.svg"
  4031. }
  4032. },
  4033. back: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(220, "lb"),
  4036. name: "Back",
  4037. image: {
  4038. source: "./media/characters/gemini/back.svg"
  4039. }
  4040. },
  4041. kneeling: {
  4042. height: math.unit(6/1.5, "feet"),
  4043. weight: math.unit(220, "lb"),
  4044. name: "Kneeling",
  4045. image: {
  4046. source: "./media/characters/gemini/kneeling.svg",
  4047. bottom: 0.02
  4048. }
  4049. },
  4050. },
  4051. [
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(300, "meters"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Megamacro",
  4059. height: math.unit(6900, "meters")
  4060. },
  4061. ]
  4062. )
  4063. };
  4064. characterMakers["Alicia"] = () => {
  4065. return makeCharacter(
  4066. "Alicia",
  4067. "LittleBig",
  4068. {
  4069. anthro: {
  4070. height: math.unit(2.35, "meters"),
  4071. weight: math.unit(73, "kg"),
  4072. name: "Anthro",
  4073. image: {
  4074. source: "./media/characters/alicia/anthro.svg"
  4075. }
  4076. },
  4077. feral: {
  4078. height: math.unit(1.69, "meters"),
  4079. weight: math.unit(73, "kg"),
  4080. name: "Feral",
  4081. image: {
  4082. source: "./media/characters/alicia/feral.svg"
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Normal",
  4089. height: math.unit(2.35, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(60, "meters"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Megamacro",
  4098. height: math.unit(10000, "kilometers")
  4099. },
  4100. ]
  4101. )
  4102. };
  4103. characterMakers["Archy"] = () => {
  4104. return makeCharacter(
  4105. "Archy",
  4106. "ArchyD",
  4107. {
  4108. front: {
  4109. height: math.unit(7, "feet"),
  4110. weight: math.unit(250, "lbs"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/archy/front.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Micro",
  4120. height: math.unit(1, "inch")
  4121. },
  4122. {
  4123. name: "Shorty",
  4124. height: math.unit(5, "feet")
  4125. },
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(7, "feet")
  4129. },
  4130. {
  4131. name: "Macro",
  4132. height: math.unit(600, "meters"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Megamacro",
  4137. height: math.unit(1, "mile")
  4138. },
  4139. ]
  4140. )
  4141. };
  4142. characterMakers["Berri"] = () => {
  4143. return makeCharacter(
  4144. "Berri",
  4145. "LittleBig",
  4146. {
  4147. front: {
  4148. height: math.unit(1.65, "meters"),
  4149. weight: math.unit(74, "kg"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/berri/front.svg"
  4153. }
  4154. }
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(1.65, "meters")
  4160. },
  4161. {
  4162. name: "Macro",
  4163. height: math.unit(60, "m"),
  4164. default: true
  4165. },
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(9.213, "km")
  4169. },
  4170. {
  4171. name: "Planet Eater",
  4172. height: math.unit(489, "megameters")
  4173. },
  4174. {
  4175. name: "Teramacro",
  4176. height: math.unit(2471635000000, "meters")
  4177. },
  4178. {
  4179. name: "Examacro",
  4180. height: math.unit(8.0624e+26, "meters")
  4181. }
  4182. ]
  4183. )
  4184. };
  4185. characterMakers["Lexi"] = () => {
  4186. return makeCharacter(
  4187. "Lexi",
  4188. "LittleBig",
  4189. {
  4190. front: {
  4191. height: math.unit(1.72, "meters"),
  4192. weight: math.unit(68, "kg"),
  4193. name: "Front",
  4194. image: {
  4195. source: "./media/characters/lexi/front.svg"
  4196. }
  4197. }
  4198. },
  4199. [
  4200. {
  4201. name: "Very Smol",
  4202. height: math.unit(10, "mm")
  4203. },
  4204. {
  4205. name: "Micro",
  4206. height: math.unit(6.8, "cm"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(1.72, "m")
  4212. }
  4213. ]
  4214. )
  4215. };
  4216. characterMakers["Martin"] = () => {
  4217. return makeCharacter(
  4218. "Martin",
  4219. "LittleBig",
  4220. {
  4221. front: {
  4222. height: math.unit(1.69, "meters"),
  4223. weight: math.unit(68, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/martin/front.svg",
  4227. extra: 596/581
  4228. }
  4229. }
  4230. },
  4231. [
  4232. {
  4233. name: "Micro",
  4234. height: math.unit(6.85, "cm"),
  4235. default: true
  4236. },
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(1.69, "m")
  4240. }
  4241. ]
  4242. )
  4243. };
  4244. characterMakers["Juno"] = () => {
  4245. return makeCharacter(
  4246. "Juno",
  4247. "LittleBig",
  4248. {
  4249. front: {
  4250. height: math.unit(1.69, "meters"),
  4251. weight: math.unit(68, "kg"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/juno/front.svg"
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Micro",
  4261. height: math.unit(7, "cm")
  4262. },
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(1.89, "m")
  4266. },
  4267. {
  4268. name: "Macro",
  4269. height: math.unit(353, "meters"),
  4270. default: true
  4271. }
  4272. ]
  4273. )
  4274. };
  4275. characterMakers["Samantha"] = () => {
  4276. return makeCharacter(
  4277. "Samantha",
  4278. "LittleBig",
  4279. {
  4280. front: {
  4281. height: math.unit(1.93, "meters"),
  4282. weight: math.unit(83, "kg"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/samantha/front.svg"
  4286. }
  4287. },
  4288. frontClothed: {
  4289. height: math.unit(1.93, "meters"),
  4290. weight: math.unit(83, "kg"),
  4291. name: "Front (Clothed)",
  4292. image: {
  4293. source: "./media/characters/samantha/front-clothed.svg"
  4294. }
  4295. },
  4296. back: {
  4297. height: math.unit(1.93, "meters"),
  4298. weight: math.unit(83, "kg"),
  4299. name: "Back",
  4300. image: {
  4301. source: "./media/characters/samantha/back.svg"
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(1.93, "m")
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(74, "meters"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Macro+",
  4317. height: math.unit(223, "meters"),
  4318. },
  4319. {
  4320. name: "Megamacro",
  4321. height: math.unit(8381, "meters"),
  4322. },
  4323. {
  4324. name: "Megamacro+",
  4325. height: math.unit(12000, "kilometers")
  4326. },
  4327. ]
  4328. )
  4329. };
  4330. characterMakers["Dr. Clay"] = () => {
  4331. return makeCharacter(
  4332. "Dr. Clay",
  4333. "LittleBig",
  4334. {
  4335. front: {
  4336. height: math.unit(1.92, "meters"),
  4337. weight: math.unit(80, "kg"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/dr-clay/front.svg"
  4341. }
  4342. },
  4343. frontClothed: {
  4344. height: math.unit(1.92, "meters"),
  4345. weight: math.unit(80, "kg"),
  4346. name: "Front (Clothed)",
  4347. image: {
  4348. source: "./media/characters/dr-clay/front-clothed.svg"
  4349. }
  4350. }
  4351. },
  4352. [
  4353. {
  4354. name: "Normal",
  4355. height: math.unit(1.92, "m")
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(214, "meters"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Macro+",
  4364. height: math.unit(12.237, "meters"),
  4365. },
  4366. {
  4367. name: "Megamacro",
  4368. height: math.unit(557, "megameters"),
  4369. },
  4370. {
  4371. name: "Unimaginable",
  4372. height: math.unit(120e9, "lightyears")
  4373. },
  4374. ]
  4375. )
  4376. };
  4377. characterMakers["Wyvrn Ripsnarl"] = () => {
  4378. return makeCharacter(
  4379. "Wyvrn Ripsnarl",
  4380. "LoboRaptorLo",
  4381. {
  4382. front: {
  4383. height: math.unit(2, "meters"),
  4384. weight: math.unit(80, "kg"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Teramacro",
  4394. height: math.unit(500000, "lightyears"),
  4395. default: true
  4396. },
  4397. ]
  4398. )
  4399. };
  4400. characterMakers["Vemus"] = () => {
  4401. return makeCharacter(
  4402. "Vemus",
  4403. "Vemus",
  4404. {
  4405. front: {
  4406. height: math.unit(2, "meters"),
  4407. weight: math.unit(150, "kg"),
  4408. name: "Front",
  4409. image: {
  4410. source: "./media/characters/vemus/front.svg",
  4411. extra: 2384/2084
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Normal",
  4418. height: math.unit(3, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Lorg",
  4423. height: math.unit(7, "meters")
  4424. },
  4425. {
  4426. name: "More Lorg",
  4427. height: math.unit(250, "meters")
  4428. },
  4429. ]
  4430. )
  4431. };
  4432. characterMakers["Beherit"] = () => {
  4433. return makeCharacter(
  4434. "Beherit",
  4435. "Beherit",
  4436. {
  4437. front: {
  4438. height: math.unit(2, "meters"),
  4439. weight: math.unit(70, "kg"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/beherit/front.svg",
  4443. extra: 1408/1242
  4444. }
  4445. }
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(6, "feet")
  4451. },
  4452. {
  4453. name: "Lorg",
  4454. height: math.unit(25, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Lorger",
  4459. height: math.unit(75, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(200, "meters")
  4464. },
  4465. ]
  4466. )
  4467. };
  4468. characterMakers["Everett"] = () => {
  4469. return makeCharacter(
  4470. "Everett",
  4471. "Beherit",
  4472. {
  4473. front: {
  4474. height: math.unit(2, "meters"),
  4475. weight: math.unit(150, "kg"),
  4476. name: "Front",
  4477. image: {
  4478. source: "./media/characters/everett/front.svg",
  4479. extra: 2038/1737 ,
  4480. bottom: 0.03
  4481. }
  4482. },
  4483. paw: {
  4484. height: math.unit(2/3.6, "meters"),
  4485. name: "Paw",
  4486. image: {
  4487. source: "./media/characters/everett/paw.svg"
  4488. }
  4489. },
  4490. },
  4491. [
  4492. {
  4493. name: "Normal",
  4494. height: math.unit(15, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Lorg",
  4499. height: math.unit(70, "feet"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Lorger",
  4504. height: math.unit(250, "feet")
  4505. },
  4506. {
  4507. name: "Macro",
  4508. height: math.unit(500, "meters")
  4509. },
  4510. ]
  4511. )
  4512. };
  4513. characterMakers["Rose Lion"] = () => {
  4514. return makeCharacter(
  4515. "Rose Lion",
  4516. "Enormouse",
  4517. {
  4518. front: {
  4519. height: math.unit(2, "meters"),
  4520. weight: math.unit(86, "kg"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/rose-lion/front.svg"
  4524. }
  4525. },
  4526. bent: {
  4527. height: math.unit(2/1.4288, "meters"),
  4528. weight: math.unit(86, "kg"),
  4529. name: "Bent",
  4530. image: {
  4531. source: "./media/characters/rose-lion/bent.svg"
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Mini-Micro",
  4538. height: math.unit(1, "cm")
  4539. },
  4540. {
  4541. name: "Micro",
  4542. height: math.unit(3.5, "inches"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(6 + 1/6, "feet")
  4548. },
  4549. {
  4550. name: "Mini-Macro",
  4551. height: math.unit(9 + 10/12, "feet")
  4552. },
  4553. ]
  4554. )
  4555. };
  4556. characterMakers["Regal"] = () => {
  4557. return makeCharacter(
  4558. "Regal",
  4559. "Regal Drennen",
  4560. {
  4561. front: {
  4562. height: math.unit(2, "meters"),
  4563. weight: math.unit(350, "lbs"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/regal/front.svg"
  4567. }
  4568. },
  4569. back: {
  4570. height: math.unit(2, "meters"),
  4571. weight: math.unit(350, "lbs"),
  4572. name: "Back",
  4573. image: {
  4574. source: "./media/characters/regal/back.svg"
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "Macro",
  4581. height: math.unit(350, "feet"),
  4582. default: true
  4583. }
  4584. ]
  4585. )
  4586. };
  4587. characterMakers["Opal"] = () => {
  4588. return makeCharacter(
  4589. "Opal",
  4590. "Enormouse",
  4591. {
  4592. front: {
  4593. height: math.unit(4 + 11/12, "feet"),
  4594. weight: math.unit(100, "lbs"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/opal/front.svg"
  4598. }
  4599. },
  4600. frontAlt: {
  4601. height: math.unit(4 + 11/12, "feet"),
  4602. weight: math.unit(100, "lbs"),
  4603. name: "Front (Alt)",
  4604. image: {
  4605. source: "./media/characters/opal/front-alt.svg"
  4606. }
  4607. },
  4608. },
  4609. [
  4610. {
  4611. name: "Small",
  4612. height: math.unit(4 + 11/12, "feet")
  4613. },
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(20, "feet"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Macro",
  4621. height: math.unit(120, "feet")
  4622. },
  4623. {
  4624. name: "Megamacro",
  4625. height: math.unit(80, "miles")
  4626. },
  4627. {
  4628. name: "True Size",
  4629. height: math.unit(100000, "lightyears")
  4630. },
  4631. ]
  4632. )
  4633. };
  4634. characterMakers["Vector Wuff"] = () => {
  4635. return makeCharacter(
  4636. "Vector Wuff",
  4637. "Vector",
  4638. {
  4639. front: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(200, "lbs"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/vector-wuff/front.svg"
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(2.8, "meters")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(450, "meters"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(15, "kilometers")
  4661. }
  4662. ]
  4663. )
  4664. };
  4665. characterMakers["Dannik"] = () => {
  4666. return makeCharacter(
  4667. "Dannik",
  4668. "LuchaLibreLibro",
  4669. {
  4670. front: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(256, "lbs"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/dannik/front.svg"
  4676. }
  4677. }
  4678. },
  4679. [
  4680. {
  4681. name: "Macro",
  4682. height: math.unit(69.57, "meters"),
  4683. default: true
  4684. },
  4685. ]
  4686. )
  4687. };
  4688. characterMakers["Azura Saharah"] = () => {
  4689. return makeCharacter(
  4690. "Azura Saharah",
  4691. "AzuraSaharah",
  4692. {
  4693. front: {
  4694. height: math.unit(6, "feet"),
  4695. weight: math.unit(120, "lbs"),
  4696. name: "Front",
  4697. image: {
  4698. source: "./media/characters/azura-saharah/front.svg"
  4699. }
  4700. },
  4701. back: {
  4702. height: math.unit(6, "feet"),
  4703. weight: math.unit(120, "lbs"),
  4704. name: "Back",
  4705. image: {
  4706. source: "./media/characters/azura-saharah/back.svg"
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(100, "feet"),
  4714. default: true
  4715. },
  4716. ]
  4717. )
  4718. };
  4719. characterMakers["Kennedy"] = () => {
  4720. return makeCharacter(
  4721. "Kennedy",
  4722. "BossVoss",
  4723. {
  4724. side: {
  4725. height: math.unit(5 + 4/12, "feet"),
  4726. weight: math.unit(163, "lbs"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/kennedy/side.svg"
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Standard Doggo",
  4736. height: math.unit(5 + 4/12, "feet")
  4737. },
  4738. {
  4739. name: "Big Doggo",
  4740. height: math.unit(25 + 3/12, "feet"),
  4741. default: true
  4742. },
  4743. ]
  4744. )
  4745. };
  4746. characterMakers["Odi Lunar"] = () => {
  4747. return makeCharacter(
  4748. "Odi Lunar",
  4749. "OdiLunar",
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(90, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/odi-lunar/front.svg"
  4757. }
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Micro",
  4763. height: math.unit(3, "inches"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(5.5, "feet")
  4769. }
  4770. ]
  4771. )
  4772. };
  4773. characterMakers["Mandake"] = () => {
  4774. return makeCharacter(
  4775. "Mandake",
  4776. "Dialuca01",
  4777. {
  4778. back: {
  4779. height: math.unit(6, "feet"),
  4780. weight: math.unit(220, "lbs"),
  4781. name: "Back",
  4782. image: {
  4783. source: "./media/characters/mandake/back.svg"
  4784. }
  4785. }
  4786. },
  4787. [
  4788. {
  4789. name: "Normal",
  4790. height: math.unit(7, "feet"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(78, "feet")
  4796. },
  4797. {
  4798. name: "Macro+",
  4799. height: math.unit(300, "meters")
  4800. },
  4801. {
  4802. name: "Macro++",
  4803. height: math.unit(2400, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(5167, "meters")
  4808. },
  4809. {
  4810. name: "Gigamacro",
  4811. height: math.unit(41769, "miles")
  4812. },
  4813. ]
  4814. )
  4815. };
  4816. characterMakers["Yozey"] = () => {
  4817. return makeCharacter(
  4818. "Yozey",
  4819. "Yozey",
  4820. {
  4821. front: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(120, "lbs"),
  4824. name: "Front",
  4825. image: {
  4826. source: "./media/characters/yozey/front.svg"
  4827. }
  4828. },
  4829. frontAlt: {
  4830. height: math.unit(6, "feet"),
  4831. weight: math.unit(120, "lbs"),
  4832. name: "Front (Alt)",
  4833. image: {
  4834. source: "./media/characters/yozey/front-alt.svg"
  4835. }
  4836. },
  4837. side: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(120, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/yozey/side.svg"
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Micro",
  4849. height: math.unit(3, "inches"),
  4850. default: true
  4851. },
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(6, "feet")
  4855. }
  4856. ]
  4857. )
  4858. };
  4859. characterMakers["Valeska Voss"] = () => {
  4860. return makeCharacter(
  4861. "Valeska Voss",
  4862. "BossVoss",
  4863. {
  4864. front: {
  4865. height: math.unit(6, "feet"),
  4866. weight: math.unit(103, "lbs"),
  4867. name: "Front",
  4868. image: {
  4869. source: "./media/characters/valeska-voss/front.svg"
  4870. }
  4871. }
  4872. },
  4873. [
  4874. {
  4875. name: "Mini-Sized Sub",
  4876. height: math.unit(3.1, "inches")
  4877. },
  4878. {
  4879. name: "Mid-Sized Sub",
  4880. height: math.unit(6.2, "inches")
  4881. },
  4882. {
  4883. name: "Full-Sized Sub",
  4884. height: math.unit(9.3, "inches")
  4885. },
  4886. {
  4887. name: "Normal",
  4888. height: math.unit(5 + 2/12, "foot"),
  4889. default: true
  4890. },
  4891. ]
  4892. )
  4893. };
  4894. characterMakers["Gene Zeta"] = () => {
  4895. return makeCharacter(
  4896. "Gene Zeta",
  4897. "Xeebes",
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(160, "lbs"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/gene-zeta/front.svg",
  4905. bottom: 0.03,
  4906. extra: 1
  4907. }
  4908. }
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(6.25, "foot"),
  4914. default: true
  4915. },
  4916. ]
  4917. )
  4918. };
  4919. characterMakers["Razinox"] = () => {
  4920. return makeCharacter(
  4921. "Razinox",
  4922. "Razinox",
  4923. {
  4924. front: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(350, "lbs"),
  4927. name: "Front",
  4928. image: {
  4929. source: "./media/characters/razinox/front.svg",
  4930. extra: 1686/1548
  4931. }
  4932. },
  4933. back: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(350, "lbs"),
  4936. name: "Back",
  4937. image: {
  4938. source: "./media/characters/razinox/back.svg",
  4939. extra: 1660/1590
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(10 + 8/12, "foot")
  4947. },
  4948. {
  4949. name: "Minimacro",
  4950. height: math.unit(15, "foot")
  4951. },
  4952. {
  4953. name: "Macro",
  4954. height: math.unit(60, "foot"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Megamacro",
  4959. height: math.unit(5, "miles")
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(6000, "miles")
  4964. },
  4965. ]
  4966. )
  4967. };
  4968. characterMakers["Cobalt"] = () => {
  4969. return makeCharacter(
  4970. "Cobalt",
  4971. "Miateshcha",
  4972. {
  4973. front: {
  4974. height: math.unit(6, "feet"),
  4975. weight: math.unit(150, "lbs"),
  4976. name: "Front",
  4977. image: {
  4978. source: "./media/characters/cobalt/front.svg"
  4979. }
  4980. }
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(8 + 1/12, "foot")
  4986. },
  4987. {
  4988. name: "Macro",
  4989. height: math.unit(111, "foot"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Supracosmic",
  4994. height: math.unit(1e42, "feet")
  4995. },
  4996. ]
  4997. )
  4998. };
  4999. characterMakers["Amanda"] = () => {
  5000. return makeCharacter(
  5001. "Amanda",
  5002. "Amanda",
  5003. {
  5004. front: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(140, "lbs"),
  5007. name: "Front",
  5008. image: {
  5009. source: "./media/characters/amanda/front.svg"
  5010. }
  5011. }
  5012. },
  5013. [
  5014. {
  5015. name: "Micro",
  5016. height: math.unit(5, "inches"),
  5017. default: true
  5018. },
  5019. ]
  5020. )
  5021. };
  5022. characterMakers["Teal"] = () => {
  5023. return makeCharacter(
  5024. "Teal",
  5025. "Teal",
  5026. {
  5027. front: {
  5028. height: math.unit(5.59, "feet"),
  5029. weight: math.unit(250, "lbs"),
  5030. name: "Front",
  5031. image: {
  5032. source: "./media/characters/teal/front.svg"
  5033. }
  5034. },
  5035. frontAlt: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(250, "lbs"),
  5038. name: "Front (Alt)",
  5039. image: {
  5040. source: "./media/characters/teal/front-alt.svg",
  5041. bottom: 0.04,
  5042. extra: 1
  5043. }
  5044. },
  5045. },
  5046. [
  5047. {
  5048. name: "Normal",
  5049. height: math.unit(12, "feet"),
  5050. default: true
  5051. },
  5052. {
  5053. name: "Macro",
  5054. height: math.unit(300, "feet")
  5055. },
  5056. ]
  5057. )
  5058. };
  5059. characterMakers["Ravin Amulet"] = () => {
  5060. return makeCharacter(
  5061. "Ravin Amulet",
  5062. "Ravin Amulet",
  5063. {
  5064. frontCat: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(180, "lbs"),
  5067. name: "Front (Cat)",
  5068. image: {
  5069. source: "./media/characters/ravin-amulet/front-cat.svg"
  5070. }
  5071. },
  5072. frontCatAlt: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Front (Alt, Cat)",
  5076. image: {
  5077. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5078. }
  5079. },
  5080. frontWerewolf: {
  5081. height: math.unit(6*1.2, "feet"),
  5082. weight: math.unit(225, "lbs"),
  5083. name: "Front (Werewolf)",
  5084. image: {
  5085. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5086. }
  5087. },
  5088. backWerewolf: {
  5089. height: math.unit(6*1.2, "feet"),
  5090. weight: math.unit(225, "lbs"),
  5091. name: "Back (Werewolf)",
  5092. image: {
  5093. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5094. }
  5095. },
  5096. },
  5097. [
  5098. {
  5099. name: "Nano",
  5100. height: math.unit(1, "micrometer")
  5101. },
  5102. {
  5103. name: "Micro",
  5104. height: math.unit(1, "inch")
  5105. },
  5106. {
  5107. name: "Normal",
  5108. height: math.unit(6, "feet"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(60, "feet")
  5114. }
  5115. ]
  5116. )
  5117. };
  5118. characterMakers["Fluoresce"] = () => {
  5119. return makeCharacter(
  5120. "Fluoresce",
  5121. "Ravin Amulet",
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(165, "lbs"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/fluoresce/front.svg"
  5129. }
  5130. }
  5131. },
  5132. [
  5133. {
  5134. name: "Micro",
  5135. height: math.unit(6, "cm")
  5136. },
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(5 + 7/12, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(56, "feet")
  5145. },
  5146. {
  5147. name: "Megamacro",
  5148. height: math.unit(1.9, "miles")
  5149. },
  5150. ]
  5151. )
  5152. };
  5153. characterMakers["Aurora"] = () => {
  5154. return makeCharacter(
  5155. "Aurora",
  5156. "Vonadi",
  5157. {
  5158. front: {
  5159. height: math.unit(9 + 6/12, "feet"),
  5160. weight: math.unit(523, "lbs"),
  5161. name: "Side",
  5162. image: {
  5163. source: "./media/characters/aurora/side.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(9 + 6/12, "feet")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(96, "feet"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Macro+",
  5179. height: math.unit(243, "feet")
  5180. },
  5181. ]
  5182. )
  5183. };
  5184. characterMakers["Ranek"] = () => {
  5185. return makeCharacter(
  5186. "Ranek",
  5187. "Ranek",
  5188. {
  5189. front: {
  5190. height: math.unit(194, "cm"),
  5191. weight: math.unit(90, "kg"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/ranek/front.svg"
  5195. }
  5196. },
  5197. side: {
  5198. height: math.unit(194, "cm"),
  5199. weight: math.unit(90, "kg"),
  5200. name: "Side",
  5201. image: {
  5202. source: "./media/characters/ranek/side.svg"
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(194, "cm"),
  5207. weight: math.unit(90, "kg"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/ranek/back.svg"
  5211. }
  5212. },
  5213. feral: {
  5214. height: math.unit(30, "cm"),
  5215. weight: math.unit(1.6, "lbs"),
  5216. name: "Feral",
  5217. image: {
  5218. source: "./media/characters/ranek/feral.svg"
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(194, "cm"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(100, "meters")
  5231. },
  5232. ]
  5233. )
  5234. };
  5235. characterMakers["Andrew Cooper"] = () => {
  5236. return makeCharacter(
  5237. "Andrew Cooper",
  5238. "Vonadi",
  5239. {
  5240. front: {
  5241. height: math.unit(5 + 6/12, "feet"),
  5242. weight: math.unit(153, "lbs"),
  5243. name: "Front",
  5244. image: {
  5245. source: "./media/characters/andrew-cooper/front.svg"
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Nano",
  5252. height: math.unit(1, "mm")
  5253. },
  5254. {
  5255. name: "Micro",
  5256. height: math.unit(2, "inches")
  5257. },
  5258. {
  5259. name: "Normal",
  5260. height: math.unit(5 + 6/12, "feet"),
  5261. default: true
  5262. }
  5263. ]
  5264. )
  5265. };
  5266. characterMakers["Akane Sato"] = () => {
  5267. return makeCharacter(
  5268. "Akane Sato",
  5269. "Vonadi",
  5270. {
  5271. front: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(180, "lbs"),
  5274. name: "Front",
  5275. image: {
  5276. source: "./media/characters/akane-sato/front.svg",
  5277. extra: 1219/1140
  5278. }
  5279. },
  5280. back: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(180, "lbs"),
  5283. name: "Back",
  5284. image: {
  5285. source: "./media/characters/akane-sato/back.svg",
  5286. extra: 1219/1170
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(2.5, "meters")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(250, "meters"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Megamacro",
  5302. height: math.unit(25, "km")
  5303. },
  5304. ]
  5305. )
  5306. };
  5307. characterMakers["Rook"] = () => {
  5308. return makeCharacter(
  5309. "Rook",
  5310. "Rook",
  5311. {
  5312. front: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(65, "kg"),
  5315. name: "Front",
  5316. image: {
  5317. source: "./media/characters/rook/front.svg"
  5318. }
  5319. }
  5320. },
  5321. [
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(8.8, "feet")
  5325. },
  5326. {
  5327. name: "Macro",
  5328. height: math.unit(88, "feet"),
  5329. default: true
  5330. },
  5331. {
  5332. name: "Megamacro",
  5333. height: math.unit(8, "miles")
  5334. },
  5335. ]
  5336. )
  5337. };
  5338. characterMakers["Prodigy"] = () => {
  5339. return makeCharacter(
  5340. "Prodigy",
  5341. "Rook",
  5342. {
  5343. front: {
  5344. height: math.unit(12 + 2/12, "feet"),
  5345. weight: math.unit(808, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/prodigy/front.svg"
  5349. }
  5350. }
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(12 + 2/12, "feet"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(143, "feet")
  5361. },
  5362. {
  5363. name: "Macro+",
  5364. height: math.unit(400, "feet")
  5365. },
  5366. ]
  5367. )
  5368. };
  5369. characterMakers["Daniel"] = () => {
  5370. return makeCharacter(
  5371. "Daniel",
  5372. "Galactor",
  5373. {
  5374. front: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(225, "lbs"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/daniel/front.svg"
  5380. }
  5381. },
  5382. leaning: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(225, "lbs"),
  5385. name: "Leaning",
  5386. image: {
  5387. source: "./media/characters/daniel/leaning.svg"
  5388. }
  5389. },
  5390. },
  5391. [
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(1000, "feet"),
  5395. default: true
  5396. },
  5397. ]
  5398. )
  5399. };
  5400. characterMakers["Chiros"] = () => {
  5401. return makeCharacter(
  5402. "Chiros",
  5403. "Chiropica",
  5404. {
  5405. front: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(88, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/chiros/front.svg",
  5411. extra: 306/226
  5412. }
  5413. },
  5414. side: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(88, "lbs"),
  5417. name: "Side",
  5418. image: {
  5419. source: "./media/characters/chiros/side.svg",
  5420. extra: 306/226
  5421. }
  5422. },
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(6, "cm"),
  5428. default: true
  5429. },
  5430. ]
  5431. )
  5432. };
  5433. characterMakers["Selka"] = () => {
  5434. return makeCharacter(
  5435. "Selka",
  5436. "Xelchew",
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(100, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/selka/front.svg",
  5444. extra: 947/887
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(5, "cm"),
  5452. default: true
  5453. },
  5454. ]
  5455. )
  5456. };
  5457. characterMakers["Verin"] = () => {
  5458. return makeCharacter(
  5459. "Verin",
  5460. "Vonadi",
  5461. {
  5462. front: {
  5463. height: math.unit(8 + 3/12, "feet"),
  5464. weight: math.unit(424, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/verin/front.svg",
  5468. extra: 1845/1550
  5469. }
  5470. },
  5471. frontArmored: {
  5472. height: math.unit(8 + 3/12, "feet"),
  5473. weight: math.unit(424, "lbs"),
  5474. name: "Front (Armored)",
  5475. image: {
  5476. source: "./media/characters/verin/front-armor.svg",
  5477. extra: 1845/1550 ,
  5478. bottom: 0.01
  5479. }
  5480. },
  5481. back: {
  5482. height: math.unit(8 + 3/12, "feet"),
  5483. weight: math.unit(424, "lbs"),
  5484. name: "Back",
  5485. image: {
  5486. source: "./media/characters/verin/back.svg",
  5487. bottom: 0.1,
  5488. extra: 1
  5489. }
  5490. },
  5491. foot: {
  5492. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5493. name: "Foot",
  5494. image: {
  5495. source: "./media/characters/verin/foot.svg"
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(8 + 3/12, "feet")
  5503. },
  5504. {
  5505. name: "Minimacro",
  5506. height: math.unit(21, "feet"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(626, "feet")
  5512. },
  5513. ]
  5514. )
  5515. };
  5516. characterMakers["Sovrim Terraquian"] = () => {
  5517. return makeCharacter(
  5518. "Sovrim Terraquian",
  5519. "Sovrim Terraquian",
  5520. {
  5521. front: {
  5522. height: math.unit(2.718, "meters"),
  5523. weight: math.unit(150, "lbs"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/sovrim-terraquian/front.svg"
  5527. }
  5528. },
  5529. back: {
  5530. height: math.unit(2.718, "meters"),
  5531. weight: math.unit(150, "lbs"),
  5532. name: "Back",
  5533. image: {
  5534. source: "./media/characters/sovrim-terraquian/back.svg"
  5535. }
  5536. }
  5537. },
  5538. [
  5539. {
  5540. name: "Micro",
  5541. height: math.unit(2, "inches")
  5542. },
  5543. {
  5544. name: "Small",
  5545. height: math.unit(1, "meter")
  5546. },
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(Math.E, "meters"),
  5550. default: true
  5551. },
  5552. {
  5553. name: "Macro",
  5554. height: math.unit(20, "meters")
  5555. },
  5556. {
  5557. name: "Macro+",
  5558. height: math.unit(400, "meters")
  5559. },
  5560. ]
  5561. )
  5562. };
  5563. characterMakers["Reece Silvermane"] = () => {
  5564. return makeCharacter(
  5565. "Reece Silvermane",
  5566. "Silverhorsey",
  5567. {
  5568. front: {
  5569. height: math.unit(7, "feet"),
  5570. weight: math.unit(489, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/reece-silvermane/front.svg",
  5574. bottom: 0.02,
  5575. extra: 1
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Macro",
  5582. height: math.unit(1.5, "miles"),
  5583. default: true
  5584. },
  5585. ]
  5586. )
  5587. };
  5588. characterMakers["Kane"] = () => {
  5589. return makeCharacter(
  5590. "Kane",
  5591. "LittleBigX110",
  5592. {
  5593. front: {
  5594. height: math.unit(6, "feet"),
  5595. weight: math.unit(78, "kg"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/kane/front.svg",
  5599. extra: 978/899
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(2.1, "m"),
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(1, "km"),
  5611. default: true
  5612. },
  5613. ]
  5614. )
  5615. };
  5616. characterMakers["Tegon"] = () => {
  5617. return makeCharacter(
  5618. "Tegon",
  5619. "TegonDragon",
  5620. {
  5621. front: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(200, "kg"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/tegon/front.svg",
  5627. bottom: 0.01,
  5628. extra: 1
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Micro",
  5635. height: math.unit(1, "inch")
  5636. },
  5637. {
  5638. name: "Normal",
  5639. height: math.unit(6 + 3/12, "feet"),
  5640. default: true
  5641. },
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(300, "feet")
  5645. },
  5646. {
  5647. name: "Megamacro",
  5648. height: math.unit(69, "miles")
  5649. },
  5650. ]
  5651. )
  5652. };
  5653. characterMakers["Arcturax"] = () => {
  5654. return makeCharacter(
  5655. "Arcturax",
  5656. "Arcturax",
  5657. {
  5658. side: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(2304, "lbs"),
  5661. name: "Side",
  5662. image: {
  5663. source: "./media/characters/arcturax/side.svg",
  5664. extra: 790/376 ,
  5665. bottom: 0.01
  5666. }
  5667. },
  5668. },
  5669. [
  5670. {
  5671. name: "Micro",
  5672. height: math.unit(2, "inch")
  5673. },
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(6, "feet")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(39, "feet"),
  5681. default: true
  5682. },
  5683. {
  5684. name: "Megamacro",
  5685. height: math.unit(7, "miles")
  5686. },
  5687. ]
  5688. )
  5689. };
  5690. characterMakers["Sentri"] = () => {
  5691. return makeCharacter(
  5692. "Sentri",
  5693. "Sentri",
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(50, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/sentri/front.svg",
  5701. extra: 1750/1570 ,
  5702. bottom: 0.025
  5703. }
  5704. },
  5705. frontAlt: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(50, "lbs"),
  5708. name: "Front (Alt)",
  5709. image: {
  5710. source: "./media/characters/sentri/front-alt.svg",
  5711. extra: 1750/1570 ,
  5712. bottom: 0.025
  5713. }
  5714. },
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(15, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(2500, "feet")
  5725. }
  5726. ]
  5727. )
  5728. };
  5729. characterMakers["Corvin"] = () => {
  5730. return makeCharacter(
  5731. "Corvin",
  5732. "Sirffuzzylogik",
  5733. {
  5734. front: {
  5735. height: math.unit(5 + 8/12, "feet"),
  5736. weight: math.unit(130, "lbs"),
  5737. name: "Front",
  5738. image: {
  5739. source: "./media/characters/corvin/front.svg",
  5740. extra: 1803/1629
  5741. }
  5742. },
  5743. frontShirt: {
  5744. height: math.unit(5 + 8/12, "feet"),
  5745. weight: math.unit(130, "lbs"),
  5746. name: "Front (Shirt)",
  5747. image: {
  5748. source: "./media/characters/corvin/front-shirt.svg",
  5749. extra: 1803/1629
  5750. }
  5751. },
  5752. frontPoncho: {
  5753. height: math.unit(5 + 8/12, "feet"),
  5754. weight: math.unit(130, "lbs"),
  5755. name: "Front (Poncho)",
  5756. image: {
  5757. source: "./media/characters/corvin/front-poncho.svg",
  5758. extra: 1803/1629
  5759. }
  5760. },
  5761. side: {
  5762. height: math.unit(5 + 8/12, "feet"),
  5763. weight: math.unit(130, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/corvin/side.svg",
  5767. extra: 1012/945
  5768. }
  5769. },
  5770. back: {
  5771. height: math.unit(5 + 8/12, "feet"),
  5772. weight: math.unit(130, "lbs"),
  5773. name: "Back",
  5774. image: {
  5775. source: "./media/characters/corvin/back.svg",
  5776. extra: 1803/1629
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Micro",
  5783. height: math.unit(3, "inches")
  5784. },
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(5 + 8/12, "feet")
  5788. },
  5789. {
  5790. name: "Macro",
  5791. height: math.unit(300, "feet"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Megamacro",
  5796. height: math.unit(500, "miles")
  5797. }
  5798. ]
  5799. )
  5800. };
  5801. characterMakers["Q"] = () => {
  5802. return makeCharacter(
  5803. "Q",
  5804. "Q Walf",
  5805. {
  5806. front: {
  5807. height: math.unit(6, "feet"),
  5808. weight: math.unit(135, "lbs"),
  5809. name: "Front",
  5810. image: {
  5811. source: "./media/characters/q/front.svg",
  5812. extra: 854/752 ,
  5813. bottom: 0.005
  5814. }
  5815. },
  5816. back: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(130, "lbs"),
  5819. name: "Back",
  5820. image: {
  5821. source: "./media/characters/q/back.svg",
  5822. extra: 854/752
  5823. }
  5824. },
  5825. },
  5826. [
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(90, "feet"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Extra Macro",
  5834. height: math.unit(300, "feet"),
  5835. },
  5836. {
  5837. name: "BIG WALF",
  5838. height: math.unit(750, "feet"),
  5839. },
  5840. ]
  5841. )
  5842. };
  5843. characterMakers["Carley"] = () => {
  5844. return makeCharacter(
  5845. "Carley",
  5846. "QuakeYote",
  5847. {
  5848. front: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(150, "lbs"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/carley/front.svg",
  5854. extra: 3927/3540 ,
  5855. bottom: 0.03
  5856. }
  5857. }
  5858. },
  5859. [
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(6 + 3/12, "feet")
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(185, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Megamacro",
  5871. height: math.unit(8, "miles"),
  5872. },
  5873. ]
  5874. )
  5875. };
  5876. characterMakers["Citrine"] = () => {
  5877. return makeCharacter(
  5878. "Citrine",
  5879. "thunderstrike23",
  5880. {
  5881. front: {
  5882. height: math.unit(3, "feet"),
  5883. weight: math.unit(28, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/citrine/front.svg"
  5887. }
  5888. }
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(3, "feet"),
  5894. default: true
  5895. }
  5896. ]
  5897. )
  5898. };
  5899. characterMakers["Aura Starwind"] = () => {
  5900. return makeCharacter(
  5901. "Aura Starwind",
  5902. "StrikeVixen",
  5903. {
  5904. front: {
  5905. height: math.unit(14, "feet"),
  5906. weight: math.unit(1450, "kg"),
  5907. name: "Front",
  5908. image: {
  5909. source: "./media/characters/aura-starwind/front.svg",
  5910. extra: 1455/1335
  5911. }
  5912. },
  5913. side: {
  5914. height: math.unit(14, "feet"),
  5915. weight: math.unit(1450, "kg"),
  5916. name: "Side",
  5917. image: {
  5918. source: "./media/characters/aura-starwind/side.svg",
  5919. extra: 1654/1497
  5920. }
  5921. },
  5922. taur: {
  5923. height: math.unit(18, "feet"),
  5924. weight: math.unit(5500, "kg"),
  5925. name: "Taur",
  5926. image: {
  5927. source: "./media/characters/aura-starwind/taur.svg",
  5928. extra: 1760/1650
  5929. }
  5930. },
  5931. feral: {
  5932. height: math.unit(46, "feet"),
  5933. weight: math.unit(25000, "kg"),
  5934. name: "Feral",
  5935. image: {
  5936. source: "./media/characters/aura-starwind/feral.svg"
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(14, "feet"),
  5944. default: true
  5945. },
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(50, "meters")
  5949. },
  5950. {
  5951. name: "Megamacro",
  5952. height: math.unit(5000, "meters")
  5953. },
  5954. {
  5955. name: "Gigamacro",
  5956. height: math.unit(100000, "kilometers")
  5957. },
  5958. ]
  5959. )
  5960. };
  5961. characterMakers["Rivet"] = () => {
  5962. return makeCharacter(
  5963. "Rivet",
  5964. "Vonadi",
  5965. {
  5966. front: {
  5967. height: math.unit(2 + 7/12, "feet"),
  5968. weight: math.unit(32, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/rivet/front.svg",
  5972. extra: 1716/1658 ,
  5973. bottom: 0.03
  5974. }
  5975. },
  5976. foot: {
  5977. height: math.unit(0.551, "feet"),
  5978. name: "Rivet's Foot",
  5979. image: {
  5980. source: "./media/characters/rivet/foot.svg"
  5981. },
  5982. rename: true
  5983. }
  5984. },
  5985. [
  5986. {
  5987. name: "Micro",
  5988. height: math.unit(1.5, "inches"),
  5989. },
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(2 + 7/12, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(85, "feet")
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(2.2, "km")
  6002. }
  6003. ]
  6004. )
  6005. };
  6006. characterMakers["Coffee"] = () => {
  6007. return makeCharacter(
  6008. "Coffee",
  6009. "CoffeeDoggo",
  6010. {
  6011. front: {
  6012. height: math.unit(5 + 9/12, "feet"),
  6013. weight: math.unit(150, "lbs"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/coffee/front.svg",
  6017. extra: 3666/3032 ,
  6018. bottom: 0.04
  6019. }
  6020. }
  6021. },
  6022. [
  6023. {
  6024. name: "Micro",
  6025. height: math.unit(2, "inches"),
  6026. },
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(5 + 9/12, "feet"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(800, "feet")
  6035. },
  6036. {
  6037. name: "Megamacro",
  6038. height: math.unit(25, "miles")
  6039. }
  6040. ]
  6041. )
  6042. };
  6043. characterMakers["Chari-Gal"] = () => {
  6044. return makeCharacter(
  6045. "Chari-Gal",
  6046. "Knoem",
  6047. {
  6048. front: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(200, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/chari-gal/front.svg",
  6054. extra: 1568/1385 ,
  6055. bottom: 0.047
  6056. }
  6057. },
  6058. gigantamax: {
  6059. height: math.unit(6*16, "feet"),
  6060. weight: math.unit(200*16*16*16, "lbs"),
  6061. name: "Gigantamax",
  6062. image: {
  6063. source: "./media/characters/chari-gal/gigantamax.svg",
  6064. extra: 1124/888 ,
  6065. bottom: 0.03
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(5 + 7/12, "feet")
  6073. },
  6074. {
  6075. name: "Macro",
  6076. height: math.unit(200, "feet"),
  6077. default: true
  6078. }
  6079. ]
  6080. )
  6081. };
  6082. characterMakers["Nova"] = () => {
  6083. return makeCharacter(
  6084. "Nova",
  6085. "CoffeeDoggo",
  6086. {
  6087. front: {
  6088. height: math.unit(6, "feet"),
  6089. weight: math.unit(150, "lbs"),
  6090. name: "Front",
  6091. image: {
  6092. source: "./media/characters/nova/front.svg",
  6093. extra: 5000/4722 ,
  6094. bottom: 0.02
  6095. }
  6096. }
  6097. },
  6098. [
  6099. {
  6100. name: "Micro-",
  6101. height: math.unit(0.8, "inches")
  6102. },
  6103. {
  6104. name: "Micro",
  6105. height: math.unit(2, "inches"),
  6106. default: true
  6107. },
  6108. ]
  6109. )
  6110. };
  6111. characterMakers["Argent"] = () => {
  6112. return makeCharacter(
  6113. "Argent",
  6114. "ArgentVZ",
  6115. {
  6116. front: {
  6117. height: math.unit(3 + 1/12, "feet"),
  6118. weight: math.unit(21.7, "lbs"),
  6119. name: "Front",
  6120. image: {
  6121. source: "./media/characters/argent/front.svg",
  6122. extra: 1565/1416 ,
  6123. bottom: 0.01
  6124. }
  6125. }
  6126. },
  6127. [
  6128. {
  6129. name: "Micro",
  6130. height: math.unit(2, "inches")
  6131. },
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(3 + 1/12, "feet"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(120, "feet")
  6140. },
  6141. ]
  6142. )
  6143. };
  6144. characterMakers["Mira al-Cul"] = () => {
  6145. return makeCharacter(
  6146. "Mira al-Cul",
  6147. "Mariokartsonicriders",
  6148. {
  6149. lamp: {
  6150. height: math.unit(7 * 1559 / 989, "feet"),
  6151. name: "Magic Lamp",
  6152. image: {
  6153. source: "./media/characters/mira-al-cul/lamp.svg",
  6154. extra: 1617/1559
  6155. }
  6156. },
  6157. front: {
  6158. height: math.unit(7, "feet"),
  6159. name: "Front",
  6160. image: {
  6161. source: "./media/characters/mira-al-cul/front.svg",
  6162. extra: 1044/990
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Heavily Restricted",
  6169. height: math.unit(7 * 1559 / 989, "feet")
  6170. },
  6171. {
  6172. name: "Freshly Freed",
  6173. height: math.unit(50 * 1559 / 989, "feet")
  6174. },
  6175. {
  6176. name: "World Encompassing",
  6177. height: math.unit(10000 * 1559 / 989, "miles")
  6178. },
  6179. {
  6180. name: "Galactic",
  6181. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6182. },
  6183. {
  6184. name: "Palmed Universe",
  6185. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Multiversal Matriarch",
  6190. height: math.unit(8.87e10, "yottameters")
  6191. },
  6192. {
  6193. name: "Void Mother",
  6194. height: math.unit(3.14e110, "yottaparsecs")
  6195. },
  6196. ]
  6197. )
  6198. };
  6199. characterMakers["Kuro-shi Uchū"] = () => {
  6200. return makeCharacter(
  6201. "Kuro-shi Uchū",
  6202. "Dragon Shark",
  6203. {
  6204. front: {
  6205. height: math.unit(17 + 1/12, "feet"),
  6206. weight: math.unit(476.2*5, "lbs"),
  6207. name: "Front",
  6208. image: {
  6209. source: "./media/characters/kuro-shi-uchū/front.svg",
  6210. extra: 2329/1835 ,
  6211. bottom: 0.02
  6212. }
  6213. },
  6214. },
  6215. [
  6216. {
  6217. name: "Micro",
  6218. height: math.unit(2, "inches")
  6219. },
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(12, "meters")
  6223. },
  6224. {
  6225. name: "Planetary",
  6226. height: math.unit(0.00929, "AU"),
  6227. default: true
  6228. },
  6229. {
  6230. name: "Universal",
  6231. height: math.unit(20, "gigaparsecs")
  6232. },
  6233. ]
  6234. )
  6235. };
  6236. characterMakers["Katherine"] = () => {
  6237. return makeCharacter(
  6238. "Katherine",
  6239. "chrisrules123",
  6240. {
  6241. front: {
  6242. height: math.unit(5 + 2/12, "feet"),
  6243. weight: math.unit(120, "lbs"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/katherine/front.svg",
  6247. extra: 2075/1969
  6248. }
  6249. },
  6250. dress: {
  6251. height: math.unit(5 + 2/12, "feet"),
  6252. weight: math.unit(120, "lbs"),
  6253. name: "Dress",
  6254. image: {
  6255. source: "./media/characters/katherine/dress.svg",
  6256. extra: 2258/2064
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Micro",
  6263. height: math.unit(1, "inches"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(5 + 2/12, "feet")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(100, "meters")
  6273. },
  6274. {
  6275. name: "Megamacro",
  6276. height: math.unit(80, "miles")
  6277. },
  6278. ]
  6279. )
  6280. };
  6281. characterMakers["Yevis"] = () => {
  6282. return makeCharacter(
  6283. "Yevis",
  6284. "Mariokartsonicriders",
  6285. {
  6286. front: {
  6287. height: math.unit(7 + 8/12, "feet"),
  6288. weight: math.unit(250, "lbs"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/yevis/front.svg",
  6292. extra: 1938/1755
  6293. }
  6294. }
  6295. },
  6296. [
  6297. {
  6298. name: "Mortal",
  6299. height: math.unit(7 + 8/12, "feet")
  6300. },
  6301. {
  6302. name: "Battle",
  6303. height: math.unit(25 + 11/12, "feet")
  6304. },
  6305. {
  6306. name: "Wrath",
  6307. height: math.unit(1654 + 11/12, "feet")
  6308. },
  6309. {
  6310. name: "Planet Destroyer",
  6311. height: math.unit(12000, "miles")
  6312. },
  6313. {
  6314. name: "Galaxy Conqueror",
  6315. height: math.unit(1.45, "zettameters"),
  6316. default: true
  6317. },
  6318. {
  6319. name: "Universal War",
  6320. height: math.unit(184, "gigaparsecs")
  6321. },
  6322. {
  6323. name: "Eternity War",
  6324. height: math.unit(1.98e55, "yottaparsecs")
  6325. },
  6326. ]
  6327. )
  6328. };
  6329. characterMakers["Xavier"] = () => {
  6330. return makeCharacter(
  6331. "Xavier",
  6332. "zmaster587",
  6333. {
  6334. front: {
  6335. height: math.unit(5 + 8/12, "feet"),
  6336. weight: math.unit(63, "kg"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/xavier/front.svg",
  6340. extra: 944/883
  6341. }
  6342. },
  6343. frontStretch: {
  6344. height: math.unit(5 + 8/12, "feet"),
  6345. weight: math.unit(63, "kg"),
  6346. name: "Stretching",
  6347. image: {
  6348. source: "./media/characters/xavier/front-stretch.svg",
  6349. extra: 962/820
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(5 + 8/12, "feet")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(100, "meters"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "McLargeHuge",
  6365. height: math.unit(10, "miles")
  6366. },
  6367. ]
  6368. )
  6369. };
  6370. characterMakers["Joshii"] = () => {
  6371. return makeCharacter(
  6372. "Joshii",
  6373. "DarkieTehJester",
  6374. {
  6375. front: {
  6376. height: math.unit(5 + 5/12, "feet"),
  6377. weight: math.unit(150, "lb"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/joshii/front.svg"
  6381. }
  6382. },
  6383. foot: {
  6384. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6385. name: "Foot",
  6386. image: {
  6387. source: "./media/characters/joshii/foot.svg"
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Micro",
  6394. height: math.unit(2, "inches")
  6395. },
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(5 + 5/12, "feet"),
  6399. default: true
  6400. },
  6401. {
  6402. name: "Macro",
  6403. height: math.unit(785, "feet")
  6404. },
  6405. {
  6406. name: "Megamacro",
  6407. height: math.unit(24.5, "miles")
  6408. },
  6409. ]
  6410. )
  6411. };
  6412. characterMakers["Goddess Elizabeth"] = () => {
  6413. return makeCharacter(
  6414. "Goddess Elizabeth",
  6415. "DarkieTehJester",
  6416. {
  6417. front: {
  6418. height: math.unit(6, "feet"),
  6419. weight: math.unit(150, "lb"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/goddess-elizabeth/front.svg"
  6423. }
  6424. },
  6425. foot: {
  6426. height: math.unit(6 * 0.25436 / 2, "feet"),
  6427. name: "Foot",
  6428. image: {
  6429. source: "./media/characters/goddess-elizabeth/foot.svg"
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Micro",
  6436. height: math.unit(12, "feet")
  6437. },
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(80, "miles"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(15000, "parsecs")
  6446. },
  6447. ]
  6448. )
  6449. };
  6450. characterMakers["Kara"] = () => {
  6451. return makeCharacter(
  6452. "Kara",
  6453. "Vonadi",
  6454. {
  6455. front: {
  6456. height: math.unit(5 + 9/12, "feet"),
  6457. weight: math.unit(144, "lb"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/kara/front.svg"
  6461. }
  6462. },
  6463. feet: {
  6464. height: math.unit(6/6.765, "feet"),
  6465. name: "Kara's Feet",
  6466. rename: true,
  6467. image: {
  6468. source: "./media/characters/kara/feet.svg"
  6469. }
  6470. },
  6471. },
  6472. [
  6473. {
  6474. name: "Normal",
  6475. height: math.unit(5 + 9/12, "feet")
  6476. },
  6477. {
  6478. name: "Macro",
  6479. height: math.unit(174, "feet"),
  6480. default: true
  6481. },
  6482. ]
  6483. )
  6484. };
  6485. characterMakers["Tyrone"] = () => {
  6486. return makeCharacter(
  6487. "Tyrone",
  6488. "nanakisan",
  6489. {
  6490. front: {
  6491. height: math.unit(18, "feet"),
  6492. weight: math.unit(4050, "lb"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/tyrone/front.svg",
  6496. extra: 2520/2402 ,
  6497. bottom: 0.025
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(18, "feet"),
  6505. default: true
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(300, "feet")
  6510. },
  6511. ]
  6512. )
  6513. };
  6514. characterMakers["Danny"] = () => {
  6515. return makeCharacter(
  6516. "Danny",
  6517. "danny_gryphon",
  6518. {
  6519. front: {
  6520. height: math.unit(7 + 8/12, "feet"),
  6521. weight: math.unit(120, "lb"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/danny/front.svg",
  6525. extra: 1490/1350
  6526. }
  6527. },
  6528. back: {
  6529. height: math.unit(7 + 8/12, "feet"),
  6530. weight: math.unit(120, "lb"),
  6531. name: "Back",
  6532. image: {
  6533. source: "./media/characters/danny/back.svg",
  6534. extra: 1490/1350
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(7 + 8/12, "feet"),
  6542. default: true
  6543. },
  6544. ]
  6545. )
  6546. };
  6547. characterMakers["Mallow"] = () => {
  6548. return makeCharacter(
  6549. "Mallow",
  6550. "Mallowchu",
  6551. {
  6552. front: {
  6553. height: math.unit(3.5, "inches"),
  6554. weight: math.unit(19, "grams"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/mallow/front.svg",
  6558. extra: 471/431
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(3.5, "inches"),
  6563. weight: math.unit(19, "grams"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/mallow/back.svg",
  6567. extra: 471/431
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(3.5, "inches"),
  6575. default: true
  6576. },
  6577. ]
  6578. )
  6579. };
  6580. characterMakers["Starry Aqua"] = () => {
  6581. return makeCharacter(
  6582. "Starry Aqua",
  6583. "StarryAqua",
  6584. {
  6585. front: {
  6586. height: math.unit(9, "feet"),
  6587. weight: math.unit(230, "kg"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/starry-aqua/front.svg"
  6591. }
  6592. },
  6593. back: {
  6594. height: math.unit(9, "feet"),
  6595. weight: math.unit(230, "kg"),
  6596. name: "Back",
  6597. image: {
  6598. source: "./media/characters/starry-aqua/back.svg"
  6599. }
  6600. },
  6601. hand: {
  6602. height: math.unit(9 * 0.1168, "feet"),
  6603. name: "Hand",
  6604. image: {
  6605. source: "./media/characters/starry-aqua/hand.svg"
  6606. }
  6607. },
  6608. foot: {
  6609. height: math.unit(9 * 0.18, "feet"),
  6610. name: "Foot",
  6611. image: {
  6612. source: "./media/characters/starry-aqua/foot.svg"
  6613. }
  6614. }
  6615. },
  6616. [
  6617. {
  6618. name: "Micro",
  6619. height: math.unit(3, "inches")
  6620. },
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(9, "feet")
  6624. },
  6625. {
  6626. name: "Macro",
  6627. height: math.unit(300, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Megamacro",
  6632. height: math.unit(3200, "feet")
  6633. }
  6634. ]
  6635. )
  6636. };
  6637. characterMakers["Luka"] = () => {
  6638. return makeCharacter(
  6639. "Luka",
  6640. "UmbraHusky",
  6641. {
  6642. front: {
  6643. height: math.unit(6, "feet"),
  6644. weight: math.unit(230, "lb"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/luka/front.svg",
  6648. extra: 1,
  6649. bottom: 0.025
  6650. }
  6651. },
  6652. },
  6653. [
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(12 + 8/12, "feet"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Minimacro",
  6661. height: math.unit(20, "feet")
  6662. },
  6663. {
  6664. name: "Macro",
  6665. height: math.unit(250, "feet")
  6666. },
  6667. {
  6668. name: "Megamacro",
  6669. height: math.unit(5, "miles")
  6670. },
  6671. {
  6672. name: "Gigamacro",
  6673. height: math.unit(8000, "miles")
  6674. },
  6675. ]
  6676. )
  6677. };
  6678. characterMakers["Natalie Nightring"] = () => {
  6679. return makeCharacter(
  6680. "Natalie Nightring",
  6681. "NatEdgecomb",
  6682. {
  6683. front: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(150, "lb"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/natalie-nightring/front.svg",
  6689. extra: 1,
  6690. bottom: 0.06
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Uh Oh",
  6697. height: math.unit(0.1, "mm")
  6698. },
  6699. {
  6700. name: "Small",
  6701. height: math.unit(3, "inches")
  6702. },
  6703. {
  6704. name: "Human Scale",
  6705. height: math.unit(6, "feet")
  6706. },
  6707. {
  6708. name: "Librarian",
  6709. height: math.unit(50, "feet"),
  6710. default: true
  6711. },
  6712. {
  6713. name: "Immense",
  6714. height: math.unit(200, "miles")
  6715. },
  6716. ]
  6717. )
  6718. };
  6719. characterMakers["Danni Rosie"] = () => {
  6720. return makeCharacter(
  6721. "Danni Rosie",
  6722. "colwag",
  6723. {
  6724. front: {
  6725. height: math.unit(6, "feet"),
  6726. weight: math.unit(180, "lbs"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/danni-rosie/front.svg",
  6730. extra: 1260/1128 ,
  6731. bottom: 0.022
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Micro",
  6738. height: math.unit(2, "inches"),
  6739. default: true
  6740. },
  6741. ]
  6742. )
  6743. };
  6744. characterMakers["Samantha Kruse"] = () => {
  6745. return makeCharacter(
  6746. "Samantha Kruse",
  6747. "colwag",
  6748. {
  6749. front: {
  6750. height: math.unit(5 + 9/12, "feet"),
  6751. weight: math.unit(220, "lb"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/samantha-kruse/front.svg",
  6755. extra: (985 / 935) ,
  6756. bottom: 0.03
  6757. }
  6758. },
  6759. frontUndressed: {
  6760. height: math.unit(5 + 9/12, "feet"),
  6761. weight: math.unit(220, "lb"),
  6762. name: "Front (Undressed)",
  6763. image: {
  6764. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6765. extra: (973 / 923) ,
  6766. bottom: 0.025
  6767. }
  6768. },
  6769. fat: {
  6770. height: math.unit(5 + 9/12, "feet"),
  6771. weight: math.unit(900, "lb"),
  6772. name: "Front (Fat)",
  6773. image: {
  6774. source: "./media/characters/samantha-kruse/fat.svg",
  6775. extra: 2688/2561
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(5 + 9/12, "feet"),
  6783. default: true
  6784. }
  6785. ]
  6786. )
  6787. };
  6788. characterMakers["Amelia Rosie"] = () => {
  6789. return makeCharacter(
  6790. "Amelia Rosie",
  6791. "colwag",
  6792. {
  6793. back: {
  6794. height: math.unit(5 + 4/12, "feet"),
  6795. weight: math.unit(4963, "lb"),
  6796. name: "Back",
  6797. image: {
  6798. source: "./media/characters/amelia-rosie/back.svg",
  6799. extra: 1113/963 ,
  6800. bottom: 0.01
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Level 0",
  6807. height: math.unit(5 + 4/12, "feet")
  6808. },
  6809. {
  6810. name: "Level 1",
  6811. height: math.unit(164597, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Level 2",
  6816. height: math.unit(956243, "miles")
  6817. },
  6818. {
  6819. name: "Level 3",
  6820. height: math.unit(29421709423, "miles")
  6821. },
  6822. {
  6823. name: "Level 4",
  6824. height: math.unit(154, "lightyears")
  6825. },
  6826. {
  6827. name: "Level 5",
  6828. height: math.unit(4738272, "lightyears")
  6829. },
  6830. {
  6831. name: "Level 6",
  6832. height: math.unit(145787152896, "lightyears")
  6833. },
  6834. ]
  6835. )
  6836. };
  6837. characterMakers["Rook Kitara"] = () => {
  6838. return makeCharacter(
  6839. "Rook Kitara",
  6840. "TailsHigh",
  6841. {
  6842. front: {
  6843. height: math.unit(5 + 11/12, "feet"),
  6844. weight: math.unit(65, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/rook-kitara/front.svg",
  6848. extra: 1347/1274 ,
  6849. bottom: 0.005
  6850. }
  6851. },
  6852. },
  6853. [
  6854. {
  6855. name: "Totally Unfair",
  6856. height: math.unit(1.8, "mm")
  6857. },
  6858. {
  6859. name: "Lap Rookie",
  6860. height: math.unit(1.4, "feet")
  6861. },
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(5 + 11/12, "feet"),
  6865. default: true
  6866. },
  6867. {
  6868. name: "How Did This Happen",
  6869. height: math.unit(80, "miles")
  6870. }
  6871. ]
  6872. )
  6873. };
  6874. characterMakers["Pisces"] = () => {
  6875. return makeCharacter(
  6876. "Pisces",
  6877. "Pisces_Kelp",
  6878. {
  6879. front: {
  6880. height: math.unit(7, "feet"),
  6881. weight: math.unit(300, "lb"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/pisces/front.svg",
  6885. extra: 2255/2115 ,
  6886. bottom: 0.03
  6887. }
  6888. },
  6889. back: {
  6890. height: math.unit(7, "feet"),
  6891. weight: math.unit(300, "lb"),
  6892. name: "Back",
  6893. image: {
  6894. source: "./media/characters/pisces/back.svg",
  6895. extra: 2146/2055 ,
  6896. bottom: 0.04
  6897. }
  6898. },
  6899. },
  6900. [
  6901. {
  6902. name: "Normal",
  6903. height: math.unit(7, "feet"),
  6904. default: true
  6905. },
  6906. {
  6907. name: "Swimming Pool",
  6908. height: math.unit(12.2, "meters")
  6909. },
  6910. {
  6911. name: "Olympic Swimming Pool",
  6912. height: math.unit(56.3, "meters")
  6913. },
  6914. {
  6915. name: "Lake Superior",
  6916. height: math.unit(93900, "meters")
  6917. },
  6918. {
  6919. name: "Mediterranean Sea",
  6920. height: math.unit(644457, "meters")
  6921. },
  6922. {
  6923. name: "World's Oceans",
  6924. height: math.unit(4567491, "meters")
  6925. },
  6926. ]
  6927. )
  6928. };
  6929. characterMakers["Zelas"] = () => {
  6930. return makeCharacter(
  6931. "Zelas",
  6932. "Cirez",
  6933. {
  6934. front: {
  6935. height: math.unit(2.3, "meters"),
  6936. weight: math.unit(120, "kg"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/zelas/front.svg"
  6940. }
  6941. },
  6942. side: {
  6943. height: math.unit(2.3, "meters"),
  6944. weight: math.unit(120, "kg"),
  6945. name: "Side",
  6946. image: {
  6947. source: "./media/characters/zelas/side.svg"
  6948. }
  6949. },
  6950. back: {
  6951. height: math.unit(2.3, "meters"),
  6952. weight: math.unit(120, "kg"),
  6953. name: "Back",
  6954. image: {
  6955. source: "./media/characters/zelas/back.svg"
  6956. }
  6957. },
  6958. foot: {
  6959. height: math.unit(1.116, "feet"),
  6960. name: "Foot",
  6961. image: {
  6962. source: "./media/characters/zelas/foot.svg"
  6963. }
  6964. },
  6965. },
  6966. [
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(2.3, "meters")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(30, "meters"),
  6974. default: true
  6975. },
  6976. ]
  6977. )
  6978. };
  6979. characterMakers["Talbot"] = () => {
  6980. return makeCharacter(
  6981. "Talbot",
  6982. "Talbot",
  6983. {
  6984. front: {
  6985. height: math.unit(1, "inch"),
  6986. weight: math.unit(0.21, "grams"),
  6987. name: "Front",
  6988. image: {
  6989. source: "./media/characters/talbot/front.svg",
  6990. extra: 594/544
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Micro",
  6997. height: math.unit(1, "inch"),
  6998. default: true
  6999. },
  7000. ]
  7001. )
  7002. };
  7003. characterMakers["Fliss"] = () => {
  7004. return makeCharacter(
  7005. "Fliss",
  7006. "Fliss",
  7007. {
  7008. front: {
  7009. height: math.unit(3 + 3/12, "feet"),
  7010. weight: math.unit(51.8, "lb"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/fliss/front.svg",
  7014. extra: 840/640
  7015. }
  7016. },
  7017. },
  7018. [
  7019. {
  7020. name: "Teeny Tiny",
  7021. height: math.unit(1, "mm")
  7022. },
  7023. {
  7024. name: "Small",
  7025. height: math.unit(1, "inch"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Standard Sylveon",
  7030. height: math.unit(3 + 3/12, "feet")
  7031. },
  7032. {
  7033. name: "Large Nuisance",
  7034. height: math.unit(33, "feet")
  7035. },
  7036. {
  7037. name: "City Filler",
  7038. height: math.unit(3000, "feet")
  7039. },
  7040. {
  7041. name: "New Horizon",
  7042. height: math.unit(6000, "miles")
  7043. },
  7044. ]
  7045. )
  7046. };
  7047. characterMakers["Fleta"] = () => {
  7048. return makeCharacter(
  7049. "Fleta",
  7050. "TheFleta",
  7051. {
  7052. front: {
  7053. height: math.unit(5, "cm"),
  7054. weight: math.unit(1.94, "g"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/fleta/front.svg",
  7058. extra: 835/803
  7059. }
  7060. },
  7061. back: {
  7062. height: math.unit(5, "cm"),
  7063. weight: math.unit(1.94, "g"),
  7064. name: "Back",
  7065. image: {
  7066. source: "./media/characters/fleta/back.svg",
  7067. extra: 835/803
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(5, "cm"),
  7075. default: true
  7076. },
  7077. ]
  7078. )
  7079. };
  7080. characterMakers["Dominic"] = () => {
  7081. return makeCharacter(
  7082. "Dominic",
  7083. "HypoTheDerg",
  7084. {
  7085. front: {
  7086. height: math.unit(6, "feet"),
  7087. weight: math.unit(225, "lb"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/dominic/front.svg",
  7091. extra: 1770/1620 ,
  7092. bottom: 0.025
  7093. }
  7094. },
  7095. back: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(225, "lb"),
  7098. name: "Back",
  7099. image: {
  7100. source: "./media/characters/dominic/back.svg",
  7101. extra: 1745/1620 ,
  7102. bottom: 0.065
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Nano",
  7109. height: math.unit(0.1, "mm")
  7110. },
  7111. {
  7112. name: "Micro-",
  7113. height: math.unit(1, "mm")
  7114. },
  7115. {
  7116. name: "Micro",
  7117. height: math.unit(4, "inches")
  7118. },
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(6 + 4/12, "feet"),
  7122. default: true
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(115, "feet")
  7127. },
  7128. {
  7129. name: "Macro+",
  7130. height: math.unit(955, "feet")
  7131. },
  7132. {
  7133. name: "Megamacro",
  7134. height: math.unit(8990, "feet")
  7135. },
  7136. {
  7137. name: "Gigmacro",
  7138. height: math.unit(9310, "miles")
  7139. },
  7140. {
  7141. name: "Teramacro",
  7142. height: math.unit(1567005010, "miles")
  7143. },
  7144. {
  7145. name: "Examacro",
  7146. height: math.unit(1425, "parsecs")
  7147. },
  7148. ]
  7149. )
  7150. };
  7151. characterMakers["Major Colonel"] = () => {
  7152. return makeCharacter(
  7153. "Major Colonel",
  7154. "Major Colonel",
  7155. {
  7156. front: {
  7157. height: math.unit(400, "feet"),
  7158. weight: math.unit(44444444, "lb"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/major-colonel/front.svg"
  7162. }
  7163. },
  7164. back: {
  7165. height: math.unit(400, "feet"),
  7166. weight: math.unit(44444444, "lb"),
  7167. name: "Back",
  7168. image: {
  7169. source: "./media/characters/major-colonel/back.svg"
  7170. }
  7171. },
  7172. },
  7173. [
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(400, "feet"),
  7177. default: true
  7178. },
  7179. ]
  7180. )
  7181. };
  7182. characterMakers["Axel Lycan"] = () => {
  7183. return makeCharacter(
  7184. "Axel Lycan",
  7185. "AxelLycan",
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(120, "lb"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/axel-lycan/front.svg",
  7193. extra: 1,
  7194. bottom: 0.08
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Macro",
  7201. height: math.unit(1, "km"),
  7202. default: true
  7203. },
  7204. ]
  7205. )
  7206. };
  7207. characterMakers["Vanrel (Hyena)"] = () => {
  7208. return makeCharacter(
  7209. "Vanrel (Hyena)",
  7210. "Vanrel",
  7211. {
  7212. front: {
  7213. height: math.unit(5 + 9/12, "feet"),
  7214. weight: math.unit(175, "lb"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/vanrel-hyena/front.svg",
  7218. extra: 1086/1010 ,
  7219. bottom: 0.04
  7220. }
  7221. },
  7222. },
  7223. [
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(5 + 9/12, "feet"),
  7227. default: true
  7228. },
  7229. ]
  7230. )
  7231. };
  7232. characterMakers["Abbott Absol"] = () => {
  7233. return makeCharacter(
  7234. "Abbott Absol",
  7235. "Abbott Absol",
  7236. {
  7237. front: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(103, "lb"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/abbott-absol/front.svg",
  7243. extra: 2010/1842
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Megamicro",
  7250. height: math.unit(0.1, "mm")
  7251. },
  7252. {
  7253. name: "Micro",
  7254. height: math.unit(1, "inch")
  7255. },
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(6, "feet"),
  7259. default: true
  7260. },
  7261. ]
  7262. )
  7263. };
  7264. characterMakers["Hector"] = () => {
  7265. return makeCharacter(
  7266. "Hector",
  7267. "LibragonSlvr",
  7268. {
  7269. front: {
  7270. height: math.unit(6, "feet"),
  7271. weight: math.unit(264, "lb"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/hector/front.svg",
  7275. extra: 2280/2130 ,
  7276. bottom: 0.07
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(12.25, "foot"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(160, "feet")
  7289. },
  7290. ]
  7291. )
  7292. };
  7293. characterMakers["Sal"] = () => {
  7294. return makeCharacter(
  7295. "Sal",
  7296. "Bigdur",
  7297. {
  7298. front: {
  7299. height: math.unit(6, "feet"),
  7300. weight: math.unit(150, "lb"),
  7301. name: "Front",
  7302. image: {
  7303. source: "./media/characters/sal/front.svg",
  7304. extra: 1846/1699 ,
  7305. bottom: 0.04
  7306. }
  7307. },
  7308. },
  7309. [
  7310. {
  7311. name: "Megamacro",
  7312. height: math.unit(10, "miles"),
  7313. default: true
  7314. },
  7315. ]
  7316. )
  7317. };
  7318. characterMakers["Ranger"] = () => {
  7319. return makeCharacter(
  7320. "Ranger",
  7321. "Ranger",
  7322. {
  7323. front: {
  7324. height: math.unit(3, "meters"),
  7325. weight: math.unit(450, "kg"),
  7326. name: "front",
  7327. image: {
  7328. source: "./media/characters/ranger/front.svg",
  7329. extra: 2401/2243 ,
  7330. bottom: 0.05
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(3, "meters"),
  7338. default: true
  7339. },
  7340. ]
  7341. )
  7342. };
  7343. characterMakers["Theresa"] = () => {
  7344. return makeCharacter(
  7345. "Theresa",
  7346. "Ranger",
  7347. {
  7348. front: {
  7349. height: math.unit(14, "feet"),
  7350. weight: math.unit(800, "kg"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/theresa/front.svg",
  7354. extra: 3575/3346 ,
  7355. bottom: 0.03
  7356. }
  7357. },
  7358. },
  7359. [
  7360. {
  7361. name: "Normal",
  7362. height: math.unit(14, "feet"),
  7363. default: true
  7364. },
  7365. ]
  7366. )
  7367. };
  7368. characterMakers["Ine"] = () => {
  7369. return makeCharacter(
  7370. "Ine",
  7371. "Ranger",
  7372. {
  7373. front: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(3, "kg"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/ine/front.svg",
  7379. extra: 678/539 ,
  7380. bottom: 0.023
  7381. }
  7382. },
  7383. },
  7384. [
  7385. {
  7386. name: "Normal",
  7387. height: math.unit(2.265, "feet"),
  7388. default: true
  7389. },
  7390. ]
  7391. )
  7392. };
  7393. characterMakers["Vial"] = () => {
  7394. return makeCharacter(
  7395. "Vial",
  7396. "Ranger",
  7397. {
  7398. front: {
  7399. height: math.unit(5, "feet"),
  7400. weight: math.unit(30, "kg"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/vial/front.svg",
  7404. extra: 1365/1277 ,
  7405. bottom: 0.04
  7406. }
  7407. },
  7408. },
  7409. [
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(5, "feet"),
  7413. default: true
  7414. },
  7415. ]
  7416. )
  7417. };
  7418. characterMakers["Rovoska"] = () => {
  7419. return makeCharacter(
  7420. "Rovoska",
  7421. "Rovoska",
  7422. {
  7423. side: {
  7424. height: math.unit(3.4, "meters"),
  7425. weight: math.unit(1000, "lb"),
  7426. name: "Side",
  7427. image: {
  7428. source: "./media/characters/rovoska/side.svg",
  7429. extra: 4403/1515
  7430. }
  7431. },
  7432. },
  7433. [
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(3.4, "meters"),
  7437. default: true
  7438. },
  7439. ]
  7440. )
  7441. };
  7442. characterMakers["Gunner Rotthbauer"] = () => {
  7443. return makeCharacter(
  7444. "Gunner Rotthbauer",
  7445. "GunnerRott",
  7446. {
  7447. front: {
  7448. height: math.unit(8, "feet"),
  7449. weight: math.unit(315, "lb"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/gunner-rotthbauer/front.svg"
  7453. }
  7454. },
  7455. back: {
  7456. height: math.unit(8, "feet"),
  7457. weight: math.unit(315, "lb"),
  7458. name: "Back",
  7459. image: {
  7460. source: "./media/characters/gunner-rotthbauer/back.svg"
  7461. }
  7462. },
  7463. },
  7464. [
  7465. {
  7466. name: "Micro",
  7467. height: math.unit(3.5, "inches")
  7468. },
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(8, "feet"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(250, "feet")
  7477. },
  7478. {
  7479. name: "Megamacro",
  7480. height: math.unit(1, "AU")
  7481. },
  7482. ]
  7483. )
  7484. };
  7485. characterMakers["Allatia"] = () => {
  7486. return makeCharacter(
  7487. "Allatia",
  7488. "ilikefurrystoo",
  7489. {
  7490. front: {
  7491. height: math.unit(5 + 5/12, "feet"),
  7492. weight: math.unit(140, "lb"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/allatia/front.svg",
  7496. extra: 1227/1180 ,
  7497. bottom: 0.027
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Normal",
  7504. height: math.unit(5 + 5/12, "feet")
  7505. },
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(250, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Megamacro",
  7513. height: math.unit(8, "miles")
  7514. }
  7515. ]
  7516. )
  7517. };
  7518. characterMakers["Tene"] = () => {
  7519. return makeCharacter(
  7520. "Tene",
  7521. "TenebrisDrox",
  7522. {
  7523. front: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(120, "lb"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/tene/front.svg",
  7529. extra: 1728/1578 ,
  7530. bottom: 0.022
  7531. }
  7532. },
  7533. stomping: {
  7534. height: math.unit(2.025, "meters"),
  7535. weight: math.unit(120, "lb"),
  7536. name: "Stomping",
  7537. image: {
  7538. source: "./media/characters/tene/stomping.svg",
  7539. extra: 938/873 ,
  7540. bottom: 0.01
  7541. }
  7542. },
  7543. sitting: {
  7544. height: math.unit(1, "meter"),
  7545. weight: math.unit(120, "lb"),
  7546. name: "Sitting",
  7547. image: {
  7548. source: "./media/characters/tene/sitting.svg",
  7549. extra: 437/415 ,
  7550. bottom: 0.1
  7551. }
  7552. },
  7553. feral: {
  7554. height: math.unit(3.9, "feet"),
  7555. weight: math.unit(250, "lb"),
  7556. name: "Feral",
  7557. image: {
  7558. source: "./media/characters/tene/feral.svg",
  7559. extra: 717/458 ,
  7560. bottom: 0.179
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Normal",
  7567. height: math.unit(6, "feet")
  7568. },
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(300, "feet"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Megamacro",
  7576. height: math.unit(5, "miles")
  7577. },
  7578. ]
  7579. )
  7580. };
  7581. characterMakers["Evander"] = () => {
  7582. return makeCharacter(
  7583. "Evander",
  7584. "KlezmerGryphon",
  7585. {
  7586. side: {
  7587. height: math.unit(6, "feet"),
  7588. name: "Side",
  7589. image: {
  7590. source: "./media/characters/evander/side.svg",
  7591. extra: 877/477
  7592. }
  7593. },
  7594. },
  7595. [
  7596. {
  7597. name: "Normal",
  7598. height: math.unit(0.83, "meters"),
  7599. default: true
  7600. },
  7601. ]
  7602. )
  7603. };
  7604. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7605. return makeCharacter(
  7606. "Ka'Tamra \"Spaz\" Ci'Karan",
  7607. "Spazman",
  7608. {
  7609. front: {
  7610. height: math.unit(12, "feet"),
  7611. weight: math.unit(1000, "lb"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7615. extra: 1762/1611
  7616. }
  7617. },
  7618. back: {
  7619. height: math.unit(12, "feet"),
  7620. weight: math.unit(1000, "lb"),
  7621. name: "Back",
  7622. image: {
  7623. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7624. extra: 1762/1611
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(12, "feet"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Kaiju",
  7636. height: math.unit(150, "feet")
  7637. },
  7638. ]
  7639. )
  7640. };
  7641. characterMakers["Zero Alurus"] = () => {
  7642. return makeCharacter(
  7643. "Zero Alurus",
  7644. "",
  7645. {
  7646. front: {
  7647. height: math.unit(6, "feet"),
  7648. weight: math.unit(150, "lb"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/zero-alurus/front.svg"
  7652. }
  7653. },
  7654. back: {
  7655. height: math.unit(6, "feet"),
  7656. weight: math.unit(150, "lb"),
  7657. name: "Back",
  7658. image: {
  7659. source: "./media/characters/zero-alurus/back.svg"
  7660. }
  7661. },
  7662. },
  7663. [
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(5 + 10/12, "feet")
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(60, "feet"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Macro+",
  7675. height: math.unit(450, "feet")
  7676. },
  7677. ]
  7678. )
  7679. };
  7680. characterMakers["Mega Shi"] = () => {
  7681. return makeCharacter(
  7682. "Mega Shi",
  7683. "MShi8027",
  7684. {
  7685. front: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(200, "lb"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/mega-shi/front.svg",
  7691. extra: 1279/1250 ,
  7692. bottom: 0.02
  7693. }
  7694. },
  7695. back: {
  7696. height: math.unit(6, "feet"),
  7697. weight: math.unit(200, "lb"),
  7698. name: "Back",
  7699. image: {
  7700. source: "./media/characters/mega-shi/back.svg",
  7701. extra: 1279/1250 ,
  7702. bottom: 0.02
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Micro",
  7709. height: math.unit(16 + 6/12, "feet")
  7710. },
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(660, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Megamacro",
  7718. height: math.unit(10, "miles")
  7719. },
  7720. {
  7721. name: "Planetary Launch",
  7722. height: math.unit(500, "miles")
  7723. },
  7724. {
  7725. name: "Interstellar",
  7726. height: math.unit(1e9, "miles")
  7727. },
  7728. {
  7729. name: "Leaving the Universe",
  7730. height: math.unit(1, "gigaparsec")
  7731. },
  7732. {
  7733. name: "Travelling Universes",
  7734. height: math.unit(30e15, "parsecs")
  7735. },
  7736. ]
  7737. )
  7738. };
  7739. characterMakers["Odyssey"] = () => {
  7740. return makeCharacter(
  7741. "Odyssey",
  7742. "Freschlauhs",
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(150, "lb"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/odyssey/front.svg",
  7750. extra: 1782/1582 ,
  7751. bottom: 0.01
  7752. }
  7753. },
  7754. side: {
  7755. height: math.unit(5.6, "feet"),
  7756. weight: math.unit(140, "lb"),
  7757. name: "Side",
  7758. image: {
  7759. source: "./media/characters/odyssey/side.svg",
  7760. extra: 6462/5700
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(5 + 4/12, "feet")
  7768. },
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(1, "km")
  7772. },
  7773. {
  7774. name: "Megamacro",
  7775. height: math.unit(3000, "km")
  7776. },
  7777. {
  7778. name: "Gigamacro",
  7779. height: math.unit(1, "AU"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Omniversal",
  7784. height: math.unit(100e14, "lightyears")
  7785. },
  7786. ]
  7787. )
  7788. };
  7789. characterMakers["Mekuto"] = () => {
  7790. return makeCharacter(
  7791. "Mekuto",
  7792. "Mekuto",
  7793. {
  7794. front: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(300, "lb"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/mekuto/front.svg",
  7800. extra: 921/832 ,
  7801. bottom: 0.03
  7802. }
  7803. },
  7804. hand: {
  7805. height: math.unit(6/10.24, "feet"),
  7806. name: "Hand",
  7807. image: {
  7808. source: "./media/characters/mekuto/hand.svg"
  7809. }
  7810. },
  7811. foot: {
  7812. height: math.unit(6/5.05, "feet"),
  7813. name: "Foot",
  7814. image: {
  7815. source: "./media/characters/mekuto/foot.svg"
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Minimicro",
  7822. height: math.unit(0.2, "inches")
  7823. },
  7824. {
  7825. name: "Micro",
  7826. height: math.unit(1.5, "inches")
  7827. },
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(5 + 11/12, "feet"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Minimacro",
  7835. height: math.unit(17 + 9/12, "feet")
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(177.5, "feet")
  7840. },
  7841. {
  7842. name: "Megamacro",
  7843. height: math.unit(152, "miles")
  7844. },
  7845. ]
  7846. )
  7847. };
  7848. characterMakers["Dafydd Tomos"] = () => {
  7849. return makeCharacter(
  7850. "Dafydd Tomos",
  7851. "SolarfoxArt",
  7852. {
  7853. front: {
  7854. height: math.unit(6.5, "inches"),
  7855. weight: math.unit(13, "oz"),
  7856. name: "Front",
  7857. image: {
  7858. source: "./media/characters/dafydd-tomos/front.svg",
  7859. extra: 2990/2603 ,
  7860. bottom: 0.03
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(6.5, "inches"),
  7868. default: true
  7869. },
  7870. ]
  7871. )
  7872. };
  7873. characterMakers["Splinter"] = () => {
  7874. return makeCharacter(
  7875. "Splinter",
  7876. "SirSplinter",
  7877. {
  7878. front: {
  7879. height: math.unit(6, "feet"),
  7880. weight: math.unit(150, "lb"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/splinter/front.svg",
  7884. extra: 2990/2882 ,
  7885. bottom: 0.04
  7886. }
  7887. },
  7888. back: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(150, "lb"),
  7891. name: "Back",
  7892. image: {
  7893. source: "./media/characters/splinter/back.svg",
  7894. extra: 2990/2882 ,
  7895. bottom: 0.04
  7896. }
  7897. },
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(6, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(230, "meters"),
  7907. default: true
  7908. },
  7909. ]
  7910. )
  7911. };
  7912. characterMakers["SnowGabumon"] = () => {
  7913. return makeCharacter(
  7914. "SnowGabumon",
  7915. "SnowGabumon",
  7916. {
  7917. front: {
  7918. height: math.unit(4 + 10/12, "feet"),
  7919. weight: math.unit(480, "lb"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/snow-gabumon/front.svg",
  7923. extra: 1140/963 ,
  7924. bottom: 0.058
  7925. }
  7926. },
  7927. back: {
  7928. height: math.unit(4 + 10/12, "feet"),
  7929. weight: math.unit(480, "lb"),
  7930. name: "Back",
  7931. image: {
  7932. source: "./media/characters/snow-gabumon/back.svg",
  7933. extra: 1115/962 ,
  7934. bottom: 0.041
  7935. }
  7936. },
  7937. frontUndresed: {
  7938. height: math.unit(4 + 10/12, "feet"),
  7939. weight: math.unit(480, "lb"),
  7940. name: "Front (Undressed)",
  7941. image: {
  7942. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7943. extra: 1061/960 ,
  7944. bottom: 0.045
  7945. }
  7946. },
  7947. },
  7948. [
  7949. {
  7950. name: "Micro",
  7951. height: math.unit(1, "inch")
  7952. },
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(4 + 10/12, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(200, "feet")
  7961. },
  7962. {
  7963. name: "Megamacro",
  7964. height: math.unit(120, "miles")
  7965. },
  7966. {
  7967. name: "Gigamacro",
  7968. height: math.unit(9800, "miles")
  7969. },
  7970. ]
  7971. )
  7972. };
  7973. characterMakers["Moody"] = () => {
  7974. return makeCharacter(
  7975. "Moody",
  7976. "MoodysterDog",
  7977. {
  7978. front: {
  7979. height: math.unit(1.7, "meters"),
  7980. weight: math.unit(140, "lb"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/moody/front.svg",
  7984. extra: 3226/3007 ,
  7985. bottom: 0.087
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Micro",
  7992. height: math.unit(1, "mm")
  7993. },
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(1.7, "meters"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(80, "meters")
  8002. },
  8003. {
  8004. name: "Macro+",
  8005. height: math.unit(500, "meters")
  8006. },
  8007. ]
  8008. )
  8009. };
  8010. characterMakers["Zyas"] = () => {
  8011. return makeCharacter(
  8012. "Zyas",
  8013. "Delathar",
  8014. {
  8015. front: {
  8016. height: math.unit(6, "feet"),
  8017. weight: math.unit(150, "lb"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/zyas/front.svg",
  8021. extra: 1180/1120 ,
  8022. bottom: 0.045
  8023. }
  8024. },
  8025. },
  8026. [
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(10, "feet"),
  8030. default: true
  8031. },
  8032. {
  8033. name: "Macro",
  8034. height: math.unit(500, "feet")
  8035. },
  8036. {
  8037. name: "Megamacro",
  8038. height: math.unit(5, "miles")
  8039. },
  8040. {
  8041. name: "Teramacro",
  8042. height: math.unit(150000, "miles")
  8043. },
  8044. ]
  8045. )
  8046. };
  8047. characterMakers["Cuon"] = () => {
  8048. return makeCharacter(
  8049. "Cuon",
  8050. "CollieCuon",
  8051. {
  8052. front: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(150, "lb"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/cuon/front.svg",
  8058. extra: 1390/1320 ,
  8059. bottom: 0.008
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Micro",
  8066. height: math.unit(3, "inches")
  8067. },
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(18 + 9/12, "feet"),
  8071. default: true
  8072. },
  8073. {
  8074. name: "Macro",
  8075. height: math.unit(360, "feet")
  8076. },
  8077. {
  8078. name: "Megamacro",
  8079. height: math.unit(360, "miles")
  8080. },
  8081. ]
  8082. )
  8083. };
  8084. characterMakers["Nyanuxk"] = () => {
  8085. return makeCharacter(
  8086. "Nyanuxk",
  8087. "Nyanuxk",
  8088. {
  8089. front: {
  8090. height: math.unit(2.4, "meters"),
  8091. weight: math.unit(70, "kg"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/nyanuxk/front.svg",
  8095. extra: 1172/1084 ,
  8096. bottom: 0.065
  8097. }
  8098. },
  8099. side: {
  8100. height: math.unit(2.4, "meters"),
  8101. weight: math.unit(70, "kg"),
  8102. name: "Side",
  8103. image: {
  8104. source: "./media/characters/nyanuxk/side.svg",
  8105. extra: 1190/1132 ,
  8106. bottom: 0.007
  8107. }
  8108. },
  8109. back: {
  8110. height: math.unit(2.4, "meters"),
  8111. weight: math.unit(70, "kg"),
  8112. name: "Back",
  8113. image: {
  8114. source: "./media/characters/nyanuxk/back.svg",
  8115. extra: 1200/1141 ,
  8116. bottom: 0.015
  8117. }
  8118. },
  8119. foot: {
  8120. height: math.unit(0.52, "meters"),
  8121. name: "Foot",
  8122. image: {
  8123. source: "./media/characters/nyanuxk/foot.svg"
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(2, "cm")
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(2.4, "meters"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Smaller Macro",
  8139. height: math.unit(120, "meters")
  8140. },
  8141. {
  8142. name: "Bigger Macro",
  8143. height: math.unit(1.2, "km")
  8144. },
  8145. {
  8146. name: "Megamacro",
  8147. height: math.unit(15, "kilometers")
  8148. },
  8149. {
  8150. name: "Gigamacro",
  8151. height: math.unit(2000, "km")
  8152. },
  8153. {
  8154. name: "Teramacro",
  8155. height: math.unit(500000, "km")
  8156. },
  8157. ]
  8158. )
  8159. };
  8160. characterMakers["Ailbhe"] = () => {
  8161. return makeCharacter(
  8162. "Ailbhe",
  8163. "KlezmerGryphon",
  8164. {
  8165. side: {
  8166. height: math.unit(6, "feet"),
  8167. name: "Side",
  8168. image: {
  8169. source: "./media/characters/ailbhe/side.svg",
  8170. extra: 757/464 ,
  8171. bottom: 0.041
  8172. }
  8173. },
  8174. },
  8175. [
  8176. {
  8177. name: "Normal",
  8178. height: math.unit(1.07, "meters"),
  8179. default: true
  8180. },
  8181. ]
  8182. )
  8183. };
  8184. characterMakers["Zevulfius"] = () => {
  8185. return makeCharacter(
  8186. "Zevulfius",
  8187. "Nyanuxk",
  8188. {
  8189. front: {
  8190. height: math.unit(6, "feet"),
  8191. weight: math.unit(120, "kg"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/zevulfius/front.svg",
  8195. extra: 965/903
  8196. }
  8197. },
  8198. side: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(120, "kg"),
  8201. name: "Side",
  8202. image: {
  8203. source: "./media/characters/zevulfius/side.svg",
  8204. extra: 939/900
  8205. }
  8206. },
  8207. back: {
  8208. height: math.unit(6, "feet"),
  8209. weight: math.unit(120, "kg"),
  8210. name: "Back",
  8211. image: {
  8212. source: "./media/characters/zevulfius/back.svg",
  8213. extra: 918/854 ,
  8214. bottom: 0.005
  8215. }
  8216. },
  8217. foot: {
  8218. height: math.unit(6/3.72, "feet"),
  8219. name: "Foot",
  8220. image: {
  8221. source: "./media/characters/zevulfius/foot.svg"
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(750, "meters")
  8229. },
  8230. {
  8231. name: "Megamacro",
  8232. height: math.unit(20, "km"),
  8233. default: true
  8234. },
  8235. {
  8236. name: "Gigamacro",
  8237. height: math.unit(2000, "km")
  8238. },
  8239. {
  8240. name: "Teramacro",
  8241. height: math.unit(250000, "km")
  8242. },
  8243. ]
  8244. )
  8245. };
  8246. characterMakers["Rikes"] = () => {
  8247. return makeCharacter(
  8248. "Rikes",
  8249. "VeryLargeDog",
  8250. {
  8251. front: {
  8252. height: math.unit(100, "feet"),
  8253. weight: math.unit(350, "kg"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/rikes/front.svg",
  8257. extra: 1565/1483 ,
  8258. bottom: 0.017
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(100, "feet"),
  8266. default: true
  8267. },
  8268. ]
  8269. )
  8270. };
  8271. characterMakers["Adam Silver-Mane"] = () => {
  8272. return makeCharacter(
  8273. "Adam Silver-Mane",
  8274. "Dragonknightadam",
  8275. {
  8276. anthro: {
  8277. height: math.unit(8, "feet"),
  8278. weight: math.unit(120, "kg"),
  8279. name: "Anthro",
  8280. image: {
  8281. source: "./media/characters/adam-silver-mane/anthro.svg",
  8282. extra: 5743/5339 ,
  8283. bottom: 0.07
  8284. }
  8285. },
  8286. taur: {
  8287. height: math.unit(16, "feet"),
  8288. weight: math.unit(1500, "kg"),
  8289. name: "Taur",
  8290. image: {
  8291. source: "./media/characters/adam-silver-mane/taur.svg",
  8292. extra: 1713/1571 ,
  8293. bottom: 0.01
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(8, "feet")
  8301. },
  8302. {
  8303. name: "Minimacro",
  8304. height: math.unit(80, "feet")
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(800, "feet"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Megamacro",
  8313. height: math.unit(8000, "feet")
  8314. },
  8315. {
  8316. name: "Gigamacro",
  8317. height: math.unit(800, "miles")
  8318. },
  8319. {
  8320. name: "Teramacro",
  8321. height: math.unit(80000, "miles")
  8322. },
  8323. {
  8324. name: "Celestial",
  8325. height: math.unit(8e6, "miles")
  8326. },
  8327. {
  8328. name: "Star Dragon",
  8329. height: math.unit(800000, "parsecs")
  8330. },
  8331. {
  8332. name: "Godly",
  8333. height: math.unit(800, "teraparsecs")
  8334. },
  8335. ]
  8336. )
  8337. };
  8338. characterMakers["Ky'owin"] = () => {
  8339. return makeCharacter(
  8340. "Ky'owin",
  8341. "Kyowin",
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(150, "lb"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/ky'owin/front.svg",
  8349. extra: 3888/3068 ,
  8350. bottom: 0.015
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(6 + 8/12, "feet")
  8358. },
  8359. {
  8360. name: "Large",
  8361. height: math.unit(68, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(132, "feet")
  8366. },
  8367. {
  8368. name: "Macro+",
  8369. height: math.unit(340, "feet")
  8370. },
  8371. {
  8372. name: "Macro++",
  8373. height: math.unit(680, "feet"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Megamacro",
  8378. height: math.unit(1, "mile")
  8379. },
  8380. {
  8381. name: "Megamacro+",
  8382. height: math.unit(10, "miles")
  8383. },
  8384. ]
  8385. )
  8386. };
  8387. characterMakers["Mal"] = () => {
  8388. return makeCharacter(
  8389. "Mal",
  8390. "agrosarmadillo",
  8391. {
  8392. front: {
  8393. height: math.unit(4, "feet"),
  8394. weight: math.unit(50, "lb"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/mal/front.svg",
  8398. extra: 785/724 ,
  8399. bottom: 0.07
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Micro",
  8406. height: math.unit(4, "inches")
  8407. },
  8408. {
  8409. name: "Normal",
  8410. height: math.unit(4, "feet"),
  8411. default: true
  8412. },
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(200, "feet")
  8416. },
  8417. ]
  8418. )
  8419. };
  8420. characterMakers["Jordan Deware"] = () => {
  8421. return makeCharacter(
  8422. "Jordan Deware",
  8423. "JordanDeware",
  8424. {
  8425. front: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(150, "lb"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/jordan-deware/front.svg",
  8431. extra: 1191/1012
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Nano",
  8438. height: math.unit(0.01, "mm")
  8439. },
  8440. {
  8441. name: "Minimicro",
  8442. height: math.unit(1, "mm")
  8443. },
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(0.5, "inches")
  8447. },
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(4, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Minimacro",
  8455. height: math.unit(40, "meters")
  8456. },
  8457. {
  8458. name: "Small Macro",
  8459. height: math.unit(400, "meters")
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(4, "miles")
  8464. },
  8465. {
  8466. name: "Megamacro",
  8467. height: math.unit(40, "miles")
  8468. },
  8469. {
  8470. name: "Megamacro+",
  8471. height: math.unit(400, "miles")
  8472. },
  8473. {
  8474. name: "Gigamacro",
  8475. height: math.unit(400000, "miles")
  8476. },
  8477. ]
  8478. )
  8479. };
  8480. characterMakers["Kimiko"] = () => {
  8481. return makeCharacter(
  8482. "Kimiko",
  8483. "HypoTheDerg",
  8484. {
  8485. side: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(150, "lb"),
  8488. name: "Side",
  8489. image: {
  8490. source: "./media/characters/kimiko/side.svg",
  8491. extra: 600/358
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(15, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(220, "feet")
  8504. },
  8505. {
  8506. name: "Macro+",
  8507. height: math.unit(1450, "feet")
  8508. },
  8509. {
  8510. name: "Megamacro",
  8511. height: math.unit(11500, "feet")
  8512. },
  8513. {
  8514. name: "Gigamacro",
  8515. height: math.unit(9500, "miles")
  8516. },
  8517. {
  8518. name: "Teramacro",
  8519. height: math.unit(2208005005, "miles")
  8520. },
  8521. {
  8522. name: "Examacro",
  8523. height: math.unit(2750, "parsecs")
  8524. },
  8525. {
  8526. name: "Zettamacro",
  8527. height: math.unit(101500, "parsecs")
  8528. },
  8529. ]
  8530. )
  8531. };
  8532. characterMakers["Andrew Sleepy"] = () => {
  8533. return makeCharacter(
  8534. "Andrew Sleepy",
  8535. "Proky",
  8536. {
  8537. front: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(70, "kg"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/andrew-sleepy/front.svg"
  8543. }
  8544. },
  8545. side: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(70, "kg"),
  8548. name: "Side",
  8549. image: {
  8550. source: "./media/characters/andrew-sleepy/side.svg"
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(1, "mm"),
  8558. default: true
  8559. },
  8560. ]
  8561. )
  8562. };
  8563. characterMakers["Judio"] = () => {
  8564. return makeCharacter(
  8565. "Judio",
  8566. "HypoTheDerg",
  8567. {
  8568. front: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(150, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/judio/front.svg",
  8574. extra: 1258/1110
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(5 + 6/12, "feet")
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(1000, "feet"),
  8586. default: true
  8587. },
  8588. {
  8589. name: "Megamacro",
  8590. height: math.unit(10, "miles")
  8591. },
  8592. ]
  8593. )
  8594. };
  8595. characterMakers["Nomaxice"] = () => {
  8596. return makeCharacter(
  8597. "Nomaxice",
  8598. "Nomaxice",
  8599. {
  8600. front: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(68, "kg"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/nomaxice/front.svg",
  8606. extra: 1498/1073 ,
  8607. bottom: 0.075
  8608. }
  8609. },
  8610. foot: {
  8611. height: math.unit(1.1, "feet"),
  8612. name: "Foot",
  8613. image: {
  8614. source: "./media/characters/nomaxice/foot.svg"
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Micro",
  8621. height: math.unit(8, "cm")
  8622. },
  8623. {
  8624. name: "Norm",
  8625. height: math.unit(1.82, "m")
  8626. },
  8627. {
  8628. name: "Norm+",
  8629. height: math.unit(8.8, "feet")
  8630. },
  8631. {
  8632. name: "Big",
  8633. height: math.unit(8, "meters"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(18, "meters")
  8639. },
  8640. {
  8641. name: "Macro+",
  8642. height: math.unit(88, "meters")
  8643. },
  8644. ]
  8645. )
  8646. };
  8647. characterMakers["Dydros"] = () => {
  8648. return makeCharacter(
  8649. "Dydros",
  8650. "DatCyberDragon",
  8651. {
  8652. front: {
  8653. height: math.unit(12, "feet"),
  8654. weight: math.unit(1.5, "tons"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/dydros/front.svg",
  8658. extra: 863/800 ,
  8659. bottom: 0.015
  8660. }
  8661. },
  8662. back: {
  8663. height: math.unit(12, "feet"),
  8664. weight: math.unit(1.5, "tons"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/dydros/back.svg",
  8668. extra: 900/843 ,
  8669. bottom: 0.005
  8670. }
  8671. },
  8672. },
  8673. [
  8674. {
  8675. name: "Normal",
  8676. height: math.unit(12, "feet"),
  8677. default: true
  8678. },
  8679. ]
  8680. )
  8681. };
  8682. characterMakers["Riggi"] = () => {
  8683. return makeCharacter(
  8684. "Riggi",
  8685. "Fyre_ace",
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(100, "kg"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/riggi/front.svg",
  8693. extra: 5787/5303
  8694. }
  8695. },
  8696. hyper: {
  8697. height: math.unit(6*5/3, "feet"),
  8698. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8699. name: "Hyper",
  8700. image: {
  8701. source: "./media/characters/riggi/hyper.svg",
  8702. extra: 3595/3485
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Small Macro",
  8709. height: math.unit(50, "feet")
  8710. },
  8711. {
  8712. name: "Default",
  8713. height: math.unit(200, "feet"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Loom",
  8718. height: math.unit(10000, "feet")
  8719. },
  8720. {
  8721. name: "Cruising Altitude",
  8722. height: math.unit(30000, "feet")
  8723. },
  8724. {
  8725. name: "Megamacro",
  8726. height: math.unit(100, "miles")
  8727. },
  8728. {
  8729. name: "Continent Sized",
  8730. height: math.unit(2800, "miles")
  8731. },
  8732. {
  8733. name: "Earth Sized",
  8734. height: math.unit(8000, "miles")
  8735. },
  8736. ]
  8737. )
  8738. };
  8739. characterMakers["Alexi"] = () => {
  8740. return makeCharacter(
  8741. "Alexi",
  8742. "AlexiWerewolf",
  8743. {
  8744. front: {
  8745. height: math.unit(6, "feet"),
  8746. weight: math.unit(250, "lb"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/alexi/front.svg",
  8750. extra: 3483/3291 ,
  8751. bottom: 0.04
  8752. }
  8753. },
  8754. back: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(250, "lb"),
  8757. name: "Back",
  8758. image: {
  8759. source: "./media/characters/alexi/back.svg",
  8760. extra: 3533/3356 ,
  8761. bottom: 0.021
  8762. }
  8763. },
  8764. frontTransformed: {
  8765. height: math.unit(12.5, "feet"),
  8766. weight: math.unit(4000, "lb"),
  8767. name: "Front (Transformed)",
  8768. image: {
  8769. source: "./media/characters/alexi/front-transformed.svg",
  8770. extra: 5345/5100 ,
  8771. bottom: 0.03
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(3, "meters"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Minimacro",
  8783. height: math.unit(30, "meters")
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(500, "meters")
  8788. },
  8789. {
  8790. name: "Megamacro",
  8791. height: math.unit(9000, "km")
  8792. },
  8793. {
  8794. name: "Teramacro",
  8795. height: math.unit(384000, "km")
  8796. },
  8797. ]
  8798. )
  8799. };
  8800. characterMakers["Kayroo"] = () => {
  8801. return makeCharacter(
  8802. "Kayroo",
  8803. "Kayroo",
  8804. {
  8805. front: {
  8806. height: math.unit(6, "feet"),
  8807. weight: math.unit(150, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/kayroo/front.svg",
  8811. extra: 1153/1038 ,
  8812. bottom: 0.06
  8813. }
  8814. },
  8815. foot: {
  8816. height: math.unit(6, "feet"),
  8817. weight: math.unit(150, "lb"),
  8818. name: "Foot",
  8819. image: {
  8820. source: "./media/characters/kayroo/foot.svg"
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(8, "feet"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Minimacro",
  8832. height: math.unit(250, "feet")
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(2800, "feet")
  8837. },
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(5200, "feet")
  8841. },
  8842. {
  8843. name: "Gigamacro",
  8844. height: math.unit(27000, "feet")
  8845. },
  8846. {
  8847. name: "Omega",
  8848. height: math.unit(45000, "feet")
  8849. },
  8850. ]
  8851. )
  8852. };
  8853. characterMakers["Rhys"] = () => {
  8854. return makeCharacter(
  8855. "Rhys",
  8856. "BigMountainCat",
  8857. {
  8858. front: {
  8859. height: math.unit(18, "feet"),
  8860. weight: math.unit(5800, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/rhys/front.svg",
  8864. extra: 3386/3090 ,
  8865. bottom: 0.07
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(18, "feet"),
  8873. default: true
  8874. },
  8875. {
  8876. name: "Working Size",
  8877. height: math.unit(200, "feet")
  8878. },
  8879. {
  8880. name: "Demolition Size",
  8881. height: math.unit(2000, "feet")
  8882. },
  8883. {
  8884. name: "Maximum Licensed Size",
  8885. height: math.unit(5, "miles")
  8886. },
  8887. {
  8888. name: "Maximum Observed Size",
  8889. height: math.unit(10, "yottameters")
  8890. },
  8891. ]
  8892. )
  8893. };
  8894. characterMakers["Toto"] = () => {
  8895. return makeCharacter(
  8896. "Toto",
  8897. "Totoly_Toto",
  8898. {
  8899. front: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(250, "lb"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/toto/front.svg",
  8905. extra: 527 / 479,
  8906. bottom: 0.05
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(3, "feet")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(10, "feet")
  8918. },
  8919. {
  8920. name: "Macro",
  8921. height: math.unit(150, "feet"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Megamacro",
  8926. height: math.unit(1200, "feet")
  8927. },
  8928. ]
  8929. )
  8930. };
  8931. characterMakers["King"] = () => {
  8932. return makeCharacter(
  8933. "King",
  8934. "KingSizedLion",
  8935. {
  8936. back: {
  8937. height: math.unit(6, "feet"),
  8938. weight: math.unit(150, "lb"),
  8939. name: "Back",
  8940. image: {
  8941. source: "./media/characters/king/back.svg"
  8942. }
  8943. },
  8944. },
  8945. [
  8946. {
  8947. name: "Micro",
  8948. height: math.unit(2, "inches")
  8949. },
  8950. {
  8951. name: "Normal",
  8952. height: math.unit(8, "feet")
  8953. },
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(200, "feet"),
  8957. default: true
  8958. },
  8959. {
  8960. name: "Megamacro",
  8961. height: math.unit(50, "miles")
  8962. },
  8963. ]
  8964. )
  8965. };
  8966. characterMakers["Cordite"] = () => {
  8967. return makeCharacter(
  8968. "Cordite",
  8969. "photonman2",
  8970. {
  8971. anthro: {
  8972. height: math.unit(6 + 5/12, "feet"),
  8973. weight: math.unit(280, "lb"),
  8974. name: "Anthro",
  8975. image: {
  8976. source: "./media/characters/cordite/anthro.svg",
  8977. extra: 1986/1905 ,
  8978. bottom: 0.025
  8979. }
  8980. },
  8981. feral: {
  8982. height: math.unit(2, "feet"),
  8983. weight: math.unit(90, "lb"),
  8984. name: "Feral",
  8985. image: {
  8986. source: "./media/characters/cordite/feral.svg",
  8987. extra: 1260/755 ,
  8988. bottom: 0.05
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(6 + 5/12, "feet"),
  8996. default: true
  8997. },
  8998. ]
  8999. )
  9000. };
  9001. characterMakers["Pianostrong"] = () => {
  9002. return makeCharacter(
  9003. "Pianostrong",
  9004. "Pianostrong",
  9005. {
  9006. front: {
  9007. height: math.unit(6, "feet"),
  9008. weight: math.unit(150, "lb"),
  9009. name: "Front",
  9010. image: {
  9011. source: "./media/characters/pianostrong/front.svg",
  9012. extra: 6577/6254 ,
  9013. bottom: 0.02
  9014. }
  9015. },
  9016. side: {
  9017. height: math.unit(6, "feet"),
  9018. weight: math.unit(150, "lb"),
  9019. name: "Side",
  9020. image: {
  9021. source: "./media/characters/pianostrong/side.svg",
  9022. extra: 6106/5730
  9023. }
  9024. },
  9025. back: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(150, "lb"),
  9028. name: "Back",
  9029. image: {
  9030. source: "./media/characters/pianostrong/back.svg",
  9031. extra: 6085/5733 ,
  9032. bottom: 0.01
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(100, "feet")
  9040. },
  9041. {
  9042. name: "Macro+",
  9043. height: math.unit(300, "feet"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Macro++",
  9048. height: math.unit(1000, "feet")
  9049. },
  9050. ]
  9051. )
  9052. };
  9053. characterMakers["Kona"] = () => {
  9054. return makeCharacter(
  9055. "Kona",
  9056. "Konadh",
  9057. {
  9058. front: {
  9059. height: math.unit(6, "feet"),
  9060. weight: math.unit(150, "lb"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/kona/front.svg",
  9064. extra: 2960/2629 ,
  9065. bottom: 0.005
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(11 + 8/12, "feet")
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(850, "feet"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Macro+",
  9081. height: math.unit(1.5, "km"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Megamacro",
  9086. height: math.unit(80, "miles")
  9087. },
  9088. {
  9089. name: "Gigamacro",
  9090. height: math.unit(3500, "miles")
  9091. },
  9092. ]
  9093. )
  9094. };
  9095. characterMakers["Levi"] = () => {
  9096. return makeCharacter(
  9097. "Levi",
  9098. "LeviCurrie",
  9099. {
  9100. side: {
  9101. height: math.unit(1.9, "meters"),
  9102. weight: math.unit(326, "kg"),
  9103. name: "Side",
  9104. image: {
  9105. source: "./media/characters/levi/side.svg",
  9106. extra: 1704/1334 ,
  9107. bottom: 0.02
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(1.9, "meters"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(20, "meters")
  9120. },
  9121. {
  9122. name: "Macro+",
  9123. height: math.unit(200, "meters")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(2, "km")
  9128. },
  9129. {
  9130. name: "Megamacro+",
  9131. height: math.unit(20, "km")
  9132. },
  9133. {
  9134. name: "Gigamacro",
  9135. height: math.unit(2500, "km")
  9136. },
  9137. {
  9138. name: "Gigamacro+",
  9139. height: math.unit(120000, "km")
  9140. },
  9141. {
  9142. name: "Teramacro",
  9143. height: math.unit(7.77e6, "km")
  9144. },
  9145. ]
  9146. )
  9147. };
  9148. characterMakers["BMC"] = () => {
  9149. return makeCharacter(
  9150. "BMC",
  9151. "BigMountainCat",
  9152. {
  9153. front: {
  9154. height: math.unit(6 + 4/12, "feet"),
  9155. weight: math.unit(188, "lb"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/bmc/front.svg",
  9159. extra: 1067/1022 ,
  9160. bottom: 0.047
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Human-sized",
  9167. height: math.unit(6 + 4/12, "feet")
  9168. },
  9169. {
  9170. name: "Small",
  9171. height: math.unit(250, "feet")
  9172. },
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(1250, "feet"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Good Day",
  9180. height: math.unit(88, "miles")
  9181. },
  9182. {
  9183. name: "Largest Measured Size",
  9184. height: math.unit(11.2e6, "lightyears")
  9185. },
  9186. ]
  9187. )
  9188. };
  9189. characterMakers["Sven the Kaiju"] = () => {
  9190. return makeCharacter(
  9191. "Sven the Kaiju",
  9192. "OfActionMan",
  9193. {
  9194. front: {
  9195. height: math.unit(20, "feet"),
  9196. weight: math.unit(2016, "kg"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/sven-the-kaiju/front.svg",
  9200. extra: 1479/1449 ,
  9201. bottom: 0.05
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Fairy",
  9208. height: math.unit(6, "inches")
  9209. },
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(20, "feet"),
  9213. default: true
  9214. },
  9215. {
  9216. name: "Rampage",
  9217. height: math.unit(200, "feet")
  9218. },
  9219. {
  9220. name: "Archfey Forest Guardian",
  9221. height: math.unit(1, "mile")
  9222. },
  9223. ]
  9224. )
  9225. };
  9226. characterMakers["Marik"] = () => {
  9227. return makeCharacter(
  9228. "Marik",
  9229. "Acrarun",
  9230. {
  9231. front: {
  9232. height: math.unit(4, "meters"),
  9233. weight: math.unit(2, "tons"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/marik/front.svg",
  9237. extra: 1057/1003 ,
  9238. bottom: 0.08
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(4, "meters"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "Macro",
  9250. height: math.unit(20, "meters")
  9251. },
  9252. {
  9253. name: "Megamacro",
  9254. height: math.unit(50, "km")
  9255. },
  9256. {
  9257. name: "Gigamacro",
  9258. height: math.unit(100, "km")
  9259. },
  9260. {
  9261. name: "Alpha Macro",
  9262. height: math.unit(7.88e7, "yottameters")
  9263. },
  9264. ]
  9265. )
  9266. };
  9267. characterMakers["Mel"] = () => {
  9268. return makeCharacter(
  9269. "Mel",
  9270. "SomedayNotSoon",
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(110, "lb"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/mel/front.svg",
  9278. extra: 736/617 ,
  9279. bottom: 0.017
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Pico",
  9286. height: math.unit(3, "pm")
  9287. },
  9288. {
  9289. name: "Nano",
  9290. height: math.unit(3, "nm")
  9291. },
  9292. {
  9293. name: "Micro",
  9294. height: math.unit(0.3, "mm"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "Micro+",
  9299. height: math.unit(3, "mm")
  9300. },
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(5 + 10.5/12, "feet")
  9304. },
  9305. ]
  9306. )
  9307. };
  9308. characterMakers["Lykonous"] = () => {
  9309. return makeCharacter(
  9310. "Lykonous",
  9311. "Lykonous",
  9312. {
  9313. kaiju: {
  9314. height: math.unit(1.75, "meters"),
  9315. weight: math.unit(55, "kg"),
  9316. name: "Kaiju",
  9317. image: {
  9318. source: "./media/characters/lykonous/kaiju.svg",
  9319. extra: 1055/946 ,
  9320. bottom: 0.135
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(2.5, "meters"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Kaiju Dragon",
  9332. height: math.unit(60, "meters")
  9333. },
  9334. {
  9335. name: "Mega Kaiju",
  9336. height: math.unit(120, "km")
  9337. },
  9338. {
  9339. name: "Giga Kaiju",
  9340. height: math.unit(200, "megameters")
  9341. },
  9342. {
  9343. name: "Terra Kaiju",
  9344. height: math.unit(400, "gigameters")
  9345. },
  9346. {
  9347. name: "Kaiju Dragon God",
  9348. height: math.unit(13000, "exaparsecs")
  9349. },
  9350. ]
  9351. )
  9352. };
  9353. characterMakers["Blü"] = () => {
  9354. return makeCharacter(
  9355. "Blü",
  9356. "BluTheFagon",
  9357. {
  9358. front: {
  9359. height: math.unit(6, "feet"),
  9360. weight: math.unit(150, "lb"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/blü/front.svg",
  9364. extra: 1883/1564 ,
  9365. bottom: 0.031
  9366. }
  9367. },
  9368. },
  9369. [
  9370. {
  9371. name: "Normal",
  9372. height: math.unit(13, "feet"),
  9373. default: true
  9374. },
  9375. {
  9376. name: "Big Boi",
  9377. height: math.unit(150, "meters")
  9378. },
  9379. {
  9380. name: "Mini Stomper",
  9381. height: math.unit(300, "meters")
  9382. },
  9383. {
  9384. name: "Macro",
  9385. height: math.unit(1000, "meters")
  9386. },
  9387. {
  9388. name: "Megamacro",
  9389. height: math.unit(11000, "meters")
  9390. },
  9391. {
  9392. name: "Gigamacro",
  9393. height: math.unit(11000, "km")
  9394. },
  9395. {
  9396. name: "Teramacro",
  9397. height: math.unit(420000, "km")
  9398. },
  9399. {
  9400. name: "Examacro",
  9401. height: math.unit(120, "parsecs")
  9402. },
  9403. {
  9404. name: "God Tho",
  9405. height: math.unit(98000000000, "parsecs")
  9406. },
  9407. ]
  9408. )
  9409. };
  9410. characterMakers["Scales"] = () => {
  9411. return makeCharacter(
  9412. "Scales",
  9413. "Scales",
  9414. {
  9415. taurFront: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(200, "lb"),
  9418. name: "Taur (Front)",
  9419. image: {
  9420. source: "./media/characters/scales/taur-front.svg",
  9421. extra: 1,
  9422. bottom: 0.05
  9423. }
  9424. },
  9425. taurBack: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(200, "lb"),
  9428. name: "Taur (Back)",
  9429. image: {
  9430. source: "./media/characters/scales/taur-back.svg",
  9431. extra: 1,
  9432. bottom: 0.08
  9433. }
  9434. },
  9435. anthro: {
  9436. height: math.unit(6*7/12, "feet"),
  9437. weight: math.unit(100, "lb"),
  9438. name: "Anthro",
  9439. image: {
  9440. source: "./media/characters/scales/anthro.svg",
  9441. extra: 1,
  9442. bottom: 0.06
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(12, "feet"),
  9450. default: true
  9451. },
  9452. ]
  9453. )
  9454. };
  9455. characterMakers["Koragos"] = () => {
  9456. return makeCharacter(
  9457. "Koragos",
  9458. "Koragos",
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(150, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/koragos/front.svg",
  9466. extra: 841/794 ,
  9467. bottom: 0.035
  9468. }
  9469. },
  9470. back: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(150, "lb"),
  9473. name: "Back",
  9474. image: {
  9475. source: "./media/characters/koragos/back.svg",
  9476. extra: 841/810 ,
  9477. bottom: 0.022
  9478. }
  9479. },
  9480. },
  9481. [
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(6 + 11/12, "feet"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(490, "feet")
  9490. },
  9491. {
  9492. name: "Megamacro",
  9493. height: math.unit(10, "miles")
  9494. },
  9495. {
  9496. name: "Gigamacro",
  9497. height: math.unit(50, "miles")
  9498. },
  9499. ]
  9500. )
  9501. };
  9502. characterMakers["Xylrem"] = () => {
  9503. return makeCharacter(
  9504. "Xylrem",
  9505. "",
  9506. {
  9507. front: {
  9508. height: math.unit(6, "feet"),
  9509. weight: math.unit(250, "lb"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/xylrem/front.svg",
  9513. extra: 3323/3050 ,
  9514. bottom: 0.065
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Micro",
  9521. height: math.unit(4, "feet")
  9522. },
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(16, "feet"),
  9526. default: true
  9527. },
  9528. {
  9529. name: "Macro",
  9530. height: math.unit(2720, "feet")
  9531. },
  9532. {
  9533. name: "Megamacro",
  9534. height: math.unit(25000, "miles")
  9535. },
  9536. ]
  9537. )
  9538. };
  9539. characterMakers["Ikideru"] = () => {
  9540. return makeCharacter(
  9541. "Ikideru",
  9542. "Ikideru",
  9543. {
  9544. front: {
  9545. height: math.unit(8, "feet"),
  9546. weight: math.unit(250, "kg"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/ikideru/front.svg",
  9550. extra: 930/870 ,
  9551. bottom: 0.087
  9552. }
  9553. },
  9554. back: {
  9555. height: math.unit(8, "feet"),
  9556. weight: math.unit(250, "kg"),
  9557. name: "Back",
  9558. image: {
  9559. source: "./media/characters/ikideru/back.svg",
  9560. extra: 919/852 ,
  9561. bottom: 0.055
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Rare",
  9568. height: math.unit(8, "feet"),
  9569. default: true
  9570. },
  9571. {
  9572. name: "Playful Loom",
  9573. height: math.unit(80, "feet")
  9574. },
  9575. {
  9576. name: "City Leaner",
  9577. height: math.unit(230, "feet")
  9578. },
  9579. {
  9580. name: "Megamacro",
  9581. height: math.unit(2500, "feet")
  9582. },
  9583. {
  9584. name: "Gigamacro",
  9585. height: math.unit(26400, "feet")
  9586. },
  9587. {
  9588. name: "Tectonic Shifter",
  9589. height: math.unit(1.7, "megameters")
  9590. },
  9591. {
  9592. name: "Planet Carer",
  9593. height: math.unit(21, "megameters")
  9594. },
  9595. {
  9596. name: "God",
  9597. height: math.unit(11157.22, "parsecs")
  9598. },
  9599. ]
  9600. )
  9601. };
  9602. characterMakers["Neo"] = () => {
  9603. return makeCharacter(
  9604. "Neo",
  9605. "neonsnake",
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(120, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/neo/front.svg"
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(2, "inches"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Human Size",
  9624. height: math.unit(5 + 8/12, "feet")
  9625. },
  9626. ]
  9627. )
  9628. };
  9629. characterMakers["Chauncey (Chantz)"] = () => {
  9630. return makeCharacter(
  9631. "Chauncey (Chantz)",
  9632. "RyGaLo",
  9633. {
  9634. front: {
  9635. height: math.unit(13 + 10/12, "feet"),
  9636. weight: math.unit(5320, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/chauncey-chantz/front.svg",
  9640. extra: 1587/1435 ,
  9641. bottom: 0.02
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(13 + 10/12, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(45, "feet")
  9654. },
  9655. {
  9656. name: "Megamacro",
  9657. height: math.unit(250, "miles")
  9658. },
  9659. {
  9660. name: "Planetary",
  9661. height: math.unit(10000, "miles")
  9662. },
  9663. {
  9664. name: "Galactic",
  9665. height: math.unit(40000, "parsecs")
  9666. },
  9667. {
  9668. name: "Universal",
  9669. height: math.unit(1, "yottameter")
  9670. },
  9671. ]
  9672. )
  9673. };
  9674. characterMakers["Epifox"] = () => {
  9675. return makeCharacter(
  9676. "Epifox",
  9677. "Epifox",
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(150, "lb"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/epifox/front.svg",
  9685. extra: 1,
  9686. bottom: 0.075
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Micro",
  9693. height: math.unit(6, "inches")
  9694. },
  9695. {
  9696. name: "Normal",
  9697. height: math.unit(12, "feet"),
  9698. default: true
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(3810, "feet")
  9703. },
  9704. {
  9705. name: "Megamacro",
  9706. height: math.unit(500, "miles")
  9707. },
  9708. ]
  9709. )
  9710. };
  9711. characterMakers["Colin T."] = () => {
  9712. return makeCharacter(
  9713. "Colin T.",
  9714. "DragonLugia58",
  9715. {
  9716. front: {
  9717. height: math.unit(1.8796, "m"),
  9718. weight: math.unit(230, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/colin-t/front.svg",
  9722. extra: 1272/1193 ,
  9723. bottom: 0.07
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Micro",
  9730. height: math.unit(0.571, "meters")
  9731. },
  9732. {
  9733. name: "Normal",
  9734. height: math.unit(1.8796, "meters"),
  9735. default: true
  9736. },
  9737. {
  9738. name: "Tall",
  9739. height: math.unit(4, "meters")
  9740. },
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(67.241, "meters")
  9744. },
  9745. {
  9746. name: "Megamacro",
  9747. height: math.unit(371.856, "meters")
  9748. },
  9749. {
  9750. name: "Planetary",
  9751. height: math.unit(12631.5689, "km")
  9752. },
  9753. ]
  9754. )
  9755. };
  9756. characterMakers["Matvei"] = () => {
  9757. return makeCharacter(
  9758. "Matvei",
  9759. "Matt_Da_Master",
  9760. {
  9761. front: {
  9762. height: math.unit(1.85, "meters"),
  9763. weight: math.unit(80, "kg"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/matvei/front.svg",
  9767. extra: 614/594 ,
  9768. bottom: 0.01
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(1.85, "meters"),
  9776. default: true
  9777. },
  9778. ]
  9779. )
  9780. };
  9781. characterMakers["Quincy"] = () => {
  9782. return makeCharacter(
  9783. "Quincy",
  9784. "Paradisaea",
  9785. {
  9786. front: {
  9787. height: math.unit(5 + 9/12, "feet"),
  9788. weight: math.unit(70, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/quincy/front.svg",
  9792. extra: 3041/2751
  9793. }
  9794. },
  9795. back: {
  9796. height: math.unit(5 + 9/12, "feet"),
  9797. weight: math.unit(70, "lb"),
  9798. name: "Back",
  9799. image: {
  9800. source: "./media/characters/quincy/back.svg",
  9801. extra: 3041/2751
  9802. }
  9803. },
  9804. flying: {
  9805. height: math.unit(5 + 4/12, "feet"),
  9806. weight: math.unit(70, "lb"),
  9807. name: "Flying",
  9808. image: {
  9809. source: "./media/characters/quincy/flying.svg",
  9810. extra: 1044/930
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Micro",
  9817. height: math.unit(3, "cm")
  9818. },
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(5 + 9/12, "feet")
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(200, "meters"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Megamacro",
  9830. height: math.unit(1000, "meters")
  9831. },
  9832. ]
  9833. )
  9834. };
  9835. characterMakers["Vanrel"] = () => {
  9836. return makeCharacter(
  9837. "Vanrel",
  9838. "KuiPaws",
  9839. {
  9840. front: {
  9841. height: math.unit(4 + 7/12, "feet"),
  9842. weight: math.unit(150, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/vanrel/front.svg",
  9846. extra: 1,
  9847. bottom: 0.02
  9848. }
  9849. },
  9850. side: {
  9851. height: math.unit(4 + 7/12, "feet"),
  9852. weight: math.unit(150, "lb"),
  9853. name: "Side",
  9854. image: {
  9855. source: "./media/characters/vanrel/side.svg",
  9856. extra: 1,
  9857. bottom: 0.025
  9858. }
  9859. },
  9860. tome: {
  9861. height: math.unit(1.35, "feet"),
  9862. weight: math.unit(10, "lb"),
  9863. name: "Vanrel's Tome",
  9864. rename: true,
  9865. image: {
  9866. source: "./media/characters/vanrel/tome.svg"
  9867. }
  9868. },
  9869. beans: {
  9870. height: math.unit(0.89, "feet"),
  9871. name: "Beans",
  9872. image: {
  9873. source: "./media/characters/vanrel/beans.svg"
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(4 + 7/12, "feet"),
  9881. default: true
  9882. },
  9883. ]
  9884. )
  9885. };
  9886. characterMakers["Kuiper Vanrel"] = () => {
  9887. return makeCharacter(
  9888. "Kuiper Vanrel",
  9889. "KuiPaws",
  9890. {
  9891. front: {
  9892. height: math.unit(7 + 5/12, "feet"),
  9893. weight: math.unit(150, "lb"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/kuiper-vanrel/front.svg",
  9897. extra: 1118/1068 ,
  9898. bottom: 0.09
  9899. }
  9900. },
  9901. foot: {
  9902. height: math.unit(0.55, "meters"),
  9903. name: "Foot",
  9904. image: {
  9905. source: "./media/characters/kuiper-vanrel/foot.svg",
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(7 + 5/12, "feet"),
  9913. default: true
  9914. },
  9915. ]
  9916. )
  9917. };
  9918. characterMakers["Keset Vanrel"] = () => {
  9919. return makeCharacter(
  9920. "Keset Vanrel",
  9921. "KuiPaws",
  9922. {
  9923. front: {
  9924. height: math.unit(8 + 5/12, "feet"),
  9925. weight: math.unit(150, "lb"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/keset-vanrel/front.svg",
  9929. extra: 1150/1084 ,
  9930. bottom: 0.05
  9931. }
  9932. },
  9933. hand: {
  9934. height: math.unit(0.6, "meters"),
  9935. name: "Hand",
  9936. image: {
  9937. source: "./media/characters/keset-vanrel/hand.svg"
  9938. }
  9939. },
  9940. foot: {
  9941. height: math.unit(0.94978, "meters"),
  9942. name: "Foot",
  9943. image: {
  9944. source: "./media/characters/keset-vanrel/foot.svg"
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(8 + 5/12, "feet"),
  9952. default: true
  9953. },
  9954. ]
  9955. )
  9956. };
  9957. characterMakers["Neos"] = () => {
  9958. return makeCharacter(
  9959. "Neos",
  9960. "CakeyCake",
  9961. {
  9962. front: {
  9963. height: math.unit(6, "feet"),
  9964. weight: math.unit(150, "lb"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/neos/front.svg",
  9968. extra: 1696/992 ,
  9969. bottom: 0.14
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(54, "cm"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(100, "m")
  9982. },
  9983. {
  9984. name: "Megamacro",
  9985. height: math.unit(10, "km")
  9986. },
  9987. {
  9988. name: "Megamacro+",
  9989. height: math.unit(100, "km")
  9990. },
  9991. {
  9992. name: "Gigamacro",
  9993. height: math.unit(100, "Mm")
  9994. },
  9995. {
  9996. name: "Teramacro",
  9997. height: math.unit(100, "Gm")
  9998. },
  9999. {
  10000. name: "Examacro",
  10001. height: math.unit(100, "Em")
  10002. },
  10003. {
  10004. name: "Godly",
  10005. height: math.unit(10000, "Ym")
  10006. },
  10007. {
  10008. name: "Beyond Godly",
  10009. height: math.unit(10000000, "Ym")
  10010. },
  10011. ]
  10012. )
  10013. };
  10014. characterMakers["Sammy Mouse"] = () => {
  10015. return makeCharacter(
  10016. "Sammy Mouse",
  10017. "Piedunk",
  10018. {
  10019. feminine: {
  10020. height: math.unit(5, "feet"),
  10021. weight: math.unit(100, "lb"),
  10022. name: "Feminine",
  10023. image: {
  10024. source: "./media/characters/sammy-mouse/feminine.svg",
  10025. extra: 2526/2425 ,
  10026. bottom: 0.123
  10027. }
  10028. },
  10029. masculine: {
  10030. height: math.unit(5, "feet"),
  10031. weight: math.unit(100, "lb"),
  10032. name: "Masculine",
  10033. image: {
  10034. source: "./media/characters/sammy-mouse/masculine.svg",
  10035. extra: 2526/2425 ,
  10036. bottom: 0.123
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Micro",
  10043. height: math.unit(5, "inches")
  10044. },
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(5, "feet"),
  10048. default: true
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(60, "feet")
  10053. },
  10054. ]
  10055. )
  10056. };
  10057. characterMakers["Kole"] = () => {
  10058. return makeCharacter(
  10059. "Kole",
  10060. "Cats_55",
  10061. {
  10062. front: {
  10063. height: math.unit(4, "feet"),
  10064. weight: math.unit(50, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/kole/front.svg",
  10068. extra: 1423/1303 ,
  10069. bottom: 0.025
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(4, "feet"),
  10074. weight: math.unit(50, "lb"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/kole/back.svg",
  10078. extra: 1426/1280 ,
  10079. bottom: 0.02
  10080. }
  10081. },
  10082. },
  10083. [
  10084. {
  10085. name: "Normal",
  10086. height: math.unit(4, "feet"),
  10087. default: true
  10088. },
  10089. ]
  10090. )
  10091. };
  10092. characterMakers["Rufran"] = () => {
  10093. return makeCharacter(
  10094. "Rufran",
  10095. "Rufran",
  10096. {
  10097. front: {
  10098. height: math.unit(2 + 6/12, "feet"),
  10099. weight: math.unit(20, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/rufran/front.svg",
  10103. extra: 2041/1839 ,
  10104. bottom: 0.055
  10105. }
  10106. },
  10107. back: {
  10108. height: math.unit(2 + 6/12, "feet"),
  10109. weight: math.unit(20, "lb"),
  10110. name: "Back",
  10111. image: {
  10112. source: "./media/characters/rufran/back.svg",
  10113. extra: 2054/1839 ,
  10114. bottom: 0.01
  10115. }
  10116. },
  10117. hand: {
  10118. height: math.unit(0.2166, "meters"),
  10119. name: "Hand",
  10120. image: {
  10121. source: "./media/characters/rufran/hand.svg"
  10122. }
  10123. },
  10124. foot: {
  10125. height: math.unit(0.185, "meters"),
  10126. name: "Foot",
  10127. image: {
  10128. source: "./media/characters/rufran/foot.svg"
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Micro",
  10135. height: math.unit(1, "inch")
  10136. },
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(2 + 6/12, "feet"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Big",
  10144. height: math.unit(60, "feet")
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(325, "feet")
  10149. },
  10150. ]
  10151. )
  10152. };
  10153. characterMakers["Chip"] = () => {
  10154. return makeCharacter(
  10155. "Chip",
  10156. "Chiptuni",
  10157. {
  10158. front: {
  10159. height: math.unit(0.3, "meters"),
  10160. weight: math.unit(3.5, "kg"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/chip/front.svg",
  10164. extra: 748/674
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(1, "inch"),
  10172. default: true
  10173. },
  10174. ]
  10175. )
  10176. };
  10177. characterMakers["Torvid"] = () => {
  10178. return makeCharacter(
  10179. "Torvid",
  10180. "Torvid",
  10181. {
  10182. side: {
  10183. height: math.unit(2.3, "meters"),
  10184. weight: math.unit(3500, "lb"),
  10185. name: "Side",
  10186. image: {
  10187. source: "./media/characters/torvid/side.svg",
  10188. extra: 1972/722 ,
  10189. bottom: 0.035
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Normal",
  10196. height: math.unit(2.3, "meters"),
  10197. default: true
  10198. },
  10199. ]
  10200. )
  10201. };
  10202. characterMakers["Susan"] = () => {
  10203. return makeCharacter(
  10204. "Susan",
  10205. "Jasmith",
  10206. {
  10207. front: {
  10208. height: math.unit(2, "meters"),
  10209. weight: math.unit(150.5, "kg"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/susan/front.svg",
  10213. extra: 693/635 ,
  10214. bottom: 0.05
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Megamacro",
  10221. height: math.unit(505, "miles"),
  10222. default: true
  10223. },
  10224. ]
  10225. )
  10226. };
  10227. characterMakers["Raindrops"] = () => {
  10228. return makeCharacter(
  10229. "Raindrops",
  10230. "RaindropsJFL",
  10231. {
  10232. front: {
  10233. height: math.unit(6, "feet"),
  10234. weight: math.unit(150, "lb"),
  10235. name: "Front",
  10236. image: {
  10237. source: "./media/characters/raindrops/front.svg",
  10238. extra: 2655/2461 ,
  10239. bottom: 0.02
  10240. }
  10241. },
  10242. back: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Back",
  10246. image: {
  10247. source: "./media/characters/raindrops/back.svg",
  10248. extra: 2574/2400 ,
  10249. bottom: 0.03
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(6, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(6 + 2/12, "feet")
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(131, "feet"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(15, "miles")
  10270. },
  10271. {
  10272. name: "Gigamacro",
  10273. height: math.unit(4000, "miles")
  10274. },
  10275. {
  10276. name: "Teramacro",
  10277. height: math.unit(315000, "miles")
  10278. },
  10279. ]
  10280. )
  10281. };
  10282. characterMakers["Tezwa"] = () => {
  10283. return makeCharacter(
  10284. "Tezwa",
  10285. "TitanTezwa",
  10286. {
  10287. front: {
  10288. height: math.unit(2.794, "meters"),
  10289. weight: math.unit(325, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/tezwa/front.svg",
  10293. extra: 2083/1906 ,
  10294. bottom: 0.031
  10295. }
  10296. },
  10297. foot: {
  10298. height: math.unit(0.687, "meters"),
  10299. name: "Foot",
  10300. image: {
  10301. source: "./media/characters/tezwa/foot.svg"
  10302. }
  10303. },
  10304. },
  10305. [
  10306. {
  10307. name: "Normal",
  10308. height: math.unit(9 + 2/12, "feet"),
  10309. default: true
  10310. },
  10311. ]
  10312. )
  10313. };
  10314. characterMakers["Typhus"] = () => {
  10315. return makeCharacter(
  10316. "Typhus",
  10317. "Jasmith",
  10318. {
  10319. front: {
  10320. height: math.unit(58, "feet"),
  10321. weight: math.unit(89000, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/typhus/front.svg",
  10325. extra: 816/800 ,
  10326. bottom: 0.065
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Macro",
  10333. height: math.unit(58, "feet"),
  10334. default: true
  10335. },
  10336. ]
  10337. )
  10338. };
  10339. characterMakers["Lyra Von Wulf"] = () => {
  10340. return makeCharacter(
  10341. "Lyra Von Wulf",
  10342. "LyraVonWulf",
  10343. {
  10344. front: {
  10345. height: math.unit(12, "feet"),
  10346. weight: math.unit(6, "tonnes"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/lyra-von-wulf/front.svg",
  10350. extra: 1,
  10351. bottom: 0.10
  10352. }
  10353. },
  10354. frontMecha: {
  10355. height: math.unit(12, "feet"),
  10356. weight: math.unit(12, "tonnes"),
  10357. name: "Front (Mecha)",
  10358. image: {
  10359. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10360. extra: 1,
  10361. bottom: 0.042
  10362. }
  10363. },
  10364. maw: {
  10365. height: math.unit(2.2, "feet"),
  10366. name: "Maw",
  10367. image: {
  10368. source: "./media/characters/lyra-von-wulf/maw.svg"
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(12, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Classic",
  10380. height: math.unit(50, "feet")
  10381. },
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(500, "feet")
  10385. },
  10386. {
  10387. name: "Megamacro",
  10388. height: math.unit(1, "mile")
  10389. },
  10390. {
  10391. name: "Gigamacro",
  10392. height: math.unit(400, "miles")
  10393. },
  10394. {
  10395. name: "Teramacro",
  10396. height: math.unit(22000, "miles")
  10397. },
  10398. {
  10399. name: "Solarmacro",
  10400. height: math.unit(8600000, "miles")
  10401. },
  10402. {
  10403. name: "Galactic",
  10404. height: math.unit(1057000, "lightyears")
  10405. },
  10406. ]
  10407. )
  10408. };
  10409. characterMakers["Dixon"] = () => {
  10410. return makeCharacter(
  10411. "Dixon",
  10412. "Seabury",
  10413. {
  10414. front: {
  10415. height: math.unit(6 + 10/12, "feet"),
  10416. weight: math.unit(150, "lb"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/dixon/front.svg",
  10420. extra: 3361/3209 ,
  10421. bottom: 0.01
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(6 + 10/12, "feet"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Big",
  10433. height: math.unit(12, "meters")
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(500, "meters")
  10438. },
  10439. {
  10440. name: "Megamacro",
  10441. height: math.unit(2, "km")
  10442. },
  10443. ]
  10444. )
  10445. };
  10446. characterMakers["Kauko"] = () => {
  10447. return makeCharacter(
  10448. "Kauko",
  10449. "Kauko",
  10450. {
  10451. front: {
  10452. height: math.unit(185, "cm"),
  10453. weight: math.unit(68, "kg"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/kauko/front.svg",
  10457. extra: 1455/1421 ,
  10458. bottom: 0.03
  10459. }
  10460. },
  10461. back: {
  10462. height: math.unit(185, "cm"),
  10463. weight: math.unit(68, "kg"),
  10464. name: "Back",
  10465. image: {
  10466. source: "./media/characters/kauko/back.svg",
  10467. extra: 1455/1421 ,
  10468. bottom: 0.004
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(185, "cm"),
  10476. default: true
  10477. },
  10478. ]
  10479. )
  10480. };
  10481. characterMakers["Varg"] = () => {
  10482. return makeCharacter(
  10483. "Varg",
  10484. "va0027",
  10485. {
  10486. front: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(150, "kg"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/varg/front.svg",
  10492. extra: 1108/1018 ,
  10493. bottom: 0.0375
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(5, "meters")
  10501. },
  10502. {
  10503. name: "Gigamacro",
  10504. height: math.unit(211, "km"),
  10505. default: true
  10506. },
  10507. ]
  10508. )
  10509. };
  10510. characterMakers["Dayza"] = () => {
  10511. return makeCharacter(
  10512. "Dayza",
  10513. "Vonadi",
  10514. {
  10515. front: {
  10516. height: math.unit(7 + 7/12, "feet"),
  10517. weight: math.unit(267, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/dayza/front.svg",
  10521. extra: 1262/1200 ,
  10522. bottom: 0.035
  10523. }
  10524. },
  10525. side: {
  10526. height: math.unit(7 + 7/12, "feet"),
  10527. weight: math.unit(267, "lb"),
  10528. name: "Side",
  10529. image: {
  10530. source: "./media/characters/dayza/side.svg",
  10531. extra: 1295/1245 ,
  10532. bottom: 0.05
  10533. }
  10534. },
  10535. back: {
  10536. height: math.unit(7 + 7/12, "feet"),
  10537. weight: math.unit(267, "lb"),
  10538. name: "Back",
  10539. image: {
  10540. source: "./media/characters/dayza/back.svg",
  10541. extra: 1241/1170
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(7 + 7/12, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(155, "feet")
  10554. },
  10555. ]
  10556. )
  10557. };
  10558. characterMakers["Xanthos"] = () => {
  10559. return makeCharacter(
  10560. "Xanthos",
  10561. "ArgentVZ",
  10562. {
  10563. front: {
  10564. height: math.unit(6 + 5/12, "feet"),
  10565. weight: math.unit(160, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/xanthos/front.svg",
  10569. extra: 1,
  10570. bottom: 0.04
  10571. }
  10572. },
  10573. back: {
  10574. height: math.unit(6 + 5/12, "feet"),
  10575. weight: math.unit(160, "lb"),
  10576. name: "Back",
  10577. image: {
  10578. source: "./media/characters/xanthos/back.svg",
  10579. extra: 1,
  10580. bottom: 0.03
  10581. }
  10582. },
  10583. hand: {
  10584. height: math.unit(0.928, "feet"),
  10585. name: "Hand",
  10586. image: {
  10587. source: "./media/characters/xanthos/hand.svg"
  10588. }
  10589. },
  10590. foot: {
  10591. height: math.unit(1.286, "feet"),
  10592. name: "Foot",
  10593. image: {
  10594. source: "./media/characters/xanthos/foot.svg"
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(6 + 5/12, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Normal+",
  10606. height: math.unit(6, "meters")
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(40, "feet")
  10611. },
  10612. {
  10613. name: "Macro+",
  10614. height: math.unit(200, "meters")
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(20, "km")
  10619. },
  10620. {
  10621. name: "Megamacro+",
  10622. height: math.unit(100, "km")
  10623. },
  10624. ]
  10625. )
  10626. };
  10627. characterMakers["Grynn"] = () => {
  10628. return makeCharacter(
  10629. "Grynn",
  10630. "Grynn",
  10631. {
  10632. front: {
  10633. height: math.unit(6 + 3/12, "feet"),
  10634. weight: math.unit(215, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/grynn/front.svg",
  10638. extra: 4627/4209 ,
  10639. bottom: 0.047
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(6, "inches")
  10647. },
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(6 + 3/12, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Big",
  10655. height: math.unit(104, "feet")
  10656. },
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(944, "feet")
  10660. },
  10661. {
  10662. name: "Macro+",
  10663. height: math.unit(9480, "feet")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(78752, "feet")
  10668. },
  10669. {
  10670. name: "Megamacro+",
  10671. height: math.unit(630128, "feet")
  10672. },
  10673. {
  10674. name: "Megamacro++",
  10675. height: math.unit(3150695, "feet")
  10676. },
  10677. ]
  10678. )
  10679. };
  10680. characterMakers["Mocha Aura"] = () => {
  10681. return makeCharacter(
  10682. "Mocha Aura",
  10683. "Mocha-Aura",
  10684. {
  10685. front: {
  10686. height: math.unit(7 + 5/12, "feet"),
  10687. weight: math.unit(450, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/mocha-aura/front.svg",
  10691. extra: 1907/1817 ,
  10692. bottom: 0.04
  10693. }
  10694. },
  10695. back: {
  10696. height: math.unit(7 + 5/12, "feet"),
  10697. weight: math.unit(450, "lb"),
  10698. name: "Back",
  10699. image: {
  10700. source: "./media/characters/mocha-aura/back.svg",
  10701. extra: 1900/1825 ,
  10702. bottom: 0.045
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Nano",
  10709. height: math.unit(1, "nm")
  10710. },
  10711. {
  10712. name: "Megamicro",
  10713. height: math.unit(1, "mm")
  10714. },
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(3, "inches")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(7 + 5/12, "feet"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(30, "feet")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(3500, "feet")
  10731. },
  10732. {
  10733. name: "Teramacro",
  10734. height: math.unit(500000, "miles")
  10735. },
  10736. {
  10737. name: "Petamacro",
  10738. height: math.unit(50000000000000000 , "parsecs")
  10739. },
  10740. ]
  10741. )
  10742. };
  10743. characterMakers["Ilisha Devya"] = () => {
  10744. return makeCharacter(
  10745. "Ilisha Devya",
  10746. "Neopuc",
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(150, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/ilisha-devya/front.svg",
  10754. extra: 1,
  10755. bottom: 0.175
  10756. }
  10757. },
  10758. back: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Back",
  10762. image: {
  10763. source: "./media/characters/ilisha-devya/back.svg",
  10764. extra: 1,
  10765. bottom: 0.015
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Macro",
  10772. height: math.unit(500, "feet"),
  10773. default: true
  10774. },
  10775. {
  10776. name: "Megamacro",
  10777. height: math.unit(10, "miles")
  10778. },
  10779. {
  10780. name: "Gigamacro",
  10781. height: math.unit(100000, "miles")
  10782. },
  10783. {
  10784. name: "Examacro",
  10785. height: math.unit(1e9, "lightyears")
  10786. },
  10787. {
  10788. name: "Omniversal",
  10789. height: math.unit(1e33, "lightyears")
  10790. },
  10791. {
  10792. name: "Beyond Infinite",
  10793. height: math.unit(1e100, "lightyears")
  10794. },
  10795. ]
  10796. )
  10797. };
  10798. characterMakers["Mira"] = () => {
  10799. return makeCharacter(
  10800. "Mira",
  10801. "Neopuc",
  10802. {
  10803. Side: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(150, "lb"),
  10806. name: "Side",
  10807. image: {
  10808. source: "./media/characters/mira/side.svg",
  10809. extra: 900/799 ,
  10810. bottom: 0.02
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Human Size",
  10817. height: math.unit(6, "feet")
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(100, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(10, "miles")
  10827. },
  10828. {
  10829. name: "Gigamacro",
  10830. height: math.unit(25000, "miles")
  10831. },
  10832. {
  10833. name: "Teramacro",
  10834. height: math.unit(300, "AU")
  10835. },
  10836. {
  10837. name: "Full Size",
  10838. height: math.unit(4.5e10, "lightyears")
  10839. },
  10840. ]
  10841. )
  10842. };
  10843. characterMakers["Holly"] = () => {
  10844. return makeCharacter(
  10845. "Holly",
  10846. "Neopuc",
  10847. {
  10848. front: {
  10849. height: math.unit(6, "feet"),
  10850. weight: math.unit(150, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/holly/front.svg",
  10854. extra: 639/606
  10855. }
  10856. },
  10857. back: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(150, "lb"),
  10860. name: "Back",
  10861. image: {
  10862. source: "./media/characters/holly/back.svg",
  10863. extra: 623/598
  10864. }
  10865. },
  10866. frontWorking: {
  10867. height: math.unit(6, "feet"),
  10868. weight: math.unit(150, "lb"),
  10869. name: "Front (Working)",
  10870. image: {
  10871. source: "./media/characters/holly/front-working.svg",
  10872. extra: 607/577 ,
  10873. bottom: 0.048
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(12 + 3/12, "feet"),
  10881. default: true
  10882. },
  10883. ]
  10884. )
  10885. };
  10886. characterMakers["Porter"] = () => {
  10887. return makeCharacter(
  10888. "Porter",
  10889. "Neopuc",
  10890. {
  10891. front: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(150, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/porter/front.svg",
  10897. extra: 1,
  10898. bottom: 0.01
  10899. }
  10900. },
  10901. frontRobes: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(150, "lb"),
  10904. name: "Front (Robes)",
  10905. image: {
  10906. source: "./media/characters/porter/front-robes.svg",
  10907. extra: 1.01 ,
  10908. bottom: 0.01
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(11 + 9/12, "feet"),
  10916. default: true
  10917. },
  10918. ]
  10919. )
  10920. };
  10921. characterMakers["Lucy"] = () => {
  10922. return makeCharacter(
  10923. "Lucy",
  10924. "Jasmith",
  10925. {
  10926. legendary: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Legendary",
  10930. image: {
  10931. source: "./media/characters/lucy/legendary.svg",
  10932. extra: 1355/1100 ,
  10933. bottom: 0.045
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Legendary",
  10940. height: math.unit(86882*2, "miles"),
  10941. default: true
  10942. },
  10943. ]
  10944. )
  10945. };
  10946. characterMakers["Drusilla"] = () => {
  10947. return makeCharacter(
  10948. "Drusilla",
  10949. "Neopuc",
  10950. {
  10951. front: {
  10952. height: math.unit(6, "feet"),
  10953. weight: math.unit(150, "lb"),
  10954. name: "Front",
  10955. image: {
  10956. source: "./media/characters/drusilla/front.svg",
  10957. extra: 678/635 ,
  10958. bottom: 0.03
  10959. }
  10960. },
  10961. back: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Back",
  10965. image: {
  10966. source: "./media/characters/drusilla/back.svg",
  10967. extra: 678/635 ,
  10968. bottom: 0.005
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(100, "feet")
  10976. },
  10977. {
  10978. name: "Canon Height",
  10979. height: math.unit(2000, "feet"),
  10980. default: true
  10981. },
  10982. ]
  10983. )
  10984. };
  10985. characterMakers["Renard Thatch"] = () => {
  10986. return makeCharacter(
  10987. "Renard Thatch",
  10988. "Renard Thatch",
  10989. {
  10990. front: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(180, "lb"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/renard-thatch/front.svg",
  10996. extra: 2411/2275 ,
  10997. bottom: 0.01
  10998. }
  10999. },
  11000. frontPosing: {
  11001. height: math.unit(6, "feet"),
  11002. weight: math.unit(180, "lb"),
  11003. name: "Front (Posing)",
  11004. image: {
  11005. source: "./media/characters/renard-thatch/front-posing.svg",
  11006. extra: 2381/2261 ,
  11007. bottom: 0.01
  11008. }
  11009. },
  11010. back: {
  11011. height: math.unit(6, "feet"),
  11012. weight: math.unit(180, "lb"),
  11013. name: "Back",
  11014. image: {
  11015. source: "./media/characters/renard-thatch/back.svg",
  11016. extra: 2428/2288
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Micro",
  11023. height: math.unit(3, "inches")
  11024. },
  11025. {
  11026. name: "Default",
  11027. height: math.unit(6, "feet"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Macro",
  11032. height: math.unit(75, "feet")
  11033. },
  11034. ]
  11035. )
  11036. };
  11037. characterMakers["Sekvra"] = () => {
  11038. return makeCharacter(
  11039. "Sekvra",
  11040. "Neopuc",
  11041. {
  11042. front: {
  11043. height: math.unit(1450, "feet"),
  11044. weight: math.unit(1.21e6, "tons"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/sekvra/front.svg",
  11048. extra: 1,
  11049. bottom: 0.03
  11050. }
  11051. },
  11052. frontClothed: {
  11053. height: math.unit(1450, "feet"),
  11054. weight: math.unit(1.21e6, "tons"),
  11055. name: "Front (Clothed)",
  11056. image: {
  11057. source: "./media/characters/sekvra/front-clothed.svg",
  11058. extra: 1,
  11059. bottom: 0.03
  11060. }
  11061. },
  11062. side: {
  11063. height: math.unit(1450, "feet"),
  11064. weight: math.unit(1.21e6, "tons"),
  11065. name: "Side",
  11066. image: {
  11067. source: "./media/characters/sekvra/side.svg",
  11068. extra: 1,
  11069. bottom: 0.025
  11070. }
  11071. },
  11072. back: {
  11073. height: math.unit(1450, "feet"),
  11074. weight: math.unit(1.21e6, "tons"),
  11075. name: "Back",
  11076. image: {
  11077. source: "./media/characters/sekvra/back.svg",
  11078. extra: 1,
  11079. bottom: 0.005
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(1450, "feet"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(15000, "feet")
  11092. },
  11093. ]
  11094. )
  11095. };
  11096. characterMakers["Carmine"] = () => {
  11097. return makeCharacter(
  11098. "Carmine",
  11099. "Neopuc",
  11100. {
  11101. front: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(150, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/carmine/front.svg",
  11107. extra: 1,
  11108. bottom: 0.035
  11109. }
  11110. },
  11111. frontArmor: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front (Armor)",
  11115. image: {
  11116. source: "./media/characters/carmine/front-armor.svg",
  11117. extra: 1,
  11118. bottom: 0.035
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Large",
  11125. height: math.unit(1, "mile")
  11126. },
  11127. {
  11128. name: "Huge",
  11129. height: math.unit(40, "miles"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Colossal",
  11134. height: math.unit(2500, "miles")
  11135. },
  11136. ]
  11137. )
  11138. };
  11139. characterMakers["Elyssia"] = () => {
  11140. return makeCharacter(
  11141. "Elyssia",
  11142. "Neopuc",
  11143. {
  11144. front: {
  11145. height: math.unit(6, "feet"),
  11146. weight: math.unit(150, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/elyssia/front.svg",
  11150. extra: 2201/2035 ,
  11151. bottom: 0.05
  11152. }
  11153. },
  11154. frontClothed: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(150, "lb"),
  11157. name: "Front (Clothed)",
  11158. image: {
  11159. source: "./media/characters/elyssia/front-clothed.svg",
  11160. extra: 2201/2035 ,
  11161. bottom: 0.05
  11162. }
  11163. },
  11164. back: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Back",
  11168. image: {
  11169. source: "./media/characters/elyssia/back.svg",
  11170. extra: 2201/2035 ,
  11171. bottom: 0.013
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Smaller",
  11178. height: math.unit(150, "feet")
  11179. },
  11180. {
  11181. name: "Standard",
  11182. height: math.unit(1400, "feet"),
  11183. default: true
  11184. },
  11185. {
  11186. name: "Distracted",
  11187. height: math.unit(15000, "feet")
  11188. },
  11189. ]
  11190. )
  11191. };
  11192. characterMakers["Geno Maxwell"] = () => {
  11193. return makeCharacter(
  11194. "Geno Maxwell",
  11195. "Geckonori",
  11196. {
  11197. front: {
  11198. height: math.unit(7 + 4/12, "feet"),
  11199. weight: math.unit(500, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/geno-maxwell/front.svg",
  11203. extra: 2207/2040 ,
  11204. bottom: 0.015
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(3, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(7 + 4/12, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(220, "feet")
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(11, "miles")
  11225. },
  11226. ]
  11227. )
  11228. };
  11229. characterMakers["Regena Maxwell"] = () => {
  11230. return makeCharacter(
  11231. "Regena Maxwell",
  11232. "Geckonori",
  11233. {
  11234. front: {
  11235. height: math.unit(7 + 4/12, "feet"),
  11236. weight: math.unit(500, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/regena-maxwell/front.svg",
  11240. extra: 3115/2770 ,
  11241. bottom: 0.02
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(7 + 4/12, "feet"),
  11249. default: true
  11250. },
  11251. {
  11252. name: "Macro",
  11253. height: math.unit(220, "feet")
  11254. },
  11255. {
  11256. name: "Megamacro",
  11257. height: math.unit(11, "miles")
  11258. },
  11259. ]
  11260. )
  11261. };
  11262. characterMakers["XGlidingDragonX"] = () => {
  11263. return makeCharacter(
  11264. "XGlidingDragonX",
  11265. "XGlidingDragonX",
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11273. extra: 860/690 ,
  11274. bottom: 0.03
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(1.7, "meters"),
  11282. default: true
  11283. },
  11284. ]
  11285. )
  11286. };
  11287. characterMakers["Quilly"] = () => {
  11288. return makeCharacter(
  11289. "Quilly",
  11290. "Jasmith",
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/quilly/front.svg",
  11298. extra: 890/776
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Gigamacro",
  11305. height: math.unit(404090, "miles"),
  11306. default: true
  11307. },
  11308. ]
  11309. )
  11310. };
  11311. characterMakers["Tempest"] = () => {
  11312. return makeCharacter(
  11313. "Tempest",
  11314. "XsomeoneX",
  11315. {
  11316. front: {
  11317. height: math.unit(7 + 8/12, "feet"),
  11318. weight: math.unit(350, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/tempest/front.svg",
  11322. extra: 1175/1086 ,
  11323. bottom: 0.02
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Normal",
  11330. height: math.unit(7 + 8/12, "feet"),
  11331. default: true
  11332. },
  11333. ]
  11334. )
  11335. };
  11336. characterMakers["Rodger"] = () => {
  11337. return makeCharacter(
  11338. "Rodger",
  11339. "Guywithastupidname",
  11340. {
  11341. side: {
  11342. height: math.unit(4 + 5/12, "feet"),
  11343. weight: math.unit(80, "lb"),
  11344. name: "Side",
  11345. image: {
  11346. source: "./media/characters/rodger/side.svg",
  11347. extra: 1235/1118
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Micro",
  11354. height: math.unit(1, "inch")
  11355. },
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(4 + 5/12, "feet"),
  11359. default: true
  11360. },
  11361. {
  11362. name: "Macro",
  11363. height: math.unit(120, "feet")
  11364. },
  11365. ]
  11366. )
  11367. };
  11368. characterMakers["Danyel"] = () => {
  11369. return makeCharacter(
  11370. "Danyel",
  11371. "Danyelx",
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(150, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/danyel/front.svg",
  11379. extra: 1185/1123 ,
  11380. bottom: 0.05
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Shrunken",
  11387. height: math.unit(0.5, "mm")
  11388. },
  11389. {
  11390. name: "Micro",
  11391. height: math.unit(1, "mm"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Upsized",
  11396. height: math.unit(5 + 5/12, "feet")
  11397. },
  11398. ]
  11399. )
  11400. };
  11401. characterMakers["Vivian Bijoux"] = () => {
  11402. return makeCharacter(
  11403. "Vivian Bijoux",
  11404. "Geckonori",
  11405. {
  11406. front: {
  11407. height: math.unit(5 + 6/12, "feet"),
  11408. weight: math.unit(200, "lb"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/vivian-bijoux/front.svg",
  11412. extra: 1,
  11413. bottom: 0.072
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Normal",
  11420. height: math.unit(5 + 6/12, "feet"),
  11421. default: true
  11422. },
  11423. {
  11424. name: "Bad Dream",
  11425. height: math.unit(500, "feet")
  11426. },
  11427. {
  11428. name: "Nightmare",
  11429. height: math.unit(500, "miles")
  11430. },
  11431. ]
  11432. )
  11433. };
  11434. characterMakers["Zeta"] = () => {
  11435. return makeCharacter(
  11436. "Zeta",
  11437. "thenerdherd102",
  11438. {
  11439. front: {
  11440. height: math.unit(6 + 1/12, "feet"),
  11441. weight: math.unit(260, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/zeta/front.svg",
  11445. extra: 1968/1889 ,
  11446. bottom: 0.06
  11447. }
  11448. },
  11449. back: {
  11450. height: math.unit(6 + 1/12, "feet"),
  11451. weight: math.unit(260, "lb"),
  11452. name: "Back",
  11453. image: {
  11454. source: "./media/characters/zeta/back.svg",
  11455. extra: 1944/1858 ,
  11456. bottom: 0.03
  11457. }
  11458. },
  11459. hand: {
  11460. height: math.unit(1.112, "feet"),
  11461. name: "Hand",
  11462. image: {
  11463. source: "./media/characters/zeta/hand.svg"
  11464. }
  11465. },
  11466. foot: {
  11467. height: math.unit(1.48, "feet"),
  11468. name: "Foot",
  11469. image: {
  11470. source: "./media/characters/zeta/foot.svg"
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Micro",
  11477. height: math.unit(6, "inches")
  11478. },
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(6 + 1/12, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(20, "feet")
  11487. },
  11488. ]
  11489. )
  11490. };
  11491. characterMakers["Jamie Larsen"] = () => {
  11492. return makeCharacter(
  11493. "Jamie Larsen",
  11494. "Mt_Jamie_Larsen",
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(150, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/jamie-larsen/front.svg",
  11502. extra: 962/933 ,
  11503. bottom: 0.02
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/jamie-larsen/back.svg",
  11512. extra: 997/946
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Macro",
  11519. height: math.unit(28 + 7/12, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Macro+",
  11524. height: math.unit(180, "feet")
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(10, "miles")
  11529. },
  11530. {
  11531. name: "Gigamacro",
  11532. height: math.unit(200000, "miles")
  11533. },
  11534. ]
  11535. )
  11536. };
  11537. characterMakers["Vance"] = () => {
  11538. return makeCharacter(
  11539. "Vance",
  11540. "Neopuc",
  11541. {
  11542. front: {
  11543. height: math.unit(6, "feet"),
  11544. weight: math.unit(120, "lb"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/vance/front.svg",
  11548. extra: 1980/1890 ,
  11549. bottom: 0.09
  11550. }
  11551. },
  11552. back: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(120, "lb"),
  11555. name: "Back",
  11556. image: {
  11557. source: "./media/characters/vance/back.svg",
  11558. extra: 2081/1994 ,
  11559. bottom: 0.014
  11560. }
  11561. },
  11562. hand: {
  11563. height: math.unit(0.88, "feet"),
  11564. name: "Hand",
  11565. image: {
  11566. source: "./media/characters/vance/hand.svg"
  11567. }
  11568. },
  11569. foot: {
  11570. height: math.unit(0.64, "feet"),
  11571. name: "Foot",
  11572. image: {
  11573. source: "./media/characters/vance/foot.svg"
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Small",
  11580. height: math.unit(90, "feet"),
  11581. default: true
  11582. },
  11583. {
  11584. name: "Macro",
  11585. height: math.unit(100, "meters")
  11586. },
  11587. {
  11588. name: "Megamacro",
  11589. height: math.unit(15, "miles")
  11590. },
  11591. ]
  11592. )
  11593. };
  11594. characterMakers["Xochitl"] = () => {
  11595. return makeCharacter(
  11596. "Xochitl",
  11597. "Neopuc",
  11598. {
  11599. front: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(180, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/xochitl/front.svg",
  11605. extra: 2297/2261 ,
  11606. bottom: 0.065
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(180, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/xochitl/back.svg",
  11615. extra: 2386/2354 ,
  11616. bottom: 0.01
  11617. }
  11618. },
  11619. foot: {
  11620. height: math.unit(6/5 * 1.15, "feet"),
  11621. weight: math.unit(150, "lb"),
  11622. name: "Foot",
  11623. image: {
  11624. source: "./media/characters/xochitl/foot.svg"
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(80, "feet")
  11632. },
  11633. {
  11634. name: "Macro+",
  11635. height: math.unit(400, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Gigamacro",
  11640. height: math.unit(80000, "miles")
  11641. },
  11642. {
  11643. name: "Gigamacro+",
  11644. height: math.unit(400000, "miles")
  11645. },
  11646. {
  11647. name: "Teramacro",
  11648. height: math.unit(300, "AU")
  11649. },
  11650. ]
  11651. )
  11652. };
  11653. characterMakers["Vincent"] = () => {
  11654. return makeCharacter(
  11655. "Vincent",
  11656. "Neopuc",
  11657. {
  11658. front: {
  11659. height: math.unit(6, "feet"),
  11660. weight: math.unit(150, "lb"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/vincent/front.svg",
  11664. extra: 1130/1080 ,
  11665. bottom: 0.055
  11666. }
  11667. },
  11668. beak: {
  11669. height: math.unit(6 * 0.1, "feet"),
  11670. name: "Beak",
  11671. image: {
  11672. source: "./media/characters/vincent/beak.svg"
  11673. }
  11674. },
  11675. hand: {
  11676. height: math.unit(6 * 0.85, "feet"),
  11677. weight: math.unit(150, "lb"),
  11678. name: "Hand",
  11679. image: {
  11680. source: "./media/characters/vincent/hand.svg"
  11681. }
  11682. },
  11683. foot: {
  11684. height: math.unit(6 * 0.19, "feet"),
  11685. weight: math.unit(150, "lb"),
  11686. name: "Foot",
  11687. image: {
  11688. source: "./media/characters/vincent/foot.svg"
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Base",
  11695. height: math.unit(6 + 5/12, "feet"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Macro",
  11700. height: math.unit(300, "feet")
  11701. },
  11702. {
  11703. name: "Megamacro",
  11704. height: math.unit(2, "miles")
  11705. },
  11706. {
  11707. name: "Gigamacro",
  11708. height: math.unit(1000, "miles")
  11709. },
  11710. ]
  11711. )
  11712. };
  11713. characterMakers["Jay"] = () => {
  11714. return makeCharacter(
  11715. "Jay",
  11716. "J-Forse",
  11717. {
  11718. front: {
  11719. height: math.unit(6 + 2/12, "feet"),
  11720. weight: math.unit(65, "lb"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/jay/front.svg",
  11724. extra: 1510/1430 ,
  11725. bottom: 0.042
  11726. }
  11727. },
  11728. back: {
  11729. height: math.unit(6 + 2/12, "feet"),
  11730. weight: math.unit(65, "lb"),
  11731. name: "Back",
  11732. image: {
  11733. source: "./media/characters/jay/back.svg",
  11734. extra: 1510/1430 ,
  11735. bottom: 0.025
  11736. }
  11737. },
  11738. clothed: {
  11739. height: math.unit(6 + 2/12, "feet"),
  11740. weight: math.unit(65, "lb"),
  11741. name: "Front (Clothed)",
  11742. image: {
  11743. source: "./media/characters/jay/clothed.svg",
  11744. extra: 744/699 ,
  11745. bottom: 0.043
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Micro",
  11752. height: math.unit(1, "inch")
  11753. },
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(6 + 2/12, "feet"),
  11757. default: true
  11758. },
  11759. {
  11760. name: "Macro",
  11761. height: math.unit(1, "mile")
  11762. },
  11763. {
  11764. name: "Megamacro",
  11765. height: math.unit(100, "miles")
  11766. },
  11767. ]
  11768. )
  11769. };
  11770. characterMakers["Coatl"] = () => {
  11771. return makeCharacter(
  11772. "Coatl",
  11773. "Jagaz",
  11774. {
  11775. front: {
  11776. height: math.unit(2, "meters"),
  11777. weight: math.unit(500 , "kg"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/coatl/front.svg",
  11781. extra: 3948 / 3500 ,
  11782. bottom: 0.082
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(4, "meters")
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(100, "meters"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Macro+",
  11798. height: math.unit(300, "meters")
  11799. },
  11800. {
  11801. name: "Megamacro",
  11802. height: math.unit(3, "gigameters")
  11803. },
  11804. {
  11805. name: "Megamacro+",
  11806. height: math.unit(300, "terameters")
  11807. },
  11808. {
  11809. name: "Megamacro++",
  11810. height: math.unit(3, "lightyears")
  11811. },
  11812. ]
  11813. )
  11814. };
  11815. characterMakers["Shiroryu"] = () => {
  11816. return makeCharacter(
  11817. "Shiroryu",
  11818. "Roxas00137",
  11819. {
  11820. front: {
  11821. height: math.unit(6, "feet"),
  11822. weight: math.unit(50, "kg"),
  11823. name: "front",
  11824. image: {
  11825. source: "./media/characters/shiroryu/front.svg",
  11826. extra: 1990/1935
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Mortal Mingling",
  11833. height: math.unit(3, "meters")
  11834. },
  11835. {
  11836. name: "Kaiju-ish",
  11837. height: math.unit(250, "meters")
  11838. },
  11839. {
  11840. name: "Somewhat Godly",
  11841. height: math.unit(400, "km"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Planetary",
  11846. height: math.unit(300, "megameters")
  11847. },
  11848. {
  11849. name: "Galaxy-dwarfing",
  11850. height: math.unit(450, "kiloparsecs")
  11851. },
  11852. {
  11853. name: "Universe Eater",
  11854. height: math.unit(150, "gigaparsecs")
  11855. },
  11856. {
  11857. name: "Almost Immeasurable",
  11858. height: math.unit(1.3e266, "yottaparsecs")
  11859. },
  11860. ]
  11861. )
  11862. };
  11863. characterMakers["Umeko"] = () => {
  11864. return makeCharacter(
  11865. "Umeko",
  11866. "Neopuc",
  11867. {
  11868. front: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(150, "lb"),
  11871. name: "Front",
  11872. image: {
  11873. source: "./media/characters/umeko/front.svg",
  11874. extra: 1,
  11875. bottom: 0.019
  11876. }
  11877. },
  11878. frontArmored: {
  11879. height: math.unit(6, "feet"),
  11880. weight: math.unit(150, "lb"),
  11881. name: "Front (Armored)",
  11882. image: {
  11883. source: "./media/characters/umeko/front-armored.svg",
  11884. extra: 1,
  11885. bottom: 0.021
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Macro",
  11892. height: math.unit(220, "feet"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Guardian Dragon",
  11897. height: math.unit(50, "miles")
  11898. },
  11899. {
  11900. name: "Cosmic",
  11901. height: math.unit(800000, "miles")
  11902. },
  11903. ]
  11904. )
  11905. };
  11906. characterMakers["Cassidy"] = () => {
  11907. return makeCharacter(
  11908. "Cassidy",
  11909. "Neopuc",
  11910. {
  11911. front: {
  11912. height: math.unit(6, "feet"),
  11913. weight: math.unit(150, "lb"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/cassidy/front.svg",
  11917. extra: 1,
  11918. bottom: 0.043
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Canon Height",
  11925. height: math.unit(120, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Macro+",
  11930. height: math.unit(400, "feet")
  11931. },
  11932. {
  11933. name: "Macro++",
  11934. height: math.unit(4000, "feet")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(3, "miles")
  11939. },
  11940. ]
  11941. )
  11942. };
  11943. characterMakers["Isaac"] = () => {
  11944. return makeCharacter(
  11945. "Isaac",
  11946. "Neopuc",
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/isaac/front.svg",
  11954. extra: 896/815 ,
  11955. bottom: 0.11
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Human Size",
  11962. height: math.unit(8, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(400, "feet")
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(50, "miles")
  11972. },
  11973. {
  11974. name: "Canon Height",
  11975. height: math.unit(200, "AU")
  11976. },
  11977. ]
  11978. )
  11979. };
  11980. characterMakers["Sleekit"] = () => {
  11981. return makeCharacter(
  11982. "Sleekit",
  11983. "AnAnonymousIndividual",
  11984. {
  11985. front: {
  11986. height: math.unit(6, "feet"),
  11987. weight: math.unit(72, "kg"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/sleekit/front.svg",
  11991. extra: 4693/4487 ,
  11992. bottom: 0.012
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Minimum Height",
  11999. height: math.unit(10, "meters")
  12000. },
  12001. {
  12002. name: "Smaller",
  12003. height: math.unit(25, "meters")
  12004. },
  12005. {
  12006. name: "Larger",
  12007. height: math.unit(38, "meters"),
  12008. default: true
  12009. },
  12010. {
  12011. name: "Maximum height",
  12012. height: math.unit(100, "meters")
  12013. },
  12014. ]
  12015. )
  12016. };
  12017. characterMakers["Nillia"] = () => {
  12018. return makeCharacter(
  12019. "Nillia",
  12020. "Neopuc",
  12021. {
  12022. front: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(150, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/nillia/front.svg",
  12028. extra: 2195/2037 ,
  12029. bottom: 0.005
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(6, "feet"),
  12034. weight: math.unit(150, "lb"),
  12035. name: "Back",
  12036. image: {
  12037. source: "./media/characters/nillia/back.svg",
  12038. extra: 2195/2037 ,
  12039. bottom: 0.005
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Canon Height",
  12046. height: math.unit(489, "feet"),
  12047. default: true
  12048. }
  12049. ]
  12050. )
  12051. };
  12052. characterMakers["Mesmyriza"] = () => {
  12053. return makeCharacter(
  12054. "Mesmyriza",
  12055. "-fluffy-",
  12056. {
  12057. front: {
  12058. height: math.unit(6, "feet"),
  12059. weight: math.unit(150, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/mesmyriza/front.svg",
  12063. extra: 2067/1784 ,
  12064. bottom: 0.035
  12065. }
  12066. },
  12067. foot: {
  12068. height: math.unit(6/(250/35), "feet"),
  12069. name: "Foot",
  12070. image: {
  12071. source: "./media/characters/mesmyriza/foot.svg"
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(457, "meters"),
  12079. default: true
  12080. },
  12081. {
  12082. name: "Megamacro",
  12083. height: math.unit(8, "megameters")
  12084. },
  12085. ]
  12086. )
  12087. };
  12088. characterMakers["Saudade"] = () => {
  12089. return makeCharacter(
  12090. "Saudade",
  12091. "lordbo",
  12092. {
  12093. front: {
  12094. height: math.unit(6, "feet"),
  12095. weight: math.unit(250, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/saudade/front.svg",
  12099. extra: 1172/1139 ,
  12100. bottom: 0.035
  12101. }
  12102. },
  12103. },
  12104. [
  12105. {
  12106. name: "Micro",
  12107. height: math.unit(3, "inches")
  12108. },
  12109. {
  12110. name: "Normal",
  12111. height: math.unit(6, "feet"),
  12112. default: true
  12113. },
  12114. {
  12115. name: "Macro",
  12116. height: math.unit(50, "feet")
  12117. },
  12118. {
  12119. name: "Megamacro",
  12120. height: math.unit(2800, "feet")
  12121. },
  12122. ]
  12123. )
  12124. };
  12125. characterMakers["Keireer"] = () => {
  12126. return makeCharacter(
  12127. "Keireer",
  12128. "teedash",
  12129. {
  12130. front: {
  12131. height: math.unit(5 + 4/12, "feet"),
  12132. weight: math.unit(100, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/keireer/front.svg",
  12136. extra: 716/666 ,
  12137. bottom: 0.05
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(5 + 4/12, "feet"),
  12145. default: true
  12146. },
  12147. ]
  12148. )
  12149. };
  12150. characterMakers["Mirja"] = () => {
  12151. return makeCharacter(
  12152. "Mirja",
  12153. "vabad",
  12154. {
  12155. front: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(90, "kg"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/mirja/front.svg",
  12161. extra: 1789/1683 ,
  12162. bottom: 0.05
  12163. }
  12164. },
  12165. frontDressed: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(90, "lb"),
  12168. name: "Front (Dressed)",
  12169. image: {
  12170. source: "./media/characters/mirja/front-dressed.svg",
  12171. extra: 1789/1683 ,
  12172. bottom: 0.05
  12173. }
  12174. },
  12175. back: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(90, "lb"),
  12178. name: "Back",
  12179. image: {
  12180. source: "./media/characters/mirja/back.svg",
  12181. extra: 953/917 ,
  12182. bottom: 0.017
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "\"Incognito\"",
  12189. height: math.unit(3, "meters")
  12190. },
  12191. {
  12192. name: "Strolling Size",
  12193. height: math.unit(15, "km")
  12194. },
  12195. {
  12196. name: "Larger Strolling Size",
  12197. height: math.unit(400, "km")
  12198. },
  12199. {
  12200. name: "Preferred Size",
  12201. height: math.unit(5000, "km")
  12202. },
  12203. {
  12204. name: "True Size",
  12205. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12206. default: true
  12207. },
  12208. ]
  12209. )
  12210. };
  12211. characterMakers["Nightraver"] = () => {
  12212. return makeCharacter(
  12213. "Nightraver",
  12214. "Nightraver",
  12215. {
  12216. front: {
  12217. height: math.unit(15, "feet"),
  12218. weight: math.unit(880, "kg"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/nightraver/front.svg",
  12222. extra: 2444/2160 ,
  12223. bottom: 0.027
  12224. }
  12225. },
  12226. back: {
  12227. height: math.unit(15, "feet"),
  12228. weight: math.unit(880, "kg"),
  12229. name: "Back",
  12230. image: {
  12231. source: "./media/characters/nightraver/back.svg",
  12232. extra: 2309/2180 ,
  12233. bottom: 0.005
  12234. }
  12235. },
  12236. sole: {
  12237. height: math.unit(2.878, "feet"),
  12238. name: "Sole",
  12239. image: {
  12240. source: "./media/characters/nightraver/sole.svg"
  12241. }
  12242. },
  12243. foot: {
  12244. height: math.unit(2.285, "feet"),
  12245. name: "Foot",
  12246. image: {
  12247. source: "./media/characters/nightraver/foot.svg"
  12248. }
  12249. },
  12250. maw: {
  12251. height: math.unit(2.67, "feet"),
  12252. name: "Maw",
  12253. image: {
  12254. source: "./media/characters/nightraver/maw.svg"
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(1, "cm")
  12262. },
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(15, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(300, "feet")
  12271. },
  12272. {
  12273. name: "Megamacro",
  12274. height: math.unit(300, "miles")
  12275. },
  12276. {
  12277. name: "Gigamacro",
  12278. height: math.unit(10000, "miles")
  12279. },
  12280. ]
  12281. )
  12282. };
  12283. characterMakers["Arc"] = () => {
  12284. return makeCharacter(
  12285. "Arc",
  12286. "DinoKiddo",
  12287. {
  12288. side: {
  12289. height: math.unit(2, "inches"),
  12290. weight: math.unit(5, "grams"),
  12291. name: "Side",
  12292. image: {
  12293. source: "./media/characters/arc/side.svg"
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Micro",
  12300. height: math.unit(2, "inches"),
  12301. default: true
  12302. },
  12303. ]
  12304. )
  12305. };
  12306. characterMakers["Nebula Shahar"] = () => {
  12307. return makeCharacter(
  12308. "Nebula Shahar",
  12309. "Kypleo",
  12310. {
  12311. front: {
  12312. height: math.unit(1.1938, "meters"),
  12313. weight: math.unit(54, "kg"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/nebula-shahar/front.svg",
  12317. extra: 1642/1436 ,
  12318. bottom: 0.06
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Megamicro",
  12325. height: math.unit(0.3, "mm")
  12326. },
  12327. {
  12328. name: "Micro",
  12329. height: math.unit(3, "cm")
  12330. },
  12331. {
  12332. name: "Normal",
  12333. height: math.unit(138, "cm"),
  12334. default: true
  12335. },
  12336. {
  12337. name: "Macro",
  12338. height: math.unit(30, "m")
  12339. },
  12340. ]
  12341. )
  12342. };
  12343. characterMakers["Shayla"] = () => {
  12344. return makeCharacter(
  12345. "Shayla",
  12346. "Ziralkia",
  12347. {
  12348. front: {
  12349. height: math.unit(5.24, "feet"),
  12350. weight: math.unit(150, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/shayla/front.svg",
  12354. extra: 1512/1414 ,
  12355. bottom: 0.01
  12356. }
  12357. },
  12358. back: {
  12359. height: math.unit(5.24, "feet"),
  12360. weight: math.unit(150, "lb"),
  12361. name: "Back",
  12362. image: {
  12363. source: "./media/characters/shayla/back.svg",
  12364. extra: 1512/1414
  12365. }
  12366. },
  12367. hand: {
  12368. height: math.unit(0.7781496062992126, "feet"),
  12369. name: "Hand",
  12370. image: {
  12371. source: "./media/characters/shayla/hand.svg"
  12372. }
  12373. },
  12374. foot: {
  12375. height: math.unit(1.4206036745406823, "feet"),
  12376. name: "Foot",
  12377. image: {
  12378. source: "./media/characters/shayla/foot.svg"
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Micro",
  12385. height: math.unit(0.32, "feet")
  12386. },
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(5.24, "feet"),
  12390. default: true
  12391. },
  12392. {
  12393. name: "Macro",
  12394. height: math.unit(492.12, "feet")
  12395. },
  12396. {
  12397. name: "Megamacro",
  12398. height: math.unit(186.41, "miles")
  12399. },
  12400. ]
  12401. )
  12402. };
  12403. characterMakers["Pia Jr."] = () => {
  12404. return makeCharacter(
  12405. "Pia Jr.",
  12406. "Ziralkia",
  12407. {
  12408. front: {
  12409. height: math.unit(2.2, "m"),
  12410. weight: math.unit(120, "kg"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/pia-jr/front.svg",
  12414. extra: 1000/970 ,
  12415. bottom: 0.035
  12416. }
  12417. },
  12418. hand: {
  12419. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12420. name: "Hand",
  12421. image: {
  12422. source: "./media/characters/pia-jr/hand.svg"
  12423. }
  12424. },
  12425. paw: {
  12426. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12427. name: "Paw",
  12428. image: {
  12429. source: "./media/characters/pia-jr/paw.svg"
  12430. }
  12431. },
  12432. },
  12433. [
  12434. {
  12435. name: "Micro",
  12436. height: math.unit(1.2, "cm")
  12437. },
  12438. {
  12439. name: "Normal",
  12440. height: math.unit(2.2, "m"),
  12441. default: true
  12442. },
  12443. {
  12444. name: "Macro",
  12445. height: math.unit(180, "m")
  12446. },
  12447. {
  12448. name: "Megamacro",
  12449. height: math.unit(420, "km")
  12450. },
  12451. ]
  12452. )
  12453. };
  12454. characterMakers["Pia Sr."] = () => {
  12455. return makeCharacter(
  12456. "Pia Sr.",
  12457. "Ziralkia",
  12458. {
  12459. front: {
  12460. height: math.unit(2, "m"),
  12461. weight: math.unit(115, "kg"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/pia-sr/front.svg",
  12465. extra: 760/730 ,
  12466. bottom: 0.015
  12467. }
  12468. },
  12469. back: {
  12470. height: math.unit(2, "m"),
  12471. weight: math.unit(115, "kg"),
  12472. name: "Back",
  12473. image: {
  12474. source: "./media/characters/pia-sr/back.svg",
  12475. extra: 760/730 ,
  12476. bottom: 0.01
  12477. }
  12478. },
  12479. hand: {
  12480. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12481. name: "Hand",
  12482. image: {
  12483. source: "./media/characters/pia-sr/hand.svg"
  12484. }
  12485. },
  12486. foot: {
  12487. height: math.unit(1.83, "feet"),
  12488. name: "Foot",
  12489. image: {
  12490. source: "./media/characters/pia-sr/foot.svg"
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Micro",
  12497. height: math.unit(88, "mm")
  12498. },
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(2, "m"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(200, "m")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(420, "km")
  12511. },
  12512. ]
  12513. )
  12514. };
  12515. characterMakers["KIBIBYTE"] = () => {
  12516. return makeCharacter(
  12517. "KIBIBYTE",
  12518. "gamefreak1215",
  12519. {
  12520. front: {
  12521. height: math.unit(8 + 2/12, "feet"),
  12522. weight: math.unit(300, "lb"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/kibibyte/front.svg",
  12526. extra: 2221/2098 ,
  12527. bottom: 0.04
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(8 + 2/12, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Socialable Macro",
  12539. height: math.unit(50, "feet")
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(300, "feet")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(500, "miles")
  12548. },
  12549. ]
  12550. )
  12551. };
  12552. characterMakers["Felix"] = () => {
  12553. return makeCharacter(
  12554. "Felix",
  12555. "MeanDumpsterCat",
  12556. {
  12557. front: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/felix/front.svg",
  12563. extra: 762/722 ,
  12564. bottom: 0.02
  12565. }
  12566. },
  12567. frontClothed: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Front (Clothed)",
  12571. image: {
  12572. source: "./media/characters/felix/front-clothed.svg",
  12573. extra: 762/722 ,
  12574. bottom: 0.02
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Normal",
  12581. height: math.unit(6 + 8/12, "feet"),
  12582. default: true
  12583. },
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(2600, "feet")
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(450, "miles")
  12591. },
  12592. ]
  12593. )
  12594. };
  12595. characterMakers["Tobo"] = () => {
  12596. return makeCharacter(
  12597. "Tobo",
  12598. "Naoya_Raichi",
  12599. {
  12600. front: {
  12601. height: math.unit(6 + 1/12, "feet"),
  12602. weight: math.unit(250, "lb"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/tobo/front.svg",
  12606. extra: 608/586 ,
  12607. bottom: 0.023
  12608. }
  12609. },
  12610. back: {
  12611. height: math.unit(6 + 1/12, "feet"),
  12612. weight: math.unit(250, "lb"),
  12613. name: "Back",
  12614. image: {
  12615. source: "./media/characters/tobo/back.svg",
  12616. extra: 608/586
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Nano",
  12623. height: math.unit(2, "nm")
  12624. },
  12625. {
  12626. name: "Megamicro",
  12627. height: math.unit(0.1, "mm")
  12628. },
  12629. {
  12630. name: "Micro",
  12631. height: math.unit(1, "inch"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Human-sized",
  12636. height: math.unit(6 + 1/12, "feet")
  12637. },
  12638. {
  12639. name: "Macro",
  12640. height: math.unit(250, "feet")
  12641. },
  12642. {
  12643. name: "Megamacro",
  12644. height: math.unit(75, "miles")
  12645. },
  12646. {
  12647. name: "Texas-sized",
  12648. height: math.unit(750, "miles")
  12649. },
  12650. {
  12651. name: "Teramacro",
  12652. height: math.unit(50000, "miles")
  12653. },
  12654. ]
  12655. )
  12656. };
  12657. characterMakers["Danny Kapowsky"] = () => {
  12658. return makeCharacter(
  12659. "Danny Kapowsky",
  12660. "nh63879",
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(269, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/danny-kapowsky/front.svg",
  12668. extra: 766/736 ,
  12669. bottom: 0.044
  12670. }
  12671. },
  12672. back: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(269, "lb"),
  12675. name: "Back",
  12676. image: {
  12677. source: "./media/characters/danny-kapowsky/back.svg",
  12678. extra: 797/760 ,
  12679. bottom: 0.025
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Macro",
  12686. height: math.unit(150, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Macro+",
  12691. height: math.unit(200, "feet")
  12692. },
  12693. {
  12694. name: "Macro++",
  12695. height: math.unit(300, "feet")
  12696. },
  12697. {
  12698. name: "Macro+++",
  12699. height: math.unit(400, "feet")
  12700. },
  12701. ]
  12702. )
  12703. };
  12704. characterMakers["Finn"] = () => {
  12705. return makeCharacter(
  12706. "Finn",
  12707. "Finn-The-Fennecfox",
  12708. {
  12709. side: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(170, "lb"),
  12712. name: "Side",
  12713. image: {
  12714. source: "./media/characters/finn/side.svg",
  12715. extra: 1953/1807 ,
  12716. bottom: 0.057
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Megamacro",
  12723. height: math.unit(14445, "feet"),
  12724. default: true
  12725. },
  12726. ]
  12727. )
  12728. };
  12729. characterMakers["Roy"] = () => {
  12730. return makeCharacter(
  12731. "Roy",
  12732. "dracodare",
  12733. {
  12734. front: {
  12735. height: math.unit(5 + 6/12, "feet"),
  12736. weight: math.unit(125, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/roy/front.svg",
  12740. extra: 1,
  12741. bottom: 0.11
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Micro",
  12748. height: math.unit(3, "inches"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Normal",
  12753. height: math.unit(5 + 6/12, "feet")
  12754. },
  12755. {
  12756. name: "Lesser Macro",
  12757. height: math.unit(60, "feet")
  12758. },
  12759. {
  12760. name: "Greater Macro",
  12761. height: math.unit(120, "feet")
  12762. },
  12763. ]
  12764. )
  12765. };
  12766. characterMakers["Aevsivs"] = () => {
  12767. return makeCharacter(
  12768. "Aevsivs",
  12769. "Aevsivs",
  12770. {
  12771. front: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(100, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/aevsivs/front.svg",
  12777. extra: 1,
  12778. bottom: 0.03
  12779. }
  12780. },
  12781. back: {
  12782. height: math.unit(6, "feet"),
  12783. weight: math.unit(100, "lb"),
  12784. name: "Back",
  12785. image: {
  12786. source: "./media/characters/aevsivs/back.svg"
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Micro",
  12793. height: math.unit(2, "inches"),
  12794. default: true
  12795. },
  12796. {
  12797. name: "Normal",
  12798. height: math.unit(5, "feet")
  12799. },
  12800. ]
  12801. )
  12802. };
  12803. characterMakers["Hildegard"] = () => {
  12804. return makeCharacter(
  12805. "Hildegard",
  12806. "Fidchell",
  12807. {
  12808. front: {
  12809. height: math.unit(5 + 7/12, "feet"),
  12810. weight: math.unit(159, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/hildegard/front.svg",
  12814. extra: 312/286 ,
  12815. bottom: 0.005
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Normal",
  12822. height: math.unit(5 + 7/12, "feet"),
  12823. default: true
  12824. },
  12825. ]
  12826. )
  12827. };
  12828. characterMakers["Bernard & Wilder"] = () => {
  12829. return makeCharacter(
  12830. "Bernard & Wilder",
  12831. "Fidchell",
  12832. {
  12833. bernard: {
  12834. height: math.unit(2 + 7/12, "feet"),
  12835. weight: math.unit(66, "lb"),
  12836. name: "Bernard",
  12837. rename: true,
  12838. image: {
  12839. source: "./media/characters/bernard-wilder/bernard.svg",
  12840. extra: 192/128 ,
  12841. bottom: 0.05
  12842. }
  12843. },
  12844. wilder: {
  12845. height: math.unit(5 + 8/12, "feet"),
  12846. weight: math.unit(143, "lb"),
  12847. name: "Wilder",
  12848. rename: true,
  12849. image: {
  12850. source: "./media/characters/bernard-wilder/wilder.svg",
  12851. extra: 361/312 ,
  12852. bottom: 0.02
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Normal",
  12859. height: math.unit(2 + 7/12, "feet"),
  12860. default: true
  12861. },
  12862. ]
  12863. )
  12864. };
  12865. characterMakers["Hearth"] = () => {
  12866. return makeCharacter(
  12867. "Hearth",
  12868. "Fidchell",
  12869. {
  12870. anthro: {
  12871. height: math.unit(6 + 1/12, "feet"),
  12872. weight: math.unit(155, "lb"),
  12873. name: "Anthro",
  12874. image: {
  12875. source: "./media/characters/hearth/anthro.svg",
  12876. extra: 260/250 ,
  12877. bottom: 0.02
  12878. }
  12879. },
  12880. feral: {
  12881. height: math.unit(3.78, "feet"),
  12882. weight: math.unit(35, "kg"),
  12883. name: "Feral",
  12884. image: {
  12885. source: "./media/characters/hearth/feral.svg",
  12886. extra: 153/135 ,
  12887. bottom: 0.03
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(6 + 1/12, "feet"),
  12895. default: true
  12896. },
  12897. ]
  12898. )
  12899. };
  12900. characterMakers["Ingrid"] = () => {
  12901. return makeCharacter(
  12902. "Ingrid",
  12903. "Fidchell",
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(182, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/ingrid/front.svg",
  12911. extra: 294/268 ,
  12912. bottom: 0.027
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Normal",
  12919. height: math.unit(6, "feet"),
  12920. default: true
  12921. },
  12922. ]
  12923. )
  12924. };
  12925. characterMakers["Malgam"] = () => {
  12926. return makeCharacter(
  12927. "Malgam",
  12928. "Fidchell",
  12929. {
  12930. eevee: {
  12931. height: math.unit(2 + 10/12, "feet"),
  12932. weight: math.unit(86, "lb"),
  12933. name: "Malgam",
  12934. image: {
  12935. source: "./media/characters/malgam/eevee.svg",
  12936. extra: 218/180 ,
  12937. bottom: 0.2
  12938. }
  12939. },
  12940. sylveon: {
  12941. height: math.unit(4, "feet"),
  12942. weight: math.unit(101, "lb"),
  12943. name: "Future Malgam",
  12944. rename: true,
  12945. image: {
  12946. source: "./media/characters/malgam/sylveon.svg",
  12947. extra: 371/325 ,
  12948. bottom: 0.015
  12949. }
  12950. },
  12951. gigantamax: {
  12952. height: math.unit(50, "feet"),
  12953. name: "Gigantamax Malgam",
  12954. rename: true,
  12955. image: {
  12956. source: "./media/characters/malgam/gigantamax.svg"
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(2 + 10/12, "feet"),
  12964. default: true
  12965. },
  12966. ]
  12967. )
  12968. };
  12969. characterMakers["Fleur"] = () => {
  12970. return makeCharacter(
  12971. "Fleur",
  12972. "Fidchell",
  12973. {
  12974. front: {
  12975. height: math.unit(5 + 11/12, "feet"),
  12976. weight: math.unit(188, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/fleur/front.svg",
  12980. extra: 309/283 ,
  12981. bottom: 0.007
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(5 + 11/12, "feet"),
  12989. default: true
  12990. },
  12991. ]
  12992. )
  12993. };
  12994. characterMakers["Jude"] = () => {
  12995. return makeCharacter(
  12996. "Jude",
  12997. "Fidchell",
  12998. {
  12999. front: {
  13000. height: math.unit(5 + 4/12, "feet"),
  13001. weight: math.unit(122, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/jude/front.svg",
  13005. extra: 288/273 ,
  13006. bottom: 0.03
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(5 + 4/12, "feet"),
  13014. default: true
  13015. },
  13016. ]
  13017. )
  13018. };
  13019. characterMakers["Seara"] = () => {
  13020. return makeCharacter(
  13021. "Seara",
  13022. "Fidchell",
  13023. {
  13024. front: {
  13025. height: math.unit(5 + 11/12, "feet"),
  13026. weight: math.unit(190, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/seara/front.svg",
  13030. extra: 1,
  13031. bottom: 0.05
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Normal",
  13038. height: math.unit(5 + 11/12, "feet"),
  13039. default: true
  13040. },
  13041. ]
  13042. )
  13043. };
  13044. characterMakers["Caspian"] = () => {
  13045. return makeCharacter(
  13046. "Caspian",
  13047. "Fidchell",
  13048. {
  13049. front: {
  13050. height: math.unit(16 + 5/12, "feet"),
  13051. weight: math.unit(524, "lb"),
  13052. name: "Front",
  13053. image: {
  13054. source: "./media/characters/caspian/front.svg",
  13055. extra: 1,
  13056. bottom: 0.04
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Normal",
  13063. height: math.unit(16 + 5/12, "feet"),
  13064. default: true
  13065. },
  13066. ]
  13067. )
  13068. };
  13069. characterMakers["Mika"] = () => {
  13070. return makeCharacter(
  13071. "Mika",
  13072. "Fidchell",
  13073. {
  13074. front: {
  13075. height: math.unit(5 + 7/12, "feet"),
  13076. weight: math.unit(170, "lb"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/mika/front.svg",
  13080. extra: 1,
  13081. bottom: 0.016
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(5 + 7/12, "feet"),
  13089. default: true
  13090. },
  13091. ]
  13092. )
  13093. };
  13094. characterMakers["Sol"] = () => {
  13095. return makeCharacter(
  13096. "Sol",
  13097. "Fidchell",
  13098. {
  13099. front: {
  13100. height: math.unit(6 + 2/12, "feet"),
  13101. weight: math.unit(268, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/sol/front.svg",
  13105. extra: 247/231 ,
  13106. bottom: 0.05
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(6 + 2/12, "feet"),
  13114. default: true
  13115. },
  13116. ]
  13117. )
  13118. };
  13119. characterMakers["Umiko"] = () => {
  13120. return makeCharacter(
  13121. "Umiko",
  13122. "Fidchell",
  13123. {
  13124. buizel: {
  13125. height: math.unit(2 + 5/12, "feet"),
  13126. weight: math.unit(87, "lb"),
  13127. name: "Buizel",
  13128. image: {
  13129. source: "./media/characters/umiko/buizel.svg",
  13130. extra: 172/157 ,
  13131. bottom: 0.01
  13132. }
  13133. },
  13134. floatzel: {
  13135. height: math.unit(5 + 9/12, "feet"),
  13136. weight: math.unit(250, "lb"),
  13137. name: "Floatzel",
  13138. image: {
  13139. source: "./media/characters/umiko/floatzel.svg",
  13140. extra: 262/248
  13141. }
  13142. },
  13143. },
  13144. [
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(2 + 5/12, "feet"),
  13148. default: true
  13149. },
  13150. ]
  13151. )
  13152. };
  13153. characterMakers["Iliac"] = () => {
  13154. return makeCharacter(
  13155. "Iliac",
  13156. "Fidchell",
  13157. {
  13158. front: {
  13159. height: math.unit(6 + 2/12, "feet"),
  13160. weight: math.unit(146, "lb"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/iliac/front.svg",
  13164. extra: 389/365 ,
  13165. bottom: 0.035
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Normal",
  13172. height: math.unit(6 + 2/12, "feet"),
  13173. default: true
  13174. },
  13175. ]
  13176. )
  13177. };
  13178. characterMakers["Topaz"] = () => {
  13179. return makeCharacter(
  13180. "Topaz",
  13181. "Fidchell",
  13182. {
  13183. front: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(170, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/topaz/front.svg",
  13189. extra: 317/303 ,
  13190. bottom: 0.055
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(6, "feet"),
  13198. default: true
  13199. },
  13200. ]
  13201. )
  13202. };
  13203. characterMakers["Gabriel"] = () => {
  13204. return makeCharacter(
  13205. "Gabriel",
  13206. "Fidchell",
  13207. {
  13208. front: {
  13209. height: math.unit(5 + 11/12, "feet"),
  13210. weight: math.unit(144, "lb"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/gabriel/front.svg",
  13214. extra: 285/262 ,
  13215. bottom: 0.004
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(5 + 11/12, "feet"),
  13223. default: true
  13224. },
  13225. ]
  13226. )
  13227. };
  13228. characterMakers["Tempest (Suicune)"] = () => {
  13229. return makeCharacter(
  13230. "Tempest (Suicune)",
  13231. "Fidchell",
  13232. {
  13233. side: {
  13234. height: math.unit(6 + 5/12, "feet"),
  13235. weight: math.unit(300, "lb"),
  13236. name: "Side",
  13237. image: {
  13238. source: "./media/characters/tempest-suicune/side.svg",
  13239. extra: 195/154 ,
  13240. bottom: 0.04
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Normal",
  13247. height: math.unit(6 + 5/12, "feet"),
  13248. default: true
  13249. },
  13250. ]
  13251. )
  13252. };
  13253. characterMakers["Vulcan"] = () => {
  13254. return makeCharacter(
  13255. "Vulcan",
  13256. "Fidchell",
  13257. {
  13258. front: {
  13259. height: math.unit(7 + 2/12, "feet"),
  13260. weight: math.unit(322, "lb"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/vulcan/front.svg",
  13264. extra: 154/147 ,
  13265. bottom: 0.04
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(7 + 2/12, "feet"),
  13273. default: true
  13274. },
  13275. ]
  13276. )
  13277. };
  13278. characterMakers["Gault"] = () => {
  13279. return makeCharacter(
  13280. "Gault",
  13281. "Fidchell",
  13282. {
  13283. front: {
  13284. height: math.unit(5 + 10/12, "feet"),
  13285. weight: math.unit(264, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/gault/front.svg",
  13289. extra: 161/140 ,
  13290. bottom: 0.028
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(5 + 10/12, "feet"),
  13298. default: true
  13299. },
  13300. ]
  13301. )
  13302. };
  13303. characterMakers["Shard"] = () => {
  13304. return makeCharacter(
  13305. "Shard",
  13306. "Fidchell",
  13307. {
  13308. front: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(150, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/shard/front.svg",
  13314. extra: 273/238 ,
  13315. bottom: 0.02
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(3 + 6/12, "feet"),
  13323. default: true
  13324. },
  13325. ]
  13326. )
  13327. };
  13328. characterMakers["Ashe"] = () => {
  13329. return makeCharacter(
  13330. "Ashe",
  13331. "Fidchell",
  13332. {
  13333. front: {
  13334. height: math.unit(5 + 11/12, "feet"),
  13335. weight: math.unit(146, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/ashe/front.svg",
  13339. extra: 400/373 ,
  13340. bottom: 0.01
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(5 + 11/12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. )
  13352. };
  13353. characterMakers["Beatrix"] = () => {
  13354. return makeCharacter(
  13355. "Beatrix",
  13356. "Fidchell",
  13357. {
  13358. front: {
  13359. height: math.unit(5 + 5/12, "feet"),
  13360. weight: math.unit(135, "lb"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/beatrix/front.svg",
  13364. extra: 392/379 ,
  13365. bottom: 0.01
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(6, "feet"),
  13373. default: true
  13374. },
  13375. ]
  13376. )
  13377. };
  13378. characterMakers["Ignatius"] = () => {
  13379. return makeCharacter(
  13380. "Ignatius",
  13381. "Fidchell",
  13382. {
  13383. front: {
  13384. height: math.unit(6, "feet"),
  13385. weight: math.unit(150, "lb"),
  13386. name: "Front",
  13387. image: {
  13388. source: "./media/characters/ignatius/front.svg",
  13389. extra: 245/222 ,
  13390. bottom: 0.01
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(5 + 5/12, "feet"),
  13398. default: true
  13399. },
  13400. ]
  13401. )
  13402. };
  13403. characterMakers["Mei Li"] = () => {
  13404. return makeCharacter(
  13405. "Mei Li",
  13406. "Fidchell",
  13407. {
  13408. front: {
  13409. height: math.unit(6 + 2/12, "feet"),
  13410. weight: math.unit(138, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/mei-li/front.svg",
  13414. extra: 237/229 ,
  13415. bottom: 0.03
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(6 + 2/12, "feet"),
  13423. default: true
  13424. },
  13425. ]
  13426. )
  13427. };
  13428. characterMakers["Puru"] = () => {
  13429. return makeCharacter(
  13430. "Puru",
  13431. "Fidchell",
  13432. {
  13433. front: {
  13434. height: math.unit(2 + 4/12, "feet"),
  13435. weight: math.unit(62, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/puru/front.svg",
  13439. extra: 206/149 ,
  13440. bottom: 0.06
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(2 + 4/12, "feet"),
  13448. default: true
  13449. },
  13450. ]
  13451. )
  13452. };
  13453. characterMakers["Kee"] = () => {
  13454. return makeCharacter(
  13455. "Kee",
  13456. "AardwolfKee",
  13457. {
  13458. taur: {
  13459. height: math.unit(11, "feet"),
  13460. weight: math.unit(500, "lb"),
  13461. name: "Taur",
  13462. image: {
  13463. source: "./media/characters/kee/taur.svg",
  13464. extra: 1,
  13465. bottom: 0.04
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(11, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. )
  13477. };
  13478. characterMakers["Cobalt (Dracha)"] = () => {
  13479. return makeCharacter(
  13480. "Cobalt (Dracha)",
  13481. "Fidchell",
  13482. {
  13483. anthro: {
  13484. height: math.unit(7, "feet"),
  13485. weight: math.unit(190, "lb"),
  13486. name: "Anthro",
  13487. image: {
  13488. source: "./media/characters/cobalt-dracha/anthro.svg",
  13489. extra: 231/225 ,
  13490. bottom: 0.04
  13491. }
  13492. },
  13493. feral: {
  13494. height: math.unit(9 + 7/12, "feet"),
  13495. weight: math.unit(294, "lb"),
  13496. name: "Feral",
  13497. image: {
  13498. source: "./media/characters/cobalt-dracha/feral.svg",
  13499. extra: 692/633 ,
  13500. bottom: 0.05
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Normal",
  13507. height: math.unit(7, "feet"),
  13508. default: true
  13509. },
  13510. ]
  13511. )
  13512. };
  13513. characterMakers["Java"] = () => {
  13514. return makeCharacter(
  13515. "Java",
  13516. "Fidchell",
  13517. {
  13518. fallen: {
  13519. height: math.unit(11 + 8/12, "feet"),
  13520. weight: math.unit(485, "lb"),
  13521. name: "Java (Fallen)",
  13522. rename: true,
  13523. image: {
  13524. source: "./media/characters/java/fallen.svg",
  13525. extra: 226/208 ,
  13526. bottom: 0.005
  13527. }
  13528. },
  13529. godkin: {
  13530. height: math.unit(10 + 6/12, "feet"),
  13531. weight: math.unit(328, "lb"),
  13532. name: "Java (Godkin)",
  13533. rename: true,
  13534. image: {
  13535. source: "./media/characters/java/godkin.svg",
  13536. extra: 270/262 ,
  13537. bottom: 0.02
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Normal",
  13544. height: math.unit(11 + 8/12, "feet"),
  13545. default: true
  13546. },
  13547. ]
  13548. )
  13549. };
  13550. characterMakers["Skoll"] = () => {
  13551. return makeCharacter(
  13552. "Skoll",
  13553. "Fidchell",
  13554. {
  13555. front: {
  13556. height: math.unit(7 + 8/12, "feet"),
  13557. weight: math.unit(320, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/skoll/front.svg",
  13561. extra: 232/220 ,
  13562. bottom: 0.02
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Normal",
  13569. height: math.unit(7 + 8/12, "feet"),
  13570. default: true
  13571. },
  13572. ]
  13573. )
  13574. };
  13575. characterMakers["Purna"] = () => {
  13576. return makeCharacter(
  13577. "Purna",
  13578. "Fidchell",
  13579. {
  13580. front: {
  13581. height: math.unit(5 + 9/12, "feet"),
  13582. weight: math.unit(170, "lb"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/purna/front.svg",
  13586. extra: 239/229 ,
  13587. bottom: 0.01
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(5 + 9/12, "feet"),
  13595. default: true
  13596. },
  13597. ]
  13598. )
  13599. };
  13600. characterMakers["Kuva"] = () => {
  13601. return makeCharacter(
  13602. "Kuva",
  13603. "Fidchell",
  13604. {
  13605. front: {
  13606. height: math.unit(5 + 9/12, "feet"),
  13607. weight: math.unit(142, "lb"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/kuva/front.svg",
  13611. extra: 281/271 ,
  13612. bottom: 0.006
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(5 + 9/12, "feet"),
  13620. default: true
  13621. },
  13622. ]
  13623. )
  13624. };
  13625. characterMakers["Embra"] = () => {
  13626. return makeCharacter(
  13627. "Embra",
  13628. "Fidchell",
  13629. {
  13630. anthro: {
  13631. height: math.unit(9 + 2/12, "feet"),
  13632. weight: math.unit(270, "lb"),
  13633. name: "Anthro",
  13634. image: {
  13635. source: "./media/characters/embra/anthro.svg",
  13636. extra: 200/187 ,
  13637. bottom: 0.02
  13638. }
  13639. },
  13640. feral: {
  13641. height: math.unit(18 + 8/12, "feet"),
  13642. weight: math.unit(576, "lb"),
  13643. name: "Feral",
  13644. image: {
  13645. source: "./media/characters/embra/feral.svg",
  13646. extra: 152/137 ,
  13647. bottom: 0.037
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Normal",
  13654. height: math.unit(9 + 2/12, "feet"),
  13655. default: true
  13656. },
  13657. ]
  13658. )
  13659. };
  13660. characterMakers["Grottos"] = () => {
  13661. return makeCharacter(
  13662. "Grottos",
  13663. "Fidchell",
  13664. {
  13665. anthro: {
  13666. height: math.unit(10 + 9/12, "feet"),
  13667. weight: math.unit(224, "lb"),
  13668. name: "Anthro",
  13669. image: {
  13670. source: "./media/characters/grottos/anthro.svg",
  13671. extra: 350/332 ,
  13672. bottom: 0.045
  13673. }
  13674. },
  13675. feral: {
  13676. height: math.unit(20 + 7/12, "feet"),
  13677. weight: math.unit(629, "lb"),
  13678. name: "Feral",
  13679. image: {
  13680. source: "./media/characters/grottos/feral.svg",
  13681. extra: 207/190 ,
  13682. bottom: 0.05
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Normal",
  13689. height: math.unit(10 + 9/12, "feet"),
  13690. default: true
  13691. },
  13692. ]
  13693. )
  13694. };
  13695. characterMakers["Frifna"] = () => {
  13696. return makeCharacter(
  13697. "Frifna",
  13698. "Fidchell",
  13699. {
  13700. anthro: {
  13701. height: math.unit(9 + 6/12, "feet"),
  13702. weight: math.unit(298, "lb"),
  13703. name: "Anthro",
  13704. image: {
  13705. source: "./media/characters/frifna/anthro.svg",
  13706. extra: 282/269 ,
  13707. bottom: 0.015
  13708. }
  13709. },
  13710. feral: {
  13711. height: math.unit(16 + 2/12, "feet"),
  13712. weight: math.unit(624, "lb"),
  13713. name: "Feral",
  13714. image: {
  13715. source: "./media/characters/frifna/feral.svg"
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(9 + 6/12, "feet"),
  13723. default: true
  13724. },
  13725. ]
  13726. )
  13727. };
  13728. characterMakers["Elise"] = () => {
  13729. return makeCharacter(
  13730. "Elise",
  13731. "Fidchell",
  13732. {
  13733. front: {
  13734. height: math.unit(6 + 2/12, "feet"),
  13735. weight: math.unit(168, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/elise/front.svg",
  13739. extra: 276/271
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(6 + 2/12, "feet"),
  13747. default: true
  13748. },
  13749. ]
  13750. )
  13751. };
  13752. characterMakers["Glade"] = () => {
  13753. return makeCharacter(
  13754. "Glade",
  13755. "Fidchell",
  13756. {
  13757. front: {
  13758. height: math.unit(5 + 10/12, "feet"),
  13759. weight: math.unit(210, "lb"),
  13760. name: "Front",
  13761. image: {
  13762. source: "./media/characters/glade/front.svg",
  13763. extra: 258/247 ,
  13764. bottom: 0.008
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Normal",
  13771. height: math.unit(5 + 10/12, "feet"),
  13772. default: true
  13773. },
  13774. ]
  13775. )
  13776. };
  13777. characterMakers["Rina"] = () => {
  13778. return makeCharacter(
  13779. "Rina",
  13780. "Fidchell",
  13781. {
  13782. front: {
  13783. height: math.unit(5 + 10/12, "feet"),
  13784. weight: math.unit(129, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/rina/front.svg",
  13788. extra: 266/255 ,
  13789. bottom: 0.005
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(5 + 10/12, "feet"),
  13797. default: true
  13798. },
  13799. ]
  13800. )
  13801. };
  13802. characterMakers["Veronica"] = () => {
  13803. return makeCharacter(
  13804. "Veronica",
  13805. "Fidchell",
  13806. {
  13807. front: {
  13808. height: math.unit(6 + 1/12, "feet"),
  13809. weight: math.unit(192, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/veronica/front.svg",
  13813. extra: 319/309 ,
  13814. bottom: 0.005
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(6 + 1/12, "feet"),
  13822. default: true
  13823. },
  13824. ]
  13825. )
  13826. };
  13827. characterMakers["Braxton"] = () => {
  13828. return makeCharacter(
  13829. "Braxton",
  13830. "jdolbear",
  13831. {
  13832. front: {
  13833. height: math.unit(9 + 3/12, "feet"),
  13834. weight: math.unit(1100, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/braxton/front.svg",
  13838. extra: 1057/984 ,
  13839. bottom: 0.05
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(9 + 3/12, "feet")
  13847. },
  13848. {
  13849. name: "Giant",
  13850. height: math.unit(300, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(700, "feet")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(6000, "feet")
  13860. },
  13861. ]
  13862. )
  13863. };
  13864. characterMakers["Blue Feyonics"] = () => {
  13865. return makeCharacter(
  13866. "Blue Feyonics",
  13867. "bluefiremarkii",
  13868. {
  13869. front: {
  13870. height: math.unit(6 + 7/12, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/blue-feyonics/front.svg",
  13875. extra: 1403/1306 ,
  13876. bottom: 0.047
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(6 + 7/12, "feet"),
  13884. default: true
  13885. },
  13886. ]
  13887. )
  13888. };
  13889. characterMakers["Maxwell"] = () => {
  13890. return makeCharacter(
  13891. "Maxwell",
  13892. "Ruby_02",
  13893. {
  13894. front: {
  13895. height: math.unit(1.8, "meters"),
  13896. weight: math.unit(60, "kg"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/maxwell/front.svg",
  13900. extra: 2060/1873
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Micro",
  13907. height: math.unit(1, "mm")
  13908. },
  13909. {
  13910. name: "Normal",
  13911. height: math.unit(1.8, "meter"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(30, "meters")
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(10, "km")
  13921. },
  13922. ]
  13923. )
  13924. };
  13925. characterMakers["Jack"] = () => {
  13926. return makeCharacter(
  13927. "Jack",
  13928. "Jasmith",
  13929. {
  13930. front: {
  13931. height: math.unit(6, "feet"),
  13932. weight: math.unit(150, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/jack/front.svg",
  13936. extra: 1754/1640,
  13937. bottom: 0.01
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(80000, "feet"),
  13945. default: true
  13946. },
  13947. {
  13948. name: "Max size",
  13949. height: math.unit(10, "lightyears")
  13950. },
  13951. ]
  13952. )
  13953. };
  13954. characterMakers["Cafat"] = () => {
  13955. return makeCharacter(
  13956. "Cafat",
  13957. "Dalken",
  13958. {
  13959. upright: {
  13960. height: math.unit(7, "feet"),
  13961. weight: math.unit(170, "lb"),
  13962. name: "Upright",
  13963. image: {
  13964. source: "./media/characters/cafat/upright.svg",
  13965. bottom: 0.01
  13966. }
  13967. },
  13968. uprightFull: {
  13969. height: math.unit(7, "feet"),
  13970. weight: math.unit(170, "lb"),
  13971. name: "Upright (Full)",
  13972. image: {
  13973. source: "./media/characters/cafat/upright-full.svg",
  13974. bottom: 0.01
  13975. }
  13976. },
  13977. side: {
  13978. height: math.unit(5, "feet"),
  13979. weight: math.unit(150, "lb"),
  13980. name: "Side",
  13981. image: {
  13982. source: "./media/characters/cafat/side.svg"
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Small",
  13989. height: math.unit(7, "feet"),
  13990. default: true
  13991. },
  13992. {
  13993. name: "Large",
  13994. height: math.unit(15.5, "feet")
  13995. },
  13996. ]
  13997. )
  13998. };
  13999. characterMakers["Verin Raharra"] = () => {
  14000. return makeCharacter(
  14001. "Verin Raharra",
  14002. "Virgo113",
  14003. {
  14004. front: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/verin-raharra/front.svg",
  14010. extra: 5019/4835,
  14011. bottom: 0.023
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(7 + 5/12, "feet")
  14019. },
  14020. {
  14021. name: "Upsized",
  14022. height: math.unit(20, "feet")
  14023. },
  14024. ]
  14025. )
  14026. };
  14027. characterMakers["Nakata"] = () => {
  14028. return makeCharacter(
  14029. "Nakata",
  14030. "Dalken",
  14031. {
  14032. front: {
  14033. height: math.unit(7, "feet"),
  14034. weight: math.unit(230, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/nakata/front.svg",
  14038. extra: 1.005,
  14039. bottom: 0.01
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(7, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Big",
  14051. height: math.unit(14, "feet")
  14052. },
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(400, "feet")
  14056. },
  14057. ]
  14058. )
  14059. };
  14060. characterMakers["Lily"] = () => {
  14061. return makeCharacter(
  14062. "Lily",
  14063. "nexcg",
  14064. {
  14065. front: {
  14066. height: math.unit(4.91, "feet"),
  14067. weight: math.unit(100, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/lily/front.svg",
  14071. extra: 1585/1415,
  14072. bottom: 0.02
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(4.91, "feet")
  14080. },
  14081. ]
  14082. )
  14083. };
  14084. characterMakers["Sheila"] = () => {
  14085. return makeCharacter(
  14086. "Sheila",
  14087. "Miststalker",
  14088. {
  14089. laying: {
  14090. height: math.unit(4 + 4/12, "feet"),
  14091. weight: math.unit(600, "lb"),
  14092. name: "Laying",
  14093. image: {
  14094. source: "./media/characters/sheila/laying.svg",
  14095. extra: 1333/1265,
  14096. bottom: 0.16
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(4 + 4/12, "feet")
  14104. },
  14105. ]
  14106. )
  14107. };
  14108. characterMakers["Sax"] = () => {
  14109. return makeCharacter(
  14110. "Sax",
  14111. "Counts-His-Toes",
  14112. {
  14113. front: {
  14114. height: math.unit(6, "feet"),
  14115. weight: math.unit(190, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/sax/front.svg",
  14119. extra: 1187/973,
  14120. bottom: 0.042
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Micro",
  14127. height: math.unit(4, "inches"),
  14128. default: true
  14129. },
  14130. ]
  14131. )
  14132. };
  14133. characterMakers["Pandora"] = () => {
  14134. return makeCharacter(
  14135. "Pandora",
  14136. "Pandora's Fox",
  14137. {
  14138. front: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(150, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/pandora/front.svg",
  14144. extra: 2720/2556,
  14145. bottom: 0.015
  14146. }
  14147. },
  14148. back: {
  14149. height: math.unit(6, "feet"),
  14150. weight: math.unit(150, "lb"),
  14151. name: "Back",
  14152. image: {
  14153. source: "./media/characters/pandora/back.svg",
  14154. extra: 2720/2556,
  14155. bottom: 0.01
  14156. }
  14157. },
  14158. beans: {
  14159. height: math.unit(6/8, "feet"),
  14160. name: "Beans",
  14161. image: {
  14162. source: "./media/characters/pandora/beans.svg"
  14163. }
  14164. },
  14165. skirt: {
  14166. height: math.unit(6, "feet"),
  14167. weight: math.unit(150, "lb"),
  14168. name: "Skirt",
  14169. image: {
  14170. source: "./media/characters/pandora/skirt.svg",
  14171. extra: 1622/1525,
  14172. bottom: 0.015
  14173. }
  14174. },
  14175. hoodie: {
  14176. height: math.unit(6, "feet"),
  14177. weight: math.unit(150, "lb"),
  14178. name: "Hoodie",
  14179. image: {
  14180. source: "./media/characters/pandora/hoodie.svg",
  14181. extra: 1622/1525,
  14182. bottom: 0.015
  14183. }
  14184. },
  14185. casual: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Casual",
  14189. image: {
  14190. source: "./media/characters/pandora/casual.svg",
  14191. extra: 1622/1525,
  14192. bottom: 0.015
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(6, "feet")
  14200. },
  14201. {
  14202. name: "Big Steppy",
  14203. height: math.unit(1, "km"),
  14204. default: true
  14205. },
  14206. ]
  14207. )
  14208. };
  14209. characterMakers["Venio Darcony"] = () => {
  14210. return makeCharacter(
  14211. "Venio Darcony",
  14212. "redblackdragon",
  14213. {
  14214. side: {
  14215. height: math.unit(10, "feet"),
  14216. weight: math.unit(800, "kg"),
  14217. name: "Side",
  14218. image: {
  14219. source: "./media/characters/venio-darcony/side.svg",
  14220. extra: 1373/1003,
  14221. bottom: 0.037
  14222. }
  14223. },
  14224. front: {
  14225. height: math.unit(19, "feet"),
  14226. weight: math.unit(800, "kg"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/venio-darcony/front.svg"
  14230. }
  14231. },
  14232. back: {
  14233. height: math.unit(19, "feet"),
  14234. weight: math.unit(800, "kg"),
  14235. name: "Back",
  14236. image: {
  14237. source: "./media/characters/venio-darcony/back.svg"
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(10, "feet")
  14245. },
  14246. {
  14247. name: "Macro",
  14248. height: math.unit(130, "feet")
  14249. },
  14250. {
  14251. name: "Macro+",
  14252. height: math.unit(240, "feet")
  14253. },
  14254. ]
  14255. )
  14256. };
  14257. characterMakers["Veski"] = () => {
  14258. return makeCharacter(
  14259. "Veski",
  14260. "Veski",
  14261. {
  14262. front: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/veski/front.svg",
  14268. extra: 1299/1225,
  14269. bottom: 0.04
  14270. }
  14271. },
  14272. back: {
  14273. height: math.unit(6, "feet"),
  14274. weight: math.unit(150, "lb"),
  14275. name: "Back",
  14276. image: {
  14277. source: "./media/characters/veski/back.svg",
  14278. extra: 1299/1225,
  14279. bottom: 0.008
  14280. }
  14281. },
  14282. maw: {
  14283. height: math.unit(1.5 * 1.21, "feet"),
  14284. name: "Maw",
  14285. image: {
  14286. source: "./media/characters/veski/maw.svg"
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(2, "km"),
  14294. default: true
  14295. },
  14296. ]
  14297. )
  14298. };
  14299. characterMakers["Isabelle"] = () => {
  14300. return makeCharacter(
  14301. "Isabelle",
  14302. "evilwithin",
  14303. {
  14304. front: {
  14305. height: math.unit(5 + 7/12, "feet"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/isabelle/front.svg",
  14309. extra: 2130/1976,
  14310. bottom: 0.05
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Supermicro",
  14317. height: math.unit(10, "micrometers")
  14318. },
  14319. {
  14320. name: "Micro",
  14321. height: math.unit(1, "inch")
  14322. },
  14323. {
  14324. name: "Tiny",
  14325. height: math.unit(5, "inches")
  14326. },
  14327. {
  14328. name: "Standard",
  14329. height: math.unit(5 + 7/12, "inches")
  14330. },
  14331. {
  14332. name: "Macro",
  14333. height: math.unit(80, "meters"),
  14334. default: true
  14335. },
  14336. {
  14337. name: "Megamacro",
  14338. height: math.unit(250, "meters")
  14339. },
  14340. {
  14341. name: "Gigamacro",
  14342. height: math.unit(5, "km")
  14343. },
  14344. {
  14345. name: "Cosmic",
  14346. height: math.unit(2.5e6, "miles")
  14347. },
  14348. ]
  14349. )
  14350. };
  14351. characterMakers["Hanzo"] = () => {
  14352. return makeCharacter(
  14353. "Hanzo",
  14354. "dragondruid",
  14355. {
  14356. front: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(150, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/hanzo/front.svg",
  14362. extra: 374/344,
  14363. bottom: 0.02
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(8, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. )
  14375. };
  14376. characterMakers["Anna"] = () => {
  14377. return makeCharacter(
  14378. "Anna",
  14379. "dragondruid",
  14380. {
  14381. front: {
  14382. height: math.unit(7, "feet"),
  14383. weight: math.unit(130, "lb"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/anna/front.svg",
  14387. extra: 169/145,
  14388. bottom: 0.06
  14389. }
  14390. },
  14391. full: {
  14392. height: math.unit(4.96, "feet"),
  14393. weight: math.unit(220, "lb"),
  14394. name: "Full",
  14395. image: {
  14396. source: "./media/characters/anna/full.svg",
  14397. extra: 138/114,
  14398. bottom: 0.15
  14399. }
  14400. },
  14401. tongue: {
  14402. height: math.unit(2.53, "feet"),
  14403. name: "Tongue",
  14404. image: {
  14405. source: "./media/characters/anna/tongue.svg"
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(7, "feet"),
  14413. default: true
  14414. },
  14415. ]
  14416. )
  14417. };
  14418. characterMakers["Ian Corvid"] = () => {
  14419. return makeCharacter(
  14420. "Ian Corvid",
  14421. "IanCorvid",
  14422. {
  14423. front: {
  14424. height: math.unit(7, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/ian-corvid/front.svg",
  14429. extra: 150/142,
  14430. bottom: 0.02
  14431. }
  14432. },
  14433. back: {
  14434. height: math.unit(7, "feet"),
  14435. weight: math.unit(150, "lb"),
  14436. name: "Back",
  14437. image: {
  14438. source: "./media/characters/ian-corvid/back.svg",
  14439. extra: 150/143,
  14440. bottom: 0.01
  14441. }
  14442. },
  14443. stomping: {
  14444. height: math.unit(7, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Stomping",
  14447. image: {
  14448. source: "./media/characters/ian-corvid/stomping.svg",
  14449. extra: 76/72
  14450. }
  14451. },
  14452. sitting: {
  14453. height: math.unit(7/1.8, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Sitting",
  14456. image: {
  14457. source: "./media/characters/ian-corvid/sitting.svg",
  14458. extra: 1400/1269,
  14459. bottom: 0.15
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Tiny Microw",
  14466. height: math.unit(1, "inch")
  14467. },
  14468. {
  14469. name: "Microw",
  14470. height: math.unit(6, "inches")
  14471. },
  14472. {
  14473. name: "Crow",
  14474. height: math.unit(7 + 1/12, "feet"),
  14475. default: true
  14476. },
  14477. {
  14478. name: "Macrow",
  14479. height: math.unit(176, "feet")
  14480. },
  14481. ]
  14482. )
  14483. };
  14484. characterMakers["Natalie Kellon"] = () => {
  14485. return makeCharacter(
  14486. "Natalie Kellon",
  14487. "lestrange110",
  14488. {
  14489. front: {
  14490. height: math.unit(5 + 7/12, "feet"),
  14491. weight: math.unit(147, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/natalie-kellon/front.svg",
  14495. extra: 1214/1141,
  14496. bottom: 0.02
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(1/16, "inch")
  14504. },
  14505. {
  14506. name: "Tiny",
  14507. height: math.unit(4, "inches")
  14508. },
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(5 + 7/12, "feet"),
  14512. default: true
  14513. },
  14514. {
  14515. name: "Amazon",
  14516. height: math.unit(12, "feet")
  14517. },
  14518. {
  14519. name: "Giantess",
  14520. height: math.unit(160, "meters")
  14521. },
  14522. {
  14523. name: "Titaness",
  14524. height: math.unit(800, "meters")
  14525. },
  14526. ]
  14527. )
  14528. };
  14529. characterMakers["Alluria"] = () => {
  14530. return makeCharacter(
  14531. "Alluria",
  14532. "Sir--Raptor",
  14533. {
  14534. front: {
  14535. height: math.unit(6, "feet"),
  14536. weight: math.unit(150, "lb"),
  14537. name: "Front",
  14538. image: {
  14539. source: "./media/characters/alluria/front.svg",
  14540. extra: 806/738,
  14541. bottom: 0.01
  14542. }
  14543. },
  14544. side: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(150, "lb"),
  14547. name: "Side",
  14548. image: {
  14549. source: "./media/characters/alluria/side.svg",
  14550. extra: 800/750,
  14551. }
  14552. },
  14553. back: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(150, "lb"),
  14556. name: "Back",
  14557. image: {
  14558. source: "./media/characters/alluria/back.svg",
  14559. extra: 806/738,
  14560. }
  14561. },
  14562. frontMaid: {
  14563. height: math.unit(6, "feet"),
  14564. weight: math.unit(150, "lb"),
  14565. name: "Front (Maid)",
  14566. image: {
  14567. source: "./media/characters/alluria/front-maid.svg",
  14568. extra: 806/738,
  14569. bottom: 0.01
  14570. }
  14571. },
  14572. sideMaid: {
  14573. height: math.unit(6, "feet"),
  14574. weight: math.unit(150, "lb"),
  14575. name: "Side (Maid)",
  14576. image: {
  14577. source: "./media/characters/alluria/side-maid.svg",
  14578. extra: 800/750,
  14579. bottom: 0.005
  14580. }
  14581. },
  14582. backMaid: {
  14583. height: math.unit(6, "feet"),
  14584. weight: math.unit(150, "lb"),
  14585. name: "Back (Maid)",
  14586. image: {
  14587. source: "./media/characters/alluria/back-maid.svg",
  14588. extra: 806/738,
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Micro",
  14595. height: math.unit(6, "inches"),
  14596. default: true
  14597. },
  14598. ]
  14599. )
  14600. };
  14601. characterMakers["Kyle"] = () => {
  14602. return makeCharacter(
  14603. "Kyle",
  14604. "Jasmith",
  14605. {
  14606. front: {
  14607. height: math.unit(6, "feet"),
  14608. weight: math.unit(150, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/kyle/front.svg",
  14612. extra: 1069/962,
  14613. bottom: 77.228/1727.45
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Macro",
  14620. height: math.unit(150, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. )
  14625. };
  14626. characterMakers["Duncan"] = () => {
  14627. return makeCharacter(
  14628. "Duncan",
  14629. "Duncan",
  14630. {
  14631. front: {
  14632. height: math.unit(6, "feet"),
  14633. weight: math.unit(300, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/duncan/front.svg",
  14637. extra: 1650/1482,
  14638. bottom: 0.05
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Macro",
  14645. height: math.unit(100, "feet"),
  14646. default: true
  14647. },
  14648. ]
  14649. )
  14650. };
  14651. characterMakers["Memory"] = () => {
  14652. return makeCharacter(
  14653. "Memory",
  14654. "boringcactus",
  14655. {
  14656. front: {
  14657. height: math.unit(5 + 4/12, "feet"),
  14658. weight: math.unit(220, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/memory/front.svg",
  14662. extra: 3641/3545,
  14663. bottom: 0.03
  14664. }
  14665. },
  14666. back: {
  14667. height: math.unit(5 + 4/12, "feet"),
  14668. weight: math.unit(220, "lb"),
  14669. name: "Back",
  14670. image: {
  14671. source: "./media/characters/memory/back.svg",
  14672. extra: 3641/3545,
  14673. bottom: 0.025
  14674. }
  14675. },
  14676. frontSkirt: {
  14677. height: math.unit(5 + 4/12, "feet"),
  14678. weight: math.unit(220, "lb"),
  14679. name: "Front (Skirt)",
  14680. image: {
  14681. source: "./media/characters/memory/front-skirt.svg",
  14682. extra: 3641/3545,
  14683. bottom: 0.03
  14684. }
  14685. },
  14686. frontDress: {
  14687. height: math.unit(5 + 4/12, "feet"),
  14688. weight: math.unit(220, "lb"),
  14689. name: "Front (Dress)",
  14690. image: {
  14691. source: "./media/characters/memory/front-dress.svg",
  14692. extra: 3641/3545,
  14693. bottom: 0.03
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Micro",
  14700. height: math.unit(6, "inches"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(5 + 4/12, "feet")
  14706. },
  14707. ]
  14708. )
  14709. };
  14710. characterMakers["Luno"] = () => {
  14711. return makeCharacter(
  14712. "Luno",
  14713. "Jamesy",
  14714. {
  14715. front: {
  14716. height: math.unit(4 + 11/12, "feet"),
  14717. weight: math.unit(100, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/luno/front.svg",
  14721. extra: 1535/1487,
  14722. bottom: 0.03
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Micro",
  14729. height: math.unit(3, "inches")
  14730. },
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(4 + 11/12, "feet"),
  14734. default: true
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(300, "feet")
  14739. },
  14740. {
  14741. name: "Megamacro",
  14742. height: math.unit(700, "miles")
  14743. },
  14744. ]
  14745. )
  14746. };
  14747. characterMakers["Jamesy"] = () => {
  14748. return makeCharacter(
  14749. "Jamesy",
  14750. "Jamesy",
  14751. {
  14752. front: {
  14753. height: math.unit(6 + 2/12, "feet"),
  14754. weight: math.unit(170, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/jamesy/front.svg",
  14758. extra: 440/382,
  14759. bottom: 0.005
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Micro",
  14766. height: math.unit(3, "inches")
  14767. },
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(6 + 2/12, "feet"),
  14771. default: true
  14772. },
  14773. {
  14774. name: "Macro",
  14775. height: math.unit(300, "feet")
  14776. },
  14777. {
  14778. name: "Megamacro",
  14779. height: math.unit(700, "miles")
  14780. },
  14781. ]
  14782. )
  14783. };
  14784. characterMakers["Mark"] = () => {
  14785. return makeCharacter(
  14786. "Mark",
  14787. "ich",
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(160, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/mark/front.svg",
  14795. extra: 3300/3100,
  14796. bottom: 136.42/3440.47
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Macro",
  14803. height: math.unit(120, "meters")
  14804. },
  14805. {
  14806. name: "Bigger Macro",
  14807. height: math.unit(350, "meters")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(8, "km"),
  14812. default: true
  14813. },
  14814. {
  14815. name: "Continental",
  14816. height: math.unit(4550, "km")
  14817. },
  14818. {
  14819. name: "Planetary",
  14820. height: math.unit(65000, "km")
  14821. },
  14822. ]
  14823. )
  14824. };
  14825. characterMakers["Mac"] = () => {
  14826. return makeCharacter(
  14827. "Mac",
  14828. "Macroceli",
  14829. {
  14830. front: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(400, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/mac/front.svg",
  14836. extra: 1048/987.7,
  14837. bottom: 60/1107.6,
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Macro",
  14844. height: math.unit(500, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. )
  14849. };
  14850. characterMakers["Bari"] = () => {
  14851. return makeCharacter(
  14852. "Bari",
  14853. "Bariamph",
  14854. {
  14855. front: {
  14856. height: math.unit(5 + 2/12, "feet"),
  14857. weight: math.unit(190, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/bari/front.svg",
  14861. extra: 3156/2880,
  14862. bottom: 0.03
  14863. }
  14864. },
  14865. back: {
  14866. height: math.unit(5 + 2/12, "feet"),
  14867. weight: math.unit(190, "lb"),
  14868. name: "Back",
  14869. image: {
  14870. source: "./media/characters/bari/back.svg",
  14871. extra: 3260/2834,
  14872. bottom: 0.025
  14873. }
  14874. },
  14875. frontPlush: {
  14876. height: math.unit(5 + 2/12, "feet"),
  14877. weight: math.unit(190, "lb"),
  14878. name: "Front (Plush)",
  14879. image: {
  14880. source: "./media/characters/bari/front-plush.svg",
  14881. extra: 1112/1061,
  14882. bottom: 0.002
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Micro",
  14889. height: math.unit(3, "inches")
  14890. },
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(5 + 2/12, "feet"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Macro",
  14898. height: math.unit(20, "feet")
  14899. },
  14900. ]
  14901. )
  14902. };
  14903. characterMakers["Hunter Misha Raven"] = () => {
  14904. return makeCharacter(
  14905. "Hunter Misha Raven",
  14906. "ashtrek",
  14907. {
  14908. front: {
  14909. height: math.unit(6 + 1/12, "feet"),
  14910. weight: math.unit(275, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/hunter-misha-raven/front.svg"
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Mortal",
  14920. height: math.unit(6 + 1/12, "feet")
  14921. },
  14922. {
  14923. name: "Divine",
  14924. height: math.unit(1.12134e34, "parsecs"),
  14925. default: true
  14926. },
  14927. ]
  14928. )
  14929. };
  14930. characterMakers["Max Calore"] = () => {
  14931. return makeCharacter(
  14932. "Max Calore",
  14933. "flamestar",
  14934. {
  14935. front: {
  14936. height: math.unit(6 + 3/12, "feet"),
  14937. weight: math.unit(220, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/max-calore/front.svg",
  14941. extra: 1700/1648,
  14942. bottom: 0.01
  14943. }
  14944. },
  14945. back: {
  14946. height: math.unit(6 + 3/12, "feet"),
  14947. weight: math.unit(220, "lb"),
  14948. name: "Back",
  14949. image: {
  14950. source: "./media/characters/max-calore/back.svg",
  14951. extra: 1700/1648,
  14952. bottom: 0.01
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(6 + 3/12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. )
  14964. };
  14965. characterMakers["Aspen"] = () => {
  14966. return makeCharacter(
  14967. "Aspen",
  14968. "Fidchell",
  14969. {
  14970. side: {
  14971. height: math.unit(2 + 8/12, "feet"),
  14972. weight: math.unit(99, "lb"),
  14973. name: "Side",
  14974. image: {
  14975. source: "./media/characters/aspen/side.svg",
  14976. extra: 152/138,
  14977. bottom: 0.032
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(2 + 8/12, "feet"),
  14985. default: true
  14986. },
  14987. ]
  14988. )
  14989. };
  14990. characterMakers["Sheila (Wolf)"] = () => {
  14991. return makeCharacter(
  14992. "Sheila (Wolf)",
  14993. "Fidchell",
  14994. {
  14995. side: {
  14996. height: math.unit(3 + 2/12, "feet"),
  14997. weight: math.unit(224, "lb"),
  14998. name: "Side",
  14999. image: {
  15000. source: "./media/characters/sheila-wolf/side.svg",
  15001. extra: 179/166,
  15002. bottom: 0.03
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(3 + 2/12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. )
  15014. };
  15015. characterMakers["Michelle"] = () => {
  15016. return makeCharacter(
  15017. "Michelle",
  15018. "Fidchell",
  15019. {
  15020. side: {
  15021. height: math.unit(1 + 9/12, "feet"),
  15022. weight: math.unit(38, "lb"),
  15023. name: "Side",
  15024. image: {
  15025. source: "./media/characters/michelle/side.svg",
  15026. extra: 147/136.7,
  15027. bottom: 0.03
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(1 + 9/12, "feet"),
  15035. default: true
  15036. },
  15037. ]
  15038. )
  15039. };
  15040. characterMakers["Nino"] = () => {
  15041. return makeCharacter(
  15042. "Nino",
  15043. "Fidchell",
  15044. {
  15045. front: {
  15046. height: math.unit(1 + 1/12, "feet"),
  15047. weight: math.unit(18, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/nino/front.svg"
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(1 + 1/12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. )
  15062. };
  15063. characterMakers["Viola"] = () => {
  15064. return makeCharacter(
  15065. "Viola",
  15066. "Fidchell",
  15067. {
  15068. front: {
  15069. height: math.unit(1, "feet"),
  15070. weight: math.unit(16, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/viola/front.svg"
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(1, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. )
  15085. };
  15086. characterMakers["Atlas"] = () => {
  15087. return makeCharacter(
  15088. "Atlas",
  15089. "Fidchell",
  15090. {
  15091. front: {
  15092. height: math.unit(6 + 5/12, "feet"),
  15093. weight: math.unit(580, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/atlas/front.svg",
  15097. extra: 298.5/290,
  15098. bottom: 0.015
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(6 + 5/12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. )
  15110. };
  15111. characterMakers["Davy"] = () => {
  15112. return makeCharacter(
  15113. "Davy",
  15114. "Fidchell",
  15115. {
  15116. side: {
  15117. height: math.unit(1 + 10/12, "feet"),
  15118. weight: math.unit(25, "lb"),
  15119. name: "Side",
  15120. image: {
  15121. source: "./media/characters/davy/side.svg",
  15122. extra: 200/170,
  15123. bottom: 0.01
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(1 + 10/12, "feet"),
  15131. default: true
  15132. },
  15133. ]
  15134. )
  15135. };
  15136. characterMakers["Fiona"] = () => {
  15137. return makeCharacter(
  15138. "Fiona",
  15139. "Fidchell",
  15140. {
  15141. side: {
  15142. height: math.unit(4 + 8/12, "feet"),
  15143. weight: math.unit(166, "lb"),
  15144. name: "Side",
  15145. image: {
  15146. source: "./media/characters/fiona/side.svg",
  15147. extra: 232/220,
  15148. bottom: 0.03
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(4 + 8/12, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. )
  15160. };
  15161. characterMakers["Lyla"] = () => {
  15162. return makeCharacter(
  15163. "Lyla",
  15164. "Fidchell",
  15165. {
  15166. front: {
  15167. height: math.unit(2, "feet"),
  15168. weight: math.unit(62, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/lyla/front.svg",
  15172. bottom: 0.1
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(2, "feet")
  15180. },
  15181. ]
  15182. )
  15183. };
  15184. characterMakers["Perseus"] = () => {
  15185. return makeCharacter(
  15186. "Perseus",
  15187. "Fidchell",
  15188. {
  15189. side: {
  15190. height: math.unit(1.8, "feet"),
  15191. weight: math.unit(44, "lb"),
  15192. name: "Side",
  15193. image: {
  15194. source: "./media/characters/perseus/side.svg",
  15195. bottom: 0.21
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(1.8, "feet")
  15203. },
  15204. ]
  15205. )
  15206. };
  15207. characterMakers["Remus"] = () => {
  15208. return makeCharacter(
  15209. "Remus",
  15210. "Fidchell",
  15211. {
  15212. side: {
  15213. height: math.unit(4 + 2/12, "feet"),
  15214. weight: math.unit(20, "lb"),
  15215. name: "Side",
  15216. image: {
  15217. source: "./media/characters/remus/side.svg"
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(4 + 2/12, "feet")
  15225. },
  15226. ]
  15227. )
  15228. };
  15229. characterMakers["Raf"] = () => {
  15230. return makeCharacter(
  15231. "Raf",
  15232. "the_raf",
  15233. {
  15234. front: {
  15235. height: math.unit(4 + 11/12, "feet"),
  15236. weight: math.unit(114, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/raf/front.svg",
  15240. bottom: 0.01
  15241. }
  15242. },
  15243. side: {
  15244. height: math.unit(4 + 11/12, "feet"),
  15245. weight: math.unit(114, "lb"),
  15246. name: "Side",
  15247. image: {
  15248. source: "./media/characters/raf/side.svg",
  15249. bottom: 0.005
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Micro",
  15256. height: math.unit(2, "inches")
  15257. },
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(4 + 11/12, "feet"),
  15261. default: true
  15262. },
  15263. {
  15264. name: "Macro",
  15265. height: math.unit(70, "feet")
  15266. },
  15267. ]
  15268. )
  15269. };
  15270. characterMakers["Liam Einarr"] = () => {
  15271. return makeCharacter(
  15272. "Liam Einarr",
  15273. "LiamEinarr",
  15274. {
  15275. front: {
  15276. height: math.unit(1.5, "meters"),
  15277. weight: math.unit(68, "kg"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/liam-einarr/front.svg",
  15281. extra: 2822/2666
  15282. }
  15283. },
  15284. back: {
  15285. height: math.unit(1.5, "meters"),
  15286. weight: math.unit(68, "kg"),
  15287. name: "Back",
  15288. image: {
  15289. source: "./media/characters/liam-einarr/back.svg",
  15290. extra: 2822/2666,
  15291. bottom: 0.015
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(1.5, "meters"),
  15299. default: true
  15300. },
  15301. {
  15302. name: "Macro",
  15303. height: math.unit(150, "meters")
  15304. },
  15305. {
  15306. name: "Megamacro",
  15307. height: math.unit(35, "km")
  15308. },
  15309. ]
  15310. )
  15311. };
  15312. characterMakers["Linda"] = () => {
  15313. return makeCharacter(
  15314. "Linda",
  15315. "Dalken",
  15316. {
  15317. front: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(75, "kg"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/linda/front.svg",
  15323. extra: 930/874,
  15324. bottom: 0.004
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(6, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. )
  15336. };
  15337. characterMakers["Caylex"] = () => {
  15338. return makeCharacter(
  15339. "Caylex",
  15340. "ArgentVZ",
  15341. {
  15342. front: {
  15343. height: math.unit(6 + 8/12, "feet"),
  15344. weight: math.unit(220, "lb"),
  15345. name: "Front",
  15346. image: {
  15347. source: "./media/characters/caylex/front.svg",
  15348. extra: 821/772,
  15349. bottom: 0.07
  15350. }
  15351. },
  15352. back: {
  15353. height: math.unit(6 + 8/12, "feet"),
  15354. weight: math.unit(220, "lb"),
  15355. name: "Back",
  15356. image: {
  15357. source: "./media/characters/caylex/back.svg",
  15358. extra: 821/772,
  15359. bottom: 0.022
  15360. }
  15361. },
  15362. hand: {
  15363. height: math.unit(1.25, "feet"),
  15364. name: "Hand",
  15365. image: {
  15366. source: "./media/characters/caylex/hand.svg"
  15367. }
  15368. },
  15369. foot: {
  15370. height: math.unit(1.6, "feet"),
  15371. name: "Foot",
  15372. image: {
  15373. source: "./media/characters/caylex/foot.svg"
  15374. }
  15375. },
  15376. armored: {
  15377. height: math.unit(6 + 8/12, "feet"),
  15378. weight: math.unit(250, "lb"),
  15379. name: "Armored",
  15380. image: {
  15381. source: "./media/characters/caylex/armored.svg",
  15382. extra: 1420/1310,
  15383. bottom: 0.045
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(6 + 8/12, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Normal+",
  15395. height: math.unit(12, "feet")
  15396. },
  15397. ]
  15398. )
  15399. };
  15400. characterMakers["Alana"] = () => {
  15401. return makeCharacter(
  15402. "Alana",
  15403. "Adeleide",
  15404. {
  15405. front: {
  15406. height: math.unit(7 + 6/12, "feet"),
  15407. weight: math.unit(288, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/alana/front.svg",
  15411. extra: 679/653,
  15412. bottom: 22.5/701
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(7 + 6/12, "feet")
  15420. },
  15421. {
  15422. name: "Large",
  15423. height: math.unit(50, "feet")
  15424. },
  15425. {
  15426. name: "Macro",
  15427. height: math.unit(100, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Macro+",
  15432. height: math.unit(200, "feet")
  15433. },
  15434. ]
  15435. )
  15436. };
  15437. characterMakers["Hasani"] = () => {
  15438. return makeCharacter(
  15439. "Hasani",
  15440. "BishopBun",
  15441. {
  15442. front: {
  15443. height: math.unit(6 + 1/12, "feet"),
  15444. weight: math.unit(210, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/hasani/front.svg",
  15448. extra: 244/232,
  15449. bottom: 0.01
  15450. }
  15451. },
  15452. back: {
  15453. height: math.unit(6 + 1/12, "feet"),
  15454. weight: math.unit(210, "lb"),
  15455. name: "Back",
  15456. image: {
  15457. source: "./media/characters/hasani/back.svg",
  15458. extra: 244/232,
  15459. bottom: 0.01
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(6 + 1/12, "feet")
  15467. },
  15468. {
  15469. name: "Macro",
  15470. height: math.unit(175, "feet"),
  15471. default: true
  15472. },
  15473. ]
  15474. )
  15475. };
  15476. characterMakers["Nita"] = () => {
  15477. return makeCharacter(
  15478. "Nita",
  15479. "Ich",
  15480. {
  15481. front: {
  15482. height: math.unit(1.82, "meters"),
  15483. weight: math.unit(140, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/nita/front.svg",
  15487. extra: 2473/2363,
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(1.82, "m")
  15496. },
  15497. {
  15498. name: "Macro",
  15499. height: math.unit(300, "m")
  15500. },
  15501. {
  15502. name: "Mistake Canon",
  15503. height: math.unit(0.5, "miles"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Big Mistake",
  15508. height: math.unit(13, "miles")
  15509. },
  15510. {
  15511. name: "Playing God",
  15512. height: math.unit(2450, "miles")
  15513. },
  15514. ]
  15515. )
  15516. };
  15517. characterMakers["Shiriko"] = () => {
  15518. return makeCharacter(
  15519. "Shiriko",
  15520. "Shiriko",
  15521. {
  15522. front: {
  15523. height: math.unit(4, "feet"),
  15524. weight: math.unit(120, "lb"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/shiriko/front.svg",
  15528. extra: 195/188
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(4, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. )
  15540. };
  15541. characterMakers["Deja"] = () => {
  15542. return makeCharacter(
  15543. "Deja",
  15544. "dejaroo",
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. name: "front",
  15549. image: {
  15550. source: "./media/characters/deja/front.svg",
  15551. extra: 926/840,
  15552. bottom: 0.07
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Planck Length",
  15559. height: math.unit(1.6e-35, "meters")
  15560. },
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(30.48, "meters"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Universal",
  15568. height: math.unit(8.8e26, "meters")
  15569. },
  15570. ]
  15571. )
  15572. };
  15573. characterMakers["Anima"] = () => {
  15574. return makeCharacter(
  15575. "Anima",
  15576. "Anima",
  15577. {
  15578. side: {
  15579. height: math.unit(8, "feet"),
  15580. weight: math.unit(6300, "lb"),
  15581. name: "Side",
  15582. image: {
  15583. source: "./media/characters/anima/side.svg",
  15584. bottom: 0.035
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(8, "feet")
  15592. },
  15593. ]
  15594. )
  15595. };
  15596. //characters
  15597. function makeCharacters() {
  15598. const results = [];
  15599. Object.entries(characterMakers).forEach(([key, value]) => {
  15600. results.push({
  15601. name: key,
  15602. constructor: value
  15603. });
  15604. });
  15605. results.push({
  15606. name: "Aigey",
  15607. constructor: makeAigey
  15608. });
  15609. results.push({
  15610. name: "Natasha",
  15611. constructor: makeNatasha
  15612. });
  15613. results.push({
  15614. name: "Malik",
  15615. constructor: makeMalik
  15616. });
  15617. results.push({
  15618. name: "Sefer",
  15619. constructor: makeSefer
  15620. });
  15621. return results;
  15622. }