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

10150 строки
263 KiB

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