less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

10430 wiersze
271 KiB

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