less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

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