less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

24451 líneas
604 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: ["machine"]
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. }
  1232. // species
  1233. function getSpeciesInfo(speciesList) {
  1234. let result = new Set();
  1235. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1236. result.add(entry)
  1237. });
  1238. return Array.from(result);
  1239. };
  1240. function getSpeciesInfoHelper(species) {
  1241. if (!speciesData[species]) {
  1242. console.warn(species + " doesn't exist");
  1243. return [];
  1244. }
  1245. if (speciesData[species].parents) {
  1246. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1247. } else {
  1248. return [species];
  1249. }
  1250. }
  1251. characterMakers.push(() => makeCharacter(
  1252. {
  1253. name: "Fen",
  1254. species: ["crux"],
  1255. description: {
  1256. title: "Bio",
  1257. text: "Very furry. Sheds on everything."
  1258. },
  1259. tags: [
  1260. "anthro",
  1261. "goo"
  1262. ]
  1263. },
  1264. {
  1265. back: {
  1266. height: math.unit(2.2428, "meter"),
  1267. weight: math.unit(124.738, "kg"),
  1268. name: "Back",
  1269. image: {
  1270. source: "./media/characters/fen/back.svg",
  1271. extra: 1025 / 935,
  1272. bottom: 0.01
  1273. },
  1274. info: {
  1275. description: {
  1276. mode: "append",
  1277. text: "\n\nHe is not currently looking at you."
  1278. }
  1279. }
  1280. },
  1281. full: {
  1282. height: math.unit(1.34, "meter"),
  1283. weight: math.unit(225, "kg"),
  1284. name: "Full",
  1285. image: {
  1286. source: "./media/characters/fen/full.svg"
  1287. },
  1288. info: {
  1289. description: {
  1290. mode: "append",
  1291. text: "\n\nMunch."
  1292. }
  1293. }
  1294. },
  1295. kneeling: {
  1296. height: math.unit(5.4, "feet"),
  1297. weight: math.unit(124.738, "kg"),
  1298. name: "Kneeling",
  1299. image: {
  1300. source: "./media/characters/fen/kneeling.svg",
  1301. extra: 563 / 507
  1302. }
  1303. },
  1304. goo: {
  1305. height: math.unit(2.8, "feet"),
  1306. weight: math.unit(125, "kg"),
  1307. capacity: math.unit(1, "people"),
  1308. name: "Goo",
  1309. image: {
  1310. source: "./media/characters/fen/goo.svg",
  1311. bottom: 116/613
  1312. }
  1313. },
  1314. lounging: {
  1315. height: math.unit(6.5, "feet"),
  1316. weight: math.unit(125, "kg"),
  1317. name: "Lounging",
  1318. image: {
  1319. source: "./media/characters/fen/lounging.svg"
  1320. }
  1321. },
  1322. },
  1323. [
  1324. {
  1325. name: "Normal",
  1326. height: math.unit(2.2428, "meter")
  1327. },
  1328. {
  1329. name: "Big",
  1330. height: math.unit(12, "feet")
  1331. },
  1332. {
  1333. name: "Minimacro",
  1334. height: math.unit(40, "feet"),
  1335. default: true,
  1336. info: {
  1337. description: {
  1338. mode: "append",
  1339. text: "\n\nTOO DAMN BIG"
  1340. }
  1341. }
  1342. },
  1343. {
  1344. name: "Macro",
  1345. height: math.unit(100, "feet"),
  1346. info: {
  1347. description: {
  1348. mode: "append",
  1349. text: "\n\nTOO DAMN BIG"
  1350. }
  1351. }
  1352. },
  1353. {
  1354. name: "Macro+",
  1355. height: math.unit(300, "feet")
  1356. },
  1357. {
  1358. name: "Megamacro",
  1359. height: math.unit(2, "miles")
  1360. }
  1361. ]
  1362. ))
  1363. characterMakers.push(() => makeCharacter(
  1364. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1365. {
  1366. front: {
  1367. height: math.unit(183, "cm"),
  1368. weight: math.unit(80, "kg"),
  1369. name: "Front",
  1370. image: {
  1371. source: "./media/characters/sofia-fluttertail/front.svg",
  1372. bottom: 0.01,
  1373. extra: 2154 / 2081
  1374. }
  1375. },
  1376. frontAlt: {
  1377. height: math.unit(183, "cm"),
  1378. weight: math.unit(80, "kg"),
  1379. name: "Front (alt)",
  1380. image: {
  1381. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1382. }
  1383. },
  1384. back: {
  1385. height: math.unit(183, "cm"),
  1386. weight: math.unit(80, "kg"),
  1387. name: "Back",
  1388. image: {
  1389. source: "./media/characters/sofia-fluttertail/back.svg"
  1390. }
  1391. },
  1392. kneeling: {
  1393. height: math.unit(125, "cm"),
  1394. weight: math.unit(80, "kg"),
  1395. name: "Kneeling",
  1396. image: {
  1397. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1398. extra: 1033/977,
  1399. bottom: 23.7/1057
  1400. }
  1401. },
  1402. maw: {
  1403. height: math.unit(183 / 5, "cm"),
  1404. name: "Maw",
  1405. image: {
  1406. source: "./media/characters/sofia-fluttertail/maw.svg"
  1407. }
  1408. },
  1409. mawcloseup: {
  1410. height: math.unit(183 / 5 * 0.41, "cm"),
  1411. name: "Maw (Closeup)",
  1412. image: {
  1413. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1414. }
  1415. },
  1416. },
  1417. [
  1418. {
  1419. name: "Normal",
  1420. height: math.unit(1.83, "meter")
  1421. },
  1422. {
  1423. name: "Size Thief",
  1424. height: math.unit(18, "feet")
  1425. },
  1426. {
  1427. name: "50 Foot Collie",
  1428. height: math.unit(50, "feet")
  1429. },
  1430. {
  1431. name: "Macro",
  1432. height: math.unit(96, "feet"),
  1433. default: true
  1434. },
  1435. {
  1436. name: "Megamerger",
  1437. height: math.unit(650, "feet")
  1438. },
  1439. ]
  1440. ))
  1441. characterMakers.push(() => makeCharacter(
  1442. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1443. {
  1444. front: {
  1445. height: math.unit(7, "feet"),
  1446. weight: math.unit(100, "kg"),
  1447. name: "Front",
  1448. image: {
  1449. source: "./media/characters/march/front.svg",
  1450. extra: 1,
  1451. bottom: 0.015
  1452. }
  1453. },
  1454. foot: {
  1455. height: math.unit(0.9, "feet"),
  1456. name: "Foot",
  1457. image: {
  1458. source: "./media/characters/march/foot.svg"
  1459. }
  1460. },
  1461. },
  1462. [
  1463. {
  1464. name: "Normal",
  1465. height: math.unit(7.9, "feet")
  1466. },
  1467. {
  1468. name: "Macro",
  1469. height: math.unit(220, "meters")
  1470. },
  1471. {
  1472. name: "Megamacro",
  1473. height: math.unit(2.98, "km"),
  1474. default: true
  1475. },
  1476. {
  1477. name: "Gigamacro",
  1478. height: math.unit(15963, "km")
  1479. },
  1480. {
  1481. name: "Teramacro",
  1482. height: math.unit(2980000000, "km")
  1483. },
  1484. {
  1485. name: "Examacro",
  1486. height: math.unit(250, "parsecs")
  1487. },
  1488. ]
  1489. ))
  1490. characterMakers.push(() => makeCharacter(
  1491. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1492. {
  1493. front: {
  1494. height: math.unit(6, "feet"),
  1495. weight: math.unit(60, "kg"),
  1496. name: "Front",
  1497. image: {
  1498. source: "./media/characters/noir/front.svg",
  1499. extra: 1,
  1500. bottom: 0.032
  1501. }
  1502. },
  1503. },
  1504. [
  1505. {
  1506. name: "Normal",
  1507. height: math.unit(6.6, "feet")
  1508. },
  1509. {
  1510. name: "Macro",
  1511. height: math.unit(500, "feet")
  1512. },
  1513. {
  1514. name: "Megamacro",
  1515. height: math.unit(2.5, "km"),
  1516. default: true
  1517. },
  1518. {
  1519. name: "Gigamacro",
  1520. height: math.unit(22500, "km")
  1521. },
  1522. {
  1523. name: "Teramacro",
  1524. height: math.unit(2500000000, "km")
  1525. },
  1526. {
  1527. name: "Examacro",
  1528. height: math.unit(200, "parsecs")
  1529. },
  1530. ]
  1531. ))
  1532. characterMakers.push(() => makeCharacter(
  1533. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1534. {
  1535. front: {
  1536. height: math.unit(7, "feet"),
  1537. weight: math.unit(100, "kg"),
  1538. name: "Front",
  1539. image: {
  1540. source: "./media/characters/okuri/front.svg",
  1541. extra: 1,
  1542. bottom: 0.037
  1543. }
  1544. },
  1545. back: {
  1546. height: math.unit(7, "feet"),
  1547. weight: math.unit(100, "kg"),
  1548. name: "Back",
  1549. image: {
  1550. source: "./media/characters/okuri/back.svg",
  1551. extra: 1,
  1552. bottom: 0.007
  1553. }
  1554. },
  1555. },
  1556. [
  1557. {
  1558. name: "Megamacro",
  1559. height: math.unit(100, "miles"),
  1560. default: true
  1561. },
  1562. ]
  1563. ))
  1564. characterMakers.push(() => makeCharacter(
  1565. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1566. {
  1567. front: {
  1568. height: math.unit(7, "feet"),
  1569. weight: math.unit(100, "kg"),
  1570. name: "Front",
  1571. image: {
  1572. source: "./media/characters/manny/front.svg",
  1573. extra: 1,
  1574. bottom: 0.06
  1575. }
  1576. },
  1577. back: {
  1578. height: math.unit(7, "feet"),
  1579. weight: math.unit(100, "kg"),
  1580. name: "Back",
  1581. image: {
  1582. source: "./media/characters/manny/back.svg",
  1583. extra: 1,
  1584. bottom: 0.014
  1585. }
  1586. },
  1587. },
  1588. [
  1589. {
  1590. name: "Normal",
  1591. height: math.unit(7, "feet"),
  1592. },
  1593. {
  1594. name: "Macro",
  1595. height: math.unit(78, "feet"),
  1596. default: true
  1597. },
  1598. {
  1599. name: "Macro+",
  1600. height: math.unit(300, "meters")
  1601. },
  1602. {
  1603. name: "Macro++",
  1604. height: math.unit(2400, "meters")
  1605. },
  1606. {
  1607. name: "Megamacro",
  1608. height: math.unit(5167, "meters")
  1609. },
  1610. {
  1611. name: "Gigamacro",
  1612. height: math.unit(41769, "miles")
  1613. },
  1614. ]
  1615. ))
  1616. characterMakers.push(() => makeCharacter(
  1617. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1618. {
  1619. front: {
  1620. height: math.unit(7, "feet"),
  1621. weight: math.unit(100, "kg"),
  1622. name: "Front",
  1623. image: {
  1624. source: "./media/characters/adake/front-1.svg"
  1625. }
  1626. },
  1627. frontAlt: {
  1628. height: math.unit(7, "feet"),
  1629. weight: math.unit(100, "kg"),
  1630. name: "Front (Alt)",
  1631. image: {
  1632. source: "./media/characters/adake/front-2.svg",
  1633. extra: 1,
  1634. bottom: 0.01
  1635. }
  1636. },
  1637. back: {
  1638. height: math.unit(7, "feet"),
  1639. weight: math.unit(100, "kg"),
  1640. name: "Back",
  1641. image: {
  1642. source: "./media/characters/adake/back.svg",
  1643. }
  1644. },
  1645. kneel: {
  1646. height: math.unit(5.385, "feet"),
  1647. weight: math.unit(100, "kg"),
  1648. name: "Kneeling",
  1649. image: {
  1650. source: "./media/characters/adake/kneel.svg",
  1651. bottom: 0.052
  1652. }
  1653. },
  1654. },
  1655. [
  1656. {
  1657. name: "Normal",
  1658. height: math.unit(7, "feet"),
  1659. },
  1660. {
  1661. name: "Macro",
  1662. height: math.unit(78, "feet"),
  1663. default: true
  1664. },
  1665. {
  1666. name: "Macro+",
  1667. height: math.unit(300, "meters")
  1668. },
  1669. {
  1670. name: "Macro++",
  1671. height: math.unit(2400, "meters")
  1672. },
  1673. {
  1674. name: "Megamacro",
  1675. height: math.unit(5167, "meters")
  1676. },
  1677. {
  1678. name: "Gigamacro",
  1679. height: math.unit(41769, "miles")
  1680. },
  1681. ]
  1682. ))
  1683. characterMakers.push(() => makeCharacter(
  1684. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1685. {
  1686. front: {
  1687. height: math.unit(1.65, "meters"),
  1688. weight: math.unit(50, "kg"),
  1689. name: "Front",
  1690. image: {
  1691. source: "./media/characters/elijah/front.svg",
  1692. extra: 858/830,
  1693. bottom: 95.5/953.8559
  1694. }
  1695. },
  1696. back: {
  1697. height: math.unit(1.65, "meters"),
  1698. weight: math.unit(50, "kg"),
  1699. name: "Back",
  1700. image: {
  1701. source: "./media/characters/elijah/back.svg",
  1702. extra: 895/850,
  1703. bottom: 5.3/897.956
  1704. }
  1705. },
  1706. frontNsfw: {
  1707. height: math.unit(1.65, "meters"),
  1708. weight: math.unit(50, "kg"),
  1709. name: "Front (NSFW)",
  1710. image: {
  1711. source: "./media/characters/elijah/front-nsfw.svg",
  1712. extra: 858/830,
  1713. bottom: 95.5/953.8559
  1714. }
  1715. },
  1716. backNsfw: {
  1717. height: math.unit(1.65, "meters"),
  1718. weight: math.unit(50, "kg"),
  1719. name: "Back (NSFW)",
  1720. image: {
  1721. source: "./media/characters/elijah/back-nsfw.svg",
  1722. extra: 895/850,
  1723. bottom: 5.3/897.956
  1724. }
  1725. },
  1726. dick: {
  1727. height: math.unit(1, "feet"),
  1728. name: "Dick",
  1729. image: {
  1730. source: "./media/characters/elijah/dick.svg"
  1731. }
  1732. },
  1733. beakOpen: {
  1734. height: math.unit(1.25, "feet"),
  1735. name: "Beak (Open)",
  1736. image: {
  1737. source: "./media/characters/elijah/beak-open.svg"
  1738. }
  1739. },
  1740. beakShut: {
  1741. height: math.unit(1.25, "feet"),
  1742. name: "Beak (Shut)",
  1743. image: {
  1744. source: "./media/characters/elijah/beak-shut.svg"
  1745. }
  1746. },
  1747. footFlexing: {
  1748. height: math.unit(1.61, "feet"),
  1749. name: "Foot (Flexing)",
  1750. image: {
  1751. source: "./media/characters/elijah/foot-flexing.svg"
  1752. }
  1753. },
  1754. footStepping: {
  1755. height: math.unit(1.44, "feet"),
  1756. name: "Foot (Stepping)",
  1757. image: {
  1758. source: "./media/characters/elijah/foot-stepping.svg"
  1759. }
  1760. },
  1761. plantigradeLeg: {
  1762. height: math.unit(2.34, "feet"),
  1763. name: "Plantigrade Leg",
  1764. image: {
  1765. source: "./media/characters/elijah/plantigrade-leg.svg"
  1766. }
  1767. },
  1768. plantigradeFootLeft: {
  1769. height: math.unit(0.9, "feet"),
  1770. name: "Plantigrade Foot (Left)",
  1771. image: {
  1772. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1773. }
  1774. },
  1775. plantigradeFootRight: {
  1776. height: math.unit(0.9, "feet"),
  1777. name: "Plantigrade Foot (Right)",
  1778. image: {
  1779. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1780. }
  1781. },
  1782. },
  1783. [
  1784. {
  1785. name: "Normal",
  1786. height: math.unit(1.65, "meters")
  1787. },
  1788. {
  1789. name: "Macro",
  1790. height: math.unit(55, "meters"),
  1791. default: true
  1792. },
  1793. {
  1794. name: "Macro+",
  1795. height: math.unit(105, "meters")
  1796. },
  1797. ]
  1798. ))
  1799. characterMakers.push(() => makeCharacter(
  1800. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1801. {
  1802. front: {
  1803. height: math.unit(11, "feet"),
  1804. weight: math.unit(80, "kg"),
  1805. name: "Front",
  1806. image: {
  1807. source: "./media/characters/rai/front.svg",
  1808. extra: 1,
  1809. bottom: 0.03
  1810. }
  1811. },
  1812. side: {
  1813. height: math.unit(11, "feet"),
  1814. weight: math.unit(80, "kg"),
  1815. name: "Side",
  1816. image: {
  1817. source: "./media/characters/rai/side.svg"
  1818. }
  1819. },
  1820. back: {
  1821. height: math.unit(11, "feet"),
  1822. weight: math.unit(80, "lb"),
  1823. name: "Back",
  1824. image: {
  1825. source: "./media/characters/rai/back.svg",
  1826. extra: 1,
  1827. bottom: 0.01
  1828. }
  1829. },
  1830. feral: {
  1831. height: math.unit(11, "feet"),
  1832. weight: math.unit(800, "lb"),
  1833. name: "Feral",
  1834. image: {
  1835. source: "./media/characters/rai/feral.svg",
  1836. extra: 1050 / 659,
  1837. bottom: 0.07
  1838. }
  1839. },
  1840. dragon: {
  1841. height: math.unit(23, "feet"),
  1842. weight: math.unit(50000, "lb"),
  1843. name: "Dragon",
  1844. image: {
  1845. source: "./media/characters/rai/dragon.svg",
  1846. extra: 2498/2030,
  1847. bottom: 85.2/2584
  1848. }
  1849. },
  1850. maw: {
  1851. height: math.unit(6 / 3.81416, "feet"),
  1852. name: "Maw",
  1853. image: {
  1854. source: "./media/characters/rai/maw.svg"
  1855. }
  1856. },
  1857. },
  1858. [
  1859. {
  1860. name: "Normal",
  1861. height: math.unit(11, "feet")
  1862. },
  1863. {
  1864. name: "Macro",
  1865. height: math.unit(302, "feet"),
  1866. default: true
  1867. },
  1868. ]
  1869. ))
  1870. characterMakers.push(() => makeCharacter(
  1871. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1872. {
  1873. frontDressed: {
  1874. height: math.unit(216, "feet"),
  1875. weight: math.unit(7000000, "lb"),
  1876. name: "Front (Dressed)",
  1877. image: {
  1878. source: "./media/characters/jazzy/front-dressed.svg",
  1879. extra: 2738/2651,
  1880. bottom: 41.8/2786
  1881. }
  1882. },
  1883. backDressed: {
  1884. height: math.unit(216, "feet"),
  1885. weight: math.unit(7000000, "lb"),
  1886. name: "Back (Dressed)",
  1887. image: {
  1888. source: "./media/characters/jazzy/back-dressed.svg",
  1889. extra: 2775/2673,
  1890. bottom: 36.8/2817
  1891. }
  1892. },
  1893. front: {
  1894. height: math.unit(216, "feet"),
  1895. weight: math.unit(7000000, "lb"),
  1896. name: "Front",
  1897. image: {
  1898. source: "./media/characters/jazzy/front.svg",
  1899. extra: 2738/2651,
  1900. bottom: 41.8/2786
  1901. }
  1902. },
  1903. back: {
  1904. height: math.unit(216, "feet"),
  1905. weight: math.unit(7000000, "lb"),
  1906. name: "Back",
  1907. image: {
  1908. source: "./media/characters/jazzy/back.svg",
  1909. extra: 2775/2673,
  1910. bottom: 36.8/2817
  1911. }
  1912. },
  1913. maw: {
  1914. height: math.unit(20, "feet"),
  1915. name: "Maw",
  1916. image: {
  1917. source: "./media/characters/jazzy/maw.svg"
  1918. }
  1919. },
  1920. paws: {
  1921. height: math.unit(27.5, "feet"),
  1922. name: "Paws",
  1923. image: {
  1924. source: "./media/characters/jazzy/paws.svg"
  1925. }
  1926. },
  1927. eye: {
  1928. height: math.unit(4.4, "feet"),
  1929. name: "Eye",
  1930. image: {
  1931. source: "./media/characters/jazzy/eye.svg"
  1932. }
  1933. },
  1934. droneOffense: {
  1935. height: math.unit(9.5, "inches"),
  1936. name: "Drone (Offense)",
  1937. image: {
  1938. source: "./media/characters/jazzy/drone-offense.svg"
  1939. }
  1940. },
  1941. droneRecon: {
  1942. height: math.unit(9.5, "inches"),
  1943. name: "Drone (Recon)",
  1944. image: {
  1945. source: "./media/characters/jazzy/drone-recon.svg"
  1946. }
  1947. },
  1948. droneDefense: {
  1949. height: math.unit(9.5, "inches"),
  1950. name: "Drone (Defense)",
  1951. image: {
  1952. source: "./media/characters/jazzy/drone-defense.svg"
  1953. }
  1954. },
  1955. },
  1956. [
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(216, "feet"),
  1960. default: true
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(7, "feet"),
  1969. weight: math.unit(80, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/flamm/front.svg",
  1973. extra: 1794 / 1677,
  1974. bottom: 31.7 / 1828.5
  1975. }
  1976. },
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(9.5, "feet")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(200, "feet"),
  1986. default: true
  1987. },
  1988. ]
  1989. ))
  1990. characterMakers.push(() => makeCharacter(
  1991. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1992. {
  1993. front: {
  1994. height: math.unit(7, "feet"),
  1995. weight: math.unit(80, "kg"),
  1996. name: "Front",
  1997. image: {
  1998. source: "./media/characters/zephiro/front.svg",
  1999. extra: 2309 / 2162,
  2000. bottom: 0.069
  2001. }
  2002. },
  2003. side: {
  2004. height: math.unit(7, "feet"),
  2005. weight: math.unit(80, "kg"),
  2006. name: "Side",
  2007. image: {
  2008. source: "./media/characters/zephiro/side.svg",
  2009. extra: 2403 / 2279,
  2010. bottom: 0.015
  2011. }
  2012. },
  2013. back: {
  2014. height: math.unit(7, "feet"),
  2015. weight: math.unit(80, "kg"),
  2016. name: "Back",
  2017. image: {
  2018. source: "./media/characters/zephiro/back.svg",
  2019. extra: 2373 / 2244,
  2020. bottom: 0.013
  2021. }
  2022. },
  2023. },
  2024. [
  2025. {
  2026. name: "Micro",
  2027. height: math.unit(3, "inches")
  2028. },
  2029. {
  2030. name: "Normal",
  2031. height: math.unit(5 + 3 / 12, "feet"),
  2032. default: true
  2033. },
  2034. {
  2035. name: "Macro",
  2036. height: math.unit(118, "feet")
  2037. },
  2038. ]
  2039. ))
  2040. characterMakers.push(() => makeCharacter(
  2041. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2042. {
  2043. front: {
  2044. height: math.unit(5, "feet"),
  2045. weight: math.unit(90, "kg"),
  2046. name: "Front",
  2047. image: {
  2048. source: "./media/characters/fory/front.svg",
  2049. extra: 2862 / 2674,
  2050. bottom: 180 / 3043.8
  2051. }
  2052. },
  2053. back: {
  2054. height: math.unit(5, "feet"),
  2055. weight: math.unit(90, "kg"),
  2056. name: "Back",
  2057. image: {
  2058. source: "./media/characters/fory/back.svg",
  2059. extra: 2962 / 2791,
  2060. bottom: 106 / 3071.8
  2061. }
  2062. },
  2063. foot: {
  2064. height: math.unit(2.14, "feet"),
  2065. name: "Foot",
  2066. image: {
  2067. source: "./media/characters/fory/foot.svg"
  2068. }
  2069. },
  2070. },
  2071. [
  2072. {
  2073. name: "Normal",
  2074. height: math.unit(5, "feet")
  2075. },
  2076. {
  2077. name: "Macro",
  2078. height: math.unit(50, "feet"),
  2079. default: true
  2080. },
  2081. {
  2082. name: "Megamacro",
  2083. height: math.unit(10, "miles")
  2084. },
  2085. {
  2086. name: "Gigamacro",
  2087. height: math.unit(5, "earths")
  2088. },
  2089. ]
  2090. ))
  2091. characterMakers.push(() => makeCharacter(
  2092. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2093. {
  2094. front: {
  2095. height: math.unit(7, "feet"),
  2096. weight: math.unit(90, "kg"),
  2097. name: "Front",
  2098. image: {
  2099. source: "./media/characters/kurrikage/front.svg",
  2100. extra: 1,
  2101. bottom: 0.035
  2102. }
  2103. },
  2104. back: {
  2105. height: math.unit(7, "feet"),
  2106. weight: math.unit(90, "lb"),
  2107. name: "Back",
  2108. image: {
  2109. source: "./media/characters/kurrikage/back.svg"
  2110. }
  2111. },
  2112. paw: {
  2113. height: math.unit(1.5, "feet"),
  2114. name: "Paw",
  2115. image: {
  2116. source: "./media/characters/kurrikage/paw.svg"
  2117. }
  2118. },
  2119. staff: {
  2120. height: math.unit(6.7, "feet"),
  2121. name: "Staff",
  2122. image: {
  2123. source: "./media/characters/kurrikage/staff.svg"
  2124. }
  2125. },
  2126. peek: {
  2127. height: math.unit(1.05, "feet"),
  2128. name: "Peeking",
  2129. image: {
  2130. source: "./media/characters/kurrikage/peek.svg",
  2131. bottom: 0.08
  2132. }
  2133. },
  2134. },
  2135. [
  2136. {
  2137. name: "Normal",
  2138. height: math.unit(12, "feet"),
  2139. default: true
  2140. },
  2141. {
  2142. name: "Big",
  2143. height: math.unit(20, "feet")
  2144. },
  2145. {
  2146. name: "Macro",
  2147. height: math.unit(500, "feet")
  2148. },
  2149. {
  2150. name: "Megamacro",
  2151. height: math.unit(20, "miles")
  2152. },
  2153. ]
  2154. ))
  2155. characterMakers.push(() => makeCharacter(
  2156. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2157. {
  2158. front: {
  2159. height: math.unit(6, "feet"),
  2160. weight: math.unit(75, "kg"),
  2161. name: "Front",
  2162. image: {
  2163. source: "./media/characters/shingo/front.svg",
  2164. extra: 3511 / 3338,
  2165. bottom: 0.005
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Micro",
  2172. height: math.unit(4, "inches")
  2173. },
  2174. {
  2175. name: "Normal",
  2176. height: math.unit(6, "feet"),
  2177. default: true
  2178. },
  2179. {
  2180. name: "Macro",
  2181. height: math.unit(108, "feet")
  2182. }
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2187. {
  2188. side: {
  2189. height: math.unit(6, "feet"),
  2190. weight: math.unit(75, "kg"),
  2191. name: "Side",
  2192. image: {
  2193. source: "./media/characters/aigey/side.svg"
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(200, "feet"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Megamacro",
  2205. height: math.unit(100, "miles")
  2206. },
  2207. ]
  2208. )
  2209. )
  2210. characterMakers.push(() => makeCharacter(
  2211. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2212. {
  2213. front: {
  2214. height: math.unit(5 + 5 / 12, "feet"),
  2215. weight: math.unit(75, "kg"),
  2216. name: "Front",
  2217. image: {
  2218. source: "./media/characters/natasha/front.svg",
  2219. extra: 859/824,
  2220. bottom: 23/879.6
  2221. }
  2222. },
  2223. frontNsfw: {
  2224. height: math.unit(5 + 5 / 12, "feet"),
  2225. weight: math.unit(75, "kg"),
  2226. name: "Front (NSFW)",
  2227. image: {
  2228. source: "./media/characters/natasha/front-nsfw.svg",
  2229. extra: 859/824,
  2230. bottom: 23/879.6
  2231. }
  2232. },
  2233. frontErect: {
  2234. height: math.unit(5 + 5 / 12, "feet"),
  2235. weight: math.unit(75, "kg"),
  2236. name: "Front (Erect)",
  2237. image: {
  2238. source: "./media/characters/natasha/front-erect.svg",
  2239. extra: 859/824,
  2240. bottom: 23/879.6
  2241. }
  2242. },
  2243. back: {
  2244. height: math.unit(5 + 5 / 12, "feet"),
  2245. weight: math.unit(75, "kg"),
  2246. name: "Back",
  2247. image: {
  2248. source: "./media/characters/natasha/back.svg",
  2249. extra: 887.9/852.6,
  2250. bottom: 9.7/896.4
  2251. }
  2252. },
  2253. backAlt: {
  2254. height: math.unit(5 + 5 / 12, "feet"),
  2255. weight: math.unit(75, "kg"),
  2256. name: "Back (Alt)",
  2257. image: {
  2258. source: "./media/characters/natasha/back-alt.svg",
  2259. extra: 1236.7/1192,
  2260. bottom: 22.3/1258.2
  2261. }
  2262. },
  2263. dick: {
  2264. height: math.unit(1.772, "feet"),
  2265. name: "Dick",
  2266. image: {
  2267. source: "./media/characters/natasha/dick.svg"
  2268. }
  2269. },
  2270. },
  2271. [
  2272. {
  2273. name: "Normal",
  2274. height: math.unit(5 + 5 / 12, "feet")
  2275. },
  2276. {
  2277. name: "Large",
  2278. height: math.unit(12, "feet")
  2279. },
  2280. {
  2281. name: "Macro",
  2282. height: math.unit(100, "feet"),
  2283. default: true
  2284. },
  2285. {
  2286. name: "Macro+",
  2287. height: math.unit(260, "feet")
  2288. },
  2289. {
  2290. name: "Macro++",
  2291. height: math.unit(1, "mile")
  2292. },
  2293. ]
  2294. ))
  2295. characterMakers.push(() => makeCharacter(
  2296. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2297. {
  2298. front: {
  2299. height: math.unit(6, "feet"),
  2300. weight: math.unit(75, "kg"),
  2301. name: "Front",
  2302. image: {
  2303. source: "./media/characters/malik/front.svg"
  2304. }
  2305. },
  2306. side: {
  2307. height: math.unit(6, "feet"),
  2308. weight: math.unit(75, "kg"),
  2309. name: "Side",
  2310. image: {
  2311. source: "./media/characters/malik/side.svg",
  2312. extra: 1.1539
  2313. }
  2314. },
  2315. back: {
  2316. height: math.unit(6, "feet"),
  2317. weight: math.unit(75, "kg"),
  2318. name: "Back",
  2319. image: {
  2320. source: "./media/characters/malik/back.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Macro",
  2327. height: math.unit(156, "feet"),
  2328. default: true
  2329. },
  2330. {
  2331. name: "Macro+",
  2332. height: math.unit(1188, "feet")
  2333. },
  2334. ]
  2335. ))
  2336. characterMakers.push(() => makeCharacter(
  2337. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2338. {
  2339. front: {
  2340. height: math.unit(6, "feet"),
  2341. weight: math.unit(75, "kg"),
  2342. name: "Front",
  2343. image: {
  2344. source: "./media/characters/sefer/front.svg"
  2345. }
  2346. },
  2347. back: {
  2348. height: math.unit(6, "feet"),
  2349. weight: math.unit(75, "kg"),
  2350. name: "Back",
  2351. image: {
  2352. source: "./media/characters/sefer/back.svg"
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Normal",
  2359. height: math.unit(6, "feet"),
  2360. default: true
  2361. },
  2362. ]
  2363. ))
  2364. characterMakers.push(() => makeCharacter(
  2365. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2366. {
  2367. body: {
  2368. height: math.unit(2.2428, "meter"),
  2369. weight: math.unit(124.738, "kg"),
  2370. name: "Body",
  2371. image: {
  2372. extra: 1225 / 1050,
  2373. source: "./media/characters/north/front.svg"
  2374. }
  2375. }
  2376. },
  2377. [
  2378. {
  2379. name: "Micro",
  2380. height: math.unit(4, "inches")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(63, "meters")
  2385. },
  2386. {
  2387. name: "Megamacro",
  2388. height: math.unit(101, "miles"),
  2389. default: true
  2390. }
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2395. {
  2396. angled: {
  2397. height: math.unit(4, "meter"),
  2398. weight: math.unit(150, "kg"),
  2399. name: "Angled",
  2400. image: {
  2401. source: "./media/characters/talan/angled-sfw.svg",
  2402. bottom: 29 / 3734
  2403. }
  2404. },
  2405. angledNsfw: {
  2406. height: math.unit(4, "meter"),
  2407. weight: math.unit(150, "kg"),
  2408. name: "Angled (NSFW)",
  2409. image: {
  2410. source: "./media/characters/talan/angled-nsfw.svg",
  2411. bottom: 29 / 3734
  2412. }
  2413. },
  2414. frontNsfw: {
  2415. height: math.unit(4, "meter"),
  2416. weight: math.unit(150, "kg"),
  2417. name: "Front (NSFW)",
  2418. image: {
  2419. source: "./media/characters/talan/front-nsfw.svg",
  2420. bottom: 29 / 3734
  2421. }
  2422. },
  2423. sideNsfw: {
  2424. height: math.unit(4, "meter"),
  2425. weight: math.unit(150, "kg"),
  2426. name: "Side (NSFW)",
  2427. image: {
  2428. source: "./media/characters/talan/side-nsfw.svg",
  2429. bottom: 29 / 3734
  2430. }
  2431. },
  2432. back: {
  2433. height: math.unit(4, "meter"),
  2434. weight: math.unit(150, "kg"),
  2435. name: "Back",
  2436. image: {
  2437. source: "./media/characters/talan/back.svg"
  2438. }
  2439. },
  2440. dickBottom: {
  2441. height: math.unit(0.621, "meter"),
  2442. name: "Dick (Bottom)",
  2443. image: {
  2444. source: "./media/characters/talan/dick-bottom.svg"
  2445. }
  2446. },
  2447. dickTop: {
  2448. height: math.unit(0.621, "meter"),
  2449. name: "Dick (Top)",
  2450. image: {
  2451. source: "./media/characters/talan/dick-top.svg"
  2452. }
  2453. },
  2454. dickSide: {
  2455. height: math.unit(0.305, "meter"),
  2456. name: "Dick (Side)",
  2457. image: {
  2458. source: "./media/characters/talan/dick-side.svg"
  2459. }
  2460. },
  2461. dickFront: {
  2462. height: math.unit(0.305, "meter"),
  2463. name: "Dick (Front)",
  2464. image: {
  2465. source: "./media/characters/talan/dick-front.svg"
  2466. }
  2467. },
  2468. },
  2469. [
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(4, "meters")
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(100, "meters")
  2477. },
  2478. {
  2479. name: "Megamacro",
  2480. height: math.unit(2, "miles"),
  2481. default: true
  2482. },
  2483. {
  2484. name: "Gigamacro",
  2485. height: math.unit(5000, "miles")
  2486. },
  2487. {
  2488. name: "Teramacro",
  2489. height: math.unit(100, "parsecs")
  2490. }
  2491. ]
  2492. ))
  2493. characterMakers.push(() => makeCharacter(
  2494. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2495. {
  2496. front: {
  2497. height: math.unit(2, "meter"),
  2498. weight: math.unit(90, "kg"),
  2499. name: "Front",
  2500. image: {
  2501. source: "./media/characters/gael'rathus/front.svg"
  2502. }
  2503. },
  2504. frontAlt: {
  2505. height: math.unit(2, "meter"),
  2506. weight: math.unit(90, "kg"),
  2507. name: "Front (alt)",
  2508. image: {
  2509. source: "./media/characters/gael'rathus/front-alt.svg"
  2510. }
  2511. },
  2512. frontAlt2: {
  2513. height: math.unit(2, "meter"),
  2514. weight: math.unit(90, "kg"),
  2515. name: "Front (alt 2)",
  2516. image: {
  2517. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2518. }
  2519. }
  2520. },
  2521. [
  2522. {
  2523. name: "Normal",
  2524. height: math.unit(9, "feet"),
  2525. default: true
  2526. },
  2527. {
  2528. name: "Large",
  2529. height: math.unit(25, "feet")
  2530. },
  2531. {
  2532. name: "Macro",
  2533. height: math.unit(0.25, "miles")
  2534. },
  2535. {
  2536. name: "Megamacro",
  2537. height: math.unit(10, "miles")
  2538. }
  2539. ]
  2540. ))
  2541. characterMakers.push(() => makeCharacter(
  2542. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2543. {
  2544. side: {
  2545. height: math.unit(2, "meter"),
  2546. weight: math.unit(140, "kg"),
  2547. name: "Side",
  2548. image: {
  2549. source: "./media/characters/sosha/side.svg",
  2550. bottom: 0.042
  2551. }
  2552. },
  2553. },
  2554. [
  2555. {
  2556. name: "Normal",
  2557. height: math.unit(12, "feet"),
  2558. default: true
  2559. }
  2560. ]
  2561. ))
  2562. characterMakers.push(() => makeCharacter(
  2563. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2564. {
  2565. side: {
  2566. height: math.unit(5 + 5 / 12, "feet"),
  2567. weight: math.unit(170, "kg"),
  2568. name: "Side",
  2569. image: {
  2570. source: "./media/characters/runnola/side.svg",
  2571. extra: 741 / 448,
  2572. bottom: 0.05
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Small",
  2579. height: math.unit(3, "feet")
  2580. },
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(5 + 5 / 12, "feet"),
  2584. default: true
  2585. },
  2586. {
  2587. name: "Big",
  2588. height: math.unit(10, "feet")
  2589. },
  2590. ]
  2591. ))
  2592. characterMakers.push(() => makeCharacter(
  2593. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2594. {
  2595. front: {
  2596. height: math.unit(2, "meter"),
  2597. weight: math.unit(50, "kg"),
  2598. name: "Front",
  2599. image: {
  2600. source: "./media/characters/kurribird/front.svg",
  2601. bottom: 0.015
  2602. }
  2603. },
  2604. frontAlt: {
  2605. height: math.unit(1.5, "meter"),
  2606. weight: math.unit(50, "kg"),
  2607. name: "Front (Alt)",
  2608. image: {
  2609. source: "./media/characters/kurribird/front-alt.svg",
  2610. extra: 1.45
  2611. }
  2612. },
  2613. },
  2614. [
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(7, "feet")
  2618. },
  2619. {
  2620. name: "Big",
  2621. height: math.unit(12, "feet"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(1500, "feet")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(2, "miles")
  2631. }
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  2636. {
  2637. front: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Front",
  2641. image: {
  2642. source: "./media/characters/elbial/front.svg",
  2643. extra: 1643 / 1556,
  2644. bottom: 60.2 / 1696
  2645. }
  2646. },
  2647. side: {
  2648. height: math.unit(2, "meter"),
  2649. weight: math.unit(80, "kg"),
  2650. name: "Side",
  2651. image: {
  2652. source: "./media/characters/elbial/side.svg",
  2653. extra: 1630 / 1565,
  2654. bottom: 71.5 / 1697
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(80, "kg"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/elbial/back.svg",
  2663. extra: 1668 / 1595,
  2664. bottom: 5.6 / 1672
  2665. }
  2666. },
  2667. frontDressed: {
  2668. height: math.unit(2, "meter"),
  2669. weight: math.unit(80, "kg"),
  2670. name: "Front (Dressed)",
  2671. image: {
  2672. source: "./media/characters/elbial/front-dressed.svg",
  2673. extra: 1653 / 1584,
  2674. bottom: 57 / 1708
  2675. }
  2676. },
  2677. genitals: {
  2678. height: math.unit(2 / 3.367, "meter"),
  2679. name: "Genitals",
  2680. image: {
  2681. source: "./media/characters/elbial/genitals.svg"
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Large",
  2688. height: math.unit(100, "feet")
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(500, "feet"),
  2693. default: true
  2694. },
  2695. {
  2696. name: "Megamacro",
  2697. height: math.unit(10, "miles")
  2698. },
  2699. {
  2700. name: "Gigamacro",
  2701. height: math.unit(25000, "miles")
  2702. },
  2703. {
  2704. name: "Full-Size",
  2705. height: math.unit(8000000, "gigaparsecs")
  2706. }
  2707. ]
  2708. ))
  2709. characterMakers.push(() => makeCharacter(
  2710. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2711. {
  2712. front: {
  2713. height: math.unit(2, "meter"),
  2714. weight: math.unit(60, "kg"),
  2715. name: "Front",
  2716. image: {
  2717. source: "./media/characters/noah/front.svg"
  2718. }
  2719. },
  2720. talons: {
  2721. height: math.unit(0.315, "meter"),
  2722. name: "Talons",
  2723. image: {
  2724. source: "./media/characters/noah/talons.svg"
  2725. }
  2726. }
  2727. },
  2728. [
  2729. {
  2730. name: "Large",
  2731. height: math.unit(50, "feet")
  2732. },
  2733. {
  2734. name: "Macro",
  2735. height: math.unit(750, "feet"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Megamacro",
  2740. height: math.unit(50, "miles")
  2741. },
  2742. {
  2743. name: "Gigamacro",
  2744. height: math.unit(100000, "miles")
  2745. },
  2746. {
  2747. name: "Full-Size",
  2748. height: math.unit(3000000000, "miles")
  2749. }
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(2, "meter"),
  2757. weight: math.unit(80, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/natalya/front.svg"
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(2, "meter"),
  2765. weight: math.unit(80, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/natalya/back.svg"
  2769. }
  2770. }
  2771. },
  2772. [
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(150, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Megamacro",
  2780. height: math.unit(5, "miles")
  2781. },
  2782. {
  2783. name: "Full-Size",
  2784. height: math.unit(600, "kiloparsecs")
  2785. }
  2786. ]
  2787. ))
  2788. characterMakers.push(() => makeCharacter(
  2789. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2790. {
  2791. front: {
  2792. height: math.unit(2, "meter"),
  2793. weight: math.unit(50, "kg"),
  2794. name: "Front",
  2795. image: {
  2796. source: "./media/characters/erestrebah/front.svg",
  2797. extra: 208 / 193,
  2798. bottom: 0.055
  2799. }
  2800. },
  2801. back: {
  2802. height: math.unit(2, "meter"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Back",
  2805. image: {
  2806. source: "./media/characters/erestrebah/back.svg",
  2807. extra: 1.3
  2808. }
  2809. }
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(10, "feet")
  2815. },
  2816. {
  2817. name: "Large",
  2818. height: math.unit(50, "feet"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(300, "feet")
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(750, "feet")
  2828. },
  2829. {
  2830. name: "Megamacro",
  2831. height: math.unit(3, "miles")
  2832. }
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(2, "meter"),
  2840. weight: math.unit(80, "kg"),
  2841. name: "Front",
  2842. image: {
  2843. source: "./media/characters/jennifer/front.svg",
  2844. bottom: 0.11,
  2845. extra: 1.16
  2846. }
  2847. },
  2848. frontAlt: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(80, "kg"),
  2851. name: "Front (Alt)",
  2852. image: {
  2853. source: "./media/characters/jennifer/front-alt.svg"
  2854. }
  2855. }
  2856. },
  2857. [
  2858. {
  2859. name: "Canon Height",
  2860. height: math.unit(120, "feet"),
  2861. default: true
  2862. },
  2863. {
  2864. name: "Macro+",
  2865. height: math.unit(300, "feet")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(20000, "feet")
  2870. }
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2875. {
  2876. front: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(50, "kg"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/kalista/front.svg",
  2882. extra: 1947 / 1700,
  2883. bottom: 76.6/1412.98
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(2, "meter"),
  2888. weight: math.unit(50, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/kalista/back.svg",
  2892. extra: 1366 / 1156,
  2893. bottom: 33.9/1362.78
  2894. }
  2895. }
  2896. },
  2897. [
  2898. {
  2899. name: "Uncomfortably Small",
  2900. height: math.unit(10, "feet")
  2901. },
  2902. {
  2903. name: "Small",
  2904. height: math.unit(30, "feet")
  2905. },
  2906. {
  2907. name: "Macro",
  2908. height: math.unit(100, "feet"),
  2909. default: true
  2910. },
  2911. {
  2912. name: "Macro+",
  2913. height: math.unit(2000, "feet")
  2914. },
  2915. {
  2916. name: "True Form",
  2917. height: math.unit(8924, "miles")
  2918. }
  2919. ]
  2920. ))
  2921. characterMakers.push(() => makeCharacter(
  2922. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2923. {
  2924. front: {
  2925. height: math.unit(2, "meter"),
  2926. weight: math.unit(120, "kg"),
  2927. name: "Front",
  2928. image: {
  2929. source: "./media/characters/ggv/front.svg"
  2930. }
  2931. },
  2932. side: {
  2933. height: math.unit(2, "meter"),
  2934. weight: math.unit(120, "kg"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/ggv/side.svg"
  2938. }
  2939. }
  2940. },
  2941. [
  2942. {
  2943. name: "Extremely Puny",
  2944. height: math.unit(9 + 5 / 12, "feet")
  2945. },
  2946. {
  2947. name: "Horribly Small",
  2948. height: math.unit(47.7, "miles"),
  2949. default: true
  2950. },
  2951. {
  2952. name: "Reasonably Sized",
  2953. height: math.unit(25000, "parsecs")
  2954. },
  2955. {
  2956. name: "Slightly Uncompressed",
  2957. height: math.unit(7.77e31, "parsecs")
  2958. },
  2959. {
  2960. name: "Omniversal",
  2961. height: math.unit(1e300, "meters")
  2962. },
  2963. ]
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2967. {
  2968. front: {
  2969. height: math.unit(2, "meter"),
  2970. weight: math.unit(75, "lb"),
  2971. name: "Front",
  2972. image: {
  2973. source: "./media/characters/napalm/front.svg"
  2974. }
  2975. },
  2976. back: {
  2977. height: math.unit(2, "meter"),
  2978. weight: math.unit(75, "lb"),
  2979. name: "Back",
  2980. image: {
  2981. source: "./media/characters/napalm/back.svg"
  2982. }
  2983. }
  2984. },
  2985. [
  2986. {
  2987. name: "Standard",
  2988. height: math.unit(55, "feet"),
  2989. default: true
  2990. }
  2991. ]
  2992. ))
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(7 + 5 / 6, "feet"),
  2998. weight: math.unit(325, "lb"),
  2999. name: "Front",
  3000. image: {
  3001. source: "./media/characters/asana/front.svg",
  3002. extra: 1128 / 1068
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(7 + 5 / 6, "feet"),
  3007. weight: math.unit(325, "lb"),
  3008. name: "Back",
  3009. image: {
  3010. source: "./media/characters/asana/back.svg",
  3011. extra: 1128 / 1068
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Standard",
  3018. height: math.unit(7 + 5 / 6, "feet"),
  3019. default: true
  3020. },
  3021. {
  3022. name: "Large",
  3023. height: math.unit(10, "meters")
  3024. },
  3025. {
  3026. name: "Macro",
  3027. height: math.unit(2500, "meters")
  3028. },
  3029. {
  3030. name: "Megamacro",
  3031. height: math.unit(5e6, "meters")
  3032. },
  3033. {
  3034. name: "Examacro",
  3035. height: math.unit(5e12, "lightyears")
  3036. },
  3037. {
  3038. name: "Max Size",
  3039. height: math.unit(1e31, "lightyears")
  3040. }
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3045. {
  3046. front: {
  3047. height: math.unit(2, "meter"),
  3048. weight: math.unit(60, "kg"),
  3049. name: "Front",
  3050. image: {
  3051. source: "./media/characters/ebony/front.svg",
  3052. bottom: 0.03,
  3053. extra: 1045 / 810 + 0.03
  3054. }
  3055. },
  3056. side: {
  3057. height: math.unit(2, "meter"),
  3058. weight: math.unit(60, "kg"),
  3059. name: "Side",
  3060. image: {
  3061. source: "./media/characters/ebony/side.svg",
  3062. bottom: 0.03,
  3063. extra: 1045 / 810 + 0.03
  3064. }
  3065. },
  3066. back: {
  3067. height: math.unit(2, "meter"),
  3068. weight: math.unit(60, "kg"),
  3069. name: "Back",
  3070. image: {
  3071. source: "./media/characters/ebony/back.svg",
  3072. bottom: 0.01,
  3073. extra: 1045 / 810 + 0.01
  3074. }
  3075. },
  3076. },
  3077. [
  3078. // TODO check why I did this lol
  3079. {
  3080. name: "Standard",
  3081. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(200, "feet")
  3087. },
  3088. {
  3089. name: "Gigamacro",
  3090. height: math.unit(13000, "km")
  3091. }
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(175, "lb"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/mountain/front.svg"
  3103. }
  3104. },
  3105. back: {
  3106. height: math.unit(6, "feet"),
  3107. weight: math.unit(175, "lb"),
  3108. name: "Back",
  3109. image: {
  3110. source: "./media/characters/mountain/back.svg"
  3111. }
  3112. },
  3113. },
  3114. [
  3115. {
  3116. name: "Large",
  3117. height: math.unit(20, "meters")
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(300, "meters")
  3122. },
  3123. {
  3124. name: "Gigamacro",
  3125. height: math.unit(10000, "km"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Examacro",
  3130. height: math.unit(10e9, "lightyears")
  3131. }
  3132. ]
  3133. ))
  3134. characterMakers.push(() => makeCharacter(
  3135. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3136. {
  3137. front: {
  3138. height: math.unit(8, "feet"),
  3139. weight: math.unit(500, "lb"),
  3140. name: "Front",
  3141. image: {
  3142. source: "./media/characters/rick/front.svg"
  3143. }
  3144. }
  3145. },
  3146. [
  3147. {
  3148. name: "Normal",
  3149. height: math.unit(8, "feet"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(5, "km")
  3155. }
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(8, "feet"),
  3163. weight: math.unit(120, "lb"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/ona/front.svg"
  3167. }
  3168. },
  3169. frontAlt: {
  3170. height: math.unit(8, "feet"),
  3171. weight: math.unit(120, "lb"),
  3172. name: "Front (Alt)",
  3173. image: {
  3174. source: "./media/characters/ona/front-alt.svg"
  3175. }
  3176. },
  3177. back: {
  3178. height: math.unit(8, "feet"),
  3179. weight: math.unit(120, "lb"),
  3180. name: "Back",
  3181. image: {
  3182. source: "./media/characters/ona/back.svg"
  3183. }
  3184. },
  3185. foot: {
  3186. height: math.unit(1.1, "feet"),
  3187. name: "Foot",
  3188. image: {
  3189. source: "./media/characters/ona/foot.svg"
  3190. }
  3191. }
  3192. },
  3193. [
  3194. {
  3195. name: "Megamacro",
  3196. height: math.unit(70, "km"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Gigamacro",
  3201. height: math.unit(681818, "miles")
  3202. },
  3203. {
  3204. name: "Examacro",
  3205. height: math.unit(3800000, "lightyears")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(12, "feet"),
  3214. weight: math.unit(3000, "lb"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/mech/front.svg",
  3218. bottom: 0.025,
  3219. }
  3220. },
  3221. back: {
  3222. height: math.unit(12, "feet"),
  3223. weight: math.unit(3000, "lb"),
  3224. name: "Back",
  3225. image: {
  3226. source: "./media/characters/mech/back.svg",
  3227. bottom: 0.03,
  3228. }
  3229. }
  3230. },
  3231. [
  3232. {
  3233. name: "Normal",
  3234. height: math.unit(12, "feet")
  3235. },
  3236. {
  3237. name: "Macro",
  3238. height: math.unit(300, "feet"),
  3239. default: true
  3240. },
  3241. {
  3242. name: "Macro+",
  3243. height: math.unit(1500, "feet")
  3244. },
  3245. ]
  3246. ))
  3247. characterMakers.push(() => makeCharacter(
  3248. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3249. {
  3250. front: {
  3251. height: math.unit(1.3, "meter"),
  3252. weight: math.unit(30, "kg"),
  3253. name: "Front",
  3254. image: {
  3255. source: "./media/characters/gregory/front.svg",
  3256. }
  3257. }
  3258. },
  3259. [
  3260. {
  3261. name: "Normal",
  3262. height: math.unit(1.3, "meter"),
  3263. default: true
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(20, "meter")
  3268. }
  3269. ]
  3270. ))
  3271. characterMakers.push(() => makeCharacter(
  3272. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3273. {
  3274. front: {
  3275. height: math.unit(2.8, "meter"),
  3276. weight: math.unit(200, "kg"),
  3277. name: "Front",
  3278. image: {
  3279. source: "./media/characters/elory/front.svg",
  3280. }
  3281. }
  3282. },
  3283. [
  3284. {
  3285. name: "Normal",
  3286. height: math.unit(2.8, "meter"),
  3287. default: true
  3288. },
  3289. {
  3290. name: "Macro",
  3291. height: math.unit(38, "meter")
  3292. }
  3293. ]
  3294. ))
  3295. characterMakers.push(() => makeCharacter(
  3296. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  3297. {
  3298. front: {
  3299. height: math.unit(470, "feet"),
  3300. weight: math.unit(924, "tons"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/angelpatamon/front.svg",
  3304. }
  3305. }
  3306. },
  3307. [
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(470, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Deity Size I",
  3315. height: math.unit(28651.2, "km")
  3316. },
  3317. {
  3318. name: "Deity Size II",
  3319. height: math.unit(171907.2, "km")
  3320. }
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3325. {
  3326. side: {
  3327. height: math.unit(7.2, "meter"),
  3328. weight: math.unit(8.2, "tons"),
  3329. name: "Side",
  3330. image: {
  3331. source: "./media/characters/cryae/side.svg",
  3332. extra: 3500 / 1500
  3333. }
  3334. }
  3335. },
  3336. [
  3337. {
  3338. name: "Normal",
  3339. height: math.unit(7.2, "meter"),
  3340. default: true
  3341. }
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(6, "feet"),
  3349. weight: math.unit(175, "lb"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/xera/front.svg",
  3353. extra: 2300 / 2061
  3354. }
  3355. },
  3356. side: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(175, "lb"),
  3359. name: "Side",
  3360. image: {
  3361. source: "./media/characters/xera/side.svg",
  3362. extra: 2300 / 2061
  3363. }
  3364. },
  3365. back: {
  3366. height: math.unit(6, "feet"),
  3367. weight: math.unit(175, "lb"),
  3368. name: "Back",
  3369. image: {
  3370. source: "./media/characters/xera/back.svg"
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Small",
  3377. height: math.unit(10, "feet")
  3378. },
  3379. {
  3380. name: "Macro",
  3381. height: math.unit(500, "meters"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(10, "km")
  3387. },
  3388. {
  3389. name: "Gigamacro",
  3390. height: math.unit(25000, "km")
  3391. },
  3392. {
  3393. name: "Teramacro",
  3394. height: math.unit(3e6, "km")
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(175, "lb"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/nebula/front.svg",
  3407. extra: 2600 / 2450
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Small",
  3414. height: math.unit(4.5, "meters")
  3415. },
  3416. {
  3417. name: "Macro",
  3418. height: math.unit(1500, "meters"),
  3419. default: true
  3420. },
  3421. {
  3422. name: "Megamacro",
  3423. height: math.unit(150, "km")
  3424. },
  3425. {
  3426. name: "Gigamacro",
  3427. height: math.unit(27000, "km")
  3428. }
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(6, "feet"),
  3436. weight: math.unit(225, "lb"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/abysgar/front.svg"
  3440. }
  3441. }
  3442. },
  3443. [
  3444. {
  3445. name: "Small",
  3446. height: math.unit(4.5, "meters")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(1250, "meters"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Megamacro",
  3455. height: math.unit(125, "km")
  3456. },
  3457. {
  3458. name: "Gigamacro",
  3459. height: math.unit(26000, "km")
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(180, "lb"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/yakuz/front.svg"
  3472. }
  3473. }
  3474. },
  3475. [
  3476. {
  3477. name: "Small",
  3478. height: math.unit(5, "meters")
  3479. },
  3480. {
  3481. name: "Macro",
  3482. height: math.unit(1500, "meters"),
  3483. default: true
  3484. },
  3485. {
  3486. name: "Megamacro",
  3487. height: math.unit(200, "km")
  3488. },
  3489. {
  3490. name: "Gigamacro",
  3491. height: math.unit(100000, "km")
  3492. }
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3497. {
  3498. front: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(175, "lb"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/mirova/front.svg"
  3504. }
  3505. }
  3506. },
  3507. [
  3508. {
  3509. name: "Small",
  3510. height: math.unit(5, "meters")
  3511. },
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(900, "meters"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Megamacro",
  3519. height: math.unit(135, "km")
  3520. },
  3521. {
  3522. name: "Gigamacro",
  3523. height: math.unit(20000, "km")
  3524. }
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3529. {
  3530. side: {
  3531. height: math.unit(28.35, "feet"),
  3532. weight: math.unit(99.75, "tons"),
  3533. name: "Side",
  3534. image: {
  3535. source: "./media/characters/asana-mech/side.svg"
  3536. }
  3537. }
  3538. },
  3539. [
  3540. {
  3541. name: "Normal",
  3542. height: math.unit(28.35, "feet"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(2500, "feet")
  3548. },
  3549. {
  3550. name: "Megamacro",
  3551. height: math.unit(25, "miles")
  3552. },
  3553. {
  3554. name: "Examacro",
  3555. height: math.unit(6e8, "lightyears")
  3556. },
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(2, "meters"),
  3564. weight: math.unit(70, "kg"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/ashtrek/front.svg",
  3568. extra: 560 / 524,
  3569. bottom: 0.01
  3570. }
  3571. },
  3572. frontArmor: {
  3573. height: math.unit(2, "meters"),
  3574. weight: math.unit(76, "kg"),
  3575. name: "Front (Armor)",
  3576. image: {
  3577. source: "./media/characters/ashtrek/front-armor.svg",
  3578. extra: 561 / 527,
  3579. bottom: 0.01
  3580. }
  3581. },
  3582. side: {
  3583. height: math.unit(2, "meters"),
  3584. weight: math.unit(70, "kg"),
  3585. name: "Side",
  3586. image: {
  3587. source: "./media/characters/ashtrek/side.svg",
  3588. extra: 1717 / 1609,
  3589. bottom: 0.005
  3590. }
  3591. },
  3592. back: {
  3593. height: math.unit(2, "meters"),
  3594. weight: math.unit(70, "kg"),
  3595. name: "Back",
  3596. image: {
  3597. source: "./media/characters/ashtrek/back.svg",
  3598. extra: 1570 / 1501
  3599. }
  3600. },
  3601. },
  3602. [
  3603. {
  3604. name: "DEFCON 5",
  3605. height: math.unit(5, "meters")
  3606. },
  3607. {
  3608. name: "DEFCON 4",
  3609. height: math.unit(500, "meters"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "DEFCON 3",
  3614. height: math.unit(5, "km")
  3615. },
  3616. {
  3617. name: "DEFCON 2",
  3618. height: math.unit(500, "km")
  3619. },
  3620. {
  3621. name: "DEFCON 1",
  3622. height: math.unit(500000, "km")
  3623. },
  3624. {
  3625. name: "DEFCON 0",
  3626. height: math.unit(3, "gigaparsecs")
  3627. },
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3632. {
  3633. front: {
  3634. height: math.unit(2, "meters"),
  3635. weight: math.unit(76, "kg"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/gale/front.svg"
  3639. }
  3640. },
  3641. frontAlt1: {
  3642. height: math.unit(2, "meters"),
  3643. weight: math.unit(76, "kg"),
  3644. name: "Front (Alt 1)",
  3645. image: {
  3646. source: "./media/characters/gale/front-alt-1.svg"
  3647. }
  3648. },
  3649. frontAlt2: {
  3650. height: math.unit(2, "meters"),
  3651. weight: math.unit(76, "kg"),
  3652. name: "Front (Alt 2)",
  3653. image: {
  3654. source: "./media/characters/gale/front-alt-2.svg"
  3655. }
  3656. },
  3657. },
  3658. [
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(7, "feet")
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(150, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Macro+",
  3670. height: math.unit(300, "feet")
  3671. },
  3672. ]
  3673. ))
  3674. characterMakers.push(() => makeCharacter(
  3675. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3676. {
  3677. front: {
  3678. height: math.unit(2, "meters"),
  3679. weight: math.unit(76, "kg"),
  3680. name: "Front",
  3681. image: {
  3682. source: "./media/characters/draylen/front.svg"
  3683. }
  3684. }
  3685. },
  3686. [
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(150, "feet"),
  3690. default: true
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3696. {
  3697. front: {
  3698. height: math.unit(7 + 9 / 12, "feet"),
  3699. weight: math.unit(379, "lbs"),
  3700. name: "Front",
  3701. image: {
  3702. source: "./media/characters/chez/front.svg"
  3703. }
  3704. },
  3705. side: {
  3706. height: math.unit(7 + 9 / 12, "feet"),
  3707. weight: math.unit(379, "lbs"),
  3708. name: "Side",
  3709. image: {
  3710. source: "./media/characters/chez/side.svg"
  3711. }
  3712. }
  3713. },
  3714. [
  3715. {
  3716. name: "Normal",
  3717. height: math.unit(7 + 9 / 12, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "God King",
  3722. height: math.unit(9750000, "meters")
  3723. }
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(275, "lbs"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/kaylum/front.svg",
  3735. bottom: 0.01,
  3736. extra: 1166 / 1031
  3737. }
  3738. },
  3739. frontWingless: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(275, "lbs"),
  3742. name: "Front (Wingless)",
  3743. image: {
  3744. source: "./media/characters/kaylum/front-wingless.svg",
  3745. bottom: 0.01,
  3746. extra: 1117 / 1031
  3747. }
  3748. }
  3749. },
  3750. [
  3751. {
  3752. name: "Normal",
  3753. height: math.unit(3.05, "meters")
  3754. },
  3755. {
  3756. name: "Master",
  3757. height: math.unit(5.5, "meters")
  3758. },
  3759. {
  3760. name: "Rampage",
  3761. height: math.unit(19, "meters")
  3762. },
  3763. {
  3764. name: "Macro Lite",
  3765. height: math.unit(37, "meters")
  3766. },
  3767. {
  3768. name: "Hyper Predator",
  3769. height: math.unit(61, "meters")
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(138, "meters"),
  3774. default: true
  3775. }
  3776. ]
  3777. ))
  3778. characterMakers.push(() => makeCharacter(
  3779. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3780. {
  3781. front: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(150, "lbs"),
  3784. name: "Front",
  3785. image: {
  3786. source: "./media/characters/geta/front.svg"
  3787. }
  3788. }
  3789. },
  3790. [
  3791. {
  3792. name: "Micro",
  3793. height: math.unit(3, "inches"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "Normal",
  3798. height: math.unit(5 + 5 / 12, "feet")
  3799. }
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(300, "lbs"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/tyrnn/front.svg"
  3811. }
  3812. }
  3813. },
  3814. [
  3815. {
  3816. name: "Main Height",
  3817. height: math.unit(355, "feet"),
  3818. default: true
  3819. },
  3820. {
  3821. name: "Fave. Height",
  3822. height: math.unit(2400, "feet")
  3823. }
  3824. ]
  3825. ))
  3826. characterMakers.push(() => makeCharacter(
  3827. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3828. {
  3829. front: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(300, "lbs"),
  3832. name: "Front",
  3833. image: {
  3834. source: "./media/characters/appledectomy/front.svg"
  3835. }
  3836. }
  3837. },
  3838. [
  3839. {
  3840. name: "Macro",
  3841. height: math.unit(2500, "feet")
  3842. },
  3843. {
  3844. name: "Megamacro",
  3845. height: math.unit(50, "miles"),
  3846. default: true
  3847. },
  3848. {
  3849. name: "Gigamacro",
  3850. height: math.unit(5000, "miles")
  3851. },
  3852. {
  3853. name: "Teramacro",
  3854. height: math.unit(250000, "miles")
  3855. },
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(200, "lbs"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/vulpes/front.svg",
  3867. extra: 573 / 543,
  3868. bottom: 0.033
  3869. }
  3870. },
  3871. side: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(200, "lbs"),
  3874. name: "Side",
  3875. image: {
  3876. source: "./media/characters/vulpes/side.svg",
  3877. extra: 573 / 543,
  3878. bottom: 0.01
  3879. }
  3880. },
  3881. back: {
  3882. height: math.unit(6, "feet"),
  3883. weight: math.unit(200, "lbs"),
  3884. name: "Back",
  3885. image: {
  3886. source: "./media/characters/vulpes/back.svg",
  3887. extra: 573 / 543,
  3888. }
  3889. },
  3890. feet: {
  3891. height: math.unit(1.276, "feet"),
  3892. name: "Feet",
  3893. image: {
  3894. source: "./media/characters/vulpes/feet.svg"
  3895. }
  3896. },
  3897. maw: {
  3898. height: math.unit(1.18, "feet"),
  3899. name: "Maw",
  3900. image: {
  3901. source: "./media/characters/vulpes/maw.svg"
  3902. }
  3903. },
  3904. },
  3905. [
  3906. {
  3907. name: "Micro",
  3908. height: math.unit(2, "inches")
  3909. },
  3910. {
  3911. name: "Normal",
  3912. height: math.unit(6.3, "feet")
  3913. },
  3914. {
  3915. name: "Macro",
  3916. height: math.unit(850, "feet")
  3917. },
  3918. {
  3919. name: "Megamacro",
  3920. height: math.unit(7500, "feet"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "Gigamacro",
  3925. height: math.unit(570000, "miles")
  3926. }
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3931. {
  3932. front: {
  3933. height: math.unit(6, "feet"),
  3934. weight: math.unit(210, "lbs"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/rain-fallen/front.svg"
  3938. }
  3939. },
  3940. side: {
  3941. height: math.unit(6, "feet"),
  3942. weight: math.unit(210, "lbs"),
  3943. name: "Side",
  3944. image: {
  3945. source: "./media/characters/rain-fallen/side.svg"
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(6, "feet"),
  3950. weight: math.unit(210, "lbs"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/rain-fallen/back.svg"
  3954. }
  3955. },
  3956. feral: {
  3957. height: math.unit(9, "feet"),
  3958. weight: math.unit(700, "lbs"),
  3959. name: "Feral",
  3960. image: {
  3961. source: "./media/characters/rain-fallen/feral.svg"
  3962. }
  3963. },
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(5, "meter")
  3969. },
  3970. {
  3971. name: "Macro",
  3972. height: math.unit(150, "meter"),
  3973. default: true
  3974. },
  3975. {
  3976. name: "Megamacro",
  3977. height: math.unit(278e6, "meter")
  3978. },
  3979. {
  3980. name: "Gigamacro",
  3981. height: math.unit(2e9, "meter")
  3982. },
  3983. {
  3984. name: "Teramacro",
  3985. height: math.unit(8e12, "meter")
  3986. },
  3987. {
  3988. name: "Devourer",
  3989. height: math.unit(14, "zettameters")
  3990. },
  3991. {
  3992. name: "Scarlet King",
  3993. height: math.unit(18, "yottameters")
  3994. },
  3995. {
  3996. name: "Void",
  3997. height: math.unit(6.66e66, "yottameters")
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4003. {
  4004. standing: {
  4005. height: math.unit(6, "feet"),
  4006. weight: math.unit(180, "lbs"),
  4007. name: "Standing",
  4008. image: {
  4009. source: "./media/characters/zaakira/standing.svg"
  4010. }
  4011. },
  4012. laying: {
  4013. height: math.unit(3, "feet"),
  4014. weight: math.unit(180, "lbs"),
  4015. name: "Laying",
  4016. image: {
  4017. source: "./media/characters/zaakira/laying.svg"
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(12, "feet")
  4025. },
  4026. {
  4027. name: "Macro",
  4028. height: math.unit(279, "feet"),
  4029. default: true
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(6, "feet"),
  4038. weight: math.unit(250, "lbs"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/sigvald/front.svg",
  4042. extra: 1000 / 850
  4043. }
  4044. },
  4045. back: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(250, "lbs"),
  4048. name: "Back",
  4049. image: {
  4050. source: "./media/characters/sigvald/back.svg"
  4051. }
  4052. },
  4053. },
  4054. [
  4055. {
  4056. name: "Normal",
  4057. height: math.unit(8, "feet")
  4058. },
  4059. {
  4060. name: "Large",
  4061. height: math.unit(12, "feet")
  4062. },
  4063. {
  4064. name: "Larger",
  4065. height: math.unit(20, "feet")
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(150, "feet")
  4070. },
  4071. {
  4072. name: "Macro+",
  4073. height: math.unit(200, "feet"),
  4074. default: true
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4080. {
  4081. side: {
  4082. height: math.unit(12, "feet"),
  4083. weight: math.unit(2000, "kg"),
  4084. name: "Side",
  4085. image: {
  4086. source: "./media/characters/scott/side.svg",
  4087. extra: 754/724,
  4088. bottom: 0.069
  4089. }
  4090. },
  4091. upright: {
  4092. height: math.unit(12, "feet"),
  4093. weight: math.unit(2000, "kg"),
  4094. name: "Upright",
  4095. image: {
  4096. source: "./media/characters/scott/upright.svg",
  4097. extra: 3881/3722,
  4098. bottom: 0.05
  4099. }
  4100. },
  4101. },
  4102. [
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(12, "feet"),
  4106. default: true
  4107. },
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4112. {
  4113. side: {
  4114. height: math.unit(8, "meters"),
  4115. weight: math.unit(84755, "lbs"),
  4116. name: "Side",
  4117. image: {
  4118. source: "./media/characters/tobias/side.svg",
  4119. extra: 1474 / 1096,
  4120. bottom: 38.9 / 1513.1235
  4121. }
  4122. },
  4123. },
  4124. [
  4125. {
  4126. name: "Normal",
  4127. height: math.unit(8, "meters"),
  4128. default: true
  4129. },
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4134. {
  4135. front: {
  4136. height: math.unit(5.5, "feet"),
  4137. weight: math.unit(400, "lbs"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/kieran/front.svg",
  4141. extra: 2694/2364,
  4142. bottom: 217/2908
  4143. }
  4144. },
  4145. side: {
  4146. height: math.unit(5.5, "feet"),
  4147. weight: math.unit(400, "lbs"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/kieran/side.svg",
  4151. extra: 875/777,
  4152. bottom: 84.6/959
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(5.5, "feet"),
  4160. default: true
  4161. },
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4166. {
  4167. side: {
  4168. height: math.unit(2, "meters"),
  4169. weight: math.unit(70, "kg"),
  4170. name: "Side",
  4171. image: {
  4172. source: "./media/characters/sanya/side.svg",
  4173. bottom: 0.02,
  4174. extra: 1.02
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Small",
  4181. height: math.unit(2, "meters")
  4182. },
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(3, "meters")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(16, "meters"),
  4190. default: true
  4191. },
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4196. {
  4197. side: {
  4198. height: math.unit(2, "meters"),
  4199. weight: math.unit(120, "kg"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/miranda/front.svg",
  4203. extra: 10.6 / 10
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(10, "feet"),
  4211. default: true
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "James", species: ["deer"], tags: ["anthro"] },
  4217. {
  4218. side: {
  4219. height: math.unit(2, "meters"),
  4220. weight: math.unit(100, "kg"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/james/front.svg",
  4224. extra: 10 / 8.5
  4225. }
  4226. },
  4227. },
  4228. [
  4229. {
  4230. name: "Normal",
  4231. height: math.unit(8.5, "feet"),
  4232. default: true
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4238. {
  4239. side: {
  4240. height: math.unit(9.5, "feet"),
  4241. weight: math.unit(2500, "lbs"),
  4242. name: "Side",
  4243. image: {
  4244. source: "./media/characters/heather/side.svg"
  4245. }
  4246. },
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(9.5, "feet"),
  4252. default: true
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4258. {
  4259. side: {
  4260. height: math.unit(6.5, "feet"),
  4261. weight: math.unit(400, "lbs"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/lukas/side.svg",
  4265. extra: 7.25 / 6.5
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(6.5, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4279. {
  4280. side: {
  4281. height: math.unit(5, "feet"),
  4282. weight: math.unit(3000, "lbs"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/louise/side.svg"
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(5, "feet"),
  4293. default: true
  4294. }
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4299. {
  4300. side: {
  4301. height: math.unit(6, "feet"),
  4302. weight: math.unit(150, "lbs"),
  4303. name: "Side",
  4304. image: {
  4305. source: "./media/characters/ramona/side.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(5.3, "meters"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(20, "stories")
  4318. },
  4319. {
  4320. name: "Macro+",
  4321. height: math.unit(50, "stories")
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4327. {
  4328. standing: {
  4329. height: math.unit(5.75, "feet"),
  4330. weight: math.unit(160, "lbs"),
  4331. name: "Standing",
  4332. image: {
  4333. source: "./media/characters/deerpuff/standing.svg",
  4334. extra: 682 / 624
  4335. }
  4336. },
  4337. sitting: {
  4338. height: math.unit(5.75 / 1.79, "feet"),
  4339. weight: math.unit(160, "lbs"),
  4340. name: "Sitting",
  4341. image: {
  4342. source: "./media/characters/deerpuff/sitting.svg",
  4343. bottom: 44 / 400,
  4344. extra: 1
  4345. }
  4346. },
  4347. taurLaying: {
  4348. height: math.unit(6, "feet"),
  4349. weight: math.unit(400, "lbs"),
  4350. name: "Taur (Laying)",
  4351. image: {
  4352. source: "./media/characters/deerpuff/taur-laying.svg"
  4353. }
  4354. },
  4355. },
  4356. [
  4357. {
  4358. name: "Puffball",
  4359. height: math.unit(6, "inches")
  4360. },
  4361. {
  4362. name: "Normalpuff",
  4363. height: math.unit(5.75, "feet")
  4364. },
  4365. {
  4366. name: "Macropuff",
  4367. height: math.unit(1500, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Megapuff",
  4372. height: math.unit(500, "miles")
  4373. },
  4374. {
  4375. name: "Gigapuff",
  4376. height: math.unit(250000, "miles")
  4377. },
  4378. {
  4379. name: "Omegapuff",
  4380. height: math.unit(1000, "lightyears")
  4381. },
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4386. {
  4387. stomping: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(170, "lbs"),
  4390. name: "Stomping",
  4391. image: {
  4392. source: "./media/characters/vivian/stomping.svg"
  4393. }
  4394. },
  4395. sitting: {
  4396. height: math.unit(6 / 1.75, "feet"),
  4397. weight: math.unit(170, "lbs"),
  4398. name: "Sitting",
  4399. image: {
  4400. source: "./media/characters/vivian/sitting.svg",
  4401. bottom: 1 / 6.4,
  4402. extra: 1,
  4403. }
  4404. },
  4405. },
  4406. [
  4407. {
  4408. name: "Normal",
  4409. height: math.unit(7, "feet"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(10, "stories")
  4415. },
  4416. {
  4417. name: "Macro+",
  4418. height: math.unit(30, "stories")
  4419. },
  4420. {
  4421. name: "Megamacro",
  4422. height: math.unit(10, "miles")
  4423. },
  4424. {
  4425. name: "Megamacro+",
  4426. height: math.unit(2750000, "meters")
  4427. },
  4428. ]
  4429. ))
  4430. characterMakers.push(() => makeCharacter(
  4431. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4432. {
  4433. front: {
  4434. height: math.unit(6, "feet"),
  4435. weight: math.unit(160, "lbs"),
  4436. name: "Front",
  4437. image: {
  4438. source: "./media/characters/prince/front.svg",
  4439. extra: 3400 / 3000
  4440. }
  4441. },
  4442. jumping: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(160, "lbs"),
  4445. name: "Jumping",
  4446. image: {
  4447. source: "./media/characters/prince/jump.svg",
  4448. extra: 2555 / 2134
  4449. }
  4450. },
  4451. },
  4452. [
  4453. {
  4454. name: "Normal",
  4455. height: math.unit(7.75, "feet"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Not cute",
  4460. height: math.unit(17, "feet")
  4461. },
  4462. {
  4463. name: "I said NOT",
  4464. height: math.unit(91, "feet")
  4465. },
  4466. {
  4467. name: "Please stop",
  4468. height: math.unit(560, "feet")
  4469. },
  4470. {
  4471. name: "What have you done",
  4472. height: math.unit(2200, "feet")
  4473. },
  4474. {
  4475. name: "Deer God",
  4476. height: math.unit(3.6, "miles")
  4477. },
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4482. {
  4483. standing: {
  4484. height: math.unit(6, "feet"),
  4485. weight: math.unit(300, "lbs"),
  4486. name: "Standing",
  4487. image: {
  4488. source: "./media/characters/psymon/standing.svg",
  4489. extra: 1888 / 1810,
  4490. bottom: 0.05
  4491. }
  4492. },
  4493. slithering: {
  4494. height: math.unit(6, "feet"),
  4495. weight: math.unit(300, "lbs"),
  4496. name: "Slithering",
  4497. image: {
  4498. source: "./media/characters/psymon/slithering.svg",
  4499. extra: 1330 / 1224
  4500. }
  4501. },
  4502. slitheringAlt: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(300, "lbs"),
  4505. name: "Slithering (Alt)",
  4506. image: {
  4507. source: "./media/characters/psymon/slithering-alt.svg",
  4508. extra: 1330 / 1224
  4509. }
  4510. },
  4511. },
  4512. [
  4513. {
  4514. name: "Normal",
  4515. height: math.unit(11.25, "feet"),
  4516. default: true
  4517. },
  4518. {
  4519. name: "Large",
  4520. height: math.unit(27, "feet")
  4521. },
  4522. {
  4523. name: "Giant",
  4524. height: math.unit(87, "feet")
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(365, "feet")
  4529. },
  4530. {
  4531. name: "Megamacro",
  4532. height: math.unit(3, "miles")
  4533. },
  4534. {
  4535. name: "World Serpent",
  4536. height: math.unit(8000, "miles")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(6, "feet"),
  4545. weight: math.unit(180, "lbs"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/daimos/front.svg",
  4549. extra: 4160 / 3897,
  4550. bottom: 0.021
  4551. }
  4552. }
  4553. },
  4554. [
  4555. {
  4556. name: "Normal",
  4557. height: math.unit(8, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Big Dog",
  4562. height: math.unit(22, "feet")
  4563. },
  4564. {
  4565. name: "Macro",
  4566. height: math.unit(127, "feet")
  4567. },
  4568. {
  4569. name: "Megamacro",
  4570. height: math.unit(3600, "feet")
  4571. },
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4576. {
  4577. side: {
  4578. height: math.unit(6, "feet"),
  4579. weight: math.unit(180, "lbs"),
  4580. name: "Side",
  4581. image: {
  4582. source: "./media/characters/blake/side.svg",
  4583. extra: 1212 / 1120,
  4584. bottom: 0.05
  4585. }
  4586. },
  4587. crouched: {
  4588. height: math.unit(6 * 0.57, "feet"),
  4589. weight: math.unit(180, "lbs"),
  4590. name: "Crouched",
  4591. image: {
  4592. source: "./media/characters/blake/crouched.svg",
  4593. extra: 840 / 587,
  4594. bottom: 0.04
  4595. }
  4596. },
  4597. bent: {
  4598. height: math.unit(6 * 0.75, "feet"),
  4599. weight: math.unit(180, "lbs"),
  4600. name: "Bent",
  4601. image: {
  4602. source: "./media/characters/blake/bent.svg",
  4603. extra: 592 / 544,
  4604. bottom: 0.035
  4605. }
  4606. },
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(8 + 1 / 6, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Big Backside",
  4616. height: math.unit(37, "feet")
  4617. },
  4618. {
  4619. name: "Subway Shredder",
  4620. height: math.unit(72, "feet")
  4621. },
  4622. {
  4623. name: "City Carver",
  4624. height: math.unit(1675, "feet")
  4625. },
  4626. {
  4627. name: "Tectonic Tweaker",
  4628. height: math.unit(2300, "miles")
  4629. },
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(6, "feet"),
  4637. weight: math.unit(180, "lbs"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/guisetto/front.svg",
  4641. extra: 856 / 817,
  4642. bottom: 0.06
  4643. }
  4644. },
  4645. airborne: {
  4646. height: math.unit(6, "feet"),
  4647. weight: math.unit(180, "lbs"),
  4648. name: "Airborne",
  4649. image: {
  4650. source: "./media/characters/guisetto/airborne.svg",
  4651. extra: 584 / 525
  4652. }
  4653. },
  4654. },
  4655. [
  4656. {
  4657. name: "Normal",
  4658. height: math.unit(10 + 11 / 12, "feet"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Large",
  4663. height: math.unit(35, "feet")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(475, "feet")
  4668. },
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4673. {
  4674. front: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(180, "lbs"),
  4677. name: "Front",
  4678. image: {
  4679. source: "./media/characters/luxor/front.svg",
  4680. extra: 2940 / 2152
  4681. }
  4682. },
  4683. back: {
  4684. height: math.unit(6, "feet"),
  4685. weight: math.unit(180, "lbs"),
  4686. name: "Back",
  4687. image: {
  4688. source: "./media/characters/luxor/back.svg",
  4689. extra: 1083 / 960
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(5 + 5 / 6, "feet"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Lamp",
  4701. height: math.unit(50, "feet")
  4702. },
  4703. {
  4704. name: "Lämp",
  4705. height: math.unit(300, "feet")
  4706. },
  4707. {
  4708. name: "The sun is a lamp",
  4709. height: math.unit(250000, "miles")
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4715. {
  4716. front: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(50, "lbs"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/huoyan/front.svg"
  4722. }
  4723. },
  4724. side: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(180, "lbs"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/huoyan/side.svg"
  4730. }
  4731. },
  4732. },
  4733. [
  4734. {
  4735. name: "Chef",
  4736. height: math.unit(9, "feet")
  4737. },
  4738. {
  4739. name: "Normal",
  4740. height: math.unit(65, "feet"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Macro",
  4745. height: math.unit(780, "feet")
  4746. },
  4747. {
  4748. name: "Flaming Mountain",
  4749. height: math.unit(4.8, "miles")
  4750. },
  4751. {
  4752. name: "Celestial",
  4753. height: math.unit(765000, "miles")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(5 + 3 / 4, "feet"),
  4762. weight: math.unit(120, "lbs"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/tails/front.svg"
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(5 + 3 / 4, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(4, "feet"),
  4782. weight: math.unit(50, "lbs"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/rainy/front.svg"
  4786. }
  4787. }
  4788. },
  4789. [
  4790. {
  4791. name: "Macro",
  4792. height: math.unit(800, "feet"),
  4793. default: true
  4794. }
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4799. {
  4800. front: {
  4801. height: math.unit(6, "feet"),
  4802. weight: math.unit(150, "lbs"),
  4803. name: "Front",
  4804. image: {
  4805. source: "./media/characters/rainier/front.svg"
  4806. }
  4807. }
  4808. },
  4809. [
  4810. {
  4811. name: "Micro",
  4812. height: math.unit(2, "mm"),
  4813. default: true
  4814. }
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4819. {
  4820. front: {
  4821. height: math.unit(6, "feet"),
  4822. weight: math.unit(180, "lbs"),
  4823. name: "Front",
  4824. image: {
  4825. source: "./media/characters/andy/front.svg"
  4826. }
  4827. }
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(8, "feet"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "Macro",
  4837. height: math.unit(1000, "feet")
  4838. },
  4839. {
  4840. name: "Megamacro",
  4841. height: math.unit(5, "miles")
  4842. },
  4843. {
  4844. name: "Gigamacro",
  4845. height: math.unit(5000, "miles")
  4846. },
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4851. {
  4852. front: {
  4853. height: math.unit(6, "feet"),
  4854. weight: math.unit(210, "lbs"),
  4855. name: "Front",
  4856. image: {
  4857. source: "./media/characters/cimmaron/front-sfw.svg",
  4858. extra: 701 / 676,
  4859. bottom: 0.046
  4860. }
  4861. },
  4862. back: {
  4863. height: math.unit(6, "feet"),
  4864. weight: math.unit(210, "lbs"),
  4865. name: "Back",
  4866. image: {
  4867. source: "./media/characters/cimmaron/back-sfw.svg",
  4868. extra: 701 / 676,
  4869. bottom: 0.046
  4870. }
  4871. },
  4872. frontNsfw: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(210, "lbs"),
  4875. name: "Front (NSFW)",
  4876. image: {
  4877. source: "./media/characters/cimmaron/front-nsfw.svg",
  4878. extra: 701 / 676,
  4879. bottom: 0.046
  4880. }
  4881. },
  4882. backNsfw: {
  4883. height: math.unit(6, "feet"),
  4884. weight: math.unit(210, "lbs"),
  4885. name: "Back (NSFW)",
  4886. image: {
  4887. source: "./media/characters/cimmaron/back-nsfw.svg",
  4888. extra: 701 / 676,
  4889. bottom: 0.046
  4890. }
  4891. },
  4892. dick: {
  4893. height: math.unit(1.714, "feet"),
  4894. name: "Dick",
  4895. image: {
  4896. source: "./media/characters/cimmaron/dick.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(6, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Macro Mayor",
  4908. height: math.unit(350, "meters")
  4909. },
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(200, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/akari/front.svg",
  4921. extra: 962 / 901,
  4922. bottom: 0.04
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Micro",
  4929. height: math.unit(5, "inches"),
  4930. default: true
  4931. },
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(7, "feet")
  4935. },
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4940. {
  4941. front: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(140, "lbs"),
  4944. name: "Front",
  4945. image: {
  4946. source: "./media/characters/cynosura/front.svg",
  4947. extra: 896 / 847
  4948. }
  4949. },
  4950. back: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(140, "lbs"),
  4953. name: "Back",
  4954. image: {
  4955. source: "./media/characters/cynosura/back.svg",
  4956. extra: 1365 / 1250
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Micro",
  4963. height: math.unit(4, "inches")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(5.75, "feet"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Tall",
  4972. height: math.unit(10, "feet")
  4973. },
  4974. {
  4975. name: "Big",
  4976. height: math.unit(20, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(50, "feet")
  4981. },
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(170, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/gin/front.svg",
  4993. extra: 1.053,
  4994. bottom: 0.025
  4995. }
  4996. },
  4997. foot: {
  4998. height: math.unit(6 / 4.25, "feet"),
  4999. name: "Foot",
  5000. image: {
  5001. source: "./media/characters/gin/foot.svg"
  5002. }
  5003. },
  5004. sole: {
  5005. height: math.unit(6 / 4.40, "feet"),
  5006. name: "Sole",
  5007. image: {
  5008. source: "./media/characters/gin/sole.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(13 + 2/12, "feet")
  5016. },
  5017. {
  5018. name: "Macro",
  5019. height: math.unit(1500, "feet")
  5020. },
  5021. {
  5022. name: "Megamacro",
  5023. height: math.unit(200, "miles"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Gigamacro",
  5028. height: math.unit(500, "megameters")
  5029. },
  5030. {
  5031. name: "Teramacro",
  5032. height: math.unit(15, "lightyears")
  5033. }
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5038. {
  5039. front: {
  5040. height: math.unit(6 + 1 / 6, "feet"),
  5041. weight: math.unit(178, "lbs"),
  5042. name: "Front",
  5043. image: {
  5044. source: "./media/characters/guy/front.svg"
  5045. }
  5046. }
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(6 + 1 / 6, "feet"),
  5052. default: true
  5053. },
  5054. {
  5055. name: "Large",
  5056. height: math.unit(25 + 7 / 12, "feet")
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(60 + 9 / 12, "feet")
  5061. },
  5062. {
  5063. name: "Macro+",
  5064. height: math.unit(246, "feet")
  5065. },
  5066. {
  5067. name: "Macro++",
  5068. height: math.unit(878, "feet")
  5069. }
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5074. {
  5075. front: {
  5076. height: math.unit(9, "feet"),
  5077. weight: math.unit(800, "lbs"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/tiberius/front.svg",
  5081. extra: 2295 / 2071
  5082. }
  5083. },
  5084. back: {
  5085. height: math.unit(9, "feet"),
  5086. weight: math.unit(800, "lbs"),
  5087. name: "Back",
  5088. image: {
  5089. source: "./media/characters/tiberius/back.svg",
  5090. extra: 2373 / 2160
  5091. }
  5092. },
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(9, "feet"),
  5098. default: true
  5099. }
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5104. {
  5105. front: {
  5106. height: math.unit(6, "feet"),
  5107. weight: math.unit(600, "lbs"),
  5108. name: "Front",
  5109. image: {
  5110. source: "./media/characters/surgo/front.svg",
  5111. extra: 3591 / 2227
  5112. }
  5113. },
  5114. back: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(600, "lbs"),
  5117. name: "Back",
  5118. image: {
  5119. source: "./media/characters/surgo/back.svg",
  5120. extra: 3557 / 2228
  5121. }
  5122. },
  5123. laying: {
  5124. height: math.unit(6 * 0.85, "feet"),
  5125. weight: math.unit(600, "lbs"),
  5126. name: "Laying",
  5127. image: {
  5128. source: "./media/characters/surgo/laying.svg"
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(6, "feet"),
  5136. default: true
  5137. }
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5142. {
  5143. side: {
  5144. height: math.unit(6, "feet"),
  5145. weight: math.unit(150, "lbs"),
  5146. name: "Side",
  5147. image: {
  5148. source: "./media/characters/cibus/side.svg",
  5149. extra: 800 / 400
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(6, "feet"),
  5157. default: true
  5158. }
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(240, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/nibbles/front.svg"
  5170. }
  5171. },
  5172. side: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(240, "lbs"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/nibbles/side.svg"
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(9, "feet"),
  5185. default: true
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5191. {
  5192. side: {
  5193. height: math.unit(5 + 1 / 6, "feet"),
  5194. weight: math.unit(130, "lbs"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/rikky/side.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(5 + 1 / 6, "feet")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(152, "feet"),
  5209. default: true
  5210. },
  5211. {
  5212. name: "Megamacro",
  5213. height: math.unit(7, "miles")
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5219. {
  5220. side: {
  5221. height: math.unit(370, "cm"),
  5222. weight: math.unit(350, "lbs"),
  5223. name: "Side",
  5224. image: {
  5225. source: "./media/characters/malfressa/side.svg"
  5226. }
  5227. },
  5228. walking: {
  5229. height: math.unit(370, "cm"),
  5230. weight: math.unit(350, "lbs"),
  5231. name: "Walking",
  5232. image: {
  5233. source: "./media/characters/malfressa/walking.svg"
  5234. }
  5235. },
  5236. feral: {
  5237. height: math.unit(2500, "cm"),
  5238. weight: math.unit(100000, "lbs"),
  5239. name: "Feral",
  5240. image: {
  5241. source: "./media/characters/malfressa/feral.svg",
  5242. extra: 2108 / 837,
  5243. bottom: 0.02
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(370, "cm")
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(300, "meters"),
  5255. default: true
  5256. }
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5261. {
  5262. front: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(60, "kg"),
  5265. name: "Front",
  5266. image: {
  5267. source: "./media/characters/jaro/front.svg"
  5268. }
  5269. },
  5270. back: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(60, "kg"),
  5273. name: "Back",
  5274. image: {
  5275. source: "./media/characters/jaro/back.svg"
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "Micro",
  5282. height: math.unit(7, "inches")
  5283. },
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(5.5, "feet"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Minimacro",
  5291. height: math.unit(20, "feet")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(200, "meters")
  5296. }
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5301. {
  5302. front: {
  5303. height: math.unit(6, "feet"),
  5304. weight: math.unit(195, "lb"),
  5305. name: "Front",
  5306. image: {
  5307. source: "./media/characters/rogue/front.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(90, "feet"),
  5315. default: true
  5316. },
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(5 + 8 / 12, "feet"),
  5324. weight: math.unit(140, "lb"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/piper/front.svg",
  5328. extra: 3928 / 3681
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Micro",
  5335. height: math.unit(2, "inches")
  5336. },
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(5 + 8 / 12, "feet")
  5340. },
  5341. {
  5342. name: "Macro",
  5343. height: math.unit(250, "feet"),
  5344. default: true
  5345. },
  5346. {
  5347. name: "Megamacro",
  5348. height: math.unit(7, "miles")
  5349. },
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(220, "lb"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/gemini/front.svg"
  5361. }
  5362. },
  5363. back: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(220, "lb"),
  5366. name: "Back",
  5367. image: {
  5368. source: "./media/characters/gemini/back.svg"
  5369. }
  5370. },
  5371. kneeling: {
  5372. height: math.unit(6 / 1.5, "feet"),
  5373. weight: math.unit(220, "lb"),
  5374. name: "Kneeling",
  5375. image: {
  5376. source: "./media/characters/gemini/kneeling.svg",
  5377. bottom: 0.02
  5378. }
  5379. },
  5380. },
  5381. [
  5382. {
  5383. name: "Macro",
  5384. height: math.unit(300, "meters"),
  5385. default: true
  5386. },
  5387. {
  5388. name: "Megamacro",
  5389. height: math.unit(6900, "meters")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5395. {
  5396. anthro: {
  5397. height: math.unit(2.35, "meters"),
  5398. weight: math.unit(73, "kg"),
  5399. name: "Anthro",
  5400. image: {
  5401. source: "./media/characters/alicia/anthro.svg",
  5402. extra: 2571/2385,
  5403. bottom: 75/2648
  5404. }
  5405. },
  5406. paw: {
  5407. height: math.unit(1.32, "feet"),
  5408. name: "Paw",
  5409. image: {
  5410. source: "./media/characters/alicia/paw.svg"
  5411. }
  5412. },
  5413. feral: {
  5414. height: math.unit(1.69, "meters"),
  5415. weight: math.unit(73, "kg"),
  5416. name: "Feral",
  5417. image: {
  5418. source: "./media/characters/alicia/feral.svg",
  5419. extra: 2123/1715,
  5420. bottom: 222/2349
  5421. }
  5422. },
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(2.35, "meters")
  5428. },
  5429. {
  5430. name: "Macro",
  5431. height: math.unit(60, "meters"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Megamacro",
  5436. height: math.unit(10000, "kilometers")
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(7, "feet"),
  5445. weight: math.unit(250, "lbs"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/archy/front.svg"
  5449. }
  5450. }
  5451. },
  5452. [
  5453. {
  5454. name: "Micro",
  5455. height: math.unit(1, "inch")
  5456. },
  5457. {
  5458. name: "Shorty",
  5459. height: math.unit(5, "feet")
  5460. },
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(7, "feet")
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(600, "meters"),
  5468. default: true
  5469. },
  5470. {
  5471. name: "Megamacro",
  5472. height: math.unit(1, "mile")
  5473. },
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5478. {
  5479. front: {
  5480. height: math.unit(1.65, "meters"),
  5481. weight: math.unit(74, "kg"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/berri/front.svg",
  5485. extra: 857/837,
  5486. bottom: 18/877
  5487. }
  5488. },
  5489. bum: {
  5490. height: math.unit(1.46, "feet"),
  5491. name: "Bum",
  5492. image: {
  5493. source: "./media/characters/berri/bum.svg"
  5494. }
  5495. },
  5496. mouth: {
  5497. height: math.unit(0.44, "feet"),
  5498. name: "Mouth",
  5499. image: {
  5500. source: "./media/characters/berri/mouth.svg"
  5501. }
  5502. },
  5503. paw: {
  5504. height: math.unit(0.826, "feet"),
  5505. name: "Paw",
  5506. image: {
  5507. source: "./media/characters/berri/paw.svg"
  5508. }
  5509. },
  5510. },
  5511. [
  5512. {
  5513. name: "Normal",
  5514. height: math.unit(1.65, "meters")
  5515. },
  5516. {
  5517. name: "Macro",
  5518. height: math.unit(60, "m"),
  5519. default: true
  5520. },
  5521. {
  5522. name: "Megamacro",
  5523. height: math.unit(9.213, "km")
  5524. },
  5525. {
  5526. name: "Planet Eater",
  5527. height: math.unit(489, "megameters")
  5528. },
  5529. {
  5530. name: "Teramacro",
  5531. height: math.unit(2471635000000, "meters")
  5532. },
  5533. {
  5534. name: "Examacro",
  5535. height: math.unit(8.0624e+26, "meters")
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(1.72, "meters"),
  5544. weight: math.unit(68, "kg"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/lexi/front.svg"
  5548. }
  5549. }
  5550. },
  5551. [
  5552. {
  5553. name: "Very Smol",
  5554. height: math.unit(10, "mm")
  5555. },
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(6.8, "cm"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(1.72, "m")
  5564. }
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5569. {
  5570. front: {
  5571. height: math.unit(1.69, "meters"),
  5572. weight: math.unit(68, "kg"),
  5573. name: "Front",
  5574. image: {
  5575. source: "./media/characters/martin/front.svg",
  5576. extra: 596 / 581
  5577. }
  5578. }
  5579. },
  5580. [
  5581. {
  5582. name: "Micro",
  5583. height: math.unit(6.85, "cm"),
  5584. default: true
  5585. },
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(1.69, "m")
  5589. }
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  5594. {
  5595. front: {
  5596. height: math.unit(1.69, "meters"),
  5597. weight: math.unit(68, "kg"),
  5598. name: "Front",
  5599. image: {
  5600. source: "./media/characters/juno/front.svg"
  5601. }
  5602. }
  5603. },
  5604. [
  5605. {
  5606. name: "Micro",
  5607. height: math.unit(7, "cm")
  5608. },
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(1.89, "m")
  5612. },
  5613. {
  5614. name: "Macro",
  5615. height: math.unit(353, "meters"),
  5616. default: true
  5617. }
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  5622. {
  5623. front: {
  5624. height: math.unit(1.93, "meters"),
  5625. weight: math.unit(83, "kg"),
  5626. name: "Front",
  5627. image: {
  5628. source: "./media/characters/samantha/front.svg"
  5629. }
  5630. },
  5631. frontClothed: {
  5632. height: math.unit(1.93, "meters"),
  5633. weight: math.unit(83, "kg"),
  5634. name: "Front (Clothed)",
  5635. image: {
  5636. source: "./media/characters/samantha/front-clothed.svg"
  5637. }
  5638. },
  5639. back: {
  5640. height: math.unit(1.93, "meters"),
  5641. weight: math.unit(83, "kg"),
  5642. name: "Back",
  5643. image: {
  5644. source: "./media/characters/samantha/back.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(1.93, "m")
  5652. },
  5653. {
  5654. name: "Macro",
  5655. height: math.unit(74, "meters"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Macro+",
  5660. height: math.unit(223, "meters"),
  5661. },
  5662. {
  5663. name: "Megamacro",
  5664. height: math.unit(8381, "meters"),
  5665. },
  5666. {
  5667. name: "Megamacro+",
  5668. height: math.unit(12000, "kilometers")
  5669. },
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5674. {
  5675. front: {
  5676. height: math.unit(1.92, "meters"),
  5677. weight: math.unit(80, "kg"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/dr-clay/front.svg"
  5681. }
  5682. },
  5683. frontClothed: {
  5684. height: math.unit(1.92, "meters"),
  5685. weight: math.unit(80, "kg"),
  5686. name: "Front (Clothed)",
  5687. image: {
  5688. source: "./media/characters/dr-clay/front-clothed.svg"
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(1.92, "m")
  5696. },
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(214, "meters"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "Macro+",
  5704. height: math.unit(12.237, "meters"),
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(557, "megameters"),
  5709. },
  5710. {
  5711. name: "Unimaginable",
  5712. height: math.unit(120e9, "lightyears")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(2, "meters"),
  5721. weight: math.unit(80, "kg"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5725. }
  5726. }
  5727. },
  5728. [
  5729. {
  5730. name: "Teramacro",
  5731. height: math.unit(500000, "lightyears"),
  5732. default: true
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(2, "meters"),
  5741. weight: math.unit(150, "kg"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/vemus/front.svg",
  5745. extra: 2384 / 2084,
  5746. bottom: 0.0123
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(3.75, "meters"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Big",
  5758. height: math.unit(8, "meters")
  5759. },
  5760. {
  5761. name: "Macro",
  5762. height: math.unit(100, "meters")
  5763. },
  5764. {
  5765. name: "Macro+",
  5766. height: math.unit(1500, "meters")
  5767. },
  5768. {
  5769. name: "Stellar",
  5770. height: math.unit(14e8, "meters")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(2, "meters"),
  5779. weight: math.unit(70, "kg"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/beherit/front.svg",
  5783. extra: 1408 / 1242
  5784. }
  5785. }
  5786. },
  5787. [
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(6, "feet")
  5791. },
  5792. {
  5793. name: "Lorg",
  5794. height: math.unit(25, "feet"),
  5795. default: true
  5796. },
  5797. {
  5798. name: "Lorger",
  5799. height: math.unit(75, "feet")
  5800. },
  5801. {
  5802. name: "Macro",
  5803. height: math.unit(200, "meters")
  5804. },
  5805. ]
  5806. ))
  5807. characterMakers.push(() => makeCharacter(
  5808. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5809. {
  5810. front: {
  5811. height: math.unit(2, "meters"),
  5812. weight: math.unit(150, "kg"),
  5813. name: "Front",
  5814. image: {
  5815. source: "./media/characters/everett/front.svg",
  5816. extra: 2038 / 1737,
  5817. bottom: 0.03
  5818. }
  5819. },
  5820. paw: {
  5821. height: math.unit(2 / 3.6, "meters"),
  5822. name: "Paw",
  5823. image: {
  5824. source: "./media/characters/everett/paw.svg"
  5825. }
  5826. },
  5827. },
  5828. [
  5829. {
  5830. name: "Normal",
  5831. height: math.unit(15, "feet"),
  5832. default: true
  5833. },
  5834. {
  5835. name: "Lorg",
  5836. height: math.unit(70, "feet"),
  5837. default: true
  5838. },
  5839. {
  5840. name: "Lorger",
  5841. height: math.unit(250, "feet")
  5842. },
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(500, "meters")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(2, "meters"),
  5854. weight: math.unit(86, "kg"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/rose-lion/front.svg"
  5858. }
  5859. },
  5860. bent: {
  5861. height: math.unit(2 / 1.4288, "meters"),
  5862. weight: math.unit(86, "kg"),
  5863. name: "Bent",
  5864. image: {
  5865. source: "./media/characters/rose-lion/bent.svg"
  5866. }
  5867. }
  5868. },
  5869. [
  5870. {
  5871. name: "Mini-Micro",
  5872. height: math.unit(1, "cm")
  5873. },
  5874. {
  5875. name: "Micro",
  5876. height: math.unit(3.5, "inches"),
  5877. default: true
  5878. },
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(6 + 1 / 6, "feet")
  5882. },
  5883. {
  5884. name: "Mini-Macro",
  5885. height: math.unit(9 + 10 / 12, "feet")
  5886. },
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(2, "meters"),
  5894. weight: math.unit(350, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/regal/front.svg"
  5898. }
  5899. },
  5900. back: {
  5901. height: math.unit(2, "meters"),
  5902. weight: math.unit(350, "lbs"),
  5903. name: "Back",
  5904. image: {
  5905. source: "./media/characters/regal/back.svg"
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Macro",
  5912. height: math.unit(350, "feet"),
  5913. default: true
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5919. {
  5920. front: {
  5921. height: math.unit(4 + 11 / 12, "feet"),
  5922. weight: math.unit(100, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/opal/front.svg"
  5926. }
  5927. },
  5928. frontAlt: {
  5929. height: math.unit(4 + 11 / 12, "feet"),
  5930. weight: math.unit(100, "lbs"),
  5931. name: "Front (Alt)",
  5932. image: {
  5933. source: "./media/characters/opal/front-alt.svg"
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Small",
  5940. height: math.unit(4 + 11 / 12, "feet")
  5941. },
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(20, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Macro",
  5949. height: math.unit(120, "feet")
  5950. },
  5951. {
  5952. name: "Megamacro",
  5953. height: math.unit(80, "miles")
  5954. },
  5955. {
  5956. name: "True Size",
  5957. height: math.unit(100000, "lightyears")
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(200, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/vector-wuff/front.svg"
  5970. }
  5971. }
  5972. },
  5973. [
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(2.8, "meters")
  5977. },
  5978. {
  5979. name: "Macro",
  5980. height: math.unit(450, "meters"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Megamacro",
  5985. height: math.unit(15, "kilometers")
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(256, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/dannik/front.svg"
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Macro",
  6004. height: math.unit(69.57, "meters"),
  6005. default: true
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(120, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/azura-saharah/front.svg"
  6018. }
  6019. },
  6020. back: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(120, "lbs"),
  6023. name: "Back",
  6024. image: {
  6025. source: "./media/characters/azura-saharah/back.svg"
  6026. }
  6027. },
  6028. },
  6029. [
  6030. {
  6031. name: "Macro",
  6032. height: math.unit(100, "feet"),
  6033. default: true
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6039. {
  6040. side: {
  6041. height: math.unit(5 + 4 / 12, "feet"),
  6042. weight: math.unit(163, "lbs"),
  6043. name: "Side",
  6044. image: {
  6045. source: "./media/characters/kennedy/side.svg"
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Standard Doggo",
  6052. height: math.unit(5 + 4 / 12, "feet")
  6053. },
  6054. {
  6055. name: "Big Doggo",
  6056. height: math.unit(25 + 3 / 12, "feet"),
  6057. default: true
  6058. },
  6059. ]
  6060. ))
  6061. characterMakers.push(() => makeCharacter(
  6062. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6063. {
  6064. front: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(90, "lbs"),
  6067. name: "Front",
  6068. image: {
  6069. source: "./media/characters/odi-lunar/front.svg"
  6070. }
  6071. }
  6072. },
  6073. [
  6074. {
  6075. name: "Micro",
  6076. height: math.unit(3, "inches"),
  6077. default: true
  6078. },
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5.5, "feet")
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6087. {
  6088. back: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(220, "lbs"),
  6091. name: "Back",
  6092. image: {
  6093. source: "./media/characters/mandake/back.svg"
  6094. }
  6095. }
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(7, "feet"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(78, "feet")
  6106. },
  6107. {
  6108. name: "Macro+",
  6109. height: math.unit(300, "meters")
  6110. },
  6111. {
  6112. name: "Macro++",
  6113. height: math.unit(2400, "feet")
  6114. },
  6115. {
  6116. name: "Megamacro",
  6117. height: math.unit(5167, "meters")
  6118. },
  6119. {
  6120. name: "Gigamacro",
  6121. height: math.unit(41769, "miles")
  6122. },
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(6, "feet"),
  6130. weight: math.unit(120, "lbs"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/yozey/front.svg"
  6134. }
  6135. },
  6136. frontAlt: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(120, "lbs"),
  6139. name: "Front (Alt)",
  6140. image: {
  6141. source: "./media/characters/yozey/front-alt.svg"
  6142. }
  6143. },
  6144. side: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(120, "lbs"),
  6147. name: "Side",
  6148. image: {
  6149. source: "./media/characters/yozey/side.svg"
  6150. }
  6151. },
  6152. },
  6153. [
  6154. {
  6155. name: "Micro",
  6156. height: math.unit(3, "inches"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet")
  6162. }
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(6, "feet"),
  6170. weight: math.unit(103, "lbs"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/valeska-voss/front.svg"
  6174. }
  6175. }
  6176. },
  6177. [
  6178. {
  6179. name: "Mini-Sized Sub",
  6180. height: math.unit(3.1, "inches")
  6181. },
  6182. {
  6183. name: "Mid-Sized Sub",
  6184. height: math.unit(6.2, "inches")
  6185. },
  6186. {
  6187. name: "Full-Sized Sub",
  6188. height: math.unit(9.3, "inches")
  6189. },
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(5 + 2 / 12, "foot"),
  6193. default: true
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(6, "feet"),
  6202. weight: math.unit(160, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/gene-zeta/front.svg",
  6206. bottom: 0.03,
  6207. extra: 1
  6208. }
  6209. }
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(6.25, "foot"),
  6215. default: true
  6216. },
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(6, "feet"),
  6224. weight: math.unit(350, "lbs"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/razinox/front.svg",
  6228. extra: 1686 / 1548,
  6229. bottom: 28.2/1868
  6230. }
  6231. },
  6232. back: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(350, "lbs"),
  6235. name: "Back",
  6236. image: {
  6237. source: "./media/characters/razinox/back.svg",
  6238. extra: 1660 / 1590,
  6239. bottom: 15/1665
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(10 + 8 / 12, "foot")
  6247. },
  6248. {
  6249. name: "Minimacro",
  6250. height: math.unit(15, "foot")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(60, "foot"),
  6255. default: true
  6256. },
  6257. {
  6258. name: "Megamacro",
  6259. height: math.unit(5, "miles")
  6260. },
  6261. {
  6262. name: "Gigamacro",
  6263. height: math.unit(6000, "miles")
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6269. {
  6270. front: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(150, "lbs"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/cobalt/front.svg"
  6276. }
  6277. }
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(8 + 1 / 12, "foot")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(111, "foot"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Supracosmic",
  6291. height: math.unit(1e42, "feet")
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(140, "lbs"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/amanda/front.svg"
  6304. }
  6305. }
  6306. },
  6307. [
  6308. {
  6309. name: "Micro",
  6310. height: math.unit(5, "inches"),
  6311. default: true
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(5.59, "feet"),
  6320. weight: math.unit(250, "lbs"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/teal/front.svg"
  6324. }
  6325. },
  6326. frontAlt: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(250, "lbs"),
  6329. name: "Front (Alt)",
  6330. image: {
  6331. source: "./media/characters/teal/front-alt.svg",
  6332. bottom: 0.04,
  6333. extra: 1
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(12, "feet"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(300, "feet")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6351. {
  6352. frontCat: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(180, "lbs"),
  6355. name: "Front (Cat)",
  6356. image: {
  6357. source: "./media/characters/ravin-amulet/front-cat.svg"
  6358. }
  6359. },
  6360. frontCatAlt: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(180, "lbs"),
  6363. name: "Front (Alt, Cat)",
  6364. image: {
  6365. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6366. }
  6367. },
  6368. frontWerewolf: {
  6369. height: math.unit(6 * 1.2, "feet"),
  6370. weight: math.unit(225, "lbs"),
  6371. name: "Front (Werewolf)",
  6372. image: {
  6373. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6374. }
  6375. },
  6376. backWerewolf: {
  6377. height: math.unit(6 * 1.2, "feet"),
  6378. weight: math.unit(225, "lbs"),
  6379. name: "Back (Werewolf)",
  6380. image: {
  6381. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Nano",
  6388. height: math.unit(1, "micrometer")
  6389. },
  6390. {
  6391. name: "Micro",
  6392. height: math.unit(1, "inch")
  6393. },
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(6, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(60, "feet")
  6402. }
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(6, "feet"),
  6410. weight: math.unit(165, "lbs"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/fluoresce/front.svg"
  6414. }
  6415. }
  6416. },
  6417. [
  6418. {
  6419. name: "Micro",
  6420. height: math.unit(6, "cm")
  6421. },
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(5 + 7 / 12, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(56, "feet")
  6430. },
  6431. {
  6432. name: "Megamacro",
  6433. height: math.unit(1.9, "miles")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(9 + 6 / 12, "feet"),
  6442. weight: math.unit(523, "lbs"),
  6443. name: "Side",
  6444. image: {
  6445. source: "./media/characters/aurora/side.svg"
  6446. }
  6447. }
  6448. },
  6449. [
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(9 + 6 / 12, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(96, "feet"),
  6457. default: true
  6458. },
  6459. {
  6460. name: "Macro+",
  6461. height: math.unit(243, "feet")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(194, "cm"),
  6470. weight: math.unit(90, "kg"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/ranek/front.svg"
  6474. }
  6475. },
  6476. side: {
  6477. height: math.unit(194, "cm"),
  6478. weight: math.unit(90, "kg"),
  6479. name: "Side",
  6480. image: {
  6481. source: "./media/characters/ranek/side.svg"
  6482. }
  6483. },
  6484. back: {
  6485. height: math.unit(194, "cm"),
  6486. weight: math.unit(90, "kg"),
  6487. name: "Back",
  6488. image: {
  6489. source: "./media/characters/ranek/back.svg"
  6490. }
  6491. },
  6492. feral: {
  6493. height: math.unit(30, "cm"),
  6494. weight: math.unit(1.6, "lbs"),
  6495. name: "Feral",
  6496. image: {
  6497. source: "./media/characters/ranek/feral.svg"
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(194, "cm"),
  6505. default: true
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(100, "meters")
  6510. },
  6511. ]
  6512. ))
  6513. characterMakers.push(() => makeCharacter(
  6514. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6515. {
  6516. front: {
  6517. height: math.unit(5 + 6 / 12, "feet"),
  6518. weight: math.unit(153, "lbs"),
  6519. name: "Front",
  6520. image: {
  6521. source: "./media/characters/andrew-cooper/front.svg"
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Nano",
  6528. height: math.unit(1, "mm")
  6529. },
  6530. {
  6531. name: "Micro",
  6532. height: math.unit(2, "inches")
  6533. },
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(5 + 6 / 12, "feet"),
  6537. default: true
  6538. }
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6543. {
  6544. front: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(180, "lbs"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/akane-sato/front.svg",
  6550. extra: 1219 / 1140
  6551. }
  6552. },
  6553. back: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(180, "lbs"),
  6556. name: "Back",
  6557. image: {
  6558. source: "./media/characters/akane-sato/back.svg",
  6559. extra: 1219 / 1170
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(2.5, "meters")
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(250, "meters"),
  6571. default: true
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(25, "km")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(65, "kg"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/rook/front.svg",
  6588. extra: 960/950
  6589. }
  6590. }
  6591. },
  6592. [
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(8.8, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(88, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Megamacro",
  6604. height: math.unit(8, "miles")
  6605. },
  6606. ]
  6607. ))
  6608. characterMakers.push(() => makeCharacter(
  6609. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6610. {
  6611. front: {
  6612. height: math.unit(12 + 2 / 12, "feet"),
  6613. weight: math.unit(808, "lbs"),
  6614. name: "Front",
  6615. image: {
  6616. source: "./media/characters/prodigy/front.svg"
  6617. }
  6618. }
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(12 + 2 / 12, "feet"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(143, "feet")
  6629. },
  6630. {
  6631. name: "Macro+",
  6632. height: math.unit(400, "feet")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(225, "lbs"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/daniel/front.svg"
  6645. }
  6646. },
  6647. leaning: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(225, "lbs"),
  6650. name: "Leaning",
  6651. image: {
  6652. source: "./media/characters/daniel/leaning.svg"
  6653. }
  6654. },
  6655. },
  6656. [
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(1000, "feet"),
  6660. default: true
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(88, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/chiros/front.svg",
  6673. extra: 306 / 226
  6674. }
  6675. },
  6676. side: {
  6677. height: math.unit(6, "feet"),
  6678. weight: math.unit(88, "lbs"),
  6679. name: "Side",
  6680. image: {
  6681. source: "./media/characters/chiros/side.svg",
  6682. extra: 306 / 226
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(6, "cm"),
  6690. default: true
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(100, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/selka/front.svg",
  6703. extra: 947 / 887
  6704. }
  6705. }
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(5, "cm"),
  6711. default: true
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(8 + 3 / 12, "feet"),
  6720. weight: math.unit(424, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/verin/front.svg",
  6724. extra: 1845 / 1550
  6725. }
  6726. },
  6727. frontArmored: {
  6728. height: math.unit(8 + 3 / 12, "feet"),
  6729. weight: math.unit(424, "lbs"),
  6730. name: "Front (Armored)",
  6731. image: {
  6732. source: "./media/characters/verin/front-armor.svg",
  6733. extra: 1845 / 1550,
  6734. bottom: 0.01
  6735. }
  6736. },
  6737. back: {
  6738. height: math.unit(8 + 3 / 12, "feet"),
  6739. weight: math.unit(424, "lbs"),
  6740. name: "Back",
  6741. image: {
  6742. source: "./media/characters/verin/back.svg",
  6743. bottom: 0.1,
  6744. extra: 1
  6745. }
  6746. },
  6747. foot: {
  6748. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6749. name: "Foot",
  6750. image: {
  6751. source: "./media/characters/verin/foot.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(8 + 3 / 12, "feet")
  6759. },
  6760. {
  6761. name: "Minimacro",
  6762. height: math.unit(21, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(626, "feet")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(2.718, "meters"),
  6776. weight: math.unit(150, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/sovrim-terraquian/front.svg"
  6780. }
  6781. },
  6782. back: {
  6783. height: math.unit(2.718, "meters"),
  6784. weight: math.unit(150, "lbs"),
  6785. name: "Back",
  6786. image: {
  6787. source: "./media/characters/sovrim-terraquian/back.svg"
  6788. }
  6789. }
  6790. },
  6791. [
  6792. {
  6793. name: "Micro",
  6794. height: math.unit(2, "inches")
  6795. },
  6796. {
  6797. name: "Small",
  6798. height: math.unit(1, "meter")
  6799. },
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(Math.E, "meters"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(20, "meters")
  6808. },
  6809. {
  6810. name: "Macro+",
  6811. height: math.unit(400, "meters")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(7, "feet"),
  6820. weight: math.unit(489, "lbs"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/reece-silvermane/front.svg",
  6824. bottom: 0.02,
  6825. extra: 1
  6826. }
  6827. },
  6828. },
  6829. [
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(1.5, "miles"),
  6833. default: true
  6834. },
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6839. {
  6840. front: {
  6841. height: math.unit(6, "feet"),
  6842. weight: math.unit(78, "kg"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/kane/front.svg",
  6846. extra: 978 / 899
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Normal",
  6853. height: math.unit(2.1, "m"),
  6854. },
  6855. {
  6856. name: "Macro",
  6857. height: math.unit(1, "km"),
  6858. default: true
  6859. },
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6864. {
  6865. front: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(200, "kg"),
  6868. name: "Front",
  6869. image: {
  6870. source: "./media/characters/tegon/front.svg",
  6871. bottom: 0.01,
  6872. extra: 1
  6873. }
  6874. },
  6875. },
  6876. [
  6877. {
  6878. name: "Micro",
  6879. height: math.unit(1, "inch")
  6880. },
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(6 + 3 / 12, "feet"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(300, "feet")
  6889. },
  6890. {
  6891. name: "Megamacro",
  6892. height: math.unit(69, "miles")
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6898. {
  6899. side: {
  6900. height: math.unit(6, "feet"),
  6901. weight: math.unit(2304, "lbs"),
  6902. name: "Side",
  6903. image: {
  6904. source: "./media/characters/arcturax/side.svg",
  6905. extra: 790 / 376,
  6906. bottom: 0.01
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Micro",
  6913. height: math.unit(2, "inch")
  6914. },
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(6, "feet")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(39, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(7, "miles")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(50, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/sentri/front.svg",
  6939. extra: 1750 / 1570,
  6940. bottom: 0.025
  6941. }
  6942. },
  6943. frontAlt: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(50, "lbs"),
  6946. name: "Front (Alt)",
  6947. image: {
  6948. source: "./media/characters/sentri/front-alt.svg",
  6949. extra: 1750 / 1570,
  6950. bottom: 0.025
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(15, "feet"),
  6958. default: true
  6959. },
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(2500, "feet")
  6963. }
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(5 + 8 / 12, "feet"),
  6971. weight: math.unit(130, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/corvin/front.svg",
  6975. extra: 1803 / 1629
  6976. }
  6977. },
  6978. frontShirt: {
  6979. height: math.unit(5 + 8 / 12, "feet"),
  6980. weight: math.unit(130, "lbs"),
  6981. name: "Front (Shirt)",
  6982. image: {
  6983. source: "./media/characters/corvin/front-shirt.svg",
  6984. extra: 1803 / 1629
  6985. }
  6986. },
  6987. frontPoncho: {
  6988. height: math.unit(5 + 8 / 12, "feet"),
  6989. weight: math.unit(130, "lbs"),
  6990. name: "Front (Poncho)",
  6991. image: {
  6992. source: "./media/characters/corvin/front-poncho.svg",
  6993. extra: 1803 / 1629
  6994. }
  6995. },
  6996. side: {
  6997. height: math.unit(5 + 8 / 12, "feet"),
  6998. weight: math.unit(130, "lbs"),
  6999. name: "Side",
  7000. image: {
  7001. source: "./media/characters/corvin/side.svg",
  7002. extra: 1012 / 945
  7003. }
  7004. },
  7005. back: {
  7006. height: math.unit(5 + 8 / 12, "feet"),
  7007. weight: math.unit(130, "lbs"),
  7008. name: "Back",
  7009. image: {
  7010. source: "./media/characters/corvin/back.svg",
  7011. extra: 1803 / 1629
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(3, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 8 / 12, "feet")
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(300, "feet"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Megamacro",
  7031. height: math.unit(500, "miles")
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(135, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/q/front.svg",
  7044. extra: 854 / 752,
  7045. bottom: 0.005
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(130, "lbs"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/q/back.svg",
  7054. extra: 854 / 752
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Macro",
  7061. height: math.unit(90, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Extra Macro",
  7066. height: math.unit(300, "feet"),
  7067. },
  7068. {
  7069. name: "BIG WALF",
  7070. height: math.unit(750, "feet"),
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(6, "feet"),
  7079. weight: math.unit(150, "lbs"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/carley/front.svg",
  7083. extra: 3927 / 3540,
  7084. bottom: 0.03
  7085. }
  7086. }
  7087. },
  7088. [
  7089. {
  7090. name: "Normal",
  7091. height: math.unit(6 + 3 / 12, "feet")
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(185, "feet"),
  7096. default: true
  7097. },
  7098. {
  7099. name: "Megamacro",
  7100. height: math.unit(8, "miles"),
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(3, "feet"),
  7109. weight: math.unit(28, "lbs"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/citrine/front.svg"
  7113. }
  7114. }
  7115. },
  7116. [
  7117. {
  7118. name: "Normal",
  7119. height: math.unit(3, "feet"),
  7120. default: true
  7121. }
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7126. {
  7127. front: {
  7128. height: math.unit(14, "feet"),
  7129. weight: math.unit(1450, "kg"),
  7130. capacity: math.unit(15, "people"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/aura-starwind/front.svg",
  7134. extra: 1455 / 1335
  7135. }
  7136. },
  7137. side: {
  7138. height: math.unit(14, "feet"),
  7139. weight: math.unit(1450, "kg"),
  7140. capacity: math.unit(15, "people"),
  7141. name: "Side",
  7142. image: {
  7143. source: "./media/characters/aura-starwind/side.svg",
  7144. extra: 1654 / 1497
  7145. }
  7146. },
  7147. taur: {
  7148. height: math.unit(18, "feet"),
  7149. weight: math.unit(5500, "kg"),
  7150. capacity: math.unit(50, "people"),
  7151. name: "Taur",
  7152. image: {
  7153. source: "./media/characters/aura-starwind/taur.svg",
  7154. extra: 1760 / 1650
  7155. }
  7156. },
  7157. feral: {
  7158. height: math.unit(46, "feet"),
  7159. weight: math.unit(25000, "kg"),
  7160. capacity: math.unit(120, "people"),
  7161. name: "Feral",
  7162. image: {
  7163. source: "./media/characters/aura-starwind/feral.svg"
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(14, "feet"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Macro",
  7175. height: math.unit(50, "meters")
  7176. },
  7177. {
  7178. name: "Megamacro",
  7179. height: math.unit(5000, "meters")
  7180. },
  7181. {
  7182. name: "Gigamacro",
  7183. height: math.unit(100000, "kilometers")
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(2 + 7 / 12, "feet"),
  7192. weight: math.unit(32, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/rivet/front.svg",
  7196. extra: 1716 / 1658,
  7197. bottom: 0.03
  7198. }
  7199. },
  7200. foot: {
  7201. height: math.unit(0.551, "feet"),
  7202. name: "Rivet's Foot",
  7203. image: {
  7204. source: "./media/characters/rivet/foot.svg"
  7205. },
  7206. rename: true
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Micro",
  7212. height: math.unit(1.5, "inches"),
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(2 + 7 / 12, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(85, "feet")
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(2.2, "km")
  7226. }
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(5 + 9 / 12, "feet"),
  7234. weight: math.unit(150, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/coffee/front.svg",
  7238. extra: 3666 / 3032,
  7239. bottom: 0.04
  7240. }
  7241. },
  7242. foot: {
  7243. height: math.unit(1.29, "feet"),
  7244. name: "Foot",
  7245. image: {
  7246. source: "./media/characters/coffee/foot.svg"
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Micro",
  7253. height: math.unit(2, "inches"),
  7254. },
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(5 + 9 / 12, "feet"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(800, "feet")
  7263. },
  7264. {
  7265. name: "Megamacro",
  7266. height: math.unit(25, "miles")
  7267. }
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(200, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/chari-gal/front.svg",
  7279. extra: 1568 / 1385,
  7280. bottom: 0.047
  7281. }
  7282. },
  7283. gigantamax: {
  7284. height: math.unit(6 * 16, "feet"),
  7285. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7286. name: "Gigantamax",
  7287. image: {
  7288. source: "./media/characters/chari-gal/gigantamax.svg",
  7289. extra: 1124 / 888,
  7290. bottom: 0.03
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(5 + 7 / 12, "feet")
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(200, "feet"),
  7302. default: true
  7303. }
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(150, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/nova/front.svg",
  7315. extra: 5000 / 4722,
  7316. bottom: 0.02
  7317. }
  7318. }
  7319. },
  7320. [
  7321. {
  7322. name: "Micro-",
  7323. height: math.unit(0.8, "inches")
  7324. },
  7325. {
  7326. name: "Micro",
  7327. height: math.unit(2, "inches"),
  7328. default: true
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(3 + 1 / 12, "feet"),
  7337. weight: math.unit(21.7, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/argent/front.svg",
  7341. extra: 1565 / 1416,
  7342. bottom: 0.01
  7343. }
  7344. }
  7345. },
  7346. [
  7347. {
  7348. name: "Micro",
  7349. height: math.unit(2, "inches")
  7350. },
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(3 + 1 / 12, "feet"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(120, "feet")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7364. {
  7365. lamp: {
  7366. height: math.unit(7 * 1559 / 989, "feet"),
  7367. name: "Magic Lamp",
  7368. image: {
  7369. source: "./media/characters/mira-al-cul/lamp.svg",
  7370. extra: 1617 / 1559
  7371. }
  7372. },
  7373. front: {
  7374. height: math.unit(7, "feet"),
  7375. name: "Front",
  7376. image: {
  7377. source: "./media/characters/mira-al-cul/front.svg",
  7378. extra: 1044 / 990
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Heavily Restricted",
  7385. height: math.unit(7 * 1559 / 989, "feet")
  7386. },
  7387. {
  7388. name: "Freshly Freed",
  7389. height: math.unit(50 * 1559 / 989, "feet")
  7390. },
  7391. {
  7392. name: "World Encompassing",
  7393. height: math.unit(10000 * 1559 / 989, "miles")
  7394. },
  7395. {
  7396. name: "Galactic",
  7397. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7398. },
  7399. {
  7400. name: "Palmed Universe",
  7401. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Multiversal Matriarch",
  7406. height: math.unit(8.87e10, "yottameters")
  7407. },
  7408. {
  7409. name: "Void Mother",
  7410. height: math.unit(3.14e110, "yottaparsecs")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7416. {
  7417. front: {
  7418. height: math.unit(17 + 1 / 12, "feet"),
  7419. weight: math.unit(476.2 * 5, "lbs"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/kuro-shi-uchū/front.svg",
  7423. extra: 2329 / 1835,
  7424. bottom: 0.02
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Micro",
  7431. height: math.unit(2, "inches")
  7432. },
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(12, "meters")
  7436. },
  7437. {
  7438. name: "Planetary",
  7439. height: math.unit(0.00929, "AU"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Universal",
  7444. height: math.unit(20, "gigaparsecs")
  7445. },
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(5 + 2 / 12, "feet"),
  7453. weight: math.unit(120, "lbs"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/katherine/front.svg",
  7457. extra: 2075 / 1969
  7458. }
  7459. },
  7460. dress: {
  7461. height: math.unit(5 + 2 / 12, "feet"),
  7462. weight: math.unit(120, "lbs"),
  7463. name: "Dress",
  7464. image: {
  7465. source: "./media/characters/katherine/dress.svg",
  7466. extra: 2258 / 2064
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(1, "inches"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(5 + 2 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(100, "meters")
  7483. },
  7484. {
  7485. name: "Megamacro",
  7486. height: math.unit(80, "miles")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(7 + 8 / 12, "feet"),
  7495. weight: math.unit(250, "lbs"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/yevis/front.svg",
  7499. extra: 1938 / 1755
  7500. }
  7501. }
  7502. },
  7503. [
  7504. {
  7505. name: "Mortal",
  7506. height: math.unit(7 + 8 / 12, "feet")
  7507. },
  7508. {
  7509. name: "Battle",
  7510. height: math.unit(25 + 11 / 12, "feet")
  7511. },
  7512. {
  7513. name: "Wrath",
  7514. height: math.unit(1654 + 11 / 12, "feet")
  7515. },
  7516. {
  7517. name: "Planet Destroyer",
  7518. height: math.unit(12000, "miles")
  7519. },
  7520. {
  7521. name: "Galaxy Conqueror",
  7522. height: math.unit(1.45, "zettameters"),
  7523. default: true
  7524. },
  7525. {
  7526. name: "Universal War",
  7527. height: math.unit(184, "gigaparsecs")
  7528. },
  7529. {
  7530. name: "Eternity War",
  7531. height: math.unit(1.98e55, "yottaparsecs")
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(5 + 8 / 12, "feet"),
  7540. weight: math.unit(63, "kg"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/xavier/front.svg",
  7544. extra: 944 / 883
  7545. }
  7546. },
  7547. frontStretch: {
  7548. height: math.unit(5 + 8 / 12, "feet"),
  7549. weight: math.unit(63, "kg"),
  7550. name: "Stretching",
  7551. image: {
  7552. source: "./media/characters/xavier/front-stretch.svg",
  7553. extra: 962 / 820
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 8 / 12, "feet")
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(100, "meters"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "McLargeHuge",
  7569. height: math.unit(10, "miles")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(5 + 5 / 12, "feet"),
  7578. weight: math.unit(150, "lb"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/joshii/front.svg"
  7582. }
  7583. },
  7584. foot: {
  7585. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7586. name: "Foot",
  7587. image: {
  7588. source: "./media/characters/joshii/foot.svg"
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Micro",
  7595. height: math.unit(2, "inches")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(5 + 5 / 12, "feet"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(785, "feet")
  7605. },
  7606. {
  7607. name: "Megamacro",
  7608. height: math.unit(24.5, "miles")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Goddess Elizabeth", species: ["wolf"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(6, "feet"),
  7617. weight: math.unit(150, "lb"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/goddess-elizabeth/front.svg",
  7621. extra: 1800 / 1525,
  7622. bottom: 0.005
  7623. }
  7624. },
  7625. foot: {
  7626. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7627. name: "Foot",
  7628. image: {
  7629. source: "./media/characters/goddess-elizabeth/foot.svg"
  7630. }
  7631. },
  7632. mouth: {
  7633. height: math.unit(6, "feet"),
  7634. name: "Mouth",
  7635. image: {
  7636. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Micro",
  7643. height: math.unit(12, "feet")
  7644. },
  7645. {
  7646. name: "Normal",
  7647. height: math.unit(80, "miles"),
  7648. default: true
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(15000, "parsecs")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(5 + 9 / 12, "feet"),
  7661. weight: math.unit(144, "lb"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/kara/front.svg"
  7665. }
  7666. },
  7667. feet: {
  7668. height: math.unit(6 / 6.765, "feet"),
  7669. name: "Kara's Feet",
  7670. rename: true,
  7671. image: {
  7672. source: "./media/characters/kara/feet.svg"
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(5 + 9 / 12, "feet")
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(174, "feet"),
  7684. default: true
  7685. },
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(18, "feet"),
  7693. weight: math.unit(4050, "lb"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/tyrone/front.svg",
  7697. extra: 2520 / 2402,
  7698. bottom: 0.025
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(18, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(300, "feet")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(7 + 8 / 12, "feet"),
  7719. weight: math.unit(120, "lb"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/danny/front.svg",
  7723. extra: 1490 / 1350
  7724. }
  7725. },
  7726. back: {
  7727. height: math.unit(7 + 8 / 12, "feet"),
  7728. weight: math.unit(120, "lb"),
  7729. name: "Back",
  7730. image: {
  7731. source: "./media/characters/danny/back.svg",
  7732. extra: 1490 / 1350
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(7 + 8 / 12, "feet"),
  7740. default: true
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(3.5, "inches"),
  7749. weight: math.unit(19, "grams"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/mallow/front.svg",
  7753. extra: 471 / 431
  7754. }
  7755. },
  7756. back: {
  7757. height: math.unit(3.5, "inches"),
  7758. weight: math.unit(19, "grams"),
  7759. name: "Back",
  7760. image: {
  7761. source: "./media/characters/mallow/back.svg",
  7762. extra: 471 / 431
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Normal",
  7769. height: math.unit(3.5, "inches"),
  7770. default: true
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(9, "feet"),
  7779. weight: math.unit(230, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/starry-aqua/front.svg"
  7783. }
  7784. },
  7785. back: {
  7786. height: math.unit(9, "feet"),
  7787. weight: math.unit(230, "kg"),
  7788. name: "Back",
  7789. image: {
  7790. source: "./media/characters/starry-aqua/back.svg"
  7791. }
  7792. },
  7793. hand: {
  7794. height: math.unit(9 * 0.1168, "feet"),
  7795. name: "Hand",
  7796. image: {
  7797. source: "./media/characters/starry-aqua/hand.svg"
  7798. }
  7799. },
  7800. foot: {
  7801. height: math.unit(9 * 0.18, "feet"),
  7802. name: "Foot",
  7803. image: {
  7804. source: "./media/characters/starry-aqua/foot.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(3, "inches")
  7812. },
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(9, "feet")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(300, "feet"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(3200, "feet")
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(230, "lb"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/luka/front.svg",
  7837. extra: 1,
  7838. bottom: 0.025
  7839. }
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(12 + 8 / 12, "feet"),
  7846. default: true
  7847. },
  7848. {
  7849. name: "Minimacro",
  7850. height: math.unit(20, "feet")
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(250, "feet")
  7855. },
  7856. {
  7857. name: "Megamacro",
  7858. height: math.unit(5, "miles")
  7859. },
  7860. {
  7861. name: "Gigamacro",
  7862. height: math.unit(8000, "miles")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(150, "lb"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/natalie-nightring/front.svg",
  7875. extra: 1,
  7876. bottom: 0.06
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Uh Oh",
  7883. height: math.unit(0.1, "mm")
  7884. },
  7885. {
  7886. name: "Small",
  7887. height: math.unit(3, "inches")
  7888. },
  7889. {
  7890. name: "Human Scale",
  7891. height: math.unit(6, "feet")
  7892. },
  7893. {
  7894. name: "Librarian",
  7895. height: math.unit(50, "feet"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Immense",
  7900. height: math.unit(200, "miles")
  7901. },
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7906. {
  7907. front: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(180, "lbs"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/danni-rosie/front.svg",
  7913. extra: 1260 / 1128,
  7914. bottom: 0.022
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Micro",
  7921. height: math.unit(2, "inches"),
  7922. default: true
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(5 + 9 / 12, "feet"),
  7931. weight: math.unit(220, "lb"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/samantha-kruse/front.svg",
  7935. extra: (985 / 935),
  7936. bottom: 0.03
  7937. }
  7938. },
  7939. frontUndressed: {
  7940. height: math.unit(5 + 9 / 12, "feet"),
  7941. weight: math.unit(220, "lb"),
  7942. name: "Front (Undressed)",
  7943. image: {
  7944. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7945. extra: (973 / 923),
  7946. bottom: 0.025
  7947. }
  7948. },
  7949. fat: {
  7950. height: math.unit(5 + 9 / 12, "feet"),
  7951. weight: math.unit(900, "lb"),
  7952. name: "Front (Fat)",
  7953. image: {
  7954. source: "./media/characters/samantha-kruse/fat.svg",
  7955. extra: 2688 / 2561
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(5 + 9 / 12, "feet"),
  7963. default: true
  7964. }
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7969. {
  7970. back: {
  7971. height: math.unit(5 + 4 / 12, "feet"),
  7972. weight: math.unit(4963, "lb"),
  7973. name: "Back",
  7974. image: {
  7975. source: "./media/characters/amelia-rosie/back.svg",
  7976. extra: 1113 / 963,
  7977. bottom: 0.01
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Level 0",
  7984. height: math.unit(5 + 4 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Level 1",
  7988. height: math.unit(164597, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Level 2",
  7993. height: math.unit(956243, "miles")
  7994. },
  7995. {
  7996. name: "Level 3",
  7997. height: math.unit(29421709423, "miles")
  7998. },
  7999. {
  8000. name: "Level 4",
  8001. height: math.unit(154, "lightyears")
  8002. },
  8003. {
  8004. name: "Level 5",
  8005. height: math.unit(4738272, "lightyears")
  8006. },
  8007. {
  8008. name: "Level 6",
  8009. height: math.unit(145787152896, "lightyears")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(5 + 11 / 12, "feet"),
  8018. weight: math.unit(65, "kg"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/rook-kitara/front.svg",
  8022. extra: 1347 / 1274,
  8023. bottom: 0.005
  8024. }
  8025. },
  8026. },
  8027. [
  8028. {
  8029. name: "Totally Unfair",
  8030. height: math.unit(1.8, "mm")
  8031. },
  8032. {
  8033. name: "Lap Rookie",
  8034. height: math.unit(1.4, "feet")
  8035. },
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(5 + 11 / 12, "feet"),
  8039. default: true
  8040. },
  8041. {
  8042. name: "How Did This Happen",
  8043. height: math.unit(80, "miles")
  8044. }
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8049. {
  8050. front: {
  8051. height: math.unit(7, "feet"),
  8052. weight: math.unit(300, "lb"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/pisces/front.svg",
  8056. extra: 2255 / 2115,
  8057. bottom: 0.03
  8058. }
  8059. },
  8060. back: {
  8061. height: math.unit(7, "feet"),
  8062. weight: math.unit(300, "lb"),
  8063. name: "Back",
  8064. image: {
  8065. source: "./media/characters/pisces/back.svg",
  8066. extra: 2146 / 2055,
  8067. bottom: 0.04
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(7, "feet"),
  8075. default: true
  8076. },
  8077. {
  8078. name: "Swimming Pool",
  8079. height: math.unit(12.2, "meters")
  8080. },
  8081. {
  8082. name: "Olympic Swimming Pool",
  8083. height: math.unit(56.3, "meters")
  8084. },
  8085. {
  8086. name: "Lake Superior",
  8087. height: math.unit(93900, "meters")
  8088. },
  8089. {
  8090. name: "Mediterranean Sea",
  8091. height: math.unit(644457, "meters")
  8092. },
  8093. {
  8094. name: "World's Oceans",
  8095. height: math.unit(4567491, "meters")
  8096. },
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8101. {
  8102. front: {
  8103. height: math.unit(2.3, "meters"),
  8104. weight: math.unit(120, "kg"),
  8105. name: "Front",
  8106. image: {
  8107. source: "./media/characters/zelas/front.svg"
  8108. }
  8109. },
  8110. side: {
  8111. height: math.unit(2.3, "meters"),
  8112. weight: math.unit(120, "kg"),
  8113. name: "Side",
  8114. image: {
  8115. source: "./media/characters/zelas/side.svg"
  8116. }
  8117. },
  8118. back: {
  8119. height: math.unit(2.3, "meters"),
  8120. weight: math.unit(120, "kg"),
  8121. name: "Back",
  8122. image: {
  8123. source: "./media/characters/zelas/back.svg"
  8124. }
  8125. },
  8126. foot: {
  8127. height: math.unit(1.116, "feet"),
  8128. name: "Foot",
  8129. image: {
  8130. source: "./media/characters/zelas/foot.svg"
  8131. }
  8132. },
  8133. },
  8134. [
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(2.3, "meters")
  8138. },
  8139. {
  8140. name: "Macro",
  8141. height: math.unit(30, "meters"),
  8142. default: true
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(1, "inch"),
  8151. weight: math.unit(0.21, "grams"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/talbot/front.svg",
  8155. extra: 594 / 544
  8156. }
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "Micro",
  8162. height: math.unit(1, "inch"),
  8163. default: true
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8169. {
  8170. front: {
  8171. height: math.unit(3 + 3 / 12, "feet"),
  8172. weight: math.unit(51.8, "lb"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/fliss/front.svg",
  8176. extra: 840 / 640
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Teeny Tiny",
  8183. height: math.unit(1, "mm")
  8184. },
  8185. {
  8186. name: "Small",
  8187. height: math.unit(1, "inch"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Standard Sylveon",
  8192. height: math.unit(3 + 3 / 12, "feet")
  8193. },
  8194. {
  8195. name: "Large Nuisance",
  8196. height: math.unit(33, "feet")
  8197. },
  8198. {
  8199. name: "City Filler",
  8200. height: math.unit(3000, "feet")
  8201. },
  8202. {
  8203. name: "New Horizon",
  8204. height: math.unit(6000, "miles")
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(5, "cm"),
  8213. weight: math.unit(1.94, "g"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/fleta/front.svg",
  8217. extra: 835 / 803
  8218. }
  8219. },
  8220. back: {
  8221. height: math.unit(5, "cm"),
  8222. weight: math.unit(1.94, "g"),
  8223. name: "Back",
  8224. image: {
  8225. source: "./media/characters/fleta/back.svg",
  8226. extra: 835 / 803
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Micro",
  8233. height: math.unit(5, "cm"),
  8234. default: true
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(225, "lb"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/dominic/front.svg",
  8247. extra: 1770 / 1620,
  8248. bottom: 0.025
  8249. }
  8250. },
  8251. back: {
  8252. height: math.unit(6, "feet"),
  8253. weight: math.unit(225, "lb"),
  8254. name: "Back",
  8255. image: {
  8256. source: "./media/characters/dominic/back.svg",
  8257. extra: 1745 / 1620,
  8258. bottom: 0.065
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Nano",
  8265. height: math.unit(0.1, "mm")
  8266. },
  8267. {
  8268. name: "Micro-",
  8269. height: math.unit(1, "mm")
  8270. },
  8271. {
  8272. name: "Micro",
  8273. height: math.unit(4, "inches")
  8274. },
  8275. {
  8276. name: "Normal",
  8277. height: math.unit(6 + 4 / 12, "feet"),
  8278. default: true
  8279. },
  8280. {
  8281. name: "Macro",
  8282. height: math.unit(115, "feet")
  8283. },
  8284. {
  8285. name: "Macro+",
  8286. height: math.unit(955, "feet")
  8287. },
  8288. {
  8289. name: "Megamacro",
  8290. height: math.unit(8990, "feet")
  8291. },
  8292. {
  8293. name: "Gigmacro",
  8294. height: math.unit(9310, "miles")
  8295. },
  8296. {
  8297. name: "Teramacro",
  8298. height: math.unit(1567005010, "miles")
  8299. },
  8300. {
  8301. name: "Examacro",
  8302. height: math.unit(1425, "parsecs")
  8303. },
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(400, "feet"),
  8311. weight: math.unit(44444444, "lb"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/major-colonel/front.svg"
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(400, "feet"),
  8319. weight: math.unit(44444444, "lb"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/major-colonel/back.svg"
  8323. }
  8324. },
  8325. },
  8326. [
  8327. {
  8328. name: "Macro",
  8329. height: math.unit(400, "feet"),
  8330. default: true
  8331. },
  8332. ]
  8333. ))
  8334. characterMakers.push(() => makeCharacter(
  8335. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  8336. {
  8337. front: {
  8338. height: math.unit(6, "feet"),
  8339. weight: math.unit(120, "lb"),
  8340. name: "Front",
  8341. image: {
  8342. source: "./media/characters/axel-lycan/front.svg",
  8343. extra: 1,
  8344. bottom: 0.08
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(1, "km"),
  8352. default: true
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(5 + 9 / 12, "feet"),
  8361. weight: math.unit(175, "lb"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/vanrel-hyena/front.svg",
  8365. extra: 1086 / 1010,
  8366. bottom: 0.04
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Normal",
  8373. height: math.unit(5 + 9 / 12, "feet"),
  8374. default: true
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(6, "feet"),
  8383. weight: math.unit(103, "lb"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/abbott-absol/front.svg",
  8387. extra: 2010 / 1842
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Megamicro",
  8394. height: math.unit(0.1, "mm")
  8395. },
  8396. {
  8397. name: "Micro",
  8398. height: math.unit(1, "inch")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(6, "feet"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(264, "lb"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/hector/front.svg",
  8416. extra: 2280 / 2130,
  8417. bottom: 0.07
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(12.25, "foot"),
  8425. default: true
  8426. },
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(160, "feet")
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8435. {
  8436. front: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(150, "lb"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/sal/front.svg",
  8442. extra: 1846 / 1699,
  8443. bottom: 0.04
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Megamacro",
  8450. height: math.unit(10, "miles"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8457. {
  8458. front: {
  8459. height: math.unit(3, "meters"),
  8460. weight: math.unit(450, "kg"),
  8461. name: "front",
  8462. image: {
  8463. source: "./media/characters/ranger/front.svg",
  8464. extra: 2401 / 2243,
  8465. bottom: 0.05
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(3, "meters"),
  8473. default: true
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8479. {
  8480. front: {
  8481. height: math.unit(14, "feet"),
  8482. weight: math.unit(800, "kg"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/theresa/front.svg",
  8486. extra: 3575 / 3346,
  8487. bottom: 0.03
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(14, "feet"),
  8495. default: true
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8501. {
  8502. front: {
  8503. height: math.unit(6, "feet"),
  8504. weight: math.unit(3, "kg"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/ine/front.svg",
  8508. extra: 678 / 539,
  8509. bottom: 0.023
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Normal",
  8516. height: math.unit(2.265, "feet"),
  8517. default: true
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(5, "feet"),
  8526. weight: math.unit(30, "kg"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/vial/front.svg",
  8530. extra: 1365 / 1277,
  8531. bottom: 0.04
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(5, "feet"),
  8539. default: true
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8545. {
  8546. side: {
  8547. height: math.unit(3.4, "meters"),
  8548. weight: math.unit(1000, "lb"),
  8549. name: "Side",
  8550. image: {
  8551. source: "./media/characters/rovoska/side.svg",
  8552. extra: 4403 / 1515
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Normal",
  8559. height: math.unit(3.4, "meters"),
  8560. default: true
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(8, "feet"),
  8569. weight: math.unit(315, "lb"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/gunner-rotthbauer/front.svg"
  8573. }
  8574. },
  8575. back: {
  8576. height: math.unit(8, "feet"),
  8577. weight: math.unit(315, "lb"),
  8578. name: "Back",
  8579. image: {
  8580. source: "./media/characters/gunner-rotthbauer/back.svg"
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Micro",
  8587. height: math.unit(3.5, "inches")
  8588. },
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(8, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(250, "feet")
  8597. },
  8598. {
  8599. name: "Megamacro",
  8600. height: math.unit(1, "AU")
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(5 + 5 / 12, "feet"),
  8609. weight: math.unit(140, "lb"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/allatia/front.svg",
  8613. extra: 1227 / 1180,
  8614. bottom: 0.027
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(5 + 5 / 12, "feet")
  8622. },
  8623. {
  8624. name: "Macro",
  8625. height: math.unit(250, "feet"),
  8626. default: true
  8627. },
  8628. {
  8629. name: "Megamacro",
  8630. height: math.unit(8, "miles")
  8631. }
  8632. ]
  8633. ))
  8634. characterMakers.push(() => makeCharacter(
  8635. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8636. {
  8637. front: {
  8638. height: math.unit(6, "feet"),
  8639. weight: math.unit(120, "lb"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/tene/front.svg",
  8643. extra: 1728 / 1578,
  8644. bottom: 0.022
  8645. }
  8646. },
  8647. stomping: {
  8648. height: math.unit(2.025, "meters"),
  8649. weight: math.unit(120, "lb"),
  8650. name: "Stomping",
  8651. image: {
  8652. source: "./media/characters/tene/stomping.svg",
  8653. extra: 938 / 873,
  8654. bottom: 0.01
  8655. }
  8656. },
  8657. sitting: {
  8658. height: math.unit(1, "meter"),
  8659. weight: math.unit(120, "lb"),
  8660. name: "Sitting",
  8661. image: {
  8662. source: "./media/characters/tene/sitting.svg",
  8663. extra: 437 / 415,
  8664. bottom: 0.1
  8665. }
  8666. },
  8667. feral: {
  8668. height: math.unit(3.9, "feet"),
  8669. weight: math.unit(250, "lb"),
  8670. name: "Feral",
  8671. image: {
  8672. source: "./media/characters/tene/feral.svg",
  8673. extra: 717 / 458,
  8674. bottom: 0.179
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(6, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(300, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(5, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8696. {
  8697. side: {
  8698. height: math.unit(6, "feet"),
  8699. name: "Side",
  8700. image: {
  8701. source: "./media/characters/evander/side.svg",
  8702. extra: 877 / 477
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(0.83, "meters"),
  8710. default: true
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(12, "feet"),
  8719. weight: math.unit(1000, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8723. extra: 1762 / 1611
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(12, "feet"),
  8728. weight: math.unit(1000, "lb"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8732. extra: 1762 / 1611
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Normal",
  8739. height: math.unit(12, "feet"),
  8740. default: true
  8741. },
  8742. {
  8743. name: "Kaiju",
  8744. height: math.unit(150, "feet")
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(150, "lb"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/zero-alurus/front.svg"
  8757. }
  8758. },
  8759. back: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(150, "lb"),
  8762. name: "Back",
  8763. image: {
  8764. source: "./media/characters/zero-alurus/back.svg"
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(5 + 10 / 12, "feet")
  8772. },
  8773. {
  8774. name: "Macro",
  8775. height: math.unit(60, "feet"),
  8776. default: true
  8777. },
  8778. {
  8779. name: "Macro+",
  8780. height: math.unit(450, "feet")
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(200, "lb"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/mega-shi/front.svg",
  8793. extra: 1279 / 1250,
  8794. bottom: 0.02
  8795. }
  8796. },
  8797. back: {
  8798. height: math.unit(6, "feet"),
  8799. weight: math.unit(200, "lb"),
  8800. name: "Back",
  8801. image: {
  8802. source: "./media/characters/mega-shi/back.svg",
  8803. extra: 1279 / 1250,
  8804. bottom: 0.02
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Micro",
  8811. height: math.unit(16 + 6 / 12, "feet")
  8812. },
  8813. {
  8814. name: "Third Dimension",
  8815. height: math.unit(40, "meters")
  8816. },
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(660, "feet"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Megamacro",
  8824. height: math.unit(10, "miles")
  8825. },
  8826. {
  8827. name: "Planetary Launch",
  8828. height: math.unit(500, "miles")
  8829. },
  8830. {
  8831. name: "Interstellar",
  8832. height: math.unit(1e9, "miles")
  8833. },
  8834. {
  8835. name: "Leaving the Universe",
  8836. height: math.unit(1, "gigaparsec")
  8837. },
  8838. {
  8839. name: "Travelling Universes",
  8840. height: math.unit(30e15, "parsecs")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(150, "lb"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/odyssey/front.svg",
  8853. extra: 1782 / 1582,
  8854. bottom: 0.01
  8855. }
  8856. },
  8857. side: {
  8858. height: math.unit(5.7, "feet"),
  8859. weight: math.unit(140, "lb"),
  8860. name: "Side",
  8861. image: {
  8862. source: "./media/characters/odyssey/side.svg",
  8863. extra: 6462 / 5700
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(5 + 4 / 12, "feet")
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(1, "km")
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(3000, "km")
  8879. },
  8880. {
  8881. name: "Gigamacro",
  8882. height: math.unit(1, "AU"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Omniversal",
  8887. height: math.unit(100e14, "lightyears")
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(6, "feet"),
  8896. weight: math.unit(300, "lb"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/mekuto/front.svg",
  8900. extra: 921 / 832,
  8901. bottom: 0.03
  8902. }
  8903. },
  8904. hand: {
  8905. height: math.unit(6 / 10.24, "feet"),
  8906. name: "Hand",
  8907. image: {
  8908. source: "./media/characters/mekuto/hand.svg"
  8909. }
  8910. },
  8911. foot: {
  8912. height: math.unit(6 / 5.05, "feet"),
  8913. name: "Foot",
  8914. image: {
  8915. source: "./media/characters/mekuto/foot.svg"
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Minimicro",
  8922. height: math.unit(0.2, "inches")
  8923. },
  8924. {
  8925. name: "Micro",
  8926. height: math.unit(1.5, "inches")
  8927. },
  8928. {
  8929. name: "Normal",
  8930. height: math.unit(5 + 11 / 12, "feet"),
  8931. default: true
  8932. },
  8933. {
  8934. name: "Minimacro",
  8935. height: math.unit(17 + 9 / 12, "feet")
  8936. },
  8937. {
  8938. name: "Macro",
  8939. height: math.unit(177.5, "feet")
  8940. },
  8941. {
  8942. name: "Megamacro",
  8943. height: math.unit(152, "miles")
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(6.5, "inches"),
  8952. weight: math.unit(13, "oz"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/dafydd-tomos/front.svg",
  8956. extra: 2990 / 2603,
  8957. bottom: 0.03
  8958. }
  8959. },
  8960. },
  8961. [
  8962. {
  8963. name: "Micro",
  8964. height: math.unit(6.5, "inches"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(6, "feet"),
  8974. weight: math.unit(150, "lb"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/splinter/front.svg",
  8978. extra: 2990 / 2882,
  8979. bottom: 0.04
  8980. }
  8981. },
  8982. back: {
  8983. height: math.unit(6, "feet"),
  8984. weight: math.unit(150, "lb"),
  8985. name: "Back",
  8986. image: {
  8987. source: "./media/characters/splinter/back.svg",
  8988. extra: 2990 / 2882,
  8989. bottom: 0.04
  8990. }
  8991. },
  8992. },
  8993. [
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(6, "feet")
  8997. },
  8998. {
  8999. name: "Macro",
  9000. height: math.unit(230, "meters"),
  9001. default: true
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(4 + 10 / 12, "feet"),
  9010. weight: math.unit(480, "lb"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/snow-gabumon/front.svg",
  9014. extra: 1140 / 963,
  9015. bottom: 0.058
  9016. }
  9017. },
  9018. back: {
  9019. height: math.unit(4 + 10 / 12, "feet"),
  9020. weight: math.unit(480, "lb"),
  9021. name: "Back",
  9022. image: {
  9023. source: "./media/characters/snow-gabumon/back.svg",
  9024. extra: 1115 / 962,
  9025. bottom: 0.041
  9026. }
  9027. },
  9028. frontUndresed: {
  9029. height: math.unit(4 + 10 / 12, "feet"),
  9030. weight: math.unit(480, "lb"),
  9031. name: "Front (Undressed)",
  9032. image: {
  9033. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9034. extra: 1061 / 960,
  9035. bottom: 0.045
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Micro",
  9042. height: math.unit(1, "inch")
  9043. },
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(4 + 10 / 12, "feet"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "Macro",
  9051. height: math.unit(200, "feet")
  9052. },
  9053. {
  9054. name: "Megamacro",
  9055. height: math.unit(120, "miles")
  9056. },
  9057. {
  9058. name: "Gigamacro",
  9059. height: math.unit(9800, "miles")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(1.7, "meters"),
  9068. weight: math.unit(140, "lb"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/moody/front.svg",
  9072. extra: 3226 / 3007,
  9073. bottom: 0.087
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Micro",
  9080. height: math.unit(1, "mm")
  9081. },
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(1.7, "meters"),
  9085. default: true
  9086. },
  9087. {
  9088. name: "Macro",
  9089. height: math.unit(80, "meters")
  9090. },
  9091. {
  9092. name: "Macro+",
  9093. height: math.unit(500, "meters")
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(150, "lb"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/zyas/front.svg",
  9106. extra: 1180 / 1120,
  9107. bottom: 0.045
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(10, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(500, "feet")
  9120. },
  9121. {
  9122. name: "Megamacro",
  9123. height: math.unit(5, "miles")
  9124. },
  9125. {
  9126. name: "Teramacro",
  9127. height: math.unit(150000, "miles")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(150, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/cuon/front.svg",
  9140. extra: 1390 / 1320,
  9141. bottom: 0.008
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(3, "inches")
  9149. },
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(18 + 9 / 12, "feet"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Macro",
  9157. height: math.unit(360, "feet")
  9158. },
  9159. {
  9160. name: "Megamacro",
  9161. height: math.unit(360, "miles")
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(2.4, "meters"),
  9170. weight: math.unit(70, "kg"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/nyanuxk/front.svg",
  9174. extra: 1172 / 1084,
  9175. bottom: 0.065
  9176. }
  9177. },
  9178. side: {
  9179. height: math.unit(2.4, "meters"),
  9180. weight: math.unit(70, "kg"),
  9181. name: "Side",
  9182. image: {
  9183. source: "./media/characters/nyanuxk/side.svg",
  9184. extra: 1190 / 1132,
  9185. bottom: 0.007
  9186. }
  9187. },
  9188. back: {
  9189. height: math.unit(2.4, "meters"),
  9190. weight: math.unit(70, "kg"),
  9191. name: "Back",
  9192. image: {
  9193. source: "./media/characters/nyanuxk/back.svg",
  9194. extra: 1200 / 1141,
  9195. bottom: 0.015
  9196. }
  9197. },
  9198. foot: {
  9199. height: math.unit(0.52, "meters"),
  9200. name: "Foot",
  9201. image: {
  9202. source: "./media/characters/nyanuxk/foot.svg"
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Micro",
  9209. height: math.unit(2, "cm")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(2.4, "meters"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Smaller Macro",
  9218. height: math.unit(120, "meters")
  9219. },
  9220. {
  9221. name: "Bigger Macro",
  9222. height: math.unit(1.2, "km")
  9223. },
  9224. {
  9225. name: "Megamacro",
  9226. height: math.unit(15, "kilometers")
  9227. },
  9228. {
  9229. name: "Gigamacro",
  9230. height: math.unit(2000, "km")
  9231. },
  9232. {
  9233. name: "Teramacro",
  9234. height: math.unit(500000, "km")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9240. {
  9241. side: {
  9242. height: math.unit(6, "feet"),
  9243. name: "Side",
  9244. image: {
  9245. source: "./media/characters/ailbhe/side.svg",
  9246. extra: 757 / 464,
  9247. bottom: 0.041
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Normal",
  9254. height: math.unit(1.07, "meters"),
  9255. default: true
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(6, "feet"),
  9264. weight: math.unit(120, "kg"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/zevulfius/front.svg",
  9268. extra: 965 / 903
  9269. }
  9270. },
  9271. side: {
  9272. height: math.unit(6, "feet"),
  9273. weight: math.unit(120, "kg"),
  9274. name: "Side",
  9275. image: {
  9276. source: "./media/characters/zevulfius/side.svg",
  9277. extra: 939 / 900
  9278. }
  9279. },
  9280. back: {
  9281. height: math.unit(6, "feet"),
  9282. weight: math.unit(120, "kg"),
  9283. name: "Back",
  9284. image: {
  9285. source: "./media/characters/zevulfius/back.svg",
  9286. extra: 918 / 854,
  9287. bottom: 0.005
  9288. }
  9289. },
  9290. foot: {
  9291. height: math.unit(6 / 3.72, "feet"),
  9292. name: "Foot",
  9293. image: {
  9294. source: "./media/characters/zevulfius/foot.svg"
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(750, "meters")
  9302. },
  9303. {
  9304. name: "Megamacro",
  9305. height: math.unit(20, "km"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Gigamacro",
  9310. height: math.unit(2000, "km")
  9311. },
  9312. {
  9313. name: "Teramacro",
  9314. height: math.unit(250000, "km")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(100, "feet"),
  9323. weight: math.unit(350, "kg"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/rikes/front.svg",
  9327. extra: 1565 / 1483,
  9328. bottom: 0.017
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(100, "feet"),
  9336. default: true
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9342. {
  9343. anthro: {
  9344. height: math.unit(8, "feet"),
  9345. weight: math.unit(120, "kg"),
  9346. name: "Anthro",
  9347. image: {
  9348. source: "./media/characters/adam-silver-mane/anthro.svg",
  9349. extra: 5743 / 5339,
  9350. bottom: 0.07
  9351. }
  9352. },
  9353. taur: {
  9354. height: math.unit(16, "feet"),
  9355. weight: math.unit(1500, "kg"),
  9356. name: "Taur",
  9357. image: {
  9358. source: "./media/characters/adam-silver-mane/taur.svg",
  9359. extra: 1713 / 1571,
  9360. bottom: 0.01
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(8, "feet")
  9368. },
  9369. {
  9370. name: "Minimacro",
  9371. height: math.unit(80, "feet")
  9372. },
  9373. {
  9374. name: "Macro",
  9375. height: math.unit(800, "feet"),
  9376. default: true
  9377. },
  9378. {
  9379. name: "Megamacro",
  9380. height: math.unit(8000, "feet")
  9381. },
  9382. {
  9383. name: "Gigamacro",
  9384. height: math.unit(800, "miles")
  9385. },
  9386. {
  9387. name: "Teramacro",
  9388. height: math.unit(80000, "miles")
  9389. },
  9390. {
  9391. name: "Celestial",
  9392. height: math.unit(8e6, "miles")
  9393. },
  9394. {
  9395. name: "Star Dragon",
  9396. height: math.unit(800000, "parsecs")
  9397. },
  9398. {
  9399. name: "Godly",
  9400. height: math.unit(800, "teraparsecs")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(150, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/ky'owin/front.svg",
  9413. extra: 3888 / 3068,
  9414. bottom: 0.015
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(6 + 8 / 12, "feet")
  9422. },
  9423. {
  9424. name: "Large",
  9425. height: math.unit(68, "feet")
  9426. },
  9427. {
  9428. name: "Macro",
  9429. height: math.unit(132, "feet")
  9430. },
  9431. {
  9432. name: "Macro+",
  9433. height: math.unit(340, "feet")
  9434. },
  9435. {
  9436. name: "Macro++",
  9437. height: math.unit(680, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(1, "mile")
  9443. },
  9444. {
  9445. name: "Megamacro+",
  9446. height: math.unit(10, "miles")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9452. {
  9453. front: {
  9454. height: math.unit(4, "feet"),
  9455. weight: math.unit(50, "lb"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/mal/front.svg",
  9459. extra: 785 / 724,
  9460. bottom: 0.07
  9461. }
  9462. },
  9463. },
  9464. [
  9465. {
  9466. name: "Micro",
  9467. height: math.unit(4, "inches")
  9468. },
  9469. {
  9470. name: "Normal",
  9471. height: math.unit(4, "feet"),
  9472. default: true
  9473. },
  9474. {
  9475. name: "Macro",
  9476. height: math.unit(200, "feet")
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9482. {
  9483. front: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(150, "lb"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/jordan-deware/front.svg",
  9489. extra: 1191 / 1012
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Nano",
  9496. height: math.unit(0.01, "mm")
  9497. },
  9498. {
  9499. name: "Minimicro",
  9500. height: math.unit(1, "mm")
  9501. },
  9502. {
  9503. name: "Micro",
  9504. height: math.unit(0.5, "inches")
  9505. },
  9506. {
  9507. name: "Normal",
  9508. height: math.unit(4, "feet"),
  9509. default: true
  9510. },
  9511. {
  9512. name: "Minimacro",
  9513. height: math.unit(40, "meters")
  9514. },
  9515. {
  9516. name: "Small Macro",
  9517. height: math.unit(400, "meters")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(4, "miles")
  9522. },
  9523. {
  9524. name: "Megamacro",
  9525. height: math.unit(40, "miles")
  9526. },
  9527. {
  9528. name: "Megamacro+",
  9529. height: math.unit(400, "miles")
  9530. },
  9531. {
  9532. name: "Gigamacro",
  9533. height: math.unit(400000, "miles")
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9539. {
  9540. side: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(150, "lb"),
  9543. name: "Side",
  9544. image: {
  9545. source: "./media/characters/kimiko/side.svg",
  9546. extra: 600 / 358
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(15, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(220, "feet")
  9559. },
  9560. {
  9561. name: "Macro+",
  9562. height: math.unit(1450, "feet")
  9563. },
  9564. {
  9565. name: "Megamacro",
  9566. height: math.unit(11500, "feet")
  9567. },
  9568. {
  9569. name: "Gigamacro",
  9570. height: math.unit(9500, "miles")
  9571. },
  9572. {
  9573. name: "Teramacro",
  9574. height: math.unit(2208005005, "miles")
  9575. },
  9576. {
  9577. name: "Examacro",
  9578. height: math.unit(2750, "parsecs")
  9579. },
  9580. {
  9581. name: "Zettamacro",
  9582. height: math.unit(101500, "parsecs")
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(70, "kg"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/andrew-sleepy/front.svg"
  9595. }
  9596. },
  9597. side: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(70, "kg"),
  9600. name: "Side",
  9601. image: {
  9602. source: "./media/characters/andrew-sleepy/side.svg"
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Micro",
  9609. height: math.unit(1, "mm"),
  9610. default: true
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(150, "lb"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/judio/front.svg",
  9623. extra: 1258 / 1110
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5 + 6 / 12, "feet")
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(1000, "feet"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "Megamacro",
  9639. height: math.unit(10, "miles")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(68, "kg"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/nomaxice/front.svg",
  9652. extra: 1498 / 1073,
  9653. bottom: 0.075
  9654. }
  9655. },
  9656. foot: {
  9657. height: math.unit(1.1, "feet"),
  9658. name: "Foot",
  9659. image: {
  9660. source: "./media/characters/nomaxice/foot.svg"
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Micro",
  9667. height: math.unit(8, "cm")
  9668. },
  9669. {
  9670. name: "Norm",
  9671. height: math.unit(1.82, "m")
  9672. },
  9673. {
  9674. name: "Norm+",
  9675. height: math.unit(8.8, "feet")
  9676. },
  9677. {
  9678. name: "Big",
  9679. height: math.unit(8, "meters"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Macro",
  9684. height: math.unit(18, "meters")
  9685. },
  9686. {
  9687. name: "Macro+",
  9688. height: math.unit(88, "meters")
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9694. {
  9695. front: {
  9696. height: math.unit(12, "feet"),
  9697. weight: math.unit(1.5, "tons"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/dydros/front.svg",
  9701. extra: 863 / 800,
  9702. bottom: 0.015
  9703. }
  9704. },
  9705. back: {
  9706. height: math.unit(12, "feet"),
  9707. weight: math.unit(1.5, "tons"),
  9708. name: "Back",
  9709. image: {
  9710. source: "./media/characters/dydros/back.svg",
  9711. extra: 900 / 843,
  9712. bottom: 0.005
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(12, "feet"),
  9720. default: true
  9721. },
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9726. {
  9727. front: {
  9728. height: math.unit(6, "feet"),
  9729. weight: math.unit(100, "kg"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/riggi/front.svg",
  9733. extra: 5787 / 5303
  9734. }
  9735. },
  9736. hyper: {
  9737. height: math.unit(6 * 5 / 3, "feet"),
  9738. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9739. name: "Hyper",
  9740. image: {
  9741. source: "./media/characters/riggi/hyper.svg",
  9742. extra: 3595 / 3485
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Small Macro",
  9749. height: math.unit(50, "feet")
  9750. },
  9751. {
  9752. name: "Default",
  9753. height: math.unit(200, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Loom",
  9758. height: math.unit(10000, "feet")
  9759. },
  9760. {
  9761. name: "Cruising Altitude",
  9762. height: math.unit(30000, "feet")
  9763. },
  9764. {
  9765. name: "Megamacro",
  9766. height: math.unit(100, "miles")
  9767. },
  9768. {
  9769. name: "Continent Sized",
  9770. height: math.unit(2800, "miles")
  9771. },
  9772. {
  9773. name: "Earth Sized",
  9774. height: math.unit(8000, "miles")
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(6, "feet"),
  9783. weight: math.unit(250, "lb"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/alexi/front.svg",
  9787. extra: 3483 / 3291,
  9788. bottom: 0.04
  9789. }
  9790. },
  9791. back: {
  9792. height: math.unit(6, "feet"),
  9793. weight: math.unit(250, "lb"),
  9794. name: "Back",
  9795. image: {
  9796. source: "./media/characters/alexi/back.svg",
  9797. extra: 3533 / 3356,
  9798. bottom: 0.021
  9799. }
  9800. },
  9801. frontTransforming: {
  9802. height: math.unit(8.58, "feet"),
  9803. weight: math.unit(1300, "lb"),
  9804. name: "Transforming",
  9805. image: {
  9806. source: "./media/characters/alexi/front-transforming.svg",
  9807. extra: 437 / 409,
  9808. bottom: 19/458.66
  9809. }
  9810. },
  9811. frontTransformed: {
  9812. height: math.unit(12.5, "feet"),
  9813. weight: math.unit(4000, "lb"),
  9814. name: "Transformed",
  9815. image: {
  9816. source: "./media/characters/alexi/front-transformed.svg",
  9817. extra: 639 / 614,
  9818. bottom: 30.55/671
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(3, "meters"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Minimacro",
  9830. height: math.unit(30, "meters")
  9831. },
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(500, "meters")
  9835. },
  9836. {
  9837. name: "Megamacro",
  9838. height: math.unit(9000, "km")
  9839. },
  9840. {
  9841. name: "Teramacro",
  9842. height: math.unit(384000, "km")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/kayroo/front.svg",
  9855. extra: 1153 / 1038,
  9856. bottom: 0.06
  9857. }
  9858. },
  9859. foot: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Foot",
  9863. image: {
  9864. source: "./media/characters/kayroo/foot.svg"
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(8, "feet"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Minimacro",
  9876. height: math.unit(250, "feet")
  9877. },
  9878. {
  9879. name: "Macro",
  9880. height: math.unit(2800, "feet")
  9881. },
  9882. {
  9883. name: "Megamacro",
  9884. height: math.unit(5200, "feet")
  9885. },
  9886. {
  9887. name: "Gigamacro",
  9888. height: math.unit(27000, "feet")
  9889. },
  9890. {
  9891. name: "Omega",
  9892. height: math.unit(45000, "feet")
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(18, "feet"),
  9901. weight: math.unit(5800, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/rhys/front.svg",
  9905. extra: 3386 / 3090,
  9906. bottom: 0.07
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(18, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Working Size",
  9918. height: math.unit(200, "feet")
  9919. },
  9920. {
  9921. name: "Demolition Size",
  9922. height: math.unit(2000, "feet")
  9923. },
  9924. {
  9925. name: "Maximum Licensed Size",
  9926. height: math.unit(5, "miles")
  9927. },
  9928. {
  9929. name: "Maximum Observed Size",
  9930. height: math.unit(10, "yottameters")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(6, "feet"),
  9939. weight: math.unit(250, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/toto/front.svg",
  9943. extra: 527 / 479,
  9944. bottom: 0.05
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(3, "feet")
  9952. },
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(10, "feet")
  9956. },
  9957. {
  9958. name: "Macro",
  9959. height: math.unit(150, "feet"),
  9960. default: true
  9961. },
  9962. {
  9963. name: "Megamacro",
  9964. height: math.unit(1200, "feet")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "King", species: ["lion"], tags: ["anthro"] },
  9970. {
  9971. back: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(150, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/king/back.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(2, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(8, "feet")
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(200, "feet"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(50, "miles")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10002. {
  10003. anthro: {
  10004. height: math.unit(6 + 5 / 12, "feet"),
  10005. weight: math.unit(280, "lb"),
  10006. name: "Anthro",
  10007. image: {
  10008. source: "./media/characters/cordite/anthro.svg",
  10009. extra: 1986 / 1905,
  10010. bottom: 0.025
  10011. }
  10012. },
  10013. feral: {
  10014. height: math.unit(2, "feet"),
  10015. weight: math.unit(90, "lb"),
  10016. name: "Feral",
  10017. image: {
  10018. source: "./media/characters/cordite/feral.svg",
  10019. extra: 1260 / 755,
  10020. bottom: 0.05
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(6 + 5 / 12, "feet"),
  10028. default: true
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/pianostrong/front.svg",
  10041. extra: 6577 / 6254,
  10042. bottom: 0.02
  10043. }
  10044. },
  10045. side: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Side",
  10049. image: {
  10050. source: "./media/characters/pianostrong/side.svg",
  10051. extra: 6106 / 5730
  10052. }
  10053. },
  10054. back: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(150, "lb"),
  10057. name: "Back",
  10058. image: {
  10059. source: "./media/characters/pianostrong/back.svg",
  10060. extra: 6085 / 5733,
  10061. bottom: 0.01
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Macro",
  10068. height: math.unit(100, "feet")
  10069. },
  10070. {
  10071. name: "Macro+",
  10072. height: math.unit(300, "feet"),
  10073. default: true
  10074. },
  10075. {
  10076. name: "Macro++",
  10077. height: math.unit(1000, "feet")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(150, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/kona/front.svg",
  10090. extra: 2960 / 2629,
  10091. bottom: 0.005
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(11 + 8 / 12, "feet")
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(850, "feet"),
  10103. default: true
  10104. },
  10105. {
  10106. name: "Macro+",
  10107. height: math.unit(1.5, "km"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Megamacro",
  10112. height: math.unit(80, "miles")
  10113. },
  10114. {
  10115. name: "Gigamacro",
  10116. height: math.unit(3500, "miles")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10122. {
  10123. side: {
  10124. height: math.unit(1.9, "meters"),
  10125. weight: math.unit(326, "kg"),
  10126. name: "Side",
  10127. image: {
  10128. source: "./media/characters/levi/side.svg",
  10129. extra: 1704 / 1334,
  10130. bottom: 0.02
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(1.9, "meters"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(20, "meters")
  10143. },
  10144. {
  10145. name: "Macro+",
  10146. height: math.unit(200, "meters")
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(2, "km")
  10151. },
  10152. {
  10153. name: "Megamacro+",
  10154. height: math.unit(20, "km")
  10155. },
  10156. {
  10157. name: "Gigamacro",
  10158. height: math.unit(2500, "km")
  10159. },
  10160. {
  10161. name: "Gigamacro+",
  10162. height: math.unit(120000, "km")
  10163. },
  10164. {
  10165. name: "Teramacro",
  10166. height: math.unit(7.77e6, "km")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(6 + 4 / 12, "feet"),
  10175. weight: math.unit(188, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/bmc/front.svg",
  10179. extra: 1067 / 1022,
  10180. bottom: 0.047
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Human-sized",
  10187. height: math.unit(6 + 4 / 12, "feet")
  10188. },
  10189. {
  10190. name: "Small",
  10191. height: math.unit(250, "feet")
  10192. },
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(1250, "feet"),
  10196. default: true
  10197. },
  10198. {
  10199. name: "Good Day",
  10200. height: math.unit(88, "miles")
  10201. },
  10202. {
  10203. name: "Largest Measured Size",
  10204. height: math.unit(11.2e6, "lightyears")
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(20, "feet"),
  10213. weight: math.unit(2016, "kg"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/sven-the-kaiju/front.svg",
  10217. extra: 1479 / 1449,
  10218. bottom: 0.05
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Fairy",
  10225. height: math.unit(6, "inches")
  10226. },
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(20, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Rampage",
  10234. height: math.unit(200, "feet")
  10235. },
  10236. {
  10237. name: "Archfey Forest Guardian",
  10238. height: math.unit(1, "mile")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(4, "meters"),
  10247. weight: math.unit(2, "tons"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/marik/front.svg",
  10251. extra: 1057 / 1003,
  10252. bottom: 0.08
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(4, "meters"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(20, "meters")
  10265. },
  10266. {
  10267. name: "Megamacro",
  10268. height: math.unit(50, "km")
  10269. },
  10270. {
  10271. name: "Gigamacro",
  10272. height: math.unit(100, "km")
  10273. },
  10274. {
  10275. name: "Alpha Macro",
  10276. height: math.unit(7.88e7, "yottameters")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(110, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/mel/front.svg",
  10289. extra: 736 / 617,
  10290. bottom: 0.017
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Pico",
  10297. height: math.unit(3, "pm")
  10298. },
  10299. {
  10300. name: "Nano",
  10301. height: math.unit(3, "nm")
  10302. },
  10303. {
  10304. name: "Micro",
  10305. height: math.unit(0.3, "mm"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Micro+",
  10310. height: math.unit(3, "mm")
  10311. },
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(5 + 10.5 / 12, "feet")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10320. {
  10321. kaiju: {
  10322. height: math.unit(1.75, "meters"),
  10323. weight: math.unit(55, "kg"),
  10324. name: "Kaiju",
  10325. image: {
  10326. source: "./media/characters/lykonous/kaiju.svg",
  10327. extra: 1055 / 946,
  10328. bottom: 0.135
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(2.5, "meters"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Kaiju Dragon",
  10340. height: math.unit(60, "meters")
  10341. },
  10342. {
  10343. name: "Mega Kaiju",
  10344. height: math.unit(120, "km")
  10345. },
  10346. {
  10347. name: "Giga Kaiju",
  10348. height: math.unit(200, "megameters")
  10349. },
  10350. {
  10351. name: "Terra Kaiju",
  10352. height: math.unit(400, "gigameters")
  10353. },
  10354. {
  10355. name: "Kaiju Dragon God",
  10356. height: math.unit(13000, "exaparsecs")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/blü/front.svg",
  10369. extra: 1883 / 1564,
  10370. bottom: 0.031
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(13, "feet"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Big Boi",
  10382. height: math.unit(150, "meters")
  10383. },
  10384. {
  10385. name: "Mini Stomper",
  10386. height: math.unit(300, "meters")
  10387. },
  10388. {
  10389. name: "Macro",
  10390. height: math.unit(1000, "meters")
  10391. },
  10392. {
  10393. name: "Megamacro",
  10394. height: math.unit(11000, "meters")
  10395. },
  10396. {
  10397. name: "Gigamacro",
  10398. height: math.unit(11000, "km")
  10399. },
  10400. {
  10401. name: "Teramacro",
  10402. height: math.unit(420000, "km")
  10403. },
  10404. {
  10405. name: "Examacro",
  10406. height: math.unit(120, "parsecs")
  10407. },
  10408. {
  10409. name: "God Tho",
  10410. height: math.unit(98000000000, "parsecs")
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10416. {
  10417. taurFront: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(200, "lb"),
  10420. name: "Taur (Front)",
  10421. image: {
  10422. source: "./media/characters/scales/taur-front.svg",
  10423. extra: 1,
  10424. bottom: 0.05
  10425. }
  10426. },
  10427. taurBack: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(200, "lb"),
  10430. name: "Taur (Back)",
  10431. image: {
  10432. source: "./media/characters/scales/taur-back.svg",
  10433. extra: 1,
  10434. bottom: 0.08
  10435. }
  10436. },
  10437. anthro: {
  10438. height: math.unit(6 * 7 / 12, "feet"),
  10439. weight: math.unit(100, "lb"),
  10440. name: "Anthro",
  10441. image: {
  10442. source: "./media/characters/scales/anthro.svg",
  10443. extra: 1,
  10444. bottom: 0.06
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(12, "feet"),
  10452. default: true
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10458. {
  10459. front: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(150, "lb"),
  10462. name: "Front",
  10463. image: {
  10464. source: "./media/characters/koragos/front.svg",
  10465. extra: 841 / 794,
  10466. bottom: 0.035
  10467. }
  10468. },
  10469. back: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(150, "lb"),
  10472. name: "Back",
  10473. image: {
  10474. source: "./media/characters/koragos/back.svg",
  10475. extra: 841 / 810,
  10476. bottom: 0.022
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(6 + 11 / 12, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(490, "feet")
  10489. },
  10490. {
  10491. name: "Megamacro",
  10492. height: math.unit(10, "miles")
  10493. },
  10494. {
  10495. name: "Gigamacro",
  10496. height: math.unit(50, "miles")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(250, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/xylrem/front.svg",
  10509. extra: 3323 / 3050,
  10510. bottom: 0.065
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Micro",
  10517. height: math.unit(4, "feet")
  10518. },
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(16, "feet"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(2720, "feet")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(25000, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(8, "feet"),
  10539. weight: math.unit(250, "kg"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/ikideru/front.svg",
  10543. extra: 930 / 870,
  10544. bottom: 0.087
  10545. }
  10546. },
  10547. back: {
  10548. height: math.unit(8, "feet"),
  10549. weight: math.unit(250, "kg"),
  10550. name: "Back",
  10551. image: {
  10552. source: "./media/characters/ikideru/back.svg",
  10553. extra: 919 / 852,
  10554. bottom: 0.055
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Rare",
  10561. height: math.unit(8, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Playful Loom",
  10566. height: math.unit(80, "feet")
  10567. },
  10568. {
  10569. name: "City Leaner",
  10570. height: math.unit(230, "feet")
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(2500, "feet")
  10575. },
  10576. {
  10577. name: "Gigamacro",
  10578. height: math.unit(26400, "feet")
  10579. },
  10580. {
  10581. name: "Tectonic Shifter",
  10582. height: math.unit(1.7, "megameters")
  10583. },
  10584. {
  10585. name: "Planet Carer",
  10586. height: math.unit(21, "megameters")
  10587. },
  10588. {
  10589. name: "God",
  10590. height: math.unit(11157.22, "parsecs")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(120, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/neo/front.svg"
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(2, "inches"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Human Size",
  10614. height: math.unit(5 + 8 / 12, "feet")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10620. {
  10621. front: {
  10622. height: math.unit(13 + 10 / 12, "feet"),
  10623. weight: math.unit(5320, "lb"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/chauncey-chantz/front.svg",
  10627. extra: 1587 / 1435,
  10628. bottom: 0.02
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(13 + 10 / 12, "feet"),
  10636. default: true
  10637. },
  10638. {
  10639. name: "Macro",
  10640. height: math.unit(45, "feet")
  10641. },
  10642. {
  10643. name: "Megamacro",
  10644. height: math.unit(250, "miles")
  10645. },
  10646. {
  10647. name: "Planetary",
  10648. height: math.unit(10000, "miles")
  10649. },
  10650. {
  10651. name: "Galactic",
  10652. height: math.unit(40000, "parsecs")
  10653. },
  10654. {
  10655. name: "Universal",
  10656. height: math.unit(1, "yottameter")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(150, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/epifox/front.svg",
  10669. extra: 1,
  10670. bottom: 0.075
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(6, "inches")
  10678. },
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(12, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(3810, "feet")
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(500, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(1.8796, "m"),
  10699. weight: math.unit(230, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/colin-t/front.svg",
  10703. extra: 1272 / 1193,
  10704. bottom: 0.07
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(0.571, "meters")
  10712. },
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(1.8796, "meters"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Tall",
  10720. height: math.unit(4, "meters")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(67.241, "meters")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(371.856, "meters")
  10729. },
  10730. {
  10731. name: "Planetary",
  10732. height: math.unit(12631.5689, "km")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10738. {
  10739. front: {
  10740. height: math.unit(1.85, "meters"),
  10741. weight: math.unit(80, "kg"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/matvei/front.svg",
  10745. extra: 614 / 594,
  10746. bottom: 0.01
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(1.85, "meters"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(5 + 9 / 12, "feet"),
  10763. weight: math.unit(70, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/quincy/front.svg",
  10767. extra: 3041 / 2751
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(5 + 9 / 12, "feet"),
  10772. weight: math.unit(70, "lb"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/quincy/back.svg",
  10776. extra: 3041 / 2751
  10777. }
  10778. },
  10779. flying: {
  10780. height: math.unit(5 + 4 / 12, "feet"),
  10781. weight: math.unit(70, "lb"),
  10782. name: "Flying",
  10783. image: {
  10784. source: "./media/characters/quincy/flying.svg",
  10785. extra: 1044 / 930
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Micro",
  10792. height: math.unit(3, "cm")
  10793. },
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(5 + 9 / 12, "feet")
  10797. },
  10798. {
  10799. name: "Macro",
  10800. height: math.unit(200, "meters"),
  10801. default: true
  10802. },
  10803. {
  10804. name: "Megamacro",
  10805. height: math.unit(1000, "meters")
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10811. {
  10812. front: {
  10813. height: math.unit(4 + 7 / 12, "feet"),
  10814. weight: math.unit(150, "lb"),
  10815. name: "Front",
  10816. image: {
  10817. source: "./media/characters/vanrel/front.svg",
  10818. extra: 1,
  10819. bottom: 0.02
  10820. }
  10821. },
  10822. elemental: {
  10823. height: math.unit(3, "feet"),
  10824. weight: math.unit(150, "lb"),
  10825. name: "Elemental",
  10826. image: {
  10827. source: "./media/characters/vanrel/elemental.svg",
  10828. extra: 192.3/162.8,
  10829. bottom: 1.79/194.17
  10830. }
  10831. },
  10832. side: {
  10833. height: math.unit(4 + 7 / 12, "feet"),
  10834. weight: math.unit(150, "lb"),
  10835. name: "Side",
  10836. image: {
  10837. source: "./media/characters/vanrel/side.svg",
  10838. extra: 1,
  10839. bottom: 0.025
  10840. }
  10841. },
  10842. tome: {
  10843. height: math.unit(1.35, "feet"),
  10844. weight: math.unit(10, "lb"),
  10845. name: "Vanrel's Tome",
  10846. rename: true,
  10847. image: {
  10848. source: "./media/characters/vanrel/tome.svg"
  10849. }
  10850. },
  10851. beans: {
  10852. height: math.unit(0.89, "feet"),
  10853. name: "Beans",
  10854. image: {
  10855. source: "./media/characters/vanrel/beans.svg"
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(4 + 7 / 12, "feet"),
  10863. default: true
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(7 + 5 / 12, "feet"),
  10872. weight: math.unit(150, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/kuiper-vanrel/front.svg",
  10876. extra: 1118 / 1068,
  10877. bottom: 0.09
  10878. }
  10879. },
  10880. foot: {
  10881. height: math.unit(0.55, "meters"),
  10882. name: "Foot",
  10883. image: {
  10884. source: "./media/characters/kuiper-vanrel/foot.svg",
  10885. }
  10886. },
  10887. battle: {
  10888. height: math.unit(6.824, "feet"),
  10889. weight: math.unit(150, "lb"),
  10890. name: "Battle",
  10891. image: {
  10892. source: "./media/characters/kuiper-vanrel/battle.svg",
  10893. extra: 1466/1327,
  10894. bottom: 29/1492.5
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Normal",
  10901. height: math.unit(7 + 5 / 12, "feet"),
  10902. default: true
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(8 + 5 / 12, "feet"),
  10911. weight: math.unit(150, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/keset-vanrel/front.svg",
  10915. extra: 1150 / 1084,
  10916. bottom: 0.05
  10917. }
  10918. },
  10919. hand: {
  10920. height: math.unit(0.6, "meters"),
  10921. name: "Hand",
  10922. image: {
  10923. source: "./media/characters/keset-vanrel/hand.svg"
  10924. }
  10925. },
  10926. foot: {
  10927. height: math.unit(0.94978, "meters"),
  10928. name: "Foot",
  10929. image: {
  10930. source: "./media/characters/keset-vanrel/foot.svg"
  10931. }
  10932. },
  10933. battle: {
  10934. height: math.unit(7.408, "feet"),
  10935. weight: math.unit(150, "lb"),
  10936. name: "Battle",
  10937. image: {
  10938. source: "./media/characters/keset-vanrel/battle.svg",
  10939. extra: 1890/1386,
  10940. bottom: 73.28/1970
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(8 + 5 / 12, "feet"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/neos/front.svg",
  10961. extra: 1696 / 992,
  10962. bottom: 0.14
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(54, "cm"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Macro",
  10974. height: math.unit(100, "m")
  10975. },
  10976. {
  10977. name: "Megamacro",
  10978. height: math.unit(10, "km")
  10979. },
  10980. {
  10981. name: "Megamacro+",
  10982. height: math.unit(100, "km")
  10983. },
  10984. {
  10985. name: "Gigamacro",
  10986. height: math.unit(100, "Mm")
  10987. },
  10988. {
  10989. name: "Teramacro",
  10990. height: math.unit(100, "Gm")
  10991. },
  10992. {
  10993. name: "Examacro",
  10994. height: math.unit(100, "Em")
  10995. },
  10996. {
  10997. name: "Godly",
  10998. height: math.unit(10000, "Ym")
  10999. },
  11000. {
  11001. name: "Beyond Godly",
  11002. height: math.unit(10000000, "Ym")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11008. {
  11009. feminine: {
  11010. height: math.unit(5, "feet"),
  11011. weight: math.unit(100, "lb"),
  11012. name: "Feminine",
  11013. image: {
  11014. source: "./media/characters/sammy-mouse/feminine.svg",
  11015. extra: 2526 / 2425,
  11016. bottom: 0.123
  11017. }
  11018. },
  11019. masculine: {
  11020. height: math.unit(5, "feet"),
  11021. weight: math.unit(100, "lb"),
  11022. name: "Masculine",
  11023. image: {
  11024. source: "./media/characters/sammy-mouse/masculine.svg",
  11025. extra: 2526 / 2425,
  11026. bottom: 0.123
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Micro",
  11033. height: math.unit(5, "inches")
  11034. },
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(5, "feet"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(60, "feet")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(4, "feet"),
  11051. weight: math.unit(50, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/kole/front.svg",
  11055. extra: 1423 / 1303,
  11056. bottom: 0.025
  11057. }
  11058. },
  11059. back: {
  11060. height: math.unit(4, "feet"),
  11061. weight: math.unit(50, "lb"),
  11062. name: "Back",
  11063. image: {
  11064. source: "./media/characters/kole/back.svg",
  11065. extra: 1426 / 1280,
  11066. bottom: 0.02
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Normal",
  11073. height: math.unit(4, "feet"),
  11074. default: true
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(2 + 6 / 12, "feet"),
  11083. weight: math.unit(20, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/rufran/front.svg",
  11087. extra: 2041 / 1839,
  11088. bottom: 0.055
  11089. }
  11090. },
  11091. back: {
  11092. height: math.unit(2 + 6 / 12, "feet"),
  11093. weight: math.unit(20, "lb"),
  11094. name: "Back",
  11095. image: {
  11096. source: "./media/characters/rufran/back.svg",
  11097. extra: 2054 / 1839,
  11098. bottom: 0.01
  11099. }
  11100. },
  11101. hand: {
  11102. height: math.unit(0.2166, "meters"),
  11103. name: "Hand",
  11104. image: {
  11105. source: "./media/characters/rufran/hand.svg"
  11106. }
  11107. },
  11108. foot: {
  11109. height: math.unit(0.185, "meters"),
  11110. name: "Foot",
  11111. image: {
  11112. source: "./media/characters/rufran/foot.svg"
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Micro",
  11119. height: math.unit(1, "inch")
  11120. },
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(2 + 6 / 12, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Big",
  11128. height: math.unit(60, "feet")
  11129. },
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(325, "feet")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(0.3, "meters"),
  11141. weight: math.unit(3.5, "kg"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/chip/front.svg",
  11145. extra: 748 / 674
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Micro",
  11152. height: math.unit(1, "inch"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11159. {
  11160. side: {
  11161. height: math.unit(2.3, "meters"),
  11162. weight: math.unit(3500, "lb"),
  11163. name: "Side",
  11164. image: {
  11165. source: "./media/characters/torvid/side.svg",
  11166. extra: 1972 / 722,
  11167. bottom: 0.035
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(2.3, "meters"),
  11175. default: true
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(2, "meters"),
  11184. weight: math.unit(150.5, "kg"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/susan/front.svg",
  11188. extra: 693 / 635,
  11189. bottom: 0.05
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(505, "miles"),
  11197. default: true
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11203. {
  11204. front: {
  11205. height: math.unit(6, "feet"),
  11206. weight: math.unit(150, "lb"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/raindrops/front.svg",
  11210. extra: 2655 / 2461,
  11211. bottom: 0.02
  11212. }
  11213. },
  11214. back: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Back",
  11218. image: {
  11219. source: "./media/characters/raindrops/back.svg",
  11220. extra: 2574 / 2400,
  11221. bottom: 0.03
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Micro",
  11228. height: math.unit(6, "inches")
  11229. },
  11230. {
  11231. name: "Normal",
  11232. height: math.unit(6 + 2 / 12, "feet")
  11233. },
  11234. {
  11235. name: "Macro",
  11236. height: math.unit(131, "feet"),
  11237. default: true
  11238. },
  11239. {
  11240. name: "Megamacro",
  11241. height: math.unit(15, "miles")
  11242. },
  11243. {
  11244. name: "Gigamacro",
  11245. height: math.unit(4000, "miles")
  11246. },
  11247. {
  11248. name: "Teramacro",
  11249. height: math.unit(315000, "miles")
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11255. {
  11256. front: {
  11257. height: math.unit(2.794, "meters"),
  11258. weight: math.unit(325, "kg"),
  11259. name: "Front",
  11260. image: {
  11261. source: "./media/characters/tezwa/front.svg",
  11262. extra: 2083 / 1906,
  11263. bottom: 0.031
  11264. }
  11265. },
  11266. foot: {
  11267. height: math.unit(0.687, "meters"),
  11268. name: "Foot",
  11269. image: {
  11270. source: "./media/characters/tezwa/foot.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(9 + 2 / 12, "feet"),
  11278. default: true
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(58, "feet"),
  11287. weight: math.unit(89000, "lb"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/typhus/front.svg",
  11291. extra: 816 / 800,
  11292. bottom: 0.065
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Macro",
  11299. height: math.unit(58, "feet"),
  11300. default: true
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(12, "feet"),
  11309. weight: math.unit(6, "tonnes"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/lyra-von-wulf/front.svg",
  11313. extra: 1,
  11314. bottom: 0.10
  11315. }
  11316. },
  11317. frontMecha: {
  11318. height: math.unit(12, "feet"),
  11319. weight: math.unit(12, "tonnes"),
  11320. name: "Front (Mecha)",
  11321. image: {
  11322. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11323. extra: 1,
  11324. bottom: 0.042
  11325. }
  11326. },
  11327. maw: {
  11328. height: math.unit(2.2, "feet"),
  11329. name: "Maw",
  11330. image: {
  11331. source: "./media/characters/lyra-von-wulf/maw.svg"
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(12, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Classic",
  11343. height: math.unit(50, "feet")
  11344. },
  11345. {
  11346. name: "Macro",
  11347. height: math.unit(500, "feet")
  11348. },
  11349. {
  11350. name: "Megamacro",
  11351. height: math.unit(1, "mile")
  11352. },
  11353. {
  11354. name: "Gigamacro",
  11355. height: math.unit(400, "miles")
  11356. },
  11357. {
  11358. name: "Teramacro",
  11359. height: math.unit(22000, "miles")
  11360. },
  11361. {
  11362. name: "Solarmacro",
  11363. height: math.unit(8600000, "miles")
  11364. },
  11365. {
  11366. name: "Galactic",
  11367. height: math.unit(1057000, "lightyears")
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(6 + 10 / 12, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/dixon/front.svg",
  11380. extra: 3361 / 3209,
  11381. bottom: 0.01
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Normal",
  11388. height: math.unit(6 + 10 / 12, "feet"),
  11389. default: true
  11390. },
  11391. {
  11392. name: "Big",
  11393. height: math.unit(12, "meters")
  11394. },
  11395. {
  11396. name: "Macro",
  11397. height: math.unit(500, "meters")
  11398. },
  11399. {
  11400. name: "Megamacro",
  11401. height: math.unit(2, "km")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11407. {
  11408. front: {
  11409. height: math.unit(185, "cm"),
  11410. weight: math.unit(68, "kg"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/kauko/front.svg",
  11414. extra: 1455 / 1421,
  11415. bottom: 0.03
  11416. }
  11417. },
  11418. back: {
  11419. height: math.unit(185, "cm"),
  11420. weight: math.unit(68, "kg"),
  11421. name: "Back",
  11422. image: {
  11423. source: "./media/characters/kauko/back.svg",
  11424. extra: 1455 / 1421,
  11425. bottom: 0.004
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(185, "cm"),
  11433. default: true
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(150, "kg"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/varg/front.svg",
  11446. extra: 1108 / 1018,
  11447. bottom: 0.0375
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Normal",
  11454. height: math.unit(5, "meters")
  11455. },
  11456. {
  11457. name: "Macro",
  11458. height: math.unit(200, "meters")
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(20, "kilometers")
  11463. },
  11464. {
  11465. name: "True Size",
  11466. height: math.unit(211, "km"),
  11467. default: true
  11468. },
  11469. {
  11470. name: "Gigamacro",
  11471. height: math.unit(1000, "km")
  11472. },
  11473. {
  11474. name: "Gigamacro+",
  11475. height: math.unit(8000, "km")
  11476. },
  11477. {
  11478. name: "Teramacro",
  11479. height: math.unit(1000000, "km")
  11480. },
  11481. ]
  11482. ))
  11483. characterMakers.push(() => makeCharacter(
  11484. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11485. {
  11486. front: {
  11487. height: math.unit(7 + 7 / 12, "feet"),
  11488. weight: math.unit(267, "lb"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/dayza/front.svg",
  11492. extra: 1262 / 1200,
  11493. bottom: 0.035
  11494. }
  11495. },
  11496. side: {
  11497. height: math.unit(7 + 7 / 12, "feet"),
  11498. weight: math.unit(267, "lb"),
  11499. name: "Side",
  11500. image: {
  11501. source: "./media/characters/dayza/side.svg",
  11502. extra: 1295 / 1245,
  11503. bottom: 0.05
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(7 + 7 / 12, "feet"),
  11508. weight: math.unit(267, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/dayza/back.svg",
  11512. extra: 1241 / 1170
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(7 + 7 / 12, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Macro",
  11524. height: math.unit(155, "feet")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(6 + 5 / 12, "feet"),
  11533. weight: math.unit(160, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/xanthos/front.svg",
  11537. extra: 1,
  11538. bottom: 0.04
  11539. }
  11540. },
  11541. back: {
  11542. height: math.unit(6 + 5 / 12, "feet"),
  11543. weight: math.unit(160, "lb"),
  11544. name: "Back",
  11545. image: {
  11546. source: "./media/characters/xanthos/back.svg",
  11547. extra: 1,
  11548. bottom: 0.03
  11549. }
  11550. },
  11551. hand: {
  11552. height: math.unit(0.928, "feet"),
  11553. name: "Hand",
  11554. image: {
  11555. source: "./media/characters/xanthos/hand.svg"
  11556. }
  11557. },
  11558. foot: {
  11559. height: math.unit(1.286, "feet"),
  11560. name: "Foot",
  11561. image: {
  11562. source: "./media/characters/xanthos/foot.svg"
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Normal",
  11569. height: math.unit(6 + 5 / 12, "feet"),
  11570. default: true
  11571. },
  11572. {
  11573. name: "Normal+",
  11574. height: math.unit(6, "meters")
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(40, "feet")
  11579. },
  11580. {
  11581. name: "Macro+",
  11582. height: math.unit(200, "meters")
  11583. },
  11584. {
  11585. name: "Megamacro",
  11586. height: math.unit(20, "km")
  11587. },
  11588. {
  11589. name: "Megamacro+",
  11590. height: math.unit(100, "km")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6 + 3 / 12, "feet"),
  11599. weight: math.unit(215, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/grynn/front.svg",
  11603. extra: 4627 / 4209,
  11604. bottom: 0.047
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Micro",
  11611. height: math.unit(6, "inches")
  11612. },
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(6 + 3 / 12, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Big",
  11620. height: math.unit(104, "feet")
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(944, "feet")
  11625. },
  11626. {
  11627. name: "Macro+",
  11628. height: math.unit(9480, "feet")
  11629. },
  11630. {
  11631. name: "Megamacro",
  11632. height: math.unit(78752, "feet")
  11633. },
  11634. {
  11635. name: "Megamacro+",
  11636. height: math.unit(630128, "feet")
  11637. },
  11638. {
  11639. name: "Megamacro++",
  11640. height: math.unit(3150695, "feet")
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(7 + 5 / 12, "feet"),
  11649. weight: math.unit(450, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/mocha-aura/front.svg",
  11653. extra: 1907 / 1817,
  11654. bottom: 0.04
  11655. }
  11656. },
  11657. back: {
  11658. height: math.unit(7 + 5 / 12, "feet"),
  11659. weight: math.unit(450, "lb"),
  11660. name: "Back",
  11661. image: {
  11662. source: "./media/characters/mocha-aura/back.svg",
  11663. extra: 1900 / 1825,
  11664. bottom: 0.045
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Nano",
  11671. height: math.unit(1, "nm")
  11672. },
  11673. {
  11674. name: "Megamicro",
  11675. height: math.unit(1, "mm")
  11676. },
  11677. {
  11678. name: "Micro",
  11679. height: math.unit(3, "inches")
  11680. },
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(7 + 5 / 12, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(30, "feet")
  11689. },
  11690. {
  11691. name: "Megamacro",
  11692. height: math.unit(3500, "feet")
  11693. },
  11694. {
  11695. name: "Teramacro",
  11696. height: math.unit(500000, "miles")
  11697. },
  11698. {
  11699. name: "Petamacro",
  11700. height: math.unit(50000000000000000, "parsecs")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Ilisha Devya", species: ["alligator", "cobra"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(150, "lb"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/ilisha-devya/front.svg",
  11713. extra: 1,
  11714. bottom: 0.175
  11715. }
  11716. },
  11717. back: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Back",
  11721. image: {
  11722. source: "./media/characters/ilisha-devya/back.svg",
  11723. extra: 1,
  11724. bottom: 0.015
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(500, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Megamacro",
  11736. height: math.unit(10, "miles")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(100000, "miles")
  11741. },
  11742. {
  11743. name: "Examacro",
  11744. height: math.unit(1e9, "lightyears")
  11745. },
  11746. {
  11747. name: "Omniversal",
  11748. height: math.unit(1e33, "lightyears")
  11749. },
  11750. {
  11751. name: "Beyond Infinite",
  11752. height: math.unit(1e100, "lightyears")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11758. {
  11759. Side: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(150, "lb"),
  11762. name: "Side",
  11763. image: {
  11764. source: "./media/characters/mira/side.svg",
  11765. extra: 900 / 799,
  11766. bottom: 0.02
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Human Size",
  11773. height: math.unit(6, "feet")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(100, "feet"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Megamacro",
  11782. height: math.unit(10, "miles")
  11783. },
  11784. {
  11785. name: "Gigamacro",
  11786. height: math.unit(25000, "miles")
  11787. },
  11788. {
  11789. name: "Teramacro",
  11790. height: math.unit(300, "AU")
  11791. },
  11792. {
  11793. name: "Full Size",
  11794. height: math.unit(4.5e10, "lightyears")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(150, "lb"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/holly/front.svg",
  11807. extra: 639 / 606
  11808. }
  11809. },
  11810. back: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Back",
  11814. image: {
  11815. source: "./media/characters/holly/back.svg",
  11816. extra: 623 / 598
  11817. }
  11818. },
  11819. frontWorking: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(150, "lb"),
  11822. name: "Front (Working)",
  11823. image: {
  11824. source: "./media/characters/holly/front-working.svg",
  11825. extra: 607 / 577,
  11826. bottom: 0.048
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(12 + 3 / 12, "feet"),
  11834. default: true
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11840. {
  11841. front: {
  11842. height: math.unit(6, "feet"),
  11843. weight: math.unit(150, "lb"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/porter/front.svg",
  11847. extra: 1,
  11848. bottom: 0.01
  11849. }
  11850. },
  11851. frontRobes: {
  11852. height: math.unit(6, "feet"),
  11853. weight: math.unit(150, "lb"),
  11854. name: "Front (Robes)",
  11855. image: {
  11856. source: "./media/characters/porter/front-robes.svg",
  11857. extra: 1.01,
  11858. bottom: 0.01
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(11 + 9 / 12, "feet"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11872. {
  11873. legendary: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(150, "lb"),
  11876. name: "Legendary",
  11877. image: {
  11878. source: "./media/characters/lucy/legendary.svg",
  11879. extra: 1355 / 1100,
  11880. bottom: 0.045
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Legendary",
  11887. height: math.unit(86882 * 2, "miles"),
  11888. default: true
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11894. {
  11895. front: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(150, "lb"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/drusilla/front.svg",
  11901. extra: 678 / 635,
  11902. bottom: 0.03
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/drusilla/back.svg",
  11911. extra: 678 / 635,
  11912. bottom: 0.005
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Macro",
  11919. height: math.unit(100, "feet")
  11920. },
  11921. {
  11922. name: "Canon Height",
  11923. height: math.unit(2000, "feet"),
  11924. default: true
  11925. },
  11926. ]
  11927. ))
  11928. characterMakers.push(() => makeCharacter(
  11929. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11930. {
  11931. front: {
  11932. height: math.unit(6, "feet"),
  11933. weight: math.unit(180, "lb"),
  11934. name: "Front",
  11935. image: {
  11936. source: "./media/characters/renard-thatch/front.svg",
  11937. extra: 2411 / 2275,
  11938. bottom: 0.01
  11939. }
  11940. },
  11941. frontPosing: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(180, "lb"),
  11944. name: "Front (Posing)",
  11945. image: {
  11946. source: "./media/characters/renard-thatch/front-posing.svg",
  11947. extra: 2381 / 2261,
  11948. bottom: 0.01
  11949. }
  11950. },
  11951. back: {
  11952. height: math.unit(6, "feet"),
  11953. weight: math.unit(180, "lb"),
  11954. name: "Back",
  11955. image: {
  11956. source: "./media/characters/renard-thatch/back.svg",
  11957. extra: 2428 / 2288
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Micro",
  11964. height: math.unit(3, "inches")
  11965. },
  11966. {
  11967. name: "Default",
  11968. height: math.unit(6, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(75, "feet")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(1450, "feet"),
  11982. weight: math.unit(1.21e6, "tons"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/sekvra/front.svg",
  11986. extra: 1,
  11987. bottom: 0.03
  11988. }
  11989. },
  11990. frontClothed: {
  11991. height: math.unit(1450, "feet"),
  11992. weight: math.unit(1.21e6, "tons"),
  11993. name: "Front (Clothed)",
  11994. image: {
  11995. source: "./media/characters/sekvra/front-clothed.svg",
  11996. extra: 1,
  11997. bottom: 0.03
  11998. }
  11999. },
  12000. side: {
  12001. height: math.unit(1450, "feet"),
  12002. weight: math.unit(1.21e6, "tons"),
  12003. name: "Side",
  12004. image: {
  12005. source: "./media/characters/sekvra/side.svg",
  12006. extra: 1,
  12007. bottom: 0.025
  12008. }
  12009. },
  12010. back: {
  12011. height: math.unit(1450, "feet"),
  12012. weight: math.unit(1.21e6, "tons"),
  12013. name: "Back",
  12014. image: {
  12015. source: "./media/characters/sekvra/back.svg",
  12016. extra: 1,
  12017. bottom: 0.005
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(1450, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(15000, "feet")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(150, "lb"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/carmine/front.svg",
  12042. extra: 1,
  12043. bottom: 0.035
  12044. }
  12045. },
  12046. frontArmor: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front (Armor)",
  12050. image: {
  12051. source: "./media/characters/carmine/front-armor.svg",
  12052. extra: 1,
  12053. bottom: 0.035
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Large",
  12060. height: math.unit(1, "mile")
  12061. },
  12062. {
  12063. name: "Huge",
  12064. height: math.unit(40, "miles"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Colossal",
  12069. height: math.unit(2500, "miles")
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(6, "feet"),
  12078. weight: math.unit(150, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/elyssia/front.svg",
  12082. extra: 2201 / 2035,
  12083. bottom: 0.05
  12084. }
  12085. },
  12086. frontClothed: {
  12087. height: math.unit(6, "feet"),
  12088. weight: math.unit(150, "lb"),
  12089. name: "Front (Clothed)",
  12090. image: {
  12091. source: "./media/characters/elyssia/front-clothed.svg",
  12092. extra: 2201 / 2035,
  12093. bottom: 0.05
  12094. }
  12095. },
  12096. back: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Back",
  12100. image: {
  12101. source: "./media/characters/elyssia/back.svg",
  12102. extra: 2201 / 2035,
  12103. bottom: 0.013
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Smaller",
  12110. height: math.unit(150, "feet")
  12111. },
  12112. {
  12113. name: "Standard",
  12114. height: math.unit(1400, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Distracted",
  12119. height: math.unit(15000, "feet")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(7 + 4 / 12, "feet"),
  12128. weight: math.unit(500, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/geno-maxwell/front.svg",
  12132. extra: 2207 / 2040,
  12133. bottom: 0.015
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Micro",
  12140. height: math.unit(3, "inches")
  12141. },
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(7 + 4 / 12, "feet"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Macro",
  12149. height: math.unit(220, "feet")
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(11, "miles")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(7 + 4 / 12, "feet"),
  12162. weight: math.unit(500, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/regena-maxwell/front.svg",
  12166. extra: 3115 / 2770,
  12167. bottom: 0.02
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(7 + 4 / 12, "feet"),
  12175. default: true
  12176. },
  12177. {
  12178. name: "Macro",
  12179. height: math.unit(220, "feet")
  12180. },
  12181. {
  12182. name: "Megamacro",
  12183. height: math.unit(11, "miles")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(150, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12196. extra: 860 / 690,
  12197. bottom: 0.03
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(1.7, "meters"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/quilly/front.svg",
  12218. extra: 890 / 776
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Gigamacro",
  12225. height: math.unit(404090, "miles"),
  12226. default: true
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(7 + 8 / 12, "feet"),
  12235. weight: math.unit(350, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/tempest/front.svg",
  12239. extra: 1175 / 1086,
  12240. bottom: 0.02
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(7 + 8 / 12, "feet"),
  12248. default: true
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12254. {
  12255. side: {
  12256. height: math.unit(4 + 5 / 12, "feet"),
  12257. weight: math.unit(80, "lb"),
  12258. name: "Side",
  12259. image: {
  12260. source: "./media/characters/rodger/side.svg",
  12261. extra: 1235 / 1118
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Micro",
  12268. height: math.unit(1, "inch")
  12269. },
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(4 + 5 / 12, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Macro",
  12277. height: math.unit(120, "feet")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12283. {
  12284. front: {
  12285. height: math.unit(6, "feet"),
  12286. weight: math.unit(150, "lb"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/danyel/front.svg",
  12290. extra: 1185 / 1123,
  12291. bottom: 0.05
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Shrunken",
  12298. height: math.unit(0.5, "mm")
  12299. },
  12300. {
  12301. name: "Micro",
  12302. height: math.unit(1, "mm"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Upsized",
  12307. height: math.unit(5 + 5 / 12, "feet")
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(5 + 6 / 12, "feet"),
  12316. weight: math.unit(200, "lb"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/vivian-bijoux/front.svg",
  12320. extra: 1,
  12321. bottom: 0.072
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(5 + 6 / 12, "feet"),
  12329. default: true
  12330. },
  12331. {
  12332. name: "Bad Dream",
  12333. height: math.unit(500, "feet")
  12334. },
  12335. {
  12336. name: "Nightmare",
  12337. height: math.unit(500, "miles")
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6 + 1 / 12, "feet"),
  12346. weight: math.unit(260, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/zeta/front.svg",
  12350. extra: 1968 / 1889,
  12351. bottom: 0.06
  12352. }
  12353. },
  12354. back: {
  12355. height: math.unit(6 + 1 / 12, "feet"),
  12356. weight: math.unit(260, "lb"),
  12357. name: "Back",
  12358. image: {
  12359. source: "./media/characters/zeta/back.svg",
  12360. extra: 1944 / 1858,
  12361. bottom: 0.03
  12362. }
  12363. },
  12364. hand: {
  12365. height: math.unit(1.112, "feet"),
  12366. name: "Hand",
  12367. image: {
  12368. source: "./media/characters/zeta/hand.svg"
  12369. }
  12370. },
  12371. foot: {
  12372. height: math.unit(1.48, "feet"),
  12373. name: "Foot",
  12374. image: {
  12375. source: "./media/characters/zeta/foot.svg"
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Micro",
  12382. height: math.unit(6, "inches")
  12383. },
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(6 + 1 / 12, "feet"),
  12387. default: true
  12388. },
  12389. {
  12390. name: "Macro",
  12391. height: math.unit(20, "feet")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12397. {
  12398. front: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(150, "lb"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/jamie-larsen/front.svg",
  12404. extra: 962 / 933,
  12405. bottom: 0.02
  12406. }
  12407. },
  12408. back: {
  12409. height: math.unit(6, "feet"),
  12410. weight: math.unit(150, "lb"),
  12411. name: "Back",
  12412. image: {
  12413. source: "./media/characters/jamie-larsen/back.svg",
  12414. extra: 997 / 946
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Macro",
  12421. height: math.unit(28 + 7 / 12, "feet"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Macro+",
  12426. height: math.unit(180, "feet")
  12427. },
  12428. {
  12429. name: "Megamacro",
  12430. height: math.unit(10, "miles")
  12431. },
  12432. {
  12433. name: "Gigamacro",
  12434. height: math.unit(200000, "miles")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(120, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/vance/front.svg",
  12447. extra: 1980 / 1890,
  12448. bottom: 0.09
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(120, "lb"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/vance/back.svg",
  12457. extra: 2081 / 1994,
  12458. bottom: 0.014
  12459. }
  12460. },
  12461. hand: {
  12462. height: math.unit(0.88, "feet"),
  12463. name: "Hand",
  12464. image: {
  12465. source: "./media/characters/vance/hand.svg"
  12466. }
  12467. },
  12468. foot: {
  12469. height: math.unit(0.64, "feet"),
  12470. name: "Foot",
  12471. image: {
  12472. source: "./media/characters/vance/foot.svg"
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Small",
  12479. height: math.unit(90, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(100, "meters")
  12485. },
  12486. {
  12487. name: "Megamacro",
  12488. height: math.unit(15, "miles")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6, "feet"),
  12497. weight: math.unit(180, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/xochitl/front.svg",
  12501. extra: 2297 / 2261,
  12502. bottom: 0.065
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(180, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/xochitl/back.svg",
  12511. extra: 2386 / 2354,
  12512. bottom: 0.01
  12513. }
  12514. },
  12515. foot: {
  12516. height: math.unit(6 / 5 * 1.15, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Foot",
  12519. image: {
  12520. source: "./media/characters/xochitl/foot.svg"
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(80, "feet")
  12528. },
  12529. {
  12530. name: "Macro+",
  12531. height: math.unit(400, "feet"),
  12532. default: true
  12533. },
  12534. {
  12535. name: "Gigamacro",
  12536. height: math.unit(80000, "miles")
  12537. },
  12538. {
  12539. name: "Gigamacro+",
  12540. height: math.unit(400000, "miles")
  12541. },
  12542. {
  12543. name: "Teramacro",
  12544. height: math.unit(300, "AU")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/vincent/front.svg",
  12557. extra: 1130 / 1080,
  12558. bottom: 0.055
  12559. }
  12560. },
  12561. beak: {
  12562. height: math.unit(6 * 0.1, "feet"),
  12563. name: "Beak",
  12564. image: {
  12565. source: "./media/characters/vincent/beak.svg"
  12566. }
  12567. },
  12568. hand: {
  12569. height: math.unit(6 * 0.85, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Hand",
  12572. image: {
  12573. source: "./media/characters/vincent/hand.svg"
  12574. }
  12575. },
  12576. foot: {
  12577. height: math.unit(6 * 0.19, "feet"),
  12578. weight: math.unit(150, "lb"),
  12579. name: "Foot",
  12580. image: {
  12581. source: "./media/characters/vincent/foot.svg"
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Base",
  12588. height: math.unit(6 + 5 / 12, "feet"),
  12589. default: true
  12590. },
  12591. {
  12592. name: "Macro",
  12593. height: math.unit(300, "feet")
  12594. },
  12595. {
  12596. name: "Megamacro",
  12597. height: math.unit(2, "miles")
  12598. },
  12599. {
  12600. name: "Gigamacro",
  12601. height: math.unit(1000, "miles")
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(6 + 2 / 12, "feet"),
  12610. weight: math.unit(265, "lb"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/jay/front.svg",
  12614. extra: 1510 / 1430,
  12615. bottom: 0.042
  12616. }
  12617. },
  12618. back: {
  12619. height: math.unit(6 + 2 / 12, "feet"),
  12620. weight: math.unit(265, "lb"),
  12621. name: "Back",
  12622. image: {
  12623. source: "./media/characters/jay/back.svg",
  12624. extra: 1510 / 1430,
  12625. bottom: 0.025
  12626. }
  12627. },
  12628. clothed: {
  12629. height: math.unit(6 + 2 / 12, "feet"),
  12630. weight: math.unit(265, "lb"),
  12631. name: "Front (Clothed)",
  12632. image: {
  12633. source: "./media/characters/jay/clothed.svg",
  12634. extra: 744 / 699,
  12635. bottom: 0.043
  12636. }
  12637. },
  12638. head: {
  12639. height: math.unit(1.772, "feet"),
  12640. name: "Head",
  12641. image: {
  12642. source: "./media/characters/jay/head.svg"
  12643. }
  12644. },
  12645. sizeRay: {
  12646. height: math.unit(1.331, "feet"),
  12647. name: "Size Ray",
  12648. image: {
  12649. source: "./media/characters/jay/size-ray.svg"
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Micro",
  12656. height: math.unit(1, "inch")
  12657. },
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(6 + 2 / 12, "feet"),
  12661. default: true
  12662. },
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(1, "mile")
  12666. },
  12667. {
  12668. name: "Megamacro",
  12669. height: math.unit(100, "miles")
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12675. {
  12676. front: {
  12677. height: math.unit(2, "meters"),
  12678. weight: math.unit(500, "kg"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/coatl/front.svg",
  12682. extra: 3948 / 3500,
  12683. bottom: 0.082
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Normal",
  12690. height: math.unit(4, "meters")
  12691. },
  12692. {
  12693. name: "Macro",
  12694. height: math.unit(100, "meters"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Macro+",
  12699. height: math.unit(300, "meters")
  12700. },
  12701. {
  12702. name: "Megamacro",
  12703. height: math.unit(3, "gigameters")
  12704. },
  12705. {
  12706. name: "Megamacro+",
  12707. height: math.unit(300, "terameters")
  12708. },
  12709. {
  12710. name: "Megamacro++",
  12711. height: math.unit(3, "lightyears")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Shiroryu", species: ["dragon"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(50, "kg"),
  12721. name: "front",
  12722. image: {
  12723. source: "./media/characters/shiroryu/front.svg",
  12724. extra: 1990 / 1935
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Mortal Mingling",
  12731. height: math.unit(3, "meters")
  12732. },
  12733. {
  12734. name: "Kaiju-ish",
  12735. height: math.unit(250, "meters")
  12736. },
  12737. {
  12738. name: "Somewhat Godly",
  12739. height: math.unit(400, "km"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Planetary",
  12744. height: math.unit(300, "megameters")
  12745. },
  12746. {
  12747. name: "Galaxy-dwarfing",
  12748. height: math.unit(450, "kiloparsecs")
  12749. },
  12750. {
  12751. name: "Universe Eater",
  12752. height: math.unit(150, "gigaparsecs")
  12753. },
  12754. {
  12755. name: "Almost Immeasurable",
  12756. height: math.unit(1.3e266, "yottaparsecs")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/umeko/front.svg",
  12769. extra: 1,
  12770. bottom: 0.019
  12771. }
  12772. },
  12773. frontArmored: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(150, "lb"),
  12776. name: "Front (Armored)",
  12777. image: {
  12778. source: "./media/characters/umeko/front-armored.svg",
  12779. extra: 1,
  12780. bottom: 0.021
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Macro",
  12787. height: math.unit(220, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Guardian Dragon",
  12792. height: math.unit(50, "miles")
  12793. },
  12794. {
  12795. name: "Cosmic",
  12796. height: math.unit(800000, "miles")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(6, "feet"),
  12805. weight: math.unit(150, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/cassidy/front.svg",
  12809. extra: 1,
  12810. bottom: 0.043
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Canon Height",
  12817. height: math.unit(120, "feet"),
  12818. default: true
  12819. },
  12820. {
  12821. name: "Macro+",
  12822. height: math.unit(400, "feet")
  12823. },
  12824. {
  12825. name: "Macro++",
  12826. height: math.unit(4000, "feet")
  12827. },
  12828. {
  12829. name: "Megamacro",
  12830. height: math.unit(3, "miles")
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12836. {
  12837. front: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/isaac/front.svg",
  12843. extra: 896 / 815,
  12844. bottom: 0.11
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Human Size",
  12851. height: math.unit(8, "feet"),
  12852. default: true
  12853. },
  12854. {
  12855. name: "Macro",
  12856. height: math.unit(400, "feet")
  12857. },
  12858. {
  12859. name: "Megamacro",
  12860. height: math.unit(50, "miles")
  12861. },
  12862. {
  12863. name: "Canon Height",
  12864. height: math.unit(200, "AU")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(72, "kg"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/sleekit/front.svg",
  12877. extra: 4693 / 4487,
  12878. bottom: 0.012
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Minimum Height",
  12885. height: math.unit(10, "meters")
  12886. },
  12887. {
  12888. name: "Smaller",
  12889. height: math.unit(25, "meters")
  12890. },
  12891. {
  12892. name: "Larger",
  12893. height: math.unit(38, "meters"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Maximum height",
  12898. height: math.unit(100, "meters")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/nillia/front.svg",
  12911. extra: 2195 / 2037,
  12912. bottom: 0.005
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/nillia/back.svg",
  12921. extra: 2195 / 2037,
  12922. bottom: 0.005
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Canon Height",
  12929. height: math.unit(489, "feet"),
  12930. default: true
  12931. }
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/mesmyriza/front.svg",
  12943. extra: 2067 / 1784,
  12944. bottom: 0.035
  12945. }
  12946. },
  12947. foot: {
  12948. height: math.unit(6 / (250 / 35), "feet"),
  12949. name: "Foot",
  12950. image: {
  12951. source: "./media/characters/mesmyriza/foot.svg"
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(457, "meters"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(8, "megameters")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(250, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/saudade/front.svg",
  12976. extra: 1172 / 1139,
  12977. bottom: 0.035
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(3, "inches")
  12985. },
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(6, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(50, "feet")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(2800, "feet")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(5 + 4 / 12, "feet"),
  13006. weight: math.unit(100, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/keireer/front.svg",
  13010. extra: 716 / 666,
  13011. bottom: 0.05
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(5 + 4 / 12, "feet"),
  13019. default: true
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(90, "kg"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/mirja/front.svg",
  13032. extra: 1789 / 1683,
  13033. bottom: 0.05
  13034. }
  13035. },
  13036. frontDressed: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(90, "lb"),
  13039. name: "Front (Dressed)",
  13040. image: {
  13041. source: "./media/characters/mirja/front-dressed.svg",
  13042. extra: 1789 / 1683,
  13043. bottom: 0.05
  13044. }
  13045. },
  13046. back: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(90, "lb"),
  13049. name: "Back",
  13050. image: {
  13051. source: "./media/characters/mirja/back.svg",
  13052. extra: 953 / 917,
  13053. bottom: 0.017
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "\"Incognito\"",
  13060. height: math.unit(3, "meters")
  13061. },
  13062. {
  13063. name: "Strolling Size",
  13064. height: math.unit(15, "km")
  13065. },
  13066. {
  13067. name: "Larger Strolling Size",
  13068. height: math.unit(400, "km")
  13069. },
  13070. {
  13071. name: "Preferred Size",
  13072. height: math.unit(5000, "km")
  13073. },
  13074. {
  13075. name: "True Size",
  13076. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13077. default: true
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(15, "feet"),
  13086. weight: math.unit(880, "kg"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/nightraver/front.svg",
  13090. extra: 2444 / 2160,
  13091. bottom: 0.027
  13092. }
  13093. },
  13094. back: {
  13095. height: math.unit(15, "feet"),
  13096. weight: math.unit(880, "kg"),
  13097. name: "Back",
  13098. image: {
  13099. source: "./media/characters/nightraver/back.svg",
  13100. extra: 2309 / 2180,
  13101. bottom: 0.005
  13102. }
  13103. },
  13104. sole: {
  13105. height: math.unit(2.878, "feet"),
  13106. name: "Sole",
  13107. image: {
  13108. source: "./media/characters/nightraver/sole.svg"
  13109. }
  13110. },
  13111. foot: {
  13112. height: math.unit(2.285, "feet"),
  13113. name: "Foot",
  13114. image: {
  13115. source: "./media/characters/nightraver/foot.svg"
  13116. }
  13117. },
  13118. maw: {
  13119. height: math.unit(2.67, "feet"),
  13120. name: "Maw",
  13121. image: {
  13122. source: "./media/characters/nightraver/maw.svg"
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Micro",
  13129. height: math.unit(1, "cm")
  13130. },
  13131. {
  13132. name: "Normal",
  13133. height: math.unit(15, "feet"),
  13134. default: true
  13135. },
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(300, "feet")
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(300, "miles")
  13143. },
  13144. {
  13145. name: "Gigamacro",
  13146. height: math.unit(10000, "miles")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13152. {
  13153. side: {
  13154. height: math.unit(2, "inches"),
  13155. weight: math.unit(5, "grams"),
  13156. name: "Side",
  13157. image: {
  13158. source: "./media/characters/arc/side.svg"
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Micro",
  13165. height: math.unit(2, "inches"),
  13166. default: true
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(1.1938, "meters"),
  13175. weight: math.unit(54, "kg"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/nebula-shahar/front.svg",
  13179. extra: 1642 / 1436,
  13180. bottom: 0.06
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Megamicro",
  13187. height: math.unit(0.3, "mm")
  13188. },
  13189. {
  13190. name: "Micro",
  13191. height: math.unit(3, "cm")
  13192. },
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(138, "cm"),
  13196. default: true
  13197. },
  13198. {
  13199. name: "Macro",
  13200. height: math.unit(30, "m")
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(5.24, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/shayla/front.svg",
  13213. extra: 1512 / 1414,
  13214. bottom: 0.01
  13215. }
  13216. },
  13217. back: {
  13218. height: math.unit(5.24, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Back",
  13221. image: {
  13222. source: "./media/characters/shayla/back.svg",
  13223. extra: 1512 / 1414
  13224. }
  13225. },
  13226. hand: {
  13227. height: math.unit(0.7781496062992126, "feet"),
  13228. name: "Hand",
  13229. image: {
  13230. source: "./media/characters/shayla/hand.svg"
  13231. }
  13232. },
  13233. foot: {
  13234. height: math.unit(1.4206036745406823, "feet"),
  13235. name: "Foot",
  13236. image: {
  13237. source: "./media/characters/shayla/foot.svg"
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Micro",
  13244. height: math.unit(0.32, "feet")
  13245. },
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(5.24, "feet"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(492.12, "feet")
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(186.41, "miles")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(2.2, "m"),
  13266. weight: math.unit(120, "kg"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/pia-jr/front.svg",
  13270. extra: 1000 / 970,
  13271. bottom: 0.035
  13272. }
  13273. },
  13274. hand: {
  13275. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13276. name: "Hand",
  13277. image: {
  13278. source: "./media/characters/pia-jr/hand.svg"
  13279. }
  13280. },
  13281. paw: {
  13282. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13283. name: "Paw",
  13284. image: {
  13285. source: "./media/characters/pia-jr/paw.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1.2, "cm")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(2.2, "m"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(180, "m")
  13302. },
  13303. {
  13304. name: "Megamacro",
  13305. height: math.unit(420, "km")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(2, "m"),
  13314. weight: math.unit(115, "kg"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/pia-sr/front.svg",
  13318. extra: 760 / 730,
  13319. bottom: 0.015
  13320. }
  13321. },
  13322. back: {
  13323. height: math.unit(2, "m"),
  13324. weight: math.unit(115, "kg"),
  13325. name: "Back",
  13326. image: {
  13327. source: "./media/characters/pia-sr/back.svg",
  13328. extra: 760 / 730,
  13329. bottom: 0.01
  13330. }
  13331. },
  13332. hand: {
  13333. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13334. name: "Hand",
  13335. image: {
  13336. source: "./media/characters/pia-sr/hand.svg"
  13337. }
  13338. },
  13339. foot: {
  13340. height: math.unit(1.83, "feet"),
  13341. name: "Foot",
  13342. image: {
  13343. source: "./media/characters/pia-sr/foot.svg"
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Micro",
  13350. height: math.unit(88, "mm")
  13351. },
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(2, "m"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Macro",
  13359. height: math.unit(200, "m")
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(420, "km")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(8 + 2 / 12, "feet"),
  13372. weight: math.unit(300, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/kibibyte/front.svg",
  13376. extra: 2221 / 2098,
  13377. bottom: 0.04
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(8 + 2 / 12, "feet"),
  13385. default: true
  13386. },
  13387. {
  13388. name: "Socialable Macro",
  13389. height: math.unit(50, "feet")
  13390. },
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(300, "feet")
  13394. },
  13395. {
  13396. name: "Megamacro",
  13397. height: math.unit(500, "miles")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(6, "feet"),
  13406. weight: math.unit(150, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/felix/front.svg",
  13410. extra: 762 / 722,
  13411. bottom: 0.02
  13412. }
  13413. },
  13414. frontClothed: {
  13415. height: math.unit(6, "feet"),
  13416. weight: math.unit(150, "lb"),
  13417. name: "Front (Clothed)",
  13418. image: {
  13419. source: "./media/characters/felix/front-clothed.svg",
  13420. extra: 762 / 722,
  13421. bottom: 0.02
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(6 + 8 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Macro",
  13433. height: math.unit(2600, "feet")
  13434. },
  13435. {
  13436. name: "Megamacro",
  13437. height: math.unit(450, "miles")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6 + 1 / 12, "feet"),
  13446. weight: math.unit(250, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/tobo/front.svg",
  13450. extra: 608 / 586,
  13451. bottom: 0.023
  13452. }
  13453. },
  13454. back: {
  13455. height: math.unit(6 + 1 / 12, "feet"),
  13456. weight: math.unit(250, "lb"),
  13457. name: "Back",
  13458. image: {
  13459. source: "./media/characters/tobo/back.svg",
  13460. extra: 608 / 586
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Nano",
  13467. height: math.unit(2, "nm")
  13468. },
  13469. {
  13470. name: "Megamicro",
  13471. height: math.unit(0.1, "mm")
  13472. },
  13473. {
  13474. name: "Micro",
  13475. height: math.unit(1, "inch"),
  13476. default: true
  13477. },
  13478. {
  13479. name: "Human-sized",
  13480. height: math.unit(6 + 1 / 12, "feet")
  13481. },
  13482. {
  13483. name: "Macro",
  13484. height: math.unit(250, "feet")
  13485. },
  13486. {
  13487. name: "Megamacro",
  13488. height: math.unit(75, "miles")
  13489. },
  13490. {
  13491. name: "Texas-sized",
  13492. height: math.unit(750, "miles")
  13493. },
  13494. {
  13495. name: "Teramacro",
  13496. height: math.unit(50000, "miles")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(269, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/danny-kapowsky/front.svg",
  13509. extra: 766 / 736,
  13510. bottom: 0.044
  13511. }
  13512. },
  13513. back: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(269, "lb"),
  13516. name: "Back",
  13517. image: {
  13518. source: "./media/characters/danny-kapowsky/back.svg",
  13519. extra: 797 / 760,
  13520. bottom: 0.025
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Macro",
  13527. height: math.unit(150, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro+",
  13532. height: math.unit(200, "feet")
  13533. },
  13534. {
  13535. name: "Macro++",
  13536. height: math.unit(300, "feet")
  13537. },
  13538. {
  13539. name: "Macro+++",
  13540. height: math.unit(400, "feet")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13546. {
  13547. side: {
  13548. height: math.unit(6, "feet"),
  13549. weight: math.unit(170, "lb"),
  13550. name: "Side",
  13551. image: {
  13552. source: "./media/characters/finn/side.svg",
  13553. extra: 1953 / 1807,
  13554. bottom: 0.057
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Megamacro",
  13561. height: math.unit(14445, "feet"),
  13562. default: true
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(5 + 6 / 12, "feet"),
  13571. weight: math.unit(125, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/roy/front.svg",
  13575. extra: 1,
  13576. bottom: 0.11
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Micro",
  13583. height: math.unit(3, "inches"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(5 + 6 / 12, "feet")
  13589. },
  13590. {
  13591. name: "Lesser Macro",
  13592. height: math.unit(60, "feet")
  13593. },
  13594. {
  13595. name: "Greater Macro",
  13596. height: math.unit(120, "feet")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(100, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/aevsivs/front.svg",
  13609. extra: 1,
  13610. bottom: 0.03
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(100, "lb"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/aevsivs/back.svg"
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Micro",
  13625. height: math.unit(2, "inches"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(5, "feet")
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(5 + 7 / 12, "feet"),
  13639. weight: math.unit(159, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/hildegard/front.svg",
  13643. extra: 312 / 286,
  13644. bottom: 0.005
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Normal",
  13651. height: math.unit(5 + 7 / 12, "feet"),
  13652. default: true
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13658. {
  13659. bernard: {
  13660. height: math.unit(2 + 7 / 12, "feet"),
  13661. weight: math.unit(66, "lb"),
  13662. name: "Bernard",
  13663. rename: true,
  13664. image: {
  13665. source: "./media/characters/bernard-wilder/bernard.svg",
  13666. extra: 192 / 128,
  13667. bottom: 0.05
  13668. }
  13669. },
  13670. wilder: {
  13671. height: math.unit(5 + 8 / 12, "feet"),
  13672. weight: math.unit(143, "lb"),
  13673. name: "Wilder",
  13674. rename: true,
  13675. image: {
  13676. source: "./media/characters/bernard-wilder/wilder.svg",
  13677. extra: 361 / 312,
  13678. bottom: 0.02
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(2 + 7 / 12, "feet"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13692. {
  13693. anthro: {
  13694. height: math.unit(6 + 1 / 12, "feet"),
  13695. weight: math.unit(155, "lb"),
  13696. name: "Anthro",
  13697. image: {
  13698. source: "./media/characters/hearth/anthro.svg",
  13699. extra: 260 / 250,
  13700. bottom: 0.02
  13701. }
  13702. },
  13703. feral: {
  13704. height: math.unit(3.78, "feet"),
  13705. weight: math.unit(35, "kg"),
  13706. name: "Feral",
  13707. image: {
  13708. source: "./media/characters/hearth/feral.svg",
  13709. extra: 153 / 135,
  13710. bottom: 0.03
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(6 + 1 / 12, "feet"),
  13718. default: true
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(182, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/ingrid/front.svg",
  13731. extra: 294 / 268,
  13732. bottom: 0.027
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Normal",
  13739. height: math.unit(6, "feet"),
  13740. default: true
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13746. {
  13747. eevee: {
  13748. height: math.unit(2 + 10 / 12, "feet"),
  13749. weight: math.unit(86, "lb"),
  13750. name: "Malgam",
  13751. image: {
  13752. source: "./media/characters/malgam/eevee.svg",
  13753. extra: 218 / 180,
  13754. bottom: 0.2
  13755. }
  13756. },
  13757. sylveon: {
  13758. height: math.unit(4, "feet"),
  13759. weight: math.unit(101, "lb"),
  13760. name: "Future Malgam",
  13761. rename: true,
  13762. image: {
  13763. source: "./media/characters/malgam/sylveon.svg",
  13764. extra: 371 / 325,
  13765. bottom: 0.015
  13766. }
  13767. },
  13768. gigantamax: {
  13769. height: math.unit(50, "feet"),
  13770. name: "Gigantamax Malgam",
  13771. rename: true,
  13772. image: {
  13773. source: "./media/characters/malgam/gigantamax.svg"
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(2 + 10 / 12, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(5 + 11 / 12, "feet"),
  13790. weight: math.unit(188, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/fleur/front.svg",
  13794. extra: 309 / 283,
  13795. bottom: 0.007
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(5 + 11 / 12, "feet"),
  13803. default: true
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(5 + 4 / 12, "feet"),
  13812. weight: math.unit(122, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/jude/front.svg",
  13816. extra: 288 / 273,
  13817. bottom: 0.03
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Normal",
  13824. height: math.unit(5 + 4 / 12, "feet"),
  13825. default: true
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(5 + 11 / 12, "feet"),
  13834. weight: math.unit(190, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/seara/front.svg",
  13838. extra: 1,
  13839. bottom: 0.05
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(5 + 11 / 12, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(16 + 5 / 12, "feet"),
  13856. weight: math.unit(524, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/caspian/front.svg",
  13860. extra: 1,
  13861. bottom: 0.04
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(16 + 5 / 12, "feet"),
  13869. default: true
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13875. {
  13876. front: {
  13877. height: math.unit(5 + 7 / 12, "feet"),
  13878. weight: math.unit(170, "lb"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/mika/front.svg",
  13882. extra: 1,
  13883. bottom: 0.016
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(5 + 7 / 12, "feet"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13897. {
  13898. front: {
  13899. height: math.unit(6 + 2 / 12, "feet"),
  13900. weight: math.unit(268, "lb"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/sol/front.svg",
  13904. extra: 247 / 231,
  13905. bottom: 0.05
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(6 + 2 / 12, "feet"),
  13913. default: true
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13919. {
  13920. buizel: {
  13921. height: math.unit(2 + 5 / 12, "feet"),
  13922. weight: math.unit(87, "lb"),
  13923. name: "Buizel",
  13924. image: {
  13925. source: "./media/characters/umiko/buizel.svg",
  13926. extra: 172 / 157,
  13927. bottom: 0.01
  13928. }
  13929. },
  13930. floatzel: {
  13931. height: math.unit(5 + 9 / 12, "feet"),
  13932. weight: math.unit(250, "lb"),
  13933. name: "Floatzel",
  13934. image: {
  13935. source: "./media/characters/umiko/floatzel.svg",
  13936. extra: 262 / 248
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Normal",
  13943. height: math.unit(2 + 5 / 12, "feet"),
  13944. default: true
  13945. },
  13946. ]
  13947. ))
  13948. characterMakers.push(() => makeCharacter(
  13949. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13950. {
  13951. front: {
  13952. height: math.unit(6 + 2 / 12, "feet"),
  13953. weight: math.unit(146, "lb"),
  13954. name: "Front",
  13955. image: {
  13956. source: "./media/characters/iliac/front.svg",
  13957. extra: 389 / 365,
  13958. bottom: 0.035
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Normal",
  13965. height: math.unit(6 + 2 / 12, "feet"),
  13966. default: true
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(170, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/topaz/front.svg",
  13979. extra: 317 / 303,
  13980. bottom: 0.055
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Normal",
  13987. height: math.unit(6, "feet"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(5 + 11 / 12, "feet"),
  13997. weight: math.unit(144, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/gabriel/front.svg",
  14001. extra: 285 / 262,
  14002. bottom: 0.004
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(5 + 11 / 12, "feet"),
  14010. default: true
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14016. {
  14017. side: {
  14018. height: math.unit(6 + 5 / 12, "feet"),
  14019. weight: math.unit(300, "lb"),
  14020. name: "Side",
  14021. image: {
  14022. source: "./media/characters/tempest-suicune/side.svg",
  14023. extra: 195 / 154,
  14024. bottom: 0.04
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(6 + 5 / 12, "feet"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14038. {
  14039. front: {
  14040. height: math.unit(7 + 2 / 12, "feet"),
  14041. weight: math.unit(322, "lb"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/vulcan/front.svg",
  14045. extra: 154 / 147,
  14046. bottom: 0.04
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(7 + 2 / 12, "feet"),
  14054. default: true
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(5 + 10 / 12, "feet"),
  14063. weight: math.unit(264, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/gault/front.svg",
  14067. extra: 161 / 140,
  14068. bottom: 0.028
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Normal",
  14075. height: math.unit(5 + 10 / 12, "feet"),
  14076. default: true
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(150, "lb"),
  14086. name: "Front",
  14087. image: {
  14088. source: "./media/characters/shard/front.svg",
  14089. extra: 273 / 238,
  14090. bottom: 0.02
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(3 + 6 / 12, "feet"),
  14098. default: true
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(5 + 11 / 12, "feet"),
  14107. weight: math.unit(146, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/ashe/front.svg",
  14111. extra: 400 / 373,
  14112. bottom: 0.01
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(5 + 11 / 12, "feet"),
  14120. default: true
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(5 + 5 / 12, "feet"),
  14129. weight: math.unit(135, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/beatrix/front.svg",
  14133. extra: 392 / 379,
  14134. bottom: 0.01
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Normal",
  14141. height: math.unit(6, "feet"),
  14142. default: true
  14143. },
  14144. ]
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(150, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/ignatius/front.svg",
  14155. extra: 245 / 222,
  14156. bottom: 0.01
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(5 + 5 / 12, "feet"),
  14164. default: true
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6 + 2 / 12, "feet"),
  14173. weight: math.unit(138, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/mei-li/front.svg",
  14177. extra: 237 / 229,
  14178. bottom: 0.03
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(6 + 2 / 12, "feet"),
  14186. default: true
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(2 + 4 / 12, "feet"),
  14195. weight: math.unit(62, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/puru/front.svg",
  14199. extra: 206 / 149,
  14200. bottom: 0.06
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Normal",
  14207. height: math.unit(2 + 4 / 12, "feet"),
  14208. default: true
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14214. {
  14215. taur: {
  14216. height: math.unit(11, "feet"),
  14217. weight: math.unit(500, "lb"),
  14218. name: "Taur",
  14219. image: {
  14220. source: "./media/characters/kee/taur.svg",
  14221. extra: 1,
  14222. bottom: 0.04
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(11, "feet"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14236. {
  14237. anthro: {
  14238. height: math.unit(7, "feet"),
  14239. weight: math.unit(190, "lb"),
  14240. name: "Anthro",
  14241. image: {
  14242. source: "./media/characters/cobalt-dracha/anthro.svg",
  14243. extra: 231 / 225,
  14244. bottom: 0.04
  14245. }
  14246. },
  14247. feral: {
  14248. height: math.unit(9 + 7 / 12, "feet"),
  14249. weight: math.unit(294, "lb"),
  14250. name: "Feral",
  14251. image: {
  14252. source: "./media/characters/cobalt-dracha/feral.svg",
  14253. extra: 692 / 633,
  14254. bottom: 0.05
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(7, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Java", species: ["snake"], tags: ["naga"] },
  14268. {
  14269. fallen: {
  14270. height: math.unit(11 + 8 / 12, "feet"),
  14271. weight: math.unit(485, "lb"),
  14272. name: "Java (Fallen)",
  14273. rename: true,
  14274. image: {
  14275. source: "./media/characters/java/fallen.svg",
  14276. extra: 226 / 208,
  14277. bottom: 0.005
  14278. }
  14279. },
  14280. godkin: {
  14281. height: math.unit(10 + 6 / 12, "feet"),
  14282. weight: math.unit(328, "lb"),
  14283. name: "Java (Godkin)",
  14284. rename: true,
  14285. image: {
  14286. source: "./media/characters/java/godkin.svg",
  14287. extra: 270 / 262,
  14288. bottom: 0.02
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(11 + 8 / 12, "feet"),
  14296. default: true
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(7 + 8 / 12, "feet"),
  14305. weight: math.unit(320, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/skoll/front.svg",
  14309. extra: 232 / 220,
  14310. bottom: 0.02
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Normal",
  14317. height: math.unit(7 + 8 / 12, "feet"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(5 + 9 / 12, "feet"),
  14327. weight: math.unit(170, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/purna/front.svg",
  14331. extra: 239 / 229,
  14332. bottom: 0.01
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(5 + 9 / 12, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(5 + 9 / 12, "feet"),
  14349. weight: math.unit(142, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/kuva/front.svg",
  14353. extra: 281 / 271,
  14354. bottom: 0.006
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Normal",
  14361. height: math.unit(5 + 9 / 12, "feet"),
  14362. default: true
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14368. {
  14369. anthro: {
  14370. height: math.unit(9 + 2 / 12, "feet"),
  14371. weight: math.unit(270, "lb"),
  14372. name: "Anthro",
  14373. image: {
  14374. source: "./media/characters/embra/anthro.svg",
  14375. extra: 200 / 187,
  14376. bottom: 0.02
  14377. }
  14378. },
  14379. feral: {
  14380. height: math.unit(18 + 8 / 12, "feet"),
  14381. weight: math.unit(576, "lb"),
  14382. name: "Feral",
  14383. image: {
  14384. source: "./media/characters/embra/feral.svg",
  14385. extra: 152 / 137,
  14386. bottom: 0.037
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(9 + 2 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14400. {
  14401. anthro: {
  14402. height: math.unit(10 + 9 / 12, "feet"),
  14403. weight: math.unit(224, "lb"),
  14404. name: "Anthro",
  14405. image: {
  14406. source: "./media/characters/grottos/anthro.svg",
  14407. extra: 350 / 332,
  14408. bottom: 0.045
  14409. }
  14410. },
  14411. feral: {
  14412. height: math.unit(20 + 7 / 12, "feet"),
  14413. weight: math.unit(629, "lb"),
  14414. name: "Feral",
  14415. image: {
  14416. source: "./media/characters/grottos/feral.svg",
  14417. extra: 207 / 190,
  14418. bottom: 0.05
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(10 + 9 / 12, "feet"),
  14426. default: true
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14432. {
  14433. anthro: {
  14434. height: math.unit(9 + 6 / 12, "feet"),
  14435. weight: math.unit(298, "lb"),
  14436. name: "Anthro",
  14437. image: {
  14438. source: "./media/characters/frifna/anthro.svg",
  14439. extra: 282 / 269,
  14440. bottom: 0.015
  14441. }
  14442. },
  14443. feral: {
  14444. height: math.unit(16 + 2 / 12, "feet"),
  14445. weight: math.unit(624, "lb"),
  14446. name: "Feral",
  14447. image: {
  14448. source: "./media/characters/frifna/feral.svg"
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(9 + 6 / 12, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(6 + 2 / 12, "feet"),
  14465. weight: math.unit(168, "lb"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/elise/front.svg",
  14469. extra: 276 / 271
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(6 + 2 / 12, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(5 + 10 / 12, "feet"),
  14486. weight: math.unit(210, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/glade/front.svg",
  14490. extra: 258 / 247,
  14491. bottom: 0.008
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(5 + 10 / 12, "feet"),
  14499. default: true
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(5 + 10 / 12, "feet"),
  14508. weight: math.unit(129, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/rina/front.svg",
  14512. extra: 266 / 255,
  14513. bottom: 0.005
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(5 + 10 / 12, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14527. {
  14528. front: {
  14529. height: math.unit(6 + 1 / 12, "feet"),
  14530. weight: math.unit(192, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/veronica/front.svg",
  14534. extra: 319 / 309,
  14535. bottom: 0.005
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(6 + 1 / 12, "feet"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(9 + 3 / 12, "feet"),
  14552. weight: math.unit(1100, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/braxton/front.svg",
  14556. extra: 1057 / 984,
  14557. bottom: 0.05
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(9 + 3 / 12, "feet")
  14565. },
  14566. {
  14567. name: "Giant",
  14568. height: math.unit(300, "feet"),
  14569. default: true
  14570. },
  14571. {
  14572. name: "Macro",
  14573. height: math.unit(700, "feet")
  14574. },
  14575. {
  14576. name: "Megamacro",
  14577. height: math.unit(6000, "feet")
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14583. {
  14584. front: {
  14585. height: math.unit(6 + 7 / 12, "feet"),
  14586. weight: math.unit(150, "lb"),
  14587. name: "Front",
  14588. image: {
  14589. source: "./media/characters/blue-feyonics/front.svg",
  14590. extra: 1403 / 1306,
  14591. bottom: 0.047
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(6 + 7 / 12, "feet"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(1.8, "meters"),
  14608. weight: math.unit(60, "kg"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/maxwell/front.svg",
  14612. extra: 2060 / 1873
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(1, "mm")
  14620. },
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(1.8, "meter"),
  14624. default: true
  14625. },
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(30, "meters")
  14629. },
  14630. {
  14631. name: "Megamacro",
  14632. height: math.unit(10, "km")
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6, "feet"),
  14641. weight: math.unit(150, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/jack/front.svg",
  14645. extra: 1754 / 1640,
  14646. bottom: 0.01
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(80000, "feet"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Max size",
  14658. height: math.unit(10, "lightyears")
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14664. {
  14665. upright: {
  14666. height: math.unit(7, "feet"),
  14667. weight: math.unit(170, "lb"),
  14668. name: "Upright",
  14669. image: {
  14670. source: "./media/characters/cafat/upright.svg",
  14671. bottom: 0.01
  14672. }
  14673. },
  14674. uprightFull: {
  14675. height: math.unit(7, "feet"),
  14676. weight: math.unit(170, "lb"),
  14677. name: "Upright (Full)",
  14678. image: {
  14679. source: "./media/characters/cafat/upright-full.svg",
  14680. bottom: 0.01
  14681. }
  14682. },
  14683. side: {
  14684. height: math.unit(5, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Side",
  14687. image: {
  14688. source: "./media/characters/cafat/side.svg"
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Small",
  14695. height: math.unit(7, "feet"),
  14696. default: true
  14697. },
  14698. {
  14699. name: "Large",
  14700. height: math.unit(15.5, "feet")
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(6, "feet"),
  14709. weight: math.unit(150, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/verin-raharra/front.svg",
  14713. extra: 5019 / 4835,
  14714. bottom: 0.023
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(7 + 5 / 12, "feet"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "Upsized",
  14726. height: math.unit(20, "feet")
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(7, "feet"),
  14735. weight: math.unit(230, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/nakata/front.svg",
  14739. extra: 1.005,
  14740. bottom: 0.01
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(7, "feet"),
  14748. default: true
  14749. },
  14750. {
  14751. name: "Big",
  14752. height: math.unit(14, "feet")
  14753. },
  14754. {
  14755. name: "Macro",
  14756. height: math.unit(400, "feet")
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(4.91, "feet"),
  14765. weight: math.unit(100, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/lily/front.svg",
  14769. extra: 1585 / 1415,
  14770. bottom: 0.02
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(4.91, "feet"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14784. {
  14785. laying: {
  14786. height: math.unit(4 + 4 / 12, "feet"),
  14787. weight: math.unit(600, "lb"),
  14788. name: "Laying",
  14789. image: {
  14790. source: "./media/characters/sheila/laying.svg",
  14791. extra: 1333 / 1265,
  14792. bottom: 0.16
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(4 + 4 / 12, "feet"),
  14800. default: true
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(190, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/sax/front.svg",
  14813. extra: 1187 / 973,
  14814. bottom: 0.042
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Micro",
  14821. height: math.unit(4, "inches"),
  14822. default: true
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/pandora/front.svg",
  14835. extra: 2720 / 2556,
  14836. bottom: 0.015
  14837. }
  14838. },
  14839. back: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Back",
  14843. image: {
  14844. source: "./media/characters/pandora/back.svg",
  14845. extra: 2720 / 2556,
  14846. bottom: 0.01
  14847. }
  14848. },
  14849. beans: {
  14850. height: math.unit(6 / 8, "feet"),
  14851. name: "Beans",
  14852. image: {
  14853. source: "./media/characters/pandora/beans.svg"
  14854. }
  14855. },
  14856. skirt: {
  14857. height: math.unit(6, "feet"),
  14858. weight: math.unit(150, "lb"),
  14859. name: "Skirt",
  14860. image: {
  14861. source: "./media/characters/pandora/skirt.svg",
  14862. extra: 1622 / 1525,
  14863. bottom: 0.015
  14864. }
  14865. },
  14866. hoodie: {
  14867. height: math.unit(6, "feet"),
  14868. weight: math.unit(150, "lb"),
  14869. name: "Hoodie",
  14870. image: {
  14871. source: "./media/characters/pandora/hoodie.svg",
  14872. extra: 1622 / 1525,
  14873. bottom: 0.015
  14874. }
  14875. },
  14876. casual: {
  14877. height: math.unit(6, "feet"),
  14878. weight: math.unit(150, "lb"),
  14879. name: "Casual",
  14880. image: {
  14881. source: "./media/characters/pandora/casual.svg",
  14882. extra: 1622 / 1525,
  14883. bottom: 0.015
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(6, "feet")
  14891. },
  14892. {
  14893. name: "Big Steppy",
  14894. height: math.unit(1, "km"),
  14895. default: true
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14901. {
  14902. side: {
  14903. height: math.unit(10, "feet"),
  14904. weight: math.unit(800, "kg"),
  14905. name: "Side",
  14906. image: {
  14907. source: "./media/characters/venio-darcony/side.svg",
  14908. extra: 1373 / 1003,
  14909. bottom: 0.037
  14910. }
  14911. },
  14912. front: {
  14913. height: math.unit(19, "feet"),
  14914. weight: math.unit(800, "kg"),
  14915. name: "Front",
  14916. image: {
  14917. source: "./media/characters/venio-darcony/front.svg"
  14918. }
  14919. },
  14920. back: {
  14921. height: math.unit(19, "feet"),
  14922. weight: math.unit(800, "kg"),
  14923. name: "Back",
  14924. image: {
  14925. source: "./media/characters/venio-darcony/back.svg"
  14926. }
  14927. },
  14928. sideNsfw: {
  14929. height: math.unit(10, "feet"),
  14930. weight: math.unit(800, "kg"),
  14931. name: "Side (NSFW)",
  14932. image: {
  14933. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14934. extra: 1373 / 1003,
  14935. bottom: 0.037
  14936. }
  14937. },
  14938. frontNsfw: {
  14939. height: math.unit(19, "feet"),
  14940. weight: math.unit(800, "kg"),
  14941. name: "Front (NSFW)",
  14942. image: {
  14943. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14944. }
  14945. },
  14946. backNsfw: {
  14947. height: math.unit(19, "feet"),
  14948. weight: math.unit(800, "kg"),
  14949. name: "Back (NSFW)",
  14950. image: {
  14951. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14952. }
  14953. },
  14954. sideArmored: {
  14955. height: math.unit(10, "feet"),
  14956. weight: math.unit(800, "kg"),
  14957. name: "Side (Armored)",
  14958. image: {
  14959. source: "./media/characters/venio-darcony/side-armored.svg",
  14960. extra: 1373 / 1003,
  14961. bottom: 0.037
  14962. }
  14963. },
  14964. frontArmored: {
  14965. height: math.unit(19, "feet"),
  14966. weight: math.unit(900, "kg"),
  14967. name: "Front (Armored)",
  14968. image: {
  14969. source: "./media/characters/venio-darcony/front-armored.svg"
  14970. }
  14971. },
  14972. backArmored: {
  14973. height: math.unit(19, "feet"),
  14974. weight: math.unit(900, "kg"),
  14975. name: "Back (Armored)",
  14976. image: {
  14977. source: "./media/characters/venio-darcony/back-armored.svg"
  14978. }
  14979. },
  14980. sword: {
  14981. height: math.unit(10, "feet"),
  14982. weight: math.unit(50, "lb"),
  14983. name: "Sword",
  14984. image: {
  14985. source: "./media/characters/venio-darcony/sword.svg"
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(10, "feet")
  14993. },
  14994. {
  14995. name: "Macro",
  14996. height: math.unit(130, "feet"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Macro+",
  15001. height: math.unit(240, "feet")
  15002. },
  15003. ]
  15004. ))
  15005. characterMakers.push(() => makeCharacter(
  15006. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15007. {
  15008. front: {
  15009. height: math.unit(6, "feet"),
  15010. weight: math.unit(150, "lb"),
  15011. name: "Front",
  15012. image: {
  15013. source: "./media/characters/veski/front.svg",
  15014. extra: 1299 / 1225,
  15015. bottom: 0.04
  15016. }
  15017. },
  15018. back: {
  15019. height: math.unit(6, "feet"),
  15020. weight: math.unit(150, "lb"),
  15021. name: "Back",
  15022. image: {
  15023. source: "./media/characters/veski/back.svg",
  15024. extra: 1299 / 1225,
  15025. bottom: 0.008
  15026. }
  15027. },
  15028. maw: {
  15029. height: math.unit(1.5 * 1.21, "feet"),
  15030. name: "Maw",
  15031. image: {
  15032. source: "./media/characters/veski/maw.svg"
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Macro",
  15039. height: math.unit(2, "km"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(5 + 7 / 12, "feet"),
  15049. name: "Front",
  15050. image: {
  15051. source: "./media/characters/isabelle/front.svg",
  15052. extra: 2130 / 1976,
  15053. bottom: 0.05
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Supermicro",
  15060. height: math.unit(10, "micrometers")
  15061. },
  15062. {
  15063. name: "Micro",
  15064. height: math.unit(1, "inch")
  15065. },
  15066. {
  15067. name: "Tiny",
  15068. height: math.unit(5, "inches")
  15069. },
  15070. {
  15071. name: "Standard",
  15072. height: math.unit(5 + 7 / 12, "inches")
  15073. },
  15074. {
  15075. name: "Macro",
  15076. height: math.unit(80, "meters"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Megamacro",
  15081. height: math.unit(250, "meters")
  15082. },
  15083. {
  15084. name: "Gigamacro",
  15085. height: math.unit(5, "km")
  15086. },
  15087. {
  15088. name: "Cosmic",
  15089. height: math.unit(2.5e6, "miles")
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(6, "feet"),
  15098. weight: math.unit(150, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/hanzo/front.svg",
  15102. extra: 374 / 344,
  15103. bottom: 0.02
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(8, "feet"),
  15111. default: true
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(7, "feet"),
  15120. weight: math.unit(130, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/anna/front.svg",
  15124. extra: 169 / 145,
  15125. bottom: 0.06
  15126. }
  15127. },
  15128. full: {
  15129. height: math.unit(4.96, "feet"),
  15130. weight: math.unit(220, "lb"),
  15131. name: "Full",
  15132. image: {
  15133. source: "./media/characters/anna/full.svg",
  15134. extra: 138 / 114,
  15135. bottom: 0.15
  15136. }
  15137. },
  15138. tongue: {
  15139. height: math.unit(2.53, "feet"),
  15140. name: "Tongue",
  15141. image: {
  15142. source: "./media/characters/anna/tongue.svg"
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(7, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(7, "feet"),
  15159. weight: math.unit(150, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/ian-corvid/front.svg",
  15163. extra: 150 / 142,
  15164. bottom: 0.02
  15165. }
  15166. },
  15167. back: {
  15168. height: math.unit(7, "feet"),
  15169. weight: math.unit(150, "lb"),
  15170. name: "Back",
  15171. image: {
  15172. source: "./media/characters/ian-corvid/back.svg",
  15173. extra: 150 / 143,
  15174. bottom: 0.01
  15175. }
  15176. },
  15177. stomping: {
  15178. height: math.unit(7, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Stomping",
  15181. image: {
  15182. source: "./media/characters/ian-corvid/stomping.svg",
  15183. extra: 76 / 72
  15184. }
  15185. },
  15186. sitting: {
  15187. height: math.unit(7 / 1.8, "feet"),
  15188. weight: math.unit(150, "lb"),
  15189. name: "Sitting",
  15190. image: {
  15191. source: "./media/characters/ian-corvid/sitting.svg",
  15192. extra: 1400 / 1269,
  15193. bottom: 0.15
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Tiny Microw",
  15200. height: math.unit(1, "inch")
  15201. },
  15202. {
  15203. name: "Microw",
  15204. height: math.unit(6, "inches")
  15205. },
  15206. {
  15207. name: "Crow",
  15208. height: math.unit(7 + 1 / 12, "feet"),
  15209. default: true
  15210. },
  15211. {
  15212. name: "Macrow",
  15213. height: math.unit(176, "feet")
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15219. {
  15220. front: {
  15221. height: math.unit(5 + 7 / 12, "feet"),
  15222. weight: math.unit(147, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/natalie-kellon/front.svg",
  15226. extra: 1214 / 1141,
  15227. bottom: 0.02
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Micro",
  15234. height: math.unit(1 / 16, "inch")
  15235. },
  15236. {
  15237. name: "Tiny",
  15238. height: math.unit(4, "inches")
  15239. },
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(5 + 7 / 12, "feet"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Amazon",
  15247. height: math.unit(12, "feet")
  15248. },
  15249. {
  15250. name: "Giantess",
  15251. height: math.unit(160, "meters")
  15252. },
  15253. {
  15254. name: "Titaness",
  15255. height: math.unit(800, "meters")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(150, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/alluria/front.svg",
  15268. extra: 806 / 738,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. side: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Side",
  15276. image: {
  15277. source: "./media/characters/alluria/side.svg",
  15278. extra: 800 / 750,
  15279. }
  15280. },
  15281. back: {
  15282. height: math.unit(6, "feet"),
  15283. weight: math.unit(150, "lb"),
  15284. name: "Back",
  15285. image: {
  15286. source: "./media/characters/alluria/back.svg",
  15287. extra: 806 / 738,
  15288. }
  15289. },
  15290. frontMaid: {
  15291. height: math.unit(6, "feet"),
  15292. weight: math.unit(150, "lb"),
  15293. name: "Front (Maid)",
  15294. image: {
  15295. source: "./media/characters/alluria/front-maid.svg",
  15296. extra: 806 / 738,
  15297. bottom: 0.01
  15298. }
  15299. },
  15300. sideMaid: {
  15301. height: math.unit(6, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Side (Maid)",
  15304. image: {
  15305. source: "./media/characters/alluria/side-maid.svg",
  15306. extra: 800 / 750,
  15307. bottom: 0.005
  15308. }
  15309. },
  15310. backMaid: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(150, "lb"),
  15313. name: "Back (Maid)",
  15314. image: {
  15315. source: "./media/characters/alluria/back-maid.svg",
  15316. extra: 806 / 738,
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Micro",
  15323. height: math.unit(6, "inches"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(150, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/kyle/front.svg",
  15337. extra: 1069 / 962,
  15338. bottom: 77.228 / 1727.45
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(150, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15352. {
  15353. front: {
  15354. height: math.unit(6, "feet"),
  15355. weight: math.unit(300, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/duncan/front.svg",
  15359. extra: 1650 / 1482,
  15360. bottom: 0.05
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Macro",
  15367. height: math.unit(100, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(5 + 4 / 12, "feet"),
  15377. weight: math.unit(220, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/memory/front.svg",
  15381. extra: 3641 / 3545,
  15382. bottom: 0.03
  15383. }
  15384. },
  15385. back: {
  15386. height: math.unit(5 + 4 / 12, "feet"),
  15387. weight: math.unit(220, "lb"),
  15388. name: "Back",
  15389. image: {
  15390. source: "./media/characters/memory/back.svg",
  15391. extra: 3641 / 3545,
  15392. bottom: 0.025
  15393. }
  15394. },
  15395. frontSkirt: {
  15396. height: math.unit(5 + 4 / 12, "feet"),
  15397. weight: math.unit(220, "lb"),
  15398. name: "Front (Skirt)",
  15399. image: {
  15400. source: "./media/characters/memory/front-skirt.svg",
  15401. extra: 3641 / 3545,
  15402. bottom: 0.03
  15403. }
  15404. },
  15405. frontDress: {
  15406. height: math.unit(5 + 4 / 12, "feet"),
  15407. weight: math.unit(220, "lb"),
  15408. name: "Front (Dress)",
  15409. image: {
  15410. source: "./media/characters/memory/front-dress.svg",
  15411. extra: 3641 / 3545,
  15412. bottom: 0.03
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Micro",
  15419. height: math.unit(6, "inches"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(5 + 4 / 12, "feet")
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(4 + 11 / 12, "feet"),
  15433. weight: math.unit(100, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/luno/front.svg",
  15437. extra: 1535 / 1487,
  15438. bottom: 0.03
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Micro",
  15445. height: math.unit(3, "inches")
  15446. },
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(4 + 11 / 12, "feet"),
  15450. default: true
  15451. },
  15452. {
  15453. name: "Macro",
  15454. height: math.unit(300, "feet")
  15455. },
  15456. {
  15457. name: "Megamacro",
  15458. height: math.unit(700, "miles")
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(6 + 2 / 12, "feet"),
  15467. weight: math.unit(170, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/jamesy/front.svg",
  15471. extra: 440 / 382,
  15472. bottom: 0.005
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Micro",
  15479. height: math.unit(3, "inches")
  15480. },
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(6 + 2 / 12, "feet"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(300, "feet")
  15489. },
  15490. {
  15491. name: "Megamacro",
  15492. height: math.unit(700, "miles")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(160, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/mark/front.svg",
  15505. extra: 3300 / 3100,
  15506. bottom: 136.42 / 3440.47
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(120, "meters")
  15514. },
  15515. {
  15516. name: "Bigger Macro",
  15517. height: math.unit(350, "meters")
  15518. },
  15519. {
  15520. name: "Megamacro",
  15521. height: math.unit(8, "km"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Continental",
  15526. height: math.unit(4550, "km")
  15527. },
  15528. {
  15529. name: "Planetary",
  15530. height: math.unit(65000, "km")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(400, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/mac/front.svg",
  15543. extra: 1048 / 987.7,
  15544. bottom: 60 / 1107.6,
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Macro",
  15551. height: math.unit(500, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(5 + 2 / 12, "feet"),
  15561. weight: math.unit(190, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/bari/front.svg",
  15565. extra: 3156 / 2880,
  15566. bottom: 0.03
  15567. }
  15568. },
  15569. back: {
  15570. height: math.unit(5 + 2 / 12, "feet"),
  15571. weight: math.unit(190, "lb"),
  15572. name: "Back",
  15573. image: {
  15574. source: "./media/characters/bari/back.svg",
  15575. extra: 3260 / 2834,
  15576. bottom: 0.025
  15577. }
  15578. },
  15579. frontPlush: {
  15580. height: math.unit(5 + 2 / 12, "feet"),
  15581. weight: math.unit(190, "lb"),
  15582. name: "Front (Plush)",
  15583. image: {
  15584. source: "./media/characters/bari/front-plush.svg",
  15585. extra: 1112 / 1061,
  15586. bottom: 0.002
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Micro",
  15593. height: math.unit(3, "inches")
  15594. },
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(5 + 2 / 12, "feet"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Macro",
  15602. height: math.unit(20, "feet")
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6 + 1 / 12, "feet"),
  15611. weight: math.unit(275, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/hunter-misha-raven/front.svg"
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Mortal",
  15621. height: math.unit(6 + 1 / 12, "feet")
  15622. },
  15623. {
  15624. name: "Divine",
  15625. height: math.unit(1.12134e34, "parsecs"),
  15626. default: true
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(6 + 3 / 12, "feet"),
  15635. weight: math.unit(220, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/max-calore/front.svg",
  15639. extra: 1700 / 1648,
  15640. bottom: 0.01
  15641. }
  15642. },
  15643. back: {
  15644. height: math.unit(6 + 3 / 12, "feet"),
  15645. weight: math.unit(220, "lb"),
  15646. name: "Back",
  15647. image: {
  15648. source: "./media/characters/max-calore/back.svg",
  15649. extra: 1700 / 1648,
  15650. bottom: 0.01
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(6 + 3 / 12, "feet"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15664. {
  15665. side: {
  15666. height: math.unit(2 + 8 / 12, "feet"),
  15667. weight: math.unit(99, "lb"),
  15668. name: "Side",
  15669. image: {
  15670. source: "./media/characters/aspen/side.svg",
  15671. extra: 152 / 138,
  15672. bottom: 0.032
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(2 + 8 / 12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15686. {
  15687. side: {
  15688. height: math.unit(3 + 2 / 12, "feet"),
  15689. weight: math.unit(224, "lb"),
  15690. name: "Side",
  15691. image: {
  15692. source: "./media/characters/sheila-feral-wolf/side.svg",
  15693. extra: 179 / 166,
  15694. bottom: 0.03
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(3 + 2 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15708. {
  15709. side: {
  15710. height: math.unit(1 + 9 / 12, "feet"),
  15711. weight: math.unit(38, "lb"),
  15712. name: "Side",
  15713. image: {
  15714. source: "./media/characters/michelle/side.svg",
  15715. extra: 147 / 136.7,
  15716. bottom: 0.03
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(1 + 9 / 12, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15730. {
  15731. front: {
  15732. height: math.unit(1 + 1 / 12, "feet"),
  15733. weight: math.unit(18, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/nino/front.svg"
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(1 + 1 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(1, "feet"),
  15753. weight: math.unit(16, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/viola/front.svg"
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(1, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(6 + 5 / 12, "feet"),
  15773. weight: math.unit(580, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/atlas/front.svg",
  15777. extra: 298.5 / 290,
  15778. bottom: 0.015
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(6 + 5 / 12, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15792. {
  15793. side: {
  15794. height: math.unit(1 + 10 / 12, "feet"),
  15795. weight: math.unit(25, "lb"),
  15796. name: "Side",
  15797. image: {
  15798. source: "./media/characters/davy/side.svg",
  15799. extra: 200 / 170,
  15800. bottom: 0.01
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(1 + 10 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15814. {
  15815. side: {
  15816. height: math.unit(4 + 8 / 12, "feet"),
  15817. weight: math.unit(166, "lb"),
  15818. name: "Side",
  15819. image: {
  15820. source: "./media/characters/fiona/side.svg",
  15821. extra: 232 / 220,
  15822. bottom: 0.03
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(4 + 8 / 12, "feet"),
  15830. default: true
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15836. {
  15837. front: {
  15838. height: math.unit(2, "feet"),
  15839. weight: math.unit(62, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/lyla/front.svg",
  15843. bottom: 0.1
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(2, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15857. {
  15858. side: {
  15859. height: math.unit(1.8, "feet"),
  15860. weight: math.unit(44, "lb"),
  15861. name: "Side",
  15862. image: {
  15863. source: "./media/characters/perseus/side.svg",
  15864. bottom: 0.21
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(1.8, "feet"),
  15872. default: true
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15878. {
  15879. side: {
  15880. height: math.unit(4 + 2 / 12, "feet"),
  15881. weight: math.unit(20, "lb"),
  15882. name: "Side",
  15883. image: {
  15884. source: "./media/characters/remus/side.svg"
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(4 + 2 / 12, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(4 + 11 / 12, "feet"),
  15901. weight: math.unit(114, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/raf/front.svg",
  15905. bottom: 0.01
  15906. }
  15907. },
  15908. side: {
  15909. height: math.unit(4 + 11 / 12, "feet"),
  15910. weight: math.unit(114, "lb"),
  15911. name: "Side",
  15912. image: {
  15913. source: "./media/characters/raf/side.svg",
  15914. bottom: 0.005
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Micro",
  15921. height: math.unit(2, "inches")
  15922. },
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(4 + 11 / 12, "feet"),
  15926. default: true
  15927. },
  15928. {
  15929. name: "Macro",
  15930. height: math.unit(70, "feet")
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15936. {
  15937. front: {
  15938. height: math.unit(1.5, "meters"),
  15939. weight: math.unit(68, "kg"),
  15940. name: "Front",
  15941. image: {
  15942. source: "./media/characters/liam-einarr/front.svg",
  15943. extra: 2822 / 2666
  15944. }
  15945. },
  15946. back: {
  15947. height: math.unit(1.5, "meters"),
  15948. weight: math.unit(68, "kg"),
  15949. name: "Back",
  15950. image: {
  15951. source: "./media/characters/liam-einarr/back.svg",
  15952. extra: 2822 / 2666,
  15953. bottom: 0.015
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(1.5, "meters"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Macro",
  15965. height: math.unit(150, "meters")
  15966. },
  15967. {
  15968. name: "Megamacro",
  15969. height: math.unit(35, "km")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(75, "kg"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/linda/front.svg",
  15982. extra: 930 / 874,
  15983. bottom: 0.004
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(6, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(6 + 8 / 12, "feet"),
  16000. weight: math.unit(220, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/caylex/front.svg",
  16004. extra: 821 / 772,
  16005. bottom: 0.07
  16006. }
  16007. },
  16008. back: {
  16009. height: math.unit(6 + 8 / 12, "feet"),
  16010. weight: math.unit(220, "lb"),
  16011. name: "Back",
  16012. image: {
  16013. source: "./media/characters/caylex/back.svg",
  16014. extra: 821 / 772,
  16015. bottom: 0.022
  16016. }
  16017. },
  16018. hand: {
  16019. height: math.unit(1.25, "feet"),
  16020. name: "Hand",
  16021. image: {
  16022. source: "./media/characters/caylex/hand.svg"
  16023. }
  16024. },
  16025. foot: {
  16026. height: math.unit(1.6, "feet"),
  16027. name: "Foot",
  16028. image: {
  16029. source: "./media/characters/caylex/foot.svg"
  16030. }
  16031. },
  16032. armored: {
  16033. height: math.unit(6 + 8 / 12, "feet"),
  16034. weight: math.unit(250, "lb"),
  16035. name: "Armored",
  16036. image: {
  16037. source: "./media/characters/caylex/armored.svg",
  16038. extra: 1420 / 1310,
  16039. bottom: 0.045
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(6 + 8 / 12, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Normal+",
  16051. height: math.unit(12, "feet")
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(7 + 6 / 12, "feet"),
  16060. weight: math.unit(288, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/alana/front.svg",
  16064. extra: 679 / 653,
  16065. bottom: 22.5 / 701
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(7 + 6 / 12, "feet")
  16073. },
  16074. {
  16075. name: "Large",
  16076. height: math.unit(50, "feet")
  16077. },
  16078. {
  16079. name: "Macro",
  16080. height: math.unit(100, "feet"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Macro+",
  16085. height: math.unit(200, "feet")
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(6 + 1 / 12, "feet"),
  16094. weight: math.unit(210, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/hasani/front.svg",
  16098. extra: 244 / 232,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. back: {
  16103. height: math.unit(6 + 1 / 12, "feet"),
  16104. weight: math.unit(210, "lb"),
  16105. name: "Back",
  16106. image: {
  16107. source: "./media/characters/hasani/back.svg",
  16108. extra: 244 / 232,
  16109. bottom: 0.01
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(6 + 1 / 12, "feet")
  16117. },
  16118. {
  16119. name: "Macro",
  16120. height: math.unit(175, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(1.82, "meters"),
  16130. weight: math.unit(140, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/nita/front.svg",
  16134. extra: 2473 / 2363,
  16135. bottom: 0.01
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(1.82, "m")
  16143. },
  16144. {
  16145. name: "Macro",
  16146. height: math.unit(300, "m")
  16147. },
  16148. {
  16149. name: "Mistake Canon",
  16150. height: math.unit(0.5, "miles"),
  16151. default: true
  16152. },
  16153. {
  16154. name: "Big Mistake",
  16155. height: math.unit(13, "miles")
  16156. },
  16157. {
  16158. name: "Playing God",
  16159. height: math.unit(2450, "miles")
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16165. {
  16166. front: {
  16167. height: math.unit(4, "feet"),
  16168. weight: math.unit(120, "lb"),
  16169. name: "Front",
  16170. image: {
  16171. source: "./media/characters/shiriko/front.svg",
  16172. extra: 195 / 188
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(4, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6, "feet"),
  16189. name: "front",
  16190. image: {
  16191. source: "./media/characters/deja/front.svg",
  16192. extra: 926 / 840,
  16193. bottom: 0.07
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Planck Length",
  16200. height: math.unit(1.6e-35, "meters")
  16201. },
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(30.48, "meters"),
  16205. default: true
  16206. },
  16207. {
  16208. name: "Universal",
  16209. height: math.unit(8.8e26, "meters")
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16215. {
  16216. side: {
  16217. height: math.unit(8, "feet"),
  16218. weight: math.unit(6300, "lb"),
  16219. name: "Side",
  16220. image: {
  16221. source: "./media/characters/anima/side.svg",
  16222. bottom: 0.035
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(8, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(8, "feet"),
  16239. weight: math.unit(350, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/bianca/front.svg",
  16243. extra: 234 / 225,
  16244. bottom: 0.03
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(8, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(6, "feet"),
  16261. weight: math.unit(150, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/adinia/front.svg",
  16265. extra: 1845 / 1672,
  16266. bottom: 0.02
  16267. }
  16268. },
  16269. back: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(150, "lb"),
  16272. name: "Back",
  16273. image: {
  16274. source: "./media/characters/adinia/back.svg",
  16275. extra: 1845 / 1672,
  16276. bottom: 0.002
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(11 + 5 / 12, "feet"),
  16284. default: true
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16290. {
  16291. front: {
  16292. height: math.unit(3, "meters"),
  16293. weight: math.unit(200, "kg"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/lykasa/front.svg",
  16297. extra: 1076 / 976,
  16298. bottom: 0.06
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(3, "meters")
  16306. },
  16307. {
  16308. name: "Kaiju",
  16309. height: math.unit(120, "meters"),
  16310. default: true
  16311. },
  16312. {
  16313. name: "Mega Kaiju",
  16314. height: math.unit(240, "km")
  16315. },
  16316. {
  16317. name: "Giga Kaiju",
  16318. height: math.unit(400, "megameters")
  16319. },
  16320. {
  16321. name: "Tera Kaiju",
  16322. height: math.unit(800, "gigameters")
  16323. },
  16324. {
  16325. name: "Kaiju Dragon Goddess",
  16326. height: math.unit(26, "zettaparsecs")
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16332. {
  16333. side: {
  16334. height: math.unit(283 / 124 * 6, "feet"),
  16335. weight: math.unit(35000, "lb"),
  16336. name: "Side",
  16337. image: {
  16338. source: "./media/characters/malfaren/side.svg",
  16339. extra: 2500 / 1010,
  16340. bottom: 0.01
  16341. }
  16342. },
  16343. front: {
  16344. height: math.unit(22.36, "feet"),
  16345. weight: math.unit(35000, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/malfaren/front.svg",
  16349. extra: 1631 / 1476,
  16350. bottom: 0.01
  16351. }
  16352. },
  16353. maw: {
  16354. height: math.unit(6.9, "feet"),
  16355. name: "Maw",
  16356. image: {
  16357. source: "./media/characters/malfaren/maw.svg"
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Big",
  16364. height: math.unit(283 / 162 * 6, "feet"),
  16365. },
  16366. {
  16367. name: "Bigger",
  16368. height: math.unit(283 / 124 * 6, "feet")
  16369. },
  16370. {
  16371. name: "Massive",
  16372. height: math.unit(283 / 92 * 6, "feet"),
  16373. default: true
  16374. },
  16375. {
  16376. name: "👀💦",
  16377. height: math.unit(283 / 73 * 6, "feet"),
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(1.7, "m"),
  16386. weight: math.unit(70, "kg"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/kernel/front.svg",
  16390. extra: 222 / 210,
  16391. bottom: 0.007
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Nano",
  16398. height: math.unit(17, "micrometers")
  16399. },
  16400. {
  16401. name: "Micro",
  16402. height: math.unit(1.7, "mm")
  16403. },
  16404. {
  16405. name: "Small",
  16406. height: math.unit(1.7, "cm")
  16407. },
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(1.7, "m"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(1.75, "meters"),
  16420. weight: math.unit(65, "kg"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/jayne-folest/front.svg",
  16424. extra: 2115 / 2007,
  16425. bottom: 0.02
  16426. }
  16427. },
  16428. back: {
  16429. height: math.unit(1.75, "meters"),
  16430. weight: math.unit(65, "kg"),
  16431. name: "Back",
  16432. image: {
  16433. source: "./media/characters/jayne-folest/back.svg",
  16434. extra: 2115 / 2007,
  16435. bottom: 0.005
  16436. }
  16437. },
  16438. frontClothed: {
  16439. height: math.unit(1.75, "meters"),
  16440. weight: math.unit(65, "kg"),
  16441. name: "Front (Clothed)",
  16442. image: {
  16443. source: "./media/characters/jayne-folest/front-clothed.svg",
  16444. extra: 2115 / 2007,
  16445. bottom: 0.035
  16446. }
  16447. },
  16448. hand: {
  16449. height: math.unit(1 / 1.260, "feet"),
  16450. name: "Hand",
  16451. image: {
  16452. source: "./media/characters/jayne-folest/hand.svg"
  16453. }
  16454. },
  16455. foot: {
  16456. height: math.unit(1 / 0.918, "feet"),
  16457. name: "Foot",
  16458. image: {
  16459. source: "./media/characters/jayne-folest/foot.svg"
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Micro",
  16466. height: math.unit(4, "cm")
  16467. },
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(1.75, "meters")
  16471. },
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(47.5, "meters"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(180, "cm"),
  16484. weight: math.unit(70, "kg"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/algier/front.svg",
  16488. extra: 596 / 572,
  16489. bottom: 0.04
  16490. }
  16491. },
  16492. back: {
  16493. height: math.unit(180, "cm"),
  16494. weight: math.unit(70, "kg"),
  16495. name: "Back",
  16496. image: {
  16497. source: "./media/characters/algier/back.svg",
  16498. extra: 596 / 572,
  16499. bottom: 0.025
  16500. }
  16501. },
  16502. frontdressed: {
  16503. height: math.unit(180, "cm"),
  16504. weight: math.unit(150, "kg"),
  16505. name: "Front-dressed",
  16506. image: {
  16507. source: "./media/characters/algier/front-dressed.svg",
  16508. extra: 596 / 572,
  16509. bottom: 0.038
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Micro",
  16516. height: math.unit(5, "cm")
  16517. },
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(180, "cm"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Macro",
  16525. height: math.unit(64, "m")
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16531. {
  16532. upright: {
  16533. height: math.unit(7, "feet"),
  16534. weight: math.unit(300, "lb"),
  16535. name: "Upright",
  16536. image: {
  16537. source: "./media/characters/pretzel/upright.svg",
  16538. extra: 534 / 522,
  16539. bottom: 0.065
  16540. }
  16541. },
  16542. sprawling: {
  16543. height: math.unit(3.75, "feet"),
  16544. weight: math.unit(300, "lb"),
  16545. name: "Sprawling",
  16546. image: {
  16547. source: "./media/characters/pretzel/sprawling.svg",
  16548. extra: 314 / 281,
  16549. bottom: 0.1
  16550. }
  16551. },
  16552. tongue: {
  16553. height: math.unit(2, "feet"),
  16554. name: "Tongue",
  16555. image: {
  16556. source: "./media/characters/pretzel/tongue.svg"
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(7, "feet"),
  16564. default: true
  16565. },
  16566. {
  16567. name: "Oversized",
  16568. height: math.unit(15, "feet")
  16569. },
  16570. {
  16571. name: "Huge",
  16572. height: math.unit(30, "feet")
  16573. },
  16574. {
  16575. name: "Macro",
  16576. height: math.unit(250, "feet")
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16582. {
  16583. sideFront: {
  16584. height: math.unit(5 + 2 / 12, "feet"),
  16585. weight: math.unit(120, "lb"),
  16586. name: "Front Side",
  16587. image: {
  16588. source: "./media/characters/roxi/side-front.svg",
  16589. extra: 2924 / 2717,
  16590. bottom: 0.08
  16591. }
  16592. },
  16593. sideBack: {
  16594. height: math.unit(5 + 2 / 12, "feet"),
  16595. weight: math.unit(120, "lb"),
  16596. name: "Back Side",
  16597. image: {
  16598. source: "./media/characters/roxi/side-back.svg",
  16599. extra: 2904 / 2693,
  16600. bottom: 0.06
  16601. }
  16602. },
  16603. front: {
  16604. height: math.unit(5 + 2 / 12, "feet"),
  16605. weight: math.unit(120, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/roxi/front.svg",
  16609. extra: 2028 / 1907,
  16610. bottom: 0.01
  16611. }
  16612. },
  16613. frontAlt: {
  16614. height: math.unit(5 + 2 / 12, "feet"),
  16615. weight: math.unit(120, "lb"),
  16616. name: "Front (Alt)",
  16617. image: {
  16618. source: "./media/characters/roxi/front-alt.svg",
  16619. extra: 1828 / 1798,
  16620. bottom: 0.01
  16621. }
  16622. },
  16623. sitting: {
  16624. height: math.unit(2.8, "feet"),
  16625. weight: math.unit(120, "lb"),
  16626. name: "Sitting",
  16627. image: {
  16628. source: "./media/characters/roxi/sitting.svg",
  16629. extra: 2660 / 2462,
  16630. bottom: 0.1
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(5 + 2 / 12, "feet"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16644. {
  16645. side: {
  16646. height: math.unit(55, "feet"),
  16647. weight: math.unit(153, "tons"),
  16648. name: "Side",
  16649. image: {
  16650. source: "./media/characters/shadow/side.svg",
  16651. extra: 701 / 628,
  16652. bottom: 0.02
  16653. }
  16654. },
  16655. flying: {
  16656. height: math.unit(145, "feet"),
  16657. weight: math.unit(153, "tons"),
  16658. name: "Flying",
  16659. image: {
  16660. source: "./media/characters/shadow/flying.svg"
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(55, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(6, "feet"),
  16677. weight: math.unit(200, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/marcie/front.svg",
  16681. extra: 960 / 876,
  16682. bottom: 58 / 1017.87
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(1, "mile"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(7, "feet"),
  16699. weight: math.unit(200, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/kachina/front.svg",
  16703. extra: 1290.68 / 1119,
  16704. bottom: 36.5 / 1327.18
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(7, "feet"),
  16712. default: true
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16718. {
  16719. looking: {
  16720. height: math.unit(2, "meters"),
  16721. weight: math.unit(300, "kg"),
  16722. name: "Looking",
  16723. image: {
  16724. source: "./media/characters/kash/looking.svg",
  16725. extra: 474 / 344,
  16726. bottom: 0.03
  16727. }
  16728. },
  16729. side: {
  16730. height: math.unit(2, "meters"),
  16731. weight: math.unit(300, "kg"),
  16732. name: "Side",
  16733. image: {
  16734. source: "./media/characters/kash/side.svg",
  16735. extra: 302 / 251,
  16736. bottom: 0.03
  16737. }
  16738. },
  16739. front: {
  16740. height: math.unit(2, "meters"),
  16741. weight: math.unit(300, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/kash/front.svg",
  16745. extra: 495 / 360,
  16746. bottom: 0.015
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(2, "meters"),
  16754. default: true
  16755. },
  16756. {
  16757. name: "Big",
  16758. height: math.unit(3, "meters")
  16759. },
  16760. {
  16761. name: "Large",
  16762. height: math.unit(5, "meters")
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16768. {
  16769. feeding: {
  16770. height: math.unit(6.7, "feet"),
  16771. weight: math.unit(350, "lb"),
  16772. name: "Feeding",
  16773. image: {
  16774. source: "./media/characters/lalim/feeding.svg",
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(6.7, "feet"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(9.5, "feet"),
  16791. weight: math.unit(600, "lb"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/de'vout/front.svg",
  16795. extra: 1443 / 1328,
  16796. bottom: 0.025
  16797. }
  16798. },
  16799. back: {
  16800. height: math.unit(9.5, "feet"),
  16801. weight: math.unit(600, "lb"),
  16802. name: "Back",
  16803. image: {
  16804. source: "./media/characters/de'vout/back.svg",
  16805. extra: 1443 / 1328
  16806. }
  16807. },
  16808. frontDressed: {
  16809. height: math.unit(9.5, "feet"),
  16810. weight: math.unit(600, "lb"),
  16811. name: "Front (Dressed",
  16812. image: {
  16813. source: "./media/characters/de'vout/front-dressed.svg",
  16814. extra: 1443 / 1328,
  16815. bottom: 0.025
  16816. }
  16817. },
  16818. backDressed: {
  16819. height: math.unit(9.5, "feet"),
  16820. weight: math.unit(600, "lb"),
  16821. name: "Back (Dressed",
  16822. image: {
  16823. source: "./media/characters/de'vout/back-dressed.svg",
  16824. extra: 1443 / 1328
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(9.5, "feet"),
  16832. default: true
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(8, "feet"),
  16841. weight: math.unit(225, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/talana/front.svg",
  16845. extra: 1410 / 1300,
  16846. bottom: 0.015
  16847. }
  16848. },
  16849. frontDressed: {
  16850. height: math.unit(8, "feet"),
  16851. weight: math.unit(225, "lb"),
  16852. name: "Front (Dressed",
  16853. image: {
  16854. source: "./media/characters/talana/front-dressed.svg",
  16855. extra: 1410 / 1300,
  16856. bottom: 0.015
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(8, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16870. {
  16871. side: {
  16872. height: math.unit(7.2, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Side",
  16875. image: {
  16876. source: "./media/characters/xeauvok/side.svg",
  16877. extra: 1975 / 1523,
  16878. bottom: 0.07
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(7.2, "feet"),
  16886. default: true
  16887. },
  16888. ]
  16889. ))
  16890. characterMakers.push(() => makeCharacter(
  16891. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16892. {
  16893. side: {
  16894. height: math.unit(10, "feet"),
  16895. weight: math.unit(900, "kg"),
  16896. name: "Side",
  16897. image: {
  16898. source: "./media/characters/zara/side.svg",
  16899. extra: 504 / 498
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(10, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16913. {
  16914. side: {
  16915. height: math.unit(6, "feet"),
  16916. weight: math.unit(150, "lb"),
  16917. name: "Side",
  16918. image: {
  16919. source: "./media/characters/richard-dragon/side.svg",
  16920. extra: 845 / 340,
  16921. bottom: 0.017
  16922. }
  16923. },
  16924. maw: {
  16925. height: math.unit(2.97, "feet"),
  16926. name: "Maw",
  16927. image: {
  16928. source: "./media/characters/richard-dragon/maw.svg"
  16929. }
  16930. },
  16931. },
  16932. [
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16937. {
  16938. front: {
  16939. height: math.unit(4, "feet"),
  16940. weight: math.unit(100, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/richard-smeargle/front.svg",
  16944. extra: 2952 / 2820,
  16945. bottom: 0.028
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(4, "feet"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Dynamax",
  16957. height: math.unit(20, "meters")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(6, "feet"),
  16966. weight: math.unit(110, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/klay/front.svg",
  16970. extra: 962 / 883,
  16971. bottom: 0.04
  16972. }
  16973. },
  16974. back: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(110, "lb"),
  16977. name: "Back",
  16978. image: {
  16979. source: "./media/characters/klay/back.svg",
  16980. extra: 962 / 883
  16981. }
  16982. },
  16983. beans: {
  16984. height: math.unit(1.15, "feet"),
  16985. name: "Beans",
  16986. image: {
  16987. source: "./media/characters/klay/beans.svg"
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Micro",
  16994. height: math.unit(6, "inches")
  16995. },
  16996. {
  16997. name: "Mini",
  16998. height: math.unit(3, "feet")
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(6, "feet"),
  17003. default: true
  17004. },
  17005. {
  17006. name: "Big",
  17007. height: math.unit(25, "feet")
  17008. },
  17009. {
  17010. name: "Macro",
  17011. height: math.unit(100, "feet")
  17012. },
  17013. {
  17014. name: "Megamacro",
  17015. height: math.unit(400, "feet")
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(6, "feet"),
  17024. weight: math.unit(160, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/marcus/front.svg",
  17028. extra: 734 / 676,
  17029. bottom: 0.03
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Little",
  17036. height: math.unit(6, "feet")
  17037. },
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(110, "feet"),
  17041. default: true
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(250, "feet")
  17046. },
  17047. {
  17048. name: "Megamacro",
  17049. height: math.unit(1000, "feet")
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(7, "feet"),
  17058. weight: math.unit(275, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/claude-delroute/front.svg",
  17062. extra: 230 / 214,
  17063. bottom: 0.007
  17064. }
  17065. },
  17066. side: {
  17067. height: math.unit(7, "feet"),
  17068. weight: math.unit(275, "lb"),
  17069. name: "Side",
  17070. image: {
  17071. source: "./media/characters/claude-delroute/side.svg",
  17072. extra: 222 / 214,
  17073. bottom: 0.01
  17074. }
  17075. },
  17076. back: {
  17077. height: math.unit(7, "feet"),
  17078. weight: math.unit(275, "lb"),
  17079. name: "Back",
  17080. image: {
  17081. source: "./media/characters/claude-delroute/back.svg",
  17082. extra: 230 / 214,
  17083. bottom: 0.015
  17084. }
  17085. },
  17086. maw: {
  17087. height: math.unit(0.6407, "meters"),
  17088. name: "Maw",
  17089. image: {
  17090. source: "./media/characters/claude-delroute/maw.svg"
  17091. }
  17092. },
  17093. },
  17094. [
  17095. {
  17096. name: "Normal",
  17097. height: math.unit(7, "feet"),
  17098. default: true
  17099. },
  17100. {
  17101. name: "Lorge",
  17102. height: math.unit(20, "feet")
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(8 + 4 / 12, "feet"),
  17111. weight: math.unit(600, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/dragonien/front.svg",
  17115. extra: 100 / 94,
  17116. bottom: 3.3 / 103.3445
  17117. }
  17118. },
  17119. back: {
  17120. height: math.unit(8 + 4 / 12, "feet"),
  17121. weight: math.unit(600, "lb"),
  17122. name: "Back",
  17123. image: {
  17124. source: "./media/characters/dragonien/back.svg",
  17125. extra: 776 / 746,
  17126. bottom: 6.4 / 782.0616
  17127. }
  17128. },
  17129. foot: {
  17130. height: math.unit(1.54, "feet"),
  17131. name: "Foot",
  17132. image: {
  17133. source: "./media/characters/dragonien/foot.svg",
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(8 + 4 / 12, "feet"),
  17141. default: true
  17142. },
  17143. {
  17144. name: "Macro",
  17145. height: math.unit(200, "feet")
  17146. },
  17147. {
  17148. name: "Megamacro",
  17149. height: math.unit(1, "mile")
  17150. },
  17151. {
  17152. name: "Gigamacro",
  17153. height: math.unit(1000, "miles")
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(5 + 2 / 12, "feet"),
  17162. weight: math.unit(110, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/desta/front.svg",
  17166. extra: 1482 / 1417
  17167. }
  17168. },
  17169. side: {
  17170. height: math.unit(5 + 2 / 12, "feet"),
  17171. weight: math.unit(110, "lb"),
  17172. name: "Side",
  17173. image: {
  17174. source: "./media/characters/desta/side.svg",
  17175. extra: 2579 / 2491,
  17176. bottom: 0.053
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Micro",
  17183. height: math.unit(6, "inches")
  17184. },
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 2 / 12, "feet"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(62, "feet")
  17193. },
  17194. {
  17195. name: "Megamacro",
  17196. height: math.unit(1800, "feet")
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(10, "feet"),
  17205. weight: math.unit(700, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/storm-alystar/front.svg",
  17209. extra: 2112 / 1898,
  17210. bottom: 0.034
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Micro",
  17217. height: math.unit(3.5, "inches")
  17218. },
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(10, "feet"),
  17222. default: true
  17223. },
  17224. {
  17225. name: "Macro",
  17226. height: math.unit(400, "feet")
  17227. },
  17228. {
  17229. name: "Deific",
  17230. height: math.unit(60, "miles")
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(2.35, "meters"),
  17239. weight: math.unit(119, "kg"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/ilia/front.svg",
  17243. extra: 1285 / 1255,
  17244. bottom: 0.06
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(2.35, "meters")
  17252. },
  17253. {
  17254. name: "Macro",
  17255. height: math.unit(140, "meters"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Megamacro",
  17260. height: math.unit(100, "miles")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(6 + 5 / 12, "feet"),
  17269. weight: math.unit(190, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/kingdead/front.svg",
  17273. extra: 1228 / 1177
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Micro",
  17280. height: math.unit(7, "inches")
  17281. },
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(6 + 5 / 12, "feet")
  17285. },
  17286. {
  17287. name: "Macro",
  17288. height: math.unit(150, "feet"),
  17289. default: true
  17290. },
  17291. {
  17292. name: "Megamacro",
  17293. height: math.unit(200, "miles")
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(8, "feet"),
  17302. weight: math.unit(600, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/kyrehx/front.svg",
  17306. extra: 1195 / 1095,
  17307. bottom: 0.034
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Micro",
  17314. height: math.unit(2, "inches")
  17315. },
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(8, "feet"),
  17319. default: true
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(255, "feet")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17332. weight: math.unit(184, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/xang/front.svg",
  17336. extra: 845 / 755
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17344. default: true
  17345. },
  17346. {
  17347. name: "Macro",
  17348. height: math.unit(0.935 * 146, "feet")
  17349. },
  17350. {
  17351. name: "Megamacro",
  17352. height: math.unit(0.935 * 3, "miles")
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17358. {
  17359. frontDressed: {
  17360. height: math.unit(5 + 7 / 12, "feet"),
  17361. weight: math.unit(140, "lb"),
  17362. name: "Front (Dressed)",
  17363. image: {
  17364. source: "./media/characters/doc-weardno/front-dressed.svg",
  17365. extra: 263 / 234
  17366. }
  17367. },
  17368. backDressed: {
  17369. height: math.unit(5 + 7 / 12, "feet"),
  17370. weight: math.unit(140, "lb"),
  17371. name: "Back (Dressed)",
  17372. image: {
  17373. source: "./media/characters/doc-weardno/back-dressed.svg",
  17374. extra: 266 / 238
  17375. }
  17376. },
  17377. front: {
  17378. height: math.unit(5 + 7 / 12, "feet"),
  17379. weight: math.unit(140, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/doc-weardno/front.svg",
  17383. extra: 254 / 233
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Micro",
  17390. height: math.unit(3, "inches")
  17391. },
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(5 + 7 / 12, "feet"),
  17395. default: true
  17396. },
  17397. {
  17398. name: "Macro",
  17399. height: math.unit(25, "feet")
  17400. },
  17401. {
  17402. name: "Megamacro",
  17403. height: math.unit(2, "miles")
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(6 + 2 / 12, "feet"),
  17412. weight: math.unit(153, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/seth-whilst/front.svg",
  17416. bottom: 0.07
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Micro",
  17423. height: math.unit(5, "inches")
  17424. },
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(6 + 2 / 12, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(3, "inches"),
  17437. weight: math.unit(8, "grams"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/pocket-jabari/front.svg",
  17441. extra: 1024 / 974,
  17442. bottom: 0.039
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Minimicro",
  17449. height: math.unit(8, "mm")
  17450. },
  17451. {
  17452. name: "Micro",
  17453. height: math.unit(3, "inches"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(3, "feet")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(15, "feet"),
  17467. weight: math.unit(3280, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/sapphy/front.svg",
  17471. extra: 671 / 577,
  17472. bottom: 0.085
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(15, "feet"),
  17477. weight: math.unit(3280, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/sapphy/back.svg",
  17481. extra: 631 / 607,
  17482. bottom: 0.045
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(15, "feet")
  17490. },
  17491. {
  17492. name: "Casual Macro",
  17493. height: math.unit(120, "feet")
  17494. },
  17495. {
  17496. name: "Macro",
  17497. height: math.unit(2150, "feet"),
  17498. default: true
  17499. },
  17500. {
  17501. name: "Megamacro",
  17502. height: math.unit(8, "miles")
  17503. },
  17504. {
  17505. name: "Galaxy Mom",
  17506. height: math.unit(6, "megalightyears")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6, "feet"),
  17515. weight: math.unit(170, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/kiro/front.svg",
  17519. extra: 1064 / 1012,
  17520. bottom: 0.052
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Micro",
  17527. height: math.unit(6, "inches")
  17528. },
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(6, "feet"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Macro",
  17536. height: math.unit(72, "feet")
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(5 + 9 / 12, "feet"),
  17545. weight: math.unit(175, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/irishfox/front.svg",
  17549. extra: 1912 / 1680,
  17550. bottom: 0.02
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Nano",
  17557. height: math.unit(1, "mm")
  17558. },
  17559. {
  17560. name: "Micro",
  17561. height: math.unit(2, "inches")
  17562. },
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(5 + 9 / 12, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(45, "feet")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6 + 1 / 12, "feet"),
  17579. weight: math.unit(150, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/aronai-sieyes/front.svg",
  17583. extra: 1556 / 1480,
  17584. bottom: 0.015
  17585. }
  17586. },
  17587. side: {
  17588. height: math.unit(6 + 1 / 12, "feet"),
  17589. weight: math.unit(150, "lb"),
  17590. name: "Side",
  17591. image: {
  17592. source: "./media/characters/aronai-sieyes/side.svg",
  17593. extra: 1433 / 1390,
  17594. bottom: 0.0393
  17595. }
  17596. },
  17597. back: {
  17598. height: math.unit(6 + 1 / 12, "feet"),
  17599. weight: math.unit(150, "lb"),
  17600. name: "Back",
  17601. image: {
  17602. source: "./media/characters/aronai-sieyes/back.svg",
  17603. extra: 1544 / 1494,
  17604. bottom: 0.02
  17605. }
  17606. },
  17607. frontClothed: {
  17608. height: math.unit(6 + 1 / 12, "feet"),
  17609. weight: math.unit(150, "lb"),
  17610. name: "Front (Clothed)",
  17611. image: {
  17612. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17613. extra: 1582 / 1527
  17614. }
  17615. },
  17616. feral: {
  17617. height: math.unit(18, "feet"),
  17618. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17619. name: "Feral",
  17620. image: {
  17621. source: "./media/characters/aronai-sieyes/feral.svg",
  17622. extra: 1530 / 1240,
  17623. bottom: 0.035
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Micro",
  17630. height: math.unit(2, "inches")
  17631. },
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(6 + 1 / 12, "feet"),
  17635. default: true
  17636. }
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(12, "feet"),
  17644. weight: math.unit(410, "kg"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/xuna/front.svg",
  17648. extra: 2184 / 1980
  17649. }
  17650. },
  17651. side: {
  17652. height: math.unit(12, "feet"),
  17653. weight: math.unit(410, "kg"),
  17654. name: "Side",
  17655. image: {
  17656. source: "./media/characters/xuna/side.svg",
  17657. extra: 2184 / 1980
  17658. }
  17659. },
  17660. back: {
  17661. height: math.unit(12, "feet"),
  17662. weight: math.unit(410, "kg"),
  17663. name: "Back",
  17664. image: {
  17665. source: "./media/characters/xuna/back.svg",
  17666. extra: 2184 / 1980
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Nano glow",
  17673. height: math.unit(10, "nm")
  17674. },
  17675. {
  17676. name: "Micro floof",
  17677. height: math.unit(0.3, "m")
  17678. },
  17679. {
  17680. name: "Huggable softy boi",
  17681. height: math.unit(3.6576, "m"),
  17682. default: true
  17683. },
  17684. {
  17685. name: "Admirable floof",
  17686. height: math.unit(80, "meters")
  17687. },
  17688. {
  17689. name: "Gentle macro",
  17690. height: math.unit(300, "meters")
  17691. },
  17692. {
  17693. name: "Very careful floof",
  17694. height: math.unit(3200, "meters")
  17695. },
  17696. {
  17697. name: "The mega floof",
  17698. height: math.unit(36000, "meters")
  17699. },
  17700. {
  17701. name: "Giga-fur-Wicker",
  17702. height: math.unit(4800000, "meters")
  17703. },
  17704. {
  17705. name: "Licky world",
  17706. height: math.unit(20000000, "meters")
  17707. },
  17708. {
  17709. name: "Floofy cyan sun",
  17710. height: math.unit(1500000000, "meters")
  17711. },
  17712. {
  17713. name: "Milky Wicker",
  17714. height: math.unit(1000000000000000000000, "meters")
  17715. },
  17716. {
  17717. name: "The observing Wicker",
  17718. height: math.unit(999999999999999999999999999, "meters")
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17724. {
  17725. front: {
  17726. height: math.unit(5 + 9 / 12, "feet"),
  17727. weight: math.unit(150, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/arokha-sieyes/front.svg",
  17731. extra: 1425 / 1284,
  17732. bottom: 0.05
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(5 + 9 / 12, "feet")
  17740. },
  17741. {
  17742. name: "Macro",
  17743. height: math.unit(30, "meters"),
  17744. default: true
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17750. {
  17751. front: {
  17752. height: math.unit(6, "feet"),
  17753. weight: math.unit(180, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/arokh-sieyes/front.svg",
  17757. extra: 1830 / 1769,
  17758. bottom: 0.01
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(6, "feet")
  17766. },
  17767. {
  17768. name: "Macro",
  17769. height: math.unit(30, "meters"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17776. {
  17777. side: {
  17778. height: math.unit(13 + 1 / 12, "feet"),
  17779. weight: math.unit(8.5, "tonnes"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/goldeneye/side.svg",
  17783. extra: 1182 / 778,
  17784. bottom: 0.067
  17785. }
  17786. },
  17787. paw: {
  17788. height: math.unit(3.4, "feet"),
  17789. name: "Paw",
  17790. image: {
  17791. source: "./media/characters/goldeneye/paw.svg"
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Normal",
  17798. height: math.unit(13 + 1 / 12, "feet"),
  17799. default: true
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17805. {
  17806. front: {
  17807. height: math.unit(6 + 1 / 12, "feet"),
  17808. weight: math.unit(210, "lb"),
  17809. name: "Front",
  17810. image: {
  17811. source: "./media/characters/leonardo-lycheborne/front.svg",
  17812. extra: 390 / 365,
  17813. bottom: 0.032
  17814. }
  17815. },
  17816. side: {
  17817. height: math.unit(6 + 1 / 12, "feet"),
  17818. weight: math.unit(210, "lb"),
  17819. name: "Side",
  17820. image: {
  17821. source: "./media/characters/leonardo-lycheborne/side.svg",
  17822. extra: 390 / 365,
  17823. bottom: 0.005
  17824. }
  17825. },
  17826. back: {
  17827. height: math.unit(6 + 1 / 12, "feet"),
  17828. weight: math.unit(210, "lb"),
  17829. name: "Back",
  17830. image: {
  17831. source: "./media/characters/leonardo-lycheborne/back.svg",
  17832. extra: 392 / 366,
  17833. bottom: 0.01
  17834. }
  17835. },
  17836. hand: {
  17837. height: math.unit(1.08, "feet"),
  17838. name: "Hand",
  17839. image: {
  17840. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17841. }
  17842. },
  17843. foot: {
  17844. height: math.unit(1.32, "feet"),
  17845. name: "Foot",
  17846. image: {
  17847. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17848. }
  17849. },
  17850. were: {
  17851. height: math.unit(20, "feet"),
  17852. weight: math.unit(7800, "lb"),
  17853. name: "Were",
  17854. image: {
  17855. source: "./media/characters/leonardo-lycheborne/were.svg",
  17856. extra: 308 / 294,
  17857. bottom: 0.048
  17858. }
  17859. },
  17860. feral: {
  17861. height: math.unit(7.5, "feet"),
  17862. weight: math.unit(600, "lb"),
  17863. name: "Feral",
  17864. image: {
  17865. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17866. extra: 210 / 186,
  17867. bottom: 0.108
  17868. }
  17869. },
  17870. taur: {
  17871. height: math.unit(11, "feet"),
  17872. weight: math.unit(3300, "lb"),
  17873. name: "Taur",
  17874. image: {
  17875. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17876. extra: 320 / 303,
  17877. bottom: 0.025
  17878. }
  17879. },
  17880. barghest: {
  17881. height: math.unit(11, "feet"),
  17882. weight: math.unit(1300, "lb"),
  17883. name: "Barghest",
  17884. image: {
  17885. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17886. extra: 323 / 302,
  17887. bottom: 0.027
  17888. }
  17889. },
  17890. dick: {
  17891. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17892. name: "Dick",
  17893. image: {
  17894. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17895. }
  17896. },
  17897. dickWere: {
  17898. height: math.unit((20) / 3.8, "feet"),
  17899. name: "Dick (Were)",
  17900. image: {
  17901. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Normal",
  17908. height: math.unit(6 + 1 / 12, "feet"),
  17909. default: true
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(10, "feet"),
  17918. weight: math.unit(350, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/jet/front.svg",
  17922. extra: 2050 / 1980,
  17923. bottom: 0.013
  17924. }
  17925. },
  17926. back: {
  17927. height: math.unit(10, "feet"),
  17928. weight: math.unit(350, "lb"),
  17929. name: "Back",
  17930. image: {
  17931. source: "./media/characters/jet/back.svg",
  17932. extra: 2050 / 1980,
  17933. bottom: 0.013
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Micro",
  17940. height: math.unit(6, "inches")
  17941. },
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(10, "feet"),
  17945. default: true
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(100, "feet")
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17955. {
  17956. front: {
  17957. height: math.unit(15, "feet"),
  17958. weight: math.unit(2800, "lb"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/tanarath/front.svg",
  17962. extra: 2392 / 2220,
  17963. bottom: 0.03
  17964. }
  17965. },
  17966. back: {
  17967. height: math.unit(15, "feet"),
  17968. weight: math.unit(2800, "lb"),
  17969. name: "Back",
  17970. image: {
  17971. source: "./media/characters/tanarath/back.svg",
  17972. extra: 2392 / 2220,
  17973. bottom: 0.03
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(15, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(7 + 1 / 12, "feet"),
  17990. weight: math.unit(175, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/patty-cattybatty/front.svg",
  17994. extra: 908 / 874,
  17995. bottom: 0.025
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Micro",
  18002. height: math.unit(1, "inch")
  18003. },
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(7 + 1 / 12, "feet")
  18007. },
  18008. {
  18009. name: "Mini Macro",
  18010. height: math.unit(155, "feet")
  18011. },
  18012. {
  18013. name: "Macro",
  18014. height: math.unit(1077, "feet")
  18015. },
  18016. {
  18017. name: "Mega Macro",
  18018. height: math.unit(47650, "feet"),
  18019. default: true
  18020. },
  18021. {
  18022. name: "Giga Macro",
  18023. height: math.unit(440, "miles")
  18024. },
  18025. {
  18026. name: "Tera Macro",
  18027. height: math.unit(8700, "miles")
  18028. },
  18029. {
  18030. name: "Planetary Macro",
  18031. height: math.unit(32700, "miles")
  18032. },
  18033. {
  18034. name: "Solar Macro",
  18035. height: math.unit(550000, "miles")
  18036. },
  18037. {
  18038. name: "Celestial Macro",
  18039. height: math.unit(2.5, "AU")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(4 + 5 / 12, "feet"),
  18048. weight: math.unit(90, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/cappu/front.svg",
  18052. extra: 1247 / 1152,
  18053. bottom: 0.012
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(4 + 5 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18067. {
  18068. frontDressed: {
  18069. height: math.unit(70, "cm"),
  18070. weight: math.unit(6, "kg"),
  18071. name: "Front (Dressed)",
  18072. image: {
  18073. source: "./media/characters/sebi/front-dressed.svg",
  18074. extra: 713.5 / 686.5,
  18075. bottom: 0.003
  18076. }
  18077. },
  18078. front: {
  18079. height: math.unit(70, "cm"),
  18080. weight: math.unit(5, "kg"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/sebi/front.svg",
  18084. extra: 713.5 / 686.5,
  18085. bottom: 0.003
  18086. }
  18087. }
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(70, "cm"),
  18093. default: true
  18094. },
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(8, "meters")
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(6, "feet"),
  18106. weight: math.unit(150, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/typhek/front.svg",
  18110. extra: 1948 / 1929,
  18111. bottom: 0.025
  18112. }
  18113. },
  18114. side: {
  18115. height: math.unit(6, "feet"),
  18116. weight: math.unit(150, "lb"),
  18117. name: "Side",
  18118. image: {
  18119. source: "./media/characters/typhek/side.svg",
  18120. extra: 2034 / 2010,
  18121. bottom: 0.003
  18122. }
  18123. },
  18124. back: {
  18125. height: math.unit(6, "feet"),
  18126. weight: math.unit(150, "lb"),
  18127. name: "Back",
  18128. image: {
  18129. source: "./media/characters/typhek/back.svg",
  18130. extra: 2005 / 1978,
  18131. bottom: 0.004
  18132. }
  18133. },
  18134. palm: {
  18135. height: math.unit(1.2, "feet"),
  18136. name: "Palm",
  18137. image: {
  18138. source: "./media/characters/typhek/palm.svg"
  18139. }
  18140. },
  18141. fist: {
  18142. height: math.unit(1.1, "feet"),
  18143. name: "Fist",
  18144. image: {
  18145. source: "./media/characters/typhek/fist.svg"
  18146. }
  18147. },
  18148. foot: {
  18149. height: math.unit(1.57, "feet"),
  18150. name: "Foot",
  18151. image: {
  18152. source: "./media/characters/typhek/foot.svg"
  18153. }
  18154. },
  18155. sole: {
  18156. height: math.unit(2.05, "feet"),
  18157. name: "Sole",
  18158. image: {
  18159. source: "./media/characters/typhek/sole.svg"
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Macro",
  18166. height: math.unit(40, "stories"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Megamacro",
  18171. height: math.unit(1, "mile")
  18172. },
  18173. {
  18174. name: "Gigamacro",
  18175. height: math.unit(4000, "solarradii")
  18176. },
  18177. {
  18178. name: "Universal",
  18179. height: math.unit(1.1, "universes")
  18180. }
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18185. {
  18186. side: {
  18187. height: math.unit(5 + 7 / 12, "feet"),
  18188. weight: math.unit(150, "lb"),
  18189. name: "Side",
  18190. image: {
  18191. source: "./media/characters/kassy/side.svg",
  18192. extra: 1280 / 1225,
  18193. bottom: 0.002
  18194. }
  18195. },
  18196. front: {
  18197. height: math.unit(5 + 7 / 12, "feet"),
  18198. weight: math.unit(150, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/kassy/front.svg",
  18202. extra: 1280 / 1225,
  18203. bottom: 0.025
  18204. }
  18205. },
  18206. back: {
  18207. height: math.unit(5 + 7 / 12, "feet"),
  18208. weight: math.unit(150, "lb"),
  18209. name: "Back",
  18210. image: {
  18211. source: "./media/characters/kassy/back.svg",
  18212. extra: 1280 / 1225,
  18213. bottom: 0.002
  18214. }
  18215. },
  18216. foot: {
  18217. height: math.unit(1.266, "feet"),
  18218. name: "Foot",
  18219. image: {
  18220. source: "./media/characters/kassy/foot.svg"
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(5 + 7 / 12, "feet")
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(137, "feet"),
  18232. default: true
  18233. },
  18234. {
  18235. name: "Megamacro",
  18236. height: math.unit(1, "mile")
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(6 + 1 / 12, "feet"),
  18245. weight: math.unit(200, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/neil/front.svg",
  18249. extra: 1326 / 1250,
  18250. bottom: 0.023
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(6 + 1 / 12, "feet"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Macro",
  18262. height: math.unit(200, "feet")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(5 + 9 / 12, "feet"),
  18271. weight: math.unit(190, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/atticus/front.svg",
  18275. extra: 2934 / 2785,
  18276. bottom: 0.025
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(5 + 9 / 12, "feet"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Macro",
  18288. height: math.unit(180, "feet")
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18294. {
  18295. side: {
  18296. height: math.unit(9, "feet"),
  18297. weight: math.unit(650, "lb"),
  18298. name: "Side",
  18299. image: {
  18300. source: "./media/characters/milo/side.svg",
  18301. extra: 2644 / 2310,
  18302. bottom: 0.032
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(9, "feet"),
  18310. default: true
  18311. },
  18312. {
  18313. name: "Macro",
  18314. height: math.unit(300, "feet")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18320. {
  18321. side: {
  18322. height: math.unit(8, "meters"),
  18323. weight: math.unit(90000, "kg"),
  18324. name: "Side",
  18325. image: {
  18326. source: "./media/characters/ijzer/side.svg",
  18327. extra: 2756 / 1600,
  18328. bottom: 0.01
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Small",
  18335. height: math.unit(3, "meters")
  18336. },
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(8, "meters"),
  18340. default: true
  18341. },
  18342. {
  18343. name: "Normal+",
  18344. height: math.unit(10, "meters")
  18345. },
  18346. {
  18347. name: "Bigger",
  18348. height: math.unit(24, "meters")
  18349. },
  18350. {
  18351. name: "Huge",
  18352. height: math.unit(80, "meters")
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(6 + 2 / 12, "feet"),
  18361. weight: math.unit(153, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/luca-cervicum/front.svg",
  18365. extra: 370 / 327,
  18366. bottom: 0.015
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(6 + 2 / 12, "feet"),
  18371. weight: math.unit(153, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/luca-cervicum/back.svg",
  18375. extra: 367 / 333,
  18376. bottom: 0.005
  18377. }
  18378. },
  18379. frontGear: {
  18380. height: math.unit(6 + 2 / 12, "feet"),
  18381. weight: math.unit(173, "lb"),
  18382. name: "Front (Gear)",
  18383. image: {
  18384. source: "./media/characters/luca-cervicum/front-gear.svg",
  18385. extra: 377 / 333,
  18386. bottom: 0.006
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(6 + 2 / 12, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(6 + 1 / 12, "feet"),
  18403. weight: math.unit(304, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/oliver/front.svg",
  18407. extra: 157 / 143,
  18408. bottom: 0.08
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(6 + 1 / 12, "feet"),
  18416. default: true
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18422. {
  18423. front: {
  18424. height: math.unit(5 + 7 / 12, "feet"),
  18425. weight: math.unit(140, "lb"),
  18426. name: "Front",
  18427. image: {
  18428. source: "./media/characters/shane/front.svg",
  18429. extra: 304 / 289,
  18430. bottom: 0.005
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(5 + 7 / 12, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(5 + 9 / 12, "feet"),
  18447. weight: math.unit(178, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/shin/front.svg",
  18451. extra: 159 / 151,
  18452. bottom: 0.015
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(5 + 9 / 12, "feet"),
  18460. default: true
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18466. {
  18467. front: {
  18468. height: math.unit(5 + 10 / 12, "feet"),
  18469. weight: math.unit(168, "lb"),
  18470. name: "Front",
  18471. image: {
  18472. source: "./media/characters/xerxes/front.svg",
  18473. extra: 282 / 260,
  18474. bottom: 0.045
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(5 + 10 / 12, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(6 + 7 / 12, "feet"),
  18491. weight: math.unit(208, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/chaska/front.svg",
  18495. extra: 332 / 319,
  18496. bottom: 0.015
  18497. }
  18498. },
  18499. },
  18500. [
  18501. {
  18502. name: "Normal",
  18503. height: math.unit(6 + 7 / 12, "feet"),
  18504. default: true
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18510. {
  18511. front: {
  18512. height: math.unit(5 + 8 / 12, "feet"),
  18513. weight: math.unit(208, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/enuk/front.svg",
  18517. extra: 437 / 406,
  18518. bottom: 0.02
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(5 + 8 / 12, "feet"),
  18526. default: true
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(5 + 10 / 12, "feet"),
  18535. weight: math.unit(252, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/bruun/front.svg",
  18539. extra: 197 / 187,
  18540. bottom: 0.012
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(5 + 10 / 12, "feet"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(6 + 10 / 12, "feet"),
  18557. weight: math.unit(255, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/alexeev/front.svg",
  18561. extra: 213 / 200,
  18562. bottom: 0.05
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(6 + 10 / 12, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(2 + 8 / 12, "feet"),
  18579. weight: math.unit(22, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/evelyn/front.svg",
  18583. extra: 208 / 180
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(2 + 8 / 12, "feet"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(5 + 9 / 12, "feet"),
  18600. weight: math.unit(139, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/inca/front.svg",
  18604. extra: 294 / 291,
  18605. bottom: 0.03
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(5 + 9 / 12, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18619. {
  18620. front: {
  18621. height: math.unit(5 + 1 / 12, "feet"),
  18622. weight: math.unit(84, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/magdalene/front.svg",
  18626. extra: 293 / 273
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(5 + 1 / 12, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(6 + 3 / 12, "feet"),
  18643. weight: math.unit(185, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/mera/front.svg",
  18647. extra: 291 / 277,
  18648. bottom: 0.03
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(6 + 3 / 12, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(6 + 7 / 12, "feet"),
  18665. weight: math.unit(160, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/ceres/front.svg",
  18669. extra: 1023 / 950,
  18670. bottom: 0.027
  18671. }
  18672. },
  18673. back: {
  18674. height: math.unit(6 + 7 / 12, "feet"),
  18675. weight: math.unit(160, "lb"),
  18676. name: "Back",
  18677. image: {
  18678. source: "./media/characters/ceres/back.svg",
  18679. extra: 1023 / 950
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(6 + 7 / 12, "feet"),
  18687. default: true
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(5 + 10 / 12, "feet"),
  18696. weight: math.unit(150, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/kris/front.svg",
  18700. extra: 885 / 803,
  18701. bottom: 0.03
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(5 + 10 / 12, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(7, "feet"),
  18718. weight: math.unit(120, "kg"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/taluthus/front.svg",
  18722. extra: 903 / 833,
  18723. bottom: 0.015
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(7, "feet"),
  18731. default: true
  18732. },
  18733. {
  18734. name: "Macro",
  18735. height: math.unit(300, "feet")
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(5 + 9 / 12, "feet"),
  18744. weight: math.unit(145, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/dawn/front.svg",
  18748. extra: 2094 / 2016,
  18749. bottom: 0.025
  18750. }
  18751. },
  18752. back: {
  18753. height: math.unit(5 + 9 / 12, "feet"),
  18754. weight: math.unit(160, "lb"),
  18755. name: "Back",
  18756. image: {
  18757. source: "./media/characters/dawn/back.svg",
  18758. extra: 2112 / 2080,
  18759. bottom: 0.005
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(6 + 7 / 12, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18773. {
  18774. anthro: {
  18775. height: math.unit(8 + 3 / 12, "feet"),
  18776. weight: math.unit(450, "lb"),
  18777. name: "Anthro",
  18778. image: {
  18779. source: "./media/characters/arador/anthro.svg",
  18780. extra: 1835 / 1718,
  18781. bottom: 0.025
  18782. }
  18783. },
  18784. feral: {
  18785. height: math.unit(4, "feet"),
  18786. weight: math.unit(200, "lb"),
  18787. name: "Feral",
  18788. image: {
  18789. source: "./media/characters/arador/feral.svg",
  18790. extra: 1683 / 1514,
  18791. bottom: 0.07
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(8 + 3 / 12, "feet")
  18799. },
  18800. {
  18801. name: "Macro",
  18802. height: math.unit(82.5, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(5 + 10 / 12, "feet"),
  18812. weight: math.unit(125, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/dharsi/front.svg",
  18816. extra: 716 / 630,
  18817. bottom: 0.035
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Nano",
  18824. height: math.unit(100, "nm")
  18825. },
  18826. {
  18827. name: "Micro",
  18828. height: math.unit(2, "inches")
  18829. },
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(5 + 10 / 12, "feet"),
  18833. default: true
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(1000, "feet")
  18838. },
  18839. {
  18840. name: "Megamacro",
  18841. height: math.unit(10, "miles")
  18842. },
  18843. {
  18844. name: "Gigamacro",
  18845. height: math.unit(3000, "miles")
  18846. },
  18847. {
  18848. name: "Teramacro",
  18849. height: math.unit(500000, "miles")
  18850. },
  18851. {
  18852. name: "Teramacro+",
  18853. height: math.unit(30, "galaxies")
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(6, "feet"),
  18862. weight: math.unit(150, "lb"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/deathy/front.svg",
  18866. extra: 1552 / 1463,
  18867. bottom: 0.025
  18868. }
  18869. },
  18870. side: {
  18871. height: math.unit(6, "feet"),
  18872. weight: math.unit(150, "lb"),
  18873. name: "Side",
  18874. image: {
  18875. source: "./media/characters/deathy/side.svg",
  18876. extra: 1604 / 1455,
  18877. bottom: 0.025
  18878. }
  18879. },
  18880. back: {
  18881. height: math.unit(6, "feet"),
  18882. weight: math.unit(150, "lb"),
  18883. name: "Back",
  18884. image: {
  18885. source: "./media/characters/deathy/back.svg",
  18886. extra: 1580 / 1463,
  18887. bottom: 0.005
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Micro",
  18894. height: math.unit(5, "millimeters")
  18895. },
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(6 + 5 / 12, "feet"),
  18899. default: true
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18905. {
  18906. front: {
  18907. height: math.unit(16, "feet"),
  18908. weight: math.unit(4000, "lb"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/juniper/front.svg",
  18912. bottom: 0.04
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(16, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(6, "feet"),
  18929. weight: math.unit(150, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/hipster/front.svg",
  18933. extra: 1312 / 1209,
  18934. bottom: 0.025
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(6, "feet"),
  18939. weight: math.unit(150, "lb"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/hipster/back.svg",
  18943. extra: 1281 / 1196,
  18944. bottom: 0.01
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Micro",
  18951. height: math.unit(1, "mm")
  18952. },
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(4, "inches"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(500, "feet")
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(1000, "miles")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6, "feet"),
  18973. weight: math.unit(150, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/tendirmuldr/front.svg",
  18977. extra: 1878 / 1772,
  18978. bottom: 0.015
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Megamacro",
  18985. height: math.unit(1500, "miles"),
  18986. default: true
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Mort", species: ["demon"], tags: ["feral"] },
  18992. {
  18993. front: {
  18994. height: math.unit(14, "feet"),
  18995. weight: math.unit(12000, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/mort/front.svg",
  18999. extra: 365 / 318,
  19000. bottom: 0.01
  19001. }
  19002. },
  19003. side: {
  19004. height: math.unit(14, "feet"),
  19005. weight: math.unit(12000, "lb"),
  19006. name: "Side",
  19007. image: {
  19008. source: "./media/characters/mort/side.svg",
  19009. extra: 365 / 318,
  19010. bottom: 0.052
  19011. },
  19012. default: true
  19013. },
  19014. back: {
  19015. height: math.unit(14, "feet"),
  19016. weight: math.unit(12000, "lb"),
  19017. name: "Back",
  19018. image: {
  19019. source: "./media/characters/mort/back.svg",
  19020. extra: 371 / 332,
  19021. bottom: 0.18
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(14, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19035. {
  19036. front: {
  19037. height: math.unit(8, "feet"),
  19038. weight: math.unit(1, "ton"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/lycoa/front.svg",
  19042. extra: 1875 / 1789,
  19043. bottom: 0.022
  19044. }
  19045. },
  19046. back: {
  19047. height: math.unit(8, "feet"),
  19048. weight: math.unit(1, "ton"),
  19049. name: "Back",
  19050. image: {
  19051. source: "./media/characters/lycoa/back.svg",
  19052. extra: 1835 / 1781,
  19053. bottom: 0.03
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(8, "feet"),
  19061. default: true
  19062. },
  19063. {
  19064. name: "Macro",
  19065. height: math.unit(30, "feet")
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19071. {
  19072. front: {
  19073. height: math.unit(4 + 2 / 12, "feet"),
  19074. weight: math.unit(70, "lb"),
  19075. name: "Front",
  19076. image: {
  19077. source: "./media/characters/naldara/front.svg",
  19078. extra: 841 / 720,
  19079. bottom: 0.04
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(4 + 2 / 12, "feet"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(13 + 7 / 12, "feet"),
  19096. weight: math.unit(1500, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/briar/front.svg",
  19100. extra: 626 / 596,
  19101. bottom: 0.08
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Normal",
  19108. height: math.unit(13 + 7 / 12, "feet"),
  19109. default: true
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19115. {
  19116. side: {
  19117. height: math.unit(10, "feet"),
  19118. weight: math.unit(500, "lb"),
  19119. name: "Side",
  19120. image: {
  19121. source: "./media/characters/vanguard/side.svg",
  19122. extra: 502 / 425,
  19123. bottom: 0.087
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(10, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(7.5, "feet"),
  19140. weight: math.unit(2, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/artemis/front.svg",
  19144. extra: 1192 / 1075,
  19145. bottom: 0.07
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(7.5, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Enlarged",
  19157. height: math.unit(12, "feet")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(5 + 3 / 12, "feet"),
  19166. weight: math.unit(160, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/kira/front.svg",
  19170. extra: 906 / 786,
  19171. bottom: 0.01
  19172. }
  19173. },
  19174. back: {
  19175. height: math.unit(5 + 3 / 12, "feet"),
  19176. weight: math.unit(160, "lb"),
  19177. name: "Back",
  19178. image: {
  19179. source: "./media/characters/kira/back.svg",
  19180. extra: 882 / 757,
  19181. bottom: 0.005
  19182. }
  19183. },
  19184. frontDressed: {
  19185. height: math.unit(5 + 3 / 12, "feet"),
  19186. weight: math.unit(160, "lb"),
  19187. name: "Front (Dressed)",
  19188. image: {
  19189. source: "./media/characters/kira/front-dressed.svg",
  19190. extra: 906 / 786,
  19191. bottom: 0.01
  19192. }
  19193. },
  19194. beans: {
  19195. height: math.unit(0.92, "feet"),
  19196. name: "Beans",
  19197. image: {
  19198. source: "./media/characters/kira/beans.svg"
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(5 + 3 / 12, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(5 + 4 / 12, "feet"),
  19215. weight: math.unit(145, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/scramble/front.svg",
  19219. extra: 763 / 727,
  19220. bottom: 0.05
  19221. }
  19222. },
  19223. back: {
  19224. height: math.unit(5 + 4 / 12, "feet"),
  19225. weight: math.unit(145, "lb"),
  19226. name: "Back",
  19227. image: {
  19228. source: "./media/characters/scramble/back.svg",
  19229. extra: 826 / 737,
  19230. bottom: 0.002
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(5 + 4 / 12, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19244. {
  19245. side: {
  19246. height: math.unit(6 + 2 / 12, "feet"),
  19247. weight: math.unit(190, "lb"),
  19248. name: "Side",
  19249. image: {
  19250. source: "./media/characters/biscuit/side.svg",
  19251. extra: 858 / 791,
  19252. bottom: 0.044
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(6 + 2 / 12, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19266. {
  19267. front: {
  19268. height: math.unit(5 + 2 / 12, "feet"),
  19269. weight: math.unit(120, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/poffin/front.svg",
  19273. extra: 786 / 680,
  19274. bottom: 0.005
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(5 + 2 / 12, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19288. {
  19289. front: {
  19290. height: math.unit(6 + 3 / 12, "feet"),
  19291. weight: math.unit(519, "lb"),
  19292. name: "Front",
  19293. image: {
  19294. source: "./media/characters/dhari/front.svg",
  19295. extra: 1048 / 946,
  19296. bottom: 0.015
  19297. }
  19298. },
  19299. back: {
  19300. height: math.unit(6 + 3 / 12, "feet"),
  19301. weight: math.unit(519, "lb"),
  19302. name: "Back",
  19303. image: {
  19304. source: "./media/characters/dhari/back.svg",
  19305. extra: 1048 / 931,
  19306. bottom: 0.005
  19307. }
  19308. },
  19309. frontDressed: {
  19310. height: math.unit(6 + 3 / 12, "feet"),
  19311. weight: math.unit(519, "lb"),
  19312. name: "Front (Dressed)",
  19313. image: {
  19314. source: "./media/characters/dhari/front-dressed.svg",
  19315. extra: 1713 / 1546,
  19316. bottom: 0.02
  19317. }
  19318. },
  19319. backDressed: {
  19320. height: math.unit(6 + 3 / 12, "feet"),
  19321. weight: math.unit(519, "lb"),
  19322. name: "Back (Dressed)",
  19323. image: {
  19324. source: "./media/characters/dhari/back-dressed.svg",
  19325. extra: 1699 / 1537,
  19326. bottom: 0.01
  19327. }
  19328. },
  19329. maw: {
  19330. height: math.unit(0.95, "feet"),
  19331. name: "Maw",
  19332. image: {
  19333. source: "./media/characters/dhari/maw.svg"
  19334. }
  19335. },
  19336. wereFront: {
  19337. height: math.unit(12 + 8 / 12, "feet"),
  19338. weight: math.unit(4000, "lb"),
  19339. name: "Front (Were)",
  19340. image: {
  19341. source: "./media/characters/dhari/were-front.svg",
  19342. extra: 1065 / 969,
  19343. bottom: 0.015
  19344. }
  19345. },
  19346. wereBack: {
  19347. height: math.unit(12 + 8 / 12, "feet"),
  19348. weight: math.unit(4000, "lb"),
  19349. name: "Back (Were)",
  19350. image: {
  19351. source: "./media/characters/dhari/were-back.svg",
  19352. extra: 1065 / 969,
  19353. bottom: 0.012
  19354. }
  19355. },
  19356. wereMaw: {
  19357. height: math.unit(0.625, "meters"),
  19358. name: "Maw (Were)",
  19359. image: {
  19360. source: "./media/characters/dhari/were-maw.svg"
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(6 + 3 / 12, "feet"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19374. {
  19375. anthro: {
  19376. height: math.unit(5 + 7 / 12, "feet"),
  19377. weight: math.unit(175, "lb"),
  19378. name: "Anthro",
  19379. image: {
  19380. source: "./media/characters/rena-dyne/anthro.svg",
  19381. extra: 1849 / 1785,
  19382. bottom: 0.005
  19383. }
  19384. },
  19385. taur: {
  19386. height: math.unit(15 + 6 / 12, "feet"),
  19387. weight: math.unit(8000, "lb"),
  19388. name: "Taur",
  19389. image: {
  19390. source: "./media/characters/rena-dyne/taur.svg",
  19391. extra: 2315 / 2234,
  19392. bottom: 0.033
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(5 + 7 / 12, "feet"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19406. {
  19407. front: {
  19408. height: math.unit(8, "feet"),
  19409. weight: math.unit(600, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/weremeep/front.svg",
  19413. extra: 967 / 862,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(8, "feet"),
  19422. default: true
  19423. },
  19424. {
  19425. name: "Lorg",
  19426. height: math.unit(12, "feet")
  19427. },
  19428. {
  19429. name: "Oh Lawd She Comin'",
  19430. height: math.unit(20, "feet")
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19436. {
  19437. front: {
  19438. height: math.unit(4, "feet"),
  19439. weight: math.unit(90, "lb"),
  19440. name: "Front",
  19441. image: {
  19442. source: "./media/characters/reza/front.svg",
  19443. extra: 1183 / 1111,
  19444. bottom: 0.017
  19445. }
  19446. },
  19447. back: {
  19448. height: math.unit(4, "feet"),
  19449. weight: math.unit(90, "lb"),
  19450. name: "Back",
  19451. image: {
  19452. source: "./media/characters/reza/back.svg",
  19453. extra: 1183 / 1111,
  19454. bottom: 0.01
  19455. }
  19456. },
  19457. drake: {
  19458. height: math.unit(30, "feet"),
  19459. weight: math.unit(246960, "lb"),
  19460. name: "Drake",
  19461. image: {
  19462. source: "./media/characters/reza/drake.svg",
  19463. extra: 2350/2024,
  19464. bottom: 60.7/2403
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(4, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19478. {
  19479. side: {
  19480. height: math.unit(15, "feet"),
  19481. weight: math.unit(14, "tons"),
  19482. name: "Side",
  19483. image: {
  19484. source: "./media/characters/athea/side.svg",
  19485. extra: 960 / 540,
  19486. bottom: 0.003
  19487. }
  19488. },
  19489. sitting: {
  19490. height: math.unit(6 * 2.85, "feet"),
  19491. weight: math.unit(14, "tons"),
  19492. name: "Sitting",
  19493. image: {
  19494. source: "./media/characters/athea/sitting.svg",
  19495. extra: 621 / 581,
  19496. bottom: 0.075
  19497. }
  19498. },
  19499. maw: {
  19500. height: math.unit(7.59498031496063, "feet"),
  19501. name: "Maw",
  19502. image: {
  19503. source: "./media/characters/athea/maw.svg"
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Lap Cat",
  19510. height: math.unit(2.5, "feet")
  19511. },
  19512. {
  19513. name: "Minimacro",
  19514. height: math.unit(15, "feet"),
  19515. default: true
  19516. },
  19517. {
  19518. name: "Macro",
  19519. height: math.unit(120, "feet")
  19520. },
  19521. {
  19522. name: "Macro+",
  19523. height: math.unit(640, "feet")
  19524. },
  19525. {
  19526. name: "Colossus",
  19527. height: math.unit(2.2, "miles")
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(8 + 8 / 12, "feet"),
  19536. weight: math.unit(130, "kg"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/seroko/front.svg",
  19540. extra: 1385 / 1280,
  19541. bottom: 0.025
  19542. }
  19543. },
  19544. back: {
  19545. height: math.unit(8 + 8 / 12, "feet"),
  19546. weight: math.unit(130, "kg"),
  19547. name: "Back",
  19548. image: {
  19549. source: "./media/characters/seroko/back.svg",
  19550. extra: 1369 / 1238,
  19551. bottom: 0.018
  19552. }
  19553. },
  19554. frontDressed: {
  19555. height: math.unit(8 + 8 / 12, "feet"),
  19556. weight: math.unit(130, "kg"),
  19557. name: "Front (Dressed)",
  19558. image: {
  19559. source: "./media/characters/seroko/front-dressed.svg",
  19560. extra: 1366 / 1275,
  19561. bottom: 0.03
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Normal",
  19568. height: math.unit(8 + 8 / 12, "feet"),
  19569. default: true
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19575. {
  19576. front: {
  19577. height: math.unit(5.5, "feet"),
  19578. weight: math.unit(160, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/quatzi/front.svg",
  19582. extra: 2346 / 2242,
  19583. bottom: 0.015
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(5.5, "feet"),
  19591. default: true
  19592. },
  19593. {
  19594. name: "Big",
  19595. height: math.unit(7.7, "feet")
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19601. {
  19602. front: {
  19603. height: math.unit(5 + 11 / 12, "feet"),
  19604. weight: math.unit(180, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/sen/front.svg",
  19608. extra: 1321 / 1254,
  19609. bottom: 0.015
  19610. }
  19611. },
  19612. side: {
  19613. height: math.unit(5 + 11 / 12, "feet"),
  19614. weight: math.unit(180, "lb"),
  19615. name: "Side",
  19616. image: {
  19617. source: "./media/characters/sen/side.svg",
  19618. extra: 1321 / 1254,
  19619. bottom: 0.007
  19620. }
  19621. },
  19622. back: {
  19623. height: math.unit(5 + 11 / 12, "feet"),
  19624. weight: math.unit(180, "lb"),
  19625. name: "Back",
  19626. image: {
  19627. source: "./media/characters/sen/back.svg",
  19628. extra: 1321 / 1254
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(5 + 11 / 12, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(166.6, "cm"),
  19645. weight: math.unit(66.6, "kg"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/fruity/front.svg",
  19649. extra: 1510 / 1386,
  19650. bottom: 0.04
  19651. }
  19652. },
  19653. back: {
  19654. height: math.unit(166.6, "cm"),
  19655. weight: math.unit(66.6, "lb"),
  19656. name: "Back",
  19657. image: {
  19658. source: "./media/characters/fruity/back.svg",
  19659. extra: 1563 / 1435,
  19660. bottom: 0.005
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(166.6, "cm"),
  19668. default: true
  19669. },
  19670. {
  19671. name: "Demonic",
  19672. height: math.unit(166.6, "feet")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19678. {
  19679. side: {
  19680. height: math.unit(10, "feet"),
  19681. weight: math.unit(500, "lb"),
  19682. name: "Side",
  19683. image: {
  19684. source: "./media/characters/zost/side.svg",
  19685. extra: 966 / 880,
  19686. bottom: 0.075
  19687. }
  19688. },
  19689. mawFront: {
  19690. height: math.unit(1.08, "meters"),
  19691. name: "Maw (Front)",
  19692. image: {
  19693. source: "./media/characters/zost/maw-front.svg"
  19694. }
  19695. },
  19696. mawSide: {
  19697. height: math.unit(2.66, "feet"),
  19698. name: "Maw (Side)",
  19699. image: {
  19700. source: "./media/characters/zost/maw-side.svg"
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(10, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(5 + 4 / 12, "feet"),
  19717. weight: math.unit(120, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/luci/front.svg",
  19721. extra: 1985 / 1884,
  19722. bottom: 0.04
  19723. }
  19724. },
  19725. back: {
  19726. height: math.unit(5 + 4 / 12, "feet"),
  19727. weight: math.unit(120, "lb"),
  19728. name: "Back",
  19729. image: {
  19730. source: "./media/characters/luci/back.svg",
  19731. extra: 1892 / 1791,
  19732. bottom: 0.002
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 4 / 12, "feet"),
  19740. default: true
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(1500, "feet"),
  19749. weight: math.unit(3.8e6, "tons"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/2th/front.svg",
  19753. extra: 3489 / 3350,
  19754. bottom: 0.1
  19755. }
  19756. },
  19757. foot: {
  19758. height: math.unit(461, "feet"),
  19759. name: "Foot",
  19760. image: {
  19761. source: "./media/characters/2th/foot.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "\"Micro\"",
  19768. height: math.unit(15 + 7 / 12, "feet")
  19769. },
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(1500, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Macro",
  19777. height: math.unit(5000, "feet")
  19778. },
  19779. {
  19780. name: "Megamacro",
  19781. height: math.unit(15, "miles")
  19782. },
  19783. {
  19784. name: "Gigamacro",
  19785. height: math.unit(4000, "miles")
  19786. },
  19787. {
  19788. name: "Galactic",
  19789. height: math.unit(50, "AU")
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(5 + 6 / 12, "feet"),
  19798. weight: math.unit(220, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/amethyst/front.svg",
  19802. extra: 2078 / 2040,
  19803. bottom: 0.045
  19804. }
  19805. },
  19806. back: {
  19807. height: math.unit(5 + 6 / 12, "feet"),
  19808. weight: math.unit(220, "lb"),
  19809. name: "Back",
  19810. image: {
  19811. source: "./media/characters/amethyst/back.svg",
  19812. extra: 2021 / 1989,
  19813. bottom: 0.02
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(5 + 6 / 12, "feet"),
  19821. default: true
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(4 + 11 / 12, "feet"),
  19830. weight: math.unit(120, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/yumi-akiyama/front.svg",
  19834. extra: 1327 / 1235,
  19835. bottom: 0.02
  19836. }
  19837. },
  19838. back: {
  19839. height: math.unit(4 + 11 / 12, "feet"),
  19840. weight: math.unit(120, "lb"),
  19841. name: "Back",
  19842. image: {
  19843. source: "./media/characters/yumi-akiyama/back.svg",
  19844. extra: 1287 / 1245,
  19845. bottom: 0.002
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Galactic",
  19852. height: math.unit(50, "galaxies"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Universal",
  19857. height: math.unit(100, "universes")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(8, "feet"),
  19866. weight: math.unit(500, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/rifter-yrmori/front.svg",
  19870. extra: 1180 / 1125,
  19871. bottom: 0.02
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(8, "feet"),
  19876. weight: math.unit(500, "lb"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/rifter-yrmori/back.svg",
  19880. extra: 1190 / 1145,
  19881. bottom: 0.001
  19882. }
  19883. },
  19884. wings: {
  19885. height: math.unit(7.75, "feet"),
  19886. weight: math.unit(500, "lb"),
  19887. name: "Wings",
  19888. image: {
  19889. source: "./media/characters/rifter-yrmori/wings.svg",
  19890. extra: 1357 / 1285
  19891. }
  19892. },
  19893. maw: {
  19894. height: math.unit(0.8, "feet"),
  19895. name: "Maw",
  19896. image: {
  19897. source: "./media/characters/rifter-yrmori/maw.svg"
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(8, "feet"),
  19905. default: true
  19906. },
  19907. {
  19908. name: "Macro",
  19909. height: math.unit(42, "meters")
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19915. {
  19916. were: {
  19917. height: math.unit(25 + 6 / 12, "feet"),
  19918. weight: math.unit(10000, "lb"),
  19919. name: "Were",
  19920. image: {
  19921. source: "./media/characters/tahajin/were.svg",
  19922. extra: 801 / 770,
  19923. bottom: 0.042
  19924. }
  19925. },
  19926. aquatic: {
  19927. height: math.unit(6 + 4 / 12, "feet"),
  19928. weight: math.unit(160, "lb"),
  19929. name: "Aquatic",
  19930. image: {
  19931. source: "./media/characters/tahajin/aquatic.svg",
  19932. extra: 572 / 542,
  19933. bottom: 0.04
  19934. }
  19935. },
  19936. chow: {
  19937. height: math.unit(8 + 11 / 12, "feet"),
  19938. weight: math.unit(450, "lb"),
  19939. name: "Chow",
  19940. image: {
  19941. source: "./media/characters/tahajin/chow.svg",
  19942. extra: 660 / 640,
  19943. bottom: 0.015
  19944. }
  19945. },
  19946. demiNaga: {
  19947. height: math.unit(6 + 8 / 12, "feet"),
  19948. weight: math.unit(300, "lb"),
  19949. name: "Demi Naga",
  19950. image: {
  19951. source: "./media/characters/tahajin/demi-naga.svg",
  19952. extra: 643 / 615,
  19953. bottom: 0.1
  19954. }
  19955. },
  19956. data: {
  19957. height: math.unit(5, "inches"),
  19958. weight: math.unit(0.1, "lb"),
  19959. name: "Data",
  19960. image: {
  19961. source: "./media/characters/tahajin/data.svg"
  19962. }
  19963. },
  19964. fluu: {
  19965. height: math.unit(5 + 7 / 12, "feet"),
  19966. weight: math.unit(140, "lb"),
  19967. name: "Fluu",
  19968. image: {
  19969. source: "./media/characters/tahajin/fluu.svg",
  19970. extra: 628 / 592,
  19971. bottom: 0.02
  19972. }
  19973. },
  19974. starWarrior: {
  19975. height: math.unit(4 + 5 / 12, "feet"),
  19976. weight: math.unit(50, "lb"),
  19977. name: "Star Warrior",
  19978. image: {
  19979. source: "./media/characters/tahajin/star-warrior.svg"
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(25 + 6 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(8, "feet"),
  19996. weight: math.unit(350, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/gabira/front.svg",
  20000. extra: 608 / 580,
  20001. bottom: 0.03
  20002. }
  20003. },
  20004. back: {
  20005. height: math.unit(8, "feet"),
  20006. weight: math.unit(350, "lb"),
  20007. name: "Back",
  20008. image: {
  20009. source: "./media/characters/gabira/back.svg",
  20010. extra: 608 / 580,
  20011. bottom: 0.03
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(8, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(5 + 3 / 12, "feet"),
  20028. weight: math.unit(137, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/sasha-katraine/front.svg",
  20032. bottom: 0.045
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Micro",
  20039. height: math.unit(5, "inches")
  20040. },
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(5 + 3 / 12, "feet"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20050. {
  20051. side: {
  20052. height: math.unit(4, "inches"),
  20053. weight: math.unit(200, "grams"),
  20054. name: "Side",
  20055. image: {
  20056. source: "./media/characters/der/side.svg",
  20057. extra: 719 / 400,
  20058. bottom: 30.6 / 749.9187
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Micro",
  20065. height: math.unit(4, "inches"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20072. {
  20073. side: {
  20074. height: math.unit(30, "meters"),
  20075. weight: math.unit(700, "tonnes"),
  20076. name: "Side",
  20077. image: {
  20078. source: "./media/characters/fixerdragon/side.svg",
  20079. extra: (1293.0514 - 116.03) / 1106.86,
  20080. bottom: 116.03 / 1293.0514
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Planck",
  20087. height: math.unit(1.6e-35, "meters")
  20088. },
  20089. {
  20090. name: "Micro",
  20091. height: math.unit(0.4, "meters")
  20092. },
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(30, "meters"),
  20096. default: true
  20097. },
  20098. {
  20099. name: "Megamacro",
  20100. height: math.unit(1.2, "megameters")
  20101. },
  20102. {
  20103. name: "Teramacro",
  20104. height: math.unit(130, "terameters")
  20105. },
  20106. {
  20107. name: "Yottamacro",
  20108. height: math.unit(6200, "yottameters")
  20109. },
  20110. ]
  20111. ));
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(8, "feet"),
  20117. weight: math.unit(250, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/kite/front.svg",
  20121. extra: 2796 / 2659,
  20122. bottom: 0.002
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(8, "feet"),
  20130. default: true
  20131. },
  20132. {
  20133. name: "Macro",
  20134. height: math.unit(360, "feet")
  20135. },
  20136. {
  20137. name: "Megamacro",
  20138. height: math.unit(1500, "feet")
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(5 + 10 / 12, "feet"),
  20147. weight: math.unit(150, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/poojawa-vynar/front.svg",
  20151. extra: (1506.1547 - 55) / 1356.6,
  20152. bottom: 55 / 1506.1547
  20153. }
  20154. },
  20155. frontTailless: {
  20156. height: math.unit(5 + 10 / 12, "feet"),
  20157. weight: math.unit(150, "lb"),
  20158. name: "Front (Tailless)",
  20159. image: {
  20160. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20161. extra: (1506.1547 - 55) / 1356.6,
  20162. bottom: 55 / 1506.1547
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(5 + 10 / 12, "feet"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20176. {
  20177. front: {
  20178. height: math.unit(293, "meters"),
  20179. weight: math.unit(70400, "tons"),
  20180. name: "Front",
  20181. image: {
  20182. source: "./media/characters/violette/front.svg",
  20183. extra: 1227 / 1180,
  20184. bottom: 0.005
  20185. }
  20186. },
  20187. back: {
  20188. height: math.unit(293, "meters"),
  20189. weight: math.unit(70400, "tons"),
  20190. name: "Back",
  20191. image: {
  20192. source: "./media/characters/violette/back.svg",
  20193. extra: 1227 / 1180,
  20194. bottom: 0.005
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Macro",
  20201. height: math.unit(293, "meters"),
  20202. default: true
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(1050, "feet"),
  20211. weight: math.unit(200000, "tons"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/alessandra/front.svg",
  20215. extra: 960 / 912,
  20216. bottom: 0.06
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Macro",
  20223. height: math.unit(1050, "feet")
  20224. },
  20225. {
  20226. name: "Macro+",
  20227. height: math.unit(900, "meters"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(5, "feet"),
  20237. weight: math.unit(187, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/person/front.svg",
  20241. extra: 3087 / 2945,
  20242. bottom: 91 / 3181
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Micro",
  20249. height: math.unit(3, "inches")
  20250. },
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(5, "feet"),
  20254. default: true
  20255. },
  20256. {
  20257. name: "Macro",
  20258. height: math.unit(90, "feet")
  20259. },
  20260. {
  20261. name: "Max Size",
  20262. height: math.unit(280, "feet")
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(4.5, "meters"),
  20271. weight: math.unit(3200, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/ty/front.svg",
  20275. extra: 1038 / 960,
  20276. bottom: 31.156 / 1068
  20277. }
  20278. },
  20279. back: {
  20280. height: math.unit(4.5, "meters"),
  20281. weight: math.unit(3200, "lb"),
  20282. name: "Back",
  20283. image: {
  20284. source: "./media/characters/ty/back.svg",
  20285. extra: 1044 / 966,
  20286. bottom: 7.48 / 1049
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(4.5, "meters"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(5 + 4 / 12, "feet"),
  20303. weight: math.unit(115, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/rocky/front.svg",
  20307. extra: 1012 / 975,
  20308. bottom: 54 / 1066
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(5 + 4 / 12, "feet"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20322. {
  20323. upright: {
  20324. height: math.unit(6, "meters"),
  20325. weight: math.unit(4000, "kg"),
  20326. name: "Upright",
  20327. image: {
  20328. source: "./media/characters/ruin/upright.svg",
  20329. extra: 668 / 661,
  20330. bottom: 42 / 799.8396
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(6, "meters"),
  20338. default: true
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(5, "feet"),
  20347. weight: math.unit(106, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/robin/front.svg",
  20351. extra: 862 / 799,
  20352. bottom: 42.4 / 914.8856
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(5, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20366. {
  20367. side: {
  20368. height: math.unit(3, "feet"),
  20369. weight: math.unit(225, "lb"),
  20370. name: "Side",
  20371. image: {
  20372. source: "./media/characters/saian/side.svg",
  20373. extra: 566 / 356,
  20374. bottom: 79.7 / 643
  20375. }
  20376. },
  20377. maw: {
  20378. height: math.unit(2.85, "feet"),
  20379. name: "Maw",
  20380. image: {
  20381. source: "./media/characters/saian/maw.svg"
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(3, "feet"),
  20389. default: true
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20395. {
  20396. side: {
  20397. height: math.unit(8, "feet"),
  20398. weight: math.unit(300, "lb"),
  20399. name: "Side",
  20400. image: {
  20401. source: "./media/characters/equus-silvermane/side.svg",
  20402. extra: 2176 / 2050,
  20403. bottom: 65.7 / 2245
  20404. }
  20405. },
  20406. front: {
  20407. height: math.unit(8, "feet"),
  20408. weight: math.unit(300, "lb"),
  20409. name: "Front",
  20410. image: {
  20411. source: "./media/characters/equus-silvermane/front.svg",
  20412. extra: 4633 / 4400,
  20413. bottom: 71.3 / 4706.915
  20414. }
  20415. },
  20416. sideStepping: {
  20417. height: math.unit(8, "feet"),
  20418. weight: math.unit(300, "lb"),
  20419. name: "Side (Stepping)",
  20420. image: {
  20421. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20422. extra: 1968 / 1860,
  20423. bottom: 16.4 / 1989
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(8, "feet")
  20431. },
  20432. {
  20433. name: "Minimacro",
  20434. height: math.unit(75, "feet"),
  20435. default: true
  20436. },
  20437. {
  20438. name: "Macro",
  20439. height: math.unit(150, "feet")
  20440. },
  20441. {
  20442. name: "Macro+",
  20443. height: math.unit(1000, "feet")
  20444. },
  20445. {
  20446. name: "Megamacro",
  20447. height: math.unit(1, "mile")
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20453. {
  20454. side: {
  20455. height: math.unit(20, "feet"),
  20456. weight: math.unit(30000, "kg"),
  20457. name: "Side",
  20458. image: {
  20459. source: "./media/characters/windar/side.svg",
  20460. extra: 1491 / 1248,
  20461. bottom: 82.56 / 1568
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(20, "feet"),
  20469. default: true
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20475. {
  20476. side: {
  20477. height: math.unit(15.66, "feet"),
  20478. weight: math.unit(150, "lb"),
  20479. name: "Side",
  20480. image: {
  20481. source: "./media/characters/melody/side.svg",
  20482. extra: 1097 / 944,
  20483. bottom: 11.8 / 1109
  20484. }
  20485. },
  20486. sideOutfit: {
  20487. height: math.unit(15.66, "feet"),
  20488. weight: math.unit(150, "lb"),
  20489. name: "Side (Outfit)",
  20490. image: {
  20491. source: "./media/characters/melody/side-outfit.svg",
  20492. extra: 1097 / 944,
  20493. bottom: 11.8 / 1109
  20494. }
  20495. },
  20496. },
  20497. [
  20498. {
  20499. name: "Normal",
  20500. height: math.unit(15.66, "feet"),
  20501. default: true
  20502. },
  20503. ]
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20507. {
  20508. front: {
  20509. height: math.unit(8, "feet"),
  20510. weight: math.unit(325, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/windera/front.svg",
  20514. extra: 3180 / 2845,
  20515. bottom: 178 / 3365
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(8, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20529. {
  20530. front: {
  20531. height: math.unit(28.75, "feet"),
  20532. weight: math.unit(2000, "kg"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/sonear/front.svg",
  20536. extra: 1041.1 / 964.9,
  20537. bottom: 53.7 / 1096.6
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(28.75, "feet"),
  20545. default: true
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20551. {
  20552. side: {
  20553. height: math.unit(25.5, "feet"),
  20554. weight: math.unit(23000, "kg"),
  20555. name: "Side",
  20556. image: {
  20557. source: "./media/characters/kanara/side.svg"
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(25.5, "feet"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20571. {
  20572. side: {
  20573. height: math.unit(10, "feet"),
  20574. weight: math.unit(1000, "kg"),
  20575. name: "Side",
  20576. image: {
  20577. source: "./media/characters/ereus/side.svg",
  20578. extra: 1157 / 959,
  20579. bottom: 153 / 1312.5
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(10, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20593. {
  20594. side: {
  20595. height: math.unit(4.5, "feet"),
  20596. weight: math.unit(500, "lb"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/e-ter/side.svg",
  20600. extra: 1550 / 1248,
  20601. bottom: 146 / 1694
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(4.5, "feet"),
  20609. default: true
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20615. {
  20616. side: {
  20617. height: math.unit(9.7, "feet"),
  20618. weight: math.unit(4000, "kg"),
  20619. name: "Side",
  20620. image: {
  20621. source: "./media/characters/yamie/side.svg"
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(9.7, "feet"),
  20629. default: true
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Anders", species: ["unicorn"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(50, "feet"),
  20638. weight: math.unit(50000, "kg"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/anders/front.svg",
  20642. extra: 570 / 539,
  20643. bottom: 14.7 / 586.7
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Large",
  20650. height: math.unit(50, "feet")
  20651. },
  20652. {
  20653. name: "Macro",
  20654. height: math.unit(2000, "feet"),
  20655. default: true
  20656. },
  20657. {
  20658. name: "Megamacro",
  20659. height: math.unit(12, "miles")
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(7 + 2 / 12, "feet"),
  20668. weight: math.unit(300, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/reban/front.svg",
  20672. extra: 516 / 487,
  20673. bottom: 42.82 / 558.356
  20674. }
  20675. },
  20676. dick: {
  20677. height: math.unit(7 / 5, "feet"),
  20678. name: "Dick",
  20679. image: {
  20680. source: "./media/characters/reban/dick.svg"
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Natural Height",
  20687. height: math.unit(7 + 2 / 12, "feet")
  20688. },
  20689. {
  20690. name: "Macro",
  20691. height: math.unit(500, "feet"),
  20692. default: true
  20693. },
  20694. {
  20695. name: "Canon Height",
  20696. height: math.unit(50, "AU")
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(6, "feet"),
  20705. weight: math.unit(150, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/terrance-keayes/front.svg",
  20709. extra: 1.005,
  20710. bottom: 151 / 1615
  20711. }
  20712. },
  20713. side: {
  20714. height: math.unit(6, "feet"),
  20715. weight: math.unit(150, "lb"),
  20716. name: "Side",
  20717. image: {
  20718. source: "./media/characters/terrance-keayes/side.svg",
  20719. extra: 1.005,
  20720. bottom: 129.4 / 1544
  20721. }
  20722. },
  20723. back: {
  20724. height: math.unit(6, "feet"),
  20725. weight: math.unit(150, "lb"),
  20726. name: "Back",
  20727. image: {
  20728. source: "./media/characters/terrance-keayes/back.svg",
  20729. extra: 1.005,
  20730. bottom: 58.4 / 1557.3
  20731. }
  20732. },
  20733. dick: {
  20734. height: math.unit(6 * 0.208, "feet"),
  20735. name: "Dick",
  20736. image: {
  20737. source: "./media/characters/terrance-keayes/dick.svg"
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Canon Height",
  20744. height: math.unit(35, "miles"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(6, "feet"),
  20754. weight: math.unit(150, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/ofelia/front.svg",
  20758. extra: 546 / 541,
  20759. bottom: 39 / 583
  20760. }
  20761. },
  20762. back: {
  20763. height: math.unit(6, "feet"),
  20764. weight: math.unit(150, "lb"),
  20765. name: "Back",
  20766. image: {
  20767. source: "./media/characters/ofelia/back.svg",
  20768. extra: 564 / 559.5,
  20769. bottom: 8.69 / 573.02
  20770. }
  20771. },
  20772. maw: {
  20773. height: math.unit(1, "feet"),
  20774. name: "Maw",
  20775. image: {
  20776. source: "./media/characters/ofelia/maw.svg"
  20777. }
  20778. },
  20779. foot: {
  20780. height: math.unit(1.949, "feet"),
  20781. name: "Foot",
  20782. image: {
  20783. source: "./media/characters/ofelia/foot.svg"
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Canon Height",
  20790. height: math.unit(2000, "miles"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(6, "feet"),
  20800. weight: math.unit(150, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/samuel/front.svg",
  20804. extra: 265 / 258,
  20805. bottom: 2 / 266.1566
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Macro",
  20812. height: math.unit(100, "feet"),
  20813. default: true
  20814. },
  20815. {
  20816. name: "Full Size",
  20817. height: math.unit(1000, "miles")
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20823. {
  20824. front: {
  20825. height: math.unit(6, "feet"),
  20826. weight: math.unit(300, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/beishir-kiel/front.svg",
  20830. extra: 569 / 547,
  20831. bottom: 41.9 / 609
  20832. }
  20833. },
  20834. maw: {
  20835. height: math.unit(6 * 0.202, "feet"),
  20836. name: "Maw",
  20837. image: {
  20838. source: "./media/characters/beishir-kiel/maw.svg"
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Macro",
  20845. height: math.unit(300, "feet"),
  20846. default: true
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20852. {
  20853. front: {
  20854. height: math.unit(5 + 8 / 12, "feet"),
  20855. weight: math.unit(120, "lb"),
  20856. name: "Front",
  20857. image: {
  20858. source: "./media/characters/logan-grey/front.svg",
  20859. extra: 2539 / 2393,
  20860. bottom: 97.6 / 2636.37
  20861. }
  20862. },
  20863. frontAlt: {
  20864. height: math.unit(5 + 8 / 12, "feet"),
  20865. weight: math.unit(120, "lb"),
  20866. name: "Front (Alt)",
  20867. image: {
  20868. source: "./media/characters/logan-grey/front-alt.svg",
  20869. extra: 958 / 893,
  20870. bottom: 15 / 970.768
  20871. }
  20872. },
  20873. back: {
  20874. height: math.unit(5 + 8 / 12, "feet"),
  20875. weight: math.unit(120, "lb"),
  20876. name: "Back",
  20877. image: {
  20878. source: "./media/characters/logan-grey/back.svg",
  20879. extra: 958 / 893,
  20880. bottom: 2.1881 / 970.9788
  20881. }
  20882. },
  20883. dick: {
  20884. height: math.unit(1.437, "feet"),
  20885. name: "Dick",
  20886. image: {
  20887. source: "./media/characters/logan-grey/dick.svg"
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(5 + 8 / 12, "feet")
  20895. },
  20896. {
  20897. name: "The 500 Foot Femboy",
  20898. height: math.unit(500, "feet"),
  20899. default: true
  20900. },
  20901. {
  20902. name: "Megmacro",
  20903. height: math.unit(20, "miles")
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20909. {
  20910. front: {
  20911. height: math.unit(8 + 2 / 12, "feet"),
  20912. weight: math.unit(275, "lb"),
  20913. name: "Front",
  20914. image: {
  20915. source: "./media/characters/draganta/front.svg",
  20916. extra: 1177 / 1135,
  20917. bottom: 33.46 / 1212.1
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(8 + 6 / 12, "feet"),
  20925. default: true
  20926. },
  20927. {
  20928. name: "Macro",
  20929. height: math.unit(150, "feet")
  20930. },
  20931. {
  20932. name: "Megamacro",
  20933. height: math.unit(1000, "miles")
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20939. {
  20940. front: {
  20941. height: math.unit(1.72, "m"),
  20942. weight: math.unit(80, "lb"),
  20943. name: "Front",
  20944. image: {
  20945. source: "./media/characters/voski/front.svg",
  20946. extra: 2076.22 / 2022.4,
  20947. bottom: 102.7 / 2177.3866
  20948. }
  20949. },
  20950. frontNsfw: {
  20951. height: math.unit(1.72, "m"),
  20952. weight: math.unit(80, "lb"),
  20953. name: "Front (NSFW)",
  20954. image: {
  20955. source: "./media/characters/voski/front-nsfw.svg",
  20956. extra: 2076.22 / 2022.4,
  20957. bottom: 102.7 / 2177.3866
  20958. }
  20959. },
  20960. back: {
  20961. height: math.unit(1.72, "m"),
  20962. weight: math.unit(80, "lb"),
  20963. name: "Back",
  20964. image: {
  20965. source: "./media/characters/voski/back.svg",
  20966. extra: 2104 / 2051,
  20967. bottom: 10.45 / 2113.63
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(1.72, "m")
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(55, "m"),
  20979. default: true
  20980. },
  20981. {
  20982. name: "Macro+",
  20983. height: math.unit(300, "m")
  20984. },
  20985. {
  20986. name: "Macro++",
  20987. height: math.unit(700, "m")
  20988. },
  20989. {
  20990. name: "Macro+++",
  20991. height: math.unit(4500, "m")
  20992. },
  20993. {
  20994. name: "Macro++++",
  20995. height: math.unit(45, "km")
  20996. },
  20997. {
  20998. name: "Macro+++++",
  20999. height: math.unit(1220, "km")
  21000. },
  21001. ]
  21002. ))
  21003. characterMakers.push(() => makeCharacter(
  21004. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21005. {
  21006. front: {
  21007. height: math.unit(2.3, "m"),
  21008. weight: math.unit(304, "kg"),
  21009. name: "Front",
  21010. image: {
  21011. source: "./media/characters/icowom-lee/front.svg",
  21012. extra: 985/955,
  21013. bottom: 25.4/1012
  21014. }
  21015. },
  21016. fronttentacles: {
  21017. height: math.unit(2.3, "m"),
  21018. weight: math.unit(304, "kg"),
  21019. name: "Front-tentacles",
  21020. image: {
  21021. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21022. extra: 985/955,
  21023. bottom: 25.4/1012
  21024. }
  21025. },
  21026. back: {
  21027. height: math.unit(2.3, "m"),
  21028. weight: math.unit(304, "kg"),
  21029. name: "Back",
  21030. image: {
  21031. source: "./media/characters/icowom-lee/back.svg",
  21032. extra: 975/954,
  21033. bottom: 9.5/985
  21034. }
  21035. },
  21036. backtentacles: {
  21037. height: math.unit(2.3, "m"),
  21038. weight: math.unit(304, "kg"),
  21039. name: "Back-tentacles",
  21040. image: {
  21041. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21042. extra: 975/954,
  21043. bottom: 9.5/985
  21044. }
  21045. },
  21046. frontDressed: {
  21047. height: math.unit(2.3, "m"),
  21048. weight: math.unit(304, "kg"),
  21049. name: "Front (Dressed)",
  21050. image: {
  21051. source: "./media/characters/icowom-lee/front-dressed.svg",
  21052. extra: 3076 / 2933,
  21053. bottom: 51.4 / 3125.1889
  21054. }
  21055. },
  21056. rump: {
  21057. height: math.unit(0.776, "meters"),
  21058. name: "Rump",
  21059. image: {
  21060. source: "./media/characters/icowom-lee/rump.svg"
  21061. }
  21062. },
  21063. genitals: {
  21064. height: math.unit(0.78, "meters"),
  21065. name: "Genitals",
  21066. image: {
  21067. source: "./media/characters/icowom-lee/genitals.svg"
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(2.3, "meters"),
  21075. default: true
  21076. },
  21077. {
  21078. name: "Macro",
  21079. height: math.unit(94, "meters"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(22, "meters"),
  21089. weight: math.unit(21000, "kg"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/shock-diamond/front.svg",
  21093. extra: 2204 / 2053,
  21094. bottom: 65 / 2239.47
  21095. }
  21096. },
  21097. frontNude: {
  21098. height: math.unit(22, "meters"),
  21099. weight: math.unit(21000, "kg"),
  21100. name: "Front (Nude)",
  21101. image: {
  21102. source: "./media/characters/shock-diamond/front-nude.svg",
  21103. extra: 2514 / 2285,
  21104. bottom: 13 / 2527.56
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(3, "meters")
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(22, "meters"),
  21116. default: true
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(5 + 4 / 12, "feet"),
  21125. weight: math.unit(120, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/rory/front.svg",
  21129. extra: 589 / 556,
  21130. bottom: 45.7 / 635.76
  21131. }
  21132. },
  21133. frontNude: {
  21134. height: math.unit(5 + 4 / 12, "feet"),
  21135. weight: math.unit(120, "lb"),
  21136. name: "Front (Nude)",
  21137. image: {
  21138. source: "./media/characters/rory/front-nude.svg",
  21139. extra: 589 / 556,
  21140. bottom: 45.7 / 635.76
  21141. }
  21142. },
  21143. side: {
  21144. height: math.unit(5 + 4 / 12, "feet"),
  21145. weight: math.unit(120, "lb"),
  21146. name: "Side",
  21147. image: {
  21148. source: "./media/characters/rory/side.svg",
  21149. extra: 597 / 564,
  21150. bottom: 55 / 653
  21151. }
  21152. },
  21153. back: {
  21154. height: math.unit(5 + 4 / 12, "feet"),
  21155. weight: math.unit(120, "lb"),
  21156. name: "Back",
  21157. image: {
  21158. source: "./media/characters/rory/back.svg",
  21159. extra: 620 / 585,
  21160. bottom: 8.86 / 630.43
  21161. }
  21162. },
  21163. dick: {
  21164. height: math.unit(0.86, "feet"),
  21165. name: "Dick",
  21166. image: {
  21167. source: "./media/characters/rory/dick.svg"
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(5 + 4 / 12, "feet"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Macro",
  21179. height: math.unit(100, "feet")
  21180. },
  21181. {
  21182. name: "Macro+",
  21183. height: math.unit(140, "feet")
  21184. },
  21185. {
  21186. name: "Macro++",
  21187. height: math.unit(300, "feet")
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21193. {
  21194. front: {
  21195. height: math.unit(5 + 9 / 12, "feet"),
  21196. weight: math.unit(190, "lb"),
  21197. name: "Front",
  21198. image: {
  21199. source: "./media/characters/sprisk/front.svg",
  21200. extra: 1225 / 1180,
  21201. bottom: 42.7 / 1266.4
  21202. }
  21203. },
  21204. frontNsfw: {
  21205. height: math.unit(5 + 9 / 12, "feet"),
  21206. weight: math.unit(190, "lb"),
  21207. name: "Front (NSFW)",
  21208. image: {
  21209. source: "./media/characters/sprisk/front-nsfw.svg",
  21210. extra: 1225 / 1180,
  21211. bottom: 42.7 / 1266.4
  21212. }
  21213. },
  21214. back: {
  21215. height: math.unit(5 + 9 / 12, "feet"),
  21216. weight: math.unit(190, "lb"),
  21217. name: "Back",
  21218. image: {
  21219. source: "./media/characters/sprisk/back.svg",
  21220. extra: 1247 / 1200,
  21221. bottom: 5.6 / 1253.04
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Tiny",
  21228. height: math.unit(2, "inches")
  21229. },
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(5 + 9 / 12, "feet"),
  21233. default: true
  21234. },
  21235. {
  21236. name: "Mini Macro",
  21237. height: math.unit(18, "feet")
  21238. },
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(100, "feet")
  21242. },
  21243. {
  21244. name: "MACRO",
  21245. height: math.unit(50, "miles")
  21246. },
  21247. {
  21248. name: "M A C R O",
  21249. height: math.unit(300, "miles")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21255. {
  21256. side: {
  21257. height: math.unit(15.6, "meters"),
  21258. weight: math.unit(700000, "kg"),
  21259. name: "Side",
  21260. image: {
  21261. source: "./media/characters/bunsen/side.svg",
  21262. extra: 1644 / 358
  21263. }
  21264. },
  21265. foot: {
  21266. height: math.unit(1.611 * 1644 / 358, "meter"),
  21267. name: "Foot",
  21268. image: {
  21269. source: "./media/characters/bunsen/foot.svg"
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Small",
  21276. height: math.unit(10, "feet")
  21277. },
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(15.6, "meters"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(4 + 11 / 12, "feet"),
  21290. weight: math.unit(140, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/sesh/front.svg",
  21294. extra: 3420 / 3231,
  21295. bottom: 72 / 3949.5
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(4 + 11 / 12, "feet")
  21303. },
  21304. {
  21305. name: "Grown",
  21306. height: math.unit(15, "feet"),
  21307. default: true
  21308. },
  21309. {
  21310. name: "Macro",
  21311. height: math.unit(1500, "feet")
  21312. },
  21313. {
  21314. name: "Megamacro",
  21315. height: math.unit(30, "miles")
  21316. },
  21317. {
  21318. name: "Continental",
  21319. height: math.unit(3000, "miles")
  21320. },
  21321. {
  21322. name: "Gravity Mass",
  21323. height: math.unit(300000, "miles")
  21324. },
  21325. {
  21326. name: "Planet Buster",
  21327. height: math.unit(30000000, "miles")
  21328. },
  21329. {
  21330. name: "Big",
  21331. height: math.unit(3000000000, "miles")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(9, "feet"),
  21340. weight: math.unit(350, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/pepper/front.svg",
  21344. extra: 1448/1312,
  21345. bottom: 9.4/1457.88
  21346. }
  21347. },
  21348. back: {
  21349. height: math.unit(9, "feet"),
  21350. weight: math.unit(350, "lb"),
  21351. name: "Back",
  21352. image: {
  21353. source: "./media/characters/pepper/back.svg",
  21354. extra: 1423/1300,
  21355. bottom: 4.6/1429
  21356. }
  21357. },
  21358. maw: {
  21359. height: math.unit(0.932, "feet"),
  21360. name: "Maw",
  21361. image: {
  21362. source: "./media/characters/pepper/maw.svg"
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(9, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(6, "feet"),
  21379. weight: math.unit(150, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/maelstrom/front.svg",
  21383. extra: 2100/1883,
  21384. bottom: 94/2196.7
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Less Kaiju",
  21391. height: math.unit(200, "feet")
  21392. },
  21393. {
  21394. name: "Kaiju",
  21395. height: math.unit(400, "feet"),
  21396. default: true
  21397. },
  21398. {
  21399. name: "Kaiju-er",
  21400. height: math.unit(600, "feet")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(6 + 5/12, "feet"),
  21409. weight: math.unit(180, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/lexir/front.svg",
  21413. extra: 180/172,
  21414. bottom: 12/192
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(6 + 5/12, "feet"),
  21419. weight: math.unit(180, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/lexir/back.svg",
  21423. extra: 183.84/175.5,
  21424. bottom: 3.1/187
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Very Smal",
  21431. height: math.unit(1, "nm")
  21432. },
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(6 + 5/12, "feet"),
  21436. default: true
  21437. },
  21438. {
  21439. name: "Macro",
  21440. height: math.unit(1, "mile")
  21441. },
  21442. {
  21443. name: "Megamacro",
  21444. height: math.unit(50, "miles")
  21445. },
  21446. ]
  21447. ))
  21448. characterMakers.push(() => makeCharacter(
  21449. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21450. {
  21451. front: {
  21452. height: math.unit(1.5, "meters"),
  21453. weight: math.unit(100, "lb"),
  21454. name: "Front",
  21455. image: {
  21456. source: "./media/characters/maksio/front.svg",
  21457. extra: 1549/1531,
  21458. bottom: 123.7/1674.5429
  21459. }
  21460. },
  21461. back: {
  21462. height: math.unit(1.5, "meters"),
  21463. weight: math.unit(100, "lb"),
  21464. name: "Back",
  21465. image: {
  21466. source: "./media/characters/maksio/back.svg",
  21467. extra: 1541/1509,
  21468. bottom: 97/1639
  21469. }
  21470. },
  21471. hand: {
  21472. height: math.unit(0.621, "feet"),
  21473. name: "Hand",
  21474. image: {
  21475. source: "./media/characters/maksio/hand.svg"
  21476. }
  21477. },
  21478. foot: {
  21479. height: math.unit(1.611, "feet"),
  21480. name: "Foot",
  21481. image: {
  21482. source: "./media/characters/maksio/foot.svg"
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Shrunken",
  21489. height: math.unit(10, "cm")
  21490. },
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(150, "cm"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(100, "feet"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/erza-bear/front.svg",
  21506. extra: 2449/2390,
  21507. bottom: 46/2494
  21508. }
  21509. },
  21510. back: {
  21511. height: math.unit(100, "feet"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/erza-bear/back.svg",
  21515. extra: 2489/2430,
  21516. bottom: 85.4/2480
  21517. }
  21518. },
  21519. tail: {
  21520. height: math.unit(42, "feet"),
  21521. name: "Tail",
  21522. image: {
  21523. source: "./media/characters/erza-bear/tail.svg"
  21524. }
  21525. },
  21526. tongue: {
  21527. height: math.unit(8, "feet"),
  21528. name: "Tongue",
  21529. image: {
  21530. source: "./media/characters/erza-bear/tongue.svg"
  21531. }
  21532. },
  21533. dick: {
  21534. height: math.unit(10.5, "feet"),
  21535. name: "Dick",
  21536. image: {
  21537. source: "./media/characters/erza-bear/dick.svg"
  21538. }
  21539. },
  21540. dickVertical: {
  21541. height: math.unit(16.9, "feet"),
  21542. name: "Dick (Vertical)",
  21543. image: {
  21544. source: "./media/characters/erza-bear/dick-vertical.svg"
  21545. }
  21546. },
  21547. },
  21548. [
  21549. {
  21550. name: "Macro",
  21551. height: math.unit(100, "feet"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(172, "cm"),
  21561. weight: math.unit(73, "kg"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/violet-flor/front.svg",
  21565. extra: 1530/1442,
  21566. bottom: 61.9/1588.8
  21567. }
  21568. },
  21569. back: {
  21570. height: math.unit(180, "cm"),
  21571. weight: math.unit(73, "kg"),
  21572. name: "Back",
  21573. image: {
  21574. source: "./media/characters/violet-flor/back.svg",
  21575. extra: 1692/1630,
  21576. bottom: 20/1712
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(172, "cm"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(6, "feet"),
  21593. weight: math.unit(220, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/lynn-rhea/front.svg",
  21597. extra: 310/273
  21598. }
  21599. },
  21600. back: {
  21601. height: math.unit(6, "feet"),
  21602. weight: math.unit(220, "lb"),
  21603. name: "Back",
  21604. image: {
  21605. source: "./media/characters/lynn-rhea/back.svg",
  21606. extra: 310/273
  21607. }
  21608. },
  21609. dicks: {
  21610. height: math.unit(0.9, "feet"),
  21611. name: "Dicks",
  21612. image: {
  21613. source: "./media/characters/lynn-rhea/dicks.svg"
  21614. }
  21615. },
  21616. slit: {
  21617. height: math.unit(0.4, "feet"),
  21618. name: "Slit",
  21619. image: {
  21620. source: "./media/characters/lynn-rhea/slit.svg"
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Micro",
  21627. height: math.unit(1, "inch")
  21628. },
  21629. {
  21630. name: "Macro",
  21631. height: math.unit(60, "feet"),
  21632. default: true
  21633. },
  21634. {
  21635. name: "Megamacro",
  21636. height: math.unit(2, "miles")
  21637. },
  21638. {
  21639. name: "Gigamacro",
  21640. height: math.unit(3, "earths")
  21641. },
  21642. {
  21643. name: "Galactic",
  21644. height: math.unit(0.8, "galaxies")
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21650. {
  21651. front: {
  21652. height: math.unit(1600, "feet"),
  21653. weight: math.unit(85758785169, "kg"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/valathos/front.svg",
  21657. extra: 1451/1339
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Macro",
  21664. height: math.unit(1600, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21671. {
  21672. front: {
  21673. height: math.unit(7 + 5/12, "feet"),
  21674. weight: math.unit(300, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/azula/front.svg",
  21678. extra: 3208/2880,
  21679. bottom: 80.2/3277
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(7 + 5/12, "feet"),
  21684. weight: math.unit(300, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/azula/back.svg",
  21688. extra: 3169/2822,
  21689. bottom: 150.6/3321
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(7 + 5/12, "feet"),
  21697. default: true
  21698. },
  21699. {
  21700. name: "Big",
  21701. height: math.unit(20, "feet")
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 1/12, "feet"),
  21710. weight: math.unit(110, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/rupert/front.svg",
  21714. extra: 1549/1495,
  21715. bottom: 54.2/1604.4
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(5 + 1/12, "feet"),
  21723. default: true
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(8 + 4/12, "feet"),
  21732. weight: math.unit(350, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/sheera-castellar/front.svg",
  21736. extra: 1957/1894,
  21737. bottom: 26.97/1975.017
  21738. }
  21739. },
  21740. side: {
  21741. height: math.unit(8 + 4/12, "feet"),
  21742. weight: math.unit(350, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/sheera-castellar/side.svg",
  21746. extra: 1957/1894
  21747. }
  21748. },
  21749. back: {
  21750. height: math.unit(8 + 4/12, "feet"),
  21751. weight: math.unit(350, "lb"),
  21752. name: "Back",
  21753. image: {
  21754. source: "./media/characters/sheera-castellar/back.svg",
  21755. extra: 1957/1894
  21756. }
  21757. },
  21758. angled: {
  21759. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21760. weight: math.unit(350, "lb"),
  21761. name: "Angled",
  21762. image: {
  21763. source: "./media/characters/sheera-castellar/angled.svg",
  21764. extra: 1807/1707,
  21765. bottom: 68/1875
  21766. }
  21767. },
  21768. genitals: {
  21769. height: math.unit(2.2, "feet"),
  21770. name: "Genitals",
  21771. image: {
  21772. source: "./media/characters/sheera-castellar/genitals.svg"
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(8 + 4/12, "feet")
  21780. },
  21781. {
  21782. name: "Macro",
  21783. height: math.unit(150, "feet"),
  21784. default: true
  21785. },
  21786. {
  21787. name: "Macro+",
  21788. height: math.unit(800, "feet")
  21789. },
  21790. ]
  21791. ))
  21792. characterMakers.push(() => makeCharacter(
  21793. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21794. {
  21795. front: {
  21796. height: math.unit(6, "feet"),
  21797. weight: math.unit(150, "lb"),
  21798. name: "Front",
  21799. image: {
  21800. source: "./media/characters/jaipur/front.svg",
  21801. extra: 3860/3731,
  21802. bottom: 287/4140
  21803. }
  21804. },
  21805. back: {
  21806. height: math.unit(6, "feet"),
  21807. weight: math.unit(150, "lb"),
  21808. name: "Back",
  21809. image: {
  21810. source: "./media/characters/jaipur/back.svg",
  21811. extra: 4060/3930,
  21812. bottom: 151/4200
  21813. }
  21814. },
  21815. },
  21816. [
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(1.85, "meters"),
  21820. default: true
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(150, "meters")
  21825. },
  21826. {
  21827. name: "Macro+",
  21828. height: math.unit(0.5, "miles")
  21829. },
  21830. {
  21831. name: "Macro++",
  21832. height: math.unit(2.5, "miles")
  21833. },
  21834. {
  21835. name: "Macro+++",
  21836. height: math.unit(12, "miles")
  21837. },
  21838. {
  21839. name: "Macro++++",
  21840. height: math.unit(120, "miles")
  21841. },
  21842. {
  21843. name: "Macro+++++",
  21844. height: math.unit(1200, "miles")
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(6, "feet"),
  21853. weight: math.unit(150, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/sheila-wolf/front.svg",
  21857. extra: 1931/1808,
  21858. bottom: 29.5/1960
  21859. }
  21860. },
  21861. dick: {
  21862. height: math.unit(1.464, "feet"),
  21863. name: "Dick",
  21864. image: {
  21865. source: "./media/characters/sheila-wolf/dick.svg"
  21866. }
  21867. },
  21868. muzzle: {
  21869. height: math.unit(0.513, "feet"),
  21870. name: "Muzzle",
  21871. image: {
  21872. source: "./media/characters/sheila-wolf/muzzle.svg"
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Macro",
  21879. height: math.unit(70, "feet"),
  21880. default: true
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(32, "meters"),
  21889. weight: math.unit(300000, "kg"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/almor/front.svg",
  21893. extra: 1408/1322,
  21894. bottom: 94.6/1506.5
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(32, "meters"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(7, "feet"),
  21911. weight: math.unit(200, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/silver/front.svg",
  21915. extra: 472.1/450.5,
  21916. bottom: 26.5/499.424
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(7, "feet"),
  21924. default: true
  21925. },
  21926. {
  21927. name: "Macro",
  21928. height: math.unit(800, "feet")
  21929. },
  21930. {
  21931. name: "Megamacro",
  21932. height: math.unit(250, "miles")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(6, "feet"),
  21941. weight: math.unit(150, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/pliskin/front.svg",
  21945. extra: 1469/1359,
  21946. bottom: 70/1540
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Micro",
  21953. height: math.unit(3, "inches")
  21954. },
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(5 + 11/12, "feet"),
  21958. default: true
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(120, "feet")
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(6, "feet"),
  21971. weight: math.unit(150, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/sammy/front.svg",
  21975. extra: 1193/1089,
  21976. bottom: 30.5/1226
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Macro",
  21983. height: math.unit(1700, "feet"),
  21984. default: true
  21985. },
  21986. {
  21987. name: "Examacro",
  21988. height: math.unit(2.5e9, "lightyears")
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(21, "meters"),
  21997. weight: math.unit(12, "tonnes"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/kuru/front.svg",
  22001. extra: 4301/3785,
  22002. bottom: 371.3/4691
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Macro",
  22009. height: math.unit(21, "meters"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(23, "meters"),
  22019. weight: math.unit(12.2, "tonnes"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/rakka/front.svg",
  22023. extra: 4670/4169,
  22024. bottom: 301/4968.7
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(23, "meters"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(6, "feet"),
  22041. weight: math.unit(150, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/rhys-feline/front.svg",
  22045. extra: 2488/2308,
  22046. bottom: 35.67/2519.19
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Really Small",
  22053. height: math.unit(1, "nm")
  22054. },
  22055. {
  22056. name: "Micro",
  22057. height: math.unit(4, "inches")
  22058. },
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(4 + 10/12, "feet"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Macro",
  22066. height: math.unit(100, "feet")
  22067. },
  22068. {
  22069. name: "Megamacto",
  22070. height: math.unit(50, "miles")
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22076. {
  22077. side: {
  22078. height: math.unit(30, "feet"),
  22079. weight: math.unit(35000, "kg"),
  22080. name: "Side",
  22081. image: {
  22082. source: "./media/characters/alydar/side.svg",
  22083. extra: 234/222,
  22084. bottom: 6.5/241
  22085. }
  22086. },
  22087. front: {
  22088. height: math.unit(30, "feet"),
  22089. weight: math.unit(35000, "kg"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/alydar/front.svg",
  22093. extra: 223.37/210.2,
  22094. bottom: 22.3/246.76
  22095. }
  22096. },
  22097. top: {
  22098. height: math.unit(64.54, "feet"),
  22099. weight: math.unit(35000, "kg"),
  22100. name: "Top",
  22101. image: {
  22102. source: "./media/characters/alydar/top.svg"
  22103. }
  22104. },
  22105. anthro: {
  22106. height: math.unit(30, "feet"),
  22107. weight: math.unit(9000, "kg"),
  22108. name: "Anthro",
  22109. image: {
  22110. source: "./media/characters/alydar/anthro.svg",
  22111. extra: 432/421,
  22112. bottom: 7.18/440
  22113. }
  22114. },
  22115. maw: {
  22116. height: math.unit(11.693, "feet"),
  22117. name: "Maw",
  22118. image: {
  22119. source: "./media/characters/alydar/maw.svg"
  22120. }
  22121. },
  22122. head: {
  22123. height: math.unit(11.693, "feet"),
  22124. name: "Head",
  22125. image: {
  22126. source: "./media/characters/alydar/head.svg"
  22127. }
  22128. },
  22129. headAlt: {
  22130. height: math.unit(12.861, "feet"),
  22131. name: "Head (Alt)",
  22132. image: {
  22133. source: "./media/characters/alydar/head-alt.svg"
  22134. }
  22135. },
  22136. wing: {
  22137. height: math.unit(20.712, "feet"),
  22138. name: "Wing",
  22139. image: {
  22140. source: "./media/characters/alydar/wing.svg"
  22141. }
  22142. },
  22143. wingFeather: {
  22144. height: math.unit(9.662, "feet"),
  22145. name: "Wing Feather",
  22146. image: {
  22147. source: "./media/characters/alydar/wing-feather.svg"
  22148. }
  22149. },
  22150. countourFeather: {
  22151. height: math.unit(4.154, "feet"),
  22152. name: "Contour Feather",
  22153. image: {
  22154. source: "./media/characters/alydar/contour-feather.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Diplomatic",
  22161. height: math.unit(13, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "Small",
  22166. height: math.unit(30, "feet")
  22167. },
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(95, "feet"),
  22171. default: true
  22172. },
  22173. {
  22174. name: "Large",
  22175. height: math.unit(285, "feet")
  22176. },
  22177. {
  22178. name: "Incomprehensible",
  22179. height: math.unit(450, "megameters")
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22185. {
  22186. side: {
  22187. height: math.unit(11, "feet"),
  22188. weight: math.unit(1750, "kg"),
  22189. name: "Side",
  22190. image: {
  22191. source: "./media/characters/selicia/side.svg",
  22192. extra: 440/396,
  22193. bottom: 24.8/465.979
  22194. }
  22195. },
  22196. maw: {
  22197. height: math.unit(4.665, "feet"),
  22198. name: "Maw",
  22199. image: {
  22200. source: "./media/characters/selicia/maw.svg"
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(11, "feet"),
  22208. default: true
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22214. {
  22215. side: {
  22216. height: math.unit(2 + 6 /12, "feet"),
  22217. weight: math.unit(30, "lb"),
  22218. name: "Side",
  22219. image: {
  22220. source: "./media/characters/layla/side.svg",
  22221. extra: 244/188,
  22222. bottom: 18.2/262.1
  22223. }
  22224. },
  22225. back: {
  22226. height: math.unit(2 + 6 /12, "feet"),
  22227. weight: math.unit(30, "lb"),
  22228. name: "Back",
  22229. image: {
  22230. source: "./media/characters/layla/back.svg",
  22231. extra: 308/241.5,
  22232. bottom: 8.9/316.8
  22233. }
  22234. },
  22235. cumming: {
  22236. height: math.unit(2 + 6 /12, "feet"),
  22237. weight: math.unit(30, "lb"),
  22238. name: "Cumming",
  22239. image: {
  22240. source: "./media/characters/layla/cumming.svg",
  22241. extra: 342/279,
  22242. bottom: 595/938
  22243. }
  22244. },
  22245. dickFlaccid: {
  22246. height: math.unit(2.595, "feet"),
  22247. name: "Flaccid Genitals",
  22248. image: {
  22249. source: "./media/characters/layla/dick-flaccid.svg"
  22250. }
  22251. },
  22252. dickErect: {
  22253. height: math.unit(2.359, "feet"),
  22254. name: "Erect Genitals",
  22255. image: {
  22256. source: "./media/characters/layla/dick-erect.svg"
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Micro",
  22263. height: math.unit(1, "inch")
  22264. },
  22265. {
  22266. name: "Small",
  22267. height: math.unit(1, "foot")
  22268. },
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(2 + 6/12, "feet"),
  22272. default: true
  22273. },
  22274. {
  22275. name: "Macro",
  22276. height: math.unit(200, "feet")
  22277. },
  22278. {
  22279. name: "Megamacro",
  22280. height: math.unit(1000, "miles")
  22281. },
  22282. {
  22283. name: "Planetary",
  22284. height: math.unit(8000, "miles")
  22285. },
  22286. {
  22287. name: "True Layla",
  22288. height: math.unit(200000*7, "multiverses")
  22289. },
  22290. ]
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22294. {
  22295. back: {
  22296. height: math.unit(10.5, "feet"),
  22297. weight: math.unit(800, "lb"),
  22298. name: "Back",
  22299. image: {
  22300. source: "./media/characters/knox/back.svg",
  22301. extra: 1486/1089,
  22302. bottom: 107/1601.4
  22303. }
  22304. },
  22305. side: {
  22306. height: math.unit(10.5, "feet"),
  22307. weight: math.unit(800, "lb"),
  22308. name: "Side",
  22309. image: {
  22310. source: "./media/characters/knox/side.svg",
  22311. extra: 244/218,
  22312. bottom: 14/260
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Compact",
  22319. height: math.unit(10.5, "feet"),
  22320. default: true
  22321. },
  22322. {
  22323. name: "Dynamax",
  22324. height: math.unit(210, "feet")
  22325. },
  22326. {
  22327. name: "Full Macro",
  22328. height: math.unit(850, "feet")
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(6, "feet"),
  22337. weight: math.unit(152, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/shin-pikachu/front.svg",
  22341. extra: 1574/1480,
  22342. bottom: 53.3/1626
  22343. }
  22344. },
  22345. hand: {
  22346. height: math.unit(1.055, "feet"),
  22347. name: "Hand",
  22348. image: {
  22349. source: "./media/characters/shin-pikachu/hand.svg"
  22350. }
  22351. },
  22352. foot: {
  22353. height: math.unit(1.1, "feet"),
  22354. name: "Foot",
  22355. image: {
  22356. source: "./media/characters/shin-pikachu/foot.svg"
  22357. }
  22358. },
  22359. collar: {
  22360. height: math.unit(0.386, "feet"),
  22361. name: "Collar",
  22362. image: {
  22363. source: "./media/characters/shin-pikachu/collar.svg"
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Smallest",
  22370. height: math.unit(0.5, "inches")
  22371. },
  22372. {
  22373. name: "Micro",
  22374. height: math.unit(6, "inches")
  22375. },
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(6, "feet"),
  22379. default: true
  22380. },
  22381. {
  22382. name: "Macro",
  22383. height: math.unit(150, "feet")
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(28, "feet"),
  22392. weight: math.unit(10500, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/kayda/front.svg",
  22396. extra: 1536/1428,
  22397. bottom: 68.7/1603
  22398. }
  22399. },
  22400. back: {
  22401. height: math.unit(28, "feet"),
  22402. weight: math.unit(10500, "lb"),
  22403. name: "Back",
  22404. image: {
  22405. source: "./media/characters/kayda/back.svg",
  22406. extra: 1557/1464,
  22407. bottom: 39.5/1597.49
  22408. }
  22409. },
  22410. dick: {
  22411. height: math.unit(3.858, "feet"),
  22412. name: "Dick",
  22413. image: {
  22414. source: "./media/characters/kayda/dick.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Macro",
  22421. height: math.unit(28, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(10 + 11/12, "feet"),
  22431. weight: math.unit(1400, "lb"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/brian/front.svg",
  22435. extra: 737/692,
  22436. bottom: 55.4/785
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(10 + 11/12, "feet"),
  22444. default: true
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22450. {
  22451. front: {
  22452. height: math.unit(5 + 8/12, "feet"),
  22453. weight: math.unit(140, "lb"),
  22454. name: "Front",
  22455. image: {
  22456. source: "./media/characters/khemri/front.svg",
  22457. extra: 4780/4059,
  22458. bottom: 80.1/4859.25
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Micro",
  22465. height: math.unit(6, "inches")
  22466. },
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(5 + 8/12, "feet"),
  22470. default: true
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22476. {
  22477. front: {
  22478. height: math.unit(13, "feet"),
  22479. weight: math.unit(1700, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/felix-braveheart/front.svg",
  22483. extra: 1222/1157,
  22484. bottom: 53.2/1280
  22485. }
  22486. },
  22487. back: {
  22488. height: math.unit(13, "feet"),
  22489. weight: math.unit(1700, "lb"),
  22490. name: "Back",
  22491. image: {
  22492. source: "./media/characters/felix-braveheart/back.svg",
  22493. extra: 1277/1203,
  22494. bottom: 50.2/1327
  22495. }
  22496. },
  22497. feral: {
  22498. height: math.unit(6, "feet"),
  22499. weight: math.unit(400, "lb"),
  22500. name: "Feral",
  22501. image: {
  22502. source: "./media/characters/felix-braveheart/feral.svg",
  22503. extra: 682/625,
  22504. bottom: 6.9/688
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(13, "feet"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22518. {
  22519. side: {
  22520. height: math.unit(5 + 11/12, "feet"),
  22521. weight: math.unit(1400, "lb"),
  22522. name: "Side",
  22523. image: {
  22524. source: "./media/characters/shadow-blade/side.svg",
  22525. extra: 1726/1267,
  22526. bottom: 58.4/1785
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(5 + 11/12, "feet"),
  22534. default: true
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(1 + 6/12, "feet"),
  22543. weight: math.unit(25, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/karla-halldor/front.svg",
  22547. extra: 1459/1383,
  22548. bottom: 12/1472
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Normal",
  22555. height: math.unit(1 + 6/12, "feet"),
  22556. default: true
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(6 + 2/12, "feet"),
  22565. weight: math.unit(160, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/ariam/front.svg",
  22569. extra: 714/617,
  22570. bottom: 23.4/737,
  22571. }
  22572. },
  22573. squatting: {
  22574. height: math.unit(4.1, "feet"),
  22575. weight: math.unit(160, "lb"),
  22576. name: "Squatting",
  22577. image: {
  22578. source: "./media/characters/ariam/squatting.svg",
  22579. extra: 2617/2112,
  22580. bottom: 61.2/2681,
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Normal",
  22587. height: math.unit(6 + 2/12, "feet"),
  22588. default: true
  22589. },
  22590. {
  22591. name: "Normal+",
  22592. height: math.unit(4, "meters")
  22593. },
  22594. {
  22595. name: "Macro",
  22596. height: math.unit(50, "meters")
  22597. },
  22598. {
  22599. name: "Macro+",
  22600. height: math.unit(100, "meters")
  22601. },
  22602. {
  22603. name: "Megamacro",
  22604. height: math.unit(20, "km")
  22605. },
  22606. ]
  22607. ))
  22608. characterMakers.push(() => makeCharacter(
  22609. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22610. {
  22611. front: {
  22612. height: math.unit(1.67, "meters"),
  22613. weight: math.unit(140, "lb"),
  22614. name: "Front",
  22615. image: {
  22616. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22617. extra: 438/410,
  22618. bottom: 0.75/439
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Shrunken",
  22625. height: math.unit(7.6, "cm")
  22626. },
  22627. {
  22628. name: "Human Scale",
  22629. height: math.unit(1.67, "meters")
  22630. },
  22631. {
  22632. name: "Wolxi Scale",
  22633. height: math.unit(36.7, "meters"),
  22634. default: true
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(1.73, "meters"),
  22643. weight: math.unit(240, "lb"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/izue-two-mothers/front.svg",
  22647. extra: 469/437,
  22648. bottom: 1.24/470.6
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Shrunken",
  22655. height: math.unit(7.86, "cm")
  22656. },
  22657. {
  22658. name: "Human Scale",
  22659. height: math.unit(1.73, "meters")
  22660. },
  22661. {
  22662. name: "Wolxi Scale",
  22663. height: math.unit(38, "meters"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(1.55, "meters"),
  22673. weight: math.unit(120, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/teeku-love-shack/front.svg",
  22677. extra: 387/362,
  22678. bottom: 1.51/388
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Shrunken",
  22685. height: math.unit(7, "cm")
  22686. },
  22687. {
  22688. name: "Human Scale",
  22689. height: math.unit(1.55, "meters")
  22690. },
  22691. {
  22692. name: "Wolxi Scale",
  22693. height: math.unit(34.1, "meters"),
  22694. default: true
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(1.83, "meters"),
  22703. weight: math.unit(135, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/dejma-the-red/front.svg",
  22707. extra: 480/458,
  22708. bottom: 1.8/482
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Shrunken",
  22715. height: math.unit(8.3, "cm")
  22716. },
  22717. {
  22718. name: "Human Scale",
  22719. height: math.unit(1.83, "meters")
  22720. },
  22721. {
  22722. name: "Wolxi Scale",
  22723. height: math.unit(40, "meters"),
  22724. default: true
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(1.78, "meters"),
  22733. weight: math.unit(65, "kg"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/aki/front.svg",
  22737. extra: 452/415
  22738. }
  22739. },
  22740. frontNsfw: {
  22741. height: math.unit(1.78, "meters"),
  22742. weight: math.unit(65, "kg"),
  22743. name: "Front (NSFW)",
  22744. image: {
  22745. source: "./media/characters/aki/front-nsfw.svg",
  22746. extra: 452/415
  22747. }
  22748. },
  22749. back: {
  22750. height: math.unit(1.78, "meters"),
  22751. weight: math.unit(65, "kg"),
  22752. name: "Back",
  22753. image: {
  22754. source: "./media/characters/aki/back.svg",
  22755. extra: 452/415
  22756. }
  22757. },
  22758. rump: {
  22759. height: math.unit(2.05, "feet"),
  22760. name: "Rump",
  22761. image: {
  22762. source: "./media/characters/aki/rump.svg"
  22763. }
  22764. },
  22765. dick: {
  22766. height: math.unit(0.95, "feet"),
  22767. name: "Dick",
  22768. image: {
  22769. source: "./media/characters/aki/dick.svg"
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Micro",
  22776. height: math.unit(15, "cm")
  22777. },
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(178, "cm"),
  22781. default: true
  22782. },
  22783. {
  22784. name: "Macro",
  22785. height: math.unit(214, "m")
  22786. },
  22787. {
  22788. name: "Macro+",
  22789. height: math.unit(534, "m")
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(5 + 5/12, "feet"),
  22798. weight: math.unit(120, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/ari/front.svg",
  22802. extra: 714.5/682,
  22803. bottom: 8/722.5
  22804. }
  22805. },
  22806. },
  22807. [
  22808. {
  22809. name: "Normal",
  22810. height: math.unit(5 + 5/12, "feet")
  22811. },
  22812. {
  22813. name: "Macro",
  22814. height: math.unit(100, "feet"),
  22815. default: true
  22816. },
  22817. {
  22818. name: "Megamacro",
  22819. height: math.unit(100, "miles")
  22820. },
  22821. {
  22822. name: "Gigamacro",
  22823. height: math.unit(80000, "miles")
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22829. {
  22830. side: {
  22831. height: math.unit(9, "feet"),
  22832. weight: math.unit(400, "kg"),
  22833. name: "Side",
  22834. image: {
  22835. source: "./media/characters/bolt/side.svg",
  22836. extra: 1126/896,
  22837. bottom: 60/1187.3,
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Micro",
  22844. height: math.unit(5, "inches")
  22845. },
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(9, "feet"),
  22849. default: true
  22850. },
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(700, "feet")
  22854. },
  22855. {
  22856. name: "Max Size",
  22857. height: math.unit(1.52e22, "yottameters")
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22863. {
  22864. front: {
  22865. height: math.unit(4.53, "meters"),
  22866. weight: math.unit(3, "tons"),
  22867. name: "Front",
  22868. image: {
  22869. source: "./media/characters/draekon-sylviar/front.svg",
  22870. extra: 1228/1068,
  22871. bottom: 41/1270
  22872. }
  22873. },
  22874. tail: {
  22875. height: math.unit(1.772, "meter"),
  22876. name: "Tail",
  22877. image: {
  22878. source: "./media/characters/draekon-sylviar/tail.svg"
  22879. }
  22880. },
  22881. head: {
  22882. height: math.unit(1.331, "meter"),
  22883. name: "Head",
  22884. image: {
  22885. source: "./media/characters/draekon-sylviar/head.svg"
  22886. }
  22887. },
  22888. hand: {
  22889. height: math.unit(0.564, "meter"),
  22890. name: "Hand",
  22891. image: {
  22892. source: "./media/characters/draekon-sylviar/hand.svg"
  22893. }
  22894. },
  22895. foot: {
  22896. height: math.unit(0.621, "meter"),
  22897. name: "Foot",
  22898. image: {
  22899. source: "./media/characters/draekon-sylviar/foot.svg",
  22900. bottom: 32/324
  22901. }
  22902. },
  22903. dick: {
  22904. height: math.unit(61, "cm"),
  22905. name: "Dick",
  22906. image: {
  22907. source: "./media/characters/draekon-sylviar/dick.svg"
  22908. }
  22909. },
  22910. dickseparated: {
  22911. height: math.unit(61, "cm"),
  22912. name: "Dick-separated",
  22913. image: {
  22914. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Small",
  22921. height: math.unit(4.53/2, "meters"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(4.53, "meters"),
  22927. default: true
  22928. },
  22929. {
  22930. name: "Large",
  22931. height: math.unit(4.53*2, "meters"),
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(6 + 2/12, "feet"),
  22940. weight: math.unit(180, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/brawler/front.svg",
  22944. extra: 3301/3027,
  22945. bottom: 138/3439
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(6 + 2/12, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(11, "feet"),
  22962. weight: math.unit(1000, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/alex/front.svg",
  22966. bottom: 44.5/620
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Micro",
  22973. height: math.unit(5, "inches")
  22974. },
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(11, "feet"),
  22978. default: true
  22979. },
  22980. {
  22981. name: "Macro",
  22982. height: math.unit(9.5e9, "feet")
  22983. },
  22984. {
  22985. name: "Max Size",
  22986. height: math.unit(1.4e283, "yottameters")
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  22992. {
  22993. female: {
  22994. height: math.unit(29.9, "m"),
  22995. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22996. name: "Female",
  22997. image: {
  22998. source: "./media/characters/zenari/female.svg",
  22999. extra: 3281.6/3217,
  23000. bottom: 72.2/3353
  23001. }
  23002. },
  23003. male: {
  23004. height: math.unit(27.7, "m"),
  23005. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  23006. name: "Male",
  23007. image: {
  23008. source: "./media/characters/zenari/male.svg",
  23009. extra: 3008/2991,
  23010. bottom: 54.6/3069
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Macro",
  23017. height: math.unit(29.7, "meters"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23024. {
  23025. female: {
  23026. height: math.unit(23.8, "m"),
  23027. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23028. name: "Female",
  23029. image: {
  23030. source: "./media/characters/mactarian/female.svg",
  23031. extra: 2662/2569,
  23032. bottom: 73/2736
  23033. }
  23034. },
  23035. male: {
  23036. height: math.unit(23.8, "m"),
  23037. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23038. name: "Male",
  23039. image: {
  23040. source: "./media/characters/mactarian/male.svg",
  23041. extra: 2673/2600,
  23042. bottom: 76/2750
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Macro",
  23049. height: math.unit(23.8, "meters"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23056. {
  23057. female: {
  23058. height: math.unit(19.3, "m"),
  23059. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  23060. name: "Female",
  23061. image: {
  23062. source: "./media/characters/umok/female.svg",
  23063. extra: 2186/2078,
  23064. bottom: 87/2277
  23065. }
  23066. },
  23067. male: {
  23068. height: math.unit(19.5, "m"),
  23069. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  23070. name: "Male",
  23071. image: {
  23072. source: "./media/characters/umok/male.svg",
  23073. extra: 2233/2140,
  23074. bottom: 24.4/2258
  23075. }
  23076. },
  23077. },
  23078. [
  23079. {
  23080. name: "Macro",
  23081. height: math.unit(19.3, "meters"),
  23082. default: true
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23088. {
  23089. female: {
  23090. height: math.unit(26.15, "m"),
  23091. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  23092. name: "Female",
  23093. image: {
  23094. source: "./media/characters/joraxian/female.svg",
  23095. extra: 2943/2831,
  23096. bottom: 27/2972
  23097. }
  23098. },
  23099. male: {
  23100. height: math.unit(25.4, "m"),
  23101. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23102. name: "Male",
  23103. image: {
  23104. source: "./media/characters/joraxian/male.svg",
  23105. extra: 2835/2741,
  23106. bottom: 27/2862
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(26.15, "meters"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23120. {
  23121. female: {
  23122. height: math.unit(21.6, "m"),
  23123. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23124. name: "Female",
  23125. image: {
  23126. source: "./media/characters/sthara/female.svg",
  23127. extra: 2516/2347,
  23128. bottom: 21.5/2537
  23129. }
  23130. },
  23131. male: {
  23132. height: math.unit(24, "m"),
  23133. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23134. name: "Male",
  23135. image: {
  23136. source: "./media/characters/sthara/male.svg",
  23137. extra: 2732/2607,
  23138. bottom: 23/2732
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Macro",
  23145. height: math.unit(21.6, "meters"),
  23146. default: true
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23152. {
  23153. front: {
  23154. height: math.unit(6 + 4/12, "feet"),
  23155. weight: math.unit(175, "lb"),
  23156. name: "Front",
  23157. image: {
  23158. source: "./media/characters/luka-bryzant/front.svg",
  23159. extra: 311/289,
  23160. bottom: 4/315
  23161. }
  23162. },
  23163. back: {
  23164. height: math.unit(6 + 4/12, "feet"),
  23165. weight: math.unit(175, "lb"),
  23166. name: "Back",
  23167. image: {
  23168. source: "./media/characters/luka-bryzant/back.svg",
  23169. extra: 311/289,
  23170. bottom: 3.8/313.7
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Micro",
  23177. height: math.unit(10, "inches")
  23178. },
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(6 + 4/12, "feet"),
  23182. default: true
  23183. },
  23184. {
  23185. name: "Large",
  23186. height: math.unit(12, "feet")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(5 + 7/12, "feet"),
  23195. weight: math.unit(185, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/aman-aquila/front.svg",
  23199. extra: 1013/976,
  23200. bottom: 45.6/1057
  23201. }
  23202. },
  23203. side: {
  23204. height: math.unit(5 + 7/12, "feet"),
  23205. weight: math.unit(185, "lb"),
  23206. name: "Side",
  23207. image: {
  23208. source: "./media/characters/aman-aquila/side.svg",
  23209. extra: 1054/1011,
  23210. bottom: 15/1070
  23211. }
  23212. },
  23213. back: {
  23214. height: math.unit(5 + 7/12, "feet"),
  23215. weight: math.unit(185, "lb"),
  23216. name: "Back",
  23217. image: {
  23218. source: "./media/characters/aman-aquila/back.svg",
  23219. extra: 1026/970,
  23220. bottom: 12/1039
  23221. }
  23222. },
  23223. head: {
  23224. height: math.unit(1.211, "feet"),
  23225. name: "Head",
  23226. image: {
  23227. source: "./media/characters/aman-aquila/head.svg",
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Minimicro",
  23234. height: math.unit(0.057, "inches")
  23235. },
  23236. {
  23237. name: "Micro",
  23238. height: math.unit(7, "inches")
  23239. },
  23240. {
  23241. name: "Mini",
  23242. height: math.unit(3 + 7/12, "feet")
  23243. },
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(5 + 7/12, "feet"),
  23247. default: true
  23248. },
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(157 + 7/12, "feet")
  23252. },
  23253. {
  23254. name: "Megamacro",
  23255. height: math.unit(1557 + 7/12, "feet")
  23256. },
  23257. {
  23258. name: "Gigamacro",
  23259. height: math.unit(15557 + 7/12, "feet")
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(3 + 2/12, "inches"),
  23268. weight: math.unit(0.3, "ounces"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/hiphae/front.svg",
  23272. extra: 1931/1683,
  23273. bottom: 24/1955
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(3 + 1/2, "inches"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(5 + 10/12, "feet"),
  23290. weight: math.unit(165, "lb"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/nicky/front.svg",
  23294. extra: 3144/2886,
  23295. bottom: 45.6/3192
  23296. }
  23297. },
  23298. back: {
  23299. height: math.unit(5 + 10/12, "feet"),
  23300. weight: math.unit(165, "lb"),
  23301. name: "Back",
  23302. image: {
  23303. source: "./media/characters/nicky/back.svg",
  23304. extra: 3055/2804,
  23305. bottom: 28.4/3087
  23306. }
  23307. },
  23308. frontclothed: {
  23309. height: math.unit(5 + 10/12, "feet"),
  23310. weight: math.unit(165, "lb"),
  23311. name: "Front-clothed",
  23312. image: {
  23313. source: "./media/characters/nicky/front-clothed.svg",
  23314. extra: 3184.9/2926.9,
  23315. bottom: 86.5/3239.9
  23316. }
  23317. },
  23318. foot: {
  23319. height: math.unit(1.16, "feet"),
  23320. name: "Foot",
  23321. image: {
  23322. source: "./media/characters/nicky/foot.svg"
  23323. }
  23324. },
  23325. feet: {
  23326. height: math.unit(1.34, "feet"),
  23327. name: "Feet",
  23328. image: {
  23329. source: "./media/characters/nicky/feet.svg"
  23330. }
  23331. },
  23332. maw: {
  23333. height: math.unit(0.9, "feet"),
  23334. name: "Maw",
  23335. image: {
  23336. source: "./media/characters/nicky/maw.svg"
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(5 + 10/12, "feet"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Macro",
  23348. height: math.unit(60, "feet")
  23349. },
  23350. {
  23351. name: "Megamacro",
  23352. height: math.unit(1, "mile")
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23358. {
  23359. side: {
  23360. height: math.unit(10, "feet"),
  23361. weight: math.unit(600, "lb"),
  23362. name: "Side",
  23363. image: {
  23364. source: "./media/characters/blair/side.svg",
  23365. bottom: 16.6/475,
  23366. extra: 458/431
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Micro",
  23373. height: math.unit(8, "inches")
  23374. },
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(10, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(180, "feet")
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(5 + 4/12, "feet"),
  23391. weight: math.unit(125, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/fisher/front.svg",
  23395. extra: 444/390,
  23396. bottom: 2/444.8
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Micro",
  23403. height: math.unit(4, "inches")
  23404. },
  23405. {
  23406. name: "Normal",
  23407. height: math.unit(5 + 4/12, "feet"),
  23408. default: true
  23409. },
  23410. {
  23411. name: "Macro",
  23412. height: math.unit(100, "feet")
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(6.71, "feet"),
  23421. weight: math.unit(200, "lb"),
  23422. capacity: math.unit(1000000, "people"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/gliss/front.svg",
  23426. extra: 2347/2231,
  23427. bottom: 113/2462
  23428. }
  23429. },
  23430. hammerspaceSize: {
  23431. height: math.unit(6.71*717, "feet"),
  23432. weight: math.unit(200, "lb"),
  23433. capacity: math.unit(1000000, "people"),
  23434. name: "Hammerspace Size",
  23435. image: {
  23436. source: "./media/characters/gliss/front.svg",
  23437. extra: 2347/2231,
  23438. bottom: 113/2462
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(6.71, "feet"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23452. {
  23453. side: {
  23454. height: math.unit(1.44, "m"),
  23455. weight: math.unit(80, "kg"),
  23456. name: "Side",
  23457. image: {
  23458. source: "./media/characters/dune-anderson/side.svg",
  23459. bottom: 49/1426
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Wolf-sized",
  23466. height: math.unit(1.44, "meters")
  23467. },
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(5.05, "meters"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Big",
  23475. height: math.unit(14.4, "meters")
  23476. },
  23477. {
  23478. name: "Huge",
  23479. height: math.unit(144, "meters")
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(7, "feet"),
  23488. weight: math.unit(425, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/hind/front.svg",
  23492. extra: 2091/1860,
  23493. bottom: 129/2220
  23494. }
  23495. },
  23496. back: {
  23497. height: math.unit(7, "feet"),
  23498. weight: math.unit(425, "lb"),
  23499. name: "Back",
  23500. image: {
  23501. source: "./media/characters/hind/back.svg",
  23502. extra: 2091/1860,
  23503. bottom: 24.6/2309
  23504. }
  23505. },
  23506. tail: {
  23507. height: math.unit(2.8, "feet"),
  23508. name: "Tail",
  23509. image: {
  23510. source: "./media/characters/hind/tail.svg"
  23511. }
  23512. },
  23513. head: {
  23514. height: math.unit(2.55, "feet"),
  23515. name: "Head",
  23516. image: {
  23517. source: "./media/characters/hind/head.svg"
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "XS",
  23524. height: math.unit(0.7, "feet")
  23525. },
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(7, "feet"),
  23529. default: true
  23530. },
  23531. {
  23532. name: "XL",
  23533. height: math.unit(70, "feet")
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(6, "feet"),
  23542. weight: math.unit(150, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/dylan-skaven/front.svg",
  23546. extra: 2318/2063,
  23547. bottom: 93.4/2410
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Nano",
  23554. height: math.unit(1, "mm")
  23555. },
  23556. {
  23557. name: "Micro",
  23558. height: math.unit(1, "cm")
  23559. },
  23560. {
  23561. name: "Normal",
  23562. height: math.unit(2.1, "meters"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(7 + 5/12, "feet"),
  23572. weight: math.unit(357, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/solex-draconov/front.svg",
  23576. extra: 1993/1865,
  23577. bottom: 117/2111
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Natural Height",
  23584. height: math.unit(7 + 5/12, "feet"),
  23585. default: true
  23586. },
  23587. {
  23588. name: "Macro",
  23589. height: math.unit(350, "feet")
  23590. },
  23591. {
  23592. name: "Macro+",
  23593. height: math.unit(1000, "feet")
  23594. },
  23595. {
  23596. name: "Megamacro",
  23597. height: math.unit(20, "km")
  23598. },
  23599. {
  23600. name: "Megamacro+",
  23601. height: math.unit(1000, "km")
  23602. },
  23603. {
  23604. name: "Gigamacro",
  23605. height: math.unit(2.5, "Gm")
  23606. },
  23607. {
  23608. name: "Teramacro",
  23609. height: math.unit(15, "Tm")
  23610. },
  23611. {
  23612. name: "Galactic",
  23613. height: math.unit(30, "Zm")
  23614. },
  23615. {
  23616. name: "Universal",
  23617. height: math.unit(21000, "Ym")
  23618. },
  23619. {
  23620. name: "Omniversal",
  23621. height: math.unit(9.861e50, "Ym")
  23622. },
  23623. {
  23624. name: "Existential",
  23625. height: math.unit(1e300, "meters")
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23631. {
  23632. side: {
  23633. height: math.unit(25, "feet"),
  23634. weight: math.unit(90000, "lb"),
  23635. name: "Side",
  23636. image: {
  23637. source: "./media/characters/mandarax/side.svg",
  23638. extra: 614/332,
  23639. bottom: 55/630
  23640. }
  23641. },
  23642. head: {
  23643. height: math.unit(11.4, "feet"),
  23644. name: "Head",
  23645. image: {
  23646. source: "./media/characters/mandarax/head.svg"
  23647. }
  23648. },
  23649. belly: {
  23650. height: math.unit(33, "feet"),
  23651. name: "Belly",
  23652. capacity: math.unit(500, "people"),
  23653. image: {
  23654. source: "./media/characters/mandarax/belly.svg"
  23655. }
  23656. },
  23657. dick: {
  23658. height: math.unit(8.46, "feet"),
  23659. name: "Dick",
  23660. image: {
  23661. source: "./media/characters/mandarax/dick.svg"
  23662. }
  23663. },
  23664. top: {
  23665. height: math.unit(28, "meters"),
  23666. name: "Top",
  23667. image: {
  23668. source: "./media/characters/mandarax/top.svg"
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(25, "feet"),
  23676. default: true
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(5, "feet"),
  23685. weight: math.unit(90, "lb"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/pixil/front.svg",
  23689. extra: 2000/1618,
  23690. bottom: 12.3/2011
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(5, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Megamacro",
  23702. height: math.unit(10, "miles"),
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23708. {
  23709. front: {
  23710. height: math.unit(7 + 2/12, "feet"),
  23711. weight: math.unit(200, "lb"),
  23712. name: "Front",
  23713. image: {
  23714. source: "./media/characters/angel/front.svg",
  23715. extra: 1830/1737,
  23716. bottom: 22.6/1854,
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(7 + 2/12, "feet"),
  23724. default: true
  23725. },
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(1000, "feet")
  23729. },
  23730. {
  23731. name: "Megamacro",
  23732. height: math.unit(2, "miles")
  23733. },
  23734. {
  23735. name: "Gigamacro",
  23736. height: math.unit(20, "earths")
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23742. {
  23743. front: {
  23744. height: math.unit(5, "feet"),
  23745. weight: math.unit(180, "lb"),
  23746. name: "Front",
  23747. image: {
  23748. source: "./media/characters/mekana/front.svg",
  23749. extra: 1671/1605,
  23750. bottom: 3.5/1691
  23751. }
  23752. },
  23753. side: {
  23754. height: math.unit(5, "feet"),
  23755. weight: math.unit(180, "lb"),
  23756. name: "Side",
  23757. image: {
  23758. source: "./media/characters/mekana/side.svg",
  23759. extra: 1671/1605,
  23760. bottom: 3.5/1691
  23761. }
  23762. },
  23763. back: {
  23764. height: math.unit(5, "feet"),
  23765. weight: math.unit(180, "lb"),
  23766. name: "Back",
  23767. image: {
  23768. source: "./media/characters/mekana/back.svg",
  23769. extra: 1671/1605,
  23770. bottom: 3.5/1691
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Normal",
  23777. height: math.unit(5, "feet"),
  23778. default: true
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23784. {
  23785. front: {
  23786. height: math.unit(4 + 6/12, "feet"),
  23787. weight: math.unit(80, "lb"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/pixie/front.svg",
  23791. extra: 1924/1825,
  23792. bottom: 22.4/1946
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(4 + 6/12, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(40, "feet")
  23805. },
  23806. ]
  23807. ))
  23808. //characters
  23809. function makeCharacters() {
  23810. const results = [];
  23811. characterMakers.forEach(character => {
  23812. results.push(character());
  23813. });
  23814. return results;
  23815. }