less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

7694 line
198 KiB

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