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.
 
 
 

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