less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

8447 satır
218 KiB

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