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.
 
 
 

10433 lines
271 KiB

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