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.
 
 
 

12827 lines
336 KiB

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