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.
 
 
 

9727 lines
252 KiB

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