less copy protection, more size visualization
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

10140 Zeilen
263 KiB

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