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.
 
 
 

10221 lines
265 KiB

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