less copy protection, more size visualization
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

7089 lines
182 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsecs", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("lightyears", {
  7. definition: "9.461e15 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("AU", {
  11. definition: "149597870700 meters"
  12. })
  13. function makeCharacter(name, author, viewInfo, defaultSizes, defaultSize, extraInfo) {
  14. if (extraInfo === undefined) {
  15. extraInfo = {}
  16. }
  17. views = {};
  18. Object.entries(viewInfo).forEach(([key, value]) => {
  19. views[key] = {
  20. attributes: {
  21. height: {
  22. name: "Height",
  23. power: 1,
  24. type: "length",
  25. base: value.height
  26. }
  27. },
  28. image: value.image,
  29. name: value.name,
  30. info: value.info,
  31. rename: value.rename
  32. }
  33. if (value.weight) {
  34. views[key].attributes.weight = {
  35. name: "Mass",
  36. power: 3,
  37. type: "mass",
  38. base: value.weight
  39. };
  40. }
  41. });
  42. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  43. if (defaultSize) {
  44. entity.views[entity.defaultView].height = defaultSize;
  45. }
  46. return entity;
  47. }
  48. characterMakers["Fen"] = () => {
  49. return makeCharacter(
  50. "Fen",
  51. "chemicalcrux",
  52. {
  53. back: {
  54. height: math.unit(2.2428, "meter"),
  55. weight: math.unit(124.738, "kg"),
  56. name: "Back",
  57. image: {
  58. source: "./media/characters/fen/back.svg",
  59. extra: 1025/935
  60. },
  61. info: {
  62. description: {
  63. mode: "append",
  64. text: "\n\nHe is not currently looking at you."
  65. }
  66. }
  67. },
  68. full: {
  69. height: math.unit(1.34, "meter"),
  70. weight: math.unit(225, "kg"),
  71. name: "Full",
  72. image: {
  73. source: "./media/characters/fen/full.svg"
  74. },
  75. info: {
  76. description: {
  77. mode: "append",
  78. text: "\n\nMunch."
  79. }
  80. }
  81. }
  82. },
  83. [
  84. {
  85. name: "Normal",
  86. height: math.unit(2.2428, "meter")
  87. },
  88. {
  89. name: "Big",
  90. height: math.unit(12, "feet")
  91. },
  92. {
  93. name: "Macro",
  94. height: math.unit(100, "meter"),
  95. default: true,
  96. info: {
  97. description: {
  98. mode: "append",
  99. text: "\n\nTOO DAMN BIG"
  100. }
  101. }
  102. },
  103. {
  104. name: "Macro+",
  105. height: math.unit(1000, "meter")
  106. },
  107. {
  108. name: "Megamacro",
  109. height: math.unit(10, "miles")
  110. }
  111. ],
  112. math.unit(100, "meter"),
  113. {
  114. description: {
  115. title: "Bio",
  116. text: "Very furry. Sheds on everything."
  117. }
  118. }
  119. )
  120. };
  121. characterMakers["Sofia"] = () => {
  122. return makeCharacter(
  123. "Sofia",
  124. "ZakuraTech",
  125. {
  126. front: {
  127. height: math.unit(183, "cm"),
  128. weight: math.unit(80, "kg"),
  129. name: "Front",
  130. image: {
  131. source: "./media/characters/sofia/front.svg",
  132. bottom: 0.01,
  133. extra: 1 / (1 - 0.01)
  134. }
  135. },
  136. frontAlt: {
  137. height: math.unit(183, "cm"),
  138. weight: math.unit(80, "kg"),
  139. name: "Front (alt)",
  140. image: {
  141. source: "./media/characters/sofia/front-alt.svg"
  142. }
  143. },
  144. back: {
  145. height: math.unit(183, "cm"),
  146. weight: math.unit(80, "kg"),
  147. name: "Back",
  148. image: {
  149. source: "./media/characters/sofia/back.svg"
  150. }
  151. },
  152. },
  153. [
  154. {
  155. name: "Normal",
  156. height: math.unit(1.83, "meter")
  157. },
  158. {
  159. name: "Macro",
  160. height: math.unit(96, "feet")
  161. },
  162. {
  163. name: "Megamerger",
  164. height: math.unit(650, "feet")
  165. },
  166. ],
  167. math.unit(96, "feet")
  168. )
  169. };
  170. function makeMarch() {
  171. const views = {
  172. front: {
  173. attributes: {
  174. height: {
  175. name: "Height",
  176. power: 1,
  177. type: "length",
  178. base: math.unit(7, "feet")
  179. },
  180. weight: {
  181. name: "Weight",
  182. power: 3,
  183. type: "mass",
  184. base: math.unit(100, "kg")
  185. }
  186. },
  187. image: {
  188. source: "./media/characters/march/front.svg"
  189. },
  190. name: "Front"
  191. },
  192. foot: {
  193. attributes: {
  194. height: {
  195. name: "Height",
  196. power: 1,
  197. type: "length",
  198. base: math.unit(0.9, "feet")
  199. }
  200. },
  201. image: {
  202. source: "./media/characters/march/foot.svg"
  203. },
  204. name: "Foot"
  205. }
  206. };
  207. const entity = makeEntity({ name: "March", author: "March-Dragon" }, views, []);
  208. entity.sizes.push({
  209. name: "Normal",
  210. height: math.unit(7.9, "feet")
  211. });
  212. entity.sizes.push({
  213. name: "Macro",
  214. height: math.unit(220, "meters")
  215. });
  216. entity.sizes.push({
  217. name: "Megamacro",
  218. height: math.unit(2.98, "km")
  219. });
  220. entity.sizes.push({
  221. name: "Gigamacro",
  222. height: math.unit(15963, "km")
  223. });
  224. entity.sizes.push({
  225. name: "Teramacro",
  226. height: math.unit(2980000000, "kilometers")
  227. });
  228. entity.sizes.push({
  229. name: "Examacro",
  230. height: math.unit(250, "parsecs")
  231. });
  232. entity.views.front.height = math.unit(2.98, "km");
  233. return entity;
  234. }
  235. function makeNoir() {
  236. const views = {
  237. front: {
  238. attributes: {
  239. height: {
  240. name: "Height",
  241. power: 1,
  242. type: "length",
  243. base: math.unit(6, "feet")
  244. },
  245. weight: {
  246. name: "Weight",
  247. power: 3,
  248. type: "mass",
  249. base: math.unit(60, "kg")
  250. }
  251. },
  252. image: {
  253. source: "./media/characters/noir/front.svg",
  254. bottom: 0.01
  255. },
  256. name: "Front"
  257. }
  258. };
  259. const entity = makeEntity({ name: "Noir", author: "March-Dragon" }, views, []);
  260. entity.sizes.push({
  261. name: "Normal",
  262. height: math.unit(6.6, "feet")
  263. });
  264. entity.sizes.push({
  265. name: "Macro",
  266. height: math.unit(500, "feet")
  267. });
  268. entity.sizes.push({
  269. name: "Megamacro",
  270. height: math.unit(2.5, "km")
  271. });
  272. entity.sizes.push({
  273. name: "Gigamacro",
  274. height: math.unit(22500, "km")
  275. });
  276. entity.sizes.push({
  277. name: "Teramacro",
  278. height: math.unit(2500000000, "kilometers")
  279. });
  280. entity.sizes.push({
  281. name: "Examacro",
  282. height: math.unit(200, "parsecs")
  283. });
  284. entity.views.front.height = math.unit(2.5, "km");
  285. return entity;
  286. }
  287. function makeOkuri() {
  288. const views = {
  289. front: {
  290. attributes: {
  291. height: {
  292. name: "Height",
  293. power: 1,
  294. type: "length",
  295. base: math.unit(7, "feet")
  296. },
  297. weight: {
  298. name: "Weight",
  299. power: 3,
  300. type: "mass",
  301. base: math.unit(100, "kg")
  302. }
  303. },
  304. image: {
  305. source: "./media/characters/okuri/front.svg"
  306. },
  307. name: "Front"
  308. },
  309. back: {
  310. attributes: {
  311. height: {
  312. name: "Height",
  313. power: 1,
  314. type: "length",
  315. base: math.unit(7, "feet")
  316. },
  317. weight: {
  318. name: "Weight",
  319. power: 3,
  320. type: "mass",
  321. base: math.unit(100, "kg")
  322. }
  323. },
  324. image: {
  325. source: "./media/characters/okuri/back.svg"
  326. },
  327. name: "Back"
  328. }
  329. };
  330. const entity = makeEntity({ name: "Okuri", author: "OrionMechadragon" }, views, []);
  331. entity.views.front.height = math.unit(100, "miles");
  332. return entity;
  333. }
  334. function makeManny() {
  335. const views = {
  336. front: {
  337. attributes: {
  338. height: {
  339. name: "Height",
  340. power: 1,
  341. type: "length",
  342. base: math.unit(7, "feet")
  343. },
  344. weight: {
  345. name: "Weight",
  346. power: 3,
  347. type: "mass",
  348. base: math.unit(100, "kg")
  349. }
  350. },
  351. image: {
  352. source: "./media/characters/manny/front.svg"
  353. },
  354. name: "Front"
  355. },
  356. back: {
  357. attributes: {
  358. height: {
  359. name: "Height",
  360. power: 1,
  361. type: "length",
  362. base: math.unit(7, "feet")
  363. },
  364. weight: {
  365. name: "Weight",
  366. power: 3,
  367. type: "mass",
  368. base: math.unit(100, "kg")
  369. }
  370. },
  371. image: {
  372. source: "./media/characters/manny/back.svg"
  373. },
  374. name: "Back"
  375. }
  376. };
  377. const entity = makeEntity({ name: "Manny", author: "Dialuca01" }, views, []);
  378. entity.sizes.push({
  379. name: "Normal",
  380. height: math.unit(7, "feet")
  381. });
  382. entity.sizes.push({
  383. name: "Macro",
  384. height: math.unit(78, "feet")
  385. });
  386. entity.sizes.push({
  387. name: "Macro+",
  388. height: math.unit(300, "meters")
  389. });
  390. entity.sizes.push({
  391. name: "Macro++",
  392. height: math.unit(2400, "feet")
  393. });
  394. entity.sizes.push({
  395. name: "Megamacro",
  396. height: math.unit(5167, "meters")
  397. });
  398. entity.sizes.push({
  399. name: "Gigamacro",
  400. height: math.unit(41769, "miles")
  401. });
  402. entity.views.front.height = math.unit(78, "feet");
  403. return entity;
  404. }
  405. function makeAdake() {
  406. const views = {
  407. front: {
  408. attributes: {
  409. height: {
  410. name: "Height",
  411. power: 1,
  412. type: "length",
  413. base: math.unit(7, "feet")
  414. },
  415. weight: {
  416. name: "Weight",
  417. power: 3,
  418. type: "mass",
  419. base: math.unit(100, "kg")
  420. }
  421. },
  422. image: {
  423. source: "./media/characters/adake/front-1.svg"
  424. },
  425. name: "Front"
  426. },
  427. frontAlt: {
  428. attributes: {
  429. height: {
  430. name: "Height",
  431. power: 1,
  432. type: "length",
  433. base: math.unit(7, "feet")
  434. },
  435. weight: {
  436. name: "Weight",
  437. power: 3,
  438. type: "mass",
  439. base: math.unit(100, "kg")
  440. }
  441. },
  442. image: {
  443. source: "./media/characters/adake/front-2.svg",
  444. bottom: 0.005
  445. },
  446. name: "Front (Alt)"
  447. },
  448. back: {
  449. attributes: {
  450. height: {
  451. name: "Height",
  452. power: 1,
  453. type: "length",
  454. base: math.unit(7, "feet")
  455. },
  456. weight: {
  457. name: "Weight",
  458. power: 3,
  459. type: "mass",
  460. base: math.unit(100, "kg")
  461. }
  462. },
  463. image: {
  464. source: "./media/characters/adake/back.svg",
  465. },
  466. name: "Back"
  467. },
  468. kneel: {
  469. attributes: {
  470. height: {
  471. name: "Height",
  472. power: 1,
  473. type: "length",
  474. base: math.unit(5.385, "feet")
  475. },
  476. weight: {
  477. name: "Weight",
  478. power: 3,
  479. type: "mass",
  480. base: math.unit(100, "kg")
  481. }
  482. },
  483. image: {
  484. source: "./media/characters/adake/kneel.svg",
  485. bottom: 0.05
  486. },
  487. name: "Kneeling"
  488. },
  489. };
  490. const entity = makeEntity({ name: "Adake", author: "Dialuca01" }, views, []);
  491. entity.sizes.push({
  492. name: "Normal",
  493. height: math.unit(7, "feet")
  494. });
  495. entity.sizes.push({
  496. name: "Macro",
  497. height: math.unit(78, "feet")
  498. });
  499. entity.sizes.push({
  500. name: "Macro+",
  501. height: math.unit(300, "meters")
  502. });
  503. entity.sizes.push({
  504. name: "Macro++",
  505. height: math.unit(2400, "feet")
  506. });
  507. entity.sizes.push({
  508. name: "Megamacro",
  509. height: math.unit(5167, "meters")
  510. });
  511. entity.sizes.push({
  512. name: "Gigamacro",
  513. height: math.unit(41769, "miles")
  514. });
  515. entity.views.front.height = math.unit(78, "feet");
  516. return entity;
  517. }
  518. function makeElijah() {
  519. const views = {
  520. side: {
  521. attributes: {
  522. height: {
  523. name: "Height",
  524. power: 1,
  525. type: "length",
  526. base: math.unit(7, "feet")
  527. },
  528. weight: {
  529. name: "Weight",
  530. power: 3,
  531. type: "mass",
  532. base: math.unit(50, "kg")
  533. }
  534. },
  535. image: {
  536. source: "./media/characters/elijah/side.svg",
  537. bottom: 0.01
  538. },
  539. name: "Side"
  540. },
  541. foot: {
  542. attributes: {
  543. height: {
  544. name: "Height",
  545. power: 1,
  546. type: "length",
  547. base: math.unit(2, "feet")
  548. }
  549. },
  550. image: {
  551. source: "./media/characters/elijah/foot.svg",
  552. },
  553. name: "Foot"
  554. }
  555. };
  556. const entity = makeEntity({ name: "Elijah", author: "Elijah" }, views, []);
  557. entity.sizes.push({
  558. name: "Normal",
  559. height: math.unit(1.65, "meters")
  560. });
  561. entity.sizes.push({
  562. name: "Macro",
  563. height: math.unit(55, "meters")
  564. });
  565. entity.sizes.push({
  566. name: "Macro+",
  567. height: math.unit(105, "meters")
  568. });
  569. entity.views.side.height = math.unit(55, "meters");
  570. return entity;
  571. }
  572. function makeRai() {
  573. const views = {
  574. front: {
  575. attributes: {
  576. height: {
  577. name: "Height",
  578. power: 1,
  579. type: "length",
  580. base: math.unit(7, "feet")
  581. },
  582. weight: {
  583. name: "Weight",
  584. power: 3,
  585. type: "mass",
  586. base: math.unit(80, "kg")
  587. }
  588. },
  589. image: {
  590. source: "./media/characters/rai/front.svg"
  591. },
  592. name: "Front"
  593. },
  594. side: {
  595. attributes: {
  596. height: {
  597. name: "Height",
  598. power: 1,
  599. type: "length",
  600. base: math.unit(7, "feet")
  601. },
  602. weight: {
  603. name: "Weight",
  604. power: 3,
  605. type: "mass",
  606. base: math.unit(80, "kg")
  607. }
  608. },
  609. image: {
  610. source: "./media/characters/rai/side.svg"
  611. },
  612. name: "Side"
  613. },
  614. back: {
  615. attributes: {
  616. height: {
  617. name: "Height",
  618. power: 1,
  619. type: "length",
  620. base: math.unit(7, "feet")
  621. },
  622. weight: {
  623. name: "Weight",
  624. power: 3,
  625. type: "mass",
  626. base: math.unit(80, "kg")
  627. }
  628. },
  629. image: {
  630. source: "./media/characters/rai/back.svg"
  631. },
  632. name: "Back"
  633. }
  634. };
  635. const entity = makeEntity({ name: "Rai", author: "shadowblade945" }, views, []);
  636. entity.views.front.height = math.unit(302, "feet");
  637. return entity;
  638. }
  639. function makeJazzy() {
  640. const views = {
  641. front: {
  642. attributes: {
  643. height: {
  644. name: "Height",
  645. power: 1,
  646. type: "length",
  647. base: math.unit(7, "feet")
  648. },
  649. weight: {
  650. name: "Weight",
  651. power: 3,
  652. type: "mass",
  653. base: math.unit(80, "kg")
  654. }
  655. },
  656. image: {
  657. source: "./media/characters/jazzy/front.svg",
  658. bottom: 0.01
  659. },
  660. name: "Front"
  661. },
  662. back: {
  663. attributes: {
  664. height: {
  665. name: "Height",
  666. power: 1,
  667. type: "length",
  668. base: math.unit(7, "feet")
  669. },
  670. weight: {
  671. name: "Weight",
  672. power: 3,
  673. type: "mass",
  674. base: math.unit(80, "kg")
  675. }
  676. },
  677. image: {
  678. source: "./media/characters/jazzy/back.svg"
  679. },
  680. name: "Back"
  681. }
  682. };
  683. const entity = makeEntity({ name: "Jazzy", author: "Jazzywolf" }, views, []);
  684. entity.views.front.height = math.unit(216, "feet");
  685. return entity;
  686. }
  687. function makeFlamm() {
  688. const views = {
  689. front: {
  690. attributes: {
  691. height: {
  692. name: "Height",
  693. power: 1,
  694. type: "length",
  695. base: math.unit(7, "feet")
  696. },
  697. weight: {
  698. name: "Weight",
  699. power: 3,
  700. type: "mass",
  701. base: math.unit(80, "kg")
  702. }
  703. },
  704. image: {
  705. source: "./media/characters/flamm/front.svg"
  706. },
  707. name: "Front"
  708. }
  709. };
  710. const entity = makeEntity({ name: "Flamm", author: "Flamm" }, views, []);
  711. entity.sizes.push({
  712. name: "Normal",
  713. height: math.unit(9.5, "feet")
  714. });
  715. entity.sizes.push({
  716. name: "Macro",
  717. height: math.unit(200, "feet")
  718. });
  719. entity.views.front.height = math.unit(200, "feet");
  720. return entity;
  721. }
  722. function makeZephiro() {
  723. const views = {
  724. front: {
  725. attributes: {
  726. height: {
  727. name: "Height",
  728. power: 1,
  729. type: "length",
  730. base: math.unit(7, "feet")
  731. },
  732. weight: {
  733. name: "Weight",
  734. power: 3,
  735. type: "mass",
  736. base: math.unit(80, "kg")
  737. }
  738. },
  739. image: {
  740. source: "./media/characters/zephiro/front.svg"
  741. },
  742. name: "Front"
  743. },
  744. side: {
  745. attributes: {
  746. height: {
  747. name: "Height",
  748. power: 1,
  749. type: "length",
  750. base: math.unit(7, "feet")
  751. },
  752. weight: {
  753. name: "Weight",
  754. power: 3,
  755. type: "mass",
  756. base: math.unit(80, "kg")
  757. }
  758. },
  759. image: {
  760. source: "./media/characters/zephiro/side.svg"
  761. },
  762. name: "Side"
  763. },
  764. back: {
  765. attributes: {
  766. height: {
  767. name: "Height",
  768. power: 1,
  769. type: "length",
  770. base: math.unit(7, "feet")
  771. },
  772. weight: {
  773. name: "Weight",
  774. power: 3,
  775. type: "mass",
  776. base: math.unit(80, "kg")
  777. }
  778. },
  779. image: {
  780. source: "./media/characters/zephiro/back.svg"
  781. },
  782. name: "Back"
  783. }
  784. };
  785. const entity = makeEntity({ name: "Zephiro", author: "Zephiro" }, views, []);
  786. entity.views.front.height = math.unit(118, "feet");
  787. entity.sizes.push({
  788. name: "Micro",
  789. height: math.unit(3, "inches")
  790. });
  791. entity.sizes.push({
  792. name: "Normal",
  793. height: math.unit(5 + 3 / 12, "feet")
  794. });
  795. entity.sizes.push({
  796. name: "Macro",
  797. height: math.unit(118, "feet")
  798. });
  799. return entity;
  800. }
  801. function makeFory() {
  802. const views = {
  803. front: {
  804. attributes: {
  805. height: {
  806. name: "Height",
  807. power: 1,
  808. type: "length",
  809. base: math.unit(7, "feet")
  810. },
  811. weight: {
  812. name: "Weight",
  813. power: 3,
  814. type: "mass",
  815. base: math.unit(90, "kg")
  816. }
  817. },
  818. image: {
  819. source: "./media/characters/fory/front.svg"
  820. },
  821. name: "Front"
  822. }
  823. };
  824. const entity = makeEntity({ name: "Fory", author: "Manny" }, views, []);
  825. entity.sizes.push({
  826. name: "Normal",
  827. height: math.unit(5, "feet")
  828. });
  829. entity.sizes.push({
  830. name: "Macro",
  831. height: math.unit(50, "feet")
  832. });
  833. entity.views.front.height = math.unit(50, "feet");
  834. return entity;
  835. }
  836. function makeKurrikage() {
  837. const views = {
  838. front: {
  839. attributes: {
  840. height: {
  841. name: "Height",
  842. power: 1,
  843. type: "length",
  844. base: math.unit(7, "feet")
  845. },
  846. weight: {
  847. name: "Weight",
  848. power: 3,
  849. type: "mass",
  850. base: math.unit(90, "kg")
  851. }
  852. },
  853. image: {
  854. source: "./media/characters/kurrikage/front.svg"
  855. },
  856. name: "Front"
  857. },
  858. back: {
  859. attributes: {
  860. height: {
  861. name: "Height",
  862. power: 1,
  863. type: "length",
  864. base: math.unit(7, "feet")
  865. },
  866. weight: {
  867. name: "Weight",
  868. power: 3,
  869. type: "mass",
  870. base: math.unit(90, "kg")
  871. }
  872. },
  873. image: {
  874. source: "./media/characters/kurrikage/back.svg"
  875. },
  876. name: "Back"
  877. },
  878. paw: {
  879. attributes: {
  880. height: {
  881. name: "Height",
  882. power: 1,
  883. type: "length",
  884. base: math.unit(1.5, "feet")
  885. }
  886. },
  887. image: {
  888. source: "./media/characters/kurrikage/paw.svg"
  889. },
  890. name: "Paw"
  891. },
  892. staff: {
  893. attributes: {
  894. height: {
  895. name: "Height",
  896. power: 1,
  897. type: "length",
  898. base: math.unit(6.7, "feet")
  899. }
  900. },
  901. image: {
  902. source: "./media/characters/kurrikage/staff.svg"
  903. },
  904. name: "Staff"
  905. },
  906. peek: {
  907. attributes: {
  908. height: {
  909. name: "Height",
  910. power: 1,
  911. type: "length",
  912. base: math.unit(1.05, "feet")
  913. }
  914. },
  915. image: {
  916. source: "./media/characters/kurrikage/peek.svg",
  917. bottom: 0.08
  918. },
  919. name: "Peeking"
  920. }
  921. };
  922. const entity = makeEntity({ name: "Kurrikage", author: "Kurrikage" }, views, []);
  923. entity.views.front.height = math.unit(12, "feet");
  924. entity.sizes.push({
  925. name: "Normal",
  926. height: math.unit(12, "feet"),
  927. default: true
  928. });
  929. entity.sizes.push({
  930. name: "Big",
  931. height: math.unit(20, "feet")
  932. });
  933. entity.sizes.push({
  934. name: "Macro",
  935. height: math.unit(500, "feet")
  936. });
  937. entity.sizes.push({
  938. name: "Megamacro",
  939. height: math.unit(20, "miles")
  940. });
  941. return entity;
  942. }
  943. function makeShingo() {
  944. const views = {
  945. front: {
  946. attributes: {
  947. height: {
  948. name: "Height",
  949. power: 1,
  950. type: "length",
  951. base: math.unit(6, "feet")
  952. },
  953. weight: {
  954. name: "Weight",
  955. power: 3,
  956. type: "mass",
  957. base: math.unit(75, "kg")
  958. }
  959. },
  960. image: {
  961. source: "./media/characters/shingo/front.svg"
  962. },
  963. name: "Front"
  964. }
  965. };
  966. const entity = makeEntity({ name: "Shingo", author: "Threes" }, views, []);
  967. entity.sizes.push({
  968. name: "Micro",
  969. height: math.unit(4, "inches")
  970. });
  971. entity.sizes.push({
  972. name: "Normal",
  973. height: math.unit(6, "feet")
  974. });
  975. entity.sizes.push({
  976. name: "Macro",
  977. height: math.unit(108, "feet")
  978. });
  979. return entity;
  980. }
  981. function makeAigey() {
  982. const views = {
  983. side: {
  984. attributes: {
  985. height: {
  986. name: "Height",
  987. power: 1,
  988. type: "length",
  989. base: math.unit(6, "feet")
  990. },
  991. weight: {
  992. name: "Weight",
  993. power: 3,
  994. type: "mass",
  995. base: math.unit(75, "kg")
  996. }
  997. },
  998. image: {
  999. source: "./media/characters/aigey/side.svg"
  1000. },
  1001. name: "Side"
  1002. }
  1003. };
  1004. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  1005. entity.sizes.push({
  1006. name: "Macro",
  1007. height: math.unit(200, "feet")
  1008. });
  1009. entity.sizes.push({
  1010. name: "Megamacro",
  1011. height: math.unit(100, "miles")
  1012. });
  1013. entity.views[entity.defaultView].height = math.unit(200, "feet");
  1014. return entity;
  1015. }
  1016. function makeNatasha() {
  1017. const views = {
  1018. side: {
  1019. attributes: {
  1020. height: {
  1021. name: "Height",
  1022. power: 1,
  1023. type: "length",
  1024. base: math.unit(6, "feet")
  1025. },
  1026. weight: {
  1027. name: "Weight",
  1028. power: 3,
  1029. type: "mass",
  1030. base: math.unit(75, "kg")
  1031. }
  1032. },
  1033. image: {
  1034. source: "./media/characters/natasha/front.svg"
  1035. },
  1036. name: "Side"
  1037. }
  1038. };
  1039. const entity = makeEntity({ name: "Natasha", author: "Natasha" }, views, []);
  1040. entity.sizes.push({
  1041. name: "Normal",
  1042. height: math.unit(5 + 5 / 12, "feet")
  1043. });
  1044. entity.sizes.push({
  1045. name: "Large",
  1046. height: math.unit(12, "feet")
  1047. });
  1048. entity.sizes.push({
  1049. name: "Macro",
  1050. height: math.unit(100, "feet")
  1051. });
  1052. entity.sizes.push({
  1053. name: "Macro+",
  1054. height: math.unit(260, "feet")
  1055. });
  1056. entity.sizes.push({
  1057. name: "Macro++",
  1058. height: math.unit(1, "mile")
  1059. });
  1060. entity.views[entity.defaultView].height = math.unit(100, "feet");
  1061. return entity;
  1062. }
  1063. function makeMalik() {
  1064. const views = {
  1065. front: {
  1066. attributes: {
  1067. height: {
  1068. name: "Height",
  1069. power: 1,
  1070. type: "length",
  1071. base: math.unit(6, "feet")
  1072. },
  1073. weight: {
  1074. name: "Weight",
  1075. power: 3,
  1076. type: "mass",
  1077. base: math.unit(75, "kg")
  1078. }
  1079. },
  1080. image: {
  1081. source: "./media/characters/malik/front.svg"
  1082. },
  1083. name: "Front"
  1084. },
  1085. side: {
  1086. attributes: {
  1087. height: {
  1088. name: "Height",
  1089. power: 1,
  1090. type: "length",
  1091. base: math.unit(6, "feet")
  1092. },
  1093. weight: {
  1094. name: "Weight",
  1095. power: 3,
  1096. type: "mass",
  1097. base: math.unit(75, "kg")
  1098. }
  1099. },
  1100. image: {
  1101. extra: 1.1539,
  1102. source: "./media/characters/malik/side.svg"
  1103. },
  1104. name: "Side"
  1105. },
  1106. back: {
  1107. attributes: {
  1108. height: {
  1109. name: "Height",
  1110. power: 1,
  1111. type: "length",
  1112. base: math.unit(6, "feet")
  1113. },
  1114. weight: {
  1115. name: "Weight",
  1116. power: 3,
  1117. type: "mass",
  1118. base: math.unit(75, "kg")
  1119. }
  1120. },
  1121. image: {
  1122. source: "./media/characters/malik/back.svg"
  1123. },
  1124. name: "Back"
  1125. },
  1126. };
  1127. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  1128. entity.sizes.push({
  1129. name: "Macro",
  1130. height: math.unit(156, "feet")
  1131. });
  1132. entity.sizes.push({
  1133. name: "Macro+",
  1134. height: math.unit(1188, "feet")
  1135. });
  1136. entity.views[entity.defaultView].height = math.unit(156, "feet");
  1137. return entity;
  1138. }
  1139. function makeSefer() {
  1140. const views = {
  1141. front: {
  1142. attributes: {
  1143. height: {
  1144. name: "Height",
  1145. power: 1,
  1146. type: "length",
  1147. base: math.unit(6, "feet")
  1148. },
  1149. weight: {
  1150. name: "Weight",
  1151. power: 3,
  1152. type: "mass",
  1153. base: math.unit(75, "kg")
  1154. }
  1155. },
  1156. image: {
  1157. source: "./media/characters/sefer/front.svg"
  1158. },
  1159. name: "Front"
  1160. },
  1161. back: {
  1162. attributes: {
  1163. height: {
  1164. name: "Height",
  1165. power: 1,
  1166. type: "length",
  1167. base: math.unit(6, "feet")
  1168. },
  1169. weight: {
  1170. name: "Weight",
  1171. power: 3,
  1172. type: "mass",
  1173. base: math.unit(75, "kg")
  1174. }
  1175. },
  1176. image: {
  1177. source: "./media/characters/sefer/back.svg"
  1178. },
  1179. name: "Back"
  1180. },
  1181. };
  1182. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  1183. entity.views[entity.defaultView].height = math.unit(6, "feet");
  1184. return entity;
  1185. }
  1186. characterMakers["North"] = () => {
  1187. return makeCharacter(
  1188. "North",
  1189. "chemicalcrux",
  1190. {
  1191. body: {
  1192. height: math.unit(2.2428, "meter"),
  1193. weight: math.unit(124.738, "kg"),
  1194. name: "Body",
  1195. image: {
  1196. extra: 1225 / 1050,
  1197. source: "./media/characters/north/front.svg"
  1198. }
  1199. }
  1200. },
  1201. [
  1202. {
  1203. name: "Micro",
  1204. height: math.unit(4, "inches")
  1205. },
  1206. {
  1207. name: "Macro",
  1208. height: math.unit(63, "meters")
  1209. },
  1210. {
  1211. name: "Megamacro",
  1212. height: math.unit(101, "miles")
  1213. }
  1214. ],
  1215. math.unit(101, "miles")
  1216. )
  1217. };
  1218. characterMakers["Talan"] = () => {
  1219. return makeCharacter(
  1220. "Talan",
  1221. "talanstrider",
  1222. {
  1223. body: {
  1224. height: math.unit(2, "meter"),
  1225. weight: math.unit(70, "kg"),
  1226. name: "Body",
  1227. image: {
  1228. bottom: 0.02,
  1229. source: "./media/characters/talan/front.svg"
  1230. }
  1231. }
  1232. },
  1233. [
  1234. {
  1235. name: "Normal",
  1236. height: math.unit(4, "meters")
  1237. },
  1238. {
  1239. name: "Macro",
  1240. height: math.unit(100, "meters")
  1241. },
  1242. {
  1243. name: "Megamacro",
  1244. height: math.unit(2, "miles")
  1245. },
  1246. {
  1247. name: "Gigamacro",
  1248. height: math.unit(5000, "miles")
  1249. },
  1250. {
  1251. name: "Teramacro",
  1252. height: math.unit(100, "parsecs")
  1253. }
  1254. ],
  1255. math.unit(2, "miles")
  1256. )
  1257. };
  1258. characterMakers["Gael'Rathus"] = () => {
  1259. return makeCharacter(
  1260. "Gael'Rathus",
  1261. "Kurrikage",
  1262. {
  1263. front: {
  1264. height: math.unit(2, "meter"),
  1265. weight: math.unit(90, "kg"),
  1266. name: "Front",
  1267. image: {
  1268. source: "./media/characters/gael'rathus/front.svg"
  1269. }
  1270. },
  1271. frontAlt: {
  1272. height: math.unit(2, "meter"),
  1273. weight: math.unit(90, "kg"),
  1274. name: "Front (alt)",
  1275. image: {
  1276. source: "./media/characters/gael'rathus/front-alt.svg"
  1277. }
  1278. },
  1279. frontAlt2: {
  1280. height: math.unit(2, "meter"),
  1281. weight: math.unit(90, "kg"),
  1282. name: "Front (alt 2)",
  1283. image: {
  1284. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1285. }
  1286. }
  1287. },
  1288. [
  1289. {
  1290. name: "Normal",
  1291. height: math.unit(9, "feet")
  1292. },
  1293. {
  1294. name: "Large",
  1295. height: math.unit(25, "feet")
  1296. },
  1297. {
  1298. name: "Macro",
  1299. height: math.unit(0.25, "miles")
  1300. },
  1301. {
  1302. name: "Megamacro",
  1303. height: math.unit(10, "miles")
  1304. }
  1305. ],
  1306. math.unit(9, "feet")
  1307. )
  1308. };
  1309. characterMakers["Sosha"] = () => {
  1310. return makeCharacter(
  1311. "Sosha",
  1312. "Sdocat",
  1313. {
  1314. side: {
  1315. height: math.unit(2, "meter"),
  1316. weight: math.unit(140, "kg"),
  1317. name: "Side",
  1318. image: {
  1319. source: "./media/characters/sosha/side.svg"
  1320. }
  1321. },
  1322. },
  1323. [
  1324. {
  1325. name: "Normal",
  1326. height: math.unit(12, "feet")
  1327. }
  1328. ],
  1329. math.unit(12, "feet")
  1330. )
  1331. };
  1332. characterMakers["Kurribird"] = () => {
  1333. return makeCharacter(
  1334. "Kurribird",
  1335. "Kurrikage",
  1336. {
  1337. front: {
  1338. height: math.unit(2, "meter"),
  1339. weight: math.unit(50, "kg"),
  1340. name: "Front",
  1341. image: {
  1342. source: "./media/characters/kurribird/front.svg",
  1343. bottom: 0.015
  1344. }
  1345. },
  1346. frontAlt: {
  1347. height: math.unit(1.5, "meter"),
  1348. weight: math.unit(50, "kg"),
  1349. name: "Front (Alt)",
  1350. image: {
  1351. source: "./media/characters/kurribird/front-alt.svg",
  1352. extra: 1.45
  1353. }
  1354. },
  1355. },
  1356. [
  1357. {
  1358. name: "Normal",
  1359. height: math.unit(7, "feet")
  1360. },
  1361. {
  1362. name: "Big",
  1363. height: math.unit(15, "feet")
  1364. },
  1365. {
  1366. name: "Macro",
  1367. height: math.unit(1500, "feet")
  1368. },
  1369. {
  1370. name: "Megamacro",
  1371. height: math.unit(2, "miles")
  1372. }
  1373. ],
  1374. math.unit(12, "feet")
  1375. )
  1376. };
  1377. characterMakers["Elbial"] = () => {
  1378. return makeCharacter(
  1379. "Elbial",
  1380. "Neopuc",
  1381. {
  1382. front: {
  1383. height: math.unit(2, "meter"),
  1384. weight: math.unit(80, "kg"),
  1385. name: "Front",
  1386. image: {
  1387. source: "./media/characters/elbial/front.svg"
  1388. }
  1389. },
  1390. side: {
  1391. height: math.unit(2, "meter"),
  1392. weight: math.unit(80, "kg"),
  1393. name: "Side",
  1394. image: {
  1395. source: "./media/characters/elbial/side.svg"
  1396. }
  1397. },
  1398. back: {
  1399. height: math.unit(2, "meter"),
  1400. weight: math.unit(80, "kg"),
  1401. name: "Back",
  1402. image: {
  1403. source: "./media/characters/elbial/back.svg"
  1404. }
  1405. },
  1406. },
  1407. [
  1408. {
  1409. name: "Large",
  1410. height: math.unit(100, "feet")
  1411. },
  1412. {
  1413. name: "Macro",
  1414. height: math.unit(500, "feet")
  1415. },
  1416. {
  1417. name: "Megamacro",
  1418. height: math.unit(10, "miles")
  1419. },
  1420. {
  1421. name: "Gigamacro",
  1422. height: math.unit(25000, "miles")
  1423. },
  1424. {
  1425. name: "Full-Size",
  1426. height: math.unit(8000000, "gigaparsecs")
  1427. }
  1428. ],
  1429. math.unit(500, "feet")
  1430. )
  1431. };
  1432. characterMakers["Noah"] = () => {
  1433. return makeCharacter(
  1434. "Noah",
  1435. "Neopuc",
  1436. {
  1437. front: {
  1438. height: math.unit(2, "meter"),
  1439. weight: math.unit(60, "kg"),
  1440. name: "Front",
  1441. image: {
  1442. source: "./media/characters/noah/front.svg"
  1443. }
  1444. },
  1445. talons: {
  1446. height: math.unit(0.315, "meter"),
  1447. name: "Talons",
  1448. image: {
  1449. source: "./media/characters/noah/talons.svg"
  1450. }
  1451. }
  1452. },
  1453. [
  1454. {
  1455. name: "Large",
  1456. height: math.unit(50, "feet")
  1457. },
  1458. {
  1459. name: "Macro",
  1460. height: math.unit(750, "feet")
  1461. },
  1462. {
  1463. name: "Megamacro",
  1464. height: math.unit(50, "miles")
  1465. },
  1466. {
  1467. name: "Gigamacro",
  1468. height: math.unit(100000, "miles")
  1469. },
  1470. {
  1471. name: "Full-Size",
  1472. height: math.unit(3000000000, "miles")
  1473. }
  1474. ],
  1475. math.unit(750, "feet")
  1476. )
  1477. };
  1478. characterMakers["Natalya"] = () => {
  1479. return makeCharacter(
  1480. "Natalya",
  1481. "Neopuc",
  1482. {
  1483. front: {
  1484. height: math.unit(2, "meter"),
  1485. weight: math.unit(80, "kg"),
  1486. name: "Front",
  1487. image: {
  1488. source: "./media/characters/natalya/front.svg"
  1489. }
  1490. },
  1491. back: {
  1492. height: math.unit(2, "meter"),
  1493. weight: math.unit(80, "kg"),
  1494. name: "Back",
  1495. image: {
  1496. source: "./media/characters/natalya/back.svg"
  1497. }
  1498. }
  1499. },
  1500. [
  1501. {
  1502. name: "Normal",
  1503. height: math.unit(150, "feet")
  1504. },
  1505. {
  1506. name: "Megamacro",
  1507. height: math.unit(5, "miles")
  1508. },
  1509. {
  1510. name: "Full-Size",
  1511. height: math.unit(600, "kiloparsecs")
  1512. }
  1513. ],
  1514. math.unit(150, "feet")
  1515. )
  1516. };
  1517. characterMakers["Erestrebah"] = () => {
  1518. return makeCharacter(
  1519. "Erestrebah",
  1520. "Kurrikage",
  1521. {
  1522. front: {
  1523. height: math.unit(2, "meter"),
  1524. weight: math.unit(50, "kg"),
  1525. name: "Front",
  1526. image: {
  1527. source: "./media/characters/erestrebah/front.svg"
  1528. }
  1529. },
  1530. back: {
  1531. height: math.unit(2, "meter"),
  1532. weight: math.unit(50, "kg"),
  1533. name: "Back",
  1534. image: {
  1535. source: "./media/characters/erestrebah/back.svg",
  1536. extra: 1.2139
  1537. }
  1538. }
  1539. },
  1540. [
  1541. {
  1542. name: "Normal",
  1543. height: math.unit(10, "feet")
  1544. },
  1545. {
  1546. name: "Large",
  1547. height: math.unit(50, "feet")
  1548. },
  1549. {
  1550. name: "Macro",
  1551. height: math.unit(300, "feet")
  1552. },
  1553. {
  1554. name: "Macro+",
  1555. height: math.unit(750, "feet")
  1556. },
  1557. {
  1558. name: "Megamacro",
  1559. height: math.unit(3, "miles")
  1560. }
  1561. ],
  1562. math.unit(50, "feet")
  1563. )
  1564. };
  1565. characterMakers["Jennifer"] = () => {
  1566. return makeCharacter(
  1567. "Jennifer",
  1568. "Neopuc",
  1569. {
  1570. front: {
  1571. height: math.unit(2, "meter"),
  1572. weight: math.unit(80, "kg"),
  1573. name: "Front",
  1574. image: {
  1575. source: "./media/characters/jennifer/front.svg",
  1576. bottom: 0.11,
  1577. extra: 1.16
  1578. }
  1579. },
  1580. frontAlt: {
  1581. height: math.unit(2, "meter"),
  1582. weight: math.unit(80, "kg"),
  1583. name: "Front (Alt)",
  1584. image: {
  1585. source: "./media/characters/jennifer/front-alt.svg"
  1586. }
  1587. }
  1588. },
  1589. [
  1590. {
  1591. name: "Canon Height",
  1592. height: math.unit(120, "feet")
  1593. },
  1594. {
  1595. name: "Macro+",
  1596. height: math.unit(300, "feet")
  1597. },
  1598. {
  1599. name: "Megamacro",
  1600. height: math.unit(20000, "feet")
  1601. }
  1602. ],
  1603. math.unit(120, "feet")
  1604. )
  1605. };
  1606. characterMakers["Kalista"] = () => {
  1607. return makeCharacter(
  1608. "Kalista",
  1609. "Kalista",
  1610. {
  1611. front: {
  1612. height: math.unit(2, "meter"),
  1613. weight: math.unit(50, "kg"),
  1614. name: "Front",
  1615. image: {
  1616. source: "./media/characters/kalista/front.svg",
  1617. extra: 1947/1700
  1618. }
  1619. },
  1620. back: {
  1621. height: math.unit(2, "meter"),
  1622. weight: math.unit(50, "kg"),
  1623. name: "Back",
  1624. image: {
  1625. source: "./media/characters/kalista/back.svg",
  1626. extra: 1366/1156
  1627. }
  1628. }
  1629. },
  1630. [
  1631. {
  1632. name: "Uncomfortably Small",
  1633. height: math.unit(10, "feet")
  1634. },
  1635. {
  1636. name: "Small",
  1637. height: math.unit(30, "feet")
  1638. },
  1639. {
  1640. name: "Macro",
  1641. height: math.unit(100, "feet")
  1642. },
  1643. {
  1644. name: "Macro+",
  1645. height: math.unit(2000, "feet")
  1646. },
  1647. {
  1648. name: "True Form",
  1649. height: math.unit(8924, "miles")
  1650. }
  1651. ],
  1652. math.unit(100, "feet")
  1653. )
  1654. };
  1655. characterMakers["GiantGrowingVixen"] = () => {
  1656. return makeCharacter(
  1657. "GiantGrowingVixen",
  1658. "GiantGrowingVixen",
  1659. {
  1660. front: {
  1661. height: math.unit(2, "meter"),
  1662. weight: math.unit(120, "kg"),
  1663. name: "Front",
  1664. image: {
  1665. source: "./media/characters/ggv/front.svg"
  1666. }
  1667. },
  1668. side: {
  1669. height: math.unit(2, "meter"),
  1670. weight: math.unit(120, "kg"),
  1671. name: "Side",
  1672. image: {
  1673. source: "./media/characters/ggv/side.svg"
  1674. }
  1675. }
  1676. },
  1677. [
  1678. {
  1679. name: "Extremely Puny",
  1680. height: math.unit(9 + 5 / 12, "feet")
  1681. },
  1682. {
  1683. name: "Horribly Small",
  1684. height: math.unit(47.7, "miles")
  1685. },
  1686. {
  1687. name: "Reasonably Sized",
  1688. height: math.unit(25000, "parsecs")
  1689. }
  1690. ],
  1691. math.unit(47.7, "miles")
  1692. )
  1693. };
  1694. characterMakers["Napalm"] = () => {
  1695. return makeCharacter(
  1696. "Napalm",
  1697. "RathDaKrogan",
  1698. {
  1699. front: {
  1700. height: math.unit(2, "meter"),
  1701. weight: math.unit(75, "lb"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/napalm/front.svg"
  1705. }
  1706. },
  1707. back: {
  1708. height: math.unit(2, "meter"),
  1709. weight: math.unit(75, "lb"),
  1710. name: "Back",
  1711. image: {
  1712. source: "./media/characters/napalm/back.svg"
  1713. }
  1714. }
  1715. },
  1716. [
  1717. {
  1718. name: "Standard",
  1719. height: math.unit(55, "feet")
  1720. }
  1721. ],
  1722. math.unit(55, "feet")
  1723. )
  1724. };
  1725. characterMakers["Asana"] = () => {
  1726. return makeCharacter(
  1727. "Asana",
  1728. "Asana",
  1729. {
  1730. front: {
  1731. height: math.unit(7 + 5 / 6, "feet"),
  1732. weight: math.unit(325, "lb"),
  1733. name: "Front",
  1734. image: {
  1735. source: "./media/characters/asana/front.svg",
  1736. extra: 1128 / 1068
  1737. }
  1738. },
  1739. back: {
  1740. height: math.unit(7 + 5 / 6, "feet"),
  1741. weight: math.unit(325, "lb"),
  1742. name: "Back",
  1743. image: {
  1744. source: "./media/characters/asana/back.svg",
  1745. extra: 1128 / 1068
  1746. }
  1747. },
  1748. },
  1749. [
  1750. {
  1751. name: "Standard",
  1752. height: math.unit(7 + 5 / 6, "feet")
  1753. },
  1754. {
  1755. name: "Large",
  1756. height: math.unit(10, "meters")
  1757. },
  1758. {
  1759. name: "Macro",
  1760. height: math.unit(2500, "meters")
  1761. },
  1762. {
  1763. name: "Megamacro",
  1764. height: math.unit(5e6, "meters")
  1765. },
  1766. {
  1767. name: "Examacro",
  1768. height: math.unit(5e12, "lightyears")
  1769. }
  1770. ],
  1771. math.unit(7 + 5 / 6, "feet")
  1772. )
  1773. };
  1774. characterMakers["Ebony"] = () => {
  1775. return makeCharacter(
  1776. "Ebony",
  1777. "Lazerwolf",
  1778. {
  1779. front: {
  1780. height: math.unit(2, "meter"),
  1781. weight: math.unit(60, "kg"),
  1782. name: "Front",
  1783. image: {
  1784. source: "./media/characters/ebony/front.svg",
  1785. bottom: 0.03,
  1786. extra: 1045 / 810 + 0.03
  1787. }
  1788. },
  1789. side: {
  1790. height: math.unit(2, "meter"),
  1791. weight: math.unit(60, "kg"),
  1792. name: "Side",
  1793. image: {
  1794. source: "./media/characters/ebony/side.svg",
  1795. bottom: 0.03,
  1796. extra: 1045 / 810 + 0.03
  1797. }
  1798. },
  1799. back: {
  1800. height: math.unit(2, "meter"),
  1801. weight: math.unit(60, "kg"),
  1802. name: "Back",
  1803. image: {
  1804. source: "./media/characters/ebony/back.svg",
  1805. bottom: 0.01,
  1806. extra: 1045 / 810 + 0.01
  1807. }
  1808. },
  1809. },
  1810. [
  1811. {
  1812. name: "Standard",
  1813. height: math.unit(9 / 8 * (7 + 5 / 12), "feet")
  1814. },
  1815. {
  1816. name: "Macro",
  1817. height: math.unit(200, "feet")
  1818. },
  1819. {
  1820. name: "Gigamacro",
  1821. height: math.unit(13000, "km")
  1822. }
  1823. ],
  1824. math.unit(7 + 5 / 12, "feet")
  1825. )
  1826. };
  1827. characterMakers["Mountain"] = () => {
  1828. return makeCharacter(
  1829. "Mountain",
  1830. "Asana",
  1831. {
  1832. front: {
  1833. height: math.unit(6, "feet"),
  1834. weight: math.unit(175, "lb"),
  1835. name: "Front",
  1836. image: {
  1837. source: "./media/characters/mountain/front.svg"
  1838. }
  1839. },
  1840. back: {
  1841. height: math.unit(6, "feet"),
  1842. weight: math.unit(175, "lb"),
  1843. name: "Back",
  1844. image: {
  1845. source: "./media/characters/mountain/back.svg"
  1846. }
  1847. },
  1848. },
  1849. [
  1850. {
  1851. name: "Large",
  1852. height: math.unit(20, "meters")
  1853. },
  1854. {
  1855. name: "Macro",
  1856. height: math.unit(300, "meters")
  1857. },
  1858. {
  1859. name: "Gigamacro",
  1860. height: math.unit(10000, "km")
  1861. },
  1862. {
  1863. name: "Examacro",
  1864. height: math.unit(10e9, "lightyears")
  1865. }
  1866. ],
  1867. math.unit(10000, "km")
  1868. )
  1869. };
  1870. characterMakers["Rick"] = () => {
  1871. return makeCharacter(
  1872. "Rick",
  1873. "Victni",
  1874. {
  1875. front: {
  1876. height: math.unit(8, "feet"),
  1877. weight: math.unit(500, "lb"),
  1878. name: "Front",
  1879. image: {
  1880. source: "./media/characters/rick/front.svg"
  1881. }
  1882. }
  1883. },
  1884. [
  1885. {
  1886. name: "Normal",
  1887. height: math.unit(8, "feet")
  1888. },
  1889. {
  1890. name: "Macro",
  1891. height: math.unit(5, "km")
  1892. }
  1893. ],
  1894. math.unit(8, "feet")
  1895. )
  1896. };
  1897. characterMakers["Ona"] = () => {
  1898. return makeCharacter(
  1899. "Ona",
  1900. "Arrogance127",
  1901. {
  1902. front: {
  1903. height: math.unit(8, "feet"),
  1904. weight: math.unit(120, "lb"),
  1905. name: "Front",
  1906. image: {
  1907. source: "./media/characters/ona/front.svg"
  1908. }
  1909. },
  1910. frontAlt: {
  1911. height: math.unit(8, "feet"),
  1912. weight: math.unit(120, "lb"),
  1913. name: "Front (Alt)",
  1914. image: {
  1915. source: "./media/characters/ona/front-alt.svg"
  1916. }
  1917. },
  1918. back: {
  1919. height: math.unit(8, "feet"),
  1920. weight: math.unit(120, "lb"),
  1921. name: "Back",
  1922. image: {
  1923. source: "./media/characters/ona/back.svg"
  1924. }
  1925. },
  1926. foot: {
  1927. height: math.unit(1.1, "feet"),
  1928. name: "Foot",
  1929. image: {
  1930. source: "./media/characters/ona/foot.svg"
  1931. }
  1932. }
  1933. },
  1934. [
  1935. {
  1936. name: "Megamacro",
  1937. height: math.unit(70, "km")
  1938. },
  1939. {
  1940. name: "Gigamacro",
  1941. height: math.unit(681818, "miles")
  1942. },
  1943. {
  1944. name: "Examacro",
  1945. height: math.unit(3800000, "lightyears")
  1946. },
  1947. ],
  1948. math.unit(70, "km")
  1949. )
  1950. };
  1951. characterMakers["Mech"] = () => {
  1952. return makeCharacter(
  1953. "Mech",
  1954. "mechEdragon",
  1955. {
  1956. front: {
  1957. height: math.unit(12, "feet"),
  1958. weight: math.unit(3000, "lb"),
  1959. name: "Front",
  1960. image: {
  1961. source: "./media/characters/mech/front.svg",
  1962. bottom: 0.025,
  1963. }
  1964. },
  1965. back: {
  1966. height: math.unit(12, "feet"),
  1967. weight: math.unit(3000, "lb"),
  1968. name: "Back",
  1969. image: {
  1970. source: "./media/characters/mech/back.svg",
  1971. bottom: 0.03,
  1972. }
  1973. }
  1974. },
  1975. [
  1976. {
  1977. name: "Normal",
  1978. height: math.unit(12, "feet")
  1979. },
  1980. {
  1981. name: "Macro",
  1982. height: math.unit(300, "feet")
  1983. },
  1984. {
  1985. name: "Macro+",
  1986. height: math.unit(1500, "feet")
  1987. },
  1988. ],
  1989. math.unit(300, "feet")
  1990. )
  1991. };
  1992. characterMakers["Gregory"] = () => {
  1993. return makeCharacter(
  1994. "Gregory",
  1995. "GregoryKlippenspringer",
  1996. {
  1997. front: {
  1998. height: math.unit(1.3, "meter"),
  1999. weight: math.unit(30, "kg"),
  2000. name: "Front",
  2001. image: {
  2002. source: "./media/characters/gregory/front.svg",
  2003. }
  2004. }
  2005. },
  2006. [
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(1.3, "meter")
  2010. },
  2011. {
  2012. name: "Macro",
  2013. height: math.unit(20, "meter")
  2014. }
  2015. ],
  2016. math.unit(1.3, "meter")
  2017. )
  2018. };
  2019. characterMakers["Elory"] = () => {
  2020. return makeCharacter(
  2021. "Elory",
  2022. "GregoryKlippenspringer",
  2023. {
  2024. front: {
  2025. height: math.unit(2.8, "meter"),
  2026. weight: math.unit(200, "kg"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/elory/front.svg",
  2030. }
  2031. }
  2032. },
  2033. [
  2034. {
  2035. name: "Normal",
  2036. height: math.unit(2.8, "meter")
  2037. },
  2038. {
  2039. name: "Macro",
  2040. height: math.unit(38, "meter")
  2041. }
  2042. ],
  2043. math.unit(2.8, "meter")
  2044. )
  2045. };
  2046. characterMakers["Angelpatamon"] = () => {
  2047. return makeCharacter(
  2048. "Angelpatamon",
  2049. "GregoryKlippenspringer",
  2050. {
  2051. front: {
  2052. height: math.unit(470, "feet"),
  2053. weight: math.unit(924, "tons"),
  2054. name: "Front",
  2055. image: {
  2056. source: "./media/characters/angelpatamon/front.svg",
  2057. }
  2058. }
  2059. },
  2060. [
  2061. {
  2062. name: "Normal",
  2063. height: math.unit(470, "feet")
  2064. },
  2065. {
  2066. name: "Deity Size I",
  2067. height: math.unit(28651.2, "km")
  2068. },
  2069. {
  2070. name: "Deity Size II",
  2071. height: math.unit(171907.2, "km")
  2072. }
  2073. ],
  2074. math.unit(470, "feet")
  2075. )
  2076. };
  2077. characterMakers["Cryae"] = () => {
  2078. return makeCharacter(
  2079. "Cryae",
  2080. "GregoryKlippenspringer",
  2081. {
  2082. side: {
  2083. height: math.unit(7.2, "meter"),
  2084. weight: math.unit(8.2, "tons"),
  2085. name: "Side",
  2086. image: {
  2087. source: "./media/characters/cryae/side.svg",
  2088. extra: 3500 / 1500
  2089. }
  2090. }
  2091. },
  2092. [
  2093. {
  2094. name: "Normal",
  2095. height: math.unit(7.2, "meter")
  2096. }
  2097. ],
  2098. math.unit(7.2, "meter")
  2099. )
  2100. };
  2101. characterMakers["Xera"] = () => {
  2102. return makeCharacter(
  2103. "Xera",
  2104. "Asana",
  2105. {
  2106. front: {
  2107. height: math.unit(6, "feet"),
  2108. weight: math.unit(175, "lb"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/xera/front.svg",
  2112. extra: 2300 / 2061
  2113. }
  2114. },
  2115. side: {
  2116. height: math.unit(6, "feet"),
  2117. weight: math.unit(175, "lb"),
  2118. name: "Side",
  2119. image: {
  2120. source: "./media/characters/xera/side.svg",
  2121. extra: 2300 / 2061
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(6, "feet"),
  2126. weight: math.unit(175, "lb"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/xera/back.svg"
  2130. }
  2131. },
  2132. },
  2133. [
  2134. {
  2135. name: "Small",
  2136. height: math.unit(10, "feet")
  2137. },
  2138. {
  2139. name: "Macro",
  2140. height: math.unit(500, "meters")
  2141. },
  2142. {
  2143. name: "Macro+",
  2144. height: math.unit(10, "km")
  2145. },
  2146. {
  2147. name: "Gigamacro",
  2148. height: math.unit(25000, "km")
  2149. },
  2150. {
  2151. name: "Teramacro",
  2152. height: math.unit(3e6, "km")
  2153. }
  2154. ],
  2155. math.unit(500, "meters")
  2156. )
  2157. };
  2158. characterMakers["Nebula"] = () => {
  2159. return makeCharacter(
  2160. "Nebula",
  2161. "Cilenomon",
  2162. {
  2163. front: {
  2164. height: math.unit(6, "feet"),
  2165. weight: math.unit(175, "lb"),
  2166. name: "Front",
  2167. image: {
  2168. source: "./media/characters/nebula/front.svg",
  2169. extra: 2600 / 2450
  2170. }
  2171. }
  2172. },
  2173. [
  2174. {
  2175. name: "Small",
  2176. height: math.unit(4.5, "meters")
  2177. },
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(1500, "meters")
  2181. },
  2182. {
  2183. name: "Megamacro",
  2184. height: math.unit(150, "km")
  2185. },
  2186. {
  2187. name: "Gigamacro",
  2188. height: math.unit(27000, "km")
  2189. }
  2190. ],
  2191. math.unit(1500, "meters")
  2192. )
  2193. };
  2194. characterMakers["Abysgar"] = () => {
  2195. return makeCharacter(
  2196. "Abysgar",
  2197. "Cilenomon",
  2198. {
  2199. front: {
  2200. height: math.unit(6, "feet"),
  2201. weight: math.unit(225, "lb"),
  2202. name: "Front",
  2203. image: {
  2204. source: "./media/characters/abysgar/front.svg"
  2205. }
  2206. }
  2207. },
  2208. [
  2209. {
  2210. name: "Small",
  2211. height: math.unit(4.5, "meters")
  2212. },
  2213. {
  2214. name: "Macro",
  2215. height: math.unit(1250, "meters")
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(125, "km")
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(26000, "km")
  2224. }
  2225. ],
  2226. math.unit(1250, "meters")
  2227. )
  2228. };
  2229. characterMakers["Yakuz"] = () => {
  2230. return makeCharacter(
  2231. "Yakuz",
  2232. "Cilenomon",
  2233. {
  2234. front: {
  2235. height: math.unit(6, "feet"),
  2236. weight: math.unit(180, "lb"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/yakuz/front.svg"
  2240. }
  2241. }
  2242. },
  2243. [
  2244. {
  2245. name: "Small",
  2246. height: math.unit(5, "meters")
  2247. },
  2248. {
  2249. name: "Macro",
  2250. height: math.unit(2500, "meters")
  2251. },
  2252. {
  2253. name: "Megamacro",
  2254. height: math.unit(200, "km")
  2255. },
  2256. {
  2257. name: "Gigamacro",
  2258. height: math.unit(100000, "km")
  2259. }
  2260. ],
  2261. math.unit(1500, "meters")
  2262. )
  2263. };
  2264. characterMakers["Mirova"] = () => {
  2265. return makeCharacter(
  2266. "Mirova",
  2267. "Cilenomon",
  2268. {
  2269. front: {
  2270. height: math.unit(6, "feet"),
  2271. weight: math.unit(175, "lb"),
  2272. name: "Front",
  2273. image: {
  2274. source: "./media/characters/mirova/front.svg"
  2275. }
  2276. }
  2277. },
  2278. [
  2279. {
  2280. name: "Small",
  2281. height: math.unit(5, "meters")
  2282. },
  2283. {
  2284. name: "Macro",
  2285. height: math.unit(900, "meters")
  2286. },
  2287. {
  2288. name: "Megamacro",
  2289. height: math.unit(135, "km")
  2290. },
  2291. {
  2292. name: "Gigamacro",
  2293. height: math.unit(20000, "km")
  2294. }
  2295. ],
  2296. math.unit(900, "meters")
  2297. )
  2298. };
  2299. characterMakers["Asana (Mech)"] = () => {
  2300. return makeCharacter(
  2301. "Asana (Mech)",
  2302. "Asana",
  2303. {
  2304. side: {
  2305. height: math.unit(28.35, "feet"),
  2306. weight: math.unit(99.75, "tons"),
  2307. name: "Side",
  2308. image: {
  2309. source: "./media/characters/asana-mech/side.svg"
  2310. }
  2311. }
  2312. },
  2313. [
  2314. {
  2315. name: "Normal",
  2316. height: math.unit(28.35, "feet")
  2317. },
  2318. {
  2319. name: "Macro",
  2320. height: math.unit(2500, "feet")
  2321. },
  2322. {
  2323. name: "Megamacro",
  2324. height: math.unit(25, "miles")
  2325. },
  2326. {
  2327. name: "Examacro",
  2328. height: math.unit(6e8, "lightyears")
  2329. },
  2330. ],
  2331. math.unit(28.35, "feet")
  2332. )
  2333. };
  2334. characterMakers["Ashtrek"] = () => {
  2335. return makeCharacter(
  2336. "Ashtrek",
  2337. "Ashtrek",
  2338. {
  2339. front: {
  2340. height: math.unit(2, "meters"),
  2341. weight: math.unit(70, "kg"),
  2342. name: "Front",
  2343. image: {
  2344. source: "./media/characters/ashtrek/front.svg",
  2345. extra: 560/524 * (1 / (1 - 0.01)),
  2346. bottom: 0.01
  2347. }
  2348. },
  2349. frontArmor: {
  2350. height: math.unit(2, "meters"),
  2351. weight: math.unit(76, "kg"),
  2352. name: "Front (Armor)",
  2353. image: {
  2354. source: "./media/characters/ashtrek/front-armor.svg",
  2355. extra: 561/527 * (1 / (1 - 0.01)),
  2356. bottom: 0.01
  2357. }
  2358. },
  2359. side: {
  2360. height: math.unit(2, "meters"),
  2361. weight: math.unit(70, "kg"),
  2362. name: "Side",
  2363. image: {
  2364. source: "./media/characters/ashtrek/side.svg",
  2365. extra: 1717/1609 * (1 / (1 - 0.005)),
  2366. bottom: 0.005
  2367. }
  2368. },
  2369. back: {
  2370. height: math.unit(2, "meters"),
  2371. weight: math.unit(70, "kg"),
  2372. name: "Back",
  2373. image: {
  2374. source: "./media/characters/ashtrek/back.svg",
  2375. extra: 1570/1501
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "DEFCON 5",
  2382. height: math.unit(5, "meters")
  2383. },
  2384. {
  2385. name: "DEFCON 4",
  2386. height: math.unit(500, "meters")
  2387. },
  2388. {
  2389. name: "DEFCON 3",
  2390. height: math.unit(5, "km")
  2391. },
  2392. {
  2393. name: "DEFCON 2",
  2394. height: math.unit(500, "km")
  2395. },
  2396. {
  2397. name: "DEFCON 1",
  2398. height: math.unit(500000, "km")
  2399. },
  2400. {
  2401. name: "DEFCON 0",
  2402. height: math.unit(3, "gigaparsecs")
  2403. },
  2404. ],
  2405. math.unit(500, "meters")
  2406. )
  2407. };
  2408. characterMakers["Gale"] = () => {
  2409. return makeCharacter(
  2410. "Gale",
  2411. "GaleFierre",
  2412. {
  2413. front: {
  2414. height: math.unit(2, "meters"),
  2415. weight: math.unit(76, "kg"),
  2416. name: "Front",
  2417. image: {
  2418. source: "./media/characters/gale/front.svg"
  2419. }
  2420. },
  2421. frontAlt1: {
  2422. height: math.unit(2, "meters"),
  2423. weight: math.unit(76, "kg"),
  2424. name: "Front (Alt 1)",
  2425. image: {
  2426. source: "./media/characters/gale/front-alt-1.svg"
  2427. }
  2428. },
  2429. frontAlt2: {
  2430. height: math.unit(2, "meters"),
  2431. weight: math.unit(76, "kg"),
  2432. name: "Front (Alt 2)",
  2433. image: {
  2434. source: "./media/characters/gale/front-alt-2.svg"
  2435. }
  2436. },
  2437. },
  2438. [
  2439. {
  2440. name: "Normal",
  2441. height: math.unit(7, "feet")
  2442. },
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(150, "feet")
  2446. },
  2447. {
  2448. name: "Macro+",
  2449. height: math.unit(300, "feet")
  2450. },
  2451. ],
  2452. math.unit(150, "feet")
  2453. )
  2454. };
  2455. characterMakers["Draylen"] = () => {
  2456. return makeCharacter(
  2457. "Draylen",
  2458. "Longshot Coyote",
  2459. {
  2460. front: {
  2461. height: math.unit(2, "meters"),
  2462. weight: math.unit(76, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/draylen/front.svg"
  2466. }
  2467. }
  2468. },
  2469. [
  2470. {
  2471. name: "Macro",
  2472. height: math.unit(150, "feet")
  2473. }
  2474. ],
  2475. math.unit(150, "feet")
  2476. )
  2477. };
  2478. characterMakers["Chez"] = () => {
  2479. return makeCharacter(
  2480. "Chez",
  2481. "Ashtrek",
  2482. {
  2483. front: {
  2484. height: math.unit(7 + 9 / 12, "feet"),
  2485. weight: math.unit(379, "lbs"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/chez/front.svg"
  2489. }
  2490. },
  2491. side: {
  2492. height: math.unit(7 + 9 / 12, "feet"),
  2493. weight: math.unit(379, "lbs"),
  2494. name: "Side",
  2495. image: {
  2496. source: "./media/characters/chez/side.svg"
  2497. }
  2498. }
  2499. },
  2500. [
  2501. {
  2502. name: "Normal",
  2503. height: math.unit(7 + 9 / 12, "feet")
  2504. },
  2505. {
  2506. name: "God King",
  2507. height: math.unit(9750000, "meters")
  2508. }
  2509. ],
  2510. math.unit(7 + 9 / 12, "feet")
  2511. )
  2512. };
  2513. characterMakers["Kaylum"] = () => {
  2514. return makeCharacter(
  2515. "Kaylum",
  2516. "DJDarkJaro",
  2517. {
  2518. front: {
  2519. height: math.unit(6, "feet"),
  2520. weight: math.unit(275, "lbs"),
  2521. name: "Front",
  2522. image: {
  2523. source: "./media/characters/kaylum/front.svg",
  2524. bottom: 0.01,
  2525. extra: 1166 / 1031
  2526. }
  2527. },
  2528. frontWingless: {
  2529. height: math.unit(6, "feet"),
  2530. weight: math.unit(275, "lbs"),
  2531. name: "Front (Wingless)",
  2532. image: {
  2533. source: "./media/characters/kaylum/front-wingless.svg",
  2534. bottom: 0.01,
  2535. extra: 1117 / 1031
  2536. }
  2537. }
  2538. },
  2539. [
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(3.05, "meters")
  2543. },
  2544. {
  2545. name: "Master",
  2546. height: math.unit(5.5, "meters")
  2547. },
  2548. {
  2549. name: "Rampage",
  2550. height: math.unit(19, "meters")
  2551. },
  2552. {
  2553. name: "Macro Lite",
  2554. height: math.unit(37, "meters")
  2555. },
  2556. {
  2557. name: "Hyper Predator",
  2558. height: math.unit(61, "meters")
  2559. },
  2560. {
  2561. name: "Macro",
  2562. height: math.unit(138, "meters")
  2563. }
  2564. ],
  2565. math.unit(138, "meters")
  2566. )
  2567. };
  2568. characterMakers["Geta"] = () => {
  2569. return makeCharacter(
  2570. "Geta",
  2571. "Aeznon",
  2572. {
  2573. front: {
  2574. height: math.unit(6, "feet"),
  2575. weight: math.unit(150, "lbs"),
  2576. name: "Front",
  2577. image: {
  2578. source: "./media/characters/geta/front.svg"
  2579. }
  2580. }
  2581. },
  2582. [
  2583. {
  2584. name: "Micro",
  2585. height: math.unit(3, "inches")
  2586. },
  2587. {
  2588. name: "Normal",
  2589. height: math.unit(5 + 5 / 12, "feet")
  2590. }
  2591. ],
  2592. math.unit(3, "inches")
  2593. )
  2594. };
  2595. characterMakers["Tyrnn"] = () => {
  2596. return makeCharacter(
  2597. "Tyrnn",
  2598. "Tyrnn",
  2599. {
  2600. front: {
  2601. height: math.unit(6, "feet"),
  2602. weight: math.unit(300, "lbs"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/tyrnn/front.svg"
  2606. }
  2607. }
  2608. },
  2609. [
  2610. {
  2611. name: "Main Height",
  2612. height: math.unit(355, "feet")
  2613. },
  2614. {
  2615. name: "Fave. Height",
  2616. height: math.unit(2400, "feet")
  2617. }
  2618. ],
  2619. math.unit(355, "feet")
  2620. )
  2621. };
  2622. characterMakers["Apple"] = () => {
  2623. return makeCharacter(
  2624. "Apple",
  2625. "Appledectomy",
  2626. {
  2627. front: {
  2628. height: math.unit(6, "feet"),
  2629. weight: math.unit(300, "lbs"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/appledectomy/front.svg"
  2633. }
  2634. }
  2635. },
  2636. [
  2637. {
  2638. name: "Macro",
  2639. height: math.unit(2500, "feet")
  2640. },
  2641. {
  2642. name: "Megamacro",
  2643. height: math.unit(50, "miles")
  2644. },
  2645. {
  2646. name: "Gigamacro",
  2647. height: math.unit(5000, "miles")
  2648. },
  2649. {
  2650. name: "Teramacro",
  2651. height: math.unit(250000, "miles")
  2652. },
  2653. ],
  2654. math.unit(50, "miles")
  2655. )
  2656. };
  2657. characterMakers["Vulpes"] = () => {
  2658. return makeCharacter(
  2659. "Vulpes",
  2660. "VulpesPawpad",
  2661. {
  2662. front: {
  2663. height: math.unit(6, "feet"),
  2664. weight: math.unit(200, "lbs"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/vulpes/front.svg"
  2668. }
  2669. },
  2670. side: {
  2671. height: math.unit(6, "feet"),
  2672. weight: math.unit(200, "lbs"),
  2673. name: "Side",
  2674. image: {
  2675. source: "./media/characters/vulpes/side.svg"
  2676. }
  2677. },
  2678. back: {
  2679. height: math.unit(6, "feet"),
  2680. weight: math.unit(200, "lbs"),
  2681. name: "Back",
  2682. image: {
  2683. source: "./media/characters/vulpes/back.svg"
  2684. }
  2685. },
  2686. feet: {
  2687. height: math.unit(1.276, "feet"),
  2688. name: "Feet",
  2689. image: {
  2690. source: "./media/characters/vulpes/feet.svg"
  2691. }
  2692. },
  2693. },
  2694. [
  2695. {
  2696. name: "Micro",
  2697. height: math.unit(3, "inches")
  2698. },
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(6.3, "feet")
  2702. },
  2703. {
  2704. name: "Megamacro",
  2705. height: math.unit(7500, "feet")
  2706. },
  2707. {
  2708. name: "Gigamacro",
  2709. height: math.unit(570000, "miles")
  2710. }
  2711. ],
  2712. math.unit(7500, "feet")
  2713. )
  2714. };
  2715. characterMakers["Rain Fallen"] = () => {
  2716. return makeCharacter(
  2717. "Rain Fallen",
  2718. "Rain Fallen",
  2719. {
  2720. front: {
  2721. height: math.unit(6, "feet"),
  2722. weight: math.unit(210, "lbs"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/rain/front.svg"
  2726. }
  2727. },
  2728. side: {
  2729. height: math.unit(6, "feet"),
  2730. weight: math.unit(210, "lbs"),
  2731. name: "Side",
  2732. image: {
  2733. source: "./media/characters/rain/side.svg"
  2734. }
  2735. },
  2736. back: {
  2737. height: math.unit(6, "feet"),
  2738. weight: math.unit(210, "lbs"),
  2739. name: "Back",
  2740. image: {
  2741. source: "./media/characters/rain/back.svg"
  2742. }
  2743. },
  2744. feral: {
  2745. height: math.unit(9, "feet"),
  2746. weight: math.unit(700, "lbs"),
  2747. name: "Feral",
  2748. image: {
  2749. source: "./media/characters/rain/feral.svg"
  2750. }
  2751. },
  2752. },
  2753. [
  2754. {
  2755. name: "Normal",
  2756. height: math.unit(5, "meter")
  2757. },
  2758. {
  2759. name: "Macro",
  2760. height: math.unit(150, "meter")
  2761. },
  2762. {
  2763. name: "Megamacro",
  2764. height: math.unit(278e6, "meter")
  2765. },
  2766. {
  2767. name: "Gigamacro",
  2768. height: math.unit(2e9, "meter")
  2769. },
  2770. {
  2771. name: "Teramacro",
  2772. height: math.unit(8e12, "meter")
  2773. },
  2774. {
  2775. name: "Devourer",
  2776. height: math.unit(14, "zettameters")
  2777. },
  2778. {
  2779. name: "Scarlet King",
  2780. height: math.unit(18, "yottameters")
  2781. },
  2782. {
  2783. name: "Void",
  2784. height: math.unit(6.66e66, "yottameters")
  2785. }
  2786. ],
  2787. math.unit(150, "meter")
  2788. )
  2789. };
  2790. characterMakers["Zaakira"] = () => {
  2791. return makeCharacter(
  2792. "Zaakira",
  2793. "Jazzywolf",
  2794. {
  2795. standing: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(180, "lbs"),
  2798. name: "Standing",
  2799. image: {
  2800. source: "./media/characters/zaakira/standing.svg"
  2801. }
  2802. },
  2803. laying: {
  2804. height: math.unit(3, "feet"),
  2805. weight: math.unit(180, "lbs"),
  2806. name: "Laying",
  2807. image: {
  2808. source: "./media/characters/zaakira/laying.svg"
  2809. }
  2810. },
  2811. },
  2812. [
  2813. {
  2814. name: "Normal",
  2815. height: math.unit(12, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(279, "feet")
  2820. }
  2821. ],
  2822. math.unit(279, "feet")
  2823. )
  2824. };
  2825. characterMakers["Sigvald"] = () => {
  2826. return makeCharacter(
  2827. "Sigvald",
  2828. "Sigvald",
  2829. {
  2830. front: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(250, "lbs"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/sigvald/front.svg",
  2836. extra: 1000 / 850
  2837. }
  2838. },
  2839. back: {
  2840. height: math.unit(6, "feet"),
  2841. weight: math.unit(250, "lbs"),
  2842. name: "Back",
  2843. image: {
  2844. source: "./media/characters/sigvald/back.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(8, "feet")
  2852. },
  2853. {
  2854. name: "Large",
  2855. height: math.unit(12, "feet")
  2856. },
  2857. {
  2858. name: "Larger",
  2859. height: math.unit(20, "feet")
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(150, "feet")
  2864. },
  2865. {
  2866. name: "Macro+",
  2867. height: math.unit(200, "feet")
  2868. },
  2869. ],
  2870. math.unit(200, "feet")
  2871. )
  2872. };
  2873. characterMakers["Scott"] = () => {
  2874. return makeCharacter(
  2875. "Scott",
  2876. "Scott",
  2877. {
  2878. side: {
  2879. height: math.unit(12, "feet"),
  2880. weight: math.unit(3000, "lbs"),
  2881. name: "Side",
  2882. image: {
  2883. source: "./media/characters/scott/side.svg",
  2884. }
  2885. },
  2886. upright: {
  2887. height: math.unit(12, "feet"),
  2888. weight: math.unit(3000, "lbs"),
  2889. name: "Upright",
  2890. image: {
  2891. source: "./media/characters/scott/upright.svg",
  2892. }
  2893. },
  2894. },
  2895. [],
  2896. math.unit(12, "feet")
  2897. )
  2898. };
  2899. characterMakers["Tobias"] = () => {
  2900. return makeCharacter(
  2901. "Tobias",
  2902. "Tobias",
  2903. {
  2904. side: {
  2905. height: math.unit(8, "meters"),
  2906. weight: math.unit(84755, "lbs"),
  2907. name: "Side",
  2908. image: {
  2909. source: "./media/characters/tobias/side.svg",
  2910. extra: 5 / 4
  2911. }
  2912. },
  2913. },
  2914. [],
  2915. math.unit(8, "meters")
  2916. )
  2917. };
  2918. characterMakers["Kieran"] = () => {
  2919. return makeCharacter(
  2920. "Kieran",
  2921. "Kieran",
  2922. {
  2923. front: {
  2924. height: math.unit(5.5, "feet"),
  2925. weight: math.unit(400, "lbs"),
  2926. name: "Front",
  2927. image: {
  2928. source: "./media/characters/kieran/front.svg",
  2929. extra: 1.05
  2930. }
  2931. },
  2932. side: {
  2933. height: math.unit(5.5, "feet"),
  2934. weight: math.unit(400, "lbs"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/kieran/side.svg",
  2938. extra: 950 / 850
  2939. }
  2940. },
  2941. },
  2942. [],
  2943. math.unit(5.5, "feet")
  2944. )
  2945. };
  2946. characterMakers["Sanya"] = () => {
  2947. return makeCharacter(
  2948. "Sanya",
  2949. "BanterGhost",
  2950. {
  2951. side: {
  2952. height: math.unit(2, "meters"),
  2953. weight: math.unit(70, "kg"),
  2954. name: "Side",
  2955. image: {
  2956. source: "./media/characters/sanya/side.svg",
  2957. bottom: 0.02,
  2958. extra: 1.02
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Small",
  2965. height: math.unit(2, "meters")
  2966. },
  2967. {
  2968. name: "Normal",
  2969. height: math.unit(3, "meters")
  2970. },
  2971. {
  2972. name: "Macro",
  2973. height: math.unit(16, "meters")
  2974. },
  2975. ],
  2976. math.unit(16, "meters")
  2977. )
  2978. };
  2979. characterMakers["Miranda"] = () => {
  2980. return makeCharacter(
  2981. "Miranda",
  2982. "MirandaAqrayla",
  2983. {
  2984. side: {
  2985. height: math.unit(2, "meters"),
  2986. weight: math.unit(120, "kg"),
  2987. name: "Front",
  2988. image: {
  2989. source: "./media/characters/miranda/front.svg",
  2990. extra: 10.6 / 10
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(10, "feet")
  2998. }
  2999. ],
  3000. math.unit(10, "feet")
  3001. )
  3002. };
  3003. characterMakers["James"] = () => {
  3004. return makeCharacter(
  3005. "James",
  3006. "MirandaAqrayla",
  3007. {
  3008. side: {
  3009. height: math.unit(2, "meters"),
  3010. weight: math.unit(100, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/james/front.svg",
  3014. extra: 10 / 8.5
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Normal",
  3021. height: math.unit(8.5, "feet")
  3022. }
  3023. ],
  3024. math.unit(8.5, "feet")
  3025. )
  3026. };
  3027. characterMakers["Heather"] = () => {
  3028. return makeCharacter(
  3029. "Heather",
  3030. "MirandaAqrayla",
  3031. {
  3032. side: {
  3033. height: math.unit(9.5, "feet"),
  3034. weight: math.unit(2500, "lbs"),
  3035. name: "Side",
  3036. image: {
  3037. source: "./media/characters/heather/side.svg"
  3038. }
  3039. },
  3040. },
  3041. [
  3042. {
  3043. name: "Normal",
  3044. height: math.unit(9.5, "feet")
  3045. }
  3046. ],
  3047. math.unit(9.5, "feet")
  3048. )
  3049. };
  3050. characterMakers["Lukas"] = () => {
  3051. return makeCharacter(
  3052. "Lukas",
  3053. "MirandaAqrayla",
  3054. {
  3055. side: {
  3056. height: math.unit(6.5, "feet"),
  3057. weight: math.unit(400, "lbs"),
  3058. name: "Side",
  3059. image: {
  3060. source: "./media/characters/lukas/side.svg",
  3061. extra: 7.25 / 6.5
  3062. }
  3063. },
  3064. },
  3065. [
  3066. {
  3067. name: "Normal",
  3068. height: math.unit(6.5, "feet")
  3069. }
  3070. ],
  3071. math.unit(6.5, "feet")
  3072. )
  3073. };
  3074. characterMakers["Louise"] = () => {
  3075. return makeCharacter(
  3076. "Louise",
  3077. "MirandaAqrayla",
  3078. {
  3079. side: {
  3080. height: math.unit(5, "feet"),
  3081. weight: math.unit(3000, "lbs"),
  3082. name: "Side",
  3083. image: {
  3084. source: "./media/characters/louise/side.svg"
  3085. }
  3086. },
  3087. },
  3088. [
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(5, "feet")
  3092. }
  3093. ],
  3094. math.unit(5, "feet")
  3095. )
  3096. };
  3097. characterMakers["Ramona"] = () => {
  3098. return makeCharacter(
  3099. "Ramona",
  3100. "ZakuraTech",
  3101. {
  3102. side: {
  3103. height: math.unit(6, "feet"),
  3104. weight: math.unit(150, "lbs"),
  3105. name: "Side",
  3106. image: {
  3107. source: "./media/characters/ramona/side.svg"
  3108. }
  3109. },
  3110. },
  3111. [
  3112. {
  3113. name: "Normal",
  3114. height: math.unit(5.3, "meters")
  3115. },
  3116. {
  3117. name: "Macro",
  3118. height: math.unit(20, "stories")
  3119. },
  3120. {
  3121. name: "Macro+",
  3122. height: math.unit(50, "stories")
  3123. },
  3124. ],
  3125. math.unit(5.3, "meters")
  3126. )
  3127. };
  3128. characterMakers["Deerpuff"] = () => {
  3129. return makeCharacter(
  3130. "Deerpuff",
  3131. "Deerpuff",
  3132. {
  3133. standing: {
  3134. height: math.unit(5.75, "feet"),
  3135. weight: math.unit(160, "lbs"),
  3136. name: "Standing",
  3137. image: {
  3138. source: "./media/characters/deerpuff/standing.svg",
  3139. extra: 682 / 624
  3140. }
  3141. },
  3142. sitting: {
  3143. height: math.unit(5.75 / 1.79, "feet"),
  3144. weight: math.unit(160, "lbs"),
  3145. name: "Sitting",
  3146. image: {
  3147. source: "./media/characters/deerpuff/sitting.svg",
  3148. bottom: 44 / 400,
  3149. extra: 1 / (1 - 44 / 400)
  3150. }
  3151. },
  3152. taurLaying: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(400, "lbs"),
  3155. name: "Taur (Laying)",
  3156. image: {
  3157. source: "./media/characters/deerpuff/taur-laying.svg"
  3158. }
  3159. },
  3160. },
  3161. [
  3162. {
  3163. name: "Puffball",
  3164. height: math.unit(6, "inches")
  3165. },
  3166. {
  3167. name: "Normalpuff",
  3168. height: math.unit(5.75, "feet")
  3169. },
  3170. {
  3171. name: "Macropuff",
  3172. height: math.unit(1500, "feet")
  3173. },
  3174. {
  3175. name: "Megapuff",
  3176. height: math.unit(500, "miles")
  3177. },
  3178. {
  3179. name: "Gigapuff",
  3180. height: math.unit(250000, "miles")
  3181. },
  3182. {
  3183. name: "Omegapuff",
  3184. height: math.unit(1000, "lightyears")
  3185. },
  3186. ],
  3187. math.unit(1500, "feet")
  3188. )
  3189. };
  3190. characterMakers["Vivian"] = () => {
  3191. return makeCharacter(
  3192. "Vivian",
  3193. "Fauxlacine",
  3194. {
  3195. stomping: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(170, "lbs"),
  3198. name: "Stomping",
  3199. image: {
  3200. source: "./media/characters/vivian/stomping.svg"
  3201. }
  3202. },
  3203. sitting: {
  3204. height: math.unit(6 / 1.75, "feet"),
  3205. weight: math.unit(170, "lbs"),
  3206. name: "Sitting",
  3207. image: {
  3208. source: "./media/characters/vivian/sitting.svg",
  3209. bottom: 1 / 6.4,
  3210. extra: (1 / (1 - 1 / 6.4)) * (1 + 164 / 1600)
  3211. }
  3212. },
  3213. },
  3214. [
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(7, "feet")
  3218. },
  3219. {
  3220. name: "Macro",
  3221. height: math.unit(10, "stories")
  3222. },
  3223. {
  3224. name: "Macro+",
  3225. height: math.unit(30, "stories")
  3226. },
  3227. {
  3228. name: "Megamacro",
  3229. height: math.unit(10, "miles")
  3230. },
  3231. {
  3232. name: "Megamacro+",
  3233. height: math.unit(2750000, "meters")
  3234. },
  3235. ],
  3236. math.unit(7, "feet")
  3237. )
  3238. };
  3239. characterMakers["Prince"] = () => {
  3240. return makeCharacter(
  3241. "Prince",
  3242. "Kurrikage",
  3243. {
  3244. front: {
  3245. height: math.unit(6, "feet"),
  3246. weight: math.unit(160, "lbs"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/prince/front.svg",
  3250. extra: 3400/3000
  3251. }
  3252. },
  3253. jumping: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(160, "lbs"),
  3256. name: "Jumping",
  3257. image: {
  3258. source: "./media/characters/prince/jump.svg",
  3259. extra: 2555/2134
  3260. }
  3261. },
  3262. },
  3263. [
  3264. {
  3265. name: "Normal",
  3266. height: math.unit(7.75, "feet"),
  3267. default: true
  3268. }
  3269. ]
  3270. )
  3271. };
  3272. characterMakers["Psymon"] = () => {
  3273. return makeCharacter(
  3274. "Psymon",
  3275. "Kurrikage",
  3276. {
  3277. standing: {
  3278. height: math.unit(6, "feet"),
  3279. weight: math.unit(300, "lbs"),
  3280. name: "Standing",
  3281. image: {
  3282. source: "./media/characters/psymon/standing.svg",
  3283. extra: 1888/1810
  3284. }
  3285. },
  3286. slithering: {
  3287. height: math.unit(6, "feet"),
  3288. weight: math.unit(300, "lbs"),
  3289. name: "Slithering",
  3290. image: {
  3291. source: "./media/characters/psymon/slithering.svg",
  3292. extra: 1330/1224
  3293. }
  3294. },
  3295. slitheringAlt: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(300, "lbs"),
  3298. name: "Slithering (Alt)",
  3299. image: {
  3300. source: "./media/characters/psymon/slithering-alt.svg",
  3301. extra: 1330/1224
  3302. }
  3303. },
  3304. },
  3305. [
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(11.25, "feet")
  3309. }
  3310. ]
  3311. )
  3312. };
  3313. characterMakers["Daimos"] = () => {
  3314. return makeCharacter(
  3315. "Daimos",
  3316. "Kurrikage",
  3317. {
  3318. front: {
  3319. height: math.unit(6, "feet"),
  3320. weight: math.unit(180, "lbs"),
  3321. name: "Front",
  3322. image: {
  3323. source: "./media/characters/daimos/front.svg",
  3324. extra: 4160/3897
  3325. }
  3326. }
  3327. },
  3328. [
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(8, "feet")
  3332. }
  3333. ]
  3334. )
  3335. };
  3336. characterMakers["Blake"] = () => {
  3337. return makeCharacter(
  3338. "Blake",
  3339. "Kurrikage",
  3340. {
  3341. side: {
  3342. height: math.unit(6, "feet"),
  3343. weight: math.unit(180, "lbs"),
  3344. name: "Side",
  3345. image: {
  3346. source: "./media/characters/blake/side.svg",
  3347. extra: 1212/1120
  3348. }
  3349. },
  3350. crouched: {
  3351. height: math.unit(6*0.57, "feet"),
  3352. weight: math.unit(180, "lbs"),
  3353. name: "Crouched",
  3354. image: {
  3355. source: "./media/characters/blake/crouched.svg",
  3356. extra: 840/587
  3357. }
  3358. },
  3359. bent: {
  3360. height: math.unit(6*0.75, "feet"),
  3361. weight: math.unit(180, "lbs"),
  3362. name: "Bent",
  3363. image: {
  3364. source: "./media/characters/blake/bent.svg",
  3365. extra: 592/544
  3366. }
  3367. },
  3368. },
  3369. [
  3370. {
  3371. name: "Normal",
  3372. height: math.unit(8 + 1/6, "feet")
  3373. }
  3374. ]
  3375. )
  3376. };
  3377. characterMakers["Guisetto"] = () => {
  3378. return makeCharacter(
  3379. "Guisetto",
  3380. "Kurrikage",
  3381. {
  3382. front: {
  3383. height: math.unit(6, "feet"),
  3384. weight: math.unit(180, "lbs"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/guisetto/front.svg",
  3388. extra: 856/817
  3389. }
  3390. },
  3391. airborne: {
  3392. height: math.unit(6, "feet"),
  3393. weight: math.unit(180, "lbs"),
  3394. name: "Airborne",
  3395. image: {
  3396. source: "./media/characters/guisetto/airborne.svg",
  3397. extra: 584/525
  3398. }
  3399. },
  3400. },
  3401. [
  3402. {
  3403. name: "Normal",
  3404. height: math.unit(10 + 11/12, "feet")
  3405. }
  3406. ]
  3407. )
  3408. };
  3409. characterMakers["Luxor"] = () => {
  3410. return makeCharacter(
  3411. "Luxor",
  3412. "Kurrikage",
  3413. {
  3414. front: {
  3415. height: math.unit(6, "feet"),
  3416. weight: math.unit(180, "lbs"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/luxor/front.svg",
  3420. extra: 2940/2152
  3421. }
  3422. },
  3423. back: {
  3424. height: math.unit(6, "feet"),
  3425. weight: math.unit(180, "lbs"),
  3426. name: "Back",
  3427. image: {
  3428. source: "./media/characters/luxor/back.svg",
  3429. extra: 1083/960
  3430. }
  3431. },
  3432. },
  3433. [
  3434. {
  3435. name: "Normal",
  3436. height: math.unit(5 + 5/6, "feet"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Lamp",
  3441. height: math.unit(50, "feet")
  3442. },
  3443. {
  3444. name: "Lämp",
  3445. height: math.unit(300, "feet")
  3446. },
  3447. {
  3448. name: "The sun is a lamp",
  3449. height: math.unit(250000, "miles")
  3450. },
  3451. ]
  3452. )
  3453. };
  3454. characterMakers["Huoyan"] = () => {
  3455. return makeCharacter(
  3456. "Huoyan",
  3457. "Kurrikage",
  3458. {
  3459. front: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(50, "lbs"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/huoyan/front.svg"
  3465. }
  3466. },
  3467. side: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(180, "lbs"),
  3470. name: "Side",
  3471. image: {
  3472. source: "./media/characters/huoyan/side.svg"
  3473. }
  3474. },
  3475. },
  3476. [
  3477. {
  3478. name: "Normal",
  3479. height: math.unit(65, "feet")
  3480. }
  3481. ]
  3482. )
  3483. };
  3484. characterMakers["Tails"] = () => {
  3485. return makeCharacter(
  3486. "Tails",
  3487. "Rainier",
  3488. {
  3489. front: {
  3490. height: math.unit(5 + 3/4, "feet"),
  3491. weight: math.unit(120, "lbs"),
  3492. name: "Front",
  3493. image: {
  3494. source: "./media/characters/tails/front.svg"
  3495. }
  3496. }
  3497. },
  3498. [
  3499. {
  3500. name: "Normal",
  3501. height: math.unit(5 + 3/4, "feet")
  3502. }
  3503. ]
  3504. )
  3505. };
  3506. characterMakers["Rainy"] = () => {
  3507. return makeCharacter(
  3508. "Rainy",
  3509. "Rainier",
  3510. {
  3511. front: {
  3512. height: math.unit(4, "feet"),
  3513. weight: math.unit(50, "lbs"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/rainy/front.svg"
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Macro",
  3523. height: math.unit(800, "feet")
  3524. }
  3525. ]
  3526. )
  3527. };
  3528. characterMakers["Rainier"] = () => {
  3529. return makeCharacter(
  3530. "Rainier",
  3531. "Rainier",
  3532. {
  3533. front: {
  3534. height: math.unit(6, "feet"),
  3535. weight: math.unit(150, "lbs"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/rainier/front.svg"
  3539. }
  3540. }
  3541. },
  3542. [
  3543. {
  3544. name: "Micro",
  3545. height: math.unit(2, "mm")
  3546. }
  3547. ]
  3548. )
  3549. };
  3550. characterMakers["Andy"] = () => {
  3551. return makeCharacter(
  3552. "Andy",
  3553. "drewbermeister",
  3554. {
  3555. front: {
  3556. height: math.unit(6, "feet"),
  3557. weight: math.unit(180, "lbs"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/andy/front.svg"
  3561. }
  3562. }
  3563. },
  3564. [
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(8, "feet")
  3568. },
  3569. {
  3570. name: "Macro",
  3571. height: math.unit(1000, "feet")
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(5, "miles")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(5000, "miles")
  3580. },
  3581. ]
  3582. )
  3583. };
  3584. characterMakers["Cimmaron"] = () => {
  3585. return makeCharacter(
  3586. "Cimmaron",
  3587. "Cimmaron",
  3588. {
  3589. frontClothed: {
  3590. height: math.unit(6, "feet"),
  3591. weight: math.unit(210, "lbs"),
  3592. name: "Front (Clothed)",
  3593. image: {
  3594. source: "./media/characters/cimmaron/front-clothed.svg",
  3595. extra: 701/676
  3596. }
  3597. },
  3598. backClothed: {
  3599. height: math.unit(6, "feet"),
  3600. weight: math.unit(210, "lbs"),
  3601. name: "Back (Clothed)",
  3602. image: {
  3603. source: "./media/characters/cimmaron/back-clothed.svg",
  3604. extra: 701/676
  3605. }
  3606. },
  3607. frontNude: {
  3608. height: math.unit(6, "feet"),
  3609. weight: math.unit(210, "lbs"),
  3610. name: "Front (Nude)",
  3611. image: {
  3612. source: "./media/characters/cimmaron/front-nude.svg",
  3613. extra: 701/676
  3614. }
  3615. },
  3616. backNude: {
  3617. height: math.unit(6, "feet"),
  3618. weight: math.unit(210, "lbs"),
  3619. name: "Back (Nude)",
  3620. image: {
  3621. source: "./media/characters/cimmaron/back-nude.svg",
  3622. extra: 701/676
  3623. }
  3624. }
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(6, "feet"),
  3630. default: true
  3631. }
  3632. ]
  3633. )
  3634. };
  3635. characterMakers["Akari Kaen"] = () => {
  3636. return makeCharacter(
  3637. "Akari Kaen",
  3638. "Akari",
  3639. {
  3640. front: {
  3641. height: math.unit(6, "feet"),
  3642. weight: math.unit(200, "lbs"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/akari/front.svg",
  3646. bottom: 0.04,
  3647. extra: (1 / (1 - 0.04)) * (962/901)
  3648. }
  3649. }
  3650. },
  3651. [
  3652. {
  3653. name: "Normal",
  3654. height: math.unit(10, "inches"),
  3655. default: true
  3656. }
  3657. ]
  3658. )
  3659. };
  3660. characterMakers["Cynosura"] = () => {
  3661. return makeCharacter(
  3662. "Cynosura",
  3663. "Cynosura",
  3664. {
  3665. front: {
  3666. height: math.unit(6, "feet"),
  3667. weight: math.unit(140, "lbs"),
  3668. name: "Front",
  3669. image: {
  3670. source: "./media/characters/cynosura/front.svg",
  3671. extra: 896/847
  3672. }
  3673. },
  3674. back: {
  3675. height: math.unit(6, "feet"),
  3676. weight: math.unit(140, "lbs"),
  3677. name: "Back",
  3678. image: {
  3679. source: "./media/characters/cynosura/back.svg",
  3680. extra: 1365/1250
  3681. }
  3682. },
  3683. },
  3684. [
  3685. {
  3686. name: "Micro",
  3687. height: math.unit(4, "inches")
  3688. },
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(5.75, "feet"),
  3692. default: true
  3693. },
  3694. {
  3695. name: "Tall",
  3696. height: math.unit(10, "feet")
  3697. },
  3698. {
  3699. name: "Big",
  3700. height: math.unit(20, "feet")
  3701. },
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(50, "feet")
  3705. },
  3706. ]
  3707. )
  3708. };
  3709. characterMakers["Gin"] = () => {
  3710. return makeCharacter(
  3711. "Gin",
  3712. "Ozzie_gt",
  3713. {
  3714. front: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(170, "lbs"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/gin/front.svg"
  3720. }
  3721. },
  3722. foot: {
  3723. height: math.unit(6/4.25, "feet"),
  3724. name: "Foot",
  3725. image: {
  3726. source: "./media/characters/gin/foot.svg"
  3727. }
  3728. },
  3729. sole: {
  3730. height: math.unit(6/4.40, "feet"),
  3731. name: "Sole",
  3732. image: {
  3733. source: "./media/characters/gin/sole.svg"
  3734. }
  3735. },
  3736. },
  3737. [
  3738. {
  3739. name: "Normal",
  3740. height: math.unit(9 + 4/12, "feet")
  3741. },
  3742. {
  3743. name: "Macro",
  3744. height: math.unit(1500, "feet")
  3745. },
  3746. {
  3747. name: "Megamacro",
  3748. height: math.unit(200, "miles"),
  3749. default: true
  3750. },
  3751. {
  3752. name: "Gigamacro",
  3753. height: math.unit(500, "megameters")
  3754. },
  3755. {
  3756. name: "Teramacro",
  3757. height: math.unit(15, "lightyears")
  3758. }
  3759. ]
  3760. )
  3761. };
  3762. characterMakers["Guy"] = () => {
  3763. return makeCharacter(
  3764. "Guy",
  3765. "Whatastandupguy",
  3766. {
  3767. front: {
  3768. height: math.unit(6 + 1/6, "feet"),
  3769. weight: math.unit(178, "lbs"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/guy/front.svg"
  3773. }
  3774. }
  3775. },
  3776. [
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(6 + 1/6, "feet")
  3780. },
  3781. {
  3782. name: "Large",
  3783. height: math.unit(25 + 7/12, "feet")
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(60 + 9/12, "feet")
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(246, "feet")
  3792. },
  3793. {
  3794. name: "Macro++",
  3795. height: math.unit(878, "feet")
  3796. }
  3797. ]
  3798. )
  3799. };
  3800. characterMakers["Tiberius"] = () => {
  3801. return makeCharacter(
  3802. "Tiberius",
  3803. "movler",
  3804. {
  3805. front: {
  3806. height: math.unit(9, "feet"),
  3807. weight: math.unit(800, "lbs"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/tiberius/front.svg",
  3811. extra: 2295/2071
  3812. }
  3813. },
  3814. back: {
  3815. height: math.unit(9, "feet"),
  3816. weight: math.unit(800, "lbs"),
  3817. name: "Back",
  3818. image: {
  3819. source: "./media/characters/tiberius/back.svg",
  3820. extra: 2373/2160
  3821. }
  3822. },
  3823. },
  3824. [
  3825. {
  3826. name: "Normal",
  3827. height: math.unit(9, "feet"),
  3828. default: true
  3829. }
  3830. ]
  3831. )
  3832. };
  3833. characterMakers["Surgo"] = () => {
  3834. return makeCharacter(
  3835. "Surgo",
  3836. "movler",
  3837. {
  3838. front: {
  3839. height: math.unit(6, "feet"),
  3840. weight: math.unit(600, "lbs"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/surgo/front.svg",
  3844. extra: 3591/2227
  3845. }
  3846. },
  3847. back: {
  3848. height: math.unit(6, "feet"),
  3849. weight: math.unit(600, "lbs"),
  3850. name: "Back",
  3851. image: {
  3852. source: "./media/characters/surgo/back.svg",
  3853. extra: 3557/2228
  3854. }
  3855. },
  3856. laying: {
  3857. height: math.unit(6 * 0.85, "feet"),
  3858. weight: math.unit(600, "lbs"),
  3859. name: "Laying",
  3860. image: {
  3861. source: "./media/characters/surgo/laying.svg"
  3862. }
  3863. },
  3864. },
  3865. [
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(6, "feet"),
  3869. default: true
  3870. }
  3871. ]
  3872. )
  3873. };
  3874. characterMakers["Cibus"] = () => {
  3875. return makeCharacter(
  3876. "Cibus",
  3877. "movler",
  3878. {
  3879. side: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(150, "lbs"),
  3882. name: "Side",
  3883. image: {
  3884. source: "./media/characters/cibus/side.svg",
  3885. extra: 800/400
  3886. }
  3887. },
  3888. },
  3889. [
  3890. {
  3891. name: "Normal",
  3892. height: math.unit(6, "feet"),
  3893. default: true
  3894. }
  3895. ]
  3896. )
  3897. };
  3898. characterMakers["Nibbles"] = () => {
  3899. return makeCharacter(
  3900. "Nibbles",
  3901. "movler",
  3902. {
  3903. front: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(240, "lbs"),
  3906. name: "Front",
  3907. image: {
  3908. source: "./media/characters/nibbles/front.svg"
  3909. }
  3910. },
  3911. side: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(240, "lbs"),
  3914. name: "Side",
  3915. image: {
  3916. source: "./media/characters/nibbles/side.svg"
  3917. }
  3918. },
  3919. },
  3920. [
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(9, "feet"),
  3924. default: true
  3925. }
  3926. ]
  3927. )
  3928. };
  3929. characterMakers["Rikky"] = () => {
  3930. return makeCharacter(
  3931. "Rikky",
  3932. "Quake Yote",
  3933. {
  3934. side: {
  3935. height: math.unit(5 + 1/6, "feet"),
  3936. weight: math.unit(130, "lbs"),
  3937. name: "Side",
  3938. image: {
  3939. source: "./media/characters/rikky/side.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Normal",
  3946. height: math.unit(5 + 1/6, "feet")
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(152, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(7, "miles")
  3956. }
  3957. ]
  3958. )
  3959. };
  3960. characterMakers["Malfressa"] = () => {
  3961. return makeCharacter(
  3962. "Malfressa",
  3963. "Scareye",
  3964. {
  3965. side: {
  3966. height: math.unit(370, "cm"),
  3967. weight: math.unit(350, "lbs"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/malfressa/side.svg"
  3971. }
  3972. },
  3973. walking: {
  3974. height: math.unit(370, "cm"),
  3975. weight: math.unit(350, "lbs"),
  3976. name: "Walking",
  3977. image: {
  3978. source: "./media/characters/malfressa/walking.svg"
  3979. }
  3980. },
  3981. feral: {
  3982. height: math.unit(2500, "cm"),
  3983. weight: math.unit(100000, "lbs"),
  3984. name: "Feral",
  3985. image: {
  3986. source: "./media/characters/malfressa/feral.svg",
  3987. extra: 2108/837 * (1 / (1 - 0.02)),
  3988. bottom: 0.02
  3989. }
  3990. },
  3991. },
  3992. [
  3993. {
  3994. name: "Normal",
  3995. height: math.unit(370, "cm")
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(300, "meters"),
  4000. default: true
  4001. }
  4002. ]
  4003. )
  4004. };
  4005. characterMakers["Jaro"] = () => {
  4006. return makeCharacter(
  4007. "Jaro",
  4008. "Jaro",
  4009. {
  4010. front: {
  4011. height: math.unit(6, "feet"),
  4012. weight: math.unit(60, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/jaro/front.svg"
  4016. }
  4017. },
  4018. back: {
  4019. height: math.unit(6, "feet"),
  4020. weight: math.unit(60, "kg"),
  4021. name: "Back",
  4022. image: {
  4023. source: "./media/characters/jaro/back.svg"
  4024. }
  4025. },
  4026. },
  4027. [
  4028. {
  4029. name: "Micro",
  4030. height: math.unit(7, "inches")
  4031. },
  4032. {
  4033. name: "Normal",
  4034. height: math.unit(5.5, "feet"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Minimacro",
  4039. height: math.unit(20, "feet")
  4040. },
  4041. {
  4042. name: "Macro",
  4043. height: math.unit(200, "meters")
  4044. }
  4045. ]
  4046. )
  4047. };
  4048. characterMakers["Rogue"] = () => {
  4049. return makeCharacter(
  4050. "Rogue",
  4051. "Rogue",
  4052. {
  4053. front: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(195, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/rogue/front.svg"
  4059. }
  4060. },
  4061. },
  4062. [
  4063. {
  4064. name: "Macro",
  4065. height: math.unit(90, "feet"),
  4066. default: true
  4067. },
  4068. ]
  4069. )
  4070. };
  4071. characterMakers["Piper"] = () => {
  4072. return makeCharacter(
  4073. "Piper",
  4074. "Flyhar",
  4075. {
  4076. front: {
  4077. height: math.unit(5 + 8/12, "feet"),
  4078. weight: math.unit(140, "lb"),
  4079. name: "Front",
  4080. image: {
  4081. source: "./media/characters/piper/front.svg",
  4082. extra: 3928/3681
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Micro",
  4089. height: math.unit(2, "inches")
  4090. },
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(5 + 8/12, "feet")
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(250, "feet"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Megamacro",
  4102. height: math.unit(7, "miles")
  4103. },
  4104. ]
  4105. )
  4106. };
  4107. characterMakers["Gemini"] = () => {
  4108. return makeCharacter(
  4109. "Gemini",
  4110. "lajay",
  4111. {
  4112. front: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(220, "lb"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/gemini/front.svg"
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(220, "lb"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/gemini/back.svg"
  4126. }
  4127. },
  4128. kneeling: {
  4129. height: math.unit(6/1.5, "feet"),
  4130. weight: math.unit(220, "lb"),
  4131. name: "Kneeling",
  4132. image: {
  4133. source: "./media/characters/gemini/kneeling.svg",
  4134. bottom: 0.02
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(300, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(6900, "meters")
  4147. },
  4148. ]
  4149. )
  4150. };
  4151. characterMakers["Alicia"] = () => {
  4152. return makeCharacter(
  4153. "Alicia",
  4154. "LittleBig",
  4155. {
  4156. anthro: {
  4157. height: math.unit(2.35, "meters"),
  4158. weight: math.unit(73, "kg"),
  4159. name: "Anthro",
  4160. image: {
  4161. source: "./media/characters/alicia/anthro.svg"
  4162. }
  4163. },
  4164. feral: {
  4165. height: math.unit(1.69, "meters"),
  4166. weight: math.unit(73, "kg"),
  4167. name: "Feral",
  4168. image: {
  4169. source: "./media/characters/alicia/feral.svg"
  4170. }
  4171. },
  4172. },
  4173. [
  4174. {
  4175. name: "Normal",
  4176. height: math.unit(2.35, "meters")
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(60, "meters"),
  4181. default: true
  4182. },
  4183. {
  4184. name: "Megamacro",
  4185. height: math.unit(10000, "kilometers")
  4186. },
  4187. ]
  4188. )
  4189. };
  4190. characterMakers["Archy"] = () => {
  4191. return makeCharacter(
  4192. "Archy",
  4193. "ArchyD",
  4194. {
  4195. front: {
  4196. height: math.unit(7, "feet"),
  4197. weight: math.unit(250, "lbs"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/archy/front.svg"
  4201. }
  4202. }
  4203. },
  4204. [
  4205. {
  4206. name: "Micro",
  4207. height: math.unit(1, "inch")
  4208. },
  4209. {
  4210. name: "Shorty",
  4211. height: math.unit(5, "feet")
  4212. },
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(7, "feet")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(600, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(1, "mile")
  4225. },
  4226. ]
  4227. )
  4228. };
  4229. characterMakers["Berri"] = () => {
  4230. return makeCharacter(
  4231. "Berri",
  4232. "LittleBig",
  4233. {
  4234. front: {
  4235. height: math.unit(1.65, "meters"),
  4236. weight: math.unit(74, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/berri/front.svg"
  4240. }
  4241. }
  4242. },
  4243. [
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(1.65, "meters")
  4247. },
  4248. {
  4249. name: "Macro",
  4250. height: math.unit(60, "m"),
  4251. default: true
  4252. },
  4253. {
  4254. name: "Megamacro",
  4255. height: math.unit(9.213, "km")
  4256. },
  4257. {
  4258. name: "Planet Eater",
  4259. height: math.unit(489, "megameters")
  4260. },
  4261. {
  4262. name: "Teramacro",
  4263. height: math.unit(2471635000000, "meters")
  4264. },
  4265. {
  4266. name: "Examacro",
  4267. height: math.unit(8.0624e+26, "meters")
  4268. }
  4269. ]
  4270. )
  4271. };
  4272. characterMakers["Lexi"] = () => {
  4273. return makeCharacter(
  4274. "Lexi",
  4275. "LittleBig",
  4276. {
  4277. front: {
  4278. height: math.unit(1.72, "meters"),
  4279. weight: math.unit(68, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/lexi/front.svg"
  4283. }
  4284. }
  4285. },
  4286. [
  4287. {
  4288. name: "Very Smol",
  4289. height: math.unit(10, "mm")
  4290. },
  4291. {
  4292. name: "Micro",
  4293. height: math.unit(6.8, "cm"),
  4294. default: true
  4295. },
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(1.72, "m")
  4299. }
  4300. ]
  4301. )
  4302. };
  4303. characterMakers["Martin"] = () => {
  4304. return makeCharacter(
  4305. "Martin",
  4306. "LittleBig",
  4307. {
  4308. front: {
  4309. height: math.unit(1.69, "meters"),
  4310. weight: math.unit(68, "kg"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/martin/front.svg",
  4314. extra: 596/581
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Micro",
  4321. height: math.unit(6.85, "cm"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(1.69, "m")
  4327. }
  4328. ]
  4329. )
  4330. };
  4331. characterMakers["Juno"] = () => {
  4332. return makeCharacter(
  4333. "Juno",
  4334. "LittleBig",
  4335. {
  4336. front: {
  4337. height: math.unit(1.69, "meters"),
  4338. weight: math.unit(68, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/juno/front.svg"
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Micro",
  4348. height: math.unit(7, "cm")
  4349. },
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(1.89, "m")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(353, "meters"),
  4357. default: true
  4358. }
  4359. ]
  4360. )
  4361. };
  4362. characterMakers["Samantha"] = () => {
  4363. return makeCharacter(
  4364. "Samantha",
  4365. "LittleBig",
  4366. {
  4367. front: {
  4368. height: math.unit(1.93, "meters"),
  4369. weight: math.unit(83, "kg"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/samantha/front.svg"
  4373. }
  4374. },
  4375. frontClothed: {
  4376. height: math.unit(1.93, "meters"),
  4377. weight: math.unit(83, "kg"),
  4378. name: "Front (Clothed)",
  4379. image: {
  4380. source: "./media/characters/samantha/front-clothed.svg"
  4381. }
  4382. },
  4383. back: {
  4384. height: math.unit(1.93, "meters"),
  4385. weight: math.unit(83, "kg"),
  4386. name: "Back",
  4387. image: {
  4388. source: "./media/characters/samantha/back.svg"
  4389. }
  4390. },
  4391. },
  4392. [
  4393. {
  4394. name: "Normal",
  4395. height: math.unit(1.93, "m")
  4396. },
  4397. {
  4398. name: "Macro",
  4399. height: math.unit(74, "meters"),
  4400. default: true
  4401. },
  4402. {
  4403. name: "Macro+",
  4404. height: math.unit(223, "meters"),
  4405. },
  4406. {
  4407. name: "Megamacro",
  4408. height: math.unit(8381, "meters"),
  4409. },
  4410. {
  4411. name: "Megamacro+",
  4412. height: math.unit(12000, "kilometers")
  4413. },
  4414. ]
  4415. )
  4416. };
  4417. characterMakers["Dr. Clay"] = () => {
  4418. return makeCharacter(
  4419. "Dr. Clay",
  4420. "LittleBig",
  4421. {
  4422. front: {
  4423. height: math.unit(1.92, "meters"),
  4424. weight: math.unit(80, "kg"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/dr-clay/front.svg"
  4428. }
  4429. },
  4430. frontClothed: {
  4431. height: math.unit(1.92, "meters"),
  4432. weight: math.unit(80, "kg"),
  4433. name: "Front (Clothed)",
  4434. image: {
  4435. source: "./media/characters/dr-clay/front-clothed.svg"
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Normal",
  4442. height: math.unit(1.92, "m")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(214, "meters"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Macro+",
  4451. height: math.unit(12.237, "meters"),
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(557, "megameters"),
  4456. },
  4457. {
  4458. name: "Unimaginable",
  4459. height: math.unit(120e9, "lightyears")
  4460. },
  4461. ]
  4462. )
  4463. };
  4464. characterMakers["Wyvrn Ripsnarl"] = () => {
  4465. return makeCharacter(
  4466. "Wyvrn Ripsnarl",
  4467. "LoboRaptorLo",
  4468. {
  4469. front: {
  4470. height: math.unit(2, "meters"),
  4471. weight: math.unit(80, "kg"),
  4472. name: "Front",
  4473. image: {
  4474. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4475. }
  4476. }
  4477. },
  4478. [
  4479. {
  4480. name: "Teramacro",
  4481. height: math.unit(500000, "lightyears")
  4482. },
  4483. ]
  4484. )
  4485. };
  4486. characterMakers["Vemus"] = () => {
  4487. return makeCharacter(
  4488. "Vemus",
  4489. "Vemus",
  4490. {
  4491. front: {
  4492. height: math.unit(2, "meters"),
  4493. weight: math.unit(150, "kg"),
  4494. name: "Front",
  4495. image: {
  4496. source: "./media/characters/vemus/front.svg",
  4497. extra: 2384/2084
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(3, "meters"),
  4505. default: true
  4506. },
  4507. {
  4508. name: "Lorg",
  4509. height: math.unit(7, "meters")
  4510. },
  4511. {
  4512. name: "More Lorg",
  4513. height: math.unit(250, "meters")
  4514. },
  4515. ]
  4516. )
  4517. };
  4518. characterMakers["Beherit"] = () => {
  4519. return makeCharacter(
  4520. "Beherit",
  4521. "Beherit",
  4522. {
  4523. front: {
  4524. height: math.unit(2, "meters"),
  4525. weight: math.unit(70, "kg"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/beherit/front.svg",
  4529. extra: 1408/1242
  4530. }
  4531. }
  4532. },
  4533. [
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(6, "feet")
  4537. },
  4538. {
  4539. name: "Lorg",
  4540. height: math.unit(25, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "Lorger",
  4545. height: math.unit(75, "feet")
  4546. },
  4547. {
  4548. name: "Macro",
  4549. height: math.unit(200, "meters")
  4550. },
  4551. ]
  4552. )
  4553. };
  4554. characterMakers["Everett"] = () => {
  4555. return makeCharacter(
  4556. "Everett",
  4557. "Beherit",
  4558. {
  4559. front: {
  4560. height: math.unit(2, "meters"),
  4561. weight: math.unit(150, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/everett/front.svg",
  4565. extra: 2038/1737
  4566. }
  4567. },
  4568. paw: {
  4569. height: math.unit(2/3.6, "meters"),
  4570. name: "Paw",
  4571. image: {
  4572. source: "./media/characters/everett/paw.svg"
  4573. }
  4574. },
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(15, "feet"),
  4580. default: true
  4581. },
  4582. {
  4583. name: "Lorg",
  4584. height: math.unit(70, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Lorger",
  4589. height: math.unit(250, "feet")
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(500, "meters")
  4594. },
  4595. ]
  4596. )
  4597. };
  4598. characterMakers["Rose Lion"] = () => {
  4599. return makeCharacter(
  4600. "Rose Lion",
  4601. "Enormouse",
  4602. {
  4603. front: {
  4604. height: math.unit(2, "meters"),
  4605. weight: math.unit(86, "kg"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/rose-lion/front.svg"
  4609. }
  4610. },
  4611. bent: {
  4612. height: math.unit(2/1.4288, "meters"),
  4613. weight: math.unit(86, "kg"),
  4614. name: "Bent",
  4615. image: {
  4616. source: "./media/characters/rose-lion/bent.svg"
  4617. }
  4618. }
  4619. },
  4620. [
  4621. {
  4622. name: "Mini-Micro",
  4623. height: math.unit(1, "cm")
  4624. },
  4625. {
  4626. name: "Micro",
  4627. height: math.unit(3.5, "inches"),
  4628. default: true
  4629. },
  4630. {
  4631. name: "Normal",
  4632. height: math.unit(6 + 1/6, "feet")
  4633. },
  4634. {
  4635. name: "Mini-Macro",
  4636. height: math.unit(9 + 10/12, "feet")
  4637. },
  4638. ]
  4639. )
  4640. };
  4641. characterMakers["Regal"] = () => {
  4642. return makeCharacter(
  4643. "Regal",
  4644. "Regal Drennen",
  4645. {
  4646. front: {
  4647. height: math.unit(2, "meters"),
  4648. weight: math.unit(350, "lbs"),
  4649. name: "Front",
  4650. image: {
  4651. source: "./media/characters/regal/front.svg"
  4652. }
  4653. },
  4654. back: {
  4655. height: math.unit(2, "meters"),
  4656. weight: math.unit(350, "lbs"),
  4657. name: "Back",
  4658. image: {
  4659. source: "./media/characters/regal/back.svg"
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(350, "feet"),
  4667. default: true
  4668. }
  4669. ]
  4670. )
  4671. };
  4672. characterMakers["Opal"] = () => {
  4673. return makeCharacter(
  4674. "Opal",
  4675. "Enormouse",
  4676. {
  4677. front: {
  4678. height: math.unit(4 + 11/12, "feet"),
  4679. weight: math.unit(100, "lbs"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/opal/front.svg"
  4683. }
  4684. },
  4685. frontAlt: {
  4686. height: math.unit(4 + 11/12, "feet"),
  4687. weight: math.unit(100, "lbs"),
  4688. name: "Front (Alt)",
  4689. image: {
  4690. source: "./media/characters/opal/front-alt.svg"
  4691. }
  4692. },
  4693. },
  4694. [
  4695. {
  4696. name: "Small",
  4697. height: math.unit(4 + 11/12, "feet")
  4698. },
  4699. {
  4700. name: "Normal",
  4701. height: math.unit(20, "feet"),
  4702. default: true
  4703. },
  4704. {
  4705. name: "Macro",
  4706. height: math.unit(120, "feet")
  4707. },
  4708. {
  4709. name: "Megamacro",
  4710. height: math.unit(80, "miles")
  4711. },
  4712. {
  4713. name: "True Size",
  4714. height: math.unit(100000, "lightyears")
  4715. },
  4716. ]
  4717. )
  4718. };
  4719. characterMakers["Vector Wuff"] = () => {
  4720. return makeCharacter(
  4721. "Vector Wuff",
  4722. "Vector",
  4723. {
  4724. front: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(200, "lbs"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/vector-wuff/front.svg"
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(2.8, "meters")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(450, "meters"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Megamacro",
  4745. height: math.unit(15, "kilometers")
  4746. }
  4747. ]
  4748. )
  4749. };
  4750. characterMakers["Dannik"] = () => {
  4751. return makeCharacter(
  4752. "Dannik",
  4753. "LuchaLibreLibro",
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(256, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/dannik/front.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(69.57, "meters"),
  4768. default: true
  4769. },
  4770. ]
  4771. )
  4772. };
  4773. characterMakers["Azura Saharah"] = () => {
  4774. return makeCharacter(
  4775. "Azura Saharah",
  4776. "AzuraSaharah",
  4777. {
  4778. front: {
  4779. height: math.unit(6, "feet"),
  4780. weight: math.unit(120, "lbs"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/azura-saharah/front.svg"
  4784. }
  4785. },
  4786. back: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(120, "lbs"),
  4789. name: "Back",
  4790. image: {
  4791. source: "./media/characters/azura-saharah/back.svg"
  4792. }
  4793. },
  4794. },
  4795. [
  4796. {
  4797. name: "Macro",
  4798. height: math.unit(100, "feet"),
  4799. default: true
  4800. },
  4801. ]
  4802. )
  4803. };
  4804. characterMakers["Kennedy"] = () => {
  4805. return makeCharacter(
  4806. "Kennedy",
  4807. "BossVoss",
  4808. {
  4809. side: {
  4810. height: math.unit(5 + 4/12, "feet"),
  4811. weight: math.unit(163, "lbs"),
  4812. name: "Side",
  4813. image: {
  4814. source: "./media/characters/kennedy/side.svg"
  4815. }
  4816. }
  4817. },
  4818. [
  4819. {
  4820. name: "Standard Doggo",
  4821. height: math.unit(5 + 4/12, "feet")
  4822. },
  4823. {
  4824. name: "Big Doggo",
  4825. height: math.unit(25 + 3/12, "feet"),
  4826. default: true
  4827. },
  4828. ]
  4829. )
  4830. };
  4831. characterMakers["Odi Lunar"] = () => {
  4832. return makeCharacter(
  4833. "Odi Lunar",
  4834. "OdiLunar",
  4835. {
  4836. front: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(90, "lbs"),
  4839. name: "Front",
  4840. image: {
  4841. source: "./media/characters/odi-lunar/front.svg"
  4842. }
  4843. }
  4844. },
  4845. [
  4846. {
  4847. name: "Micro",
  4848. height: math.unit(3, "inches"),
  4849. default: true
  4850. },
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(5.5, "feet")
  4854. }
  4855. ]
  4856. )
  4857. };
  4858. characterMakers["Mandake"] = () => {
  4859. return makeCharacter(
  4860. "Mandake",
  4861. "Dialuca01",
  4862. {
  4863. back: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(220, "lbs"),
  4866. name: "Back",
  4867. image: {
  4868. source: "./media/characters/mandake/back.svg"
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(7, "feet")
  4876. },
  4877. {
  4878. name: "Macro",
  4879. height: math.unit(78, "feet")
  4880. },
  4881. {
  4882. name: "Macro+",
  4883. height: math.unit(300, "meters")
  4884. },
  4885. {
  4886. name: "Macro++",
  4887. height: math.unit(2400, "feet")
  4888. },
  4889. {
  4890. name: "Megamacro",
  4891. height: math.unit(5167, "meters")
  4892. },
  4893. {
  4894. name: "Gigamacro",
  4895. height: math.unit(41769, "miles")
  4896. },
  4897. ]
  4898. )
  4899. };
  4900. characterMakers["Yozey"] = () => {
  4901. return makeCharacter(
  4902. "Yozey",
  4903. "Yozey",
  4904. {
  4905. front: {
  4906. height: math.unit(6, "feet"),
  4907. weight: math.unit(120, "lbs"),
  4908. name: "Front",
  4909. image: {
  4910. source: "./media/characters/yozey/front.svg"
  4911. }
  4912. },
  4913. frontAlt: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(120, "lbs"),
  4916. name: "Front (Alt)",
  4917. image: {
  4918. source: "./media/characters/yozey/front-alt.svg"
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(120, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/yozey/side.svg"
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Micro",
  4933. height: math.unit(3, "inches"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(6, "feet")
  4939. }
  4940. ]
  4941. )
  4942. };
  4943. characterMakers["Valeska Voss"] = () => {
  4944. return makeCharacter(
  4945. "Valeska Voss",
  4946. "BossVoss",
  4947. {
  4948. front: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(103, "lbs"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/valeska-voss/front.svg"
  4954. }
  4955. }
  4956. },
  4957. [
  4958. {
  4959. name: "Mini-Sized Sub",
  4960. height: math.unit(3.1, "inches")
  4961. },
  4962. {
  4963. name: "Mid-Sized Sub",
  4964. height: math.unit(6.2, "inches")
  4965. },
  4966. {
  4967. name: "Full-Sized Sub",
  4968. height: math.unit(9.3, "inches")
  4969. },
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(5 + 2/12, "foot"),
  4973. default: true
  4974. },
  4975. ]
  4976. )
  4977. };
  4978. characterMakers["Gene Zeta"] = () => {
  4979. return makeCharacter(
  4980. "Gene Zeta",
  4981. "Xeebes",
  4982. {
  4983. front: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(160, "lbs"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/gene-zeta/front.svg",
  4989. bottom: 0.03,
  4990. extra: 1 / (1 - 0.03)
  4991. }
  4992. }
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(6.25, "foot"),
  4998. default: true
  4999. },
  5000. ]
  5001. )
  5002. };
  5003. characterMakers["Razinox"] = () => {
  5004. return makeCharacter(
  5005. "Razinox",
  5006. "Razinox",
  5007. {
  5008. front: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(350, "lbs"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/razinox/front.svg",
  5014. extra: 1686/1548
  5015. }
  5016. },
  5017. back: {
  5018. height: math.unit(6, "feet"),
  5019. weight: math.unit(350, "lbs"),
  5020. name: "Back",
  5021. image: {
  5022. source: "./media/characters/razinox/back.svg",
  5023. extra: 1660/1590
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(10 + 8/12, "foot")
  5031. },
  5032. {
  5033. name: "Minimacro",
  5034. height: math.unit(15, "foot")
  5035. },
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(60, "foot"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Megamacro",
  5043. height: math.unit(5, "miles")
  5044. },
  5045. {
  5046. name: "Gigamacro",
  5047. height: math.unit(6000, "miles")
  5048. },
  5049. ]
  5050. )
  5051. };
  5052. characterMakers["Cobalt"] = () => {
  5053. return makeCharacter(
  5054. "Cobalt",
  5055. "Miateshcha",
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(150, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/cobalt/front.svg"
  5063. }
  5064. }
  5065. },
  5066. [
  5067. {
  5068. name: "Normal",
  5069. height: math.unit(8 + 1/12, "foot")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(111, "foot"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Supracosmic",
  5078. height: math.unit(1e42, "feet")
  5079. },
  5080. ]
  5081. )
  5082. };
  5083. characterMakers["Amanda"] = () => {
  5084. return makeCharacter(
  5085. "Amanda",
  5086. "Amanda",
  5087. {
  5088. front: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(140, "lbs"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/amanda/front.svg"
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Micro",
  5100. height: math.unit(5, "inches"),
  5101. default: true
  5102. },
  5103. ]
  5104. )
  5105. };
  5106. characterMakers["Teal"] = () => {
  5107. return makeCharacter(
  5108. "Teal",
  5109. "Teal",
  5110. {
  5111. front: {
  5112. height: math.unit(5.59, "feet"),
  5113. weight: math.unit(250, "lbs"),
  5114. name: "Front",
  5115. image: {
  5116. source: "./media/characters/teal/front.svg"
  5117. }
  5118. },
  5119. frontAlt: {
  5120. height: math.unit(6, "feet"),
  5121. weight: math.unit(250, "lbs"),
  5122. name: "Front (Alt)",
  5123. image: {
  5124. source: "./media/characters/teal/front-alt.svg",
  5125. bottom: 0.04,
  5126. extra: 1 / (1 - 0.04)
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(12, "feet"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(300, "feet")
  5139. },
  5140. ]
  5141. )
  5142. };
  5143. characterMakers["Ravin Amulet"] = () => {
  5144. return makeCharacter(
  5145. "Ravin Amulet",
  5146. "Ravin Amulet",
  5147. {
  5148. frontCat: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(180, "lbs"),
  5151. name: "Front (Cat)",
  5152. image: {
  5153. source: "./media/characters/ravin-amulet/front-cat.svg"
  5154. }
  5155. },
  5156. frontCatAlt: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(180, "lbs"),
  5159. name: "Front (Alt, Cat)",
  5160. image: {
  5161. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5162. }
  5163. },
  5164. frontWerewolf: {
  5165. height: math.unit(6*1.2, "feet"),
  5166. weight: math.unit(225, "lbs"),
  5167. name: "Front (Werewolf)",
  5168. image: {
  5169. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5170. }
  5171. },
  5172. backWerewolf: {
  5173. height: math.unit(6*1.2, "feet"),
  5174. weight: math.unit(225, "lbs"),
  5175. name: "Back (Werewolf)",
  5176. image: {
  5177. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Nano",
  5184. height: math.unit(1, "micrometer")
  5185. },
  5186. {
  5187. name: "Micro",
  5188. height: math.unit(1, "inch")
  5189. },
  5190. {
  5191. name: "Normal",
  5192. height: math.unit(6, "feet"),
  5193. default: true
  5194. },
  5195. {
  5196. name: "Macro",
  5197. height: math.unit(60, "feet")
  5198. }
  5199. ]
  5200. )
  5201. };
  5202. characterMakers["Fluoresce"] = () => {
  5203. return makeCharacter(
  5204. "Fluoresce",
  5205. "Ravin Amulet",
  5206. {
  5207. front: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(165, "lbs"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/fluoresce/front.svg"
  5213. }
  5214. }
  5215. },
  5216. [
  5217. {
  5218. name: "Micro",
  5219. height: math.unit(6, "cm")
  5220. },
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(5 + 7/12, "feet"),
  5224. default: true
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(56, "feet")
  5229. },
  5230. {
  5231. name: "Megamacro",
  5232. height: math.unit(1.9, "miles")
  5233. },
  5234. ]
  5235. )
  5236. };
  5237. characterMakers["Aurora"] = () => {
  5238. return makeCharacter(
  5239. "Aurora",
  5240. "Vonadi",
  5241. {
  5242. front: {
  5243. height: math.unit(9 + 6/12, "feet"),
  5244. weight: math.unit(523, "lbs"),
  5245. name: "Side",
  5246. image: {
  5247. source: "./media/characters/aurora/side.svg"
  5248. }
  5249. }
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(9 + 6/12, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(96, "feet"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "Macro+",
  5263. height: math.unit(243, "feet")
  5264. },
  5265. ]
  5266. )
  5267. };
  5268. characterMakers["Ranek"] = () => {
  5269. return makeCharacter(
  5270. "Ranek",
  5271. "Ranek",
  5272. {
  5273. front: {
  5274. height: math.unit(194, "cm"),
  5275. weight: math.unit(90, "kg"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/ranek/front.svg"
  5279. }
  5280. },
  5281. side: {
  5282. height: math.unit(194, "cm"),
  5283. weight: math.unit(90, "kg"),
  5284. name: "Side",
  5285. image: {
  5286. source: "./media/characters/ranek/side.svg"
  5287. }
  5288. },
  5289. back: {
  5290. height: math.unit(194, "cm"),
  5291. weight: math.unit(90, "kg"),
  5292. name: "Back",
  5293. image: {
  5294. source: "./media/characters/ranek/back.svg"
  5295. }
  5296. },
  5297. feral: {
  5298. height: math.unit(30, "cm"),
  5299. weight: math.unit(1.6, "lbs"),
  5300. name: "Feral",
  5301. image: {
  5302. source: "./media/characters/ranek/feral.svg"
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(194, "cm"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(100, "meters")
  5315. },
  5316. ]
  5317. )
  5318. };
  5319. characterMakers["Andrew Cooper"] = () => {
  5320. return makeCharacter(
  5321. "Andrew Cooper",
  5322. "Vonadi",
  5323. {
  5324. front: {
  5325. height: math.unit(5 + 6/12, "feet"),
  5326. weight: math.unit(153, "lbs"),
  5327. name: "Front",
  5328. image: {
  5329. source: "./media/characters/andrew-cooper/front.svg"
  5330. }
  5331. },
  5332. },
  5333. [
  5334. {
  5335. name: "Nano",
  5336. height: math.unit(1, "mm")
  5337. },
  5338. {
  5339. name: "Micro",
  5340. height: math.unit(2, "inches")
  5341. },
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(5 + 6/12, "feet"),
  5345. default: true
  5346. }
  5347. ]
  5348. )
  5349. };
  5350. characterMakers["Akane Sato"] = () => {
  5351. return makeCharacter(
  5352. "Akane Sato",
  5353. "Vonadi",
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(180, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/akane-sato/front.svg",
  5361. extra: 1219/1140
  5362. }
  5363. },
  5364. back: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(180, "lbs"),
  5367. name: "Back",
  5368. image: {
  5369. source: "./media/characters/akane-sato/back.svg",
  5370. extra: 1219/1170
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(2.5, "meters")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(250, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Megamacro",
  5386. height: math.unit(25, "km")
  5387. },
  5388. ]
  5389. )
  5390. };
  5391. characterMakers["Rook"] = () => {
  5392. return makeCharacter(
  5393. "Rook",
  5394. "Rook",
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(65, "kg"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/rook/front.svg"
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(8.8, "feet")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(88, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(8, "miles")
  5418. },
  5419. ]
  5420. )
  5421. };
  5422. characterMakers["Prodigy"] = () => {
  5423. return makeCharacter(
  5424. "Prodigy",
  5425. "Rook",
  5426. {
  5427. front: {
  5428. height: math.unit(12 + 2/12, "feet"),
  5429. weight: math.unit(808, "lbs"),
  5430. name: "Front",
  5431. image: {
  5432. source: "./media/characters/prodigy/front.svg"
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(12 + 2/12, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(143, "feet")
  5445. },
  5446. {
  5447. name: "Macro+",
  5448. height: math.unit(400, "feet")
  5449. },
  5450. ]
  5451. )
  5452. };
  5453. characterMakers["Daniel"] = () => {
  5454. return makeCharacter(
  5455. "Daniel",
  5456. "Galactor",
  5457. {
  5458. front: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(225, "lbs"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/daniel/front.svg"
  5464. }
  5465. },
  5466. leaning: {
  5467. height: math.unit(6, "feet"),
  5468. weight: math.unit(225, "lbs"),
  5469. name: "Leaning",
  5470. image: {
  5471. source: "./media/characters/daniel/leaning.svg"
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Macro",
  5478. height: math.unit(1000, "feet"),
  5479. default: true
  5480. },
  5481. ]
  5482. )
  5483. };
  5484. characterMakers["Chiros"] = () => {
  5485. return makeCharacter(
  5486. "Chiros",
  5487. "Chiropica",
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(88, "lbs"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/chiros/front.svg",
  5495. extra: 306/226
  5496. }
  5497. },
  5498. side: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(88, "lbs"),
  5501. name: "Side",
  5502. image: {
  5503. source: "./media/characters/chiros/side.svg",
  5504. extra: 306/226
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(6, "cm"),
  5512. default: true
  5513. },
  5514. ]
  5515. )
  5516. };
  5517. characterMakers["Selka"] = () => {
  5518. return makeCharacter(
  5519. "Selka",
  5520. "Xelchew",
  5521. {
  5522. front: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(100, "lbs"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/selka/front.svg",
  5528. extra: 947/887
  5529. }
  5530. }
  5531. },
  5532. [
  5533. {
  5534. name: "Normal",
  5535. height: math.unit(5, "cm"),
  5536. default: true
  5537. },
  5538. ]
  5539. )
  5540. };
  5541. characterMakers["Verin"] = () => {
  5542. return makeCharacter(
  5543. "Verin",
  5544. "Vonadi",
  5545. {
  5546. front: {
  5547. height: math.unit(8 + 3/12, "feet"),
  5548. weight: math.unit(424, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/verin/front.svg",
  5552. extra: 1845/1550
  5553. }
  5554. },
  5555. frontArmored: {
  5556. height: math.unit(8 + 3/12, "feet"),
  5557. weight: math.unit(424, "lbs"),
  5558. name: "Front (Armored)",
  5559. image: {
  5560. source: "./media/characters/verin/front-armor.svg",
  5561. extra: 1845/1550 * (1 / (1 - 0.01)),
  5562. bottom: 0.01
  5563. }
  5564. },
  5565. back: {
  5566. height: math.unit(8 + 3/12, "feet"),
  5567. weight: math.unit(424, "lbs"),
  5568. name: "Back",
  5569. image: {
  5570. source: "./media/characters/verin/back.svg",
  5571. bottom: 0.1,
  5572. extra: 1 / (1 - 0.1)
  5573. }
  5574. },
  5575. foot: {
  5576. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5577. name: "Foot",
  5578. image: {
  5579. source: "./media/characters/verin/foot.svg"
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(8 + 3/12, "feet")
  5587. },
  5588. {
  5589. name: "Minimacro",
  5590. height: math.unit(21, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Macro",
  5595. height: math.unit(626, "feet")
  5596. },
  5597. ]
  5598. )
  5599. };
  5600. characterMakers["Sovrim Terraquian"] = () => {
  5601. return makeCharacter(
  5602. "Sovrim Terraquian",
  5603. "Sovrim Terraquian",
  5604. {
  5605. front: {
  5606. height: math.unit(2.718, "meters"),
  5607. weight: math.unit(150, "lbs"),
  5608. name: "Front",
  5609. image: {
  5610. source: "./media/characters/sovrim-terraquian/front.svg"
  5611. }
  5612. },
  5613. back: {
  5614. height: math.unit(2.718, "meters"),
  5615. weight: math.unit(150, "lbs"),
  5616. name: "Back",
  5617. image: {
  5618. source: "./media/characters/sovrim-terraquian/back.svg"
  5619. }
  5620. }
  5621. },
  5622. [
  5623. {
  5624. name: "Micro",
  5625. height: math.unit(2, "inches")
  5626. },
  5627. {
  5628. name: "Small",
  5629. height: math.unit(1, "meter")
  5630. },
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(Math.E, "meters"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "Macro",
  5638. height: math.unit(20, "meters")
  5639. },
  5640. {
  5641. name: "Macro+",
  5642. height: math.unit(400, "meters")
  5643. },
  5644. ]
  5645. )
  5646. };
  5647. characterMakers["Reece Silvermane"] = () => {
  5648. return makeCharacter(
  5649. "Reece Silvermane",
  5650. "Silverhorsey",
  5651. {
  5652. front: {
  5653. height: math.unit(7, "feet"),
  5654. weight: math.unit(489, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/reece-silvermane/front.svg",
  5658. bottom: 0.02,
  5659. extra: 1 / (1 - 0.02)
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(1.5, "miles"),
  5667. default: true
  5668. },
  5669. ]
  5670. )
  5671. };
  5672. characterMakers["Kane"] = () => {
  5673. return makeCharacter(
  5674. "Kane",
  5675. "LittleBigX110",
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(78, "kg"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/kane/front.svg",
  5683. extra: 978/899
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(2.1, "m"),
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(1, "km"),
  5695. default: true
  5696. },
  5697. ]
  5698. )
  5699. };
  5700. characterMakers["Tegon"] = () => {
  5701. return makeCharacter(
  5702. "Tegon",
  5703. "TegonDragon",
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(200, "kg"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/tegon/front.svg",
  5711. bottom: 0.01,
  5712. extra: 1 / (1 - 0.01)
  5713. }
  5714. },
  5715. },
  5716. [
  5717. {
  5718. name: "Micro",
  5719. height: math.unit(1, "inch")
  5720. },
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(6 + 3/12, "feet"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(300, "feet")
  5729. },
  5730. {
  5731. name: "Megamacro",
  5732. height: math.unit(69, "miles")
  5733. },
  5734. ]
  5735. )
  5736. };
  5737. characterMakers["Arcturax"] = () => {
  5738. return makeCharacter(
  5739. "Arcturax",
  5740. "Arcturax",
  5741. {
  5742. side: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(2304, "lbs"),
  5745. name: "Side",
  5746. image: {
  5747. source: "./media/characters/arcturax/side.svg",
  5748. extra: 790/376 * (1 / (1 - 0.01)),
  5749. bottom: 0.01
  5750. }
  5751. },
  5752. },
  5753. [
  5754. {
  5755. name: "Micro",
  5756. height: math.unit(2, "inch")
  5757. },
  5758. {
  5759. name: "Normal",
  5760. height: math.unit(6, "feet")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(39, "feet"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Megamacro",
  5769. height: math.unit(7, "miles")
  5770. },
  5771. ]
  5772. )
  5773. };
  5774. characterMakers["Sentri"] = () => {
  5775. return makeCharacter(
  5776. "Sentri",
  5777. "Sentri",
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(50, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/sentri/front.svg",
  5785. extra: 1750/1570 * (1 / (1 - 0.025)),
  5786. bottom: 0.025
  5787. }
  5788. },
  5789. frontAlt: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(50, "lbs"),
  5792. name: "Front (Alt)",
  5793. image: {
  5794. source: "./media/characters/sentri/front-alt.svg",
  5795. extra: 1750/1570 * (1 / (1 - 0.025)),
  5796. bottom: 0.025
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(15, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(2500, "feet")
  5809. }
  5810. ]
  5811. )
  5812. };
  5813. characterMakers["Corvin"] = () => {
  5814. return makeCharacter(
  5815. "Corvin",
  5816. "Sirffuzzylogik",
  5817. {
  5818. front: {
  5819. height: math.unit(5 + 8/12, "feet"),
  5820. weight: math.unit(130, "lbs"),
  5821. name: "Front",
  5822. image: {
  5823. source: "./media/characters/corvin/front.svg",
  5824. extra: 1803/1629
  5825. }
  5826. },
  5827. frontShirt: {
  5828. height: math.unit(5 + 8/12, "feet"),
  5829. weight: math.unit(130, "lbs"),
  5830. name: "Front (Shirt)",
  5831. image: {
  5832. source: "./media/characters/corvin/front-shirt.svg",
  5833. extra: 1803/1629
  5834. }
  5835. },
  5836. frontPoncho: {
  5837. height: math.unit(5 + 8/12, "feet"),
  5838. weight: math.unit(130, "lbs"),
  5839. name: "Front (Poncho)",
  5840. image: {
  5841. source: "./media/characters/corvin/front-poncho.svg",
  5842. extra: 1803/1629
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(5 + 8/12, "feet"),
  5847. weight: math.unit(130, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/corvin/side.svg",
  5851. extra: 1012/945
  5852. }
  5853. },
  5854. back: {
  5855. height: math.unit(5 + 8/12, "feet"),
  5856. weight: math.unit(130, "lbs"),
  5857. name: "Back",
  5858. image: {
  5859. source: "./media/characters/corvin/back.svg",
  5860. extra: 1803/1629
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Micro",
  5867. height: math.unit(3, "inches")
  5868. },
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(5 + 8/12, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(300, "feet"),
  5876. default: true
  5877. },
  5878. {
  5879. name: "Megamacro",
  5880. height: math.unit(500, "miles")
  5881. }
  5882. ]
  5883. )
  5884. };
  5885. characterMakers["Q"] = () => {
  5886. return makeCharacter(
  5887. "Q",
  5888. "Q Walf",
  5889. {
  5890. front: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(135, "lbs"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/q/front.svg",
  5896. extra: 854/752 * (1 / (1 - 0.005)),
  5897. bottom: 0.005
  5898. }
  5899. },
  5900. back: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(130, "lbs"),
  5903. name: "Back",
  5904. image: {
  5905. source: "./media/characters/q/back.svg",
  5906. extra: 854/752
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(90, "feet"),
  5914. default: true
  5915. },
  5916. {
  5917. name: "Extra Macro",
  5918. height: math.unit(300, "feet"),
  5919. },
  5920. {
  5921. name: "BIG WALF",
  5922. height: math.unit(750, "feet"),
  5923. },
  5924. ]
  5925. )
  5926. };
  5927. characterMakers["Carley"] = () => {
  5928. return makeCharacter(
  5929. "Carley",
  5930. "QuakeYote",
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(150, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/carley/front.svg",
  5938. extra: 3927/3540 * (1 / (1 - 0.03)),
  5939. bottom: 0.03
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(6 + 3/12, "feet")
  5947. },
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(185, "feet"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Megamacro",
  5955. height: math.unit(8, "miles"),
  5956. },
  5957. ]
  5958. )
  5959. };
  5960. characterMakers["Citrine"] = () => {
  5961. return makeCharacter(
  5962. "Citrine",
  5963. "thunderstrike23",
  5964. {
  5965. front: {
  5966. height: math.unit(3, "feet"),
  5967. weight: math.unit(28, "lbs"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/citrine/front.svg"
  5971. }
  5972. }
  5973. },
  5974. [
  5975. {
  5976. name: "Normal",
  5977. height: math.unit(3, "feet")
  5978. }
  5979. ]
  5980. )
  5981. };
  5982. characterMakers["Aura Starwind"] = () => {
  5983. return makeCharacter(
  5984. "Aura Starwind",
  5985. "StrikeVixen",
  5986. {
  5987. front: {
  5988. height: math.unit(14, "feet"),
  5989. weight: math.unit(1450, "kg"),
  5990. name: "Front",
  5991. image: {
  5992. source: "./media/characters/aura-starwind/front.svg",
  5993. extra: 1455/1335
  5994. }
  5995. },
  5996. side: {
  5997. height: math.unit(14, "feet"),
  5998. weight: math.unit(1450, "kg"),
  5999. name: "Side",
  6000. image: {
  6001. source: "./media/characters/aura-starwind/side.svg",
  6002. extra: 1654/1497
  6003. }
  6004. },
  6005. taur: {
  6006. height: math.unit(18, "feet"),
  6007. weight: math.unit(5500, "kg"),
  6008. name: "Taur",
  6009. image: {
  6010. source: "./media/characters/aura-starwind/taur.svg",
  6011. extra: 1760/1650
  6012. }
  6013. },
  6014. feral: {
  6015. height: math.unit(46, "feet"),
  6016. weight: math.unit(25000, "kg"),
  6017. name: "Feral",
  6018. image: {
  6019. source: "./media/characters/aura-starwind/feral.svg"
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(14, "feet")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(50, "meters")
  6031. },
  6032. {
  6033. name: "Megamacro",
  6034. height: math.unit(5000, "meters")
  6035. },
  6036. {
  6037. name: "Gigamacro",
  6038. height: math.unit(100000, "kilometers")
  6039. },
  6040. ]
  6041. )
  6042. };
  6043. characterMakers["Rivet"] = () => {
  6044. return makeCharacter(
  6045. "Rivet",
  6046. "Vonadi",
  6047. {
  6048. front: {
  6049. height: math.unit(2 + 7/12, "feet"),
  6050. weight: math.unit(32, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/rivet/front.svg",
  6054. extra: 1716/1658 * (1 / (1 - 0.03)),
  6055. bottom: 0.03
  6056. }
  6057. },
  6058. foot: {
  6059. height: math.unit(0.551, "feet"),
  6060. name: "Rivet's Foot",
  6061. image: {
  6062. source: "./media/characters/rivet/foot.svg"
  6063. },
  6064. rename: true
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Micro",
  6070. height: math.unit(1.5, "inches"),
  6071. },
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(2 + 7/12, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(85, "feet")
  6080. },
  6081. {
  6082. name: "Megamacro",
  6083. height: math.unit(2.2, "km")
  6084. }
  6085. ]
  6086. )
  6087. };
  6088. characterMakers["Coffee"] = () => {
  6089. return makeCharacter(
  6090. "Coffee",
  6091. "CoffeeDoggo",
  6092. {
  6093. front: {
  6094. height: math.unit(5 + 9/12, "feet"),
  6095. weight: math.unit(150, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/coffee/front.svg",
  6099. extra: 3666/3032 * (1 / (1 - 0.04)),
  6100. bottom: 0.04
  6101. }
  6102. }
  6103. },
  6104. [
  6105. {
  6106. name: "Micro",
  6107. height: math.unit(2, "inches"),
  6108. },
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(5 + 9/12, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Macro",
  6116. height: math.unit(800, "feet")
  6117. },
  6118. {
  6119. name: "Megamacro",
  6120. height: math.unit(25, "miles")
  6121. }
  6122. ]
  6123. )
  6124. };
  6125. characterMakers["Chari-Gal"] = () => {
  6126. return makeCharacter(
  6127. "Chari-Gal",
  6128. "Knoem",
  6129. {
  6130. front: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(200, "lbs"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/chari-gal/front.svg",
  6136. extra: 1568/1385 * (1 / (1 - 0.047)),
  6137. bottom: 0.047
  6138. }
  6139. },
  6140. gigantamax: {
  6141. height: math.unit(6*16, "feet"),
  6142. weight: math.unit(200*16*16*16, "lbs"),
  6143. name: "Gigantamax",
  6144. image: {
  6145. source: "./media/characters/chari-gal/gigantamax.svg",
  6146. extra: 1124/888 * (1 / (1 - 0.03)),
  6147. bottom: 0.03
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(5 + 7/12, "feet")
  6155. },
  6156. {
  6157. name: "Macro",
  6158. height: math.unit(200, "feet"),
  6159. default: true
  6160. }
  6161. ]
  6162. )
  6163. };
  6164. characterMakers["Nova"] = () => {
  6165. return makeCharacter(
  6166. "Nova",
  6167. "CoffeeDoggo",
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(150, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/nova/front.svg",
  6175. extra: 5000/4722 * (1 / (1 - 0.02)),
  6176. bottom: 0.02
  6177. }
  6178. }
  6179. },
  6180. [
  6181. {
  6182. name: "Micro-",
  6183. height: math.unit(0.8, "inches")
  6184. },
  6185. {
  6186. name: "Micro",
  6187. height: math.unit(2, "inches"),
  6188. normal: true
  6189. },
  6190. ]
  6191. )
  6192. };
  6193. characterMakers["Argent"] = () => {
  6194. return makeCharacter(
  6195. "Argent",
  6196. "ArgentVZ",
  6197. {
  6198. front: {
  6199. height: math.unit(3 + 1/12, "feet"),
  6200. weight: math.unit(21.7, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/argent/front.svg",
  6204. extra: 1565/1416 * (1 / (1 - 0.01)),
  6205. bottom: 0.01
  6206. }
  6207. }
  6208. },
  6209. [
  6210. {
  6211. name: "Micro",
  6212. height: math.unit(2, "inches")
  6213. },
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(3 + 1/12, "feet"),
  6217. normal: true
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(120, "feet")
  6222. },
  6223. ]
  6224. )
  6225. };
  6226. characterMakers["Mira al-Cul"] = () => {
  6227. return makeCharacter(
  6228. "Mira al-Cul",
  6229. "Mariokartsonicriders",
  6230. {
  6231. lamp: {
  6232. height: math.unit(7 * 1559 / 989, "feet"),
  6233. name: "Magic Lamp",
  6234. image: {
  6235. source: "./media/characters/mira-al-cul/lamp.svg",
  6236. extra: 1617/1559
  6237. }
  6238. },
  6239. front: {
  6240. height: math.unit(7, "feet"),
  6241. name: "Front",
  6242. image: {
  6243. source: "./media/characters/mira-al-cul/front.svg",
  6244. extra: 1044/990
  6245. }
  6246. },
  6247. },
  6248. [
  6249. {
  6250. name: "Heavily Restricted",
  6251. height: math.unit(7 * 1559 / 989, "feet")
  6252. },
  6253. {
  6254. name: "Freshly Freed",
  6255. height: math.unit(50 * 1559 / 989, "feet")
  6256. },
  6257. {
  6258. name: "World Encompassing",
  6259. height: math.unit(10000 * 1559 / 989, "miles")
  6260. },
  6261. {
  6262. name: "Galactic",
  6263. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6264. },
  6265. {
  6266. name: "Palmed Universe",
  6267. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6268. default: true
  6269. },
  6270. {
  6271. name: "Multiversal Matriarch",
  6272. height: math.unit(8.87e10, "yottameters")
  6273. },
  6274. {
  6275. name: "Void Mother",
  6276. height: math.unit(3.14e110, "yottaparsecs")
  6277. },
  6278. ]
  6279. )
  6280. };
  6281. characterMakers["Kuro-shi Uchū"] = () => {
  6282. return makeCharacter(
  6283. "Kuro-shi Uchū",
  6284. "Dragon Shark",
  6285. {
  6286. front: {
  6287. height: math.unit(17 + 1/12, "feet"),
  6288. weight: math.unit(476.2*5, "lbs"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/kuro-shi-uchū/front.svg",
  6292. extra: 2329/1835 * (1 / (1 - 0.02)),
  6293. bottom: 0.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Micro",
  6300. height: math.unit(2, "inches")
  6301. },
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(12, "meters")
  6305. },
  6306. {
  6307. name: "Planetary",
  6308. height: math.unit(0.00929, "AU"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Universal",
  6313. height: math.unit(20, "gigaparsecs")
  6314. },
  6315. ]
  6316. )
  6317. };
  6318. characterMakers["Katherine"] = () => {
  6319. return makeCharacter(
  6320. "Katherine",
  6321. "chrisrules123",
  6322. {
  6323. front: {
  6324. height: math.unit(5 + 2/12, "feet"),
  6325. weight: math.unit(120, "lbs"),
  6326. name: "Front",
  6327. image: {
  6328. source: "./media/characters/katherine/front.svg",
  6329. extra: 2075/1969
  6330. }
  6331. },
  6332. dress: {
  6333. height: math.unit(5 + 2/12, "feet"),
  6334. weight: math.unit(120, "lbs"),
  6335. name: "Dress",
  6336. image: {
  6337. source: "./media/characters/katherine/dress.svg",
  6338. extra: 2258/2064
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Micro",
  6345. height: math.unit(1, "inches"),
  6346. default: true
  6347. },
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(5 + 2/12, "feet")
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(100, "meters")
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(80, "miles")
  6359. },
  6360. ]
  6361. )
  6362. };
  6363. characterMakers["Yevis"] = () => {
  6364. return makeCharacter(
  6365. "Yevis",
  6366. "Mariokartsonicriders",
  6367. {
  6368. front: {
  6369. height: math.unit(7 + 8/12, "feet"),
  6370. weight: math.unit(250, "lbs"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/yevis/front.svg",
  6374. extra: 1938/1755
  6375. }
  6376. }
  6377. },
  6378. [
  6379. {
  6380. name: "Mortal",
  6381. height: math.unit(7 + 8/12, "feet")
  6382. },
  6383. {
  6384. name: "Battle",
  6385. height: math.unit(25 + 11/12, "feet")
  6386. },
  6387. {
  6388. name: "Wrath",
  6389. height: math.unit(1654 + 11/12, "feet")
  6390. },
  6391. {
  6392. name: "Planet Destroyer",
  6393. height: math.unit(12000, "miles")
  6394. },
  6395. {
  6396. name: "Galaxy Conqueror",
  6397. height: math.unit(1.45, "zettameters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Universal War",
  6402. height: math.unit(184, "gigaparsecs")
  6403. },
  6404. {
  6405. name: "Eternity War",
  6406. height: math.unit(1.98e55, "yottaparsecs")
  6407. },
  6408. ]
  6409. )
  6410. };
  6411. characterMakers["Xavier"] = () => {
  6412. return makeCharacter(
  6413. "Xavier",
  6414. "zmaster587",
  6415. {
  6416. front: {
  6417. height: math.unit(5 + 8/12, "feet"),
  6418. weight: math.unit(63, "kg"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/xavier/front.svg",
  6422. extra: 944/883
  6423. }
  6424. },
  6425. frontStretch: {
  6426. height: math.unit(5 + 8/12, "feet"),
  6427. weight: math.unit(63, "kg"),
  6428. name: "Stretching",
  6429. image: {
  6430. source: "./media/characters/xavier/front-stretch.svg",
  6431. extra: 962/820
  6432. }
  6433. },
  6434. },
  6435. [
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(5 + 8/12, "feet")
  6439. },
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(100, "meters"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "McLargeHuge",
  6447. height: math.unit(10, "miles")
  6448. },
  6449. ]
  6450. )
  6451. };
  6452. characterMakers["Joshii"] = () => {
  6453. return makeCharacter(
  6454. "Joshii",
  6455. "DarkieTehJester",
  6456. {
  6457. front: {
  6458. height: math.unit(5 + 5/12, "feet"),
  6459. weight: math.unit(150, "lb"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/joshii/front.svg"
  6463. }
  6464. },
  6465. foot: {
  6466. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6467. name: "Foot",
  6468. image: {
  6469. source: "./media/characters/joshii/foot.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Micro",
  6476. height: math.unit(2, "inches")
  6477. },
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(5 + 5/12, "feet"),
  6481. default: true
  6482. },
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(785, "feet")
  6486. },
  6487. {
  6488. name: "Megamacro",
  6489. height: math.unit(24.5, "miles")
  6490. },
  6491. ]
  6492. )
  6493. };
  6494. characterMakers["Goddess Elizabeth"] = () => {
  6495. return makeCharacter(
  6496. "Goddess Elizabeth",
  6497. "DarkieTehJester",
  6498. {
  6499. front: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(150, "lb"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/goddess-elizabeth/front.svg"
  6505. }
  6506. },
  6507. foot: {
  6508. height: math.unit(6 * 0.25436 / 2, "feet"),
  6509. name: "Foot",
  6510. image: {
  6511. source: "./media/characters/goddess-elizabeth/foot.svg"
  6512. }
  6513. },
  6514. },
  6515. [
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(12, "feet")
  6519. },
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(80, "miles"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(15000, "parsecs")
  6528. },
  6529. ]
  6530. )
  6531. };
  6532. characterMakers["Kara"] = () => {
  6533. return makeCharacter(
  6534. "Kara",
  6535. "Vonadi",
  6536. {
  6537. front: {
  6538. height: math.unit(5 + 9/12, "feet"),
  6539. weight: math.unit(144, "lb"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/kara/front.svg"
  6543. }
  6544. },
  6545. feet: {
  6546. height: math.unit(6/6.765, "feet"),
  6547. name: "Kara's Feet",
  6548. rename: true,
  6549. image: {
  6550. source: "./media/characters/kara/feet.svg"
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(5 + 9/12, "feet")
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(174, "feet"),
  6562. default: true
  6563. },
  6564. ]
  6565. )
  6566. };
  6567. characterMakers["Tyrone"] = () => {
  6568. return makeCharacter(
  6569. "Tyrone",
  6570. "nanakisan",
  6571. {
  6572. front: {
  6573. height: math.unit(18, "feet"),
  6574. weight: math.unit(4050, "lb"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/tyrone/front.svg",
  6578. extra: 2520/2402 * (1 / (1 - 0.025)),
  6579. bottom: 0.025
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(18, "feet"),
  6587. default: true
  6588. },
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(300, "feet")
  6592. },
  6593. ]
  6594. )
  6595. };
  6596. characterMakers["Danny"] = () => {
  6597. return makeCharacter(
  6598. "Danny",
  6599. "danny_gryphon",
  6600. {
  6601. front: {
  6602. height: math.unit(7 + 8/12, "feet"),
  6603. weight: math.unit(120, "lb"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/danny/front.svg",
  6607. extra: 1490/1350
  6608. }
  6609. },
  6610. back: {
  6611. height: math.unit(7 + 8/12, "feet"),
  6612. weight: math.unit(120, "lb"),
  6613. name: "Back",
  6614. image: {
  6615. source: "./media/characters/danny/back.svg",
  6616. extra: 1490/1350
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(7 + 8/12, "feet"),
  6624. default: true
  6625. },
  6626. ]
  6627. )
  6628. };
  6629. characterMakers["Mallow"] = () => {
  6630. return makeCharacter(
  6631. "Mallow",
  6632. "Mallowchu",
  6633. {
  6634. front: {
  6635. height: math.unit(3.5, "inches"),
  6636. weight: math.unit(19, "grams"),
  6637. name: "Front",
  6638. image: {
  6639. source: "./media/characters/mallow/front.svg",
  6640. extra: 471/431
  6641. }
  6642. },
  6643. back: {
  6644. height: math.unit(3.5, "inches"),
  6645. weight: math.unit(19, "grams"),
  6646. name: "Back",
  6647. image: {
  6648. source: "./media/characters/mallow/back.svg",
  6649. extra: 471/431
  6650. }
  6651. },
  6652. },
  6653. [
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(3.5, "inches")
  6657. },
  6658. ]
  6659. )
  6660. };
  6661. characterMakers["Starry Aqua"] = () => {
  6662. return makeCharacter(
  6663. "Starry Aqua",
  6664. "StarryAqua",
  6665. {
  6666. front: {
  6667. height: math.unit(9, "feet"),
  6668. weight: math.unit(230, "kg"),
  6669. name: "Front",
  6670. image: {
  6671. source: "./media/characters/starry-aqua/front.svg"
  6672. }
  6673. },
  6674. back: {
  6675. height: math.unit(9, "feet"),
  6676. weight: math.unit(230, "kg"),
  6677. name: "Back",
  6678. image: {
  6679. source: "./media/characters/starry-aqua/back.svg"
  6680. }
  6681. },
  6682. hand: {
  6683. height: math.unit(9 * 0.1168, "feet"),
  6684. name: "Hand",
  6685. image: {
  6686. source: "./media/characters/starry-aqua/hand.svg"
  6687. }
  6688. },
  6689. foot: {
  6690. height: math.unit(9 * 0.18, "feet"),
  6691. name: "Foot",
  6692. image: {
  6693. source: "./media/characters/starry-aqua/foot.svg"
  6694. }
  6695. }
  6696. },
  6697. [
  6698. {
  6699. name: "Micro",
  6700. height: math.unit(3, "inches")
  6701. },
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(9, "feet")
  6705. },
  6706. {
  6707. name: "Macro",
  6708. height: math.unit(300, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Megamacro",
  6713. height: math.unit(3200, "feet")
  6714. }
  6715. ]
  6716. )
  6717. };
  6718. characterMakers["Luka"] = () => {
  6719. return makeCharacter(
  6720. "Luka",
  6721. "UmbraHusky",
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(230, "lb"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/luka/front.svg",
  6729. extra: 1 / (1 - 0.025),
  6730. bottom: 0.025
  6731. }
  6732. },
  6733. },
  6734. [
  6735. {
  6736. name: "Normal",
  6737. height: math.unit(12 + 8/12, "feet")
  6738. },
  6739. {
  6740. name: "Minimacro",
  6741. height: math.unit(20, "feet")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(250, "feet")
  6746. },
  6747. {
  6748. name: "Megamacro",
  6749. height: math.unit(5, "miles")
  6750. },
  6751. {
  6752. name: "Gigamacro",
  6753. height: math.unit(8000, "miles")
  6754. },
  6755. ]
  6756. )
  6757. };
  6758. function makeCharacters() {
  6759. const results = [];
  6760. results.push({
  6761. name: "March",
  6762. constructor: makeMarch
  6763. });
  6764. results.push({
  6765. name: "Noir",
  6766. constructor: makeNoir
  6767. });
  6768. results.push({
  6769. name: "Okuri",
  6770. constructor: makeOkuri
  6771. });
  6772. results.push({
  6773. name: "Manny",
  6774. constructor: makeManny
  6775. });
  6776. results.push({
  6777. name: "Adake",
  6778. constructor: makeAdake
  6779. });
  6780. results.push({
  6781. name: "Elijah",
  6782. constructor: makeElijah
  6783. });
  6784. results.push({
  6785. name: "Rai",
  6786. constructor: makeRai
  6787. });
  6788. results.push({
  6789. name: "Jazzy",
  6790. constructor: makeJazzy
  6791. });
  6792. results.push({
  6793. name: "Flamm",
  6794. constructor: makeFlamm
  6795. });
  6796. results.push({
  6797. name: "Zephiro",
  6798. constructor: makeZephiro
  6799. });
  6800. results.push({
  6801. name: "Fory",
  6802. constructor: makeFory
  6803. });
  6804. results.push({
  6805. name: "Kurrikage",
  6806. constructor: makeKurrikage
  6807. });
  6808. results.push({
  6809. name: "Shingo",
  6810. constructor: makeShingo
  6811. });
  6812. results.push({
  6813. name: "Aigey",
  6814. constructor: makeAigey
  6815. });
  6816. results.push({
  6817. name: "Natasha",
  6818. constructor: makeNatasha
  6819. });
  6820. results.push({
  6821. name: "Malik",
  6822. constructor: makeMalik
  6823. });
  6824. results.push({
  6825. name: "Sefer",
  6826. constructor: makeSefer
  6827. });
  6828. Object.entries(characterMakers).forEach(([key, value]) => {
  6829. results.push({
  6830. name: key,
  6831. constructor: value
  6832. });
  6833. });
  6834. return results;
  6835. }