less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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