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

10055 строки
261 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsecs", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("lightyears", {
  7. definition: "9.461e15 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("AU", {
  11. definition: "149597870700 meters"
  12. })
  13. function makeCharacter(name, author, viewInfo, defaultSizes, defaultSize, extraInfo) {
  14. if (extraInfo === undefined) {
  15. extraInfo = {}
  16. }
  17. views = {};
  18. Object.entries(viewInfo).forEach(([key, value]) => {
  19. views[key] = {
  20. attributes: {
  21. height: {
  22. name: "Height",
  23. power: 1,
  24. type: "length",
  25. base: value.height
  26. }
  27. },
  28. image: value.image,
  29. name: value.name,
  30. info: value.info,
  31. rename: value.rename
  32. }
  33. if (value.weight) {
  34. views[key].attributes.weight = {
  35. name: "Mass",
  36. power: 3,
  37. type: "mass",
  38. base: value.weight
  39. };
  40. }
  41. });
  42. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  43. if (defaultSize) {
  44. entity.views[entity.defaultView].height = defaultSize;
  45. }
  46. return entity;
  47. }
  48. characterMakers["Fen"] = () => {
  49. return makeCharacter(
  50. "Fen",
  51. "chemicalcrux",
  52. {
  53. back: {
  54. height: math.unit(2.2428, "meter"),
  55. weight: math.unit(124.738, "kg"),
  56. name: "Back",
  57. image: {
  58. source: "./media/characters/fen/back.svg",
  59. extra: 1025/935
  60. },
  61. info: {
  62. description: {
  63. mode: "append",
  64. text: "\n\nHe is not currently looking at you."
  65. }
  66. }
  67. },
  68. full: {
  69. height: math.unit(1.34, "meter"),
  70. weight: math.unit(225, "kg"),
  71. name: "Full",
  72. image: {
  73. source: "./media/characters/fen/full.svg"
  74. },
  75. info: {
  76. description: {
  77. mode: "append",
  78. text: "\n\nMunch."
  79. }
  80. }
  81. }
  82. },
  83. [
  84. {
  85. name: "Normal",
  86. height: math.unit(2.2428, "meter")
  87. },
  88. {
  89. name: "Big",
  90. height: math.unit(12, "feet")
  91. },
  92. {
  93. name: "Macro",
  94. height: math.unit(100, "meter"),
  95. default: true,
  96. info: {
  97. description: {
  98. mode: "append",
  99. text: "\n\nTOO DAMN BIG"
  100. }
  101. }
  102. },
  103. {
  104. name: "Macro+",
  105. height: math.unit(1000, "meter")
  106. },
  107. {
  108. name: "Megamacro",
  109. height: math.unit(10, "miles")
  110. }
  111. ],
  112. math.unit(100, "meter"),
  113. {
  114. description: {
  115. title: "Bio",
  116. text: "Very furry. Sheds on everything."
  117. }
  118. }
  119. )
  120. };
  121. characterMakers["Sofia"] = () => {
  122. return makeCharacter(
  123. "Sofia",
  124. "ZakuraTech",
  125. {
  126. front: {
  127. height: math.unit(183, "cm"),
  128. weight: math.unit(80, "kg"),
  129. name: "Front",
  130. image: {
  131. source: "./media/characters/sofia/front.svg",
  132. bottom: 0.01,
  133. extra: 1 / (1 - 0.01)
  134. }
  135. },
  136. frontAlt: {
  137. height: math.unit(183, "cm"),
  138. weight: math.unit(80, "kg"),
  139. name: "Front (alt)",
  140. image: {
  141. source: "./media/characters/sofia/front-alt.svg"
  142. }
  143. },
  144. back: {
  145. height: math.unit(183, "cm"),
  146. weight: math.unit(80, "kg"),
  147. name: "Back",
  148. image: {
  149. source: "./media/characters/sofia/back.svg"
  150. }
  151. },
  152. },
  153. [
  154. {
  155. name: "Normal",
  156. height: math.unit(1.83, "meter")
  157. },
  158. {
  159. name: "Macro",
  160. height: math.unit(96, "feet")
  161. },
  162. {
  163. name: "Megamerger",
  164. height: math.unit(650, "feet")
  165. },
  166. ],
  167. math.unit(96, "feet")
  168. )
  169. };
  170. characterMakers["March"] = () => {
  171. return makeCharacter(
  172. "March",
  173. "March-Dragon",
  174. {
  175. front: {
  176. height: math.unit(7, "feet"),
  177. weight: math.unit(100, "kg"),
  178. name: "Front",
  179. image: {
  180. source: "./media/characters/march/front.svg",
  181. extra: (1 / (1 - 0.015)),
  182. bottom: 0.015
  183. }
  184. },
  185. foot: {
  186. height: math.unit(0.9, "feet"),
  187. name: "Foot",
  188. image: {
  189. source: "./media/characters/march/foot.svg"
  190. }
  191. },
  192. },
  193. [
  194. {
  195. name: "Normal",
  196. height: math.unit(7.9, "feet")
  197. },
  198. {
  199. name: "Macro",
  200. height: math.unit(220, "meters")
  201. },
  202. {
  203. name: "Megamacro",
  204. height: math.unit(2.98, "km"),
  205. default: true
  206. },
  207. {
  208. name: "Gigamacro",
  209. height: math.unit(15963, "km")
  210. },
  211. {
  212. name: "Teramacro",
  213. height: math.unit(2980000000, "km")
  214. },
  215. {
  216. name: "Examacro",
  217. height: math.unit(250, "parsecs")
  218. },
  219. ]
  220. )
  221. };
  222. function makeMarch() {
  223. const views = {
  224. front: {
  225. attributes: {
  226. height: {
  227. name: "Height",
  228. power: 1,
  229. type: "length",
  230. base: math.unit(7, "feet")
  231. },
  232. weight: {
  233. name: "Weight",
  234. power: 3,
  235. type: "mass",
  236. base: math.unit(100, "kg")
  237. }
  238. },
  239. image: {
  240. source: "./media/characters/march/front.svg"
  241. },
  242. name: "Front"
  243. },
  244. foot: {
  245. attributes: {
  246. height: {
  247. name: "Height",
  248. power: 1,
  249. type: "length",
  250. base: math.unit(0.9, "feet")
  251. }
  252. },
  253. image: {
  254. source: "./media/characters/march/foot.svg"
  255. },
  256. name: "Foot"
  257. }
  258. };
  259. const entity = makeEntity({ name: "March", author: "March-Dragon" }, views, []);
  260. entity.sizes.push({
  261. name: "Normal",
  262. height: math.unit(7.9, "feet")
  263. });
  264. entity.sizes.push({
  265. name: "Macro",
  266. height: math.unit(220, "meters")
  267. });
  268. entity.sizes.push({
  269. name: "Megamacro",
  270. height: math.unit(2.98, "km")
  271. });
  272. entity.sizes.push({
  273. name: "Gigamacro",
  274. height: math.unit(15963, "km")
  275. });
  276. entity.sizes.push({
  277. name: "Teramacro",
  278. height: math.unit(2980000000, "kilometers")
  279. });
  280. entity.sizes.push({
  281. name: "Examacro",
  282. height: math.unit(250, "parsecs")
  283. });
  284. entity.views.front.height = math.unit(2.98, "km");
  285. return entity;
  286. }
  287. function makeNoir() {
  288. const views = {
  289. front: {
  290. attributes: {
  291. height: {
  292. name: "Height",
  293. power: 1,
  294. type: "length",
  295. base: math.unit(6, "feet")
  296. },
  297. weight: {
  298. name: "Weight",
  299. power: 3,
  300. type: "mass",
  301. base: math.unit(60, "kg")
  302. }
  303. },
  304. image: {
  305. source: "./media/characters/noir/front.svg",
  306. bottom: 0.01
  307. },
  308. name: "Front"
  309. }
  310. };
  311. const entity = makeEntity({ name: "Noir", author: "March-Dragon" }, views, []);
  312. entity.sizes.push({
  313. name: "Normal",
  314. height: math.unit(6.6, "feet")
  315. });
  316. entity.sizes.push({
  317. name: "Macro",
  318. height: math.unit(500, "feet")
  319. });
  320. entity.sizes.push({
  321. name: "Megamacro",
  322. height: math.unit(2.5, "km")
  323. });
  324. entity.sizes.push({
  325. name: "Gigamacro",
  326. height: math.unit(22500, "km")
  327. });
  328. entity.sizes.push({
  329. name: "Teramacro",
  330. height: math.unit(2500000000, "kilometers")
  331. });
  332. entity.sizes.push({
  333. name: "Examacro",
  334. height: math.unit(200, "parsecs")
  335. });
  336. entity.views.front.height = math.unit(2.5, "km");
  337. return entity;
  338. }
  339. function makeOkuri() {
  340. const views = {
  341. front: {
  342. attributes: {
  343. height: {
  344. name: "Height",
  345. power: 1,
  346. type: "length",
  347. base: math.unit(7, "feet")
  348. },
  349. weight: {
  350. name: "Weight",
  351. power: 3,
  352. type: "mass",
  353. base: math.unit(100, "kg")
  354. }
  355. },
  356. image: {
  357. source: "./media/characters/okuri/front.svg"
  358. },
  359. name: "Front"
  360. },
  361. back: {
  362. attributes: {
  363. height: {
  364. name: "Height",
  365. power: 1,
  366. type: "length",
  367. base: math.unit(7, "feet")
  368. },
  369. weight: {
  370. name: "Weight",
  371. power: 3,
  372. type: "mass",
  373. base: math.unit(100, "kg")
  374. }
  375. },
  376. image: {
  377. source: "./media/characters/okuri/back.svg"
  378. },
  379. name: "Back"
  380. }
  381. };
  382. const entity = makeEntity({ name: "Okuri", author: "OrionMechadragon" }, views, []);
  383. entity.views.front.height = math.unit(100, "miles");
  384. return entity;
  385. }
  386. function makeManny() {
  387. const views = {
  388. front: {
  389. attributes: {
  390. height: {
  391. name: "Height",
  392. power: 1,
  393. type: "length",
  394. base: math.unit(7, "feet")
  395. },
  396. weight: {
  397. name: "Weight",
  398. power: 3,
  399. type: "mass",
  400. base: math.unit(100, "kg")
  401. }
  402. },
  403. image: {
  404. source: "./media/characters/manny/front.svg"
  405. },
  406. name: "Front"
  407. },
  408. back: {
  409. attributes: {
  410. height: {
  411. name: "Height",
  412. power: 1,
  413. type: "length",
  414. base: math.unit(7, "feet")
  415. },
  416. weight: {
  417. name: "Weight",
  418. power: 3,
  419. type: "mass",
  420. base: math.unit(100, "kg")
  421. }
  422. },
  423. image: {
  424. source: "./media/characters/manny/back.svg"
  425. },
  426. name: "Back"
  427. }
  428. };
  429. const entity = makeEntity({ name: "Manny", author: "Dialuca01" }, views, []);
  430. entity.sizes.push({
  431. name: "Normal",
  432. height: math.unit(7, "feet")
  433. });
  434. entity.sizes.push({
  435. name: "Macro",
  436. height: math.unit(78, "feet")
  437. });
  438. entity.sizes.push({
  439. name: "Macro+",
  440. height: math.unit(300, "meters")
  441. });
  442. entity.sizes.push({
  443. name: "Macro++",
  444. height: math.unit(2400, "feet")
  445. });
  446. entity.sizes.push({
  447. name: "Megamacro",
  448. height: math.unit(5167, "meters")
  449. });
  450. entity.sizes.push({
  451. name: "Gigamacro",
  452. height: math.unit(41769, "miles")
  453. });
  454. entity.views.front.height = math.unit(78, "feet");
  455. return entity;
  456. }
  457. function makeAdake() {
  458. const views = {
  459. front: {
  460. attributes: {
  461. height: {
  462. name: "Height",
  463. power: 1,
  464. type: "length",
  465. base: math.unit(7, "feet")
  466. },
  467. weight: {
  468. name: "Weight",
  469. power: 3,
  470. type: "mass",
  471. base: math.unit(100, "kg")
  472. }
  473. },
  474. image: {
  475. source: "./media/characters/adake/front-1.svg"
  476. },
  477. name: "Front"
  478. },
  479. frontAlt: {
  480. attributes: {
  481. height: {
  482. name: "Height",
  483. power: 1,
  484. type: "length",
  485. base: math.unit(7, "feet")
  486. },
  487. weight: {
  488. name: "Weight",
  489. power: 3,
  490. type: "mass",
  491. base: math.unit(100, "kg")
  492. }
  493. },
  494. image: {
  495. source: "./media/characters/adake/front-2.svg",
  496. bottom: 0.005
  497. },
  498. name: "Front (Alt)"
  499. },
  500. back: {
  501. attributes: {
  502. height: {
  503. name: "Height",
  504. power: 1,
  505. type: "length",
  506. base: math.unit(7, "feet")
  507. },
  508. weight: {
  509. name: "Weight",
  510. power: 3,
  511. type: "mass",
  512. base: math.unit(100, "kg")
  513. }
  514. },
  515. image: {
  516. source: "./media/characters/adake/back.svg",
  517. },
  518. name: "Back"
  519. },
  520. kneel: {
  521. attributes: {
  522. height: {
  523. name: "Height",
  524. power: 1,
  525. type: "length",
  526. base: math.unit(5.385, "feet")
  527. },
  528. weight: {
  529. name: "Weight",
  530. power: 3,
  531. type: "mass",
  532. base: math.unit(100, "kg")
  533. }
  534. },
  535. image: {
  536. source: "./media/characters/adake/kneel.svg",
  537. bottom: 0.05
  538. },
  539. name: "Kneeling"
  540. },
  541. };
  542. const entity = makeEntity({ name: "Adake", author: "Dialuca01" }, views, []);
  543. entity.sizes.push({
  544. name: "Normal",
  545. height: math.unit(7, "feet")
  546. });
  547. entity.sizes.push({
  548. name: "Macro",
  549. height: math.unit(78, "feet")
  550. });
  551. entity.sizes.push({
  552. name: "Macro+",
  553. height: math.unit(300, "meters")
  554. });
  555. entity.sizes.push({
  556. name: "Macro++",
  557. height: math.unit(2400, "feet")
  558. });
  559. entity.sizes.push({
  560. name: "Megamacro",
  561. height: math.unit(5167, "meters")
  562. });
  563. entity.sizes.push({
  564. name: "Gigamacro",
  565. height: math.unit(41769, "miles")
  566. });
  567. entity.views.front.height = math.unit(78, "feet");
  568. return entity;
  569. }
  570. function makeElijah() {
  571. const views = {
  572. side: {
  573. attributes: {
  574. height: {
  575. name: "Height",
  576. power: 1,
  577. type: "length",
  578. base: math.unit(7, "feet")
  579. },
  580. weight: {
  581. name: "Weight",
  582. power: 3,
  583. type: "mass",
  584. base: math.unit(50, "kg")
  585. }
  586. },
  587. image: {
  588. source: "./media/characters/elijah/side.svg",
  589. bottom: 0.01
  590. },
  591. name: "Side"
  592. },
  593. foot: {
  594. attributes: {
  595. height: {
  596. name: "Height",
  597. power: 1,
  598. type: "length",
  599. base: math.unit(2, "feet")
  600. }
  601. },
  602. image: {
  603. source: "./media/characters/elijah/foot.svg",
  604. },
  605. name: "Foot"
  606. }
  607. };
  608. const entity = makeEntity({ name: "Elijah", author: "Elijah" }, views, []);
  609. entity.sizes.push({
  610. name: "Normal",
  611. height: math.unit(1.65, "meters")
  612. });
  613. entity.sizes.push({
  614. name: "Macro",
  615. height: math.unit(55, "meters")
  616. });
  617. entity.sizes.push({
  618. name: "Macro+",
  619. height: math.unit(105, "meters")
  620. });
  621. entity.views.side.height = math.unit(55, "meters");
  622. return entity;
  623. }
  624. function makeRai() {
  625. const views = {
  626. front: {
  627. attributes: {
  628. height: {
  629. name: "Height",
  630. power: 1,
  631. type: "length",
  632. base: math.unit(7, "feet")
  633. },
  634. weight: {
  635. name: "Weight",
  636. power: 3,
  637. type: "mass",
  638. base: math.unit(80, "kg")
  639. }
  640. },
  641. image: {
  642. source: "./media/characters/rai/front.svg"
  643. },
  644. name: "Front"
  645. },
  646. side: {
  647. attributes: {
  648. height: {
  649. name: "Height",
  650. power: 1,
  651. type: "length",
  652. base: math.unit(7, "feet")
  653. },
  654. weight: {
  655. name: "Weight",
  656. power: 3,
  657. type: "mass",
  658. base: math.unit(80, "kg")
  659. }
  660. },
  661. image: {
  662. source: "./media/characters/rai/side.svg"
  663. },
  664. name: "Side"
  665. },
  666. back: {
  667. attributes: {
  668. height: {
  669. name: "Height",
  670. power: 1,
  671. type: "length",
  672. base: math.unit(7, "feet")
  673. },
  674. weight: {
  675. name: "Weight",
  676. power: 3,
  677. type: "mass",
  678. base: math.unit(80, "kg")
  679. }
  680. },
  681. image: {
  682. source: "./media/characters/rai/back.svg"
  683. },
  684. name: "Back"
  685. }
  686. };
  687. const entity = makeEntity({ name: "Rai", author: "shadowblade945" }, views, []);
  688. entity.views.front.height = math.unit(302, "feet");
  689. return entity;
  690. }
  691. function makeJazzy() {
  692. const views = {
  693. front: {
  694. attributes: {
  695. height: {
  696. name: "Height",
  697. power: 1,
  698. type: "length",
  699. base: math.unit(7, "feet")
  700. },
  701. weight: {
  702. name: "Weight",
  703. power: 3,
  704. type: "mass",
  705. base: math.unit(80, "kg")
  706. }
  707. },
  708. image: {
  709. source: "./media/characters/jazzy/front.svg",
  710. bottom: 0.01
  711. },
  712. name: "Front"
  713. },
  714. back: {
  715. attributes: {
  716. height: {
  717. name: "Height",
  718. power: 1,
  719. type: "length",
  720. base: math.unit(7, "feet")
  721. },
  722. weight: {
  723. name: "Weight",
  724. power: 3,
  725. type: "mass",
  726. base: math.unit(80, "kg")
  727. }
  728. },
  729. image: {
  730. source: "./media/characters/jazzy/back.svg"
  731. },
  732. name: "Back"
  733. }
  734. };
  735. const entity = makeEntity({ name: "Jazzy", author: "Jazzywolf" }, views, []);
  736. entity.views.front.height = math.unit(216, "feet");
  737. return entity;
  738. }
  739. function makeFlamm() {
  740. const views = {
  741. front: {
  742. attributes: {
  743. height: {
  744. name: "Height",
  745. power: 1,
  746. type: "length",
  747. base: math.unit(7, "feet")
  748. },
  749. weight: {
  750. name: "Weight",
  751. power: 3,
  752. type: "mass",
  753. base: math.unit(80, "kg")
  754. }
  755. },
  756. image: {
  757. source: "./media/characters/flamm/front.svg"
  758. },
  759. name: "Front"
  760. }
  761. };
  762. const entity = makeEntity({ name: "Flamm", author: "Flamm" }, views, []);
  763. entity.sizes.push({
  764. name: "Normal",
  765. height: math.unit(9.5, "feet")
  766. });
  767. entity.sizes.push({
  768. name: "Macro",
  769. height: math.unit(200, "feet")
  770. });
  771. entity.views.front.height = math.unit(200, "feet");
  772. return entity;
  773. }
  774. characterMakers["Zephiro"] = () => {
  775. return makeCharacter(
  776. "Zephiro",
  777. "Zephiro",
  778. {
  779. front: {
  780. height: math.unit(7, "feet"),
  781. weight: math.unit(80, "kg"),
  782. name: "Front",
  783. image: {
  784. source: "./media/characters/zephiro/front.svg",
  785. extra: 2309/2162 * (1 / (1 - 0.069)),
  786. bottom: 0.069
  787. }
  788. },
  789. side: {
  790. height: math.unit(7, "feet"),
  791. weight: math.unit(80, "kg"),
  792. name: "Side",
  793. image: {
  794. source: "./media/characters/zephiro/side.svg",
  795. extra: 2403/2279 * (1 / (1 - 0.015)),
  796. bottom: 0.015
  797. }
  798. },
  799. back: {
  800. height: math.unit(7, "feet"),
  801. weight: math.unit(80, "kg"),
  802. name: "Back",
  803. image: {
  804. source: "./media/characters/zephiro/back.svg",
  805. extra: 2373/2244 * (1 / (1 - 0.013)),
  806. bottom: 0.013
  807. }
  808. },
  809. },
  810. [
  811. {
  812. name: "Micro",
  813. height: math.unit(3, "inches")
  814. },
  815. {
  816. name: "Normal",
  817. height: math.unit(5 + 3/12, "feet"),
  818. default: true
  819. },
  820. {
  821. name: "Macro",
  822. height: math.unit(118, "feet")
  823. },
  824. ]
  825. )
  826. };
  827. function makeFory() {
  828. const views = {
  829. front: {
  830. attributes: {
  831. height: {
  832. name: "Height",
  833. power: 1,
  834. type: "length",
  835. base: math.unit(7, "feet")
  836. },
  837. weight: {
  838. name: "Weight",
  839. power: 3,
  840. type: "mass",
  841. base: math.unit(90, "kg")
  842. }
  843. },
  844. image: {
  845. source: "./media/characters/fory/front.svg"
  846. },
  847. name: "Front"
  848. }
  849. };
  850. const entity = makeEntity({ name: "Fory", author: "Manny" }, views, []);
  851. entity.sizes.push({
  852. name: "Normal",
  853. height: math.unit(5, "feet")
  854. });
  855. entity.sizes.push({
  856. name: "Macro",
  857. height: math.unit(50, "feet")
  858. });
  859. entity.views.front.height = math.unit(50, "feet");
  860. return entity;
  861. }
  862. function makeKurrikage() {
  863. const views = {
  864. front: {
  865. attributes: {
  866. height: {
  867. name: "Height",
  868. power: 1,
  869. type: "length",
  870. base: math.unit(7, "feet")
  871. },
  872. weight: {
  873. name: "Weight",
  874. power: 3,
  875. type: "mass",
  876. base: math.unit(90, "kg")
  877. }
  878. },
  879. image: {
  880. source: "./media/characters/kurrikage/front.svg"
  881. },
  882. name: "Front"
  883. },
  884. back: {
  885. attributes: {
  886. height: {
  887. name: "Height",
  888. power: 1,
  889. type: "length",
  890. base: math.unit(7, "feet")
  891. },
  892. weight: {
  893. name: "Weight",
  894. power: 3,
  895. type: "mass",
  896. base: math.unit(90, "kg")
  897. }
  898. },
  899. image: {
  900. source: "./media/characters/kurrikage/back.svg"
  901. },
  902. name: "Back"
  903. },
  904. paw: {
  905. attributes: {
  906. height: {
  907. name: "Height",
  908. power: 1,
  909. type: "length",
  910. base: math.unit(1.5, "feet")
  911. }
  912. },
  913. image: {
  914. source: "./media/characters/kurrikage/paw.svg"
  915. },
  916. name: "Paw"
  917. },
  918. staff: {
  919. attributes: {
  920. height: {
  921. name: "Height",
  922. power: 1,
  923. type: "length",
  924. base: math.unit(6.7, "feet")
  925. }
  926. },
  927. image: {
  928. source: "./media/characters/kurrikage/staff.svg"
  929. },
  930. name: "Staff"
  931. },
  932. peek: {
  933. attributes: {
  934. height: {
  935. name: "Height",
  936. power: 1,
  937. type: "length",
  938. base: math.unit(1.05, "feet")
  939. }
  940. },
  941. image: {
  942. source: "./media/characters/kurrikage/peek.svg",
  943. bottom: 0.08
  944. },
  945. name: "Peeking"
  946. }
  947. };
  948. const entity = makeEntity({ name: "Kurrikage", author: "Kurrikage" }, views, []);
  949. entity.views.front.height = math.unit(12, "feet");
  950. entity.sizes.push({
  951. name: "Normal",
  952. height: math.unit(12, "feet"),
  953. default: true
  954. });
  955. entity.sizes.push({
  956. name: "Big",
  957. height: math.unit(20, "feet")
  958. });
  959. entity.sizes.push({
  960. name: "Macro",
  961. height: math.unit(500, "feet")
  962. });
  963. entity.sizes.push({
  964. name: "Megamacro",
  965. height: math.unit(20, "miles")
  966. });
  967. return entity;
  968. }
  969. characterMakers["Shingo"] = () => {
  970. return makeCharacter(
  971. "Shingo",
  972. "Shingo",
  973. {
  974. front: {
  975. height: math.unit(6, "feet"),
  976. weight: math.unit(75, "kg"),
  977. name: "Front",
  978. image: {
  979. source: "./media/characters/shingo/front.svg",
  980. extra: 3511/3338 * (1 / (1 - 0.005)),
  981. bottom: 0.005
  982. }
  983. },
  984. },
  985. [
  986. {
  987. name: "Micro",
  988. height: math.unit(4, "inches")
  989. },
  990. {
  991. name: "Normal",
  992. height: math.unit(6, "feet"),
  993. default: true
  994. },
  995. {
  996. name: "Macro",
  997. height: math.unit(108, "feet")
  998. }
  999. ]
  1000. )
  1001. };
  1002. function makeAigey() {
  1003. const views = {
  1004. side: {
  1005. attributes: {
  1006. height: {
  1007. name: "Height",
  1008. power: 1,
  1009. type: "length",
  1010. base: math.unit(6, "feet")
  1011. },
  1012. weight: {
  1013. name: "Weight",
  1014. power: 3,
  1015. type: "mass",
  1016. base: math.unit(75, "kg")
  1017. }
  1018. },
  1019. image: {
  1020. source: "./media/characters/aigey/side.svg"
  1021. },
  1022. name: "Side"
  1023. }
  1024. };
  1025. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  1026. entity.sizes.push({
  1027. name: "Macro",
  1028. height: math.unit(200, "feet")
  1029. });
  1030. entity.sizes.push({
  1031. name: "Megamacro",
  1032. height: math.unit(100, "miles")
  1033. });
  1034. entity.views[entity.defaultView].height = math.unit(200, "feet");
  1035. return entity;
  1036. }
  1037. function makeNatasha() {
  1038. const views = {
  1039. side: {
  1040. attributes: {
  1041. height: {
  1042. name: "Height",
  1043. power: 1,
  1044. type: "length",
  1045. base: math.unit(6, "feet")
  1046. },
  1047. weight: {
  1048. name: "Weight",
  1049. power: 3,
  1050. type: "mass",
  1051. base: math.unit(75, "kg")
  1052. }
  1053. },
  1054. image: {
  1055. source: "./media/characters/natasha/front.svg"
  1056. },
  1057. name: "Side"
  1058. }
  1059. };
  1060. const entity = makeEntity({ name: "Natasha", author: "Natasha" }, views, []);
  1061. entity.sizes.push({
  1062. name: "Normal",
  1063. height: math.unit(5 + 5 / 12, "feet")
  1064. });
  1065. entity.sizes.push({
  1066. name: "Large",
  1067. height: math.unit(12, "feet")
  1068. });
  1069. entity.sizes.push({
  1070. name: "Macro",
  1071. height: math.unit(100, "feet")
  1072. });
  1073. entity.sizes.push({
  1074. name: "Macro+",
  1075. height: math.unit(260, "feet")
  1076. });
  1077. entity.sizes.push({
  1078. name: "Macro++",
  1079. height: math.unit(1, "mile")
  1080. });
  1081. entity.views[entity.defaultView].height = math.unit(100, "feet");
  1082. return entity;
  1083. }
  1084. function makeMalik() {
  1085. const views = {
  1086. front: {
  1087. attributes: {
  1088. height: {
  1089. name: "Height",
  1090. power: 1,
  1091. type: "length",
  1092. base: math.unit(6, "feet")
  1093. },
  1094. weight: {
  1095. name: "Weight",
  1096. power: 3,
  1097. type: "mass",
  1098. base: math.unit(75, "kg")
  1099. }
  1100. },
  1101. image: {
  1102. source: "./media/characters/malik/front.svg"
  1103. },
  1104. name: "Front"
  1105. },
  1106. side: {
  1107. attributes: {
  1108. height: {
  1109. name: "Height",
  1110. power: 1,
  1111. type: "length",
  1112. base: math.unit(6, "feet")
  1113. },
  1114. weight: {
  1115. name: "Weight",
  1116. power: 3,
  1117. type: "mass",
  1118. base: math.unit(75, "kg")
  1119. }
  1120. },
  1121. image: {
  1122. extra: 1.1539,
  1123. source: "./media/characters/malik/side.svg"
  1124. },
  1125. name: "Side"
  1126. },
  1127. back: {
  1128. attributes: {
  1129. height: {
  1130. name: "Height",
  1131. power: 1,
  1132. type: "length",
  1133. base: math.unit(6, "feet")
  1134. },
  1135. weight: {
  1136. name: "Weight",
  1137. power: 3,
  1138. type: "mass",
  1139. base: math.unit(75, "kg")
  1140. }
  1141. },
  1142. image: {
  1143. source: "./media/characters/malik/back.svg"
  1144. },
  1145. name: "Back"
  1146. },
  1147. };
  1148. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  1149. entity.sizes.push({
  1150. name: "Macro",
  1151. height: math.unit(156, "feet")
  1152. });
  1153. entity.sizes.push({
  1154. name: "Macro+",
  1155. height: math.unit(1188, "feet")
  1156. });
  1157. entity.views[entity.defaultView].height = math.unit(156, "feet");
  1158. return entity;
  1159. }
  1160. function makeSefer() {
  1161. const views = {
  1162. front: {
  1163. attributes: {
  1164. height: {
  1165. name: "Height",
  1166. power: 1,
  1167. type: "length",
  1168. base: math.unit(6, "feet")
  1169. },
  1170. weight: {
  1171. name: "Weight",
  1172. power: 3,
  1173. type: "mass",
  1174. base: math.unit(75, "kg")
  1175. }
  1176. },
  1177. image: {
  1178. source: "./media/characters/sefer/front.svg"
  1179. },
  1180. name: "Front"
  1181. },
  1182. back: {
  1183. attributes: {
  1184. height: {
  1185. name: "Height",
  1186. power: 1,
  1187. type: "length",
  1188. base: math.unit(6, "feet")
  1189. },
  1190. weight: {
  1191. name: "Weight",
  1192. power: 3,
  1193. type: "mass",
  1194. base: math.unit(75, "kg")
  1195. }
  1196. },
  1197. image: {
  1198. source: "./media/characters/sefer/back.svg"
  1199. },
  1200. name: "Back"
  1201. },
  1202. };
  1203. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  1204. entity.views[entity.defaultView].height = math.unit(6, "feet");
  1205. return entity;
  1206. }
  1207. characterMakers["North"] = () => {
  1208. return makeCharacter(
  1209. "North",
  1210. "chemicalcrux",
  1211. {
  1212. body: {
  1213. height: math.unit(2.2428, "meter"),
  1214. weight: math.unit(124.738, "kg"),
  1215. name: "Body",
  1216. image: {
  1217. extra: 1225 / 1050,
  1218. source: "./media/characters/north/front.svg"
  1219. }
  1220. }
  1221. },
  1222. [
  1223. {
  1224. name: "Micro",
  1225. height: math.unit(4, "inches")
  1226. },
  1227. {
  1228. name: "Macro",
  1229. height: math.unit(63, "meters")
  1230. },
  1231. {
  1232. name: "Megamacro",
  1233. height: math.unit(101, "miles")
  1234. }
  1235. ],
  1236. math.unit(101, "miles")
  1237. )
  1238. };
  1239. characterMakers["Talan"] = () => {
  1240. return makeCharacter(
  1241. "Talan",
  1242. "talanstrider",
  1243. {
  1244. body: {
  1245. height: math.unit(2, "meter"),
  1246. weight: math.unit(70, "kg"),
  1247. name: "Body",
  1248. image: {
  1249. bottom: 0.02,
  1250. source: "./media/characters/talan/front.svg"
  1251. }
  1252. }
  1253. },
  1254. [
  1255. {
  1256. name: "Normal",
  1257. height: math.unit(4, "meters")
  1258. },
  1259. {
  1260. name: "Macro",
  1261. height: math.unit(100, "meters")
  1262. },
  1263. {
  1264. name: "Megamacro",
  1265. height: math.unit(2, "miles")
  1266. },
  1267. {
  1268. name: "Gigamacro",
  1269. height: math.unit(5000, "miles")
  1270. },
  1271. {
  1272. name: "Teramacro",
  1273. height: math.unit(100, "parsecs")
  1274. }
  1275. ],
  1276. math.unit(2, "miles")
  1277. )
  1278. };
  1279. characterMakers["Gael'Rathus"] = () => {
  1280. return makeCharacter(
  1281. "Gael'Rathus",
  1282. "Kurrikage",
  1283. {
  1284. front: {
  1285. height: math.unit(2, "meter"),
  1286. weight: math.unit(90, "kg"),
  1287. name: "Front",
  1288. image: {
  1289. source: "./media/characters/gael'rathus/front.svg"
  1290. }
  1291. },
  1292. frontAlt: {
  1293. height: math.unit(2, "meter"),
  1294. weight: math.unit(90, "kg"),
  1295. name: "Front (alt)",
  1296. image: {
  1297. source: "./media/characters/gael'rathus/front-alt.svg"
  1298. }
  1299. },
  1300. frontAlt2: {
  1301. height: math.unit(2, "meter"),
  1302. weight: math.unit(90, "kg"),
  1303. name: "Front (alt 2)",
  1304. image: {
  1305. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1306. }
  1307. }
  1308. },
  1309. [
  1310. {
  1311. name: "Normal",
  1312. height: math.unit(9, "feet")
  1313. },
  1314. {
  1315. name: "Large",
  1316. height: math.unit(25, "feet")
  1317. },
  1318. {
  1319. name: "Macro",
  1320. height: math.unit(0.25, "miles")
  1321. },
  1322. {
  1323. name: "Megamacro",
  1324. height: math.unit(10, "miles")
  1325. }
  1326. ],
  1327. math.unit(9, "feet")
  1328. )
  1329. };
  1330. characterMakers["Sosha"] = () => {
  1331. return makeCharacter(
  1332. "Sosha",
  1333. "Sdocat",
  1334. {
  1335. side: {
  1336. height: math.unit(2, "meter"),
  1337. weight: math.unit(140, "kg"),
  1338. name: "Side",
  1339. image: {
  1340. source: "./media/characters/sosha/side.svg"
  1341. }
  1342. },
  1343. },
  1344. [
  1345. {
  1346. name: "Normal",
  1347. height: math.unit(12, "feet")
  1348. }
  1349. ],
  1350. math.unit(12, "feet")
  1351. )
  1352. };
  1353. characterMakers["Kurribird"] = () => {
  1354. return makeCharacter(
  1355. "Kurribird",
  1356. "Kurrikage",
  1357. {
  1358. front: {
  1359. height: math.unit(2, "meter"),
  1360. weight: math.unit(50, "kg"),
  1361. name: "Front",
  1362. image: {
  1363. source: "./media/characters/kurribird/front.svg",
  1364. bottom: 0.015
  1365. }
  1366. },
  1367. frontAlt: {
  1368. height: math.unit(1.5, "meter"),
  1369. weight: math.unit(50, "kg"),
  1370. name: "Front (Alt)",
  1371. image: {
  1372. source: "./media/characters/kurribird/front-alt.svg",
  1373. extra: 1.45
  1374. }
  1375. },
  1376. },
  1377. [
  1378. {
  1379. name: "Normal",
  1380. height: math.unit(7, "feet")
  1381. },
  1382. {
  1383. name: "Big",
  1384. height: math.unit(15, "feet")
  1385. },
  1386. {
  1387. name: "Macro",
  1388. height: math.unit(1500, "feet")
  1389. },
  1390. {
  1391. name: "Megamacro",
  1392. height: math.unit(2, "miles")
  1393. }
  1394. ],
  1395. math.unit(12, "feet")
  1396. )
  1397. };
  1398. characterMakers["Elbial"] = () => {
  1399. return makeCharacter(
  1400. "Elbial",
  1401. "Neopuc",
  1402. {
  1403. front: {
  1404. height: math.unit(2, "meter"),
  1405. weight: math.unit(80, "kg"),
  1406. name: "Front",
  1407. image: {
  1408. source: "./media/characters/elbial/front.svg"
  1409. }
  1410. },
  1411. side: {
  1412. height: math.unit(2, "meter"),
  1413. weight: math.unit(80, "kg"),
  1414. name: "Side",
  1415. image: {
  1416. source: "./media/characters/elbial/side.svg"
  1417. }
  1418. },
  1419. back: {
  1420. height: math.unit(2, "meter"),
  1421. weight: math.unit(80, "kg"),
  1422. name: "Back",
  1423. image: {
  1424. source: "./media/characters/elbial/back.svg"
  1425. }
  1426. },
  1427. },
  1428. [
  1429. {
  1430. name: "Large",
  1431. height: math.unit(100, "feet")
  1432. },
  1433. {
  1434. name: "Macro",
  1435. height: math.unit(500, "feet")
  1436. },
  1437. {
  1438. name: "Megamacro",
  1439. height: math.unit(10, "miles")
  1440. },
  1441. {
  1442. name: "Gigamacro",
  1443. height: math.unit(25000, "miles")
  1444. },
  1445. {
  1446. name: "Full-Size",
  1447. height: math.unit(8000000, "gigaparsecs")
  1448. }
  1449. ],
  1450. math.unit(500, "feet")
  1451. )
  1452. };
  1453. characterMakers["Noah"] = () => {
  1454. return makeCharacter(
  1455. "Noah",
  1456. "Neopuc",
  1457. {
  1458. front: {
  1459. height: math.unit(2, "meter"),
  1460. weight: math.unit(60, "kg"),
  1461. name: "Front",
  1462. image: {
  1463. source: "./media/characters/noah/front.svg"
  1464. }
  1465. },
  1466. talons: {
  1467. height: math.unit(0.315, "meter"),
  1468. name: "Talons",
  1469. image: {
  1470. source: "./media/characters/noah/talons.svg"
  1471. }
  1472. }
  1473. },
  1474. [
  1475. {
  1476. name: "Large",
  1477. height: math.unit(50, "feet")
  1478. },
  1479. {
  1480. name: "Macro",
  1481. height: math.unit(750, "feet")
  1482. },
  1483. {
  1484. name: "Megamacro",
  1485. height: math.unit(50, "miles")
  1486. },
  1487. {
  1488. name: "Gigamacro",
  1489. height: math.unit(100000, "miles")
  1490. },
  1491. {
  1492. name: "Full-Size",
  1493. height: math.unit(3000000000, "miles")
  1494. }
  1495. ],
  1496. math.unit(750, "feet")
  1497. )
  1498. };
  1499. characterMakers["Natalya"] = () => {
  1500. return makeCharacter(
  1501. "Natalya",
  1502. "Neopuc",
  1503. {
  1504. front: {
  1505. height: math.unit(2, "meter"),
  1506. weight: math.unit(80, "kg"),
  1507. name: "Front",
  1508. image: {
  1509. source: "./media/characters/natalya/front.svg"
  1510. }
  1511. },
  1512. back: {
  1513. height: math.unit(2, "meter"),
  1514. weight: math.unit(80, "kg"),
  1515. name: "Back",
  1516. image: {
  1517. source: "./media/characters/natalya/back.svg"
  1518. }
  1519. }
  1520. },
  1521. [
  1522. {
  1523. name: "Normal",
  1524. height: math.unit(150, "feet")
  1525. },
  1526. {
  1527. name: "Megamacro",
  1528. height: math.unit(5, "miles")
  1529. },
  1530. {
  1531. name: "Full-Size",
  1532. height: math.unit(600, "kiloparsecs")
  1533. }
  1534. ],
  1535. math.unit(150, "feet")
  1536. )
  1537. };
  1538. characterMakers["Erestrebah"] = () => {
  1539. return makeCharacter(
  1540. "Erestrebah",
  1541. "Kurrikage",
  1542. {
  1543. front: {
  1544. height: math.unit(2, "meter"),
  1545. weight: math.unit(50, "kg"),
  1546. name: "Front",
  1547. image: {
  1548. source: "./media/characters/erestrebah/front.svg"
  1549. }
  1550. },
  1551. back: {
  1552. height: math.unit(2, "meter"),
  1553. weight: math.unit(50, "kg"),
  1554. name: "Back",
  1555. image: {
  1556. source: "./media/characters/erestrebah/back.svg",
  1557. extra: 1.2139
  1558. }
  1559. }
  1560. },
  1561. [
  1562. {
  1563. name: "Normal",
  1564. height: math.unit(10, "feet")
  1565. },
  1566. {
  1567. name: "Large",
  1568. height: math.unit(50, "feet")
  1569. },
  1570. {
  1571. name: "Macro",
  1572. height: math.unit(300, "feet")
  1573. },
  1574. {
  1575. name: "Macro+",
  1576. height: math.unit(750, "feet")
  1577. },
  1578. {
  1579. name: "Megamacro",
  1580. height: math.unit(3, "miles")
  1581. }
  1582. ],
  1583. math.unit(50, "feet")
  1584. )
  1585. };
  1586. characterMakers["Jennifer"] = () => {
  1587. return makeCharacter(
  1588. "Jennifer",
  1589. "Neopuc",
  1590. {
  1591. front: {
  1592. height: math.unit(2, "meter"),
  1593. weight: math.unit(80, "kg"),
  1594. name: "Front",
  1595. image: {
  1596. source: "./media/characters/jennifer/front.svg",
  1597. bottom: 0.11,
  1598. extra: 1.16
  1599. }
  1600. },
  1601. frontAlt: {
  1602. height: math.unit(2, "meter"),
  1603. weight: math.unit(80, "kg"),
  1604. name: "Front (Alt)",
  1605. image: {
  1606. source: "./media/characters/jennifer/front-alt.svg"
  1607. }
  1608. }
  1609. },
  1610. [
  1611. {
  1612. name: "Canon Height",
  1613. height: math.unit(120, "feet")
  1614. },
  1615. {
  1616. name: "Macro+",
  1617. height: math.unit(300, "feet")
  1618. },
  1619. {
  1620. name: "Megamacro",
  1621. height: math.unit(20000, "feet")
  1622. }
  1623. ],
  1624. math.unit(120, "feet")
  1625. )
  1626. };
  1627. characterMakers["Kalista"] = () => {
  1628. return makeCharacter(
  1629. "Kalista",
  1630. "Kalista",
  1631. {
  1632. front: {
  1633. height: math.unit(2, "meter"),
  1634. weight: math.unit(50, "kg"),
  1635. name: "Front",
  1636. image: {
  1637. source: "./media/characters/kalista/front.svg",
  1638. extra: 1947/1700
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(2, "meter"),
  1643. weight: math.unit(50, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/kalista/back.svg",
  1647. extra: 1366/1156
  1648. }
  1649. }
  1650. },
  1651. [
  1652. {
  1653. name: "Uncomfortably Small",
  1654. height: math.unit(10, "feet")
  1655. },
  1656. {
  1657. name: "Small",
  1658. height: math.unit(30, "feet")
  1659. },
  1660. {
  1661. name: "Macro",
  1662. height: math.unit(100, "feet")
  1663. },
  1664. {
  1665. name: "Macro+",
  1666. height: math.unit(2000, "feet")
  1667. },
  1668. {
  1669. name: "True Form",
  1670. height: math.unit(8924, "miles")
  1671. }
  1672. ],
  1673. math.unit(100, "feet")
  1674. )
  1675. };
  1676. characterMakers["GiantGrowingVixen"] = () => {
  1677. return makeCharacter(
  1678. "GiantGrowingVixen",
  1679. "GiantGrowingVixen",
  1680. {
  1681. front: {
  1682. height: math.unit(2, "meter"),
  1683. weight: math.unit(120, "kg"),
  1684. name: "Front",
  1685. image: {
  1686. source: "./media/characters/ggv/front.svg"
  1687. }
  1688. },
  1689. side: {
  1690. height: math.unit(2, "meter"),
  1691. weight: math.unit(120, "kg"),
  1692. name: "Side",
  1693. image: {
  1694. source: "./media/characters/ggv/side.svg"
  1695. }
  1696. }
  1697. },
  1698. [
  1699. {
  1700. name: "Extremely Puny",
  1701. height: math.unit(9 + 5 / 12, "feet")
  1702. },
  1703. {
  1704. name: "Horribly Small",
  1705. height: math.unit(47.7, "miles")
  1706. },
  1707. {
  1708. name: "Reasonably Sized",
  1709. height: math.unit(25000, "parsecs")
  1710. }
  1711. ],
  1712. math.unit(47.7, "miles")
  1713. )
  1714. };
  1715. characterMakers["Napalm"] = () => {
  1716. return makeCharacter(
  1717. "Napalm",
  1718. "RathDaKrogan",
  1719. {
  1720. front: {
  1721. height: math.unit(2, "meter"),
  1722. weight: math.unit(75, "lb"),
  1723. name: "Front",
  1724. image: {
  1725. source: "./media/characters/napalm/front.svg"
  1726. }
  1727. },
  1728. back: {
  1729. height: math.unit(2, "meter"),
  1730. weight: math.unit(75, "lb"),
  1731. name: "Back",
  1732. image: {
  1733. source: "./media/characters/napalm/back.svg"
  1734. }
  1735. }
  1736. },
  1737. [
  1738. {
  1739. name: "Standard",
  1740. height: math.unit(55, "feet")
  1741. }
  1742. ],
  1743. math.unit(55, "feet")
  1744. )
  1745. };
  1746. characterMakers["Asana"] = () => {
  1747. return makeCharacter(
  1748. "Asana",
  1749. "Asana",
  1750. {
  1751. front: {
  1752. height: math.unit(7 + 5 / 6, "feet"),
  1753. weight: math.unit(325, "lb"),
  1754. name: "Front",
  1755. image: {
  1756. source: "./media/characters/asana/front.svg",
  1757. extra: 1128 / 1068
  1758. }
  1759. },
  1760. back: {
  1761. height: math.unit(7 + 5 / 6, "feet"),
  1762. weight: math.unit(325, "lb"),
  1763. name: "Back",
  1764. image: {
  1765. source: "./media/characters/asana/back.svg",
  1766. extra: 1128 / 1068
  1767. }
  1768. },
  1769. },
  1770. [
  1771. {
  1772. name: "Standard",
  1773. height: math.unit(7 + 5 / 6, "feet")
  1774. },
  1775. {
  1776. name: "Large",
  1777. height: math.unit(10, "meters")
  1778. },
  1779. {
  1780. name: "Macro",
  1781. height: math.unit(2500, "meters")
  1782. },
  1783. {
  1784. name: "Megamacro",
  1785. height: math.unit(5e6, "meters")
  1786. },
  1787. {
  1788. name: "Examacro",
  1789. height: math.unit(5e12, "lightyears")
  1790. },
  1791. {
  1792. name: "Max Size",
  1793. height: math.unit(93.016e13, "lightyears")
  1794. }
  1795. ],
  1796. math.unit(7 + 5 / 6, "feet")
  1797. )
  1798. };
  1799. characterMakers["Ebony"] = () => {
  1800. return makeCharacter(
  1801. "Ebony",
  1802. "Lazerwolf",
  1803. {
  1804. front: {
  1805. height: math.unit(2, "meter"),
  1806. weight: math.unit(60, "kg"),
  1807. name: "Front",
  1808. image: {
  1809. source: "./media/characters/ebony/front.svg",
  1810. bottom: 0.03,
  1811. extra: 1045 / 810 + 0.03
  1812. }
  1813. },
  1814. side: {
  1815. height: math.unit(2, "meter"),
  1816. weight: math.unit(60, "kg"),
  1817. name: "Side",
  1818. image: {
  1819. source: "./media/characters/ebony/side.svg",
  1820. bottom: 0.03,
  1821. extra: 1045 / 810 + 0.03
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(2, "meter"),
  1826. weight: math.unit(60, "kg"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/ebony/back.svg",
  1830. bottom: 0.01,
  1831. extra: 1045 / 810 + 0.01
  1832. }
  1833. },
  1834. },
  1835. [
  1836. {
  1837. name: "Standard",
  1838. height: math.unit(9 / 8 * (7 + 5 / 12), "feet")
  1839. },
  1840. {
  1841. name: "Macro",
  1842. height: math.unit(200, "feet")
  1843. },
  1844. {
  1845. name: "Gigamacro",
  1846. height: math.unit(13000, "km")
  1847. }
  1848. ],
  1849. math.unit(7 + 5 / 12, "feet")
  1850. )
  1851. };
  1852. characterMakers["Mountain"] = () => {
  1853. return makeCharacter(
  1854. "Mountain",
  1855. "Asana",
  1856. {
  1857. front: {
  1858. height: math.unit(6, "feet"),
  1859. weight: math.unit(175, "lb"),
  1860. name: "Front",
  1861. image: {
  1862. source: "./media/characters/mountain/front.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(6, "feet"),
  1867. weight: math.unit(175, "lb"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/mountain/back.svg"
  1871. }
  1872. },
  1873. },
  1874. [
  1875. {
  1876. name: "Large",
  1877. height: math.unit(20, "meters")
  1878. },
  1879. {
  1880. name: "Macro",
  1881. height: math.unit(300, "meters")
  1882. },
  1883. {
  1884. name: "Gigamacro",
  1885. height: math.unit(10000, "km")
  1886. },
  1887. {
  1888. name: "Examacro",
  1889. height: math.unit(10e9, "lightyears")
  1890. }
  1891. ],
  1892. math.unit(10000, "km")
  1893. )
  1894. };
  1895. characterMakers["Rick"] = () => {
  1896. return makeCharacter(
  1897. "Rick",
  1898. "Victni",
  1899. {
  1900. front: {
  1901. height: math.unit(8, "feet"),
  1902. weight: math.unit(500, "lb"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/rick/front.svg"
  1906. }
  1907. }
  1908. },
  1909. [
  1910. {
  1911. name: "Normal",
  1912. height: math.unit(8, "feet")
  1913. },
  1914. {
  1915. name: "Macro",
  1916. height: math.unit(5, "km")
  1917. }
  1918. ],
  1919. math.unit(8, "feet")
  1920. )
  1921. };
  1922. characterMakers["Ona"] = () => {
  1923. return makeCharacter(
  1924. "Ona",
  1925. "Arrogance127",
  1926. {
  1927. front: {
  1928. height: math.unit(8, "feet"),
  1929. weight: math.unit(120, "lb"),
  1930. name: "Front",
  1931. image: {
  1932. source: "./media/characters/ona/front.svg"
  1933. }
  1934. },
  1935. frontAlt: {
  1936. height: math.unit(8, "feet"),
  1937. weight: math.unit(120, "lb"),
  1938. name: "Front (Alt)",
  1939. image: {
  1940. source: "./media/characters/ona/front-alt.svg"
  1941. }
  1942. },
  1943. back: {
  1944. height: math.unit(8, "feet"),
  1945. weight: math.unit(120, "lb"),
  1946. name: "Back",
  1947. image: {
  1948. source: "./media/characters/ona/back.svg"
  1949. }
  1950. },
  1951. foot: {
  1952. height: math.unit(1.1, "feet"),
  1953. name: "Foot",
  1954. image: {
  1955. source: "./media/characters/ona/foot.svg"
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Megamacro",
  1962. height: math.unit(70, "km")
  1963. },
  1964. {
  1965. name: "Gigamacro",
  1966. height: math.unit(681818, "miles")
  1967. },
  1968. {
  1969. name: "Examacro",
  1970. height: math.unit(3800000, "lightyears")
  1971. },
  1972. ],
  1973. math.unit(70, "km")
  1974. )
  1975. };
  1976. characterMakers["Mech"] = () => {
  1977. return makeCharacter(
  1978. "Mech",
  1979. "mechEdragon",
  1980. {
  1981. front: {
  1982. height: math.unit(12, "feet"),
  1983. weight: math.unit(3000, "lb"),
  1984. name: "Front",
  1985. image: {
  1986. source: "./media/characters/mech/front.svg",
  1987. bottom: 0.025,
  1988. }
  1989. },
  1990. back: {
  1991. height: math.unit(12, "feet"),
  1992. weight: math.unit(3000, "lb"),
  1993. name: "Back",
  1994. image: {
  1995. source: "./media/characters/mech/back.svg",
  1996. bottom: 0.03,
  1997. }
  1998. }
  1999. },
  2000. [
  2001. {
  2002. name: "Normal",
  2003. height: math.unit(12, "feet")
  2004. },
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(300, "feet")
  2008. },
  2009. {
  2010. name: "Macro+",
  2011. height: math.unit(1500, "feet")
  2012. },
  2013. ],
  2014. math.unit(300, "feet")
  2015. )
  2016. };
  2017. characterMakers["Gregory"] = () => {
  2018. return makeCharacter(
  2019. "Gregory",
  2020. "GregoryKlippenspringer",
  2021. {
  2022. front: {
  2023. height: math.unit(1.3, "meter"),
  2024. weight: math.unit(30, "kg"),
  2025. name: "Front",
  2026. image: {
  2027. source: "./media/characters/gregory/front.svg",
  2028. }
  2029. }
  2030. },
  2031. [
  2032. {
  2033. name: "Normal",
  2034. height: math.unit(1.3, "meter")
  2035. },
  2036. {
  2037. name: "Macro",
  2038. height: math.unit(20, "meter")
  2039. }
  2040. ],
  2041. math.unit(1.3, "meter")
  2042. )
  2043. };
  2044. characterMakers["Elory"] = () => {
  2045. return makeCharacter(
  2046. "Elory",
  2047. "GregoryKlippenspringer",
  2048. {
  2049. front: {
  2050. height: math.unit(2.8, "meter"),
  2051. weight: math.unit(200, "kg"),
  2052. name: "Front",
  2053. image: {
  2054. source: "./media/characters/elory/front.svg",
  2055. }
  2056. }
  2057. },
  2058. [
  2059. {
  2060. name: "Normal",
  2061. height: math.unit(2.8, "meter")
  2062. },
  2063. {
  2064. name: "Macro",
  2065. height: math.unit(38, "meter")
  2066. }
  2067. ],
  2068. math.unit(2.8, "meter")
  2069. )
  2070. };
  2071. characterMakers["Angelpatamon"] = () => {
  2072. return makeCharacter(
  2073. "Angelpatamon",
  2074. "GregoryKlippenspringer",
  2075. {
  2076. front: {
  2077. height: math.unit(470, "feet"),
  2078. weight: math.unit(924, "tons"),
  2079. name: "Front",
  2080. image: {
  2081. source: "./media/characters/angelpatamon/front.svg",
  2082. }
  2083. }
  2084. },
  2085. [
  2086. {
  2087. name: "Normal",
  2088. height: math.unit(470, "feet")
  2089. },
  2090. {
  2091. name: "Deity Size I",
  2092. height: math.unit(28651.2, "km")
  2093. },
  2094. {
  2095. name: "Deity Size II",
  2096. height: math.unit(171907.2, "km")
  2097. }
  2098. ],
  2099. math.unit(470, "feet")
  2100. )
  2101. };
  2102. characterMakers["Cryae"] = () => {
  2103. return makeCharacter(
  2104. "Cryae",
  2105. "GregoryKlippenspringer",
  2106. {
  2107. side: {
  2108. height: math.unit(7.2, "meter"),
  2109. weight: math.unit(8.2, "tons"),
  2110. name: "Side",
  2111. image: {
  2112. source: "./media/characters/cryae/side.svg",
  2113. extra: 3500 / 1500
  2114. }
  2115. }
  2116. },
  2117. [
  2118. {
  2119. name: "Normal",
  2120. height: math.unit(7.2, "meter")
  2121. }
  2122. ],
  2123. math.unit(7.2, "meter")
  2124. )
  2125. };
  2126. characterMakers["Xera"] = () => {
  2127. return makeCharacter(
  2128. "Xera",
  2129. "Asana",
  2130. {
  2131. front: {
  2132. height: math.unit(6, "feet"),
  2133. weight: math.unit(175, "lb"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/xera/front.svg",
  2137. extra: 2300 / 2061
  2138. }
  2139. },
  2140. side: {
  2141. height: math.unit(6, "feet"),
  2142. weight: math.unit(175, "lb"),
  2143. name: "Side",
  2144. image: {
  2145. source: "./media/characters/xera/side.svg",
  2146. extra: 2300 / 2061
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(6, "feet"),
  2151. weight: math.unit(175, "lb"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/xera/back.svg"
  2155. }
  2156. },
  2157. },
  2158. [
  2159. {
  2160. name: "Small",
  2161. height: math.unit(10, "feet")
  2162. },
  2163. {
  2164. name: "Macro",
  2165. height: math.unit(500, "meters")
  2166. },
  2167. {
  2168. name: "Macro+",
  2169. height: math.unit(10, "km")
  2170. },
  2171. {
  2172. name: "Gigamacro",
  2173. height: math.unit(25000, "km")
  2174. },
  2175. {
  2176. name: "Teramacro",
  2177. height: math.unit(3e6, "km")
  2178. }
  2179. ],
  2180. math.unit(500, "meters")
  2181. )
  2182. };
  2183. characterMakers["Nebula"] = () => {
  2184. return makeCharacter(
  2185. "Nebula",
  2186. "Cilenomon",
  2187. {
  2188. front: {
  2189. height: math.unit(6, "feet"),
  2190. weight: math.unit(175, "lb"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/nebula/front.svg",
  2194. extra: 2600 / 2450
  2195. }
  2196. }
  2197. },
  2198. [
  2199. {
  2200. name: "Small",
  2201. height: math.unit(4.5, "meters")
  2202. },
  2203. {
  2204. name: "Macro",
  2205. height: math.unit(1500, "meters")
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(150, "km")
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(27000, "km")
  2214. }
  2215. ],
  2216. math.unit(1500, "meters")
  2217. )
  2218. };
  2219. characterMakers["Abysgar"] = () => {
  2220. return makeCharacter(
  2221. "Abysgar",
  2222. "Cilenomon",
  2223. {
  2224. front: {
  2225. height: math.unit(6, "feet"),
  2226. weight: math.unit(225, "lb"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/abysgar/front.svg"
  2230. }
  2231. }
  2232. },
  2233. [
  2234. {
  2235. name: "Small",
  2236. height: math.unit(4.5, "meters")
  2237. },
  2238. {
  2239. name: "Macro",
  2240. height: math.unit(1250, "meters")
  2241. },
  2242. {
  2243. name: "Megamacro",
  2244. height: math.unit(125, "km")
  2245. },
  2246. {
  2247. name: "Gigamacro",
  2248. height: math.unit(26000, "km")
  2249. }
  2250. ],
  2251. math.unit(1250, "meters")
  2252. )
  2253. };
  2254. characterMakers["Yakuz"] = () => {
  2255. return makeCharacter(
  2256. "Yakuz",
  2257. "Cilenomon",
  2258. {
  2259. front: {
  2260. height: math.unit(6, "feet"),
  2261. weight: math.unit(180, "lb"),
  2262. name: "Front",
  2263. image: {
  2264. source: "./media/characters/yakuz/front.svg"
  2265. }
  2266. }
  2267. },
  2268. [
  2269. {
  2270. name: "Small",
  2271. height: math.unit(5, "meters")
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(2500, "meters")
  2276. },
  2277. {
  2278. name: "Megamacro",
  2279. height: math.unit(200, "km")
  2280. },
  2281. {
  2282. name: "Gigamacro",
  2283. height: math.unit(100000, "km")
  2284. }
  2285. ],
  2286. math.unit(1500, "meters")
  2287. )
  2288. };
  2289. characterMakers["Mirova"] = () => {
  2290. return makeCharacter(
  2291. "Mirova",
  2292. "Cilenomon",
  2293. {
  2294. front: {
  2295. height: math.unit(6, "feet"),
  2296. weight: math.unit(175, "lb"),
  2297. name: "Front",
  2298. image: {
  2299. source: "./media/characters/mirova/front.svg"
  2300. }
  2301. }
  2302. },
  2303. [
  2304. {
  2305. name: "Small",
  2306. height: math.unit(5, "meters")
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(900, "meters")
  2311. },
  2312. {
  2313. name: "Megamacro",
  2314. height: math.unit(135, "km")
  2315. },
  2316. {
  2317. name: "Gigamacro",
  2318. height: math.unit(20000, "km")
  2319. }
  2320. ],
  2321. math.unit(900, "meters")
  2322. )
  2323. };
  2324. characterMakers["Asana (Mech)"] = () => {
  2325. return makeCharacter(
  2326. "Asana (Mech)",
  2327. "Asana",
  2328. {
  2329. side: {
  2330. height: math.unit(28.35, "feet"),
  2331. weight: math.unit(99.75, "tons"),
  2332. name: "Side",
  2333. image: {
  2334. source: "./media/characters/asana-mech/side.svg"
  2335. }
  2336. }
  2337. },
  2338. [
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(28.35, "feet")
  2342. },
  2343. {
  2344. name: "Macro",
  2345. height: math.unit(2500, "feet")
  2346. },
  2347. {
  2348. name: "Megamacro",
  2349. height: math.unit(25, "miles")
  2350. },
  2351. {
  2352. name: "Examacro",
  2353. height: math.unit(6e8, "lightyears")
  2354. },
  2355. ],
  2356. math.unit(28.35, "feet")
  2357. )
  2358. };
  2359. characterMakers["Ashtrek"] = () => {
  2360. return makeCharacter(
  2361. "Ashtrek",
  2362. "Ashtrek",
  2363. {
  2364. front: {
  2365. height: math.unit(2, "meters"),
  2366. weight: math.unit(70, "kg"),
  2367. name: "Front",
  2368. image: {
  2369. source: "./media/characters/ashtrek/front.svg",
  2370. extra: 560/524 * (1 / (1 - 0.01)),
  2371. bottom: 0.01
  2372. }
  2373. },
  2374. frontArmor: {
  2375. height: math.unit(2, "meters"),
  2376. weight: math.unit(76, "kg"),
  2377. name: "Front (Armor)",
  2378. image: {
  2379. source: "./media/characters/ashtrek/front-armor.svg",
  2380. extra: 561/527 * (1 / (1 - 0.01)),
  2381. bottom: 0.01
  2382. }
  2383. },
  2384. side: {
  2385. height: math.unit(2, "meters"),
  2386. weight: math.unit(70, "kg"),
  2387. name: "Side",
  2388. image: {
  2389. source: "./media/characters/ashtrek/side.svg",
  2390. extra: 1717/1609 * (1 / (1 - 0.005)),
  2391. bottom: 0.005
  2392. }
  2393. },
  2394. back: {
  2395. height: math.unit(2, "meters"),
  2396. weight: math.unit(70, "kg"),
  2397. name: "Back",
  2398. image: {
  2399. source: "./media/characters/ashtrek/back.svg",
  2400. extra: 1570/1501
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "DEFCON 5",
  2407. height: math.unit(5, "meters")
  2408. },
  2409. {
  2410. name: "DEFCON 4",
  2411. height: math.unit(500, "meters")
  2412. },
  2413. {
  2414. name: "DEFCON 3",
  2415. height: math.unit(5, "km")
  2416. },
  2417. {
  2418. name: "DEFCON 2",
  2419. height: math.unit(500, "km")
  2420. },
  2421. {
  2422. name: "DEFCON 1",
  2423. height: math.unit(500000, "km")
  2424. },
  2425. {
  2426. name: "DEFCON 0",
  2427. height: math.unit(3, "gigaparsecs")
  2428. },
  2429. ],
  2430. math.unit(500, "meters")
  2431. )
  2432. };
  2433. characterMakers["Gale"] = () => {
  2434. return makeCharacter(
  2435. "Gale",
  2436. "GaleFierre",
  2437. {
  2438. front: {
  2439. height: math.unit(2, "meters"),
  2440. weight: math.unit(76, "kg"),
  2441. name: "Front",
  2442. image: {
  2443. source: "./media/characters/gale/front.svg"
  2444. }
  2445. },
  2446. frontAlt1: {
  2447. height: math.unit(2, "meters"),
  2448. weight: math.unit(76, "kg"),
  2449. name: "Front (Alt 1)",
  2450. image: {
  2451. source: "./media/characters/gale/front-alt-1.svg"
  2452. }
  2453. },
  2454. frontAlt2: {
  2455. height: math.unit(2, "meters"),
  2456. weight: math.unit(76, "kg"),
  2457. name: "Front (Alt 2)",
  2458. image: {
  2459. source: "./media/characters/gale/front-alt-2.svg"
  2460. }
  2461. },
  2462. },
  2463. [
  2464. {
  2465. name: "Normal",
  2466. height: math.unit(7, "feet")
  2467. },
  2468. {
  2469. name: "Macro",
  2470. height: math.unit(150, "feet")
  2471. },
  2472. {
  2473. name: "Macro+",
  2474. height: math.unit(300, "feet")
  2475. },
  2476. ],
  2477. math.unit(150, "feet")
  2478. )
  2479. };
  2480. characterMakers["Draylen"] = () => {
  2481. return makeCharacter(
  2482. "Draylen",
  2483. "Longshot Coyote",
  2484. {
  2485. front: {
  2486. height: math.unit(2, "meters"),
  2487. weight: math.unit(76, "kg"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/draylen/front.svg"
  2491. }
  2492. }
  2493. },
  2494. [
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(150, "feet")
  2498. }
  2499. ],
  2500. math.unit(150, "feet")
  2501. )
  2502. };
  2503. characterMakers["Chez"] = () => {
  2504. return makeCharacter(
  2505. "Chez",
  2506. "Ashtrek",
  2507. {
  2508. front: {
  2509. height: math.unit(7 + 9 / 12, "feet"),
  2510. weight: math.unit(379, "lbs"),
  2511. name: "Front",
  2512. image: {
  2513. source: "./media/characters/chez/front.svg"
  2514. }
  2515. },
  2516. side: {
  2517. height: math.unit(7 + 9 / 12, "feet"),
  2518. weight: math.unit(379, "lbs"),
  2519. name: "Side",
  2520. image: {
  2521. source: "./media/characters/chez/side.svg"
  2522. }
  2523. }
  2524. },
  2525. [
  2526. {
  2527. name: "Normal",
  2528. height: math.unit(7 + 9 / 12, "feet")
  2529. },
  2530. {
  2531. name: "God King",
  2532. height: math.unit(9750000, "meters")
  2533. }
  2534. ],
  2535. math.unit(7 + 9 / 12, "feet")
  2536. )
  2537. };
  2538. characterMakers["Kaylum"] = () => {
  2539. return makeCharacter(
  2540. "Kaylum",
  2541. "DJDarkJaro",
  2542. {
  2543. front: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(275, "lbs"),
  2546. name: "Front",
  2547. image: {
  2548. source: "./media/characters/kaylum/front.svg",
  2549. bottom: 0.01,
  2550. extra: 1166 / 1031
  2551. }
  2552. },
  2553. frontWingless: {
  2554. height: math.unit(6, "feet"),
  2555. weight: math.unit(275, "lbs"),
  2556. name: "Front (Wingless)",
  2557. image: {
  2558. source: "./media/characters/kaylum/front-wingless.svg",
  2559. bottom: 0.01,
  2560. extra: 1117 / 1031
  2561. }
  2562. }
  2563. },
  2564. [
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(3.05, "meters")
  2568. },
  2569. {
  2570. name: "Master",
  2571. height: math.unit(5.5, "meters")
  2572. },
  2573. {
  2574. name: "Rampage",
  2575. height: math.unit(19, "meters")
  2576. },
  2577. {
  2578. name: "Macro Lite",
  2579. height: math.unit(37, "meters")
  2580. },
  2581. {
  2582. name: "Hyper Predator",
  2583. height: math.unit(61, "meters")
  2584. },
  2585. {
  2586. name: "Macro",
  2587. height: math.unit(138, "meters")
  2588. }
  2589. ],
  2590. math.unit(138, "meters")
  2591. )
  2592. };
  2593. characterMakers["Geta"] = () => {
  2594. return makeCharacter(
  2595. "Geta",
  2596. "Aeznon",
  2597. {
  2598. front: {
  2599. height: math.unit(6, "feet"),
  2600. weight: math.unit(150, "lbs"),
  2601. name: "Front",
  2602. image: {
  2603. source: "./media/characters/geta/front.svg"
  2604. }
  2605. }
  2606. },
  2607. [
  2608. {
  2609. name: "Micro",
  2610. height: math.unit(3, "inches")
  2611. },
  2612. {
  2613. name: "Normal",
  2614. height: math.unit(5 + 5 / 12, "feet")
  2615. }
  2616. ],
  2617. math.unit(3, "inches")
  2618. )
  2619. };
  2620. characterMakers["Tyrnn"] = () => {
  2621. return makeCharacter(
  2622. "Tyrnn",
  2623. "Tyrnn",
  2624. {
  2625. front: {
  2626. height: math.unit(6, "feet"),
  2627. weight: math.unit(300, "lbs"),
  2628. name: "Front",
  2629. image: {
  2630. source: "./media/characters/tyrnn/front.svg"
  2631. }
  2632. }
  2633. },
  2634. [
  2635. {
  2636. name: "Main Height",
  2637. height: math.unit(355, "feet")
  2638. },
  2639. {
  2640. name: "Fave. Height",
  2641. height: math.unit(2400, "feet")
  2642. }
  2643. ],
  2644. math.unit(355, "feet")
  2645. )
  2646. };
  2647. characterMakers["Apple"] = () => {
  2648. return makeCharacter(
  2649. "Apple",
  2650. "Appledectomy",
  2651. {
  2652. front: {
  2653. height: math.unit(6, "feet"),
  2654. weight: math.unit(300, "lbs"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/appledectomy/front.svg"
  2658. }
  2659. }
  2660. },
  2661. [
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(2500, "feet")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(50, "miles")
  2669. },
  2670. {
  2671. name: "Gigamacro",
  2672. height: math.unit(5000, "miles")
  2673. },
  2674. {
  2675. name: "Teramacro",
  2676. height: math.unit(250000, "miles")
  2677. },
  2678. ],
  2679. math.unit(50, "miles")
  2680. )
  2681. };
  2682. characterMakers["Vulpes"] = () => {
  2683. return makeCharacter(
  2684. "Vulpes",
  2685. "VulpesPawpad",
  2686. {
  2687. front: {
  2688. height: math.unit(6, "feet"),
  2689. weight: math.unit(200, "lbs"),
  2690. name: "Front",
  2691. image: {
  2692. source: "./media/characters/vulpes/front.svg"
  2693. }
  2694. },
  2695. side: {
  2696. height: math.unit(6, "feet"),
  2697. weight: math.unit(200, "lbs"),
  2698. name: "Side",
  2699. image: {
  2700. source: "./media/characters/vulpes/side.svg"
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(6, "feet"),
  2705. weight: math.unit(200, "lbs"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/vulpes/back.svg"
  2709. }
  2710. },
  2711. feet: {
  2712. height: math.unit(1.276, "feet"),
  2713. name: "Feet",
  2714. image: {
  2715. source: "./media/characters/vulpes/feet.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Micro",
  2722. height: math.unit(3, "inches")
  2723. },
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(6.3, "feet")
  2727. },
  2728. {
  2729. name: "Megamacro",
  2730. height: math.unit(7500, "feet")
  2731. },
  2732. {
  2733. name: "Gigamacro",
  2734. height: math.unit(570000, "miles")
  2735. }
  2736. ],
  2737. math.unit(7500, "feet")
  2738. )
  2739. };
  2740. characterMakers["Rain Fallen"] = () => {
  2741. return makeCharacter(
  2742. "Rain Fallen",
  2743. "Rain Fallen",
  2744. {
  2745. front: {
  2746. height: math.unit(6, "feet"),
  2747. weight: math.unit(210, "lbs"),
  2748. name: "Front",
  2749. image: {
  2750. source: "./media/characters/rain/front.svg"
  2751. }
  2752. },
  2753. side: {
  2754. height: math.unit(6, "feet"),
  2755. weight: math.unit(210, "lbs"),
  2756. name: "Side",
  2757. image: {
  2758. source: "./media/characters/rain/side.svg"
  2759. }
  2760. },
  2761. back: {
  2762. height: math.unit(6, "feet"),
  2763. weight: math.unit(210, "lbs"),
  2764. name: "Back",
  2765. image: {
  2766. source: "./media/characters/rain/back.svg"
  2767. }
  2768. },
  2769. feral: {
  2770. height: math.unit(9, "feet"),
  2771. weight: math.unit(700, "lbs"),
  2772. name: "Feral",
  2773. image: {
  2774. source: "./media/characters/rain/feral.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Normal",
  2781. height: math.unit(5, "meter")
  2782. },
  2783. {
  2784. name: "Macro",
  2785. height: math.unit(150, "meter")
  2786. },
  2787. {
  2788. name: "Megamacro",
  2789. height: math.unit(278e6, "meter")
  2790. },
  2791. {
  2792. name: "Gigamacro",
  2793. height: math.unit(2e9, "meter")
  2794. },
  2795. {
  2796. name: "Teramacro",
  2797. height: math.unit(8e12, "meter")
  2798. },
  2799. {
  2800. name: "Devourer",
  2801. height: math.unit(14, "zettameters")
  2802. },
  2803. {
  2804. name: "Scarlet King",
  2805. height: math.unit(18, "yottameters")
  2806. },
  2807. {
  2808. name: "Void",
  2809. height: math.unit(6.66e66, "yottameters")
  2810. }
  2811. ],
  2812. math.unit(150, "meter")
  2813. )
  2814. };
  2815. characterMakers["Zaakira"] = () => {
  2816. return makeCharacter(
  2817. "Zaakira",
  2818. "Jazzywolf",
  2819. {
  2820. standing: {
  2821. height: math.unit(6, "feet"),
  2822. weight: math.unit(180, "lbs"),
  2823. name: "Standing",
  2824. image: {
  2825. source: "./media/characters/zaakira/standing.svg"
  2826. }
  2827. },
  2828. laying: {
  2829. height: math.unit(3, "feet"),
  2830. weight: math.unit(180, "lbs"),
  2831. name: "Laying",
  2832. image: {
  2833. source: "./media/characters/zaakira/laying.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(12, "feet")
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(279, "feet")
  2845. }
  2846. ],
  2847. math.unit(279, "feet")
  2848. )
  2849. };
  2850. characterMakers["Sigvald"] = () => {
  2851. return makeCharacter(
  2852. "Sigvald",
  2853. "Sigvald",
  2854. {
  2855. front: {
  2856. height: math.unit(6, "feet"),
  2857. weight: math.unit(250, "lbs"),
  2858. name: "Front",
  2859. image: {
  2860. source: "./media/characters/sigvald/front.svg",
  2861. extra: 1000 / 850
  2862. }
  2863. },
  2864. back: {
  2865. height: math.unit(6, "feet"),
  2866. weight: math.unit(250, "lbs"),
  2867. name: "Back",
  2868. image: {
  2869. source: "./media/characters/sigvald/back.svg"
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(8, "feet")
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(12, "feet")
  2881. },
  2882. {
  2883. name: "Larger",
  2884. height: math.unit(20, "feet")
  2885. },
  2886. {
  2887. name: "Macro",
  2888. height: math.unit(150, "feet")
  2889. },
  2890. {
  2891. name: "Macro+",
  2892. height: math.unit(200, "feet")
  2893. },
  2894. ],
  2895. math.unit(200, "feet")
  2896. )
  2897. };
  2898. characterMakers["Scott"] = () => {
  2899. return makeCharacter(
  2900. "Scott",
  2901. "Scott",
  2902. {
  2903. side: {
  2904. height: math.unit(12, "feet"),
  2905. weight: math.unit(3000, "lbs"),
  2906. name: "Side",
  2907. image: {
  2908. source: "./media/characters/scott/side.svg",
  2909. }
  2910. },
  2911. upright: {
  2912. height: math.unit(12, "feet"),
  2913. weight: math.unit(3000, "lbs"),
  2914. name: "Upright",
  2915. image: {
  2916. source: "./media/characters/scott/upright.svg",
  2917. }
  2918. },
  2919. },
  2920. [],
  2921. math.unit(12, "feet")
  2922. )
  2923. };
  2924. characterMakers["Tobias"] = () => {
  2925. return makeCharacter(
  2926. "Tobias",
  2927. "Tobias",
  2928. {
  2929. side: {
  2930. height: math.unit(8, "meters"),
  2931. weight: math.unit(84755, "lbs"),
  2932. name: "Side",
  2933. image: {
  2934. source: "./media/characters/tobias/side.svg",
  2935. extra: 5 / 4
  2936. }
  2937. },
  2938. },
  2939. [],
  2940. math.unit(8, "meters")
  2941. )
  2942. };
  2943. characterMakers["Kieran"] = () => {
  2944. return makeCharacter(
  2945. "Kieran",
  2946. "Kieran",
  2947. {
  2948. front: {
  2949. height: math.unit(5.5, "feet"),
  2950. weight: math.unit(400, "lbs"),
  2951. name: "Front",
  2952. image: {
  2953. source: "./media/characters/kieran/front.svg",
  2954. extra: 1.05
  2955. }
  2956. },
  2957. side: {
  2958. height: math.unit(5.5, "feet"),
  2959. weight: math.unit(400, "lbs"),
  2960. name: "Side",
  2961. image: {
  2962. source: "./media/characters/kieran/side.svg",
  2963. extra: 950 / 850
  2964. }
  2965. },
  2966. },
  2967. [],
  2968. math.unit(5.5, "feet")
  2969. )
  2970. };
  2971. characterMakers["Sanya"] = () => {
  2972. return makeCharacter(
  2973. "Sanya",
  2974. "BanterGhost",
  2975. {
  2976. side: {
  2977. height: math.unit(2, "meters"),
  2978. weight: math.unit(70, "kg"),
  2979. name: "Side",
  2980. image: {
  2981. source: "./media/characters/sanya/side.svg",
  2982. bottom: 0.02,
  2983. extra: 1.02
  2984. }
  2985. },
  2986. },
  2987. [
  2988. {
  2989. name: "Small",
  2990. height: math.unit(2, "meters")
  2991. },
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(3, "meters")
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(16, "meters")
  2999. },
  3000. ],
  3001. math.unit(16, "meters")
  3002. )
  3003. };
  3004. characterMakers["Miranda"] = () => {
  3005. return makeCharacter(
  3006. "Miranda",
  3007. "MirandaAqrayla",
  3008. {
  3009. side: {
  3010. height: math.unit(2, "meters"),
  3011. weight: math.unit(120, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/miranda/front.svg",
  3015. extra: 10.6 / 10
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Normal",
  3022. height: math.unit(10, "feet")
  3023. }
  3024. ],
  3025. math.unit(10, "feet")
  3026. )
  3027. };
  3028. characterMakers["James"] = () => {
  3029. return makeCharacter(
  3030. "James",
  3031. "MirandaAqrayla",
  3032. {
  3033. side: {
  3034. height: math.unit(2, "meters"),
  3035. weight: math.unit(100, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/james/front.svg",
  3039. extra: 10 / 8.5
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(8.5, "feet")
  3047. }
  3048. ],
  3049. math.unit(8.5, "feet")
  3050. )
  3051. };
  3052. characterMakers["Heather"] = () => {
  3053. return makeCharacter(
  3054. "Heather",
  3055. "MirandaAqrayla",
  3056. {
  3057. side: {
  3058. height: math.unit(9.5, "feet"),
  3059. weight: math.unit(2500, "lbs"),
  3060. name: "Side",
  3061. image: {
  3062. source: "./media/characters/heather/side.svg"
  3063. }
  3064. },
  3065. },
  3066. [
  3067. {
  3068. name: "Normal",
  3069. height: math.unit(9.5, "feet")
  3070. }
  3071. ],
  3072. math.unit(9.5, "feet")
  3073. )
  3074. };
  3075. characterMakers["Lukas"] = () => {
  3076. return makeCharacter(
  3077. "Lukas",
  3078. "MirandaAqrayla",
  3079. {
  3080. side: {
  3081. height: math.unit(6.5, "feet"),
  3082. weight: math.unit(400, "lbs"),
  3083. name: "Side",
  3084. image: {
  3085. source: "./media/characters/lukas/side.svg",
  3086. extra: 7.25 / 6.5
  3087. }
  3088. },
  3089. },
  3090. [
  3091. {
  3092. name: "Normal",
  3093. height: math.unit(6.5, "feet")
  3094. }
  3095. ],
  3096. math.unit(6.5, "feet")
  3097. )
  3098. };
  3099. characterMakers["Louise"] = () => {
  3100. return makeCharacter(
  3101. "Louise",
  3102. "MirandaAqrayla",
  3103. {
  3104. side: {
  3105. height: math.unit(5, "feet"),
  3106. weight: math.unit(3000, "lbs"),
  3107. name: "Side",
  3108. image: {
  3109. source: "./media/characters/louise/side.svg"
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(5, "feet")
  3117. }
  3118. ],
  3119. math.unit(5, "feet")
  3120. )
  3121. };
  3122. characterMakers["Ramona"] = () => {
  3123. return makeCharacter(
  3124. "Ramona",
  3125. "ZakuraTech",
  3126. {
  3127. side: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(150, "lbs"),
  3130. name: "Side",
  3131. image: {
  3132. source: "./media/characters/ramona/side.svg"
  3133. }
  3134. },
  3135. },
  3136. [
  3137. {
  3138. name: "Normal",
  3139. height: math.unit(5.3, "meters")
  3140. },
  3141. {
  3142. name: "Macro",
  3143. height: math.unit(20, "stories")
  3144. },
  3145. {
  3146. name: "Macro+",
  3147. height: math.unit(50, "stories")
  3148. },
  3149. ],
  3150. math.unit(5.3, "meters")
  3151. )
  3152. };
  3153. characterMakers["Deerpuff"] = () => {
  3154. return makeCharacter(
  3155. "Deerpuff",
  3156. "Deerpuff",
  3157. {
  3158. standing: {
  3159. height: math.unit(5.75, "feet"),
  3160. weight: math.unit(160, "lbs"),
  3161. name: "Standing",
  3162. image: {
  3163. source: "./media/characters/deerpuff/standing.svg",
  3164. extra: 682 / 624
  3165. }
  3166. },
  3167. sitting: {
  3168. height: math.unit(5.75 / 1.79, "feet"),
  3169. weight: math.unit(160, "lbs"),
  3170. name: "Sitting",
  3171. image: {
  3172. source: "./media/characters/deerpuff/sitting.svg",
  3173. bottom: 44 / 400,
  3174. extra: 1 / (1 - 44 / 400)
  3175. }
  3176. },
  3177. taurLaying: {
  3178. height: math.unit(6, "feet"),
  3179. weight: math.unit(400, "lbs"),
  3180. name: "Taur (Laying)",
  3181. image: {
  3182. source: "./media/characters/deerpuff/taur-laying.svg"
  3183. }
  3184. },
  3185. },
  3186. [
  3187. {
  3188. name: "Puffball",
  3189. height: math.unit(6, "inches")
  3190. },
  3191. {
  3192. name: "Normalpuff",
  3193. height: math.unit(5.75, "feet")
  3194. },
  3195. {
  3196. name: "Macropuff",
  3197. height: math.unit(1500, "feet")
  3198. },
  3199. {
  3200. name: "Megapuff",
  3201. height: math.unit(500, "miles")
  3202. },
  3203. {
  3204. name: "Gigapuff",
  3205. height: math.unit(250000, "miles")
  3206. },
  3207. {
  3208. name: "Omegapuff",
  3209. height: math.unit(1000, "lightyears")
  3210. },
  3211. ],
  3212. math.unit(1500, "feet")
  3213. )
  3214. };
  3215. characterMakers["Vivian"] = () => {
  3216. return makeCharacter(
  3217. "Vivian",
  3218. "Fauxlacine",
  3219. {
  3220. stomping: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(170, "lbs"),
  3223. name: "Stomping",
  3224. image: {
  3225. source: "./media/characters/vivian/stomping.svg"
  3226. }
  3227. },
  3228. sitting: {
  3229. height: math.unit(6 / 1.75, "feet"),
  3230. weight: math.unit(170, "lbs"),
  3231. name: "Sitting",
  3232. image: {
  3233. source: "./media/characters/vivian/sitting.svg",
  3234. bottom: 1 / 6.4,
  3235. extra: (1 / (1 - 1 / 6.4)) * (1 + 164 / 1600)
  3236. }
  3237. },
  3238. },
  3239. [
  3240. {
  3241. name: "Normal",
  3242. height: math.unit(7, "feet")
  3243. },
  3244. {
  3245. name: "Macro",
  3246. height: math.unit(10, "stories")
  3247. },
  3248. {
  3249. name: "Macro+",
  3250. height: math.unit(30, "stories")
  3251. },
  3252. {
  3253. name: "Megamacro",
  3254. height: math.unit(10, "miles")
  3255. },
  3256. {
  3257. name: "Megamacro+",
  3258. height: math.unit(2750000, "meters")
  3259. },
  3260. ],
  3261. math.unit(7, "feet")
  3262. )
  3263. };
  3264. characterMakers["Prince"] = () => {
  3265. return makeCharacter(
  3266. "Prince",
  3267. "Kurrikage",
  3268. {
  3269. front: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(160, "lbs"),
  3272. name: "Front",
  3273. image: {
  3274. source: "./media/characters/prince/front.svg",
  3275. extra: 3400/3000
  3276. }
  3277. },
  3278. jumping: {
  3279. height: math.unit(6, "feet"),
  3280. weight: math.unit(160, "lbs"),
  3281. name: "Jumping",
  3282. image: {
  3283. source: "./media/characters/prince/jump.svg",
  3284. extra: 2555/2134
  3285. }
  3286. },
  3287. },
  3288. [
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(7.75, "feet"),
  3292. default: true
  3293. }
  3294. ]
  3295. )
  3296. };
  3297. characterMakers["Psymon"] = () => {
  3298. return makeCharacter(
  3299. "Psymon",
  3300. "Kurrikage",
  3301. {
  3302. standing: {
  3303. height: math.unit(6, "feet"),
  3304. weight: math.unit(300, "lbs"),
  3305. name: "Standing",
  3306. image: {
  3307. source: "./media/characters/psymon/standing.svg",
  3308. extra: 1888/1810
  3309. }
  3310. },
  3311. slithering: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(300, "lbs"),
  3314. name: "Slithering",
  3315. image: {
  3316. source: "./media/characters/psymon/slithering.svg",
  3317. extra: 1330/1224
  3318. }
  3319. },
  3320. slitheringAlt: {
  3321. height: math.unit(6, "feet"),
  3322. weight: math.unit(300, "lbs"),
  3323. name: "Slithering (Alt)",
  3324. image: {
  3325. source: "./media/characters/psymon/slithering-alt.svg",
  3326. extra: 1330/1224
  3327. }
  3328. },
  3329. },
  3330. [
  3331. {
  3332. name: "Normal",
  3333. height: math.unit(11.25, "feet")
  3334. }
  3335. ]
  3336. )
  3337. };
  3338. characterMakers["Daimos"] = () => {
  3339. return makeCharacter(
  3340. "Daimos",
  3341. "Kurrikage",
  3342. {
  3343. front: {
  3344. height: math.unit(6, "feet"),
  3345. weight: math.unit(180, "lbs"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/daimos/front.svg",
  3349. extra: 4160/3897
  3350. }
  3351. }
  3352. },
  3353. [
  3354. {
  3355. name: "Normal",
  3356. height: math.unit(8, "feet")
  3357. }
  3358. ]
  3359. )
  3360. };
  3361. characterMakers["Blake"] = () => {
  3362. return makeCharacter(
  3363. "Blake",
  3364. "Kurrikage",
  3365. {
  3366. side: {
  3367. height: math.unit(6, "feet"),
  3368. weight: math.unit(180, "lbs"),
  3369. name: "Side",
  3370. image: {
  3371. source: "./media/characters/blake/side.svg",
  3372. extra: 1212/1120 * (1 / (1 - 0.05)),
  3373. bottom: 0.05
  3374. }
  3375. },
  3376. crouched: {
  3377. height: math.unit(6*0.57, "feet"),
  3378. weight: math.unit(180, "lbs"),
  3379. name: "Crouched",
  3380. image: {
  3381. source: "./media/characters/blake/crouched.svg",
  3382. extra: 840/587 * (1 / (1 - 0.04)),
  3383. bottom: 0.04
  3384. }
  3385. },
  3386. bent: {
  3387. height: math.unit(6*0.75, "feet"),
  3388. weight: math.unit(180, "lbs"),
  3389. name: "Bent",
  3390. image: {
  3391. source: "./media/characters/blake/bent.svg",
  3392. extra: 592/544 * (1 / (1 - 0.035)),
  3393. bottom: 0.035
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(8 + 1/6, "feet")
  3401. }
  3402. ]
  3403. )
  3404. };
  3405. characterMakers["Guisetto"] = () => {
  3406. return makeCharacter(
  3407. "Guisetto",
  3408. "Kurrikage",
  3409. {
  3410. front: {
  3411. height: math.unit(6, "feet"),
  3412. weight: math.unit(180, "lbs"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/guisetto/front.svg",
  3416. extra: 856/817
  3417. }
  3418. },
  3419. airborne: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(180, "lbs"),
  3422. name: "Airborne",
  3423. image: {
  3424. source: "./media/characters/guisetto/airborne.svg",
  3425. extra: 584/525
  3426. }
  3427. },
  3428. },
  3429. [
  3430. {
  3431. name: "Normal",
  3432. height: math.unit(10 + 11/12, "feet")
  3433. }
  3434. ]
  3435. )
  3436. };
  3437. characterMakers["Luxor"] = () => {
  3438. return makeCharacter(
  3439. "Luxor",
  3440. "Kurrikage",
  3441. {
  3442. front: {
  3443. height: math.unit(6, "feet"),
  3444. weight: math.unit(180, "lbs"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/luxor/front.svg",
  3448. extra: 2940/2152
  3449. }
  3450. },
  3451. back: {
  3452. height: math.unit(6, "feet"),
  3453. weight: math.unit(180, "lbs"),
  3454. name: "Back",
  3455. image: {
  3456. source: "./media/characters/luxor/back.svg",
  3457. extra: 1083/960
  3458. }
  3459. },
  3460. },
  3461. [
  3462. {
  3463. name: "Normal",
  3464. height: math.unit(5 + 5/6, "feet"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Lamp",
  3469. height: math.unit(50, "feet")
  3470. },
  3471. {
  3472. name: "Lämp",
  3473. height: math.unit(300, "feet")
  3474. },
  3475. {
  3476. name: "The sun is a lamp",
  3477. height: math.unit(250000, "miles")
  3478. },
  3479. ]
  3480. )
  3481. };
  3482. characterMakers["Huoyan"] = () => {
  3483. return makeCharacter(
  3484. "Huoyan",
  3485. "Kurrikage",
  3486. {
  3487. front: {
  3488. height: math.unit(6, "feet"),
  3489. weight: math.unit(50, "lbs"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/huoyan/front.svg"
  3493. }
  3494. },
  3495. side: {
  3496. height: math.unit(6, "feet"),
  3497. weight: math.unit(180, "lbs"),
  3498. name: "Side",
  3499. image: {
  3500. source: "./media/characters/huoyan/side.svg"
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(65, "feet")
  3508. }
  3509. ]
  3510. )
  3511. };
  3512. characterMakers["Tails"] = () => {
  3513. return makeCharacter(
  3514. "Tails",
  3515. "Rainier",
  3516. {
  3517. front: {
  3518. height: math.unit(5 + 3/4, "feet"),
  3519. weight: math.unit(120, "lbs"),
  3520. name: "Front",
  3521. image: {
  3522. source: "./media/characters/tails/front.svg"
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 3/4, "feet")
  3530. }
  3531. ]
  3532. )
  3533. };
  3534. characterMakers["Rainy"] = () => {
  3535. return makeCharacter(
  3536. "Rainy",
  3537. "Rainier",
  3538. {
  3539. front: {
  3540. height: math.unit(4, "feet"),
  3541. weight: math.unit(50, "lbs"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/rainy/front.svg"
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(800, "feet")
  3552. }
  3553. ]
  3554. )
  3555. };
  3556. characterMakers["Rainier"] = () => {
  3557. return makeCharacter(
  3558. "Rainier",
  3559. "Rainier",
  3560. {
  3561. front: {
  3562. height: math.unit(6, "feet"),
  3563. weight: math.unit(150, "lbs"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/rainier/front.svg"
  3567. }
  3568. }
  3569. },
  3570. [
  3571. {
  3572. name: "Micro",
  3573. height: math.unit(2, "mm")
  3574. }
  3575. ]
  3576. )
  3577. };
  3578. characterMakers["Andy"] = () => {
  3579. return makeCharacter(
  3580. "Andy",
  3581. "drewbermeister",
  3582. {
  3583. front: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(180, "lbs"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/andy/front.svg"
  3589. }
  3590. }
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(8, "feet")
  3596. },
  3597. {
  3598. name: "Macro",
  3599. height: math.unit(1000, "feet")
  3600. },
  3601. {
  3602. name: "Megamacro",
  3603. height: math.unit(5, "miles")
  3604. },
  3605. {
  3606. name: "Gigamacro",
  3607. height: math.unit(5000, "miles")
  3608. },
  3609. ]
  3610. )
  3611. };
  3612. characterMakers["Cimmaron"] = () => {
  3613. return makeCharacter(
  3614. "Cimmaron",
  3615. "Cimmaron",
  3616. {
  3617. frontClothed: {
  3618. height: math.unit(6, "feet"),
  3619. weight: math.unit(210, "lbs"),
  3620. name: "Front (Clothed)",
  3621. image: {
  3622. source: "./media/characters/cimmaron/front-clothed.svg",
  3623. extra: 701/676 * (1 / (1 - 0.046)),
  3624. bottom: 0.046
  3625. }
  3626. },
  3627. backClothed: {
  3628. height: math.unit(6, "feet"),
  3629. weight: math.unit(210, "lbs"),
  3630. name: "Back (Clothed)",
  3631. image: {
  3632. source: "./media/characters/cimmaron/back-clothed.svg",
  3633. extra: 701/676 * (1 / (1 - 0.046)),
  3634. bottom: 0.046
  3635. }
  3636. },
  3637. frontNude: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(210, "lbs"),
  3640. name: "Front (Nude)",
  3641. image: {
  3642. source: "./media/characters/cimmaron/front-nude.svg",
  3643. extra: 701/676 * (1 / (1 - 0.046)),
  3644. bottom: 0.046
  3645. }
  3646. },
  3647. backNude: {
  3648. height: math.unit(6, "feet"),
  3649. weight: math.unit(210, "lbs"),
  3650. name: "Back (Nude)",
  3651. image: {
  3652. source: "./media/characters/cimmaron/back-nude.svg",
  3653. extra: 701/676 * (1 / (1 - 0.046)),
  3654. bottom: 0.046
  3655. }
  3656. }
  3657. },
  3658. [
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(6, "feet"),
  3662. default: true
  3663. },
  3664. {
  3665. name: "Macro Mayor",
  3666. height: math.unit(350, "meters")
  3667. },
  3668. ]
  3669. )
  3670. };
  3671. characterMakers["Akari Kaen"] = () => {
  3672. return makeCharacter(
  3673. "Akari Kaen",
  3674. "Akari",
  3675. {
  3676. front: {
  3677. height: math.unit(6, "feet"),
  3678. weight: math.unit(200, "lbs"),
  3679. name: "Front",
  3680. image: {
  3681. source: "./media/characters/akari/front.svg",
  3682. bottom: 0.04,
  3683. extra: (1 / (1 - 0.04)) * (962/901)
  3684. }
  3685. }
  3686. },
  3687. [
  3688. {
  3689. name: "Micro",
  3690. height: math.unit(5, "inches"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(7, "feet")
  3696. },
  3697. ]
  3698. )
  3699. };
  3700. characterMakers["Cynosura"] = () => {
  3701. return makeCharacter(
  3702. "Cynosura",
  3703. "Cynosura",
  3704. {
  3705. front: {
  3706. height: math.unit(6, "feet"),
  3707. weight: math.unit(140, "lbs"),
  3708. name: "Front",
  3709. image: {
  3710. source: "./media/characters/cynosura/front.svg",
  3711. extra: 896/847
  3712. }
  3713. },
  3714. back: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(140, "lbs"),
  3717. name: "Back",
  3718. image: {
  3719. source: "./media/characters/cynosura/back.svg",
  3720. extra: 1365/1250
  3721. }
  3722. },
  3723. },
  3724. [
  3725. {
  3726. name: "Micro",
  3727. height: math.unit(4, "inches")
  3728. },
  3729. {
  3730. name: "Normal",
  3731. height: math.unit(5.75, "feet"),
  3732. default: true
  3733. },
  3734. {
  3735. name: "Tall",
  3736. height: math.unit(10, "feet")
  3737. },
  3738. {
  3739. name: "Big",
  3740. height: math.unit(20, "feet")
  3741. },
  3742. {
  3743. name: "Macro",
  3744. height: math.unit(50, "feet")
  3745. },
  3746. ]
  3747. )
  3748. };
  3749. characterMakers["Gin"] = () => {
  3750. return makeCharacter(
  3751. "Gin",
  3752. "Ozzie_gt",
  3753. {
  3754. front: {
  3755. height: math.unit(6, "feet"),
  3756. weight: math.unit(170, "lbs"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/gin/front.svg"
  3760. }
  3761. },
  3762. foot: {
  3763. height: math.unit(6/4.25, "feet"),
  3764. name: "Foot",
  3765. image: {
  3766. source: "./media/characters/gin/foot.svg"
  3767. }
  3768. },
  3769. sole: {
  3770. height: math.unit(6/4.40, "feet"),
  3771. name: "Sole",
  3772. image: {
  3773. source: "./media/characters/gin/sole.svg"
  3774. }
  3775. },
  3776. },
  3777. [
  3778. {
  3779. name: "Normal",
  3780. height: math.unit(9 + 4/12, "feet")
  3781. },
  3782. {
  3783. name: "Macro",
  3784. height: math.unit(1500, "feet")
  3785. },
  3786. {
  3787. name: "Megamacro",
  3788. height: math.unit(200, "miles"),
  3789. default: true
  3790. },
  3791. {
  3792. name: "Gigamacro",
  3793. height: math.unit(500, "megameters")
  3794. },
  3795. {
  3796. name: "Teramacro",
  3797. height: math.unit(15, "lightyears")
  3798. }
  3799. ]
  3800. )
  3801. };
  3802. characterMakers["Guy"] = () => {
  3803. return makeCharacter(
  3804. "Guy",
  3805. "Whatastandupguy",
  3806. {
  3807. front: {
  3808. height: math.unit(6 + 1/6, "feet"),
  3809. weight: math.unit(178, "lbs"),
  3810. name: "Front",
  3811. image: {
  3812. source: "./media/characters/guy/front.svg"
  3813. }
  3814. }
  3815. },
  3816. [
  3817. {
  3818. name: "Normal",
  3819. height: math.unit(6 + 1/6, "feet")
  3820. },
  3821. {
  3822. name: "Large",
  3823. height: math.unit(25 + 7/12, "feet")
  3824. },
  3825. {
  3826. name: "Macro",
  3827. height: math.unit(60 + 9/12, "feet")
  3828. },
  3829. {
  3830. name: "Macro+",
  3831. height: math.unit(246, "feet")
  3832. },
  3833. {
  3834. name: "Macro++",
  3835. height: math.unit(878, "feet")
  3836. }
  3837. ]
  3838. )
  3839. };
  3840. characterMakers["Tiberius"] = () => {
  3841. return makeCharacter(
  3842. "Tiberius",
  3843. "movler",
  3844. {
  3845. front: {
  3846. height: math.unit(9, "feet"),
  3847. weight: math.unit(800, "lbs"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/tiberius/front.svg",
  3851. extra: 2295/2071
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(9, "feet"),
  3856. weight: math.unit(800, "lbs"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/tiberius/back.svg",
  3860. extra: 2373/2160
  3861. }
  3862. },
  3863. },
  3864. [
  3865. {
  3866. name: "Normal",
  3867. height: math.unit(9, "feet"),
  3868. default: true
  3869. }
  3870. ]
  3871. )
  3872. };
  3873. characterMakers["Surgo"] = () => {
  3874. return makeCharacter(
  3875. "Surgo",
  3876. "movler",
  3877. {
  3878. front: {
  3879. height: math.unit(6, "feet"),
  3880. weight: math.unit(600, "lbs"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/surgo/front.svg",
  3884. extra: 3591/2227
  3885. }
  3886. },
  3887. back: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(600, "lbs"),
  3890. name: "Back",
  3891. image: {
  3892. source: "./media/characters/surgo/back.svg",
  3893. extra: 3557/2228
  3894. }
  3895. },
  3896. laying: {
  3897. height: math.unit(6 * 0.85, "feet"),
  3898. weight: math.unit(600, "lbs"),
  3899. name: "Laying",
  3900. image: {
  3901. source: "./media/characters/surgo/laying.svg"
  3902. }
  3903. },
  3904. },
  3905. [
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(6, "feet"),
  3909. default: true
  3910. }
  3911. ]
  3912. )
  3913. };
  3914. characterMakers["Cibus"] = () => {
  3915. return makeCharacter(
  3916. "Cibus",
  3917. "movler",
  3918. {
  3919. side: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(150, "lbs"),
  3922. name: "Side",
  3923. image: {
  3924. source: "./media/characters/cibus/side.svg",
  3925. extra: 800/400
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Normal",
  3932. height: math.unit(6, "feet"),
  3933. default: true
  3934. }
  3935. ]
  3936. )
  3937. };
  3938. characterMakers["Nibbles"] = () => {
  3939. return makeCharacter(
  3940. "Nibbles",
  3941. "movler",
  3942. {
  3943. front: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(240, "lbs"),
  3946. name: "Front",
  3947. image: {
  3948. source: "./media/characters/nibbles/front.svg"
  3949. }
  3950. },
  3951. side: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(240, "lbs"),
  3954. name: "Side",
  3955. image: {
  3956. source: "./media/characters/nibbles/side.svg"
  3957. }
  3958. },
  3959. },
  3960. [
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(9, "feet"),
  3964. default: true
  3965. }
  3966. ]
  3967. )
  3968. };
  3969. characterMakers["Rikky"] = () => {
  3970. return makeCharacter(
  3971. "Rikky",
  3972. "Quake Yote",
  3973. {
  3974. side: {
  3975. height: math.unit(5 + 1/6, "feet"),
  3976. weight: math.unit(130, "lbs"),
  3977. name: "Side",
  3978. image: {
  3979. source: "./media/characters/rikky/side.svg"
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(5 + 1/6, "feet")
  3987. },
  3988. {
  3989. name: "Macro",
  3990. height: math.unit(152, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Megamacro",
  3995. height: math.unit(7, "miles")
  3996. }
  3997. ]
  3998. )
  3999. };
  4000. characterMakers["Malfressa"] = () => {
  4001. return makeCharacter(
  4002. "Malfressa",
  4003. "Scareye",
  4004. {
  4005. side: {
  4006. height: math.unit(370, "cm"),
  4007. weight: math.unit(350, "lbs"),
  4008. name: "Side",
  4009. image: {
  4010. source: "./media/characters/malfressa/side.svg"
  4011. }
  4012. },
  4013. walking: {
  4014. height: math.unit(370, "cm"),
  4015. weight: math.unit(350, "lbs"),
  4016. name: "Walking",
  4017. image: {
  4018. source: "./media/characters/malfressa/walking.svg"
  4019. }
  4020. },
  4021. feral: {
  4022. height: math.unit(2500, "cm"),
  4023. weight: math.unit(100000, "lbs"),
  4024. name: "Feral",
  4025. image: {
  4026. source: "./media/characters/malfressa/feral.svg",
  4027. extra: 2108/837 * (1 / (1 - 0.02)),
  4028. bottom: 0.02
  4029. }
  4030. },
  4031. },
  4032. [
  4033. {
  4034. name: "Normal",
  4035. height: math.unit(370, "cm")
  4036. },
  4037. {
  4038. name: "Macro",
  4039. height: math.unit(300, "meters"),
  4040. default: true
  4041. }
  4042. ]
  4043. )
  4044. };
  4045. characterMakers["Jaro"] = () => {
  4046. return makeCharacter(
  4047. "Jaro",
  4048. "Jaro",
  4049. {
  4050. front: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(60, "kg"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/jaro/front.svg"
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(60, "kg"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/jaro/back.svg"
  4064. }
  4065. },
  4066. },
  4067. [
  4068. {
  4069. name: "Micro",
  4070. height: math.unit(7, "inches")
  4071. },
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(5.5, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Minimacro",
  4079. height: math.unit(20, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(200, "meters")
  4084. }
  4085. ]
  4086. )
  4087. };
  4088. characterMakers["Rogue"] = () => {
  4089. return makeCharacter(
  4090. "Rogue",
  4091. "Rogue",
  4092. {
  4093. front: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(195, "lb"),
  4096. name: "Front",
  4097. image: {
  4098. source: "./media/characters/rogue/front.svg"
  4099. }
  4100. },
  4101. },
  4102. [
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(90, "feet"),
  4106. default: true
  4107. },
  4108. ]
  4109. )
  4110. };
  4111. characterMakers["Piper"] = () => {
  4112. return makeCharacter(
  4113. "Piper",
  4114. "Flyhar",
  4115. {
  4116. front: {
  4117. height: math.unit(5 + 8/12, "feet"),
  4118. weight: math.unit(140, "lb"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/piper/front.svg",
  4122. extra: 3928/3681
  4123. }
  4124. },
  4125. },
  4126. [
  4127. {
  4128. name: "Micro",
  4129. height: math.unit(2, "inches")
  4130. },
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(5 + 8/12, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(250, "feet"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Megamacro",
  4142. height: math.unit(7, "miles")
  4143. },
  4144. ]
  4145. )
  4146. };
  4147. characterMakers["Gemini"] = () => {
  4148. return makeCharacter(
  4149. "Gemini",
  4150. "lajay",
  4151. {
  4152. front: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(220, "lb"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/gemini/front.svg"
  4158. }
  4159. },
  4160. back: {
  4161. height: math.unit(6, "feet"),
  4162. weight: math.unit(220, "lb"),
  4163. name: "Back",
  4164. image: {
  4165. source: "./media/characters/gemini/back.svg"
  4166. }
  4167. },
  4168. kneeling: {
  4169. height: math.unit(6/1.5, "feet"),
  4170. weight: math.unit(220, "lb"),
  4171. name: "Kneeling",
  4172. image: {
  4173. source: "./media/characters/gemini/kneeling.svg",
  4174. bottom: 0.02
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Macro",
  4181. height: math.unit(300, "meters"),
  4182. default: true
  4183. },
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(6900, "meters")
  4187. },
  4188. ]
  4189. )
  4190. };
  4191. characterMakers["Alicia"] = () => {
  4192. return makeCharacter(
  4193. "Alicia",
  4194. "LittleBig",
  4195. {
  4196. anthro: {
  4197. height: math.unit(2.35, "meters"),
  4198. weight: math.unit(73, "kg"),
  4199. name: "Anthro",
  4200. image: {
  4201. source: "./media/characters/alicia/anthro.svg"
  4202. }
  4203. },
  4204. feral: {
  4205. height: math.unit(1.69, "meters"),
  4206. weight: math.unit(73, "kg"),
  4207. name: "Feral",
  4208. image: {
  4209. source: "./media/characters/alicia/feral.svg"
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Normal",
  4216. height: math.unit(2.35, "meters")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(60, "meters"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Megamacro",
  4225. height: math.unit(10000, "kilometers")
  4226. },
  4227. ]
  4228. )
  4229. };
  4230. characterMakers["Archy"] = () => {
  4231. return makeCharacter(
  4232. "Archy",
  4233. "ArchyD",
  4234. {
  4235. front: {
  4236. height: math.unit(7, "feet"),
  4237. weight: math.unit(250, "lbs"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/archy/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Micro",
  4247. height: math.unit(1, "inch")
  4248. },
  4249. {
  4250. name: "Shorty",
  4251. height: math.unit(5, "feet")
  4252. },
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(7, "feet")
  4256. },
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(600, "meters"),
  4260. default: true
  4261. },
  4262. {
  4263. name: "Megamacro",
  4264. height: math.unit(1, "mile")
  4265. },
  4266. ]
  4267. )
  4268. };
  4269. characterMakers["Berri"] = () => {
  4270. return makeCharacter(
  4271. "Berri",
  4272. "LittleBig",
  4273. {
  4274. front: {
  4275. height: math.unit(1.65, "meters"),
  4276. weight: math.unit(74, "kg"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/berri/front.svg"
  4280. }
  4281. }
  4282. },
  4283. [
  4284. {
  4285. name: "Normal",
  4286. height: math.unit(1.65, "meters")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(60, "m"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(9.213, "km")
  4296. },
  4297. {
  4298. name: "Planet Eater",
  4299. height: math.unit(489, "megameters")
  4300. },
  4301. {
  4302. name: "Teramacro",
  4303. height: math.unit(2471635000000, "meters")
  4304. },
  4305. {
  4306. name: "Examacro",
  4307. height: math.unit(8.0624e+26, "meters")
  4308. }
  4309. ]
  4310. )
  4311. };
  4312. characterMakers["Lexi"] = () => {
  4313. return makeCharacter(
  4314. "Lexi",
  4315. "LittleBig",
  4316. {
  4317. front: {
  4318. height: math.unit(1.72, "meters"),
  4319. weight: math.unit(68, "kg"),
  4320. name: "Front",
  4321. image: {
  4322. source: "./media/characters/lexi/front.svg"
  4323. }
  4324. }
  4325. },
  4326. [
  4327. {
  4328. name: "Very Smol",
  4329. height: math.unit(10, "mm")
  4330. },
  4331. {
  4332. name: "Micro",
  4333. height: math.unit(6.8, "cm"),
  4334. default: true
  4335. },
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(1.72, "m")
  4339. }
  4340. ]
  4341. )
  4342. };
  4343. characterMakers["Martin"] = () => {
  4344. return makeCharacter(
  4345. "Martin",
  4346. "LittleBig",
  4347. {
  4348. front: {
  4349. height: math.unit(1.69, "meters"),
  4350. weight: math.unit(68, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/martin/front.svg",
  4354. extra: 596/581
  4355. }
  4356. }
  4357. },
  4358. [
  4359. {
  4360. name: "Micro",
  4361. height: math.unit(6.85, "cm"),
  4362. default: true
  4363. },
  4364. {
  4365. name: "Normal",
  4366. height: math.unit(1.69, "m")
  4367. }
  4368. ]
  4369. )
  4370. };
  4371. characterMakers["Juno"] = () => {
  4372. return makeCharacter(
  4373. "Juno",
  4374. "LittleBig",
  4375. {
  4376. front: {
  4377. height: math.unit(1.69, "meters"),
  4378. weight: math.unit(68, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/juno/front.svg"
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Micro",
  4388. height: math.unit(7, "cm")
  4389. },
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(1.89, "m")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(353, "meters"),
  4397. default: true
  4398. }
  4399. ]
  4400. )
  4401. };
  4402. characterMakers["Samantha"] = () => {
  4403. return makeCharacter(
  4404. "Samantha",
  4405. "LittleBig",
  4406. {
  4407. front: {
  4408. height: math.unit(1.93, "meters"),
  4409. weight: math.unit(83, "kg"),
  4410. name: "Front",
  4411. image: {
  4412. source: "./media/characters/samantha/front.svg"
  4413. }
  4414. },
  4415. frontClothed: {
  4416. height: math.unit(1.93, "meters"),
  4417. weight: math.unit(83, "kg"),
  4418. name: "Front (Clothed)",
  4419. image: {
  4420. source: "./media/characters/samantha/front-clothed.svg"
  4421. }
  4422. },
  4423. back: {
  4424. height: math.unit(1.93, "meters"),
  4425. weight: math.unit(83, "kg"),
  4426. name: "Back",
  4427. image: {
  4428. source: "./media/characters/samantha/back.svg"
  4429. }
  4430. },
  4431. },
  4432. [
  4433. {
  4434. name: "Normal",
  4435. height: math.unit(1.93, "m")
  4436. },
  4437. {
  4438. name: "Macro",
  4439. height: math.unit(74, "meters"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro+",
  4444. height: math.unit(223, "meters"),
  4445. },
  4446. {
  4447. name: "Megamacro",
  4448. height: math.unit(8381, "meters"),
  4449. },
  4450. {
  4451. name: "Megamacro+",
  4452. height: math.unit(12000, "kilometers")
  4453. },
  4454. ]
  4455. )
  4456. };
  4457. characterMakers["Dr. Clay"] = () => {
  4458. return makeCharacter(
  4459. "Dr. Clay",
  4460. "LittleBig",
  4461. {
  4462. front: {
  4463. height: math.unit(1.92, "meters"),
  4464. weight: math.unit(80, "kg"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/dr-clay/front.svg"
  4468. }
  4469. },
  4470. frontClothed: {
  4471. height: math.unit(1.92, "meters"),
  4472. weight: math.unit(80, "kg"),
  4473. name: "Front (Clothed)",
  4474. image: {
  4475. source: "./media/characters/dr-clay/front-clothed.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(1.92, "m")
  4483. },
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(214, "meters"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Macro+",
  4491. height: math.unit(12.237, "meters"),
  4492. },
  4493. {
  4494. name: "Megamacro",
  4495. height: math.unit(557, "megameters"),
  4496. },
  4497. {
  4498. name: "Unimaginable",
  4499. height: math.unit(120e9, "lightyears")
  4500. },
  4501. ]
  4502. )
  4503. };
  4504. characterMakers["Wyvrn Ripsnarl"] = () => {
  4505. return makeCharacter(
  4506. "Wyvrn Ripsnarl",
  4507. "LoboRaptorLo",
  4508. {
  4509. front: {
  4510. height: math.unit(2, "meters"),
  4511. weight: math.unit(80, "kg"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4515. }
  4516. }
  4517. },
  4518. [
  4519. {
  4520. name: "Teramacro",
  4521. height: math.unit(500000, "lightyears")
  4522. },
  4523. ]
  4524. )
  4525. };
  4526. characterMakers["Vemus"] = () => {
  4527. return makeCharacter(
  4528. "Vemus",
  4529. "Vemus",
  4530. {
  4531. front: {
  4532. height: math.unit(2, "meters"),
  4533. weight: math.unit(150, "kg"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/vemus/front.svg",
  4537. extra: 2384/2084
  4538. }
  4539. }
  4540. },
  4541. [
  4542. {
  4543. name: "Normal",
  4544. height: math.unit(3, "meters"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Lorg",
  4549. height: math.unit(7, "meters")
  4550. },
  4551. {
  4552. name: "More Lorg",
  4553. height: math.unit(250, "meters")
  4554. },
  4555. ]
  4556. )
  4557. };
  4558. characterMakers["Beherit"] = () => {
  4559. return makeCharacter(
  4560. "Beherit",
  4561. "Beherit",
  4562. {
  4563. front: {
  4564. height: math.unit(2, "meters"),
  4565. weight: math.unit(70, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/beherit/front.svg",
  4569. extra: 1408/1242
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(6, "feet")
  4577. },
  4578. {
  4579. name: "Lorg",
  4580. height: math.unit(25, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Lorger",
  4585. height: math.unit(75, "feet")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(200, "meters")
  4590. },
  4591. ]
  4592. )
  4593. };
  4594. characterMakers["Everett"] = () => {
  4595. return makeCharacter(
  4596. "Everett",
  4597. "Beherit",
  4598. {
  4599. front: {
  4600. height: math.unit(2, "meters"),
  4601. weight: math.unit(150, "kg"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/everett/front.svg",
  4605. extra: 2038/1737
  4606. }
  4607. },
  4608. paw: {
  4609. height: math.unit(2/3.6, "meters"),
  4610. name: "Paw",
  4611. image: {
  4612. source: "./media/characters/everett/paw.svg"
  4613. }
  4614. },
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(15, "feet"),
  4620. default: true
  4621. },
  4622. {
  4623. name: "Lorg",
  4624. height: math.unit(70, "feet"),
  4625. default: true
  4626. },
  4627. {
  4628. name: "Lorger",
  4629. height: math.unit(250, "feet")
  4630. },
  4631. {
  4632. name: "Macro",
  4633. height: math.unit(500, "meters")
  4634. },
  4635. ]
  4636. )
  4637. };
  4638. characterMakers["Rose Lion"] = () => {
  4639. return makeCharacter(
  4640. "Rose Lion",
  4641. "Enormouse",
  4642. {
  4643. front: {
  4644. height: math.unit(2, "meters"),
  4645. weight: math.unit(86, "kg"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/rose-lion/front.svg"
  4649. }
  4650. },
  4651. bent: {
  4652. height: math.unit(2/1.4288, "meters"),
  4653. weight: math.unit(86, "kg"),
  4654. name: "Bent",
  4655. image: {
  4656. source: "./media/characters/rose-lion/bent.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Mini-Micro",
  4663. height: math.unit(1, "cm")
  4664. },
  4665. {
  4666. name: "Micro",
  4667. height: math.unit(3.5, "inches"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "Normal",
  4672. height: math.unit(6 + 1/6, "feet")
  4673. },
  4674. {
  4675. name: "Mini-Macro",
  4676. height: math.unit(9 + 10/12, "feet")
  4677. },
  4678. ]
  4679. )
  4680. };
  4681. characterMakers["Regal"] = () => {
  4682. return makeCharacter(
  4683. "Regal",
  4684. "Regal Drennen",
  4685. {
  4686. front: {
  4687. height: math.unit(2, "meters"),
  4688. weight: math.unit(350, "lbs"),
  4689. name: "Front",
  4690. image: {
  4691. source: "./media/characters/regal/front.svg"
  4692. }
  4693. },
  4694. back: {
  4695. height: math.unit(2, "meters"),
  4696. weight: math.unit(350, "lbs"),
  4697. name: "Back",
  4698. image: {
  4699. source: "./media/characters/regal/back.svg"
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Macro",
  4706. height: math.unit(350, "feet"),
  4707. default: true
  4708. }
  4709. ]
  4710. )
  4711. };
  4712. characterMakers["Opal"] = () => {
  4713. return makeCharacter(
  4714. "Opal",
  4715. "Enormouse",
  4716. {
  4717. front: {
  4718. height: math.unit(4 + 11/12, "feet"),
  4719. weight: math.unit(100, "lbs"),
  4720. name: "Front",
  4721. image: {
  4722. source: "./media/characters/opal/front.svg"
  4723. }
  4724. },
  4725. frontAlt: {
  4726. height: math.unit(4 + 11/12, "feet"),
  4727. weight: math.unit(100, "lbs"),
  4728. name: "Front (Alt)",
  4729. image: {
  4730. source: "./media/characters/opal/front-alt.svg"
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Small",
  4737. height: math.unit(4 + 11/12, "feet")
  4738. },
  4739. {
  4740. name: "Normal",
  4741. height: math.unit(20, "feet"),
  4742. default: true
  4743. },
  4744. {
  4745. name: "Macro",
  4746. height: math.unit(120, "feet")
  4747. },
  4748. {
  4749. name: "Megamacro",
  4750. height: math.unit(80, "miles")
  4751. },
  4752. {
  4753. name: "True Size",
  4754. height: math.unit(100000, "lightyears")
  4755. },
  4756. ]
  4757. )
  4758. };
  4759. characterMakers["Vector Wuff"] = () => {
  4760. return makeCharacter(
  4761. "Vector Wuff",
  4762. "Vector",
  4763. {
  4764. front: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(200, "lbs"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/vector-wuff/front.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(2.8, "meters")
  4777. },
  4778. {
  4779. name: "Macro",
  4780. height: math.unit(450, "meters"),
  4781. default: true
  4782. },
  4783. {
  4784. name: "Megamacro",
  4785. height: math.unit(15, "kilometers")
  4786. }
  4787. ]
  4788. )
  4789. };
  4790. characterMakers["Dannik"] = () => {
  4791. return makeCharacter(
  4792. "Dannik",
  4793. "LuchaLibreLibro",
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(256, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/dannik/front.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(69.57, "meters"),
  4808. default: true
  4809. },
  4810. ]
  4811. )
  4812. };
  4813. characterMakers["Azura Saharah"] = () => {
  4814. return makeCharacter(
  4815. "Azura Saharah",
  4816. "AzuraSaharah",
  4817. {
  4818. front: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(120, "lbs"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/azura-saharah/front.svg"
  4824. }
  4825. },
  4826. back: {
  4827. height: math.unit(6, "feet"),
  4828. weight: math.unit(120, "lbs"),
  4829. name: "Back",
  4830. image: {
  4831. source: "./media/characters/azura-saharah/back.svg"
  4832. }
  4833. },
  4834. },
  4835. [
  4836. {
  4837. name: "Macro",
  4838. height: math.unit(100, "feet"),
  4839. default: true
  4840. },
  4841. ]
  4842. )
  4843. };
  4844. characterMakers["Kennedy"] = () => {
  4845. return makeCharacter(
  4846. "Kennedy",
  4847. "BossVoss",
  4848. {
  4849. side: {
  4850. height: math.unit(5 + 4/12, "feet"),
  4851. weight: math.unit(163, "lbs"),
  4852. name: "Side",
  4853. image: {
  4854. source: "./media/characters/kennedy/side.svg"
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Standard Doggo",
  4861. height: math.unit(5 + 4/12, "feet")
  4862. },
  4863. {
  4864. name: "Big Doggo",
  4865. height: math.unit(25 + 3/12, "feet"),
  4866. default: true
  4867. },
  4868. ]
  4869. )
  4870. };
  4871. characterMakers["Odi Lunar"] = () => {
  4872. return makeCharacter(
  4873. "Odi Lunar",
  4874. "OdiLunar",
  4875. {
  4876. front: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(90, "lbs"),
  4879. name: "Front",
  4880. image: {
  4881. source: "./media/characters/odi-lunar/front.svg"
  4882. }
  4883. }
  4884. },
  4885. [
  4886. {
  4887. name: "Micro",
  4888. height: math.unit(3, "inches"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(5.5, "feet")
  4894. }
  4895. ]
  4896. )
  4897. };
  4898. characterMakers["Mandake"] = () => {
  4899. return makeCharacter(
  4900. "Mandake",
  4901. "Dialuca01",
  4902. {
  4903. back: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(220, "lbs"),
  4906. name: "Back",
  4907. image: {
  4908. source: "./media/characters/mandake/back.svg"
  4909. }
  4910. }
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(7, "feet")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(78, "feet")
  4920. },
  4921. {
  4922. name: "Macro+",
  4923. height: math.unit(300, "meters")
  4924. },
  4925. {
  4926. name: "Macro++",
  4927. height: math.unit(2400, "feet")
  4928. },
  4929. {
  4930. name: "Megamacro",
  4931. height: math.unit(5167, "meters")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(41769, "miles")
  4936. },
  4937. ]
  4938. )
  4939. };
  4940. characterMakers["Yozey"] = () => {
  4941. return makeCharacter(
  4942. "Yozey",
  4943. "Yozey",
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(120, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/yozey/front.svg"
  4951. }
  4952. },
  4953. frontAlt: {
  4954. height: math.unit(6, "feet"),
  4955. weight: math.unit(120, "lbs"),
  4956. name: "Front (Alt)",
  4957. image: {
  4958. source: "./media/characters/yozey/front-alt.svg"
  4959. }
  4960. },
  4961. side: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(120, "lbs"),
  4964. name: "Side",
  4965. image: {
  4966. source: "./media/characters/yozey/side.svg"
  4967. }
  4968. },
  4969. },
  4970. [
  4971. {
  4972. name: "Micro",
  4973. height: math.unit(3, "inches"),
  4974. default: true
  4975. },
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(6, "feet")
  4979. }
  4980. ]
  4981. )
  4982. };
  4983. characterMakers["Valeska Voss"] = () => {
  4984. return makeCharacter(
  4985. "Valeska Voss",
  4986. "BossVoss",
  4987. {
  4988. front: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(103, "lbs"),
  4991. name: "Front",
  4992. image: {
  4993. source: "./media/characters/valeska-voss/front.svg"
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Mini-Sized Sub",
  5000. height: math.unit(3.1, "inches")
  5001. },
  5002. {
  5003. name: "Mid-Sized Sub",
  5004. height: math.unit(6.2, "inches")
  5005. },
  5006. {
  5007. name: "Full-Sized Sub",
  5008. height: math.unit(9.3, "inches")
  5009. },
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(5 + 2/12, "foot"),
  5013. default: true
  5014. },
  5015. ]
  5016. )
  5017. };
  5018. characterMakers["Gene Zeta"] = () => {
  5019. return makeCharacter(
  5020. "Gene Zeta",
  5021. "Xeebes",
  5022. {
  5023. front: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(160, "lbs"),
  5026. name: "Front",
  5027. image: {
  5028. source: "./media/characters/gene-zeta/front.svg",
  5029. bottom: 0.03,
  5030. extra: 1 / (1 - 0.03)
  5031. }
  5032. }
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(6.25, "foot"),
  5038. default: true
  5039. },
  5040. ]
  5041. )
  5042. };
  5043. characterMakers["Razinox"] = () => {
  5044. return makeCharacter(
  5045. "Razinox",
  5046. "Razinox",
  5047. {
  5048. front: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(350, "lbs"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/razinox/front.svg",
  5054. extra: 1686/1548
  5055. }
  5056. },
  5057. back: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(350, "lbs"),
  5060. name: "Back",
  5061. image: {
  5062. source: "./media/characters/razinox/back.svg",
  5063. extra: 1660/1590
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(10 + 8/12, "foot")
  5071. },
  5072. {
  5073. name: "Minimacro",
  5074. height: math.unit(15, "foot")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(60, "foot"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(5, "miles")
  5084. },
  5085. {
  5086. name: "Gigamacro",
  5087. height: math.unit(6000, "miles")
  5088. },
  5089. ]
  5090. )
  5091. };
  5092. characterMakers["Cobalt"] = () => {
  5093. return makeCharacter(
  5094. "Cobalt",
  5095. "Miateshcha",
  5096. {
  5097. front: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(150, "lbs"),
  5100. name: "Front",
  5101. image: {
  5102. source: "./media/characters/cobalt/front.svg"
  5103. }
  5104. }
  5105. },
  5106. [
  5107. {
  5108. name: "Normal",
  5109. height: math.unit(8 + 1/12, "foot")
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(111, "foot"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Supracosmic",
  5118. height: math.unit(1e42, "feet")
  5119. },
  5120. ]
  5121. )
  5122. };
  5123. characterMakers["Amanda"] = () => {
  5124. return makeCharacter(
  5125. "Amanda",
  5126. "Amanda",
  5127. {
  5128. front: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(140, "lbs"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/amanda/front.svg"
  5134. }
  5135. }
  5136. },
  5137. [
  5138. {
  5139. name: "Micro",
  5140. height: math.unit(5, "inches"),
  5141. default: true
  5142. },
  5143. ]
  5144. )
  5145. };
  5146. characterMakers["Teal"] = () => {
  5147. return makeCharacter(
  5148. "Teal",
  5149. "Teal",
  5150. {
  5151. front: {
  5152. height: math.unit(5.59, "feet"),
  5153. weight: math.unit(250, "lbs"),
  5154. name: "Front",
  5155. image: {
  5156. source: "./media/characters/teal/front.svg"
  5157. }
  5158. },
  5159. frontAlt: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(250, "lbs"),
  5162. name: "Front (Alt)",
  5163. image: {
  5164. source: "./media/characters/teal/front-alt.svg",
  5165. bottom: 0.04,
  5166. extra: 1 / (1 - 0.04)
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(12, "feet"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(300, "feet")
  5179. },
  5180. ]
  5181. )
  5182. };
  5183. characterMakers["Ravin Amulet"] = () => {
  5184. return makeCharacter(
  5185. "Ravin Amulet",
  5186. "Ravin Amulet",
  5187. {
  5188. frontCat: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(180, "lbs"),
  5191. name: "Front (Cat)",
  5192. image: {
  5193. source: "./media/characters/ravin-amulet/front-cat.svg"
  5194. }
  5195. },
  5196. frontCatAlt: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Front (Alt, Cat)",
  5200. image: {
  5201. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5202. }
  5203. },
  5204. frontWerewolf: {
  5205. height: math.unit(6*1.2, "feet"),
  5206. weight: math.unit(225, "lbs"),
  5207. name: "Front (Werewolf)",
  5208. image: {
  5209. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5210. }
  5211. },
  5212. backWerewolf: {
  5213. height: math.unit(6*1.2, "feet"),
  5214. weight: math.unit(225, "lbs"),
  5215. name: "Back (Werewolf)",
  5216. image: {
  5217. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5218. }
  5219. },
  5220. },
  5221. [
  5222. {
  5223. name: "Nano",
  5224. height: math.unit(1, "micrometer")
  5225. },
  5226. {
  5227. name: "Micro",
  5228. height: math.unit(1, "inch")
  5229. },
  5230. {
  5231. name: "Normal",
  5232. height: math.unit(6, "feet"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(60, "feet")
  5238. }
  5239. ]
  5240. )
  5241. };
  5242. characterMakers["Fluoresce"] = () => {
  5243. return makeCharacter(
  5244. "Fluoresce",
  5245. "Ravin Amulet",
  5246. {
  5247. front: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(165, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/fluoresce/front.svg"
  5253. }
  5254. }
  5255. },
  5256. [
  5257. {
  5258. name: "Micro",
  5259. height: math.unit(6, "cm")
  5260. },
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(5 + 7/12, "feet"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Macro",
  5268. height: math.unit(56, "feet")
  5269. },
  5270. {
  5271. name: "Megamacro",
  5272. height: math.unit(1.9, "miles")
  5273. },
  5274. ]
  5275. )
  5276. };
  5277. characterMakers["Aurora"] = () => {
  5278. return makeCharacter(
  5279. "Aurora",
  5280. "Vonadi",
  5281. {
  5282. front: {
  5283. height: math.unit(9 + 6/12, "feet"),
  5284. weight: math.unit(523, "lbs"),
  5285. name: "Side",
  5286. image: {
  5287. source: "./media/characters/aurora/side.svg"
  5288. }
  5289. }
  5290. },
  5291. [
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(9 + 6/12, "feet")
  5295. },
  5296. {
  5297. name: "Macro",
  5298. height: math.unit(96, "feet"),
  5299. default: true
  5300. },
  5301. {
  5302. name: "Macro+",
  5303. height: math.unit(243, "feet")
  5304. },
  5305. ]
  5306. )
  5307. };
  5308. characterMakers["Ranek"] = () => {
  5309. return makeCharacter(
  5310. "Ranek",
  5311. "Ranek",
  5312. {
  5313. front: {
  5314. height: math.unit(194, "cm"),
  5315. weight: math.unit(90, "kg"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/ranek/front.svg"
  5319. }
  5320. },
  5321. side: {
  5322. height: math.unit(194, "cm"),
  5323. weight: math.unit(90, "kg"),
  5324. name: "Side",
  5325. image: {
  5326. source: "./media/characters/ranek/side.svg"
  5327. }
  5328. },
  5329. back: {
  5330. height: math.unit(194, "cm"),
  5331. weight: math.unit(90, "kg"),
  5332. name: "Back",
  5333. image: {
  5334. source: "./media/characters/ranek/back.svg"
  5335. }
  5336. },
  5337. feral: {
  5338. height: math.unit(30, "cm"),
  5339. weight: math.unit(1.6, "lbs"),
  5340. name: "Feral",
  5341. image: {
  5342. source: "./media/characters/ranek/feral.svg"
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(194, "cm"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(100, "meters")
  5355. },
  5356. ]
  5357. )
  5358. };
  5359. characterMakers["Andrew Cooper"] = () => {
  5360. return makeCharacter(
  5361. "Andrew Cooper",
  5362. "Vonadi",
  5363. {
  5364. front: {
  5365. height: math.unit(5 + 6/12, "feet"),
  5366. weight: math.unit(153, "lbs"),
  5367. name: "Front",
  5368. image: {
  5369. source: "./media/characters/andrew-cooper/front.svg"
  5370. }
  5371. },
  5372. },
  5373. [
  5374. {
  5375. name: "Nano",
  5376. height: math.unit(1, "mm")
  5377. },
  5378. {
  5379. name: "Micro",
  5380. height: math.unit(2, "inches")
  5381. },
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(5 + 6/12, "feet"),
  5385. default: true
  5386. }
  5387. ]
  5388. )
  5389. };
  5390. characterMakers["Akane Sato"] = () => {
  5391. return makeCharacter(
  5392. "Akane Sato",
  5393. "Vonadi",
  5394. {
  5395. front: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(180, "lbs"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/akane-sato/front.svg",
  5401. extra: 1219/1140
  5402. }
  5403. },
  5404. back: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(180, "lbs"),
  5407. name: "Back",
  5408. image: {
  5409. source: "./media/characters/akane-sato/back.svg",
  5410. extra: 1219/1170
  5411. }
  5412. },
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(2.5, "meters")
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(250, "meters"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Megamacro",
  5426. height: math.unit(25, "km")
  5427. },
  5428. ]
  5429. )
  5430. };
  5431. characterMakers["Rook"] = () => {
  5432. return makeCharacter(
  5433. "Rook",
  5434. "Rook",
  5435. {
  5436. front: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(65, "kg"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/rook/front.svg"
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(8.8, "feet")
  5449. },
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(88, "feet"),
  5453. default: true
  5454. },
  5455. {
  5456. name: "Megamacro",
  5457. height: math.unit(8, "miles")
  5458. },
  5459. ]
  5460. )
  5461. };
  5462. characterMakers["Prodigy"] = () => {
  5463. return makeCharacter(
  5464. "Prodigy",
  5465. "Rook",
  5466. {
  5467. front: {
  5468. height: math.unit(12 + 2/12, "feet"),
  5469. weight: math.unit(808, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/prodigy/front.svg"
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(12 + 2/12, "feet"),
  5480. default: true
  5481. },
  5482. {
  5483. name: "Macro",
  5484. height: math.unit(143, "feet")
  5485. },
  5486. {
  5487. name: "Macro+",
  5488. height: math.unit(400, "feet")
  5489. },
  5490. ]
  5491. )
  5492. };
  5493. characterMakers["Daniel"] = () => {
  5494. return makeCharacter(
  5495. "Daniel",
  5496. "Galactor",
  5497. {
  5498. front: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(225, "lbs"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/daniel/front.svg"
  5504. }
  5505. },
  5506. leaning: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(225, "lbs"),
  5509. name: "Leaning",
  5510. image: {
  5511. source: "./media/characters/daniel/leaning.svg"
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Macro",
  5518. height: math.unit(1000, "feet"),
  5519. default: true
  5520. },
  5521. ]
  5522. )
  5523. };
  5524. characterMakers["Chiros"] = () => {
  5525. return makeCharacter(
  5526. "Chiros",
  5527. "Chiropica",
  5528. {
  5529. front: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(88, "lbs"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/chiros/front.svg",
  5535. extra: 306/226
  5536. }
  5537. },
  5538. side: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(88, "lbs"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/chiros/side.svg",
  5544. extra: 306/226
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(6, "cm"),
  5552. default: true
  5553. },
  5554. ]
  5555. )
  5556. };
  5557. characterMakers["Selka"] = () => {
  5558. return makeCharacter(
  5559. "Selka",
  5560. "Xelchew",
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(100, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/selka/front.svg",
  5568. extra: 947/887
  5569. }
  5570. }
  5571. },
  5572. [
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(5, "cm"),
  5576. default: true
  5577. },
  5578. ]
  5579. )
  5580. };
  5581. characterMakers["Verin"] = () => {
  5582. return makeCharacter(
  5583. "Verin",
  5584. "Vonadi",
  5585. {
  5586. front: {
  5587. height: math.unit(8 + 3/12, "feet"),
  5588. weight: math.unit(424, "lbs"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/verin/front.svg",
  5592. extra: 1845/1550
  5593. }
  5594. },
  5595. frontArmored: {
  5596. height: math.unit(8 + 3/12, "feet"),
  5597. weight: math.unit(424, "lbs"),
  5598. name: "Front (Armored)",
  5599. image: {
  5600. source: "./media/characters/verin/front-armor.svg",
  5601. extra: 1845/1550 * (1 / (1 - 0.01)),
  5602. bottom: 0.01
  5603. }
  5604. },
  5605. back: {
  5606. height: math.unit(8 + 3/12, "feet"),
  5607. weight: math.unit(424, "lbs"),
  5608. name: "Back",
  5609. image: {
  5610. source: "./media/characters/verin/back.svg",
  5611. bottom: 0.1,
  5612. extra: 1 / (1 - 0.1)
  5613. }
  5614. },
  5615. foot: {
  5616. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5617. name: "Foot",
  5618. image: {
  5619. source: "./media/characters/verin/foot.svg"
  5620. }
  5621. },
  5622. },
  5623. [
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(8 + 3/12, "feet")
  5627. },
  5628. {
  5629. name: "Minimacro",
  5630. height: math.unit(21, "feet"),
  5631. default: true
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(626, "feet")
  5636. },
  5637. ]
  5638. )
  5639. };
  5640. characterMakers["Sovrim Terraquian"] = () => {
  5641. return makeCharacter(
  5642. "Sovrim Terraquian",
  5643. "Sovrim Terraquian",
  5644. {
  5645. front: {
  5646. height: math.unit(2.718, "meters"),
  5647. weight: math.unit(150, "lbs"),
  5648. name: "Front",
  5649. image: {
  5650. source: "./media/characters/sovrim-terraquian/front.svg"
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(2.718, "meters"),
  5655. weight: math.unit(150, "lbs"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/sovrim-terraquian/back.svg"
  5659. }
  5660. }
  5661. },
  5662. [
  5663. {
  5664. name: "Micro",
  5665. height: math.unit(2, "inches")
  5666. },
  5667. {
  5668. name: "Small",
  5669. height: math.unit(1, "meter")
  5670. },
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(Math.E, "meters"),
  5674. default: true
  5675. },
  5676. {
  5677. name: "Macro",
  5678. height: math.unit(20, "meters")
  5679. },
  5680. {
  5681. name: "Macro+",
  5682. height: math.unit(400, "meters")
  5683. },
  5684. ]
  5685. )
  5686. };
  5687. characterMakers["Reece Silvermane"] = () => {
  5688. return makeCharacter(
  5689. "Reece Silvermane",
  5690. "Silverhorsey",
  5691. {
  5692. front: {
  5693. height: math.unit(7, "feet"),
  5694. weight: math.unit(489, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/reece-silvermane/front.svg",
  5698. bottom: 0.02,
  5699. extra: 1 / (1 - 0.02)
  5700. }
  5701. },
  5702. },
  5703. [
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(1.5, "miles"),
  5707. default: true
  5708. },
  5709. ]
  5710. )
  5711. };
  5712. characterMakers["Kane"] = () => {
  5713. return makeCharacter(
  5714. "Kane",
  5715. "LittleBigX110",
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(78, "kg"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/kane/front.svg",
  5723. extra: 978/899
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(2.1, "m"),
  5731. },
  5732. {
  5733. name: "Macro",
  5734. height: math.unit(1, "km"),
  5735. default: true
  5736. },
  5737. ]
  5738. )
  5739. };
  5740. characterMakers["Tegon"] = () => {
  5741. return makeCharacter(
  5742. "Tegon",
  5743. "TegonDragon",
  5744. {
  5745. front: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(200, "kg"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/tegon/front.svg",
  5751. bottom: 0.01,
  5752. extra: 1 / (1 - 0.01)
  5753. }
  5754. },
  5755. },
  5756. [
  5757. {
  5758. name: "Micro",
  5759. height: math.unit(1, "inch")
  5760. },
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(6 + 3/12, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(300, "feet")
  5769. },
  5770. {
  5771. name: "Megamacro",
  5772. height: math.unit(69, "miles")
  5773. },
  5774. ]
  5775. )
  5776. };
  5777. characterMakers["Arcturax"] = () => {
  5778. return makeCharacter(
  5779. "Arcturax",
  5780. "Arcturax",
  5781. {
  5782. side: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(2304, "lbs"),
  5785. name: "Side",
  5786. image: {
  5787. source: "./media/characters/arcturax/side.svg",
  5788. extra: 790/376 * (1 / (1 - 0.01)),
  5789. bottom: 0.01
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Micro",
  5796. height: math.unit(2, "inch")
  5797. },
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(6, "feet")
  5801. },
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(39, "feet"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Megamacro",
  5809. height: math.unit(7, "miles")
  5810. },
  5811. ]
  5812. )
  5813. };
  5814. characterMakers["Sentri"] = () => {
  5815. return makeCharacter(
  5816. "Sentri",
  5817. "Sentri",
  5818. {
  5819. front: {
  5820. height: math.unit(6, "feet"),
  5821. weight: math.unit(50, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/sentri/front.svg",
  5825. extra: 1750/1570 * (1 / (1 - 0.025)),
  5826. bottom: 0.025
  5827. }
  5828. },
  5829. frontAlt: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(50, "lbs"),
  5832. name: "Front (Alt)",
  5833. image: {
  5834. source: "./media/characters/sentri/front-alt.svg",
  5835. extra: 1750/1570 * (1 / (1 - 0.025)),
  5836. bottom: 0.025
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(15, "feet"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Macro",
  5848. height: math.unit(2500, "feet")
  5849. }
  5850. ]
  5851. )
  5852. };
  5853. characterMakers["Corvin"] = () => {
  5854. return makeCharacter(
  5855. "Corvin",
  5856. "Sirffuzzylogik",
  5857. {
  5858. front: {
  5859. height: math.unit(5 + 8/12, "feet"),
  5860. weight: math.unit(130, "lbs"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/corvin/front.svg",
  5864. extra: 1803/1629
  5865. }
  5866. },
  5867. frontShirt: {
  5868. height: math.unit(5 + 8/12, "feet"),
  5869. weight: math.unit(130, "lbs"),
  5870. name: "Front (Shirt)",
  5871. image: {
  5872. source: "./media/characters/corvin/front-shirt.svg",
  5873. extra: 1803/1629
  5874. }
  5875. },
  5876. frontPoncho: {
  5877. height: math.unit(5 + 8/12, "feet"),
  5878. weight: math.unit(130, "lbs"),
  5879. name: "Front (Poncho)",
  5880. image: {
  5881. source: "./media/characters/corvin/front-poncho.svg",
  5882. extra: 1803/1629
  5883. }
  5884. },
  5885. side: {
  5886. height: math.unit(5 + 8/12, "feet"),
  5887. weight: math.unit(130, "lbs"),
  5888. name: "Side",
  5889. image: {
  5890. source: "./media/characters/corvin/side.svg",
  5891. extra: 1012/945
  5892. }
  5893. },
  5894. back: {
  5895. height: math.unit(5 + 8/12, "feet"),
  5896. weight: math.unit(130, "lbs"),
  5897. name: "Back",
  5898. image: {
  5899. source: "./media/characters/corvin/back.svg",
  5900. extra: 1803/1629
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Micro",
  5907. height: math.unit(3, "inches")
  5908. },
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(5 + 8/12, "feet")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(300, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Megamacro",
  5920. height: math.unit(500, "miles")
  5921. }
  5922. ]
  5923. )
  5924. };
  5925. characterMakers["Q"] = () => {
  5926. return makeCharacter(
  5927. "Q",
  5928. "Q Walf",
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(135, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/q/front.svg",
  5936. extra: 854/752 * (1 / (1 - 0.005)),
  5937. bottom: 0.005
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(130, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/q/back.svg",
  5946. extra: 854/752
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Macro",
  5953. height: math.unit(90, "feet"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Extra Macro",
  5958. height: math.unit(300, "feet"),
  5959. },
  5960. {
  5961. name: "BIG WALF",
  5962. height: math.unit(750, "feet"),
  5963. },
  5964. ]
  5965. )
  5966. };
  5967. characterMakers["Carley"] = () => {
  5968. return makeCharacter(
  5969. "Carley",
  5970. "QuakeYote",
  5971. {
  5972. front: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(150, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/carley/front.svg",
  5978. extra: 3927/3540 * (1 / (1 - 0.03)),
  5979. bottom: 0.03
  5980. }
  5981. }
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(6 + 3/12, "feet")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(185, "feet"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(8, "miles"),
  5996. },
  5997. ]
  5998. )
  5999. };
  6000. characterMakers["Citrine"] = () => {
  6001. return makeCharacter(
  6002. "Citrine",
  6003. "thunderstrike23",
  6004. {
  6005. front: {
  6006. height: math.unit(3, "feet"),
  6007. weight: math.unit(28, "lbs"),
  6008. name: "Front",
  6009. image: {
  6010. source: "./media/characters/citrine/front.svg"
  6011. }
  6012. }
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(3, "feet")
  6018. }
  6019. ]
  6020. )
  6021. };
  6022. characterMakers["Aura Starwind"] = () => {
  6023. return makeCharacter(
  6024. "Aura Starwind",
  6025. "StrikeVixen",
  6026. {
  6027. front: {
  6028. height: math.unit(14, "feet"),
  6029. weight: math.unit(1450, "kg"),
  6030. name: "Front",
  6031. image: {
  6032. source: "./media/characters/aura-starwind/front.svg",
  6033. extra: 1455/1335
  6034. }
  6035. },
  6036. side: {
  6037. height: math.unit(14, "feet"),
  6038. weight: math.unit(1450, "kg"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/aura-starwind/side.svg",
  6042. extra: 1654/1497
  6043. }
  6044. },
  6045. taur: {
  6046. height: math.unit(18, "feet"),
  6047. weight: math.unit(5500, "kg"),
  6048. name: "Taur",
  6049. image: {
  6050. source: "./media/characters/aura-starwind/taur.svg",
  6051. extra: 1760/1650
  6052. }
  6053. },
  6054. feral: {
  6055. height: math.unit(46, "feet"),
  6056. weight: math.unit(25000, "kg"),
  6057. name: "Feral",
  6058. image: {
  6059. source: "./media/characters/aura-starwind/feral.svg"
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(14, "feet")
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(50, "meters")
  6071. },
  6072. {
  6073. name: "Megamacro",
  6074. height: math.unit(5000, "meters")
  6075. },
  6076. {
  6077. name: "Gigamacro",
  6078. height: math.unit(100000, "kilometers")
  6079. },
  6080. ]
  6081. )
  6082. };
  6083. characterMakers["Rivet"] = () => {
  6084. return makeCharacter(
  6085. "Rivet",
  6086. "Vonadi",
  6087. {
  6088. front: {
  6089. height: math.unit(2 + 7/12, "feet"),
  6090. weight: math.unit(32, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/rivet/front.svg",
  6094. extra: 1716/1658 * (1 / (1 - 0.03)),
  6095. bottom: 0.03
  6096. }
  6097. },
  6098. foot: {
  6099. height: math.unit(0.551, "feet"),
  6100. name: "Rivet's Foot",
  6101. image: {
  6102. source: "./media/characters/rivet/foot.svg"
  6103. },
  6104. rename: true
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Micro",
  6110. height: math.unit(1.5, "inches"),
  6111. },
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(2 + 7/12, "feet"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(85, "feet")
  6120. },
  6121. {
  6122. name: "Megamacro",
  6123. height: math.unit(2.2, "km")
  6124. }
  6125. ]
  6126. )
  6127. };
  6128. characterMakers["Coffee"] = () => {
  6129. return makeCharacter(
  6130. "Coffee",
  6131. "CoffeeDoggo",
  6132. {
  6133. front: {
  6134. height: math.unit(5 + 9/12, "feet"),
  6135. weight: math.unit(150, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/coffee/front.svg",
  6139. extra: 3666/3032 * (1 / (1 - 0.04)),
  6140. bottom: 0.04
  6141. }
  6142. }
  6143. },
  6144. [
  6145. {
  6146. name: "Micro",
  6147. height: math.unit(2, "inches"),
  6148. },
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(5 + 9/12, "feet"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Macro",
  6156. height: math.unit(800, "feet")
  6157. },
  6158. {
  6159. name: "Megamacro",
  6160. height: math.unit(25, "miles")
  6161. }
  6162. ]
  6163. )
  6164. };
  6165. characterMakers["Chari-Gal"] = () => {
  6166. return makeCharacter(
  6167. "Chari-Gal",
  6168. "Knoem",
  6169. {
  6170. front: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(200, "lbs"),
  6173. name: "Front",
  6174. image: {
  6175. source: "./media/characters/chari-gal/front.svg",
  6176. extra: 1568/1385 * (1 / (1 - 0.047)),
  6177. bottom: 0.047
  6178. }
  6179. },
  6180. gigantamax: {
  6181. height: math.unit(6*16, "feet"),
  6182. weight: math.unit(200*16*16*16, "lbs"),
  6183. name: "Gigantamax",
  6184. image: {
  6185. source: "./media/characters/chari-gal/gigantamax.svg",
  6186. extra: 1124/888 * (1 / (1 - 0.03)),
  6187. bottom: 0.03
  6188. }
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(5 + 7/12, "feet")
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(200, "feet"),
  6199. default: true
  6200. }
  6201. ]
  6202. )
  6203. };
  6204. characterMakers["Nova"] = () => {
  6205. return makeCharacter(
  6206. "Nova",
  6207. "CoffeeDoggo",
  6208. {
  6209. front: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(150, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/nova/front.svg",
  6215. extra: 5000/4722 * (1 / (1 - 0.02)),
  6216. bottom: 0.02
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Micro-",
  6223. height: math.unit(0.8, "inches")
  6224. },
  6225. {
  6226. name: "Micro",
  6227. height: math.unit(2, "inches"),
  6228. normal: true
  6229. },
  6230. ]
  6231. )
  6232. };
  6233. characterMakers["Argent"] = () => {
  6234. return makeCharacter(
  6235. "Argent",
  6236. "ArgentVZ",
  6237. {
  6238. front: {
  6239. height: math.unit(3 + 1/12, "feet"),
  6240. weight: math.unit(21.7, "lbs"),
  6241. name: "Front",
  6242. image: {
  6243. source: "./media/characters/argent/front.svg",
  6244. extra: 1565/1416 * (1 / (1 - 0.01)),
  6245. bottom: 0.01
  6246. }
  6247. }
  6248. },
  6249. [
  6250. {
  6251. name: "Micro",
  6252. height: math.unit(2, "inches")
  6253. },
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(3 + 1/12, "feet"),
  6257. normal: true
  6258. },
  6259. {
  6260. name: "Macro",
  6261. height: math.unit(120, "feet")
  6262. },
  6263. ]
  6264. )
  6265. };
  6266. characterMakers["Mira al-Cul"] = () => {
  6267. return makeCharacter(
  6268. "Mira al-Cul",
  6269. "Mariokartsonicriders",
  6270. {
  6271. lamp: {
  6272. height: math.unit(7 * 1559 / 989, "feet"),
  6273. name: "Magic Lamp",
  6274. image: {
  6275. source: "./media/characters/mira-al-cul/lamp.svg",
  6276. extra: 1617/1559
  6277. }
  6278. },
  6279. front: {
  6280. height: math.unit(7, "feet"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/mira-al-cul/front.svg",
  6284. extra: 1044/990
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Heavily Restricted",
  6291. height: math.unit(7 * 1559 / 989, "feet")
  6292. },
  6293. {
  6294. name: "Freshly Freed",
  6295. height: math.unit(50 * 1559 / 989, "feet")
  6296. },
  6297. {
  6298. name: "World Encompassing",
  6299. height: math.unit(10000 * 1559 / 989, "miles")
  6300. },
  6301. {
  6302. name: "Galactic",
  6303. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6304. },
  6305. {
  6306. name: "Palmed Universe",
  6307. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6308. default: true
  6309. },
  6310. {
  6311. name: "Multiversal Matriarch",
  6312. height: math.unit(8.87e10, "yottameters")
  6313. },
  6314. {
  6315. name: "Void Mother",
  6316. height: math.unit(3.14e110, "yottaparsecs")
  6317. },
  6318. ]
  6319. )
  6320. };
  6321. characterMakers["Kuro-shi Uchū"] = () => {
  6322. return makeCharacter(
  6323. "Kuro-shi Uchū",
  6324. "Dragon Shark",
  6325. {
  6326. front: {
  6327. height: math.unit(17 + 1/12, "feet"),
  6328. weight: math.unit(476.2*5, "lbs"),
  6329. name: "Front",
  6330. image: {
  6331. source: "./media/characters/kuro-shi-uchū/front.svg",
  6332. extra: 2329/1835 * (1 / (1 - 0.02)),
  6333. bottom: 0.02
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Micro",
  6340. height: math.unit(2, "inches")
  6341. },
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(12, "meters")
  6345. },
  6346. {
  6347. name: "Planetary",
  6348. height: math.unit(0.00929, "AU"),
  6349. default: true
  6350. },
  6351. {
  6352. name: "Universal",
  6353. height: math.unit(20, "gigaparsecs")
  6354. },
  6355. ]
  6356. )
  6357. };
  6358. characterMakers["Katherine"] = () => {
  6359. return makeCharacter(
  6360. "Katherine",
  6361. "chrisrules123",
  6362. {
  6363. front: {
  6364. height: math.unit(5 + 2/12, "feet"),
  6365. weight: math.unit(120, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/katherine/front.svg",
  6369. extra: 2075/1969
  6370. }
  6371. },
  6372. dress: {
  6373. height: math.unit(5 + 2/12, "feet"),
  6374. weight: math.unit(120, "lbs"),
  6375. name: "Dress",
  6376. image: {
  6377. source: "./media/characters/katherine/dress.svg",
  6378. extra: 2258/2064
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Micro",
  6385. height: math.unit(1, "inches"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(5 + 2/12, "feet")
  6391. },
  6392. {
  6393. name: "Macro",
  6394. height: math.unit(100, "meters")
  6395. },
  6396. {
  6397. name: "Megamacro",
  6398. height: math.unit(80, "miles")
  6399. },
  6400. ]
  6401. )
  6402. };
  6403. characterMakers["Yevis"] = () => {
  6404. return makeCharacter(
  6405. "Yevis",
  6406. "Mariokartsonicriders",
  6407. {
  6408. front: {
  6409. height: math.unit(7 + 8/12, "feet"),
  6410. weight: math.unit(250, "lbs"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/yevis/front.svg",
  6414. extra: 1938/1755
  6415. }
  6416. }
  6417. },
  6418. [
  6419. {
  6420. name: "Mortal",
  6421. height: math.unit(7 + 8/12, "feet")
  6422. },
  6423. {
  6424. name: "Battle",
  6425. height: math.unit(25 + 11/12, "feet")
  6426. },
  6427. {
  6428. name: "Wrath",
  6429. height: math.unit(1654 + 11/12, "feet")
  6430. },
  6431. {
  6432. name: "Planet Destroyer",
  6433. height: math.unit(12000, "miles")
  6434. },
  6435. {
  6436. name: "Galaxy Conqueror",
  6437. height: math.unit(1.45, "zettameters"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Universal War",
  6442. height: math.unit(184, "gigaparsecs")
  6443. },
  6444. {
  6445. name: "Eternity War",
  6446. height: math.unit(1.98e55, "yottaparsecs")
  6447. },
  6448. ]
  6449. )
  6450. };
  6451. characterMakers["Xavier"] = () => {
  6452. return makeCharacter(
  6453. "Xavier",
  6454. "zmaster587",
  6455. {
  6456. front: {
  6457. height: math.unit(5 + 8/12, "feet"),
  6458. weight: math.unit(63, "kg"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/xavier/front.svg",
  6462. extra: 944/883
  6463. }
  6464. },
  6465. frontStretch: {
  6466. height: math.unit(5 + 8/12, "feet"),
  6467. weight: math.unit(63, "kg"),
  6468. name: "Stretching",
  6469. image: {
  6470. source: "./media/characters/xavier/front-stretch.svg",
  6471. extra: 962/820
  6472. }
  6473. },
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(5 + 8/12, "feet")
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(100, "meters"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "McLargeHuge",
  6487. height: math.unit(10, "miles")
  6488. },
  6489. ]
  6490. )
  6491. };
  6492. characterMakers["Joshii"] = () => {
  6493. return makeCharacter(
  6494. "Joshii",
  6495. "DarkieTehJester",
  6496. {
  6497. front: {
  6498. height: math.unit(5 + 5/12, "feet"),
  6499. weight: math.unit(150, "lb"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/joshii/front.svg"
  6503. }
  6504. },
  6505. foot: {
  6506. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6507. name: "Foot",
  6508. image: {
  6509. source: "./media/characters/joshii/foot.svg"
  6510. }
  6511. },
  6512. },
  6513. [
  6514. {
  6515. name: "Micro",
  6516. height: math.unit(2, "inches")
  6517. },
  6518. {
  6519. name: "Normal",
  6520. height: math.unit(5 + 5/12, "feet"),
  6521. default: true
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(785, "feet")
  6526. },
  6527. {
  6528. name: "Megamacro",
  6529. height: math.unit(24.5, "miles")
  6530. },
  6531. ]
  6532. )
  6533. };
  6534. characterMakers["Goddess Elizabeth"] = () => {
  6535. return makeCharacter(
  6536. "Goddess Elizabeth",
  6537. "DarkieTehJester",
  6538. {
  6539. front: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(150, "lb"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/goddess-elizabeth/front.svg"
  6545. }
  6546. },
  6547. foot: {
  6548. height: math.unit(6 * 0.25436 / 2, "feet"),
  6549. name: "Foot",
  6550. image: {
  6551. source: "./media/characters/goddess-elizabeth/foot.svg"
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Micro",
  6558. height: math.unit(12, "feet")
  6559. },
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(80, "miles"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(15000, "parsecs")
  6568. },
  6569. ]
  6570. )
  6571. };
  6572. characterMakers["Kara"] = () => {
  6573. return makeCharacter(
  6574. "Kara",
  6575. "Vonadi",
  6576. {
  6577. front: {
  6578. height: math.unit(5 + 9/12, "feet"),
  6579. weight: math.unit(144, "lb"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/kara/front.svg"
  6583. }
  6584. },
  6585. feet: {
  6586. height: math.unit(6/6.765, "feet"),
  6587. name: "Kara's Feet",
  6588. rename: true,
  6589. image: {
  6590. source: "./media/characters/kara/feet.svg"
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(5 + 9/12, "feet")
  6598. },
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(174, "feet"),
  6602. default: true
  6603. },
  6604. ]
  6605. )
  6606. };
  6607. characterMakers["Tyrone"] = () => {
  6608. return makeCharacter(
  6609. "Tyrone",
  6610. "nanakisan",
  6611. {
  6612. front: {
  6613. height: math.unit(18, "feet"),
  6614. weight: math.unit(4050, "lb"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/tyrone/front.svg",
  6618. extra: 2520/2402 * (1 / (1 - 0.025)),
  6619. bottom: 0.025
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(18, "feet"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(300, "feet")
  6632. },
  6633. ]
  6634. )
  6635. };
  6636. characterMakers["Danny"] = () => {
  6637. return makeCharacter(
  6638. "Danny",
  6639. "danny_gryphon",
  6640. {
  6641. front: {
  6642. height: math.unit(7 + 8/12, "feet"),
  6643. weight: math.unit(120, "lb"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/danny/front.svg",
  6647. extra: 1490/1350
  6648. }
  6649. },
  6650. back: {
  6651. height: math.unit(7 + 8/12, "feet"),
  6652. weight: math.unit(120, "lb"),
  6653. name: "Back",
  6654. image: {
  6655. source: "./media/characters/danny/back.svg",
  6656. extra: 1490/1350
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(7 + 8/12, "feet"),
  6664. default: true
  6665. },
  6666. ]
  6667. )
  6668. };
  6669. characterMakers["Mallow"] = () => {
  6670. return makeCharacter(
  6671. "Mallow",
  6672. "Mallowchu",
  6673. {
  6674. front: {
  6675. height: math.unit(3.5, "inches"),
  6676. weight: math.unit(19, "grams"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/mallow/front.svg",
  6680. extra: 471/431
  6681. }
  6682. },
  6683. back: {
  6684. height: math.unit(3.5, "inches"),
  6685. weight: math.unit(19, "grams"),
  6686. name: "Back",
  6687. image: {
  6688. source: "./media/characters/mallow/back.svg",
  6689. extra: 471/431
  6690. }
  6691. },
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(3.5, "inches")
  6697. },
  6698. ]
  6699. )
  6700. };
  6701. characterMakers["Starry Aqua"] = () => {
  6702. return makeCharacter(
  6703. "Starry Aqua",
  6704. "StarryAqua",
  6705. {
  6706. front: {
  6707. height: math.unit(9, "feet"),
  6708. weight: math.unit(230, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/starry-aqua/front.svg"
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(9, "feet"),
  6716. weight: math.unit(230, "kg"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/starry-aqua/back.svg"
  6720. }
  6721. },
  6722. hand: {
  6723. height: math.unit(9 * 0.1168, "feet"),
  6724. name: "Hand",
  6725. image: {
  6726. source: "./media/characters/starry-aqua/hand.svg"
  6727. }
  6728. },
  6729. foot: {
  6730. height: math.unit(9 * 0.18, "feet"),
  6731. name: "Foot",
  6732. image: {
  6733. source: "./media/characters/starry-aqua/foot.svg"
  6734. }
  6735. }
  6736. },
  6737. [
  6738. {
  6739. name: "Micro",
  6740. height: math.unit(3, "inches")
  6741. },
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(9, "feet")
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(300, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Megamacro",
  6753. height: math.unit(3200, "feet")
  6754. }
  6755. ]
  6756. )
  6757. };
  6758. characterMakers["Luka"] = () => {
  6759. return makeCharacter(
  6760. "Luka",
  6761. "UmbraHusky",
  6762. {
  6763. front: {
  6764. height: math.unit(6, "feet"),
  6765. weight: math.unit(230, "lb"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/luka/front.svg",
  6769. extra: 1 / (1 - 0.025),
  6770. bottom: 0.025
  6771. }
  6772. },
  6773. },
  6774. [
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(12 + 8/12, "feet")
  6778. },
  6779. {
  6780. name: "Minimacro",
  6781. height: math.unit(20, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(250, "feet")
  6786. },
  6787. {
  6788. name: "Megamacro",
  6789. height: math.unit(5, "miles")
  6790. },
  6791. {
  6792. name: "Gigamacro",
  6793. height: math.unit(8000, "miles")
  6794. },
  6795. ]
  6796. )
  6797. };
  6798. characterMakers["Natalie Nightring"] = () => {
  6799. return makeCharacter(
  6800. "Natalie Nightring",
  6801. "NatEdgecomb",
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(150, "lb"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/natalie-nightring/front.svg",
  6809. extra: 1 / (1 - 0.06),
  6810. bottom: 0.06
  6811. }
  6812. },
  6813. },
  6814. [
  6815. {
  6816. name: "Uh Oh",
  6817. height: math.unit(0.1, "mm")
  6818. },
  6819. {
  6820. name: "Small",
  6821. height: math.unit(3, "inches")
  6822. },
  6823. {
  6824. name: "Human Scale",
  6825. height: math.unit(6, "feet")
  6826. },
  6827. {
  6828. name: "Librarian",
  6829. height: math.unit(50, "feet"),
  6830. default: true
  6831. },
  6832. {
  6833. name: "Immense",
  6834. height: math.unit(200, "miles")
  6835. },
  6836. ]
  6837. )
  6838. };
  6839. characterMakers["Danni Rosie"] = () => {
  6840. return makeCharacter(
  6841. "Danni Rosie",
  6842. "colwag",
  6843. {
  6844. front: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(180, "lbs"),
  6847. name: "Front",
  6848. image: {
  6849. source: "./media/characters/danni-rosie/front.svg",
  6850. extra: 1260/1128 * (1 / (1 - 0.022)),
  6851. bottom: 0.022
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Micro",
  6858. height: math.unit(2, "inches"),
  6859. default: true
  6860. },
  6861. ]
  6862. )
  6863. };
  6864. characterMakers["Samantha Kruse"] = () => {
  6865. return makeCharacter(
  6866. "Samantha Kruse",
  6867. "colwag",
  6868. {
  6869. front: {
  6870. height: math.unit(5 + 9/12, "feet"),
  6871. weight: math.unit(220, "lb"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/samantha-kruse/front.svg",
  6875. extra: (985 / 935) * (1 / (1 - 0.03)),
  6876. bottom: 0.03
  6877. }
  6878. },
  6879. frontUndressed: {
  6880. height: math.unit(5 + 9/12, "feet"),
  6881. weight: math.unit(220, "lb"),
  6882. name: "Front (Undressed)",
  6883. image: {
  6884. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6885. extra: (973 / 923) * (1 / (1 - 0.025)),
  6886. bottom: 0.025
  6887. }
  6888. },
  6889. fat: {
  6890. height: math.unit(5 + 9/12, "feet"),
  6891. weight: math.unit(900, "lb"),
  6892. name: "Front (Fat)",
  6893. image: {
  6894. source: "./media/characters/samantha-kruse/fat.svg",
  6895. extra: 2688/2561
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(5 + 9/12, "feet"),
  6903. default: true
  6904. }
  6905. ]
  6906. )
  6907. };
  6908. characterMakers["Amelia Rosie"] = () => {
  6909. return makeCharacter(
  6910. "Amelia Rosie",
  6911. "colwag",
  6912. {
  6913. back: {
  6914. height: math.unit(5 + 4/12, "feet"),
  6915. weight: math.unit(4963, "lb"),
  6916. name: "Back",
  6917. image: {
  6918. source: "./media/characters/amelia-rosie/back.svg",
  6919. extra: 1113/963 * (1 / (1 - 0.01)),
  6920. bottom: 0.01
  6921. }
  6922. },
  6923. },
  6924. [
  6925. {
  6926. name: "Level 0",
  6927. height: math.unit(5 + 4/12, "feet")
  6928. },
  6929. {
  6930. name: "Level 1",
  6931. height: math.unit(164597, "feet"),
  6932. default: true
  6933. },
  6934. {
  6935. name: "Level 2",
  6936. height: math.unit(956243, "miles")
  6937. },
  6938. {
  6939. name: "Level 3",
  6940. height: math.unit(29421709423, "miles")
  6941. },
  6942. {
  6943. name: "Level 4",
  6944. height: math.unit(154, "lightyears")
  6945. },
  6946. {
  6947. name: "Level 5",
  6948. height: math.unit(4738272, "lightyears")
  6949. },
  6950. {
  6951. name: "Level 6",
  6952. height: math.unit(145787152896, "lightyears")
  6953. },
  6954. ]
  6955. )
  6956. };
  6957. characterMakers["Rook Kitara"] = () => {
  6958. return makeCharacter(
  6959. "Rook Kitara",
  6960. "TailsHigh",
  6961. {
  6962. front: {
  6963. height: math.unit(5 + 11/12, "feet"),
  6964. weight: math.unit(65, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/rook-kitara/front.svg",
  6968. extra: 1347/1274 * (1 / (1 - 0.005)),
  6969. bottom: 0.005
  6970. }
  6971. },
  6972. },
  6973. [
  6974. {
  6975. name: "Totally Unfair",
  6976. height: math.unit(1.8, "mm")
  6977. },
  6978. {
  6979. name: "Lap Rookie",
  6980. height: math.unit(1.4, "feet")
  6981. },
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(5 + 11/12, "feet"),
  6985. default: true
  6986. },
  6987. {
  6988. name: "How Did This Happen",
  6989. height: math.unit(80, "miles")
  6990. }
  6991. ]
  6992. )
  6993. };
  6994. characterMakers["Pisces"] = () => {
  6995. return makeCharacter(
  6996. "Pisces",
  6997. "Pisces_Kelp",
  6998. {
  6999. front: {
  7000. height: math.unit(7, "feet"),
  7001. weight: math.unit(300, "lb"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/pisces/front.svg",
  7005. extra: 2255/2115 * (1 / (1 - 0.03)),
  7006. bottom: 0.03
  7007. }
  7008. },
  7009. back: {
  7010. height: math.unit(7, "feet"),
  7011. weight: math.unit(300, "lb"),
  7012. name: "Back",
  7013. image: {
  7014. source: "./media/characters/pisces/back.svg",
  7015. extra: 2146/2055 * (1 / (1 - 0.04)),
  7016. bottom: 0.04
  7017. }
  7018. },
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(7, "feet")
  7024. },
  7025. {
  7026. name: "Swimming Pool",
  7027. height: math.unit(12.2, "meters")
  7028. },
  7029. {
  7030. name: "Olympic Swimming Pool",
  7031. height: math.unit(56.3, "meters")
  7032. },
  7033. {
  7034. name: "Lake Superior",
  7035. height: math.unit(93900, "meters")
  7036. },
  7037. {
  7038. name: "Mediterranean Sea",
  7039. height: math.unit(644457, "meters")
  7040. },
  7041. {
  7042. name: "World's Oceans",
  7043. height: math.unit(4567491, "meters")
  7044. },
  7045. ]
  7046. )
  7047. };
  7048. characterMakers["Zelas"] = () => {
  7049. return makeCharacter(
  7050. "Zelas",
  7051. "Cirez",
  7052. {
  7053. front: {
  7054. height: math.unit(2.3, "meters"),
  7055. weight: math.unit(120, "kg"),
  7056. name: "Front",
  7057. image: {
  7058. source: "./media/characters/zelas/front.svg"
  7059. }
  7060. },
  7061. side: {
  7062. height: math.unit(2.3, "meters"),
  7063. weight: math.unit(120, "kg"),
  7064. name: "Side",
  7065. image: {
  7066. source: "./media/characters/zelas/side.svg"
  7067. }
  7068. },
  7069. back: {
  7070. height: math.unit(2.3, "meters"),
  7071. weight: math.unit(120, "kg"),
  7072. name: "Back",
  7073. image: {
  7074. source: "./media/characters/zelas/back.svg"
  7075. }
  7076. },
  7077. foot: {
  7078. height: math.unit(1.116, "feet"),
  7079. name: "Foot",
  7080. image: {
  7081. source: "./media/characters/zelas/foot.svg"
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(2.3, "meters")
  7089. },
  7090. {
  7091. name: "Macro",
  7092. height: math.unit(30, "meters"),
  7093. default: true
  7094. },
  7095. ]
  7096. )
  7097. };
  7098. characterMakers["Talbot"] = () => {
  7099. return makeCharacter(
  7100. "Talbot",
  7101. "Talbot",
  7102. {
  7103. front: {
  7104. height: math.unit(1, "inch"),
  7105. weight: math.unit(0.21, "grams"),
  7106. name: "Front",
  7107. image: {
  7108. source: "./media/characters/talbot/front.svg",
  7109. extra: 594/544
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Micro",
  7116. height: math.unit(1, "inch")
  7117. },
  7118. ]
  7119. )
  7120. };
  7121. characterMakers["Fliss"] = () => {
  7122. return makeCharacter(
  7123. "Fliss",
  7124. "Fliss",
  7125. {
  7126. front: {
  7127. height: math.unit(3 + 3/12, "feet"),
  7128. weight: math.unit(51.8, "lb"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/fliss/front.svg",
  7132. extra: 840/640
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Teeny Tiny",
  7139. height: math.unit(1, "mm")
  7140. },
  7141. {
  7142. name: "Small",
  7143. height: math.unit(1, "inch"),
  7144. default: true
  7145. },
  7146. {
  7147. name: "Standard Sylveon",
  7148. height: math.unit(3 + 3/12, "feet")
  7149. },
  7150. {
  7151. name: "Large Nuisance",
  7152. height: math.unit(33, "feet")
  7153. },
  7154. {
  7155. name: "City Filler",
  7156. height: math.unit(3000, "feet")
  7157. },
  7158. {
  7159. name: "New Horizon",
  7160. height: math.unit(6000, "miles")
  7161. },
  7162. ]
  7163. )
  7164. };
  7165. characterMakers["Fleta"] = () => {
  7166. return makeCharacter(
  7167. "Fleta",
  7168. "TheFleta",
  7169. {
  7170. front: {
  7171. height: math.unit(5, "cm"),
  7172. weight: math.unit(1.94, "g"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/fleta/front.svg",
  7176. extra: 835/803
  7177. }
  7178. },
  7179. back: {
  7180. height: math.unit(5, "cm"),
  7181. weight: math.unit(1.94, "g"),
  7182. name: "Back",
  7183. image: {
  7184. source: "./media/characters/fleta/back.svg",
  7185. extra: 835/803
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Micro",
  7192. height: math.unit(5, "cm"),
  7193. default: true
  7194. },
  7195. ]
  7196. )
  7197. };
  7198. characterMakers["Dominic"] = () => {
  7199. return makeCharacter(
  7200. "Dominic",
  7201. "HypoTheDerg",
  7202. {
  7203. front: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(225, "lb"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/dominic/front.svg",
  7209. extra: 1770/1620 * (1 / (1 - 0.025)),
  7210. bottom: 0.025
  7211. }
  7212. },
  7213. back: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(225, "lb"),
  7216. name: "Back",
  7217. image: {
  7218. source: "./media/characters/dominic/back.svg",
  7219. extra: 1745/1620 * (1 / (1 - 0.065)),
  7220. bottom: 0.065
  7221. }
  7222. },
  7223. },
  7224. [
  7225. {
  7226. name: "Nano",
  7227. height: math.unit(0.1, "mm")
  7228. },
  7229. {
  7230. name: "Micro-",
  7231. height: math.unit(1, "mm")
  7232. },
  7233. {
  7234. name: "Micro",
  7235. height: math.unit(4, "inches")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(6 + 4/12, "feet"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(115, "feet")
  7245. },
  7246. {
  7247. name: "Macro+",
  7248. height: math.unit(955, "feet")
  7249. },
  7250. {
  7251. name: "Megamacro",
  7252. height: math.unit(8990, "feet")
  7253. },
  7254. {
  7255. name: "Gigmacro",
  7256. height: math.unit(9310, "miles")
  7257. },
  7258. {
  7259. name: "Teramacro",
  7260. height: math.unit(1567005010, "miles")
  7261. },
  7262. {
  7263. name: "Examacro",
  7264. height: math.unit(1425, "parsecs")
  7265. },
  7266. ]
  7267. )
  7268. };
  7269. characterMakers["Major Colonel"] = () => {
  7270. return makeCharacter(
  7271. "Major Colonel",
  7272. "Major Colonel",
  7273. {
  7274. front: {
  7275. height: math.unit(400, "feet"),
  7276. weight: math.unit(44444444, "lb"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/major-colonel/front.svg"
  7280. }
  7281. },
  7282. back: {
  7283. height: math.unit(400, "feet"),
  7284. weight: math.unit(44444444, "lb"),
  7285. name: "Back",
  7286. image: {
  7287. source: "./media/characters/major-colonel/back.svg"
  7288. }
  7289. },
  7290. },
  7291. [
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(400, "feet"),
  7295. default: true
  7296. },
  7297. ]
  7298. )
  7299. };
  7300. characterMakers["Axel Lycan"] = () => {
  7301. return makeCharacter(
  7302. "Axel Lycan",
  7303. "AxelLycan",
  7304. {
  7305. front: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(120, "lb"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/axel-lycan/front.svg",
  7311. extra: 1 / (1 - 0.08),
  7312. bottom: 0.08
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Macro",
  7319. height: math.unit(1, "km")
  7320. },
  7321. ]
  7322. )
  7323. };
  7324. characterMakers["Vanrel (Hyena)"] = () => {
  7325. return makeCharacter(
  7326. "Vanrel (Hyena)",
  7327. "Vanrel",
  7328. {
  7329. front: {
  7330. height: math.unit(5 + 9/12, "feet"),
  7331. weight: math.unit(175, "lb"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/vanrel/front.svg",
  7335. extra: 1086/1010
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(5 + 9/12, "feet"),
  7343. default: true
  7344. },
  7345. ]
  7346. )
  7347. };
  7348. characterMakers["Abbott Absol"] = () => {
  7349. return makeCharacter(
  7350. "Abbott Absol",
  7351. "Abbott Absol",
  7352. {
  7353. front: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(103, "lb"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/abbott-absol/front.svg",
  7359. extra: 2010/1842
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Megamicro",
  7366. height: math.unit(0.1, "mm")
  7367. },
  7368. {
  7369. name: "Micro",
  7370. height: math.unit(1, "inch")
  7371. },
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(6, "feet"),
  7375. default: true
  7376. },
  7377. ]
  7378. )
  7379. };
  7380. characterMakers["Hector"] = () => {
  7381. return makeCharacter(
  7382. "Hector",
  7383. "LibragonSlvr",
  7384. {
  7385. front: {
  7386. height: math.unit(6, "feet"),
  7387. weight: math.unit(264, "lb"),
  7388. name: "Front",
  7389. image: {
  7390. source: "./media/characters/hector/front.svg",
  7391. extra: 2280/2130 * (1 / (1 - 0.07)),
  7392. bottom: 0.07
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(12.25, "foot"),
  7400. default: true
  7401. },
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(160, "feet")
  7405. },
  7406. ]
  7407. )
  7408. };
  7409. characterMakers["Sal"] = () => {
  7410. return makeCharacter(
  7411. "Sal",
  7412. "Bigdur",
  7413. {
  7414. front: {
  7415. height: math.unit(6, "feet"),
  7416. weight: math.unit(150, "lb"),
  7417. name: "Front",
  7418. image: {
  7419. source: "./media/characters/sal/front.svg",
  7420. extra: 1846/1699 * (1 / (1 - 0.04)),
  7421. bottom: 0.04
  7422. }
  7423. },
  7424. },
  7425. [
  7426. {
  7427. name: "Megamacro",
  7428. height: math.unit(10, "miles")
  7429. },
  7430. ]
  7431. )
  7432. };
  7433. characterMakers["Ranger"] = () => {
  7434. return makeCharacter(
  7435. "Ranger",
  7436. "Ranger",
  7437. {
  7438. front: {
  7439. height: math.unit(3, "meters"),
  7440. weight: math.unit(450, "kg"),
  7441. name: "front",
  7442. image: {
  7443. source: "./media/characters/ranger/front.svg",
  7444. extra: 2401/2243 * (1 / (1 - 0.05)),
  7445. bottom: 0.05
  7446. }
  7447. },
  7448. },
  7449. [
  7450. {
  7451. name: "Normal",
  7452. height: math.unit(3, "meters")
  7453. },
  7454. ]
  7455. )
  7456. };
  7457. characterMakers["Theresa"] = () => {
  7458. return makeCharacter(
  7459. "Theresa",
  7460. "Ranger",
  7461. {
  7462. front: {
  7463. height: math.unit(14, "feet"),
  7464. weight: math.unit(800, "kg"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/theresa/front.svg",
  7468. extra: 3575/3346 * (1 / (1 - 0.03)),
  7469. bottom: 0.03
  7470. }
  7471. },
  7472. },
  7473. [
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(14, "feet")
  7477. },
  7478. ]
  7479. )
  7480. };
  7481. characterMakers["Ine"] = () => {
  7482. return makeCharacter(
  7483. "Ine",
  7484. "Ranger",
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(3, "kg"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/ine/front.svg",
  7492. extra: 678/539 * (1 / (1 - 0.023)),
  7493. bottom: 0.023
  7494. }
  7495. },
  7496. },
  7497. [
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(2.265, "feet")
  7501. },
  7502. ]
  7503. )
  7504. };
  7505. characterMakers["Vial"] = () => {
  7506. return makeCharacter(
  7507. "Vial",
  7508. "Ranger",
  7509. {
  7510. front: {
  7511. height: math.unit(5, "feet"),
  7512. weight: math.unit(30, "kg"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/vial/front.svg",
  7516. extra: 1365/1277 * (1 / (1 - 0.04)),
  7517. bottom: 0.04
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5, "feet")
  7525. },
  7526. ]
  7527. )
  7528. };
  7529. characterMakers["Rovoska"] = () => {
  7530. return makeCharacter(
  7531. "Rovoska",
  7532. "Rovoska",
  7533. {
  7534. side: {
  7535. height: math.unit(3.4, "meters"),
  7536. weight: math.unit(1000, "lb"),
  7537. name: "Side",
  7538. image: {
  7539. source: "./media/characters/rovoska/side.svg",
  7540. extra: 4403/1515
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(3.4, "meters")
  7548. },
  7549. ]
  7550. )
  7551. };
  7552. characterMakers["Gunner Rotthbauer"] = () => {
  7553. return makeCharacter(
  7554. "Gunner Rotthbauer",
  7555. "GunnerRott",
  7556. {
  7557. front: {
  7558. height: math.unit(8, "feet"),
  7559. weight: math.unit(315, "lb"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/gunner-rotthbauer/front.svg"
  7563. }
  7564. },
  7565. back: {
  7566. height: math.unit(8, "feet"),
  7567. weight: math.unit(315, "lb"),
  7568. name: "Back",
  7569. image: {
  7570. source: "./media/characters/gunner-rotthbauer/back.svg"
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Micro",
  7577. height: math.unit(3.5, "inches")
  7578. },
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(8, "feet")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(250, "feet")
  7586. },
  7587. {
  7588. name: "Megamacro",
  7589. height: math.unit(1, "AU")
  7590. },
  7591. ]
  7592. )
  7593. };
  7594. characterMakers["Allatia"] = () => {
  7595. return makeCharacter(
  7596. "Allatia",
  7597. "ilikefurrystoo",
  7598. {
  7599. front: {
  7600. height: math.unit(5 + 5/12, "feet"),
  7601. weight: math.unit(140, "lb"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/allatia/front.svg",
  7605. extra: 1227/1180 * (1 / (1 - 0.027)),
  7606. bottom: 0.027
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(5 + 5/12, "feet")
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(250, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(8, "miles")
  7623. }
  7624. ]
  7625. )
  7626. };
  7627. characterMakers["Tene"] = () => {
  7628. return makeCharacter(
  7629. "Tene",
  7630. "TenebrisDrox",
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(120, "lb"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/tene/front.svg",
  7638. extra: 1728/1578 * (1 / (1 - 0.022)),
  7639. bottom: 0.022
  7640. }
  7641. },
  7642. stomping: {
  7643. height: math.unit(2.025, "meters"),
  7644. weight: math.unit(120, "lb"),
  7645. name: "Stomping",
  7646. image: {
  7647. source: "./media/characters/tene/stomping.svg",
  7648. extra: 938/873 * (1 / (1 - 0.01)),
  7649. bottom: 0.01
  7650. }
  7651. },
  7652. sitting: {
  7653. height: math.unit(1, "meter"),
  7654. weight: math.unit(120, "lb"),
  7655. name: "Sitting",
  7656. image: {
  7657. source: "./media/characters/tene/sitting.svg",
  7658. extra: 437/415 * (1 / (1 - 0.1)),
  7659. bottom: 0.1
  7660. }
  7661. },
  7662. feral: {
  7663. height: math.unit(3.9, "feet"),
  7664. weight: math.unit(250, "lb"),
  7665. name: "Feral",
  7666. image: {
  7667. source: "./media/characters/tene/feral.svg",
  7668. extra: 717/458 * (1 / (1 - 0.179)),
  7669. bottom: 0.179
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(6, "feet")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(300, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(5, "miles")
  7686. },
  7687. ]
  7688. )
  7689. };
  7690. characterMakers["Evander"] = () => {
  7691. return makeCharacter(
  7692. "Evander",
  7693. "KlezmerGryphon",
  7694. {
  7695. side: {
  7696. height: math.unit(6, "feet"),
  7697. name: "Side",
  7698. image: {
  7699. source: "./media/characters/evander/side.svg",
  7700. extra: 877/477
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(0.83, "meters")
  7708. },
  7709. ]
  7710. )
  7711. };
  7712. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7713. return makeCharacter(
  7714. "Ka'Tamra \"Spaz\" Ci'Karan",
  7715. "Spazman",
  7716. {
  7717. front: {
  7718. height: math.unit(12, "feet"),
  7719. weight: math.unit(1000, "lb"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7723. extra: 1762/1611
  7724. }
  7725. },
  7726. back: {
  7727. height: math.unit(12, "feet"),
  7728. weight: math.unit(1000, "lb"),
  7729. name: "Back",
  7730. image: {
  7731. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7732. extra: 1762/1611
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(12, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Kaiju",
  7744. height: math.unit(150, "feet")
  7745. },
  7746. ]
  7747. )
  7748. };
  7749. characterMakers["Zero Alurus"] = () => {
  7750. return makeCharacter(
  7751. "Zero Alurus",
  7752. "",
  7753. {
  7754. front: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(150, "lb"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/zero-alurus/front.svg"
  7760. }
  7761. },
  7762. back: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(150, "lb"),
  7765. name: "Back",
  7766. image: {
  7767. source: "./media/characters/zero-alurus/back.svg"
  7768. }
  7769. },
  7770. },
  7771. [
  7772. {
  7773. name: "Normal",
  7774. height: math.unit(5 + 10/12, "feet")
  7775. },
  7776. {
  7777. name: "Macro",
  7778. height: math.unit(60, "feet"),
  7779. default: true
  7780. },
  7781. {
  7782. name: "Macro+",
  7783. height: math.unit(450, "feet")
  7784. },
  7785. ]
  7786. )
  7787. };
  7788. characterMakers["Mega Shi"] = () => {
  7789. return makeCharacter(
  7790. "Mega Shi",
  7791. "MShi8027",
  7792. {
  7793. front: {
  7794. height: math.unit(6, "feet"),
  7795. weight: math.unit(200, "lb"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/mega-shi/front.svg",
  7799. extra: 1279/1250 * (1 / (1 - 0.02)),
  7800. bottom: 0.02
  7801. }
  7802. },
  7803. back: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(200, "lb"),
  7806. name: "Back",
  7807. image: {
  7808. source: "./media/characters/mega-shi/back.svg",
  7809. extra: 1279/1250 * (1 / (1 - 0.02)),
  7810. bottom: 0.02
  7811. }
  7812. },
  7813. },
  7814. [
  7815. {
  7816. name: "Micro",
  7817. height: math.unit(16 + 6/12, "feet")
  7818. },
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(660, "feet"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Megamacro",
  7826. height: math.unit(10, "miles")
  7827. },
  7828. {
  7829. name: "Interstellar",
  7830. height: math.unit(1e9, "miles")
  7831. },
  7832. {
  7833. name: "Travelling Universes",
  7834. height: math.unit(30e15, "parsecs")
  7835. },
  7836. ]
  7837. )
  7838. };
  7839. characterMakers["Odyssey"] = () => {
  7840. return makeCharacter(
  7841. "Odyssey",
  7842. "Freschlauhs",
  7843. {
  7844. front: {
  7845. height: math.unit(6, "feet"),
  7846. weight: math.unit(150, "lb"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/odyssey/front.svg",
  7850. extra: 1782/1582 * (1 / (1 - 0.01)),
  7851. bottom: 0.01
  7852. }
  7853. },
  7854. side: {
  7855. height: math.unit(5.6, "feet"),
  7856. weight: math.unit(140, "lb"),
  7857. name: "Side",
  7858. image: {
  7859. source: "./media/characters/odyssey/side.svg",
  7860. extra: 6462/5700
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(5 + 4/12, "feet")
  7868. },
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(1, "km")
  7872. },
  7873. {
  7874. name: "Megamacro",
  7875. height: math.unit(3000, "km")
  7876. },
  7877. {
  7878. name: "Gigamacro",
  7879. height: math.unit(1, "AU"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Omniversal",
  7884. height: math.unit(100e14, "lightyears")
  7885. },
  7886. ]
  7887. )
  7888. };
  7889. characterMakers["Mekuto"] = () => {
  7890. return makeCharacter(
  7891. "Mekuto",
  7892. "Mekuto",
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(300, "lb"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/mekuto/front.svg",
  7900. extra: 921/832 * (1 / (1 - 0.03)),
  7901. bottom: 0.03
  7902. }
  7903. },
  7904. hand: {
  7905. height: math.unit(6/10.24, "feet"),
  7906. name: "Hand",
  7907. image: {
  7908. source: "./media/characters/mekuto/hand.svg"
  7909. }
  7910. },
  7911. foot: {
  7912. height: math.unit(6/5.05, "feet"),
  7913. name: "Foot",
  7914. image: {
  7915. source: "./media/characters/mekuto/foot.svg"
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Minimicro",
  7922. height: math.unit(0.2, "inches")
  7923. },
  7924. {
  7925. name: "Micro",
  7926. height: math.unit(1.5, "inches")
  7927. },
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(5 + 11/12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Minimacro",
  7935. height: math.unit(17 + 9/12, "feet")
  7936. },
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(177.5, "feet")
  7940. },
  7941. {
  7942. name: "Megamacro",
  7943. height: math.unit(152, "miles")
  7944. },
  7945. ]
  7946. )
  7947. };
  7948. characterMakers["Dafydd Tomos"] = () => {
  7949. return makeCharacter(
  7950. "Dafydd Tomos",
  7951. "SolarfoxArt",
  7952. {
  7953. front: {
  7954. height: math.unit(6.5, "inches"),
  7955. weight: math.unit(13, "oz"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/dafydd-tomos/front.svg",
  7959. extra: 2990/2603 * (1 / (1 - 0.03)),
  7960. bottom: 0.03
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(6.5, "inches"),
  7968. default: true
  7969. },
  7970. ]
  7971. )
  7972. };
  7973. characterMakers["Splinter"] = () => {
  7974. return makeCharacter(
  7975. "Splinter",
  7976. "SirSplinter",
  7977. {
  7978. front: {
  7979. height: math.unit(6, "feet"),
  7980. weight: math.unit(150, "lb"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/splinter/front.svg",
  7984. extra: 2990/2882 * (1 / (1 - 0.04)),
  7985. bottom: 0.04
  7986. }
  7987. },
  7988. back: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(150, "lb"),
  7991. name: "Back",
  7992. image: {
  7993. source: "./media/characters/splinter/back.svg",
  7994. extra: 2990/2882 * (1 / (1 - 0.04)),
  7995. bottom: 0.04
  7996. }
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(6, "feet")
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(230, "meters"),
  8007. default: true
  8008. },
  8009. ]
  8010. )
  8011. };
  8012. characterMakers["SnowGabumon"] = () => {
  8013. return makeCharacter(
  8014. "SnowGabumon",
  8015. "SnowGabumon",
  8016. {
  8017. front: {
  8018. height: math.unit(4 + 10/12, "feet"),
  8019. weight: math.unit(480, "lb"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/snow-gabumon/front.svg",
  8023. extra: 1140/963 * (1 / (1 - 0.058)),
  8024. bottom: 0.058
  8025. }
  8026. },
  8027. back: {
  8028. height: math.unit(4 + 10/12, "feet"),
  8029. weight: math.unit(480, "lb"),
  8030. name: "Back",
  8031. image: {
  8032. source: "./media/characters/snow-gabumon/back.svg",
  8033. extra: 1115/962 * (1 / (1 - 0.041)),
  8034. bottom: 0.041
  8035. }
  8036. },
  8037. frontUndresed: {
  8038. height: math.unit(4 + 10/12, "feet"),
  8039. weight: math.unit(480, "lb"),
  8040. name: "Front (Undressed)",
  8041. image: {
  8042. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8043. extra: 1061/960 * (1 / (1 - 0.045)),
  8044. bottom: 0.045
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Micro",
  8051. height: math.unit(1, "inch")
  8052. },
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(4 + 10/12, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(200, "feet")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(120, "miles")
  8065. },
  8066. {
  8067. name: "Gigamacro",
  8068. height: math.unit(9800, "miles")
  8069. },
  8070. ]
  8071. )
  8072. };
  8073. characterMakers["Moody"] = () => {
  8074. return makeCharacter(
  8075. "Moody",
  8076. "MoodysterDog",
  8077. {
  8078. front: {
  8079. height: math.unit(1.7, "meters"),
  8080. weight: math.unit(140, "lb"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/moody/front.svg",
  8084. extra: 3226/3007 * (1 / (1 - 0.087)),
  8085. bottom: 0.087
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Micro",
  8092. height: math.unit(1, "mm")
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(1.7, "meters"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(80, "meters")
  8102. },
  8103. {
  8104. name: "Macro+",
  8105. height: math.unit(500, "meters")
  8106. },
  8107. ]
  8108. )
  8109. };
  8110. characterMakers["Zyas"] = () => {
  8111. return makeCharacter(
  8112. "Zyas",
  8113. "Delathar",
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(150, "lb"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/zyas/front.svg",
  8121. extra: 1180/1120 * (1 / (1 - 0.045)),
  8122. bottom: 0.045
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(10, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(500, "feet")
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(5, "miles")
  8139. },
  8140. {
  8141. name: "Teramacro",
  8142. height: math.unit(150000, "miles")
  8143. },
  8144. ]
  8145. )
  8146. };
  8147. characterMakers["Cuon"] = () => {
  8148. return makeCharacter(
  8149. "Cuon",
  8150. "CollieCuon",
  8151. {
  8152. front: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(150, "lb"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/cuon/front.svg",
  8158. extra: 1390/1320 * (1 / (1 - 0.008)),
  8159. bottom: 0.008
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(3, "inches")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(18 + 9/12, "feet"),
  8171. default: true
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(360, "feet")
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(360, "miles")
  8180. },
  8181. ]
  8182. )
  8183. };
  8184. characterMakers["Nyanuxk"] = () => {
  8185. return makeCharacter(
  8186. "Nyanuxk",
  8187. "Nyanuxk",
  8188. {
  8189. front: {
  8190. height: math.unit(2.4, "meters"),
  8191. weight: math.unit(70, "kg"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/nyanuxk/front.svg",
  8195. extra: 1172/1084 * (1 / (1 - 0.065)),
  8196. bottom: 0.065
  8197. }
  8198. },
  8199. side: {
  8200. height: math.unit(2.4, "meters"),
  8201. weight: math.unit(70, "kg"),
  8202. name: "Side",
  8203. image: {
  8204. source: "./media/characters/nyanuxk/side.svg",
  8205. extra: 1190/1132 * (1 / (1 - 0.007)),
  8206. bottom: 0.007
  8207. }
  8208. },
  8209. back: {
  8210. height: math.unit(2.4, "meters"),
  8211. weight: math.unit(70, "kg"),
  8212. name: "Back",
  8213. image: {
  8214. source: "./media/characters/nyanuxk/back.svg",
  8215. extra: 1200/1141 * (1 / (1 - 0.015)),
  8216. bottom: 0.015
  8217. }
  8218. },
  8219. foot: {
  8220. height: math.unit(0.52, "meters"),
  8221. name: "Foot",
  8222. image: {
  8223. source: "./media/characters/nyanuxk/foot.svg"
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Micro",
  8230. height: math.unit(2, "cm")
  8231. },
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(2.4, "meters"),
  8235. default: true
  8236. },
  8237. {
  8238. name: "Smaller Macro",
  8239. height: math.unit(120, "meters")
  8240. },
  8241. {
  8242. name: "Bigger Macro",
  8243. height: math.unit(1.2, "km")
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(15, "kilometers")
  8248. },
  8249. {
  8250. name: "Gigamacro",
  8251. height: math.unit(2000, "km")
  8252. },
  8253. {
  8254. name: "Teramacro",
  8255. height: math.unit(500000, "km")
  8256. },
  8257. ]
  8258. )
  8259. };
  8260. characterMakers["Ailbhe"] = () => {
  8261. return makeCharacter(
  8262. "Ailbhe",
  8263. "KlezmerGryphon",
  8264. {
  8265. side: {
  8266. height: math.unit(6, "feet"),
  8267. name: "Side",
  8268. image: {
  8269. source: "./media/characters/ailbhe/side.svg",
  8270. extra: 757/464 * (1 / (1 - 0.041)),
  8271. bottom: 0.041
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(1.07, "meters"),
  8279. default: true
  8280. },
  8281. ]
  8282. )
  8283. };
  8284. characterMakers["Zevulfius"] = () => {
  8285. return makeCharacter(
  8286. "Zevulfius",
  8287. "Nyanuxk",
  8288. {
  8289. front: {
  8290. height: math.unit(6, "feet"),
  8291. weight: math.unit(120, "kg"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/zevulfius/front.svg",
  8295. extra: 965/903
  8296. }
  8297. },
  8298. side: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(120, "kg"),
  8301. name: "Side",
  8302. image: {
  8303. source: "./media/characters/zevulfius/side.svg",
  8304. extra: 939/900
  8305. }
  8306. },
  8307. back: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(120, "kg"),
  8310. name: "Back",
  8311. image: {
  8312. source: "./media/characters/zevulfius/back.svg",
  8313. extra: 918/854 * (1 / (1 - 0.005)),
  8314. bottom: 0.005
  8315. }
  8316. },
  8317. foot: {
  8318. height: math.unit(6/3.72, "feet"),
  8319. name: "Foot",
  8320. image: {
  8321. source: "./media/characters/zevulfius/foot.svg"
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(750, "meters")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(20, "km"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Gigamacro",
  8337. height: math.unit(2000, "km")
  8338. },
  8339. {
  8340. name: "Teramacro",
  8341. height: math.unit(250000, "km")
  8342. },
  8343. ]
  8344. )
  8345. };
  8346. characterMakers["Rikes"] = () => {
  8347. return makeCharacter(
  8348. "Rikes",
  8349. "VeryLargeDog",
  8350. {
  8351. front: {
  8352. height: math.unit(100, "feet"),
  8353. weight: math.unit(350, "kg"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/rikes/front.svg",
  8357. extra: 1565/1483 * (1 / (1 - 0.017)),
  8358. bottom: 0.017
  8359. }
  8360. },
  8361. },
  8362. [
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(100, "feet"),
  8366. default: true
  8367. },
  8368. ]
  8369. )
  8370. };
  8371. characterMakers["Adam Silver-Mane"] = () => {
  8372. return makeCharacter(
  8373. "Adam Silver-Mane",
  8374. "Dragonknightadam",
  8375. {
  8376. anthro: {
  8377. height: math.unit(8, "feet"),
  8378. weight: math.unit(120, "kg"),
  8379. name: "Anthro",
  8380. image: {
  8381. source: "./media/characters/adam-silver-mane/anthro.svg",
  8382. extra: 5743/5339 * (1 / (1 - 0.07)),
  8383. bottom: 0.07
  8384. }
  8385. },
  8386. taur: {
  8387. height: math.unit(16, "feet"),
  8388. weight: math.unit(1500, "kg"),
  8389. name: "Taur",
  8390. image: {
  8391. source: "./media/characters/adam-silver-mane/taur.svg",
  8392. extra: 1713/1571 * (1 / (1 - 0.01)),
  8393. bottom: 0.01
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(8, "feet")
  8401. },
  8402. {
  8403. name: "Macro",
  8404. height: math.unit(800, "feet"),
  8405. default: true
  8406. },
  8407. {
  8408. name: "Macro+",
  8409. height: math.unit(8, "miles")
  8410. },
  8411. {
  8412. name: "Megamacro",
  8413. height: math.unit(160, "miles")
  8414. },
  8415. {
  8416. name: "Celestial",
  8417. height: math.unit(8e6, "miles")
  8418. },
  8419. {
  8420. name: "Celestial+",
  8421. height: math.unit(800000, "parsecs")
  8422. },
  8423. {
  8424. name: "Godly",
  8425. height: math.unit(800, "teraparsecs")
  8426. },
  8427. ]
  8428. )
  8429. };
  8430. characterMakers["Ky'owin"] = () => {
  8431. return makeCharacter(
  8432. "Ky'owin",
  8433. "Kyowin",
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(150, "lb"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/ky'owin/front.svg",
  8441. extra: 3888/3068 * (1 / (1 - 0.015)),
  8442. bottom: 0.015
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(6 + 8/12, "feet")
  8450. },
  8451. {
  8452. name: "Large",
  8453. height: math.unit(68, "feet")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(132, "feet")
  8458. },
  8459. {
  8460. name: "Macro+",
  8461. height: math.unit(340, "feet")
  8462. },
  8463. {
  8464. name: "Macro++",
  8465. height: math.unit(680, "feet"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Megamacro",
  8470. height: math.unit(1, "mile")
  8471. },
  8472. {
  8473. name: "Megamacro+",
  8474. height: math.unit(10, "miles")
  8475. },
  8476. ]
  8477. )
  8478. };
  8479. characterMakers["Mal"] = () => {
  8480. return makeCharacter(
  8481. "Mal",
  8482. "agrosarmadillo",
  8483. {
  8484. front: {
  8485. height: math.unit(4, "feet"),
  8486. weight: math.unit(50, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/mal/front.svg",
  8490. extra: 785/724 * (1 / (1 - 0.07)),
  8491. bottom: 0.07
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(4, "inches")
  8499. },
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(4, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(200, "feet")
  8508. },
  8509. ]
  8510. )
  8511. };
  8512. characterMakers["Jordan Deware"] = () => {
  8513. return makeCharacter(
  8514. "Jordan Deware",
  8515. "JordanDeware",
  8516. {
  8517. front: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(150, "lb"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/jordan-deware/front.svg",
  8523. extra: 1191/1012
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Nano",
  8530. height: math.unit(0.01, "mm")
  8531. },
  8532. {
  8533. name: "Minimicro",
  8534. height: math.unit(1, "mm")
  8535. },
  8536. {
  8537. name: "Micro",
  8538. height: math.unit(0.5, "inches")
  8539. },
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(4, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Minimacro",
  8547. height: math.unit(40, "meters")
  8548. },
  8549. {
  8550. name: "Small Macro",
  8551. height: math.unit(400, "meters")
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(4, "miles")
  8556. },
  8557. {
  8558. name: "Megamacro",
  8559. height: math.unit(40, "miles")
  8560. },
  8561. {
  8562. name: "Megamacro+",
  8563. height: math.unit(400, "miles")
  8564. },
  8565. {
  8566. name: "Gigamacro",
  8567. height: math.unit(400000, "miles")
  8568. },
  8569. ]
  8570. )
  8571. };
  8572. characterMakers["Kimiko"] = () => {
  8573. return makeCharacter(
  8574. "Kimiko",
  8575. "HypoTheDerg",
  8576. {
  8577. side: {
  8578. height: math.unit(6, "feet"),
  8579. weight: math.unit(150, "lb"),
  8580. name: "Side",
  8581. image: {
  8582. source: "./media/characters/kimiko/side.svg",
  8583. extra: 600/358
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(15, "feet")
  8591. },
  8592. {
  8593. name: "Macro",
  8594. height: math.unit(220, "feet")
  8595. },
  8596. {
  8597. name: "Macro+",
  8598. height: math.unit(1450, "feet")
  8599. },
  8600. {
  8601. name: "Megamacro",
  8602. height: math.unit(11500, "feet")
  8603. },
  8604. {
  8605. name: "Gigamacro",
  8606. height: math.unit(9500, "miles")
  8607. },
  8608. {
  8609. name: "Teramacro",
  8610. height: math.unit(2208005005, "miles")
  8611. },
  8612. {
  8613. name: "Examacro",
  8614. height: math.unit(2750, "parsecs")
  8615. },
  8616. {
  8617. name: "Zettamacro",
  8618. height: math.unit(101500, "parsecs")
  8619. },
  8620. ]
  8621. )
  8622. };
  8623. characterMakers["Andrew Sleepy"] = () => {
  8624. return makeCharacter(
  8625. "Andrew Sleepy",
  8626. "Proky",
  8627. {
  8628. front: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(70, "kg"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/andrew-sleepy/front.svg"
  8634. }
  8635. },
  8636. side: {
  8637. height: math.unit(6, "feet"),
  8638. weight: math.unit(70, "kg"),
  8639. name: "Side",
  8640. image: {
  8641. source: "./media/characters/andrew-sleepy/side.svg"
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Micro",
  8648. height: math.unit(1, "mm"),
  8649. default: true
  8650. },
  8651. ]
  8652. )
  8653. };
  8654. characterMakers["Judio"] = () => {
  8655. return makeCharacter(
  8656. "Judio",
  8657. "HypoTheDerg",
  8658. {
  8659. front: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(150, "lb"),
  8662. name: "Front",
  8663. image: {
  8664. source: "./media/characters/judio/front.svg",
  8665. extra: 1258/1110
  8666. }
  8667. },
  8668. },
  8669. [
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(5 + 6/12, "feet")
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(1000, "feet"),
  8677. default: true
  8678. },
  8679. {
  8680. name: "Megamacro",
  8681. height: math.unit(10, "miles")
  8682. },
  8683. ]
  8684. )
  8685. };
  8686. characterMakers["Nomaxice"] = () => {
  8687. return makeCharacter(
  8688. "Nomaxice",
  8689. "Nomaxice",
  8690. {
  8691. front: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(68, "kg"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/nomaxice/front.svg",
  8697. extra: 1498/1073 * (1 / (1 - 0.075)),
  8698. bottom: 0.075
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(8, "cm")
  8706. },
  8707. {
  8708. name: "Norm",
  8709. height: math.unit(1.82, "m")
  8710. },
  8711. {
  8712. name: "Big",
  8713. height: math.unit(8, "meters"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(18, "meters")
  8719. },
  8720. {
  8721. name: "Macro+",
  8722. height: math.unit(88, "meters")
  8723. },
  8724. ]
  8725. )
  8726. };
  8727. characterMakers["Dydros"] = () => {
  8728. return makeCharacter(
  8729. "Dydros",
  8730. "DatCyberDragon",
  8731. {
  8732. front: {
  8733. height: math.unit(12, "feet"),
  8734. weight: math.unit(1.5, "tons"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/dydros/front.svg",
  8738. extra: 863/800 * (1 / (1 - 0.015)),
  8739. bottom: 0.015
  8740. }
  8741. },
  8742. back: {
  8743. height: math.unit(12, "feet"),
  8744. weight: math.unit(1.5, "tons"),
  8745. name: "Back",
  8746. image: {
  8747. source: "./media/characters/dydros/back.svg",
  8748. extra: 900/843 * (1 / (1 - 0.005)),
  8749. bottom: 0.005
  8750. }
  8751. },
  8752. },
  8753. [
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(12, "feet"),
  8757. default: true
  8758. },
  8759. ]
  8760. )
  8761. };
  8762. characterMakers["Riggi"] = () => {
  8763. return makeCharacter(
  8764. "Riggi",
  8765. "Fyre_ace",
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(100, "kg"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/riggi/front.svg",
  8773. extra: 5787/5303
  8774. }
  8775. },
  8776. hyper: {
  8777. height: math.unit(6*5/3, "feet"),
  8778. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8779. name: "Hyper",
  8780. image: {
  8781. source: "./media/characters/riggi/hyper.svg",
  8782. extra: 3595/3485
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Small Macro",
  8789. height: math.unit(50, "feet")
  8790. },
  8791. {
  8792. name: "Default",
  8793. height: math.unit(200, "feet"),
  8794. default: true
  8795. },
  8796. {
  8797. name: "Loom",
  8798. height: math.unit(10000, "feet")
  8799. },
  8800. {
  8801. name: "Cruising Altitude",
  8802. height: math.unit(30000, "feet")
  8803. },
  8804. {
  8805. name: "Megamacro",
  8806. height: math.unit(100, "miles")
  8807. },
  8808. {
  8809. name: "Continent Sized",
  8810. height: math.unit(2800, "miles")
  8811. },
  8812. {
  8813. name: "Earth Sized",
  8814. height: math.unit(8000, "miles")
  8815. },
  8816. ]
  8817. )
  8818. };
  8819. characterMakers["Alexi"] = () => {
  8820. return makeCharacter(
  8821. "Alexi",
  8822. "AlexiWerewolf",
  8823. {
  8824. front: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(250, "lb"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/alexi/front.svg",
  8830. extra: 3483/3291 * (1 / (1 - 0.04)),
  8831. bottom: 0.04
  8832. }
  8833. },
  8834. back: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(250, "lb"),
  8837. name: "Back",
  8838. image: {
  8839. source: "./media/characters/alexi/back.svg",
  8840. extra: 3533/3356 * (1 / (1 - 0.021)),
  8841. bottom: 0.021
  8842. }
  8843. },
  8844. frontTransformed: {
  8845. height: math.unit(12.5, "feet"),
  8846. weight: math.unit(4000, "lb"),
  8847. name: "Front (Transformed)",
  8848. image: {
  8849. source: "./media/characters/alexi/front-transformed.svg",
  8850. extra: 5345/5100 * (1 / (1 - 0.03)),
  8851. bottom: 0.03
  8852. }
  8853. },
  8854. },
  8855. [
  8856. {
  8857. name: "Normal",
  8858. height: math.unit(3, "meters"),
  8859. default: true
  8860. },
  8861. {
  8862. name: "Minimacro",
  8863. height: math.unit(30, "meters")
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(500, "meters")
  8868. },
  8869. {
  8870. name: "Megamacro",
  8871. height: math.unit(9000, "km")
  8872. },
  8873. {
  8874. name: "Teramacro",
  8875. height: math.unit(384000, "km")
  8876. },
  8877. ]
  8878. )
  8879. };
  8880. characterMakers["Kayroo"] = () => {
  8881. return makeCharacter(
  8882. "Kayroo",
  8883. "Kayroo",
  8884. {
  8885. front: {
  8886. height: math.unit(6, "feet"),
  8887. weight: math.unit(150, "lb"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/kayroo/front.svg",
  8891. extra: 1153/1038 * (1 / (1 - 0.06)),
  8892. bottom: 0.06
  8893. }
  8894. },
  8895. foot: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(150, "lb"),
  8898. name: "Foot",
  8899. image: {
  8900. source: "./media/characters/kayroo/foot.svg"
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(8, "feet")
  8908. },
  8909. {
  8910. name: "Minimacro",
  8911. height: math.unit(250, "feet")
  8912. },
  8913. {
  8914. name: "Macro",
  8915. height: math.unit(2800, "feet")
  8916. },
  8917. {
  8918. name: "Megamacro",
  8919. height: math.unit(5200, "feet")
  8920. },
  8921. {
  8922. name: "Gigamacro",
  8923. height: math.unit(27000, "feet")
  8924. },
  8925. {
  8926. name: "Omega",
  8927. height: math.unit(45000, "feet")
  8928. },
  8929. ]
  8930. )
  8931. };
  8932. characterMakers["Rhys"] = () => {
  8933. return makeCharacter(
  8934. "Rhys",
  8935. "BigMountainCat",
  8936. {
  8937. front: {
  8938. height: math.unit(18, "feet"),
  8939. weight: math.unit(5800, "lb"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/rhys/front.svg",
  8943. extra: 3386/3090 * (1 / (1 - 0.07)),
  8944. bottom: 0.07
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(18, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Working Size",
  8956. height: math.unit(200, "feet")
  8957. },
  8958. {
  8959. name: "Demolition Size",
  8960. height: math.unit(2000, "feet")
  8961. },
  8962. {
  8963. name: "Maximum Licensed Size",
  8964. height: math.unit(5, "miles")
  8965. },
  8966. {
  8967. name: "Maximum Observed Size",
  8968. height: math.unit(10, "yottameters")
  8969. },
  8970. ]
  8971. )
  8972. };
  8973. characterMakers["Toto"] = () => {
  8974. return makeCharacter(
  8975. "Toto",
  8976. "Totoly_Toto",
  8977. {
  8978. front: {
  8979. height: math.unit(6, "feet"),
  8980. weight: math.unit(250, "lb"),
  8981. name: "Front",
  8982. image: {
  8983. source: "./media/characters/toto/front.svg",
  8984. exra: 527 / 479 * (1 / (1 - 0.05)),
  8985. bottom: 0.05
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Micro",
  8992. height: math.unit(3, "feet")
  8993. },
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(10, "feet")
  8997. },
  8998. {
  8999. name: "Macro",
  9000. height: math.unit(150, "feet"),
  9001. default: true
  9002. },
  9003. {
  9004. name: "Megamacro",
  9005. height: math.unit(1200, "feet")
  9006. },
  9007. ]
  9008. )
  9009. };
  9010. characterMakers["King"] = () => {
  9011. return makeCharacter(
  9012. "King",
  9013. "KingSizedLion",
  9014. {
  9015. back: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(150, "lb"),
  9018. name: "Back",
  9019. image: {
  9020. source: "./media/characters/king/back.svg"
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Micro",
  9027. height: math.unit(2, "inches")
  9028. },
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(8, "feet")
  9032. },
  9033. {
  9034. name: "Macro",
  9035. height: math.unit(200, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Megamacro",
  9040. height: math.unit(50, "miles")
  9041. },
  9042. ]
  9043. )
  9044. };
  9045. characterMakers["Cordite"] = () => {
  9046. return makeCharacter(
  9047. "Cordite",
  9048. "photonman2",
  9049. {
  9050. anthro: {
  9051. height: math.unit(6 + 5/12, "feet"),
  9052. weight: math.unit(280, "lb"),
  9053. name: "Anthro",
  9054. image: {
  9055. source: "./media/characters/cordite/anthro.svg",
  9056. extra: 1986/1905 * (1 / (1 - 0.025)),
  9057. bottom: 0.025
  9058. }
  9059. },
  9060. feral: {
  9061. height: math.unit(2, "feet"),
  9062. weight: math.unit(90, "lb"),
  9063. name: "Feral",
  9064. image: {
  9065. source: "./media/characters/cordite/feral.svg",
  9066. extra: 1260/755 * (1 / (1 - 0.05)),
  9067. bottom: 0.05
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(6 + 5/12, "feet")
  9075. },
  9076. ]
  9077. )
  9078. };
  9079. characterMakers["Pianostrong"] = () => {
  9080. return makeCharacter(
  9081. "Pianostrong",
  9082. "Pianostrong",
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(150, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/pianostrong/front.svg",
  9090. extra: 6577/6254 * (1 / (1 - 0.02)),
  9091. bottom: 0.02
  9092. }
  9093. },
  9094. side: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(150, "lb"),
  9097. name: "Side",
  9098. image: {
  9099. source: "./media/characters/pianostrong/side.svg",
  9100. extra: 6106/5730
  9101. }
  9102. },
  9103. back: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(150, "lb"),
  9106. name: "Back",
  9107. image: {
  9108. source: "./media/characters/pianostrong/back.svg",
  9109. extra: 6085/5733 * (1 / (1 - 0.01)),
  9110. bottom: 0.01
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(100, "feet")
  9118. },
  9119. {
  9120. name: "Macro+",
  9121. height: math.unit(300, "feet"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Macro++",
  9126. height: math.unit(1000, "feet")
  9127. },
  9128. ]
  9129. )
  9130. };
  9131. characterMakers["Kona"] = () => {
  9132. return makeCharacter(
  9133. "Kona",
  9134. "Konadh",
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(150, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/kona/front.svg",
  9142. extra: 2960/2629 * (1 / (1 - 0.005)),
  9143. bottom: 0.005
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(11 + 8/12, "feet")
  9151. },
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(850, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Macro+",
  9159. height: math.unit(1.5, "km"),
  9160. default: true
  9161. },
  9162. {
  9163. name: "Megamacro",
  9164. height: math.unit(80, "miles")
  9165. },
  9166. {
  9167. name: "Gigamacro",
  9168. height: math.unit(3500, "miles")
  9169. },
  9170. ]
  9171. )
  9172. };
  9173. characterMakers["Levi"] = () => {
  9174. return makeCharacter(
  9175. "Levi",
  9176. "LeviCurrie",
  9177. {
  9178. side: {
  9179. height: math.unit(1.9, "meters"),
  9180. weight: math.unit(326, "kg"),
  9181. name: "Side",
  9182. image: {
  9183. source: "./media/characters/levi/side.svg",
  9184. extra: 1704/1334 * (1 / (1 - 0.02)),
  9185. bottom: 0.02
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(1.9, "meters")
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(20, "meters")
  9197. },
  9198. {
  9199. name: "Macro+",
  9200. height: math.unit(200, "meters")
  9201. },
  9202. {
  9203. name: "Megamacro",
  9204. height: math.unit(2, "km")
  9205. },
  9206. {
  9207. name: "Megamacro+",
  9208. height: math.unit(20, "km")
  9209. },
  9210. {
  9211. name: "Gigamacro",
  9212. height: math.unit(2500, "km")
  9213. },
  9214. {
  9215. name: "Gigamacro+",
  9216. height: math.unit(120000, "km")
  9217. },
  9218. {
  9219. name: "Teramacro",
  9220. height: math.unit(7.77e6, "km")
  9221. },
  9222. ]
  9223. )
  9224. };
  9225. characterMakers["BMC"] = () => {
  9226. return makeCharacter(
  9227. "BMC",
  9228. "BigMountainCat",
  9229. {
  9230. front: {
  9231. height: math.unit(6 + 4/12, "feet"),
  9232. weight: math.unit(188, "lb"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/bmc/front.svg",
  9236. extra: 1067/1022 * (1 / (1 - 0.047)),
  9237. bottom: 0.047
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Human-sized",
  9244. height: math.unit(6 + 4/12, "feet")
  9245. },
  9246. {
  9247. name: "Small",
  9248. height: math.unit(250, "feet")
  9249. },
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(1250, "feet"),
  9253. default: true
  9254. },
  9255. {
  9256. name: "Good Day",
  9257. height: math.unit(88, "miles")
  9258. },
  9259. {
  9260. name: "Largest Measured Size",
  9261. height: math.unit(11.2e6, "lightyears")
  9262. },
  9263. ]
  9264. )
  9265. };
  9266. characterMakers["Sven the Kaiju"] = () => {
  9267. return makeCharacter(
  9268. "Sven the Kaiju",
  9269. "OfActionMan",
  9270. {
  9271. front: {
  9272. height: math.unit(20, "feet"),
  9273. weight: math.unit(2016, "kg"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/sven-the-kaiju/front.svg",
  9277. extra: 1479/1449 * (1 / (1 - 0.05)),
  9278. bottom: 0.05
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Fairy",
  9285. height: math.unit(6, "inches")
  9286. },
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(20, "feet"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Rampage",
  9294. height: math.unit(200, "feet")
  9295. },
  9296. ]
  9297. )
  9298. };
  9299. characterMakers["Marik"] = () => {
  9300. return makeCharacter(
  9301. "Marik",
  9302. "Acrarun",
  9303. {
  9304. front: {
  9305. height: math.unit(4, "meters"),
  9306. weight: math.unit(2, "tons"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/marik/front.svg",
  9310. extra: 1057/1003 * (1 / (1 - 0.08)),
  9311. bottom: 0.08
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(4, "meters"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(20, "meters")
  9324. },
  9325. {
  9326. name: "Megamacro",
  9327. height: math.unit(50, "km")
  9328. },
  9329. {
  9330. name: "Gigamacro",
  9331. height: math.unit(100, "km")
  9332. },
  9333. {
  9334. name: "Alpha Macro",
  9335. height: math.unit(7.88e7, "yottameters")
  9336. },
  9337. ]
  9338. )
  9339. };
  9340. characterMakers["Mel"] = () => {
  9341. return makeCharacter(
  9342. "Mel",
  9343. "SomedayNotSoon",
  9344. {
  9345. front: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(110, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/mel/front.svg",
  9351. extra: 736/617 * (1 / (1 - 0.017)),
  9352. bottom: 0.017
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Pico",
  9359. height: math.unit(3, "pm")
  9360. },
  9361. {
  9362. name: "Nano",
  9363. height: math.unit(3, "nm")
  9364. },
  9365. {
  9366. name: "Micro",
  9367. height: math.unit(0.3, "mm"),
  9368. default: true
  9369. },
  9370. {
  9371. name: "Micro+",
  9372. height: math.unit(3, "mm")
  9373. },
  9374. {
  9375. name: "Normal",
  9376. height: math.unit(5 + 10.5/12, "feet")
  9377. },
  9378. ]
  9379. )
  9380. };
  9381. characterMakers["Lykonous"] = () => {
  9382. return makeCharacter(
  9383. "Lykonous",
  9384. "Lykonous",
  9385. {
  9386. kaiju: {
  9387. height: math.unit(1.75, "meters"),
  9388. weight: math.unit(55, "kg"),
  9389. name: "Kaiju",
  9390. image: {
  9391. source: "./media/characters/lykonous/kaiju.svg",
  9392. extra: 1055/946 * (1 / (1 - 0.135)),
  9393. bottom: 0.135
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(2.5, "meters")
  9401. },
  9402. {
  9403. name: "Kaiju Dragon",
  9404. height: math.unit(60, "meters")
  9405. },
  9406. {
  9407. name: "Mega Kaiju",
  9408. height: math.unit(120, "km")
  9409. },
  9410. {
  9411. name: "Giga Kaiju",
  9412. height: math.unit(200, "megameters")
  9413. },
  9414. {
  9415. name: "Terra Kaiju",
  9416. height: math.unit(400, "gigameters")
  9417. },
  9418. {
  9419. name: "Kaiju Dragon God",
  9420. height: math.unit(13000, "exaparsecs")
  9421. },
  9422. ]
  9423. )
  9424. };
  9425. characterMakers["Blü"] = () => {
  9426. return makeCharacter(
  9427. "Blü",
  9428. "BluTheFagon",
  9429. {
  9430. front: {
  9431. height: math.unit(6, "feet"),
  9432. weight: math.unit(150, "lb"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/blü/front.svg",
  9436. extra: 1883/1564 * (1 / (1 - 0.031)),
  9437. bottom: 0.031
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(13, "feet"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Big Boi",
  9449. height: math.unit(150, "meters")
  9450. },
  9451. {
  9452. name: "Mini Stomper",
  9453. height: math.unit(300, "meters")
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(1000, "meters")
  9458. },
  9459. {
  9460. name: "Megamacro",
  9461. height: math.unit(11000, "meters")
  9462. },
  9463. {
  9464. name: "Gigamacro",
  9465. height: math.unit(11000, "km")
  9466. },
  9467. {
  9468. name: "Teramacro",
  9469. height: math.unit(420000, "km")
  9470. },
  9471. {
  9472. name: "Examacro",
  9473. height: math.unit(120, "parsecs")
  9474. },
  9475. {
  9476. name: "God Tho",
  9477. height: math.unit(98000000000, "parsecs")
  9478. },
  9479. ]
  9480. )
  9481. };
  9482. characterMakers["Scales"] = () => {
  9483. return makeCharacter(
  9484. "Scales",
  9485. "Scales",
  9486. {
  9487. taurFront: {
  9488. height: math.unit(6, "feet"),
  9489. weight: math.unit(200, "lb"),
  9490. name: "Taur (Front)",
  9491. image: {
  9492. source: "./media/characters/scales/taur-front.svg",
  9493. extra: 1 / (1 - 0.05),
  9494. bottom: 0.05
  9495. }
  9496. },
  9497. taurBack: {
  9498. height: math.unit(6, "feet"),
  9499. weight: math.unit(200, "lb"),
  9500. name: "Taur (Back)",
  9501. image: {
  9502. source: "./media/characters/scales/taur-back.svg",
  9503. extra: 1 / (1 - 0.08),
  9504. bottom: 0.08
  9505. }
  9506. },
  9507. anthro: {
  9508. height: math.unit(6*7/12, "feet"),
  9509. weight: math.unit(100, "lb"),
  9510. name: "Anthro",
  9511. image: {
  9512. source: "./media/characters/scales/anthro.svg",
  9513. extra: 1 / (1 - 0.06),
  9514. bottom: 0.06
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(12, "feet"),
  9522. default: true
  9523. },
  9524. ]
  9525. )
  9526. };
  9527. characterMakers["Koragos"] = () => {
  9528. return makeCharacter(
  9529. "Koragos",
  9530. "Koragos",
  9531. {
  9532. front: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(150, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/koragos/front.svg",
  9538. extra: 841/794 * (1 / (1 - 0.035)),
  9539. bottom: 0.035
  9540. }
  9541. },
  9542. back: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(150, "lb"),
  9545. name: "Back",
  9546. image: {
  9547. source: "./media/characters/koragos/back.svg",
  9548. extra: 841/810 * (1 / (1 - 0.022)),
  9549. bottom: 0.022
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(6 + 11/12, "feet")
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(490, "feet")
  9561. },
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(10, "miles")
  9565. },
  9566. {
  9567. name: "Gigamacro",
  9568. height: math.unit(50, "miles")
  9569. },
  9570. ]
  9571. )
  9572. };
  9573. characterMakers["Xylrem"] = () => {
  9574. return makeCharacter(
  9575. "Xylrem",
  9576. "",
  9577. {
  9578. front: {
  9579. height: math.unit(6, "feet"),
  9580. weight: math.unit(250, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/xylrem/front.svg",
  9584. extra: 3323/3050 * (1 / (1 - 0.065)),
  9585. bottom: 0.065
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(4, "feet")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(16, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(2720, "feet")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(25000, "miles")
  9606. },
  9607. ]
  9608. )
  9609. };
  9610. characterMakers["Ikideru"] = () => {
  9611. return makeCharacter(
  9612. "Ikideru",
  9613. "Ikideru",
  9614. {
  9615. front: {
  9616. height: math.unit(8, "feet"),
  9617. weight: math.unit(250, "kg"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/ikideru/front.svg",
  9621. extra: 930/870 * (1 / (1 - 0.087)),
  9622. bottom: 0.087
  9623. }
  9624. },
  9625. back: {
  9626. height: math.unit(8, "feet"),
  9627. weight: math.unit(250, "kg"),
  9628. name: "Back",
  9629. image: {
  9630. source: "./media/characters/ikideru/back.svg",
  9631. extra: 919/852 * (1 / (1 - 0.055)),
  9632. bottom: 0.055
  9633. }
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Rare",
  9639. height: math.unit(8, "feet"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Playful Loom",
  9644. height: math.unit(80, "feet")
  9645. },
  9646. {
  9647. name: "City Leaner",
  9648. height: math.unit(230, "feet")
  9649. },
  9650. {
  9651. name: "Megamacro",
  9652. height: math.unit(2500, "feet")
  9653. },
  9654. {
  9655. name: "Gigamacro",
  9656. height: math.unit(26400, "feet")
  9657. },
  9658. {
  9659. name: "Tectonic Shifter",
  9660. height: math.unit(1.7, "megameters")
  9661. },
  9662. {
  9663. name: "Planet Carer",
  9664. height: math.unit(21, "megameters")
  9665. },
  9666. {
  9667. name: "God",
  9668. height: math.unit(11157.22, "parsecs")
  9669. },
  9670. ]
  9671. )
  9672. };
  9673. function makeCharacters() {
  9674. const results = [];
  9675. results.push({
  9676. name: "Noir",
  9677. constructor: makeNoir
  9678. });
  9679. results.push({
  9680. name: "Okuri",
  9681. constructor: makeOkuri
  9682. });
  9683. results.push({
  9684. name: "Manny",
  9685. constructor: makeManny
  9686. });
  9687. results.push({
  9688. name: "Adake",
  9689. constructor: makeAdake
  9690. });
  9691. results.push({
  9692. name: "Elijah",
  9693. constructor: makeElijah
  9694. });
  9695. results.push({
  9696. name: "Rai",
  9697. constructor: makeRai
  9698. });
  9699. results.push({
  9700. name: "Jazzy",
  9701. constructor: makeJazzy
  9702. });
  9703. results.push({
  9704. name: "Flamm",
  9705. constructor: makeFlamm
  9706. });
  9707. results.push({
  9708. name: "Fory",
  9709. constructor: makeFory
  9710. });
  9711. results.push({
  9712. name: "Kurrikage",
  9713. constructor: makeKurrikage
  9714. });
  9715. results.push({
  9716. name: "Aigey",
  9717. constructor: makeAigey
  9718. });
  9719. results.push({
  9720. name: "Natasha",
  9721. constructor: makeNatasha
  9722. });
  9723. results.push({
  9724. name: "Malik",
  9725. constructor: makeMalik
  9726. });
  9727. results.push({
  9728. name: "Sefer",
  9729. constructor: makeSefer
  9730. });
  9731. Object.entries(characterMakers).forEach(([key, value]) => {
  9732. results.push({
  9733. name: key,
  9734. constructor: value
  9735. });
  9736. });
  9737. return results;
  9738. }