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.
 
 
 

8466 líneas
219 KiB

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