less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

6843 行
176 KiB

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