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.
 
 
 

9413 wiersze
244 KiB

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