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

3667 lines
94 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. function makeCharacter(name, author, viewInfo, defaultSizes, defaultSize, extraInfo) {
  11. if (extraInfo === undefined) {
  12. extraInfo = {}
  13. }
  14. views = {};
  15. Object.entries(viewInfo).forEach(([key, value]) => {
  16. views[key] = {
  17. attributes: {
  18. height: {
  19. name: "Height",
  20. power: 1,
  21. type: "length",
  22. base: value.height
  23. }
  24. },
  25. image: value.image,
  26. name: value.name,
  27. info: value.info
  28. }
  29. if (value.weight) {
  30. views[key].attributes.weight = {
  31. name: "Mass",
  32. power: 3,
  33. type: "mass",
  34. base: value.weight
  35. };
  36. }
  37. });
  38. const entity = makeEntity(Object.assign(extraInfo, { name: name, author: author }), views, defaultSizes);
  39. if (defaultSize) {
  40. entity.views[entity.defaultView].height = defaultSize;
  41. }
  42. return entity;
  43. }
  44. characterMakers["Fen"] = () => {
  45. return makeCharacter(
  46. "Fen",
  47. "chemicalcrux",
  48. {
  49. back: {
  50. height: math.unit(2.2428, "meter"),
  51. weight: math.unit(124.738, "kg"),
  52. name: "Back",
  53. image: {
  54. source: "./media/characters/fen/back.svg"
  55. },
  56. info: {
  57. description: {
  58. mode: "append",
  59. text: "\n\nHe is not currently looking at you."
  60. }
  61. }
  62. },
  63. full: {
  64. height: math.unit(1.34, "meter"),
  65. weight: math.unit(225, "kg"),
  66. name: "Full",
  67. image: {
  68. source: "./media/characters/fen/full.svg"
  69. },
  70. info: {
  71. description: {
  72. mode: "append",
  73. text: "\n\nMunch."
  74. }
  75. }
  76. }
  77. },
  78. [
  79. {
  80. name: "Normal",
  81. height: math.unit(2.2428, "meter")
  82. },
  83. {
  84. name: "Big",
  85. height: math.unit(12, "feet")
  86. },
  87. {
  88. name: "Macro",
  89. height: math.unit(100, "meter"),
  90. default: true,
  91. info: {
  92. description: {
  93. mode: "append",
  94. text: "\n\nTOO DAMN BIG"
  95. }
  96. }
  97. },
  98. {
  99. name: "Macro+",
  100. height: math.unit(1000, "meter")
  101. },
  102. {
  103. name: "Megamacro",
  104. height: math.unit(10, "miles")
  105. }
  106. ],
  107. math.unit(100, "meter"),
  108. {
  109. description: {
  110. title: "Bio",
  111. text: "Very furry. Sheds on everything."
  112. }
  113. }
  114. )
  115. };
  116. characterMakers["Sofia"] = () => {
  117. return makeCharacter(
  118. "Sofia",
  119. "ZakuraTech",
  120. {
  121. front: {
  122. height: math.unit(183, "cm"),
  123. weight: math.unit(80, "kg"),
  124. name: "Front",
  125. image: {
  126. source: "./media/characters/sofia/front.svg",
  127. bottom: 0.01,
  128. extra: 1 / (1 - 0.01)
  129. }
  130. },
  131. frontAlt: {
  132. height: math.unit(183, "cm"),
  133. weight: math.unit(80, "kg"),
  134. name: "Front (alt)",
  135. image: {
  136. source: "./media/characters/sofia/front-alt.svg"
  137. }
  138. },
  139. back: {
  140. height: math.unit(183, "cm"),
  141. weight: math.unit(80, "kg"),
  142. name: "Back",
  143. image: {
  144. source: "./media/characters/sofia/back.svg"
  145. }
  146. },
  147. },
  148. [
  149. {
  150. name: "Normal",
  151. height: math.unit(1.83, "meter")
  152. },
  153. {
  154. name: "Macro",
  155. height: math.unit(96, "feet")
  156. },
  157. {
  158. name: "Megamerger",
  159. height: math.unit(650, "feet")
  160. },
  161. ],
  162. math.unit(96, "feet")
  163. )
  164. };
  165. function makeMarch() {
  166. const views = {
  167. front: {
  168. attributes: {
  169. height: {
  170. name: "Height",
  171. power: 1,
  172. type: "length",
  173. base: math.unit(7, "feet")
  174. },
  175. weight: {
  176. name: "Weight",
  177. power: 3,
  178. type: "mass",
  179. base: math.unit(100, "kg")
  180. }
  181. },
  182. image: {
  183. source: "./media/characters/march/front.svg"
  184. },
  185. name: "Front"
  186. },
  187. foot: {
  188. attributes: {
  189. height: {
  190. name: "Height",
  191. power: 1,
  192. type: "length",
  193. base: math.unit(0.9, "feet")
  194. }
  195. },
  196. image: {
  197. source: "./media/characters/march/foot.svg"
  198. },
  199. name: "Foot"
  200. }
  201. };
  202. const entity = makeEntity({ name: "March", author: "March-Dragon" }, views, []);
  203. entity.sizes.push({
  204. name: "Normal",
  205. height: math.unit(7.9, "feet")
  206. });
  207. entity.sizes.push({
  208. name: "Macro",
  209. height: math.unit(220, "meters")
  210. });
  211. entity.sizes.push({
  212. name: "Megamacro",
  213. height: math.unit(2.98, "km")
  214. });
  215. entity.sizes.push({
  216. name: "Gigamacro",
  217. height: math.unit(15963, "km")
  218. });
  219. entity.sizes.push({
  220. name: "Teramacro",
  221. height: math.unit(2980000000, "kilometers")
  222. });
  223. entity.sizes.push({
  224. name: "Examacro",
  225. height: math.unit(250, "parsecs")
  226. });
  227. entity.views.front.height = math.unit(2.98, "km");
  228. return entity;
  229. }
  230. function makeNoir() {
  231. const views = {
  232. front: {
  233. attributes: {
  234. height: {
  235. name: "Height",
  236. power: 1,
  237. type: "length",
  238. base: math.unit(6, "feet")
  239. },
  240. weight: {
  241. name: "Weight",
  242. power: 3,
  243. type: "mass",
  244. base: math.unit(60, "kg")
  245. }
  246. },
  247. image: {
  248. source: "./media/characters/noir/front.svg",
  249. bottom: 0.01
  250. },
  251. name: "Front"
  252. }
  253. };
  254. const entity = makeEntity({ name: "Noir", author: "March-Dragon" }, views, []);
  255. entity.sizes.push({
  256. name: "Normal",
  257. height: math.unit(6.6, "feet")
  258. });
  259. entity.sizes.push({
  260. name: "Macro",
  261. height: math.unit(500, "feet")
  262. });
  263. entity.sizes.push({
  264. name: "Megamacro",
  265. height: math.unit(2.5, "km")
  266. });
  267. entity.sizes.push({
  268. name: "Gigamacro",
  269. height: math.unit(22500, "km")
  270. });
  271. entity.sizes.push({
  272. name: "Teramacro",
  273. height: math.unit(2500000000, "kilometers")
  274. });
  275. entity.sizes.push({
  276. name: "Examacro",
  277. height: math.unit(200, "parsecs")
  278. });
  279. entity.views.front.height = math.unit(2.5, "km");
  280. return entity;
  281. }
  282. function makeOkuri() {
  283. const views = {
  284. front: {
  285. attributes: {
  286. height: {
  287. name: "Height",
  288. power: 1,
  289. type: "length",
  290. base: math.unit(7, "feet")
  291. },
  292. weight: {
  293. name: "Weight",
  294. power: 3,
  295. type: "mass",
  296. base: math.unit(100, "kg")
  297. }
  298. },
  299. image: {
  300. source: "./media/characters/okuri/front.svg"
  301. },
  302. name: "Front"
  303. },
  304. back: {
  305. attributes: {
  306. height: {
  307. name: "Height",
  308. power: 1,
  309. type: "length",
  310. base: math.unit(7, "feet")
  311. },
  312. weight: {
  313. name: "Weight",
  314. power: 3,
  315. type: "mass",
  316. base: math.unit(100, "kg")
  317. }
  318. },
  319. image: {
  320. source: "./media/characters/okuri/back.svg"
  321. },
  322. name: "Back"
  323. }
  324. };
  325. const entity = makeEntity({ name: "Okuri", author: "OrionMechadragon" }, views, []);
  326. entity.views.front.height = math.unit(100, "miles");
  327. return entity;
  328. }
  329. function makeManny() {
  330. const views = {
  331. front: {
  332. attributes: {
  333. height: {
  334. name: "Height",
  335. power: 1,
  336. type: "length",
  337. base: math.unit(7, "feet")
  338. },
  339. weight: {
  340. name: "Weight",
  341. power: 3,
  342. type: "mass",
  343. base: math.unit(100, "kg")
  344. }
  345. },
  346. image: {
  347. source: "./media/characters/manny/front.svg"
  348. },
  349. name: "Front"
  350. },
  351. back: {
  352. attributes: {
  353. height: {
  354. name: "Height",
  355. power: 1,
  356. type: "length",
  357. base: math.unit(7, "feet")
  358. },
  359. weight: {
  360. name: "Weight",
  361. power: 3,
  362. type: "mass",
  363. base: math.unit(100, "kg")
  364. }
  365. },
  366. image: {
  367. source: "./media/characters/manny/back.svg"
  368. },
  369. name: "Back"
  370. }
  371. };
  372. const entity = makeEntity({ name: "Manny", author: "Dialuca01" }, views, []);
  373. entity.sizes.push({
  374. name: "Normal",
  375. height: math.unit(7, "feet")
  376. });
  377. entity.sizes.push({
  378. name: "Macro",
  379. height: math.unit(78, "feet")
  380. });
  381. entity.sizes.push({
  382. name: "Macro+",
  383. height: math.unit(300, "meters")
  384. });
  385. entity.sizes.push({
  386. name: "Megamacro",
  387. height: math.unit(5167, "meters")
  388. });
  389. entity.sizes.push({
  390. name: "Gigamacro",
  391. height: math.unit(41769, "miles")
  392. });
  393. entity.views.front.height = math.unit(78, "feet");
  394. return entity;
  395. }
  396. function makeAdake() {
  397. const views = {
  398. front: {
  399. attributes: {
  400. height: {
  401. name: "Height",
  402. power: 1,
  403. type: "length",
  404. base: math.unit(7, "feet")
  405. },
  406. weight: {
  407. name: "Weight",
  408. power: 3,
  409. type: "mass",
  410. base: math.unit(100, "kg")
  411. }
  412. },
  413. image: {
  414. source: "./media/characters/adake/front-1.svg"
  415. },
  416. name: "Front"
  417. },
  418. frontAlt: {
  419. attributes: {
  420. height: {
  421. name: "Height",
  422. power: 1,
  423. type: "length",
  424. base: math.unit(7, "feet")
  425. },
  426. weight: {
  427. name: "Weight",
  428. power: 3,
  429. type: "mass",
  430. base: math.unit(100, "kg")
  431. }
  432. },
  433. image: {
  434. source: "./media/characters/adake/front-2.svg",
  435. bottom: 0.005
  436. },
  437. name: "Front (Alt)"
  438. },
  439. back: {
  440. attributes: {
  441. height: {
  442. name: "Height",
  443. power: 1,
  444. type: "length",
  445. base: math.unit(7, "feet")
  446. },
  447. weight: {
  448. name: "Weight",
  449. power: 3,
  450. type: "mass",
  451. base: math.unit(100, "kg")
  452. }
  453. },
  454. image: {
  455. source: "./media/characters/adake/back.svg",
  456. },
  457. name: "Back"
  458. },
  459. kneel: {
  460. attributes: {
  461. height: {
  462. name: "Height",
  463. power: 1,
  464. type: "length",
  465. base: math.unit(5.385, "feet")
  466. },
  467. weight: {
  468. name: "Weight",
  469. power: 3,
  470. type: "mass",
  471. base: math.unit(100, "kg")
  472. }
  473. },
  474. image: {
  475. source: "./media/characters/adake/kneel.svg",
  476. bottom: 0.05
  477. },
  478. name: "Kneeling"
  479. },
  480. };
  481. const entity = makeEntity({ name: "Adake", author: "Dialuca01" }, views, []);
  482. entity.sizes.push({
  483. name: "Normal",
  484. height: math.unit(7, "feet")
  485. });
  486. entity.sizes.push({
  487. name: "Macro",
  488. height: math.unit(78, "feet")
  489. });
  490. entity.sizes.push({
  491. name: "Macro+",
  492. height: math.unit(300, "meters")
  493. });
  494. entity.sizes.push({
  495. name: "Megamacro",
  496. height: math.unit(5167, "meters")
  497. });
  498. entity.sizes.push({
  499. name: "Gigamacro",
  500. height: math.unit(41769, "miles")
  501. });
  502. entity.views.front.height = math.unit(78, "feet");
  503. return entity;
  504. }
  505. function makeElijah() {
  506. const views = {
  507. side: {
  508. attributes: {
  509. height: {
  510. name: "Height",
  511. power: 1,
  512. type: "length",
  513. base: math.unit(7, "feet")
  514. },
  515. weight: {
  516. name: "Weight",
  517. power: 3,
  518. type: "mass",
  519. base: math.unit(50, "kg")
  520. }
  521. },
  522. image: {
  523. source: "./media/characters/elijah/side.svg",
  524. bottom: 0.01
  525. },
  526. name: "Side"
  527. },
  528. foot: {
  529. attributes: {
  530. height: {
  531. name: "Height",
  532. power: 1,
  533. type: "length",
  534. base: math.unit(2, "feet")
  535. }
  536. },
  537. image: {
  538. source: "./media/characters/elijah/foot.svg",
  539. },
  540. name: "Foot"
  541. }
  542. };
  543. const entity = makeEntity({ name: "Elijah", author: "Elijah" }, views, []);
  544. entity.sizes.push({
  545. name: "Normal",
  546. height: math.unit(1.65, "meters")
  547. });
  548. entity.sizes.push({
  549. name: "Macro",
  550. height: math.unit(55, "meters")
  551. });
  552. entity.sizes.push({
  553. name: "Macro+",
  554. height: math.unit(105, "meters")
  555. });
  556. entity.views.side.height = math.unit(55, "meters");
  557. return entity;
  558. }
  559. function makeRai() {
  560. const views = {
  561. front: {
  562. attributes: {
  563. height: {
  564. name: "Height",
  565. power: 1,
  566. type: "length",
  567. base: math.unit(7, "feet")
  568. },
  569. weight: {
  570. name: "Weight",
  571. power: 3,
  572. type: "mass",
  573. base: math.unit(80, "kg")
  574. }
  575. },
  576. image: {
  577. source: "./media/characters/rai/front.svg"
  578. },
  579. name: "Front"
  580. },
  581. side: {
  582. attributes: {
  583. height: {
  584. name: "Height",
  585. power: 1,
  586. type: "length",
  587. base: math.unit(7, "feet")
  588. },
  589. weight: {
  590. name: "Weight",
  591. power: 3,
  592. type: "mass",
  593. base: math.unit(80, "kg")
  594. }
  595. },
  596. image: {
  597. source: "./media/characters/rai/side.svg"
  598. },
  599. name: "Side"
  600. },
  601. back: {
  602. attributes: {
  603. height: {
  604. name: "Height",
  605. power: 1,
  606. type: "length",
  607. base: math.unit(7, "feet")
  608. },
  609. weight: {
  610. name: "Weight",
  611. power: 3,
  612. type: "mass",
  613. base: math.unit(80, "kg")
  614. }
  615. },
  616. image: {
  617. source: "./media/characters/rai/back.svg"
  618. },
  619. name: "Back"
  620. }
  621. };
  622. const entity = makeEntity({ name: "Rai", author: "shadowblade945" }, views, []);
  623. entity.views.front.height = math.unit(302, "feet");
  624. return entity;
  625. }
  626. function makeJazzy() {
  627. const views = {
  628. front: {
  629. attributes: {
  630. height: {
  631. name: "Height",
  632. power: 1,
  633. type: "length",
  634. base: math.unit(7, "feet")
  635. },
  636. weight: {
  637. name: "Weight",
  638. power: 3,
  639. type: "mass",
  640. base: math.unit(80, "kg")
  641. }
  642. },
  643. image: {
  644. source: "./media/characters/jazzy/front.svg",
  645. bottom: 0.01
  646. },
  647. name: "Front"
  648. },
  649. back: {
  650. attributes: {
  651. height: {
  652. name: "Height",
  653. power: 1,
  654. type: "length",
  655. base: math.unit(7, "feet")
  656. },
  657. weight: {
  658. name: "Weight",
  659. power: 3,
  660. type: "mass",
  661. base: math.unit(80, "kg")
  662. }
  663. },
  664. image: {
  665. source: "./media/characters/jazzy/back.svg"
  666. },
  667. name: "Back"
  668. }
  669. };
  670. const entity = makeEntity({ name: "Jazzy", author: "Jazzywolf" }, views, []);
  671. entity.views.front.height = math.unit(216, "feet");
  672. return entity;
  673. }
  674. function makeFlamm() {
  675. const views = {
  676. front: {
  677. attributes: {
  678. height: {
  679. name: "Height",
  680. power: 1,
  681. type: "length",
  682. base: math.unit(7, "feet")
  683. },
  684. weight: {
  685. name: "Weight",
  686. power: 3,
  687. type: "mass",
  688. base: math.unit(80, "kg")
  689. }
  690. },
  691. image: {
  692. source: "./media/characters/flamm/front.svg"
  693. },
  694. name: "Front"
  695. }
  696. };
  697. const entity = makeEntity({ name: "Flamm", author: "Flamm" }, views, []);
  698. entity.sizes.push({
  699. name: "Normal",
  700. height: math.unit(9.5, "feet")
  701. });
  702. entity.sizes.push({
  703. name: "Macro",
  704. height: math.unit(200, "feet")
  705. });
  706. entity.views.front.height = math.unit(200, "feet");
  707. return entity;
  708. }
  709. function makeZephiro() {
  710. const views = {
  711. front: {
  712. attributes: {
  713. height: {
  714. name: "Height",
  715. power: 1,
  716. type: "length",
  717. base: math.unit(7, "feet")
  718. },
  719. weight: {
  720. name: "Weight",
  721. power: 3,
  722. type: "mass",
  723. base: math.unit(80, "kg")
  724. }
  725. },
  726. image: {
  727. source: "./media/characters/zephiro/front.svg"
  728. },
  729. name: "Front"
  730. },
  731. side: {
  732. attributes: {
  733. height: {
  734. name: "Height",
  735. power: 1,
  736. type: "length",
  737. base: math.unit(7, "feet")
  738. },
  739. weight: {
  740. name: "Weight",
  741. power: 3,
  742. type: "mass",
  743. base: math.unit(80, "kg")
  744. }
  745. },
  746. image: {
  747. source: "./media/characters/zephiro/side.svg"
  748. },
  749. name: "Side"
  750. },
  751. back: {
  752. attributes: {
  753. height: {
  754. name: "Height",
  755. power: 1,
  756. type: "length",
  757. base: math.unit(7, "feet")
  758. },
  759. weight: {
  760. name: "Weight",
  761. power: 3,
  762. type: "mass",
  763. base: math.unit(80, "kg")
  764. }
  765. },
  766. image: {
  767. source: "./media/characters/zephiro/back.svg"
  768. },
  769. name: "Back"
  770. }
  771. };
  772. const entity = makeEntity({ name: "Zephiro", author: "Zephiro" }, views, []);
  773. entity.views.front.height = math.unit(118, "feet");
  774. entity.sizes.push({
  775. name: "Micro",
  776. height: math.unit(3, "inches")
  777. });
  778. entity.sizes.push({
  779. name: "Normal",
  780. height: math.unit(5 + 3 / 12, "feet")
  781. });
  782. entity.sizes.push({
  783. name: "Macro",
  784. height: math.unit(118, "feet")
  785. });
  786. return entity;
  787. }
  788. function makeFory() {
  789. const views = {
  790. front: {
  791. attributes: {
  792. height: {
  793. name: "Height",
  794. power: 1,
  795. type: "length",
  796. base: math.unit(7, "feet")
  797. },
  798. weight: {
  799. name: "Weight",
  800. power: 3,
  801. type: "mass",
  802. base: math.unit(90, "kg")
  803. }
  804. },
  805. image: {
  806. source: "./media/characters/fory/front.svg"
  807. },
  808. name: "Front"
  809. }
  810. };
  811. const entity = makeEntity({ name: "Fory", author: "Manny" }, views, []);
  812. entity.sizes.push({
  813. name: "Normal",
  814. height: math.unit(5, "feet")
  815. });
  816. entity.sizes.push({
  817. name: "Macro",
  818. height: math.unit(50, "feet")
  819. });
  820. entity.views.front.height = math.unit(50, "feet");
  821. return entity;
  822. }
  823. function makeKurrikage() {
  824. const views = {
  825. front: {
  826. attributes: {
  827. height: {
  828. name: "Height",
  829. power: 1,
  830. type: "length",
  831. base: math.unit(7, "feet")
  832. },
  833. weight: {
  834. name: "Weight",
  835. power: 3,
  836. type: "mass",
  837. base: math.unit(90, "kg")
  838. }
  839. },
  840. image: {
  841. source: "./media/characters/kurrikage/front.svg"
  842. },
  843. name: "Front"
  844. },
  845. back: {
  846. attributes: {
  847. height: {
  848. name: "Height",
  849. power: 1,
  850. type: "length",
  851. base: math.unit(7, "feet")
  852. },
  853. weight: {
  854. name: "Weight",
  855. power: 3,
  856. type: "mass",
  857. base: math.unit(90, "kg")
  858. }
  859. },
  860. image: {
  861. source: "./media/characters/kurrikage/back.svg"
  862. },
  863. name: "Back"
  864. },
  865. paw: {
  866. attributes: {
  867. height: {
  868. name: "Height",
  869. power: 1,
  870. type: "length",
  871. base: math.unit(1.5, "feet")
  872. }
  873. },
  874. image: {
  875. source: "./media/characters/kurrikage/paw.svg"
  876. },
  877. name: "Paw"
  878. },
  879. staff: {
  880. attributes: {
  881. height: {
  882. name: "Height",
  883. power: 1,
  884. type: "length",
  885. base: math.unit(6.7, "feet")
  886. }
  887. },
  888. image: {
  889. source: "./media/characters/kurrikage/staff.svg"
  890. },
  891. name: "Staff"
  892. },
  893. peek: {
  894. attributes: {
  895. height: {
  896. name: "Height",
  897. power: 1,
  898. type: "length",
  899. base: math.unit(1.05, "feet")
  900. }
  901. },
  902. image: {
  903. source: "./media/characters/kurrikage/peek.svg",
  904. bottom: 0.08
  905. },
  906. name: "Peeking"
  907. }
  908. };
  909. const entity = makeEntity({ name: "Kurrikage", author: "Kurrikage" }, views, []);
  910. entity.views.front.height = math.unit(12, "feet");
  911. return entity;
  912. }
  913. function makeShingo() {
  914. const views = {
  915. front: {
  916. attributes: {
  917. height: {
  918. name: "Height",
  919. power: 1,
  920. type: "length",
  921. base: math.unit(6, "feet")
  922. },
  923. weight: {
  924. name: "Weight",
  925. power: 3,
  926. type: "mass",
  927. base: math.unit(75, "kg")
  928. }
  929. },
  930. image: {
  931. source: "./media/characters/shingo/front.svg"
  932. },
  933. name: "Front"
  934. }
  935. };
  936. const entity = makeEntity({ name: "Shingo", author: "Threes" }, views, []);
  937. entity.sizes.push({
  938. name: "Micro",
  939. height: math.unit(4, "inches")
  940. });
  941. entity.sizes.push({
  942. name: "Normal",
  943. height: math.unit(6, "feet")
  944. });
  945. entity.sizes.push({
  946. name: "Macro",
  947. height: math.unit(108, "feet")
  948. });
  949. return entity;
  950. }
  951. function makeAigey() {
  952. const views = {
  953. side: {
  954. attributes: {
  955. height: {
  956. name: "Height",
  957. power: 1,
  958. type: "length",
  959. base: math.unit(6, "feet")
  960. },
  961. weight: {
  962. name: "Weight",
  963. power: 3,
  964. type: "mass",
  965. base: math.unit(75, "kg")
  966. }
  967. },
  968. image: {
  969. source: "./media/characters/aigey/side.svg"
  970. },
  971. name: "Side"
  972. }
  973. };
  974. const entity = makeEntity({ name: "Aigey", author: "Aigey" }, views, []);
  975. entity.sizes.push({
  976. name: "Macro",
  977. height: math.unit(200, "feet")
  978. });
  979. entity.sizes.push({
  980. name: "Megamacro",
  981. height: math.unit(100, "miles")
  982. });
  983. entity.views[entity.defaultView].height = math.unit(200, "feet");
  984. return entity;
  985. }
  986. function makeNatasha() {
  987. const views = {
  988. side: {
  989. attributes: {
  990. height: {
  991. name: "Height",
  992. power: 1,
  993. type: "length",
  994. base: math.unit(6, "feet")
  995. },
  996. weight: {
  997. name: "Weight",
  998. power: 3,
  999. type: "mass",
  1000. base: math.unit(75, "kg")
  1001. }
  1002. },
  1003. image: {
  1004. source: "./media/characters/natasha/front.svg"
  1005. },
  1006. name: "Side"
  1007. }
  1008. };
  1009. const entity = makeEntity({ name: "Natasha", author: "Natasha" }, views, []);
  1010. entity.sizes.push({
  1011. name: "Normal",
  1012. height: math.unit(5 + 5 / 12, "feet")
  1013. });
  1014. entity.sizes.push({
  1015. name: "Large",
  1016. height: math.unit(12, "feet")
  1017. });
  1018. entity.sizes.push({
  1019. name: "Macro",
  1020. height: math.unit(100, "feet")
  1021. });
  1022. entity.sizes.push({
  1023. name: "Macro+",
  1024. height: math.unit(260, "feet")
  1025. });
  1026. entity.sizes.push({
  1027. name: "Macro++",
  1028. height: math.unit(1, "mile")
  1029. });
  1030. entity.views[entity.defaultView].height = math.unit(100, "feet");
  1031. return entity;
  1032. }
  1033. function makeMalik() {
  1034. const views = {
  1035. front: {
  1036. attributes: {
  1037. height: {
  1038. name: "Height",
  1039. power: 1,
  1040. type: "length",
  1041. base: math.unit(6, "feet")
  1042. },
  1043. weight: {
  1044. name: "Weight",
  1045. power: 3,
  1046. type: "mass",
  1047. base: math.unit(75, "kg")
  1048. }
  1049. },
  1050. image: {
  1051. source: "./media/characters/malik/front.svg"
  1052. },
  1053. name: "Front"
  1054. },
  1055. side: {
  1056. attributes: {
  1057. height: {
  1058. name: "Height",
  1059. power: 1,
  1060. type: "length",
  1061. base: math.unit(6, "feet")
  1062. },
  1063. weight: {
  1064. name: "Weight",
  1065. power: 3,
  1066. type: "mass",
  1067. base: math.unit(75, "kg")
  1068. }
  1069. },
  1070. image: {
  1071. extra: 1.1539,
  1072. source: "./media/characters/malik/side.svg"
  1073. },
  1074. name: "Side"
  1075. },
  1076. back: {
  1077. attributes: {
  1078. height: {
  1079. name: "Height",
  1080. power: 1,
  1081. type: "length",
  1082. base: math.unit(6, "feet")
  1083. },
  1084. weight: {
  1085. name: "Weight",
  1086. power: 3,
  1087. type: "mass",
  1088. base: math.unit(75, "kg")
  1089. }
  1090. },
  1091. image: {
  1092. source: "./media/characters/malik/back.svg"
  1093. },
  1094. name: "Back"
  1095. },
  1096. };
  1097. const entity = makeEntity({ name: "Malik", author: "Fuzzypaws" }, views, []);
  1098. entity.sizes.push({
  1099. name: "Macro",
  1100. height: math.unit(156, "feet")
  1101. });
  1102. entity.sizes.push({
  1103. name: "Macro+",
  1104. height: math.unit(1188, "feet")
  1105. });
  1106. entity.views[entity.defaultView].height = math.unit(156, "feet");
  1107. return entity;
  1108. }
  1109. function makeSefer() {
  1110. const views = {
  1111. front: {
  1112. attributes: {
  1113. height: {
  1114. name: "Height",
  1115. power: 1,
  1116. type: "length",
  1117. base: math.unit(6, "feet")
  1118. },
  1119. weight: {
  1120. name: "Weight",
  1121. power: 3,
  1122. type: "mass",
  1123. base: math.unit(75, "kg")
  1124. }
  1125. },
  1126. image: {
  1127. source: "./media/characters/sefer/front.svg"
  1128. },
  1129. name: "Front"
  1130. },
  1131. back: {
  1132. attributes: {
  1133. height: {
  1134. name: "Height",
  1135. power: 1,
  1136. type: "length",
  1137. base: math.unit(6, "feet")
  1138. },
  1139. weight: {
  1140. name: "Weight",
  1141. power: 3,
  1142. type: "mass",
  1143. base: math.unit(75, "kg")
  1144. }
  1145. },
  1146. image: {
  1147. source: "./media/characters/sefer/back.svg"
  1148. },
  1149. name: "Back"
  1150. },
  1151. };
  1152. const entity = makeEntity({ name: "Sefer", author: "Fuzzypaws" }, views, []);
  1153. entity.views[entity.defaultView].height = math.unit(6, "feet");
  1154. return entity;
  1155. }
  1156. characterMakers["North"] = () => {
  1157. return makeCharacter(
  1158. "North",
  1159. "chemicalcrux",
  1160. {
  1161. body: {
  1162. height: math.unit(2.2428, "meter"),
  1163. weight: math.unit(124.738, "kg"),
  1164. name: "Body",
  1165. image: {
  1166. extra: 1225 / 1050,
  1167. source: "./media/characters/north/front.svg"
  1168. }
  1169. }
  1170. },
  1171. [
  1172. {
  1173. name: "Micro",
  1174. height: math.unit(4, "inches")
  1175. },
  1176. {
  1177. name: "Macro",
  1178. height: math.unit(63, "meters")
  1179. },
  1180. {
  1181. name: "Megamacro",
  1182. height: math.unit(101, "miles")
  1183. }
  1184. ],
  1185. math.unit(101, "miles")
  1186. )
  1187. };
  1188. characterMakers["Talan"] = () => {
  1189. return makeCharacter(
  1190. "Talan",
  1191. "talanstrider",
  1192. {
  1193. body: {
  1194. height: math.unit(2, "meter"),
  1195. weight: math.unit(70, "kg"),
  1196. name: "Body",
  1197. image: {
  1198. bottom: 0.02,
  1199. source: "./media/characters/talan/front.svg"
  1200. }
  1201. }
  1202. },
  1203. [
  1204. {
  1205. name: "Normal",
  1206. height: math.unit(4, "meters")
  1207. },
  1208. {
  1209. name: "Macro",
  1210. height: math.unit(100, "meters")
  1211. },
  1212. {
  1213. name: "Megamacro",
  1214. height: math.unit(2, "miles")
  1215. },
  1216. {
  1217. name: "Gigamacro",
  1218. height: math.unit(5000, "miles")
  1219. },
  1220. {
  1221. name: "Teramacro",
  1222. height: math.unit(100, "parsecs")
  1223. }
  1224. ],
  1225. math.unit(2, "miles")
  1226. )
  1227. };
  1228. characterMakers["Gael'Rathus"] = () => {
  1229. return makeCharacter(
  1230. "Gael'Rathus",
  1231. "Kurrikage",
  1232. {
  1233. front: {
  1234. height: math.unit(2, "meter"),
  1235. weight: math.unit(90, "kg"),
  1236. name: "Front",
  1237. image: {
  1238. source: "./media/characters/gael'rathus/front.svg"
  1239. }
  1240. },
  1241. frontAlt: {
  1242. height: math.unit(2, "meter"),
  1243. weight: math.unit(90, "kg"),
  1244. name: "Front (alt)",
  1245. image: {
  1246. source: "./media/characters/gael'rathus/front-alt.svg"
  1247. }
  1248. },
  1249. frontAlt2: {
  1250. height: math.unit(2, "meter"),
  1251. weight: math.unit(90, "kg"),
  1252. name: "Front (alt 2)",
  1253. image: {
  1254. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1255. }
  1256. }
  1257. },
  1258. [
  1259. {
  1260. name: "Normal",
  1261. height: math.unit(9, "feet")
  1262. },
  1263. {
  1264. name: "Large",
  1265. height: math.unit(25, "feet")
  1266. },
  1267. {
  1268. name: "Macro",
  1269. height: math.unit(0.25, "miles")
  1270. },
  1271. {
  1272. name: "Megamacro",
  1273. height: math.unit(10, "miles")
  1274. }
  1275. ],
  1276. math.unit(9, "feet")
  1277. )
  1278. };
  1279. characterMakers["Sosha"] = () => {
  1280. return makeCharacter(
  1281. "Sosha",
  1282. "Sdocat",
  1283. {
  1284. side: {
  1285. height: math.unit(2, "meter"),
  1286. weight: math.unit(140, "kg"),
  1287. name: "Side",
  1288. image: {
  1289. source: "./media/characters/sosha/side.svg"
  1290. }
  1291. },
  1292. },
  1293. [
  1294. {
  1295. name: "Normal",
  1296. height: math.unit(12, "feet")
  1297. }
  1298. ],
  1299. math.unit(12, "feet")
  1300. )
  1301. };
  1302. characterMakers["Kurribird"] = () => {
  1303. return makeCharacter(
  1304. "Kurribird",
  1305. "Kurrikage",
  1306. {
  1307. front: {
  1308. height: math.unit(2, "meter"),
  1309. weight: math.unit(50, "kg"),
  1310. name: "Front",
  1311. image: {
  1312. source: "./media/characters/kurribird/front.svg",
  1313. bottom: 0.015
  1314. }
  1315. },
  1316. frontAlt: {
  1317. height: math.unit(1.5, "meter"),
  1318. weight: math.unit(50, "kg"),
  1319. name: "Front (Alt)",
  1320. image: {
  1321. source: "./media/characters/kurribird/front-alt.svg",
  1322. extra: 1.45
  1323. }
  1324. },
  1325. },
  1326. [
  1327. {
  1328. name: "Normal",
  1329. height: math.unit(7, "feet")
  1330. },
  1331. {
  1332. name: "Big",
  1333. height: math.unit(15, "feet")
  1334. },
  1335. {
  1336. name: "Macro",
  1337. height: math.unit(1500, "feet")
  1338. },
  1339. {
  1340. name: "Megamacro",
  1341. height: math.unit(2, "miles")
  1342. }
  1343. ],
  1344. math.unit(12, "feet")
  1345. )
  1346. };
  1347. characterMakers["Elbial"] = () => {
  1348. return makeCharacter(
  1349. "Elbial",
  1350. "Neopuc",
  1351. {
  1352. front: {
  1353. height: math.unit(2, "meter"),
  1354. weight: math.unit(80, "kg"),
  1355. name: "Front",
  1356. image: {
  1357. source: "./media/characters/elbial/front.svg"
  1358. }
  1359. },
  1360. side: {
  1361. height: math.unit(2, "meter"),
  1362. weight: math.unit(80, "kg"),
  1363. name: "Side",
  1364. image: {
  1365. source: "./media/characters/elbial/side.svg"
  1366. }
  1367. },
  1368. back: {
  1369. height: math.unit(2, "meter"),
  1370. weight: math.unit(80, "kg"),
  1371. name: "Back",
  1372. image: {
  1373. source: "./media/characters/elbial/back.svg"
  1374. }
  1375. },
  1376. },
  1377. [
  1378. {
  1379. name: "Large",
  1380. height: math.unit(100, "feet")
  1381. },
  1382. {
  1383. name: "Macro",
  1384. height: math.unit(500, "feet")
  1385. },
  1386. {
  1387. name: "Megamacro",
  1388. height: math.unit(10, "miles")
  1389. },
  1390. {
  1391. name: "Gigamacro",
  1392. height: math.unit(25000, "miles")
  1393. },
  1394. {
  1395. name: "Full-Size",
  1396. height: math.unit(8000000, "gigaparsecs")
  1397. }
  1398. ],
  1399. math.unit(500, "feet")
  1400. )
  1401. };
  1402. characterMakers["Noah"] = () => {
  1403. return makeCharacter(
  1404. "Noah",
  1405. "Neopuc",
  1406. {
  1407. front: {
  1408. height: math.unit(2, "meter"),
  1409. weight: math.unit(60, "kg"),
  1410. name: "Front",
  1411. image: {
  1412. source: "./media/characters/noah/front.svg"
  1413. }
  1414. },
  1415. talons: {
  1416. height: math.unit(0.315, "meter"),
  1417. name: "Talons",
  1418. image: {
  1419. source: "./media/characters/noah/talons.svg"
  1420. }
  1421. }
  1422. },
  1423. [
  1424. {
  1425. name: "Large",
  1426. height: math.unit(50, "feet")
  1427. },
  1428. {
  1429. name: "Macro",
  1430. height: math.unit(750, "feet")
  1431. },
  1432. {
  1433. name: "Megamacro",
  1434. height: math.unit(50, "miles")
  1435. },
  1436. {
  1437. name: "Gigamacro",
  1438. height: math.unit(100000, "miles")
  1439. },
  1440. {
  1441. name: "Full-Size",
  1442. height: math.unit(3000000000, "miles")
  1443. }
  1444. ],
  1445. math.unit(750, "feet")
  1446. )
  1447. };
  1448. characterMakers["Natalya"] = () => {
  1449. return makeCharacter(
  1450. "Natalya",
  1451. "Neopuc",
  1452. {
  1453. front: {
  1454. height: math.unit(2, "meter"),
  1455. weight: math.unit(80, "kg"),
  1456. name: "Front",
  1457. image: {
  1458. source: "./media/characters/natalya/front.svg"
  1459. }
  1460. },
  1461. back: {
  1462. height: math.unit(2, "meter"),
  1463. weight: math.unit(80, "kg"),
  1464. name: "Back",
  1465. image: {
  1466. source: "./media/characters/natalya/back.svg"
  1467. }
  1468. }
  1469. },
  1470. [
  1471. {
  1472. name: "Normal",
  1473. height: math.unit(150, "feet")
  1474. },
  1475. {
  1476. name: "Megamacro",
  1477. height: math.unit(5, "miles")
  1478. },
  1479. {
  1480. name: "Full-Size",
  1481. height: math.unit(600, "kiloparsecs")
  1482. }
  1483. ],
  1484. math.unit(150, "feet")
  1485. )
  1486. };
  1487. characterMakers["Erestrebah"] = () => {
  1488. return makeCharacter(
  1489. "Erestrebah",
  1490. "Kurrikage",
  1491. {
  1492. front: {
  1493. height: math.unit(2, "meter"),
  1494. weight: math.unit(50, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/erestrebah/front.svg"
  1498. }
  1499. },
  1500. back: {
  1501. height: math.unit(2, "meter"),
  1502. weight: math.unit(50, "kg"),
  1503. name: "Back",
  1504. image: {
  1505. source: "./media/characters/erestrebah/back.svg",
  1506. extra: 1.2139
  1507. }
  1508. }
  1509. },
  1510. [
  1511. {
  1512. name: "Normal",
  1513. height: math.unit(10, "feet")
  1514. },
  1515. {
  1516. name: "Large",
  1517. height: math.unit(50, "feet")
  1518. },
  1519. {
  1520. name: "Macro",
  1521. height: math.unit(300, "feet")
  1522. },
  1523. {
  1524. name: "Macro+",
  1525. height: math.unit(750, "feet")
  1526. },
  1527. {
  1528. name: "Megamacro",
  1529. height: math.unit(3, "miles")
  1530. }
  1531. ],
  1532. math.unit(50, "feet")
  1533. )
  1534. };
  1535. characterMakers["Jennifer"] = () => {
  1536. return makeCharacter(
  1537. "Jennifer",
  1538. "Neopuc",
  1539. {
  1540. front: {
  1541. height: math.unit(2, "meter"),
  1542. weight: math.unit(80, "kg"),
  1543. name: "Front",
  1544. image: {
  1545. source: "./media/characters/jennifer/front.svg",
  1546. bottom: 0.11,
  1547. extra: 1.16
  1548. }
  1549. },
  1550. frontAlt: {
  1551. height: math.unit(2, "meter"),
  1552. weight: math.unit(80, "kg"),
  1553. name: "Front (Alt)",
  1554. image: {
  1555. source: "./media/characters/jennifer/front-alt.svg"
  1556. }
  1557. }
  1558. },
  1559. [
  1560. {
  1561. name: "Canon Height",
  1562. height: math.unit(120, "feet")
  1563. },
  1564. {
  1565. name: "Macro+",
  1566. height: math.unit(300, "feet")
  1567. },
  1568. {
  1569. name: "Megamacro",
  1570. height: math.unit(20000, "feet")
  1571. }
  1572. ],
  1573. math.unit(120, "feet")
  1574. )
  1575. };
  1576. characterMakers["Kalista"] = () => {
  1577. return makeCharacter(
  1578. "Kalista",
  1579. "Kalista",
  1580. {
  1581. front: {
  1582. height: math.unit(2, "meter"),
  1583. weight: math.unit(50, "kg"),
  1584. name: "Front",
  1585. image: {
  1586. source: "./media/characters/kalista/front.svg"
  1587. }
  1588. },
  1589. back: {
  1590. height: math.unit(2, "meter"),
  1591. weight: math.unit(50, "kg"),
  1592. name: "Back",
  1593. image: {
  1594. source: "./media/characters/kalista/back.svg"
  1595. }
  1596. }
  1597. },
  1598. [
  1599. {
  1600. name: "Uncomfortably Small",
  1601. height: math.unit(10, "feet")
  1602. },
  1603. {
  1604. name: "Small",
  1605. height: math.unit(30, "feet")
  1606. },
  1607. {
  1608. name: "Macro",
  1609. height: math.unit(100, "feet")
  1610. },
  1611. {
  1612. name: "Macro+",
  1613. height: math.unit(2000, "feet")
  1614. },
  1615. {
  1616. name: "True Form",
  1617. height: math.unit(8924, "miles")
  1618. }
  1619. ],
  1620. math.unit(100, "feet")
  1621. )
  1622. };
  1623. characterMakers["GiantGrowingVixen"] = () => {
  1624. return makeCharacter(
  1625. "GiantGrowingVixen",
  1626. "GiantGrowingVixen",
  1627. {
  1628. front: {
  1629. height: math.unit(2, "meter"),
  1630. weight: math.unit(120, "kg"),
  1631. name: "Front",
  1632. image: {
  1633. source: "./media/characters/ggv/front.svg"
  1634. }
  1635. },
  1636. side: {
  1637. height: math.unit(2, "meter"),
  1638. weight: math.unit(120, "kg"),
  1639. name: "Side",
  1640. image: {
  1641. source: "./media/characters/ggv/side.svg"
  1642. }
  1643. }
  1644. },
  1645. [
  1646. {
  1647. name: "Extremely Puny",
  1648. height: math.unit(9 + 5 / 12, "feet")
  1649. },
  1650. {
  1651. name: "Horribly Small",
  1652. height: math.unit(47.7, "miles")
  1653. },
  1654. {
  1655. name: "Reasonably Sized",
  1656. height: math.unit(25000, "parsecs")
  1657. }
  1658. ],
  1659. math.unit(47.7, "miles")
  1660. )
  1661. };
  1662. characterMakers["Napalm"] = () => {
  1663. return makeCharacter(
  1664. "Napalm",
  1665. "RathDaKrogan",
  1666. {
  1667. front: {
  1668. height: math.unit(2, "meter"),
  1669. weight: math.unit(75, "lb"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/napalm/front.svg"
  1673. }
  1674. },
  1675. back: {
  1676. height: math.unit(2, "meter"),
  1677. weight: math.unit(75, "lb"),
  1678. name: "Back",
  1679. image: {
  1680. source: "./media/characters/napalm/back.svg"
  1681. }
  1682. }
  1683. },
  1684. [
  1685. {
  1686. name: "Standard",
  1687. height: math.unit(55, "feet")
  1688. }
  1689. ],
  1690. math.unit(55, "feet")
  1691. )
  1692. };
  1693. characterMakers["Asana"] = () => {
  1694. return makeCharacter(
  1695. "Asana",
  1696. "Asana",
  1697. {
  1698. front: {
  1699. height: math.unit(7 + 5 / 6, "feet"),
  1700. weight: math.unit(325, "lb"),
  1701. name: "Front",
  1702. image: {
  1703. source: "./media/characters/asana/front.svg",
  1704. extra: 1128 / 1068
  1705. }
  1706. },
  1707. back: {
  1708. height: math.unit(7 + 5 / 6, "feet"),
  1709. weight: math.unit(325, "lb"),
  1710. name: "Back",
  1711. image: {
  1712. source: "./media/characters/asana/back.svg",
  1713. extra: 1128 / 1068
  1714. }
  1715. },
  1716. },
  1717. [
  1718. {
  1719. name: "Standard",
  1720. height: math.unit(7 + 5 / 6, "feet")
  1721. },
  1722. {
  1723. name: "Large",
  1724. height: math.unit(10, "meters")
  1725. },
  1726. {
  1727. name: "Macro",
  1728. height: math.unit(2500, "meters")
  1729. },
  1730. {
  1731. name: "Megamacro",
  1732. height: math.unit(5e6, "meters")
  1733. },
  1734. {
  1735. name: "Examacro",
  1736. height: math.unit(5e12, "lightyears")
  1737. }
  1738. ],
  1739. math.unit(7 + 5 / 6, "feet")
  1740. )
  1741. };
  1742. characterMakers["Ebony"] = () => {
  1743. return makeCharacter(
  1744. "Ebony",
  1745. "Lazerwolf",
  1746. {
  1747. front: {
  1748. height: math.unit(2, "meter"),
  1749. weight: math.unit(60, "kg"),
  1750. name: "Front",
  1751. image: {
  1752. source: "./media/characters/ebony/front.svg",
  1753. bottom: 0.03,
  1754. extra: 1045 / 810 + 0.03
  1755. }
  1756. },
  1757. side: {
  1758. height: math.unit(2, "meter"),
  1759. weight: math.unit(60, "kg"),
  1760. name: "Side",
  1761. image: {
  1762. source: "./media/characters/ebony/side.svg",
  1763. bottom: 0.03,
  1764. extra: 1045 / 810 + 0.03
  1765. }
  1766. },
  1767. back: {
  1768. height: math.unit(2, "meter"),
  1769. weight: math.unit(60, "kg"),
  1770. name: "Back",
  1771. image: {
  1772. source: "./media/characters/ebony/back.svg",
  1773. bottom: 0.01,
  1774. extra: 1045 / 810 + 0.01
  1775. }
  1776. },
  1777. },
  1778. [
  1779. {
  1780. name: "Standard",
  1781. height: math.unit(9 / 8 * (7 + 5 / 12), "feet")
  1782. },
  1783. {
  1784. name: "Macro",
  1785. height: math.unit(200, "feet")
  1786. },
  1787. {
  1788. name: "Gigamacro",
  1789. height: math.unit(13000, "km")
  1790. }
  1791. ],
  1792. math.unit(7 + 5 / 12, "feet")
  1793. )
  1794. };
  1795. characterMakers["Mountain"] = () => {
  1796. return makeCharacter(
  1797. "Mountain",
  1798. "Asana",
  1799. {
  1800. front: {
  1801. height: math.unit(6, "feet"),
  1802. weight: math.unit(175, "lb"),
  1803. name: "Front",
  1804. image: {
  1805. source: "./media/characters/mountain/front.svg"
  1806. }
  1807. },
  1808. back: {
  1809. height: math.unit(6, "feet"),
  1810. weight: math.unit(175, "lb"),
  1811. name: "Back",
  1812. image: {
  1813. source: "./media/characters/mountain/back.svg"
  1814. }
  1815. },
  1816. },
  1817. [
  1818. {
  1819. name: "Large",
  1820. height: math.unit(20, "meters")
  1821. },
  1822. {
  1823. name: "Macro",
  1824. height: math.unit(300, "meters")
  1825. },
  1826. {
  1827. name: "Gigamacro",
  1828. height: math.unit(10000, "km")
  1829. },
  1830. {
  1831. name: "Examacro",
  1832. height: math.unit(10e9, "lightyears")
  1833. }
  1834. ],
  1835. math.unit(10000, "km")
  1836. )
  1837. };
  1838. characterMakers["Rick"] = () => {
  1839. return makeCharacter(
  1840. "Rick",
  1841. "Victni",
  1842. {
  1843. front: {
  1844. height: math.unit(8, "feet"),
  1845. weight: math.unit(500, "lb"),
  1846. name: "Front",
  1847. image: {
  1848. source: "./media/characters/rick/front.svg"
  1849. }
  1850. }
  1851. },
  1852. [
  1853. {
  1854. name: "Normal",
  1855. height: math.unit(8, "feet")
  1856. },
  1857. {
  1858. name: "Macro",
  1859. height: math.unit(5, "km")
  1860. }
  1861. ],
  1862. math.unit(8, "feet")
  1863. )
  1864. };
  1865. characterMakers["Ona"] = () => {
  1866. return makeCharacter(
  1867. "Ona",
  1868. "Arrogance127",
  1869. {
  1870. front: {
  1871. height: math.unit(8, "feet"),
  1872. weight: math.unit(120, "lb"),
  1873. name: "Front",
  1874. image: {
  1875. source: "./media/characters/ona/front.svg"
  1876. }
  1877. },
  1878. frontAlt: {
  1879. height: math.unit(8, "feet"),
  1880. weight: math.unit(120, "lb"),
  1881. name: "Front (Alt)",
  1882. image: {
  1883. source: "./media/characters/ona/front-alt.svg"
  1884. }
  1885. },
  1886. back: {
  1887. height: math.unit(8, "feet"),
  1888. weight: math.unit(120, "lb"),
  1889. name: "Back",
  1890. image: {
  1891. source: "./media/characters/ona/back.svg"
  1892. }
  1893. },
  1894. foot: {
  1895. height: math.unit(1.1, "feet"),
  1896. name: "Foot",
  1897. image: {
  1898. source: "./media/characters/ona/foot.svg"
  1899. }
  1900. }
  1901. },
  1902. [
  1903. {
  1904. name: "Megamacro",
  1905. height: math.unit(70, "km")
  1906. },
  1907. {
  1908. name: "Gigamacro",
  1909. height: math.unit(681818, "miles")
  1910. },
  1911. {
  1912. name: "Examacro",
  1913. height: math.unit(3800000, "lightyears")
  1914. },
  1915. ],
  1916. math.unit(70, "km")
  1917. )
  1918. };
  1919. characterMakers["Mech"] = () => {
  1920. return makeCharacter(
  1921. "Mech",
  1922. "mechEdragon",
  1923. {
  1924. front: {
  1925. height: math.unit(12, "feet"),
  1926. weight: math.unit(3000, "lb"),
  1927. name: "Front",
  1928. image: {
  1929. source: "./media/characters/mech/front.svg",
  1930. bottom: 0.025,
  1931. }
  1932. },
  1933. back: {
  1934. height: math.unit(12, "feet"),
  1935. weight: math.unit(3000, "lb"),
  1936. name: "Back",
  1937. image: {
  1938. source: "./media/characters/mech/back.svg",
  1939. bottom: 0.03,
  1940. }
  1941. }
  1942. },
  1943. [
  1944. {
  1945. name: "Normal",
  1946. height: math.unit(12, "feet")
  1947. },
  1948. {
  1949. name: "Macro",
  1950. height: math.unit(300, "feet")
  1951. },
  1952. {
  1953. name: "Macro+",
  1954. height: math.unit(1500, "feet")
  1955. },
  1956. ],
  1957. math.unit(300, "feet")
  1958. )
  1959. };
  1960. characterMakers["Gregory"] = () => {
  1961. return makeCharacter(
  1962. "Gregory",
  1963. "GregoryKlippenspringer",
  1964. {
  1965. front: {
  1966. height: math.unit(1.3, "meter"),
  1967. weight: math.unit(30, "kg"),
  1968. name: "Front",
  1969. image: {
  1970. source: "./media/characters/gregory/front.svg",
  1971. }
  1972. }
  1973. },
  1974. [
  1975. {
  1976. name: "Normal",
  1977. height: math.unit(1.3, "meter")
  1978. },
  1979. {
  1980. name: "Macro",
  1981. height: math.unit(20, "meter")
  1982. }
  1983. ],
  1984. math.unit(1.3, "meter")
  1985. )
  1986. };
  1987. characterMakers["Elory"] = () => {
  1988. return makeCharacter(
  1989. "Elory",
  1990. "GregoryKlippenspringer",
  1991. {
  1992. front: {
  1993. height: math.unit(2.8, "meter"),
  1994. weight: math.unit(200, "kg"),
  1995. name: "Front",
  1996. image: {
  1997. source: "./media/characters/elory/front.svg",
  1998. }
  1999. }
  2000. },
  2001. [
  2002. {
  2003. name: "Normal",
  2004. height: math.unit(2.8, "meter")
  2005. },
  2006. {
  2007. name: "Macro",
  2008. height: math.unit(38, "meter")
  2009. }
  2010. ],
  2011. math.unit(2.8, "meter")
  2012. )
  2013. };
  2014. characterMakers["Angelpatamon"] = () => {
  2015. return makeCharacter(
  2016. "Angelpatamon",
  2017. "GregoryKlippenspringer",
  2018. {
  2019. front: {
  2020. height: math.unit(470, "feet"),
  2021. weight: math.unit(924, "tons"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/angelpatamon/front.svg",
  2025. }
  2026. }
  2027. },
  2028. [
  2029. {
  2030. name: "Normal",
  2031. height: math.unit(470, "feet")
  2032. },
  2033. {
  2034. name: "Deity Size I",
  2035. height: math.unit(28651.2, "km")
  2036. },
  2037. {
  2038. name: "Deity Size II",
  2039. height: math.unit(171907.2, "km")
  2040. }
  2041. ],
  2042. math.unit(470, "feet")
  2043. )
  2044. };
  2045. characterMakers["Cryae"] = () => {
  2046. return makeCharacter(
  2047. "Cryae",
  2048. "GregoryKlippenspringer",
  2049. {
  2050. side: {
  2051. height: math.unit(7.2, "meter"),
  2052. weight: math.unit(8.2, "tons"),
  2053. name: "Side",
  2054. image: {
  2055. source: "./media/characters/cryae/side.svg",
  2056. extra: 3500 / 1500
  2057. }
  2058. }
  2059. },
  2060. [
  2061. {
  2062. name: "Normal",
  2063. height: math.unit(7.2, "meter")
  2064. }
  2065. ],
  2066. math.unit(7.2, "meter")
  2067. )
  2068. };
  2069. characterMakers["Xera"] = () => {
  2070. return makeCharacter(
  2071. "Xera",
  2072. "Asana",
  2073. {
  2074. front: {
  2075. height: math.unit(6, "feet"),
  2076. weight: math.unit(175, "lb"),
  2077. name: "Front",
  2078. image: {
  2079. source: "./media/characters/xera/front.svg",
  2080. extra: 2300 / 2061
  2081. }
  2082. },
  2083. side: {
  2084. height: math.unit(6, "feet"),
  2085. weight: math.unit(175, "lb"),
  2086. name: "Side",
  2087. image: {
  2088. source: "./media/characters/xera/side.svg",
  2089. extra: 2300 / 2061
  2090. }
  2091. },
  2092. back: {
  2093. height: math.unit(6, "feet"),
  2094. weight: math.unit(175, "lb"),
  2095. name: "Back",
  2096. image: {
  2097. source: "./media/characters/xera/back.svg"
  2098. }
  2099. },
  2100. },
  2101. [
  2102. {
  2103. name: "Small",
  2104. height: math.unit(10, "feet")
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(500, "meters")
  2109. },
  2110. {
  2111. name: "Macro+",
  2112. height: math.unit(10, "km")
  2113. },
  2114. {
  2115. name: "Gigamacro",
  2116. height: math.unit(25000, "km")
  2117. },
  2118. {
  2119. name: "Teramacro",
  2120. height: math.unit(3e6, "km")
  2121. }
  2122. ],
  2123. math.unit(500, "meters")
  2124. )
  2125. };
  2126. characterMakers["Nebula"] = () => {
  2127. return makeCharacter(
  2128. "Nebula",
  2129. "Cilenomon",
  2130. {
  2131. front: {
  2132. height: math.unit(6, "feet"),
  2133. weight: math.unit(175, "lb"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/nebula/front.svg",
  2137. extra: 2600 / 2450
  2138. }
  2139. }
  2140. },
  2141. [
  2142. {
  2143. name: "Small",
  2144. height: math.unit(4.5, "meters")
  2145. },
  2146. {
  2147. name: "Macro",
  2148. height: math.unit(1500, "meters")
  2149. },
  2150. {
  2151. name: "Megamacro",
  2152. height: math.unit(150, "km")
  2153. },
  2154. {
  2155. name: "Gigamacro",
  2156. height: math.unit(27000, "km")
  2157. }
  2158. ],
  2159. math.unit(1500, "meters")
  2160. )
  2161. };
  2162. characterMakers["Abysgar"] = () => {
  2163. return makeCharacter(
  2164. "Abysgar",
  2165. "Cilenomon",
  2166. {
  2167. front: {
  2168. height: math.unit(6, "feet"),
  2169. weight: math.unit(225, "lb"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/abysgar/front.svg"
  2173. }
  2174. }
  2175. },
  2176. [
  2177. {
  2178. name: "Small",
  2179. height: math.unit(4.5, "meters")
  2180. },
  2181. {
  2182. name: "Macro",
  2183. height: math.unit(1250, "meters")
  2184. },
  2185. {
  2186. name: "Megamacro",
  2187. height: math.unit(125, "km")
  2188. },
  2189. {
  2190. name: "Gigamacro",
  2191. height: math.unit(26000, "km")
  2192. }
  2193. ],
  2194. math.unit(1250, "meters")
  2195. )
  2196. };
  2197. characterMakers["Yakuz"] = () => {
  2198. return makeCharacter(
  2199. "Yakuz",
  2200. "Cilenomon",
  2201. {
  2202. front: {
  2203. height: math.unit(6, "feet"),
  2204. weight: math.unit(180, "lb"),
  2205. name: "Front",
  2206. image: {
  2207. source: "./media/characters/yakuz/front.svg"
  2208. }
  2209. }
  2210. },
  2211. [
  2212. {
  2213. name: "Small",
  2214. height: math.unit(5, "meters")
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(2500, "meters")
  2219. },
  2220. {
  2221. name: "Megamacro",
  2222. height: math.unit(200, "km")
  2223. },
  2224. {
  2225. name: "Gigamacro",
  2226. height: math.unit(100000, "km")
  2227. }
  2228. ],
  2229. math.unit(1500, "meters")
  2230. )
  2231. };
  2232. characterMakers["Mirova"] = () => {
  2233. return makeCharacter(
  2234. "Mirova",
  2235. "Cilenomon",
  2236. {
  2237. front: {
  2238. height: math.unit(6, "feet"),
  2239. weight: math.unit(175, "lb"),
  2240. name: "Front",
  2241. image: {
  2242. source: "./media/characters/mirova/front.svg"
  2243. }
  2244. }
  2245. },
  2246. [
  2247. {
  2248. name: "Small",
  2249. height: math.unit(5, "meters")
  2250. },
  2251. {
  2252. name: "Macro",
  2253. height: math.unit(900, "meters")
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(135, "km")
  2258. },
  2259. {
  2260. name: "Gigamacro",
  2261. height: math.unit(20000, "km")
  2262. }
  2263. ],
  2264. math.unit(900, "meters")
  2265. )
  2266. };
  2267. characterMakers["Asana (Mech)"] = () => {
  2268. return makeCharacter(
  2269. "Asana (Mech)",
  2270. "Asana",
  2271. {
  2272. side: {
  2273. height: math.unit(28.35, "feet"),
  2274. weight: math.unit(99.75, "tons"),
  2275. name: "Side",
  2276. image: {
  2277. source: "./media/characters/asana-mech/side.svg"
  2278. }
  2279. }
  2280. },
  2281. [
  2282. {
  2283. name: "Normal",
  2284. height: math.unit(28.35, "feet")
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(2500, "feet")
  2289. },
  2290. {
  2291. name: "Megamacro",
  2292. height: math.unit(25, "miles")
  2293. },
  2294. {
  2295. name: "Examacro",
  2296. height: math.unit(6e8, "lightyears")
  2297. },
  2298. ],
  2299. math.unit(28.35, "feet")
  2300. )
  2301. };
  2302. characterMakers["Ashtrek"] = () => {
  2303. return makeCharacter(
  2304. "Ashtrek",
  2305. "Ashtrek",
  2306. {
  2307. front: {
  2308. height: math.unit(2, "meters"),
  2309. weight: math.unit(70, "kg"),
  2310. name: "Front",
  2311. image: {
  2312. source: "./media/characters/ashtrek/front.svg"
  2313. }
  2314. },
  2315. frontArmor: {
  2316. height: math.unit(2, "meters"),
  2317. weight: math.unit(76, "kg"),
  2318. name: "Front (Armor)",
  2319. image: {
  2320. source: "./media/characters/ashtrek/front-armor.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "DEFCON 5",
  2327. height: math.unit(5, "meters")
  2328. },
  2329. {
  2330. name: "DEFCON 4",
  2331. height: math.unit(500, "meters")
  2332. },
  2333. {
  2334. name: "DEFCON 3",
  2335. height: math.unit(5, "km")
  2336. },
  2337. {
  2338. name: "DEFCON 2",
  2339. height: math.unit(500, "km")
  2340. },
  2341. {
  2342. name: "DEFCON 1",
  2343. height: math.unit(500000, "km")
  2344. },
  2345. {
  2346. name: "DEFCON 0",
  2347. height: math.unit(3, "gigaparsecs")
  2348. },
  2349. ],
  2350. math.unit(500, "meters")
  2351. )
  2352. };
  2353. characterMakers["Gale"] = () => {
  2354. return makeCharacter(
  2355. "Gale",
  2356. "GaleFierre",
  2357. {
  2358. front: {
  2359. height: math.unit(2, "meters"),
  2360. weight: math.unit(76, "kg"),
  2361. name: "Front",
  2362. image: {
  2363. source: "./media/characters/gale/front.svg"
  2364. }
  2365. },
  2366. frontAlt1: {
  2367. height: math.unit(2, "meters"),
  2368. weight: math.unit(76, "kg"),
  2369. name: "Front (Alt 1)",
  2370. image: {
  2371. source: "./media/characters/gale/front-alt-1.svg"
  2372. }
  2373. },
  2374. frontAlt2: {
  2375. height: math.unit(2, "meters"),
  2376. weight: math.unit(76, "kg"),
  2377. name: "Front (Alt 2)",
  2378. image: {
  2379. source: "./media/characters/gale/front-alt-2.svg"
  2380. }
  2381. },
  2382. },
  2383. [
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(7, "feet")
  2387. },
  2388. {
  2389. name: "Macro",
  2390. height: math.unit(150, "feet")
  2391. },
  2392. {
  2393. name: "Macro+",
  2394. height: math.unit(300, "feet")
  2395. },
  2396. ],
  2397. math.unit(150, "feet")
  2398. )
  2399. };
  2400. characterMakers["Draylen"] = () => {
  2401. return makeCharacter(
  2402. "Draylen",
  2403. "Longshot Coyote",
  2404. {
  2405. front: {
  2406. height: math.unit(2, "meters"),
  2407. weight: math.unit(76, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/draylen/front.svg"
  2411. }
  2412. }
  2413. },
  2414. [
  2415. {
  2416. name: "Macro",
  2417. height: math.unit(150, "feet")
  2418. }
  2419. ],
  2420. math.unit(150, "feet")
  2421. )
  2422. };
  2423. characterMakers["Chez"] = () => {
  2424. return makeCharacter(
  2425. "Chez",
  2426. "Ashtrek",
  2427. {
  2428. front: {
  2429. height: math.unit(7 + 9 / 12, "feet"),
  2430. weight: math.unit(379, "lbs"),
  2431. name: "Front",
  2432. image: {
  2433. source: "./media/characters/chez/front.svg"
  2434. }
  2435. },
  2436. side: {
  2437. height: math.unit(7 + 9 / 12, "feet"),
  2438. weight: math.unit(379, "lbs"),
  2439. name: "Side",
  2440. image: {
  2441. source: "./media/characters/chez/side.svg"
  2442. }
  2443. }
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(7 + 9 / 12, "feet")
  2449. },
  2450. {
  2451. name: "God King",
  2452. height: math.unit(9750000, "meters")
  2453. }
  2454. ],
  2455. math.unit(7 + 9 / 12, "feet")
  2456. )
  2457. };
  2458. characterMakers["Kaylum"] = () => {
  2459. return makeCharacter(
  2460. "Kaylum",
  2461. "DJDarkJaro",
  2462. {
  2463. front: {
  2464. height: math.unit(6, "feet"),
  2465. weight: math.unit(275, "lbs"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/kaylum/front.svg",
  2469. bottom: 0.01,
  2470. extra: 1166 / 1031
  2471. }
  2472. },
  2473. frontWingless: {
  2474. height: math.unit(6, "feet"),
  2475. weight: math.unit(275, "lbs"),
  2476. name: "Front (Wingless)",
  2477. image: {
  2478. source: "./media/characters/kaylum/front-wingless.svg",
  2479. bottom: 0.01,
  2480. extra: 1117 / 1031
  2481. }
  2482. }
  2483. },
  2484. [
  2485. {
  2486. name: "Normal",
  2487. height: math.unit(3.05, "meters")
  2488. },
  2489. {
  2490. name: "Master",
  2491. height: math.unit(5.5, "meters")
  2492. },
  2493. {
  2494. name: "Rampage",
  2495. height: math.unit(19, "meters")
  2496. },
  2497. {
  2498. name: "Macro Lite",
  2499. height: math.unit(37, "meters")
  2500. },
  2501. {
  2502. name: "Hyper Predator",
  2503. height: math.unit(61, "meters")
  2504. },
  2505. {
  2506. name: "Macro",
  2507. height: math.unit(138, "meters")
  2508. }
  2509. ],
  2510. math.unit(138, "meters")
  2511. )
  2512. };
  2513. characterMakers["Geta"] = () => {
  2514. return makeCharacter(
  2515. "Geta",
  2516. "Aeznon",
  2517. {
  2518. front: {
  2519. height: math.unit(6, "feet"),
  2520. weight: math.unit(150, "lbs"),
  2521. name: "Front",
  2522. image: {
  2523. source: "./media/characters/geta/front.svg"
  2524. }
  2525. }
  2526. },
  2527. [
  2528. {
  2529. name: "Micro",
  2530. height: math.unit(3, "inches")
  2531. },
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(5 + 5 / 12, "feet")
  2535. }
  2536. ],
  2537. math.unit(3, "inches")
  2538. )
  2539. };
  2540. characterMakers["Tyrnn"] = () => {
  2541. return makeCharacter(
  2542. "Tyrnn",
  2543. "Tyrnn",
  2544. {
  2545. front: {
  2546. height: math.unit(6, "feet"),
  2547. weight: math.unit(300, "lbs"),
  2548. name: "Front",
  2549. image: {
  2550. source: "./media/characters/tyrnn/front.svg"
  2551. }
  2552. }
  2553. },
  2554. [
  2555. {
  2556. name: "Main Height",
  2557. height: math.unit(355, "feet")
  2558. },
  2559. {
  2560. name: "Fave. Height",
  2561. height: math.unit(2400, "feet")
  2562. }
  2563. ],
  2564. math.unit(355, "feet")
  2565. )
  2566. };
  2567. characterMakers["Apple"] = () => {
  2568. return makeCharacter(
  2569. "Apple",
  2570. "Appledectomy",
  2571. {
  2572. front: {
  2573. height: math.unit(6, "feet"),
  2574. weight: math.unit(300, "lbs"),
  2575. name: "Front",
  2576. image: {
  2577. source: "./media/characters/appledectomy/front.svg"
  2578. }
  2579. }
  2580. },
  2581. [
  2582. {
  2583. name: "Macro",
  2584. height: math.unit(2500, "feet")
  2585. },
  2586. {
  2587. name: "Megamacro",
  2588. height: math.unit(50, "miles")
  2589. },
  2590. {
  2591. name: "Gigamacro",
  2592. height: math.unit(5000, "miles")
  2593. },
  2594. {
  2595. name: "Teramacro",
  2596. height: math.unit(250000, "miles")
  2597. },
  2598. ],
  2599. math.unit(50, "miles")
  2600. )
  2601. };
  2602. characterMakers["Vulpes"] = () => {
  2603. return makeCharacter(
  2604. "Vulpes",
  2605. "VulpesPawpad",
  2606. {
  2607. front: {
  2608. height: math.unit(6, "feet"),
  2609. weight: math.unit(200, "lbs"),
  2610. name: "Front",
  2611. image: {
  2612. source: "./media/characters/vulpes/front.svg"
  2613. }
  2614. },
  2615. side: {
  2616. height: math.unit(6, "feet"),
  2617. weight: math.unit(200, "lbs"),
  2618. name: "Side",
  2619. image: {
  2620. source: "./media/characters/vulpes/side.svg"
  2621. }
  2622. },
  2623. back: {
  2624. height: math.unit(6, "feet"),
  2625. weight: math.unit(200, "lbs"),
  2626. name: "Back",
  2627. image: {
  2628. source: "./media/characters/vulpes/back.svg"
  2629. }
  2630. },
  2631. feet: {
  2632. height: math.unit(1.276, "feet"),
  2633. name: "Feet",
  2634. image: {
  2635. source: "./media/characters/vulpes/feet.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Micro",
  2642. height: math.unit(3, "inches")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(6.3, "feet")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(7500, "feet")
  2651. },
  2652. {
  2653. name: "Gigamacro",
  2654. height: math.unit(570000, "miles")
  2655. }
  2656. ],
  2657. math.unit(7500, "feet")
  2658. )
  2659. };
  2660. characterMakers["Rain Fallen"] = () => {
  2661. return makeCharacter(
  2662. "Rain Fallen",
  2663. "Rain Fallen",
  2664. {
  2665. front: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(210, "lbs"),
  2668. name: "Front",
  2669. image: {
  2670. source: "./media/characters/rain/front.svg"
  2671. }
  2672. },
  2673. side: {
  2674. height: math.unit(6, "feet"),
  2675. weight: math.unit(210, "lbs"),
  2676. name: "Side",
  2677. image: {
  2678. source: "./media/characters/rain/side.svg"
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(6, "feet"),
  2683. weight: math.unit(210, "lbs"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/rain/back.svg"
  2687. }
  2688. },
  2689. feral: {
  2690. height: math.unit(9, "feet"),
  2691. weight: math.unit(700, "lbs"),
  2692. name: "Feral",
  2693. image: {
  2694. source: "./media/characters/rain/feral.svg"
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(5, "meter")
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(150, "meter")
  2706. },
  2707. {
  2708. name: "Megamacro",
  2709. height: math.unit(278e6, "meter")
  2710. },
  2711. {
  2712. name: "Gigamacro",
  2713. height: math.unit(2e9, "meter")
  2714. },
  2715. {
  2716. name: "Teramacro",
  2717. height: math.unit(8e12, "meter")
  2718. },
  2719. {
  2720. name: "Devourer",
  2721. height: math.unit(14, "zettameters")
  2722. },
  2723. {
  2724. name: "Scarlet King",
  2725. height: math.unit(18, "yottameters")
  2726. },
  2727. ],
  2728. math.unit(150, "meter")
  2729. )
  2730. };
  2731. characterMakers["Zaakira"] = () => {
  2732. return makeCharacter(
  2733. "Zaakira",
  2734. "Jazzywolf",
  2735. {
  2736. standing: {
  2737. height: math.unit(6, "feet"),
  2738. weight: math.unit(180, "lbs"),
  2739. name: "Standing",
  2740. image: {
  2741. source: "./media/characters/zaakira/standing.svg"
  2742. }
  2743. },
  2744. laying: {
  2745. height: math.unit(3, "feet"),
  2746. weight: math.unit(180, "lbs"),
  2747. name: "Laying",
  2748. image: {
  2749. source: "./media/characters/zaakira/laying.svg"
  2750. }
  2751. },
  2752. },
  2753. [
  2754. {
  2755. name: "Normal",
  2756. height: math.unit(12, "feet")
  2757. },
  2758. {
  2759. name: "Macro",
  2760. height: math.unit(279, "feet")
  2761. }
  2762. ],
  2763. math.unit(279, "feet")
  2764. )
  2765. };
  2766. characterMakers["Sigvald"] = () => {
  2767. return makeCharacter(
  2768. "Sigvald",
  2769. "Sigvald",
  2770. {
  2771. front: {
  2772. height: math.unit(6, "feet"),
  2773. weight: math.unit(250, "lbs"),
  2774. name: "Front",
  2775. image: {
  2776. source: "./media/characters/sigvald/front.svg",
  2777. extra: 1000 / 850
  2778. }
  2779. },
  2780. back: {
  2781. height: math.unit(6, "feet"),
  2782. weight: math.unit(250, "lbs"),
  2783. name: "Back",
  2784. image: {
  2785. source: "./media/characters/sigvald/back.svg"
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(8, "feet")
  2793. },
  2794. {
  2795. name: "Large",
  2796. height: math.unit(12, "feet")
  2797. },
  2798. {
  2799. name: "Larger",
  2800. height: math.unit(20, "feet")
  2801. },
  2802. {
  2803. name: "Macro",
  2804. height: math.unit(150, "feet")
  2805. },
  2806. {
  2807. name: "Macro+",
  2808. height: math.unit(200, "feet")
  2809. },
  2810. ],
  2811. math.unit(200, "feet")
  2812. )
  2813. };
  2814. characterMakers["Scott"] = () => {
  2815. return makeCharacter(
  2816. "Scott",
  2817. "Scott",
  2818. {
  2819. side: {
  2820. height: math.unit(12, "feet"),
  2821. weight: math.unit(3000, "lbs"),
  2822. name: "Side",
  2823. image: {
  2824. source: "./media/characters/scott/side.svg",
  2825. }
  2826. },
  2827. upright: {
  2828. height: math.unit(12, "feet"),
  2829. weight: math.unit(3000, "lbs"),
  2830. name: "Upright",
  2831. image: {
  2832. source: "./media/characters/scott/upright.svg",
  2833. }
  2834. },
  2835. },
  2836. [],
  2837. math.unit(12, "feet")
  2838. )
  2839. };
  2840. characterMakers["Tobias"] = () => {
  2841. return makeCharacter(
  2842. "Tobias",
  2843. "Tobias",
  2844. {
  2845. side: {
  2846. height: math.unit(8, "meters"),
  2847. weight: math.unit(84755, "lbs"),
  2848. name: "Side",
  2849. image: {
  2850. source: "./media/characters/tobias/side.svg",
  2851. extra: 5 / 4
  2852. }
  2853. },
  2854. },
  2855. [],
  2856. math.unit(8, "meters")
  2857. )
  2858. };
  2859. characterMakers["Kieran"] = () => {
  2860. return makeCharacter(
  2861. "Kieran",
  2862. "Kieran",
  2863. {
  2864. front: {
  2865. height: math.unit(5.5, "feet"),
  2866. weight: math.unit(400, "lbs"),
  2867. name: "Front",
  2868. image: {
  2869. source: "./media/characters/kieran/front.svg",
  2870. extra: 1.05
  2871. }
  2872. },
  2873. side: {
  2874. height: math.unit(5.5, "feet"),
  2875. weight: math.unit(400, "lbs"),
  2876. name: "Side",
  2877. image: {
  2878. source: "./media/characters/kieran/side.svg",
  2879. extra: 950 / 850
  2880. }
  2881. },
  2882. },
  2883. [],
  2884. math.unit(5.5, "feet")
  2885. )
  2886. };
  2887. characterMakers["Sanya"] = () => {
  2888. return makeCharacter(
  2889. "Sanya",
  2890. "BanterGhost",
  2891. {
  2892. side: {
  2893. height: math.unit(2, "meters"),
  2894. weight: math.unit(70, "kg"),
  2895. name: "Side",
  2896. image: {
  2897. source: "./media/characters/sanya/side.svg",
  2898. bottom: 0.02,
  2899. extra: 1.02
  2900. }
  2901. },
  2902. },
  2903. [
  2904. {
  2905. name: "Small",
  2906. height: math.unit(2, "meters")
  2907. },
  2908. {
  2909. name: "Normal",
  2910. height: math.unit(3, "meters")
  2911. },
  2912. {
  2913. name: "Macro",
  2914. height: math.unit(16, "meters")
  2915. },
  2916. ],
  2917. math.unit(16, "meters")
  2918. )
  2919. };
  2920. characterMakers["Miranda"] = () => {
  2921. return makeCharacter(
  2922. "Miranda",
  2923. "MirandaAqrayla",
  2924. {
  2925. side: {
  2926. height: math.unit(2, "meters"),
  2927. weight: math.unit(120, "kg"),
  2928. name: "Front",
  2929. image: {
  2930. source: "./media/characters/miranda/front.svg",
  2931. extra: 10.6 / 10
  2932. }
  2933. },
  2934. },
  2935. [
  2936. {
  2937. name: "Normal",
  2938. height: math.unit(10, "feet")
  2939. }
  2940. ],
  2941. math.unit(10, "feet")
  2942. )
  2943. };
  2944. characterMakers["James"] = () => {
  2945. return makeCharacter(
  2946. "James",
  2947. "MirandaAqrayla",
  2948. {
  2949. side: {
  2950. height: math.unit(2, "meters"),
  2951. weight: math.unit(100, "kg"),
  2952. name: "Front",
  2953. image: {
  2954. source: "./media/characters/james/front.svg",
  2955. extra: 10 / 8.5
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Normal",
  2962. height: math.unit(8.5, "feet")
  2963. }
  2964. ],
  2965. math.unit(8.5, "feet")
  2966. )
  2967. };
  2968. characterMakers["Heather"] = () => {
  2969. return makeCharacter(
  2970. "Heather",
  2971. "MirandaAqrayla",
  2972. {
  2973. side: {
  2974. height: math.unit(9.5, "feet"),
  2975. weight: math.unit(2500, "lbs"),
  2976. name: "Side",
  2977. image: {
  2978. source: "./media/characters/heather/side.svg"
  2979. }
  2980. },
  2981. },
  2982. [
  2983. {
  2984. name: "Normal",
  2985. height: math.unit(9.5, "feet")
  2986. }
  2987. ],
  2988. math.unit(9.5, "feet")
  2989. )
  2990. };
  2991. characterMakers["Lukas"] = () => {
  2992. return makeCharacter(
  2993. "Lukas",
  2994. "MirandaAqrayla",
  2995. {
  2996. side: {
  2997. height: math.unit(6.5, "feet"),
  2998. weight: math.unit(400, "lbs"),
  2999. name: "Side",
  3000. image: {
  3001. source: "./media/characters/lukas/side.svg",
  3002. extra: 7.25 / 6.5
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(6.5, "feet")
  3010. }
  3011. ],
  3012. math.unit(6.5, "feet")
  3013. )
  3014. };
  3015. characterMakers["Louise"] = () => {
  3016. return makeCharacter(
  3017. "Louise",
  3018. "MirandaAqrayla",
  3019. {
  3020. side: {
  3021. height: math.unit(5, "feet"),
  3022. weight: math.unit(3000, "lbs"),
  3023. name: "Side",
  3024. image: {
  3025. source: "./media/characters/louise/side.svg"
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(5, "feet")
  3033. }
  3034. ],
  3035. math.unit(5, "feet")
  3036. )
  3037. };
  3038. characterMakers["Ramona"] = () => {
  3039. return makeCharacter(
  3040. "Ramona",
  3041. "ZakuraTech",
  3042. {
  3043. side: {
  3044. height: math.unit(6, "feet"),
  3045. weight: math.unit(150, "lbs"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/ramona/side.svg"
  3049. }
  3050. },
  3051. },
  3052. [
  3053. {
  3054. name: "Normal",
  3055. height: math.unit(5.3, "meters")
  3056. },
  3057. {
  3058. name: "Macro",
  3059. height: math.unit(20, "stories")
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(50, "stories")
  3064. },
  3065. ],
  3066. math.unit(5.3, "meters")
  3067. )
  3068. };
  3069. characterMakers["Deerpuff"] = () => {
  3070. return makeCharacter(
  3071. "Deerpuff",
  3072. "Deerpuff",
  3073. {
  3074. standing: {
  3075. height: math.unit(5.75, "feet"),
  3076. weight: math.unit(160, "lbs"),
  3077. name: "Standing",
  3078. image: {
  3079. source: "./media/characters/deerpuff/standing.svg",
  3080. extra: 682 / 624
  3081. }
  3082. },
  3083. sitting: {
  3084. height: math.unit(5.75 / 1.79, "feet"),
  3085. weight: math.unit(160, "lbs"),
  3086. name: "Sitting",
  3087. image: {
  3088. source: "./media/characters/deerpuff/sitting.svg",
  3089. bottom: 44 / 400,
  3090. extra: 1 / (1 - 44 / 400)
  3091. }
  3092. },
  3093. taurLaying: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(400, "lbs"),
  3096. name: "Taur (Laying)",
  3097. image: {
  3098. source: "./media/characters/deerpuff/taur-laying.svg"
  3099. }
  3100. },
  3101. },
  3102. [
  3103. {
  3104. name: "Puffball",
  3105. height: math.unit(6, "inches")
  3106. },
  3107. {
  3108. name: "Normalpuff",
  3109. height: math.unit(5.75, "feet")
  3110. },
  3111. {
  3112. name: "Macropuff",
  3113. height: math.unit(1500, "feet")
  3114. },
  3115. {
  3116. name: "Megapuff",
  3117. height: math.unit(500, "miles")
  3118. },
  3119. {
  3120. name: "Gigapuff",
  3121. height: math.unit(250000, "miles")
  3122. },
  3123. {
  3124. name: "Omegapuff",
  3125. height: math.unit(1000, "lightyears")
  3126. },
  3127. ],
  3128. math.unit(1500, "feet")
  3129. )
  3130. };
  3131. characterMakers["Vivian"] = () => {
  3132. return makeCharacter(
  3133. "Vivian",
  3134. "Fauxlacine",
  3135. {
  3136. stomping: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(170, "lbs"),
  3139. name: "Stomping",
  3140. image: {
  3141. source: "./media/characters/vivian/stomping.svg"
  3142. }
  3143. },
  3144. sitting: {
  3145. height: math.unit(6 / 1.75, "feet"),
  3146. weight: math.unit(170, "lbs"),
  3147. name: "Sitting",
  3148. image: {
  3149. source: "./media/characters/vivian/sitting.svg",
  3150. bottom: 1 / 6.4,
  3151. extra: (1 / (1 - 1 / 6.4)) * (1 + 164 / 1600)
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(7, "feet")
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(10, "stories")
  3163. },
  3164. {
  3165. name: "Macro+",
  3166. height: math.unit(30, "stories")
  3167. },
  3168. {
  3169. name: "Megamacro",
  3170. height: math.unit(10, "miles")
  3171. },
  3172. {
  3173. name: "Megamacro+",
  3174. height: math.unit(2750000, "meters")
  3175. },
  3176. ],
  3177. math.unit(7, "feet")
  3178. )
  3179. };
  3180. characterMakers["Prince"] = () => {
  3181. return makeCharacter(
  3182. "Prince",
  3183. "Kurrikage",
  3184. {
  3185. front: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(160, "lbs"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/prince/front.svg",
  3191. extra: 3400/3000
  3192. }
  3193. },
  3194. jumping: {
  3195. height: math.unit(6, "feet"),
  3196. weight: math.unit(160, "lbs"),
  3197. name: "Jumping",
  3198. image: {
  3199. source: "./media/characters/prince/jump.svg",
  3200. extra: 2555/2134
  3201. }
  3202. },
  3203. },
  3204. [
  3205. {
  3206. name: "Normal",
  3207. height: math.unit(7.75, "feet"),
  3208. default: true
  3209. }
  3210. ]
  3211. )
  3212. };
  3213. characterMakers["Psymon"] = () => {
  3214. return makeCharacter(
  3215. "Psymon",
  3216. "Kurrikage",
  3217. {
  3218. standing: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(300, "lbs"),
  3221. name: "Standing",
  3222. image: {
  3223. source: "./media/characters/psymon/standing.svg",
  3224. extra: 1888/1810
  3225. }
  3226. },
  3227. slithering: {
  3228. height: math.unit(6, "feet"),
  3229. weight: math.unit(300, "lbs"),
  3230. name: "Slithering",
  3231. image: {
  3232. source: "./media/characters/psymon/slithering.svg",
  3233. extra: 1330/1224
  3234. }
  3235. },
  3236. slitheringAlt: {
  3237. height: math.unit(6, "feet"),
  3238. weight: math.unit(300, "lbs"),
  3239. name: "Slithering (Alt)",
  3240. image: {
  3241. source: "./media/characters/psymon/slithering-alt.svg",
  3242. extra: 1330/1224
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(11.25, "feet")
  3250. }
  3251. ]
  3252. )
  3253. };
  3254. characterMakers["Daimos"] = () => {
  3255. return makeCharacter(
  3256. "Daimos",
  3257. "Kurrikage",
  3258. {
  3259. front: {
  3260. height: math.unit(6, "feet"),
  3261. weight: math.unit(180, "lbs"),
  3262. name: "Front",
  3263. image: {
  3264. source: "./media/characters/daimos/front.svg",
  3265. extra: 4160/3897
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(8, "feet")
  3273. }
  3274. ]
  3275. )
  3276. };
  3277. characterMakers["Blake"] = () => {
  3278. return makeCharacter(
  3279. "Blake",
  3280. "Kurrikage",
  3281. {
  3282. side: {
  3283. height: math.unit(6, "feet"),
  3284. weight: math.unit(180, "lbs"),
  3285. name: "Side",
  3286. image: {
  3287. source: "./media/characters/blake/side.svg",
  3288. extra: 1212/1120
  3289. }
  3290. },
  3291. crouched: {
  3292. height: math.unit(6*0.57, "feet"),
  3293. weight: math.unit(180, "lbs"),
  3294. name: "Crouched",
  3295. image: {
  3296. source: "./media/characters/blake/crouched.svg",
  3297. extra: 840/587
  3298. }
  3299. },
  3300. bent: {
  3301. height: math.unit(6*0.75, "feet"),
  3302. weight: math.unit(180, "lbs"),
  3303. name: "Bent",
  3304. image: {
  3305. source: "./media/characters/blake/bent.svg",
  3306. extra: 592/544
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Normal",
  3313. height: math.unit(8 + 1/6, "feet")
  3314. }
  3315. ]
  3316. )
  3317. };
  3318. characterMakers["Guisetto"] = () => {
  3319. return makeCharacter(
  3320. "Guisetto",
  3321. "Kurrikage",
  3322. {
  3323. front: {
  3324. height: math.unit(6, "feet"),
  3325. weight: math.unit(180, "lbs"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/guisetto/front.svg",
  3329. extra: 856/817
  3330. }
  3331. },
  3332. airborne: {
  3333. height: math.unit(6, "feet"),
  3334. weight: math.unit(180, "lbs"),
  3335. name: "Airborne",
  3336. image: {
  3337. source: "./media/characters/guisetto/airborne.svg",
  3338. extra: 584/525
  3339. }
  3340. },
  3341. },
  3342. [
  3343. {
  3344. name: "Normal",
  3345. height: math.unit(10 + 11/12, "feet")
  3346. }
  3347. ]
  3348. )
  3349. };
  3350. characterMakers["Luxor"] = () => {
  3351. return makeCharacter(
  3352. "Luxor",
  3353. "Kurrikage",
  3354. {
  3355. front: {
  3356. height: math.unit(6, "feet"),
  3357. weight: math.unit(180, "lbs"),
  3358. name: "Front",
  3359. image: {
  3360. source: "./media/characters/luxor/front.svg",
  3361. extra: 2940/2152
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(6, "feet"),
  3366. weight: math.unit(180, "lbs"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/luxor/back.svg",
  3370. extra: 1083/960
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(5 + 5/6, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Lamp",
  3382. height: math.unit(50, "feet")
  3383. },
  3384. {
  3385. name: "Lämp",
  3386. height: math.unit(300, "feet")
  3387. },
  3388. {
  3389. name: "The sun is a lamp",
  3390. height: math.unit(250000, "miles")
  3391. },
  3392. ]
  3393. )
  3394. };
  3395. characterMakers["Huoyan"] = () => {
  3396. return makeCharacter(
  3397. "Huoyan",
  3398. "Kurrikage",
  3399. {
  3400. front: {
  3401. height: math.unit(6, "feet"),
  3402. weight: math.unit(50, "lbs"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/huoyan/front.svg"
  3406. }
  3407. },
  3408. side: {
  3409. height: math.unit(6, "feet"),
  3410. weight: math.unit(180, "lbs"),
  3411. name: "Side",
  3412. image: {
  3413. source: "./media/characters/huoyan/side.svg"
  3414. }
  3415. },
  3416. },
  3417. [
  3418. {
  3419. name: "Normal",
  3420. height: math.unit(65, "feet")
  3421. }
  3422. ]
  3423. )
  3424. };
  3425. function makeCharacters() {
  3426. const results = [];
  3427. results.push({
  3428. name: "March",
  3429. constructor: makeMarch
  3430. });
  3431. results.push({
  3432. name: "Noir",
  3433. constructor: makeNoir
  3434. });
  3435. results.push({
  3436. name: "Okuri",
  3437. constructor: makeOkuri
  3438. });
  3439. results.push({
  3440. name: "Manny",
  3441. constructor: makeManny
  3442. });
  3443. results.push({
  3444. name: "Adake",
  3445. constructor: makeAdake
  3446. });
  3447. results.push({
  3448. name: "Elijah",
  3449. constructor: makeElijah
  3450. });
  3451. results.push({
  3452. name: "Rai",
  3453. constructor: makeRai
  3454. });
  3455. results.push({
  3456. name: "Jazzy",
  3457. constructor: makeJazzy
  3458. });
  3459. results.push({
  3460. name: "Flamm",
  3461. constructor: makeFlamm
  3462. });
  3463. results.push({
  3464. name: "Zephiro",
  3465. constructor: makeZephiro
  3466. });
  3467. results.push({
  3468. name: "Fory",
  3469. constructor: makeFory
  3470. });
  3471. results.push({
  3472. name: "Kurrikage",
  3473. constructor: makeKurrikage
  3474. });
  3475. results.push({
  3476. name: "Shingo",
  3477. constructor: makeShingo
  3478. });
  3479. results.push({
  3480. name: "Aigey",
  3481. constructor: makeAigey
  3482. });
  3483. results.push({
  3484. name: "Natasha",
  3485. constructor: makeNatasha
  3486. });
  3487. results.push({
  3488. name: "Malik",
  3489. constructor: makeMalik
  3490. });
  3491. results.push({
  3492. name: "Sefer",
  3493. constructor: makeSefer
  3494. });
  3495. Object.entries(characterMakers).forEach(([key, value]) => {
  3496. results.push({
  3497. name: key,
  3498. constructor: value
  3499. });
  3500. });
  3501. return results;
  3502. }