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

12855 lines
336 KiB

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