less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

24529 wiersze
605 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. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. }
  1236. //species
  1237. function getSpeciesInfo(speciesList) {
  1238. let result = new Set();
  1239. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1240. result.add(entry)
  1241. });
  1242. return Array.from(result);
  1243. };
  1244. function getSpeciesInfoHelper(species) {
  1245. if (!speciesData[species]) {
  1246. console.warn(species + " doesn't exist");
  1247. return [];
  1248. }
  1249. if (speciesData[species].parents) {
  1250. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1251. } else {
  1252. return [species];
  1253. }
  1254. }
  1255. characterMakers.push(() => makeCharacter(
  1256. {
  1257. name: "Fen",
  1258. species: ["crux"],
  1259. description: {
  1260. title: "Bio",
  1261. text: "Very furry. Sheds on everything."
  1262. },
  1263. tags: [
  1264. "anthro",
  1265. "goo"
  1266. ]
  1267. },
  1268. {
  1269. back: {
  1270. height: math.unit(2.2428, "meter"),
  1271. weight: math.unit(124.738, "kg"),
  1272. name: "Back",
  1273. image: {
  1274. source: "./media/characters/fen/back.svg",
  1275. extra: 1025 / 935,
  1276. bottom: 0.01
  1277. },
  1278. info: {
  1279. description: {
  1280. mode: "append",
  1281. text: "\n\nHe is not currently looking at you."
  1282. }
  1283. }
  1284. },
  1285. full: {
  1286. height: math.unit(1.34, "meter"),
  1287. weight: math.unit(225, "kg"),
  1288. name: "Full",
  1289. image: {
  1290. source: "./media/characters/fen/full.svg"
  1291. },
  1292. info: {
  1293. description: {
  1294. mode: "append",
  1295. text: "\n\nMunch."
  1296. }
  1297. }
  1298. },
  1299. kneeling: {
  1300. height: math.unit(5.4, "feet"),
  1301. weight: math.unit(124.738, "kg"),
  1302. name: "Kneeling",
  1303. image: {
  1304. source: "./media/characters/fen/kneeling.svg",
  1305. extra: 563 / 507
  1306. }
  1307. },
  1308. goo: {
  1309. height: math.unit(2.8, "feet"),
  1310. weight: math.unit(125, "kg"),
  1311. capacity: math.unit(1, "people"),
  1312. name: "Goo",
  1313. image: {
  1314. source: "./media/characters/fen/goo.svg",
  1315. bottom: 116/613
  1316. }
  1317. },
  1318. lounging: {
  1319. height: math.unit(6.5, "feet"),
  1320. weight: math.unit(125, "kg"),
  1321. name: "Lounging",
  1322. image: {
  1323. source: "./media/characters/fen/lounging.svg"
  1324. }
  1325. },
  1326. },
  1327. [
  1328. {
  1329. name: "Normal",
  1330. height: math.unit(2.2428, "meter")
  1331. },
  1332. {
  1333. name: "Big",
  1334. height: math.unit(12, "feet")
  1335. },
  1336. {
  1337. name: "Minimacro",
  1338. height: math.unit(40, "feet"),
  1339. default: true,
  1340. info: {
  1341. description: {
  1342. mode: "append",
  1343. text: "\n\nTOO DAMN BIG"
  1344. }
  1345. }
  1346. },
  1347. {
  1348. name: "Macro",
  1349. height: math.unit(100, "feet"),
  1350. info: {
  1351. description: {
  1352. mode: "append",
  1353. text: "\n\nTOO DAMN BIG"
  1354. }
  1355. }
  1356. },
  1357. {
  1358. name: "Macro+",
  1359. height: math.unit(300, "feet")
  1360. },
  1361. {
  1362. name: "Megamacro",
  1363. height: math.unit(2, "miles")
  1364. }
  1365. ]
  1366. ))
  1367. characterMakers.push(() => makeCharacter(
  1368. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1369. {
  1370. front: {
  1371. height: math.unit(183, "cm"),
  1372. weight: math.unit(80, "kg"),
  1373. name: "Front",
  1374. image: {
  1375. source: "./media/characters/sofia-fluttertail/front.svg",
  1376. bottom: 0.01,
  1377. extra: 2154 / 2081
  1378. }
  1379. },
  1380. frontAlt: {
  1381. height: math.unit(183, "cm"),
  1382. weight: math.unit(80, "kg"),
  1383. name: "Front (alt)",
  1384. image: {
  1385. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1386. }
  1387. },
  1388. back: {
  1389. height: math.unit(183, "cm"),
  1390. weight: math.unit(80, "kg"),
  1391. name: "Back",
  1392. image: {
  1393. source: "./media/characters/sofia-fluttertail/back.svg"
  1394. }
  1395. },
  1396. kneeling: {
  1397. height: math.unit(125, "cm"),
  1398. weight: math.unit(80, "kg"),
  1399. name: "Kneeling",
  1400. image: {
  1401. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1402. extra: 1033/977,
  1403. bottom: 23.7/1057
  1404. }
  1405. },
  1406. maw: {
  1407. height: math.unit(183 / 5, "cm"),
  1408. name: "Maw",
  1409. image: {
  1410. source: "./media/characters/sofia-fluttertail/maw.svg"
  1411. }
  1412. },
  1413. mawcloseup: {
  1414. height: math.unit(183 / 5 * 0.41, "cm"),
  1415. name: "Maw (Closeup)",
  1416. image: {
  1417. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1418. }
  1419. },
  1420. },
  1421. [
  1422. {
  1423. name: "Normal",
  1424. height: math.unit(1.83, "meter")
  1425. },
  1426. {
  1427. name: "Size Thief",
  1428. height: math.unit(18, "feet")
  1429. },
  1430. {
  1431. name: "50 Foot Collie",
  1432. height: math.unit(50, "feet")
  1433. },
  1434. {
  1435. name: "Macro",
  1436. height: math.unit(96, "feet"),
  1437. default: true
  1438. },
  1439. {
  1440. name: "Megamerger",
  1441. height: math.unit(650, "feet")
  1442. },
  1443. ]
  1444. ))
  1445. characterMakers.push(() => makeCharacter(
  1446. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1447. {
  1448. front: {
  1449. height: math.unit(7, "feet"),
  1450. weight: math.unit(100, "kg"),
  1451. name: "Front",
  1452. image: {
  1453. source: "./media/characters/march/front.svg",
  1454. extra: 1,
  1455. bottom: 0.015
  1456. }
  1457. },
  1458. foot: {
  1459. height: math.unit(0.9, "feet"),
  1460. name: "Foot",
  1461. image: {
  1462. source: "./media/characters/march/foot.svg"
  1463. }
  1464. },
  1465. },
  1466. [
  1467. {
  1468. name: "Normal",
  1469. height: math.unit(7.9, "feet")
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(220, "meters")
  1474. },
  1475. {
  1476. name: "Megamacro",
  1477. height: math.unit(2.98, "km"),
  1478. default: true
  1479. },
  1480. {
  1481. name: "Gigamacro",
  1482. height: math.unit(15963, "km")
  1483. },
  1484. {
  1485. name: "Teramacro",
  1486. height: math.unit(2980000000, "km")
  1487. },
  1488. {
  1489. name: "Examacro",
  1490. height: math.unit(250, "parsecs")
  1491. },
  1492. ]
  1493. ))
  1494. characterMakers.push(() => makeCharacter(
  1495. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1496. {
  1497. front: {
  1498. height: math.unit(6, "feet"),
  1499. weight: math.unit(60, "kg"),
  1500. name: "Front",
  1501. image: {
  1502. source: "./media/characters/noir/front.svg",
  1503. extra: 1,
  1504. bottom: 0.032
  1505. }
  1506. },
  1507. },
  1508. [
  1509. {
  1510. name: "Normal",
  1511. height: math.unit(6.6, "feet")
  1512. },
  1513. {
  1514. name: "Macro",
  1515. height: math.unit(500, "feet")
  1516. },
  1517. {
  1518. name: "Megamacro",
  1519. height: math.unit(2.5, "km"),
  1520. default: true
  1521. },
  1522. {
  1523. name: "Gigamacro",
  1524. height: math.unit(22500, "km")
  1525. },
  1526. {
  1527. name: "Teramacro",
  1528. height: math.unit(2500000000, "km")
  1529. },
  1530. {
  1531. name: "Examacro",
  1532. height: math.unit(200, "parsecs")
  1533. },
  1534. ]
  1535. ))
  1536. characterMakers.push(() => makeCharacter(
  1537. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1538. {
  1539. front: {
  1540. height: math.unit(7, "feet"),
  1541. weight: math.unit(100, "kg"),
  1542. name: "Front",
  1543. image: {
  1544. source: "./media/characters/okuri/front.svg",
  1545. extra: 1,
  1546. bottom: 0.037
  1547. }
  1548. },
  1549. back: {
  1550. height: math.unit(7, "feet"),
  1551. weight: math.unit(100, "kg"),
  1552. name: "Back",
  1553. image: {
  1554. source: "./media/characters/okuri/back.svg",
  1555. extra: 1,
  1556. bottom: 0.007
  1557. }
  1558. },
  1559. },
  1560. [
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(100, "miles"),
  1564. default: true
  1565. },
  1566. ]
  1567. ))
  1568. characterMakers.push(() => makeCharacter(
  1569. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1570. {
  1571. front: {
  1572. height: math.unit(7, "feet"),
  1573. weight: math.unit(100, "kg"),
  1574. name: "Front",
  1575. image: {
  1576. source: "./media/characters/manny/front.svg",
  1577. extra: 1,
  1578. bottom: 0.06
  1579. }
  1580. },
  1581. back: {
  1582. height: math.unit(7, "feet"),
  1583. weight: math.unit(100, "kg"),
  1584. name: "Back",
  1585. image: {
  1586. source: "./media/characters/manny/back.svg",
  1587. extra: 1,
  1588. bottom: 0.014
  1589. }
  1590. },
  1591. },
  1592. [
  1593. {
  1594. name: "Normal",
  1595. height: math.unit(7, "feet"),
  1596. },
  1597. {
  1598. name: "Macro",
  1599. height: math.unit(78, "feet"),
  1600. default: true
  1601. },
  1602. {
  1603. name: "Macro+",
  1604. height: math.unit(300, "meters")
  1605. },
  1606. {
  1607. name: "Macro++",
  1608. height: math.unit(2400, "meters")
  1609. },
  1610. {
  1611. name: "Megamacro",
  1612. height: math.unit(5167, "meters")
  1613. },
  1614. {
  1615. name: "Gigamacro",
  1616. height: math.unit(41769, "miles")
  1617. },
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1622. {
  1623. front: {
  1624. height: math.unit(7, "feet"),
  1625. weight: math.unit(100, "kg"),
  1626. name: "Front",
  1627. image: {
  1628. source: "./media/characters/adake/front-1.svg"
  1629. }
  1630. },
  1631. frontAlt: {
  1632. height: math.unit(7, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Front (Alt)",
  1635. image: {
  1636. source: "./media/characters/adake/front-2.svg",
  1637. extra: 1,
  1638. bottom: 0.01
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/adake/back.svg",
  1647. }
  1648. },
  1649. kneel: {
  1650. height: math.unit(5.385, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Kneeling",
  1653. image: {
  1654. source: "./media/characters/adake/kneel.svg",
  1655. bottom: 0.052
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(7, "feet"),
  1663. },
  1664. {
  1665. name: "Macro",
  1666. height: math.unit(78, "feet"),
  1667. default: true
  1668. },
  1669. {
  1670. name: "Macro+",
  1671. height: math.unit(300, "meters")
  1672. },
  1673. {
  1674. name: "Macro++",
  1675. height: math.unit(2400, "meters")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(5167, "meters")
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(41769, "miles")
  1684. },
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1689. {
  1690. front: {
  1691. height: math.unit(1.65, "meters"),
  1692. weight: math.unit(50, "kg"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/elijah/front.svg",
  1696. extra: 858/830,
  1697. bottom: 95.5/953.8559
  1698. }
  1699. },
  1700. back: {
  1701. height: math.unit(1.65, "meters"),
  1702. weight: math.unit(50, "kg"),
  1703. name: "Back",
  1704. image: {
  1705. source: "./media/characters/elijah/back.svg",
  1706. extra: 895/850,
  1707. bottom: 5.3/897.956
  1708. }
  1709. },
  1710. frontNsfw: {
  1711. height: math.unit(1.65, "meters"),
  1712. weight: math.unit(50, "kg"),
  1713. name: "Front (NSFW)",
  1714. image: {
  1715. source: "./media/characters/elijah/front-nsfw.svg",
  1716. extra: 858/830,
  1717. bottom: 95.5/953.8559
  1718. }
  1719. },
  1720. backNsfw: {
  1721. height: math.unit(1.65, "meters"),
  1722. weight: math.unit(50, "kg"),
  1723. name: "Back (NSFW)",
  1724. image: {
  1725. source: "./media/characters/elijah/back-nsfw.svg",
  1726. extra: 895/850,
  1727. bottom: 5.3/897.956
  1728. }
  1729. },
  1730. dick: {
  1731. height: math.unit(1, "feet"),
  1732. name: "Dick",
  1733. image: {
  1734. source: "./media/characters/elijah/dick.svg"
  1735. }
  1736. },
  1737. beakOpen: {
  1738. height: math.unit(1.25, "feet"),
  1739. name: "Beak (Open)",
  1740. image: {
  1741. source: "./media/characters/elijah/beak-open.svg"
  1742. }
  1743. },
  1744. beakShut: {
  1745. height: math.unit(1.25, "feet"),
  1746. name: "Beak (Shut)",
  1747. image: {
  1748. source: "./media/characters/elijah/beak-shut.svg"
  1749. }
  1750. },
  1751. footFlexing: {
  1752. height: math.unit(1.61, "feet"),
  1753. name: "Foot (Flexing)",
  1754. image: {
  1755. source: "./media/characters/elijah/foot-flexing.svg"
  1756. }
  1757. },
  1758. footStepping: {
  1759. height: math.unit(1.44, "feet"),
  1760. name: "Foot (Stepping)",
  1761. image: {
  1762. source: "./media/characters/elijah/foot-stepping.svg"
  1763. }
  1764. },
  1765. plantigradeLeg: {
  1766. height: math.unit(2.34, "feet"),
  1767. name: "Plantigrade Leg",
  1768. image: {
  1769. source: "./media/characters/elijah/plantigrade-leg.svg"
  1770. }
  1771. },
  1772. plantigradeFootLeft: {
  1773. height: math.unit(0.9, "feet"),
  1774. name: "Plantigrade Foot (Left)",
  1775. image: {
  1776. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1777. }
  1778. },
  1779. plantigradeFootRight: {
  1780. height: math.unit(0.9, "feet"),
  1781. name: "Plantigrade Foot (Right)",
  1782. image: {
  1783. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1784. }
  1785. },
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(1.65, "meters")
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(55, "meters"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Macro+",
  1799. height: math.unit(105, "meters")
  1800. },
  1801. ]
  1802. ))
  1803. characterMakers.push(() => makeCharacter(
  1804. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1805. {
  1806. front: {
  1807. height: math.unit(11, "feet"),
  1808. weight: math.unit(80, "kg"),
  1809. name: "Front",
  1810. image: {
  1811. source: "./media/characters/rai/front.svg",
  1812. extra: 1,
  1813. bottom: 0.03
  1814. }
  1815. },
  1816. side: {
  1817. height: math.unit(11, "feet"),
  1818. weight: math.unit(80, "kg"),
  1819. name: "Side",
  1820. image: {
  1821. source: "./media/characters/rai/side.svg"
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(11, "feet"),
  1826. weight: math.unit(80, "lb"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/rai/back.svg",
  1830. extra: 1,
  1831. bottom: 0.01
  1832. }
  1833. },
  1834. feral: {
  1835. height: math.unit(11, "feet"),
  1836. weight: math.unit(800, "lb"),
  1837. name: "Feral",
  1838. image: {
  1839. source: "./media/characters/rai/feral.svg",
  1840. extra: 1050 / 659,
  1841. bottom: 0.07
  1842. }
  1843. },
  1844. dragon: {
  1845. height: math.unit(23, "feet"),
  1846. weight: math.unit(50000, "lb"),
  1847. name: "Dragon",
  1848. image: {
  1849. source: "./media/characters/rai/dragon.svg",
  1850. extra: 2498/2030,
  1851. bottom: 85.2/2584
  1852. }
  1853. },
  1854. maw: {
  1855. height: math.unit(6 / 3.81416, "feet"),
  1856. name: "Maw",
  1857. image: {
  1858. source: "./media/characters/rai/maw.svg"
  1859. }
  1860. },
  1861. },
  1862. [
  1863. {
  1864. name: "Normal",
  1865. height: math.unit(11, "feet")
  1866. },
  1867. {
  1868. name: "Macro",
  1869. height: math.unit(302, "feet"),
  1870. default: true
  1871. },
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1876. {
  1877. frontDressed: {
  1878. height: math.unit(216, "feet"),
  1879. weight: math.unit(7000000, "lb"),
  1880. name: "Front (Dressed)",
  1881. image: {
  1882. source: "./media/characters/jazzy/front-dressed.svg",
  1883. extra: 2738/2651,
  1884. bottom: 41.8/2786
  1885. }
  1886. },
  1887. backDressed: {
  1888. height: math.unit(216, "feet"),
  1889. weight: math.unit(7000000, "lb"),
  1890. name: "Back (Dressed)",
  1891. image: {
  1892. source: "./media/characters/jazzy/back-dressed.svg",
  1893. extra: 2775/2673,
  1894. bottom: 36.8/2817
  1895. }
  1896. },
  1897. front: {
  1898. height: math.unit(216, "feet"),
  1899. weight: math.unit(7000000, "lb"),
  1900. name: "Front",
  1901. image: {
  1902. source: "./media/characters/jazzy/front.svg",
  1903. extra: 2738/2651,
  1904. bottom: 41.8/2786
  1905. }
  1906. },
  1907. back: {
  1908. height: math.unit(216, "feet"),
  1909. weight: math.unit(7000000, "lb"),
  1910. name: "Back",
  1911. image: {
  1912. source: "./media/characters/jazzy/back.svg",
  1913. extra: 2775/2673,
  1914. bottom: 36.8/2817
  1915. }
  1916. },
  1917. maw: {
  1918. height: math.unit(20, "feet"),
  1919. name: "Maw",
  1920. image: {
  1921. source: "./media/characters/jazzy/maw.svg"
  1922. }
  1923. },
  1924. paws: {
  1925. height: math.unit(27.5, "feet"),
  1926. name: "Paws",
  1927. image: {
  1928. source: "./media/characters/jazzy/paws.svg"
  1929. }
  1930. },
  1931. eye: {
  1932. height: math.unit(4.4, "feet"),
  1933. name: "Eye",
  1934. image: {
  1935. source: "./media/characters/jazzy/eye.svg"
  1936. }
  1937. },
  1938. droneOffense: {
  1939. height: math.unit(9.5, "inches"),
  1940. name: "Drone (Offense)",
  1941. image: {
  1942. source: "./media/characters/jazzy/drone-offense.svg"
  1943. }
  1944. },
  1945. droneRecon: {
  1946. height: math.unit(9.5, "inches"),
  1947. name: "Drone (Recon)",
  1948. image: {
  1949. source: "./media/characters/jazzy/drone-recon.svg"
  1950. }
  1951. },
  1952. droneDefense: {
  1953. height: math.unit(9.5, "inches"),
  1954. name: "Drone (Defense)",
  1955. image: {
  1956. source: "./media/characters/jazzy/drone-defense.svg"
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(216, "feet"),
  1964. default: true
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(7, "feet"),
  1973. weight: math.unit(80, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/flamm/front.svg",
  1977. extra: 1794 / 1677,
  1978. bottom: 31.7 / 1828.5
  1979. }
  1980. },
  1981. },
  1982. [
  1983. {
  1984. name: "Normal",
  1985. height: math.unit(9.5, "feet")
  1986. },
  1987. {
  1988. name: "Macro",
  1989. height: math.unit(200, "feet"),
  1990. default: true
  1991. },
  1992. ]
  1993. ))
  1994. characterMakers.push(() => makeCharacter(
  1995. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1996. {
  1997. front: {
  1998. height: math.unit(7, "feet"),
  1999. weight: math.unit(80, "kg"),
  2000. name: "Front",
  2001. image: {
  2002. source: "./media/characters/zephiro/front.svg",
  2003. extra: 2309 / 2162,
  2004. bottom: 0.069
  2005. }
  2006. },
  2007. side: {
  2008. height: math.unit(7, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Side",
  2011. image: {
  2012. source: "./media/characters/zephiro/side.svg",
  2013. extra: 2403 / 2279,
  2014. bottom: 0.015
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(7, "feet"),
  2019. weight: math.unit(80, "kg"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/zephiro/back.svg",
  2023. extra: 2373 / 2244,
  2024. bottom: 0.013
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Micro",
  2031. height: math.unit(3, "inches")
  2032. },
  2033. {
  2034. name: "Normal",
  2035. height: math.unit(5 + 3 / 12, "feet"),
  2036. default: true
  2037. },
  2038. {
  2039. name: "Macro",
  2040. height: math.unit(118, "feet")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(5, "feet"),
  2049. weight: math.unit(90, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/fory/front.svg",
  2053. extra: 2862 / 2674,
  2054. bottom: 180 / 3043.8
  2055. }
  2056. },
  2057. back: {
  2058. height: math.unit(5, "feet"),
  2059. weight: math.unit(90, "kg"),
  2060. name: "Back",
  2061. image: {
  2062. source: "./media/characters/fory/back.svg",
  2063. extra: 2962 / 2791,
  2064. bottom: 106 / 3071.8
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(2.14, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/fory/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(5, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(50, "feet"),
  2083. default: true
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(10, "miles")
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(5, "earths")
  2092. },
  2093. ]
  2094. ))
  2095. characterMakers.push(() => makeCharacter(
  2096. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2097. {
  2098. front: {
  2099. height: math.unit(7, "feet"),
  2100. weight: math.unit(90, "kg"),
  2101. name: "Front",
  2102. image: {
  2103. source: "./media/characters/kurrikage/front.svg",
  2104. extra: 1,
  2105. bottom: 0.035
  2106. }
  2107. },
  2108. back: {
  2109. height: math.unit(7, "feet"),
  2110. weight: math.unit(90, "lb"),
  2111. name: "Back",
  2112. image: {
  2113. source: "./media/characters/kurrikage/back.svg"
  2114. }
  2115. },
  2116. paw: {
  2117. height: math.unit(1.5, "feet"),
  2118. name: "Paw",
  2119. image: {
  2120. source: "./media/characters/kurrikage/paw.svg"
  2121. }
  2122. },
  2123. staff: {
  2124. height: math.unit(6.7, "feet"),
  2125. name: "Staff",
  2126. image: {
  2127. source: "./media/characters/kurrikage/staff.svg"
  2128. }
  2129. },
  2130. peek: {
  2131. height: math.unit(1.05, "feet"),
  2132. name: "Peeking",
  2133. image: {
  2134. source: "./media/characters/kurrikage/peek.svg",
  2135. bottom: 0.08
  2136. }
  2137. },
  2138. },
  2139. [
  2140. {
  2141. name: "Normal",
  2142. height: math.unit(12, "feet"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Big",
  2147. height: math.unit(20, "feet")
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(500, "feet")
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(20, "miles")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(6, "feet"),
  2164. weight: math.unit(75, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/shingo/front.svg",
  2168. extra: 3511 / 3338,
  2169. bottom: 0.005
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Micro",
  2176. height: math.unit(4, "inches")
  2177. },
  2178. {
  2179. name: "Normal",
  2180. height: math.unit(6, "feet"),
  2181. default: true
  2182. },
  2183. {
  2184. name: "Macro",
  2185. height: math.unit(108, "feet")
  2186. }
  2187. ]
  2188. ))
  2189. characterMakers.push(() => makeCharacter(
  2190. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2191. {
  2192. side: {
  2193. height: math.unit(6, "feet"),
  2194. weight: math.unit(75, "kg"),
  2195. name: "Side",
  2196. image: {
  2197. source: "./media/characters/aigey/side.svg"
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(200, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(100, "miles")
  2210. },
  2211. ]
  2212. )
  2213. )
  2214. characterMakers.push(() => makeCharacter(
  2215. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2216. {
  2217. front: {
  2218. height: math.unit(5 + 5 / 12, "feet"),
  2219. weight: math.unit(75, "kg"),
  2220. name: "Front",
  2221. image: {
  2222. source: "./media/characters/natasha/front.svg",
  2223. extra: 859/824,
  2224. bottom: 23/879.6
  2225. }
  2226. },
  2227. frontNsfw: {
  2228. height: math.unit(5 + 5 / 12, "feet"),
  2229. weight: math.unit(75, "kg"),
  2230. name: "Front (NSFW)",
  2231. image: {
  2232. source: "./media/characters/natasha/front-nsfw.svg",
  2233. extra: 859/824,
  2234. bottom: 23/879.6
  2235. }
  2236. },
  2237. frontErect: {
  2238. height: math.unit(5 + 5 / 12, "feet"),
  2239. weight: math.unit(75, "kg"),
  2240. name: "Front (Erect)",
  2241. image: {
  2242. source: "./media/characters/natasha/front-erect.svg",
  2243. extra: 859/824,
  2244. bottom: 23/879.6
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(5 + 5 / 12, "feet"),
  2249. weight: math.unit(75, "kg"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/natasha/back.svg",
  2253. extra: 887.9/852.6,
  2254. bottom: 9.7/896.4
  2255. }
  2256. },
  2257. backAlt: {
  2258. height: math.unit(5 + 5 / 12, "feet"),
  2259. weight: math.unit(75, "kg"),
  2260. name: "Back (Alt)",
  2261. image: {
  2262. source: "./media/characters/natasha/back-alt.svg",
  2263. extra: 1236.7/1192,
  2264. bottom: 22.3/1258.2
  2265. }
  2266. },
  2267. dick: {
  2268. height: math.unit(1.772, "feet"),
  2269. name: "Dick",
  2270. image: {
  2271. source: "./media/characters/natasha/dick.svg"
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Normal",
  2278. height: math.unit(5 + 5 / 12, "feet")
  2279. },
  2280. {
  2281. name: "Large",
  2282. height: math.unit(12, "feet")
  2283. },
  2284. {
  2285. name: "Macro",
  2286. height: math.unit(100, "feet"),
  2287. default: true
  2288. },
  2289. {
  2290. name: "Macro+",
  2291. height: math.unit(260, "feet")
  2292. },
  2293. {
  2294. name: "Macro++",
  2295. height: math.unit(1, "mile")
  2296. },
  2297. ]
  2298. ))
  2299. characterMakers.push(() => makeCharacter(
  2300. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2301. {
  2302. front: {
  2303. height: math.unit(6, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Front",
  2306. image: {
  2307. source: "./media/characters/malik/front.svg"
  2308. }
  2309. },
  2310. side: {
  2311. height: math.unit(6, "feet"),
  2312. weight: math.unit(75, "kg"),
  2313. name: "Side",
  2314. image: {
  2315. source: "./media/characters/malik/side.svg",
  2316. extra: 1.1539
  2317. }
  2318. },
  2319. back: {
  2320. height: math.unit(6, "feet"),
  2321. weight: math.unit(75, "kg"),
  2322. name: "Back",
  2323. image: {
  2324. source: "./media/characters/malik/back.svg"
  2325. }
  2326. },
  2327. },
  2328. [
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(156, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro+",
  2336. height: math.unit(1188, "feet")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sefer/front.svg"
  2349. }
  2350. },
  2351. back: {
  2352. height: math.unit(6, "feet"),
  2353. weight: math.unit(75, "kg"),
  2354. name: "Back",
  2355. image: {
  2356. source: "./media/characters/sefer/back.svg"
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(6, "feet"),
  2364. default: true
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2370. {
  2371. body: {
  2372. height: math.unit(2.2428, "meter"),
  2373. weight: math.unit(124.738, "kg"),
  2374. name: "Body",
  2375. image: {
  2376. extra: 1225 / 1050,
  2377. source: "./media/characters/north/front.svg"
  2378. }
  2379. }
  2380. },
  2381. [
  2382. {
  2383. name: "Micro",
  2384. height: math.unit(4, "inches")
  2385. },
  2386. {
  2387. name: "Macro",
  2388. height: math.unit(63, "meters")
  2389. },
  2390. {
  2391. name: "Megamacro",
  2392. height: math.unit(101, "miles"),
  2393. default: true
  2394. }
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2399. {
  2400. angled: {
  2401. height: math.unit(4, "meter"),
  2402. weight: math.unit(150, "kg"),
  2403. name: "Angled",
  2404. image: {
  2405. source: "./media/characters/talan/angled-sfw.svg",
  2406. bottom: 29 / 3734
  2407. }
  2408. },
  2409. angledNsfw: {
  2410. height: math.unit(4, "meter"),
  2411. weight: math.unit(150, "kg"),
  2412. name: "Angled (NSFW)",
  2413. image: {
  2414. source: "./media/characters/talan/angled-nsfw.svg",
  2415. bottom: 29 / 3734
  2416. }
  2417. },
  2418. frontNsfw: {
  2419. height: math.unit(4, "meter"),
  2420. weight: math.unit(150, "kg"),
  2421. name: "Front (NSFW)",
  2422. image: {
  2423. source: "./media/characters/talan/front-nsfw.svg",
  2424. bottom: 29 / 3734
  2425. }
  2426. },
  2427. sideNsfw: {
  2428. height: math.unit(4, "meter"),
  2429. weight: math.unit(150, "kg"),
  2430. name: "Side (NSFW)",
  2431. image: {
  2432. source: "./media/characters/talan/side-nsfw.svg",
  2433. bottom: 29 / 3734
  2434. }
  2435. },
  2436. back: {
  2437. height: math.unit(4, "meter"),
  2438. weight: math.unit(150, "kg"),
  2439. name: "Back",
  2440. image: {
  2441. source: "./media/characters/talan/back.svg"
  2442. }
  2443. },
  2444. dickBottom: {
  2445. height: math.unit(0.621, "meter"),
  2446. name: "Dick (Bottom)",
  2447. image: {
  2448. source: "./media/characters/talan/dick-bottom.svg"
  2449. }
  2450. },
  2451. dickTop: {
  2452. height: math.unit(0.621, "meter"),
  2453. name: "Dick (Top)",
  2454. image: {
  2455. source: "./media/characters/talan/dick-top.svg"
  2456. }
  2457. },
  2458. dickSide: {
  2459. height: math.unit(0.305, "meter"),
  2460. name: "Dick (Side)",
  2461. image: {
  2462. source: "./media/characters/talan/dick-side.svg"
  2463. }
  2464. },
  2465. dickFront: {
  2466. height: math.unit(0.305, "meter"),
  2467. name: "Dick (Front)",
  2468. image: {
  2469. source: "./media/characters/talan/dick-front.svg"
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(4, "meters")
  2477. },
  2478. {
  2479. name: "Macro",
  2480. height: math.unit(100, "meters")
  2481. },
  2482. {
  2483. name: "Megamacro",
  2484. height: math.unit(2, "miles"),
  2485. default: true
  2486. },
  2487. {
  2488. name: "Gigamacro",
  2489. height: math.unit(5000, "miles")
  2490. },
  2491. {
  2492. name: "Teramacro",
  2493. height: math.unit(100, "parsecs")
  2494. }
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(2, "meter"),
  2502. weight: math.unit(90, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/gael'rathus/front.svg"
  2506. }
  2507. },
  2508. frontAlt: {
  2509. height: math.unit(2, "meter"),
  2510. weight: math.unit(90, "kg"),
  2511. name: "Front (alt)",
  2512. image: {
  2513. source: "./media/characters/gael'rathus/front-alt.svg"
  2514. }
  2515. },
  2516. frontAlt2: {
  2517. height: math.unit(2, "meter"),
  2518. weight: math.unit(90, "kg"),
  2519. name: "Front (alt 2)",
  2520. image: {
  2521. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2522. }
  2523. }
  2524. },
  2525. [
  2526. {
  2527. name: "Normal",
  2528. height: math.unit(9, "feet"),
  2529. default: true
  2530. },
  2531. {
  2532. name: "Large",
  2533. height: math.unit(25, "feet")
  2534. },
  2535. {
  2536. name: "Macro",
  2537. height: math.unit(0.25, "miles")
  2538. },
  2539. {
  2540. name: "Megamacro",
  2541. height: math.unit(10, "miles")
  2542. }
  2543. ]
  2544. ))
  2545. characterMakers.push(() => makeCharacter(
  2546. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2547. {
  2548. side: {
  2549. height: math.unit(2, "meter"),
  2550. weight: math.unit(140, "kg"),
  2551. name: "Side",
  2552. image: {
  2553. source: "./media/characters/sosha/side.svg",
  2554. bottom: 0.042
  2555. }
  2556. },
  2557. },
  2558. [
  2559. {
  2560. name: "Normal",
  2561. height: math.unit(12, "feet"),
  2562. default: true
  2563. }
  2564. ]
  2565. ))
  2566. characterMakers.push(() => makeCharacter(
  2567. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2568. {
  2569. side: {
  2570. height: math.unit(5 + 5 / 12, "feet"),
  2571. weight: math.unit(170, "kg"),
  2572. name: "Side",
  2573. image: {
  2574. source: "./media/characters/runnola/side.svg",
  2575. extra: 741 / 448,
  2576. bottom: 0.05
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Small",
  2583. height: math.unit(3, "feet")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(5 + 5 / 12, "feet"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Big",
  2592. height: math.unit(10, "feet")
  2593. },
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(2, "meter"),
  2601. weight: math.unit(50, "kg"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/kurribird/front.svg",
  2605. bottom: 0.015
  2606. }
  2607. },
  2608. frontAlt: {
  2609. height: math.unit(1.5, "meter"),
  2610. weight: math.unit(50, "kg"),
  2611. name: "Front (Alt)",
  2612. image: {
  2613. source: "./media/characters/kurribird/front-alt.svg",
  2614. extra: 1.45
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(7, "feet")
  2622. },
  2623. {
  2624. name: "Big",
  2625. height: math.unit(12, "feet"),
  2626. default: true
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(1500, "feet")
  2631. },
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(2, "miles")
  2635. }
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2640. {
  2641. front: {
  2642. height: math.unit(2, "meter"),
  2643. weight: math.unit(80, "kg"),
  2644. name: "Front",
  2645. image: {
  2646. source: "./media/characters/elbial/front.svg",
  2647. extra: 1643 / 1556,
  2648. bottom: 60.2 / 1696
  2649. }
  2650. },
  2651. side: {
  2652. height: math.unit(2, "meter"),
  2653. weight: math.unit(80, "kg"),
  2654. name: "Side",
  2655. image: {
  2656. source: "./media/characters/elbial/side.svg",
  2657. extra: 1630 / 1565,
  2658. bottom: 71.5 / 1697
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(80, "kg"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/elbial/back.svg",
  2667. extra: 1668 / 1595,
  2668. bottom: 5.6 / 1672
  2669. }
  2670. },
  2671. frontDressed: {
  2672. height: math.unit(2, "meter"),
  2673. weight: math.unit(80, "kg"),
  2674. name: "Front (Dressed)",
  2675. image: {
  2676. source: "./media/characters/elbial/front-dressed.svg",
  2677. extra: 1653 / 1584,
  2678. bottom: 57 / 1708
  2679. }
  2680. },
  2681. genitals: {
  2682. height: math.unit(2 / 3.367, "meter"),
  2683. name: "Genitals",
  2684. image: {
  2685. source: "./media/characters/elbial/genitals.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Large",
  2692. height: math.unit(100, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(500, "feet"),
  2697. default: true
  2698. },
  2699. {
  2700. name: "Megamacro",
  2701. height: math.unit(10, "miles")
  2702. },
  2703. {
  2704. name: "Gigamacro",
  2705. height: math.unit(25000, "miles")
  2706. },
  2707. {
  2708. name: "Full-Size",
  2709. height: math.unit(8000000, "gigaparsecs")
  2710. }
  2711. ]
  2712. ))
  2713. characterMakers.push(() => makeCharacter(
  2714. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2715. {
  2716. front: {
  2717. height: math.unit(2, "meter"),
  2718. weight: math.unit(60, "kg"),
  2719. name: "Front",
  2720. image: {
  2721. source: "./media/characters/noah/front.svg"
  2722. }
  2723. },
  2724. talons: {
  2725. height: math.unit(0.315, "meter"),
  2726. name: "Talons",
  2727. image: {
  2728. source: "./media/characters/noah/talons.svg"
  2729. }
  2730. }
  2731. },
  2732. [
  2733. {
  2734. name: "Large",
  2735. height: math.unit(50, "feet")
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(750, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Megamacro",
  2744. height: math.unit(50, "miles")
  2745. },
  2746. {
  2747. name: "Gigamacro",
  2748. height: math.unit(100000, "miles")
  2749. },
  2750. {
  2751. name: "Full-Size",
  2752. height: math.unit(3000000000, "miles")
  2753. }
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(2, "meter"),
  2761. weight: math.unit(80, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/natalya/front.svg"
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(2, "meter"),
  2769. weight: math.unit(80, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/natalya/back.svg"
  2773. }
  2774. }
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(150, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Megamacro",
  2784. height: math.unit(5, "miles")
  2785. },
  2786. {
  2787. name: "Full-Size",
  2788. height: math.unit(600, "kiloparsecs")
  2789. }
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(2, "meter"),
  2797. weight: math.unit(50, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/erestrebah/front.svg",
  2801. extra: 208 / 193,
  2802. bottom: 0.055
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(2, "meter"),
  2807. weight: math.unit(50, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/erestrebah/back.svg",
  2811. extra: 1.3
  2812. }
  2813. }
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(10, "feet")
  2819. },
  2820. {
  2821. name: "Large",
  2822. height: math.unit(50, "feet"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(300, "feet")
  2828. },
  2829. {
  2830. name: "Macro+",
  2831. height: math.unit(750, "feet")
  2832. },
  2833. {
  2834. name: "Megamacro",
  2835. height: math.unit(3, "miles")
  2836. }
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(2, "meter"),
  2844. weight: math.unit(80, "kg"),
  2845. name: "Front",
  2846. image: {
  2847. source: "./media/characters/jennifer/front.svg",
  2848. bottom: 0.11,
  2849. extra: 1.16
  2850. }
  2851. },
  2852. frontAlt: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(80, "kg"),
  2855. name: "Front (Alt)",
  2856. image: {
  2857. source: "./media/characters/jennifer/front-alt.svg"
  2858. }
  2859. }
  2860. },
  2861. [
  2862. {
  2863. name: "Canon Height",
  2864. height: math.unit(120, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Macro+",
  2869. height: math.unit(300, "feet")
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(20000, "feet")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(50, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/kalista/front.svg",
  2886. extra: 1947 / 1700,
  2887. bottom: 76.6/1412.98
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(50, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/kalista/back.svg",
  2896. extra: 1366 / 1156,
  2897. bottom: 33.9/1362.78
  2898. }
  2899. }
  2900. },
  2901. [
  2902. {
  2903. name: "Uncomfortably Small",
  2904. height: math.unit(10, "feet")
  2905. },
  2906. {
  2907. name: "Small",
  2908. height: math.unit(30, "feet")
  2909. },
  2910. {
  2911. name: "Macro",
  2912. height: math.unit(100, "feet"),
  2913. default: true
  2914. },
  2915. {
  2916. name: "Macro+",
  2917. height: math.unit(2000, "feet")
  2918. },
  2919. {
  2920. name: "True Form",
  2921. height: math.unit(8924, "miles")
  2922. }
  2923. ]
  2924. ))
  2925. characterMakers.push(() => makeCharacter(
  2926. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2927. {
  2928. front: {
  2929. height: math.unit(2, "meter"),
  2930. weight: math.unit(120, "kg"),
  2931. name: "Front",
  2932. image: {
  2933. source: "./media/characters/ggv/front.svg"
  2934. }
  2935. },
  2936. side: {
  2937. height: math.unit(2, "meter"),
  2938. weight: math.unit(120, "kg"),
  2939. name: "Side",
  2940. image: {
  2941. source: "./media/characters/ggv/side.svg"
  2942. }
  2943. }
  2944. },
  2945. [
  2946. {
  2947. name: "Extremely Puny",
  2948. height: math.unit(9 + 5 / 12, "feet")
  2949. },
  2950. {
  2951. name: "Horribly Small",
  2952. height: math.unit(47.7, "miles"),
  2953. default: true
  2954. },
  2955. {
  2956. name: "Reasonably Sized",
  2957. height: math.unit(25000, "parsecs")
  2958. },
  2959. {
  2960. name: "Slightly Uncompressed",
  2961. height: math.unit(7.77e31, "parsecs")
  2962. },
  2963. {
  2964. name: "Omniversal",
  2965. height: math.unit(1e300, "meters")
  2966. },
  2967. ]
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2971. {
  2972. front: {
  2973. height: math.unit(2, "meter"),
  2974. weight: math.unit(75, "lb"),
  2975. name: "Front",
  2976. image: {
  2977. source: "./media/characters/napalm/front.svg"
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(2, "meter"),
  2982. weight: math.unit(75, "lb"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/napalm/back.svg"
  2986. }
  2987. }
  2988. },
  2989. [
  2990. {
  2991. name: "Standard",
  2992. height: math.unit(55, "feet"),
  2993. default: true
  2994. }
  2995. ]
  2996. ))
  2997. characterMakers.push(() => makeCharacter(
  2998. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2999. {
  3000. front: {
  3001. height: math.unit(7 + 5 / 6, "feet"),
  3002. weight: math.unit(325, "lb"),
  3003. name: "Front",
  3004. image: {
  3005. source: "./media/characters/asana/front.svg",
  3006. extra: 1128 / 1068
  3007. }
  3008. },
  3009. back: {
  3010. height: math.unit(7 + 5 / 6, "feet"),
  3011. weight: math.unit(325, "lb"),
  3012. name: "Back",
  3013. image: {
  3014. source: "./media/characters/asana/back.svg",
  3015. extra: 1128 / 1068
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Standard",
  3022. height: math.unit(7 + 5 / 6, "feet"),
  3023. default: true
  3024. },
  3025. {
  3026. name: "Large",
  3027. height: math.unit(10, "meters")
  3028. },
  3029. {
  3030. name: "Macro",
  3031. height: math.unit(2500, "meters")
  3032. },
  3033. {
  3034. name: "Megamacro",
  3035. height: math.unit(5e6, "meters")
  3036. },
  3037. {
  3038. name: "Examacro",
  3039. height: math.unit(5e12, "lightyears")
  3040. },
  3041. {
  3042. name: "Max Size",
  3043. height: math.unit(1e31, "lightyears")
  3044. }
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(2, "meter"),
  3052. weight: math.unit(60, "kg"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/ebony/front.svg",
  3056. bottom: 0.03,
  3057. extra: 1045 / 810 + 0.03
  3058. }
  3059. },
  3060. side: {
  3061. height: math.unit(2, "meter"),
  3062. weight: math.unit(60, "kg"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/ebony/side.svg",
  3066. bottom: 0.03,
  3067. extra: 1045 / 810 + 0.03
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(2, "meter"),
  3072. weight: math.unit(60, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/ebony/back.svg",
  3076. bottom: 0.01,
  3077. extra: 1045 / 810 + 0.01
  3078. }
  3079. },
  3080. },
  3081. [
  3082. // TODO check why I did this lol
  3083. {
  3084. name: "Standard",
  3085. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro",
  3090. height: math.unit(200, "feet")
  3091. },
  3092. {
  3093. name: "Gigamacro",
  3094. height: math.unit(13000, "km")
  3095. }
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(6, "feet"),
  3103. weight: math.unit(175, "lb"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/mountain/front.svg"
  3107. }
  3108. },
  3109. back: {
  3110. height: math.unit(6, "feet"),
  3111. weight: math.unit(175, "lb"),
  3112. name: "Back",
  3113. image: {
  3114. source: "./media/characters/mountain/back.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Large",
  3121. height: math.unit(20, "meters")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(300, "meters")
  3126. },
  3127. {
  3128. name: "Gigamacro",
  3129. height: math.unit(10000, "km"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Examacro",
  3134. height: math.unit(10e9, "lightyears")
  3135. }
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3140. {
  3141. front: {
  3142. height: math.unit(8, "feet"),
  3143. weight: math.unit(500, "lb"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/rick/front.svg"
  3147. }
  3148. }
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(8, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(5, "km")
  3159. }
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(8, "feet"),
  3167. weight: math.unit(120, "lb"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/ona/front.svg"
  3171. }
  3172. },
  3173. frontAlt: {
  3174. height: math.unit(8, "feet"),
  3175. weight: math.unit(120, "lb"),
  3176. name: "Front (Alt)",
  3177. image: {
  3178. source: "./media/characters/ona/front-alt.svg"
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(8, "feet"),
  3183. weight: math.unit(120, "lb"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/ona/back.svg"
  3187. }
  3188. },
  3189. foot: {
  3190. height: math.unit(1.1, "feet"),
  3191. name: "Foot",
  3192. image: {
  3193. source: "./media/characters/ona/foot.svg"
  3194. }
  3195. }
  3196. },
  3197. [
  3198. {
  3199. name: "Megamacro",
  3200. height: math.unit(70, "km"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(681818, "miles")
  3206. },
  3207. {
  3208. name: "Examacro",
  3209. height: math.unit(3800000, "lightyears")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(12, "feet"),
  3218. weight: math.unit(3000, "lb"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/mech/front.svg",
  3222. bottom: 0.025,
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(12, "feet"),
  3227. weight: math.unit(3000, "lb"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/mech/back.svg",
  3231. bottom: 0.03,
  3232. }
  3233. }
  3234. },
  3235. [
  3236. {
  3237. name: "Normal",
  3238. height: math.unit(12, "feet")
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(300, "feet"),
  3243. default: true
  3244. },
  3245. {
  3246. name: "Macro+",
  3247. height: math.unit(1500, "feet")
  3248. },
  3249. ]
  3250. ))
  3251. characterMakers.push(() => makeCharacter(
  3252. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3253. {
  3254. front: {
  3255. height: math.unit(1.3, "meter"),
  3256. weight: math.unit(30, "kg"),
  3257. name: "Front",
  3258. image: {
  3259. source: "./media/characters/gregory/front.svg",
  3260. }
  3261. }
  3262. },
  3263. [
  3264. {
  3265. name: "Normal",
  3266. height: math.unit(1.3, "meter"),
  3267. default: true
  3268. },
  3269. {
  3270. name: "Macro",
  3271. height: math.unit(20, "meter")
  3272. }
  3273. ]
  3274. ))
  3275. characterMakers.push(() => makeCharacter(
  3276. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3277. {
  3278. front: {
  3279. height: math.unit(2.8, "meter"),
  3280. weight: math.unit(200, "kg"),
  3281. name: "Front",
  3282. image: {
  3283. source: "./media/characters/elory/front.svg",
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(2.8, "meter"),
  3291. default: true
  3292. },
  3293. {
  3294. name: "Macro",
  3295. height: math.unit(38, "meter")
  3296. }
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(470, "feet"),
  3304. weight: math.unit(924, "tons"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/angelpatamon/front.svg",
  3308. }
  3309. }
  3310. },
  3311. [
  3312. {
  3313. name: "Normal",
  3314. height: math.unit(470, "feet"),
  3315. default: true
  3316. },
  3317. {
  3318. name: "Deity Size I",
  3319. height: math.unit(28651.2, "km")
  3320. },
  3321. {
  3322. name: "Deity Size II",
  3323. height: math.unit(171907.2, "km")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3329. {
  3330. side: {
  3331. height: math.unit(7.2, "meter"),
  3332. weight: math.unit(8.2, "tons"),
  3333. name: "Side",
  3334. image: {
  3335. source: "./media/characters/cryae/side.svg",
  3336. extra: 3500 / 1500
  3337. }
  3338. }
  3339. },
  3340. [
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(7.2, "meter"),
  3344. default: true
  3345. }
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(175, "lb"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/xera/front.svg",
  3357. extra: 2300 / 2061
  3358. }
  3359. },
  3360. side: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(175, "lb"),
  3363. name: "Side",
  3364. image: {
  3365. source: "./media/characters/xera/side.svg",
  3366. extra: 2300 / 2061
  3367. }
  3368. },
  3369. back: {
  3370. height: math.unit(6, "feet"),
  3371. weight: math.unit(175, "lb"),
  3372. name: "Back",
  3373. image: {
  3374. source: "./media/characters/xera/back.svg"
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Small",
  3381. height: math.unit(10, "feet")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(500, "meters"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro+",
  3390. height: math.unit(10, "km")
  3391. },
  3392. {
  3393. name: "Gigamacro",
  3394. height: math.unit(25000, "km")
  3395. },
  3396. {
  3397. name: "Teramacro",
  3398. height: math.unit(3e6, "km")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(175, "lb"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/nebula/front.svg",
  3411. extra: 2600 / 2450
  3412. }
  3413. }
  3414. },
  3415. [
  3416. {
  3417. name: "Small",
  3418. height: math.unit(4.5, "meters")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(1500, "meters"),
  3423. default: true
  3424. },
  3425. {
  3426. name: "Megamacro",
  3427. height: math.unit(150, "km")
  3428. },
  3429. {
  3430. name: "Gigamacro",
  3431. height: math.unit(27000, "km")
  3432. }
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(225, "lb"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/abysgar/front.svg"
  3444. }
  3445. }
  3446. },
  3447. [
  3448. {
  3449. name: "Small",
  3450. height: math.unit(4.5, "meters")
  3451. },
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(1250, "meters"),
  3455. default: true
  3456. },
  3457. {
  3458. name: "Megamacro",
  3459. height: math.unit(125, "km")
  3460. },
  3461. {
  3462. name: "Gigamacro",
  3463. height: math.unit(26000, "km")
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(6, "feet"),
  3472. weight: math.unit(180, "lb"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/yakuz/front.svg"
  3476. }
  3477. }
  3478. },
  3479. [
  3480. {
  3481. name: "Small",
  3482. height: math.unit(5, "meters")
  3483. },
  3484. {
  3485. name: "Macro",
  3486. height: math.unit(1500, "meters"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(200, "km")
  3492. },
  3493. {
  3494. name: "Gigamacro",
  3495. height: math.unit(100000, "km")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(175, "lb"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/mirova/front.svg"
  3508. }
  3509. }
  3510. },
  3511. [
  3512. {
  3513. name: "Small",
  3514. height: math.unit(5, "meters")
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(900, "meters"),
  3519. default: true
  3520. },
  3521. {
  3522. name: "Megamacro",
  3523. height: math.unit(135, "km")
  3524. },
  3525. {
  3526. name: "Gigamacro",
  3527. height: math.unit(20000, "km")
  3528. }
  3529. ]
  3530. ))
  3531. characterMakers.push(() => makeCharacter(
  3532. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3533. {
  3534. side: {
  3535. height: math.unit(28.35, "feet"),
  3536. weight: math.unit(99.75, "tons"),
  3537. name: "Side",
  3538. image: {
  3539. source: "./media/characters/asana-mech/side.svg"
  3540. }
  3541. }
  3542. },
  3543. [
  3544. {
  3545. name: "Normal",
  3546. height: math.unit(28.35, "feet"),
  3547. default: true
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(2500, "feet")
  3552. },
  3553. {
  3554. name: "Megamacro",
  3555. height: math.unit(25, "miles")
  3556. },
  3557. {
  3558. name: "Examacro",
  3559. height: math.unit(6e8, "lightyears")
  3560. },
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3565. {
  3566. front: {
  3567. height: math.unit(2, "meters"),
  3568. weight: math.unit(70, "kg"),
  3569. name: "Front",
  3570. image: {
  3571. source: "./media/characters/ashtrek/front.svg",
  3572. extra: 560 / 524,
  3573. bottom: 0.01
  3574. }
  3575. },
  3576. frontArmor: {
  3577. height: math.unit(2, "meters"),
  3578. weight: math.unit(76, "kg"),
  3579. name: "Front (Armor)",
  3580. image: {
  3581. source: "./media/characters/ashtrek/front-armor.svg",
  3582. extra: 561 / 527,
  3583. bottom: 0.01
  3584. }
  3585. },
  3586. side: {
  3587. height: math.unit(2, "meters"),
  3588. weight: math.unit(70, "kg"),
  3589. name: "Side",
  3590. image: {
  3591. source: "./media/characters/ashtrek/side.svg",
  3592. extra: 1717 / 1609,
  3593. bottom: 0.005
  3594. }
  3595. },
  3596. back: {
  3597. height: math.unit(2, "meters"),
  3598. weight: math.unit(70, "kg"),
  3599. name: "Back",
  3600. image: {
  3601. source: "./media/characters/ashtrek/back.svg",
  3602. extra: 1570 / 1501
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "DEFCON 5",
  3609. height: math.unit(5, "meters")
  3610. },
  3611. {
  3612. name: "DEFCON 4",
  3613. height: math.unit(500, "meters"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "DEFCON 3",
  3618. height: math.unit(5, "km")
  3619. },
  3620. {
  3621. name: "DEFCON 2",
  3622. height: math.unit(500, "km")
  3623. },
  3624. {
  3625. name: "DEFCON 1",
  3626. height: math.unit(500000, "km")
  3627. },
  3628. {
  3629. name: "DEFCON 0",
  3630. height: math.unit(3, "gigaparsecs")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3636. {
  3637. front: {
  3638. height: math.unit(2, "meters"),
  3639. weight: math.unit(76, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/gale/front.svg"
  3643. }
  3644. },
  3645. frontAlt1: {
  3646. height: math.unit(2, "meters"),
  3647. weight: math.unit(76, "kg"),
  3648. name: "Front (Alt 1)",
  3649. image: {
  3650. source: "./media/characters/gale/front-alt-1.svg"
  3651. }
  3652. },
  3653. frontAlt2: {
  3654. height: math.unit(2, "meters"),
  3655. weight: math.unit(76, "kg"),
  3656. name: "Front (Alt 2)",
  3657. image: {
  3658. source: "./media/characters/gale/front-alt-2.svg"
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(7, "feet")
  3666. },
  3667. {
  3668. name: "Macro",
  3669. height: math.unit(150, "feet"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Macro+",
  3674. height: math.unit(300, "feet")
  3675. },
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(2, "meters"),
  3683. weight: math.unit(76, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/draylen/front.svg"
  3687. }
  3688. }
  3689. },
  3690. [
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(150, "feet"),
  3694. default: true
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(7 + 9 / 12, "feet"),
  3703. weight: math.unit(379, "lbs"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/chez/front.svg"
  3707. }
  3708. },
  3709. side: {
  3710. height: math.unit(7 + 9 / 12, "feet"),
  3711. weight: math.unit(379, "lbs"),
  3712. name: "Side",
  3713. image: {
  3714. source: "./media/characters/chez/side.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(7 + 9 / 12, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "God King",
  3726. height: math.unit(9750000, "meters")
  3727. }
  3728. ]
  3729. ))
  3730. characterMakers.push(() => makeCharacter(
  3731. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3732. {
  3733. front: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(275, "lbs"),
  3736. name: "Front",
  3737. image: {
  3738. source: "./media/characters/kaylum/front.svg",
  3739. bottom: 0.01,
  3740. extra: 1166 / 1031
  3741. }
  3742. },
  3743. frontWingless: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(275, "lbs"),
  3746. name: "Front (Wingless)",
  3747. image: {
  3748. source: "./media/characters/kaylum/front-wingless.svg",
  3749. bottom: 0.01,
  3750. extra: 1117 / 1031
  3751. }
  3752. }
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(3.05, "meters")
  3758. },
  3759. {
  3760. name: "Master",
  3761. height: math.unit(5.5, "meters")
  3762. },
  3763. {
  3764. name: "Rampage",
  3765. height: math.unit(19, "meters")
  3766. },
  3767. {
  3768. name: "Macro Lite",
  3769. height: math.unit(37, "meters")
  3770. },
  3771. {
  3772. name: "Hyper Predator",
  3773. height: math.unit(61, "meters")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(138, "meters"),
  3778. default: true
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(150, "lbs"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/geta/front.svg"
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Micro",
  3797. height: math.unit(3, "inches"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Normal",
  3802. height: math.unit(5 + 5 / 12, "feet")
  3803. }
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(300, "lbs"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/tyrnn/front.svg"
  3815. }
  3816. }
  3817. },
  3818. [
  3819. {
  3820. name: "Main Height",
  3821. height: math.unit(355, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Fave. Height",
  3826. height: math.unit(2400, "feet")
  3827. }
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(300, "lbs"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/appledectomy/front.svg"
  3839. }
  3840. }
  3841. },
  3842. [
  3843. {
  3844. name: "Macro",
  3845. height: math.unit(2500, "feet")
  3846. },
  3847. {
  3848. name: "Megamacro",
  3849. height: math.unit(50, "miles"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Gigamacro",
  3854. height: math.unit(5000, "miles")
  3855. },
  3856. {
  3857. name: "Teramacro",
  3858. height: math.unit(250000, "miles")
  3859. },
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(200, "lbs"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/vulpes/front.svg",
  3871. extra: 573 / 543,
  3872. bottom: 0.033
  3873. }
  3874. },
  3875. side: {
  3876. height: math.unit(6, "feet"),
  3877. weight: math.unit(200, "lbs"),
  3878. name: "Side",
  3879. image: {
  3880. source: "./media/characters/vulpes/side.svg",
  3881. extra: 573 / 543,
  3882. bottom: 0.01
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(200, "lbs"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/vulpes/back.svg",
  3891. extra: 573 / 543,
  3892. }
  3893. },
  3894. feet: {
  3895. height: math.unit(1.276, "feet"),
  3896. name: "Feet",
  3897. image: {
  3898. source: "./media/characters/vulpes/feet.svg"
  3899. }
  3900. },
  3901. maw: {
  3902. height: math.unit(1.18, "feet"),
  3903. name: "Maw",
  3904. image: {
  3905. source: "./media/characters/vulpes/maw.svg"
  3906. }
  3907. },
  3908. },
  3909. [
  3910. {
  3911. name: "Micro",
  3912. height: math.unit(2, "inches")
  3913. },
  3914. {
  3915. name: "Normal",
  3916. height: math.unit(6.3, "feet")
  3917. },
  3918. {
  3919. name: "Macro",
  3920. height: math.unit(850, "feet")
  3921. },
  3922. {
  3923. name: "Megamacro",
  3924. height: math.unit(7500, "feet"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "Gigamacro",
  3929. height: math.unit(570000, "miles")
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3935. {
  3936. front: {
  3937. height: math.unit(6, "feet"),
  3938. weight: math.unit(210, "lbs"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/rain-fallen/front.svg"
  3942. }
  3943. },
  3944. side: {
  3945. height: math.unit(6, "feet"),
  3946. weight: math.unit(210, "lbs"),
  3947. name: "Side",
  3948. image: {
  3949. source: "./media/characters/rain-fallen/side.svg"
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(6, "feet"),
  3954. weight: math.unit(210, "lbs"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/rain-fallen/back.svg"
  3958. }
  3959. },
  3960. feral: {
  3961. height: math.unit(9, "feet"),
  3962. weight: math.unit(700, "lbs"),
  3963. name: "Feral",
  3964. image: {
  3965. source: "./media/characters/rain-fallen/feral.svg"
  3966. }
  3967. },
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(5, "meter")
  3973. },
  3974. {
  3975. name: "Macro",
  3976. height: math.unit(150, "meter"),
  3977. default: true
  3978. },
  3979. {
  3980. name: "Megamacro",
  3981. height: math.unit(278e6, "meter")
  3982. },
  3983. {
  3984. name: "Gigamacro",
  3985. height: math.unit(2e9, "meter")
  3986. },
  3987. {
  3988. name: "Teramacro",
  3989. height: math.unit(8e12, "meter")
  3990. },
  3991. {
  3992. name: "Devourer",
  3993. height: math.unit(14, "zettameters")
  3994. },
  3995. {
  3996. name: "Scarlet King",
  3997. height: math.unit(18, "yottameters")
  3998. },
  3999. {
  4000. name: "Void",
  4001. height: math.unit(6.66e66, "yottameters")
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4007. {
  4008. standing: {
  4009. height: math.unit(6, "feet"),
  4010. weight: math.unit(180, "lbs"),
  4011. name: "Standing",
  4012. image: {
  4013. source: "./media/characters/zaakira/standing.svg"
  4014. }
  4015. },
  4016. laying: {
  4017. height: math.unit(3, "feet"),
  4018. weight: math.unit(180, "lbs"),
  4019. name: "Laying",
  4020. image: {
  4021. source: "./media/characters/zaakira/laying.svg"
  4022. }
  4023. },
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(12, "feet")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(279, "feet"),
  4033. default: true
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(250, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/sigvald/front.svg",
  4046. extra: 1000 / 850
  4047. }
  4048. },
  4049. back: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(250, "lbs"),
  4052. name: "Back",
  4053. image: {
  4054. source: "./media/characters/sigvald/back.svg"
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(8, "feet")
  4062. },
  4063. {
  4064. name: "Large",
  4065. height: math.unit(12, "feet")
  4066. },
  4067. {
  4068. name: "Larger",
  4069. height: math.unit(20, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(150, "feet")
  4074. },
  4075. {
  4076. name: "Macro+",
  4077. height: math.unit(200, "feet"),
  4078. default: true
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4084. {
  4085. side: {
  4086. height: math.unit(12, "feet"),
  4087. weight: math.unit(2000, "kg"),
  4088. name: "Side",
  4089. image: {
  4090. source: "./media/characters/scott/side.svg",
  4091. extra: 754/724,
  4092. bottom: 0.069
  4093. }
  4094. },
  4095. upright: {
  4096. height: math.unit(12, "feet"),
  4097. weight: math.unit(2000, "kg"),
  4098. name: "Upright",
  4099. image: {
  4100. source: "./media/characters/scott/upright.svg",
  4101. extra: 3881/3722,
  4102. bottom: 0.05
  4103. }
  4104. },
  4105. },
  4106. [
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(12, "feet"),
  4110. default: true
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4116. {
  4117. side: {
  4118. height: math.unit(8, "meters"),
  4119. weight: math.unit(84755, "lbs"),
  4120. name: "Side",
  4121. image: {
  4122. source: "./media/characters/tobias/side.svg",
  4123. extra: 1474 / 1096,
  4124. bottom: 38.9 / 1513.1235
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Normal",
  4131. height: math.unit(8, "meters"),
  4132. default: true
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4138. {
  4139. front: {
  4140. height: math.unit(5.5, "feet"),
  4141. weight: math.unit(400, "lbs"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/kieran/front.svg",
  4145. extra: 2694/2364,
  4146. bottom: 217/2908
  4147. }
  4148. },
  4149. side: {
  4150. height: math.unit(5.5, "feet"),
  4151. weight: math.unit(400, "lbs"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/kieran/side.svg",
  4155. extra: 875/777,
  4156. bottom: 84.6/959
  4157. }
  4158. },
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(5.5, "feet"),
  4164. default: true
  4165. },
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4170. {
  4171. side: {
  4172. height: math.unit(2, "meters"),
  4173. weight: math.unit(70, "kg"),
  4174. name: "Side",
  4175. image: {
  4176. source: "./media/characters/sanya/side.svg",
  4177. bottom: 0.02,
  4178. extra: 1.02
  4179. }
  4180. },
  4181. },
  4182. [
  4183. {
  4184. name: "Small",
  4185. height: math.unit(2, "meters")
  4186. },
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(3, "meters")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(16, "meters"),
  4194. default: true
  4195. },
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4200. {
  4201. side: {
  4202. height: math.unit(2, "meters"),
  4203. weight: math.unit(120, "kg"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/miranda/front.svg",
  4207. extra: 10.6 / 10
  4208. }
  4209. },
  4210. },
  4211. [
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(10, "feet"),
  4215. default: true
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "James", species: ["deer"], tags: ["anthro"] },
  4221. {
  4222. side: {
  4223. height: math.unit(2, "meters"),
  4224. weight: math.unit(100, "kg"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/james/front.svg",
  4228. extra: 10 / 8.5
  4229. }
  4230. },
  4231. },
  4232. [
  4233. {
  4234. name: "Normal",
  4235. height: math.unit(8.5, "feet"),
  4236. default: true
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4242. {
  4243. side: {
  4244. height: math.unit(9.5, "feet"),
  4245. weight: math.unit(2500, "lbs"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/heather/side.svg"
  4249. }
  4250. },
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(9.5, "feet"),
  4256. default: true
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4262. {
  4263. side: {
  4264. height: math.unit(6.5, "feet"),
  4265. weight: math.unit(400, "lbs"),
  4266. name: "Side",
  4267. image: {
  4268. source: "./media/characters/lukas/side.svg",
  4269. extra: 7.25 / 6.5
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(6.5, "feet"),
  4277. default: true
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4283. {
  4284. side: {
  4285. height: math.unit(5, "feet"),
  4286. weight: math.unit(3000, "lbs"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/louise/side.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(5, "feet"),
  4297. default: true
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4303. {
  4304. side: {
  4305. height: math.unit(6, "feet"),
  4306. weight: math.unit(150, "lbs"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/ramona/side.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(5.3, "meters"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro",
  4321. height: math.unit(20, "stories")
  4322. },
  4323. {
  4324. name: "Macro+",
  4325. height: math.unit(50, "stories")
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4331. {
  4332. standing: {
  4333. height: math.unit(5.75, "feet"),
  4334. weight: math.unit(160, "lbs"),
  4335. name: "Standing",
  4336. image: {
  4337. source: "./media/characters/deerpuff/standing.svg",
  4338. extra: 682 / 624
  4339. }
  4340. },
  4341. sitting: {
  4342. height: math.unit(5.75 / 1.79, "feet"),
  4343. weight: math.unit(160, "lbs"),
  4344. name: "Sitting",
  4345. image: {
  4346. source: "./media/characters/deerpuff/sitting.svg",
  4347. bottom: 44 / 400,
  4348. extra: 1
  4349. }
  4350. },
  4351. taurLaying: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(400, "lbs"),
  4354. name: "Taur (Laying)",
  4355. image: {
  4356. source: "./media/characters/deerpuff/taur-laying.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Puffball",
  4363. height: math.unit(6, "inches")
  4364. },
  4365. {
  4366. name: "Normalpuff",
  4367. height: math.unit(5.75, "feet")
  4368. },
  4369. {
  4370. name: "Macropuff",
  4371. height: math.unit(1500, "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Megapuff",
  4376. height: math.unit(500, "miles")
  4377. },
  4378. {
  4379. name: "Gigapuff",
  4380. height: math.unit(250000, "miles")
  4381. },
  4382. {
  4383. name: "Omegapuff",
  4384. height: math.unit(1000, "lightyears")
  4385. },
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4390. {
  4391. stomping: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(170, "lbs"),
  4394. name: "Stomping",
  4395. image: {
  4396. source: "./media/characters/vivian/stomping.svg"
  4397. }
  4398. },
  4399. sitting: {
  4400. height: math.unit(6 / 1.75, "feet"),
  4401. weight: math.unit(170, "lbs"),
  4402. name: "Sitting",
  4403. image: {
  4404. source: "./media/characters/vivian/sitting.svg",
  4405. bottom: 1 / 6.4,
  4406. extra: 1,
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(7, "feet"),
  4414. default: true
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(10, "stories")
  4419. },
  4420. {
  4421. name: "Macro+",
  4422. height: math.unit(30, "stories")
  4423. },
  4424. {
  4425. name: "Megamacro",
  4426. height: math.unit(10, "miles")
  4427. },
  4428. {
  4429. name: "Megamacro+",
  4430. height: math.unit(2750000, "meters")
  4431. },
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(6, "feet"),
  4439. weight: math.unit(160, "lbs"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/prince/front.svg",
  4443. extra: 3400 / 3000
  4444. }
  4445. },
  4446. jumping: {
  4447. height: math.unit(6, "feet"),
  4448. weight: math.unit(160, "lbs"),
  4449. name: "Jumping",
  4450. image: {
  4451. source: "./media/characters/prince/jump.svg",
  4452. extra: 2555 / 2134
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(7.75, "feet"),
  4460. default: true
  4461. },
  4462. {
  4463. name: "Not cute",
  4464. height: math.unit(17, "feet")
  4465. },
  4466. {
  4467. name: "I said NOT",
  4468. height: math.unit(91, "feet")
  4469. },
  4470. {
  4471. name: "Please stop",
  4472. height: math.unit(560, "feet")
  4473. },
  4474. {
  4475. name: "What have you done",
  4476. height: math.unit(2200, "feet")
  4477. },
  4478. {
  4479. name: "Deer God",
  4480. height: math.unit(3.6, "miles")
  4481. },
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4486. {
  4487. standing: {
  4488. height: math.unit(6, "feet"),
  4489. weight: math.unit(300, "lbs"),
  4490. name: "Standing",
  4491. image: {
  4492. source: "./media/characters/psymon/standing.svg",
  4493. extra: 1888 / 1810,
  4494. bottom: 0.05
  4495. }
  4496. },
  4497. slithering: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(300, "lbs"),
  4500. name: "Slithering",
  4501. image: {
  4502. source: "./media/characters/psymon/slithering.svg",
  4503. extra: 1330 / 1224
  4504. }
  4505. },
  4506. slitheringAlt: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(300, "lbs"),
  4509. name: "Slithering (Alt)",
  4510. image: {
  4511. source: "./media/characters/psymon/slithering-alt.svg",
  4512. extra: 1330 / 1224
  4513. }
  4514. },
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(11.25, "feet"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Large",
  4524. height: math.unit(27, "feet")
  4525. },
  4526. {
  4527. name: "Giant",
  4528. height: math.unit(87, "feet")
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(365, "feet")
  4533. },
  4534. {
  4535. name: "Megamacro",
  4536. height: math.unit(3, "miles")
  4537. },
  4538. {
  4539. name: "World Serpent",
  4540. height: math.unit(8000, "miles")
  4541. },
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4546. {
  4547. front: {
  4548. height: math.unit(6, "feet"),
  4549. weight: math.unit(180, "lbs"),
  4550. name: "Front",
  4551. image: {
  4552. source: "./media/characters/daimos/front.svg",
  4553. extra: 4160 / 3897,
  4554. bottom: 0.021
  4555. }
  4556. }
  4557. },
  4558. [
  4559. {
  4560. name: "Normal",
  4561. height: math.unit(8, "feet"),
  4562. default: true
  4563. },
  4564. {
  4565. name: "Big Dog",
  4566. height: math.unit(22, "feet")
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(127, "feet")
  4571. },
  4572. {
  4573. name: "Megamacro",
  4574. height: math.unit(3600, "feet")
  4575. },
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4580. {
  4581. side: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(180, "lbs"),
  4584. name: "Side",
  4585. image: {
  4586. source: "./media/characters/blake/side.svg",
  4587. extra: 1212 / 1120,
  4588. bottom: 0.05
  4589. }
  4590. },
  4591. crouched: {
  4592. height: math.unit(6 * 0.57, "feet"),
  4593. weight: math.unit(180, "lbs"),
  4594. name: "Crouched",
  4595. image: {
  4596. source: "./media/characters/blake/crouched.svg",
  4597. extra: 840 / 587,
  4598. bottom: 0.04
  4599. }
  4600. },
  4601. bent: {
  4602. height: math.unit(6 * 0.75, "feet"),
  4603. weight: math.unit(180, "lbs"),
  4604. name: "Bent",
  4605. image: {
  4606. source: "./media/characters/blake/bent.svg",
  4607. extra: 592 / 544,
  4608. bottom: 0.035
  4609. }
  4610. },
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(8 + 1 / 6, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Big Backside",
  4620. height: math.unit(37, "feet")
  4621. },
  4622. {
  4623. name: "Subway Shredder",
  4624. height: math.unit(72, "feet")
  4625. },
  4626. {
  4627. name: "City Carver",
  4628. height: math.unit(1675, "feet")
  4629. },
  4630. {
  4631. name: "Tectonic Tweaker",
  4632. height: math.unit(2300, "miles")
  4633. },
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(180, "lbs"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/guisetto/front.svg",
  4645. extra: 856 / 817,
  4646. bottom: 0.06
  4647. }
  4648. },
  4649. airborne: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(180, "lbs"),
  4652. name: "Airborne",
  4653. image: {
  4654. source: "./media/characters/guisetto/airborne.svg",
  4655. extra: 584 / 525
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Normal",
  4662. height: math.unit(10 + 11 / 12, "feet"),
  4663. default: true
  4664. },
  4665. {
  4666. name: "Large",
  4667. height: math.unit(35, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(475, "feet")
  4672. },
  4673. ]
  4674. ))
  4675. characterMakers.push(() => makeCharacter(
  4676. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4677. {
  4678. front: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(180, "lbs"),
  4681. name: "Front",
  4682. image: {
  4683. source: "./media/characters/luxor/front.svg",
  4684. extra: 2940 / 2152
  4685. }
  4686. },
  4687. back: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(180, "lbs"),
  4690. name: "Back",
  4691. image: {
  4692. source: "./media/characters/luxor/back.svg",
  4693. extra: 1083 / 960
  4694. }
  4695. },
  4696. },
  4697. [
  4698. {
  4699. name: "Normal",
  4700. height: math.unit(5 + 5 / 6, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Lamp",
  4705. height: math.unit(50, "feet")
  4706. },
  4707. {
  4708. name: "Lämp",
  4709. height: math.unit(300, "feet")
  4710. },
  4711. {
  4712. name: "The sun is a lamp",
  4713. height: math.unit(250000, "miles")
  4714. },
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4719. {
  4720. front: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(50, "lbs"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/huoyan/front.svg"
  4726. }
  4727. },
  4728. side: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(180, "lbs"),
  4731. name: "Side",
  4732. image: {
  4733. source: "./media/characters/huoyan/side.svg"
  4734. }
  4735. },
  4736. },
  4737. [
  4738. {
  4739. name: "Chef",
  4740. height: math.unit(9, "feet")
  4741. },
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(65, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Macro",
  4749. height: math.unit(780, "feet")
  4750. },
  4751. {
  4752. name: "Flaming Mountain",
  4753. height: math.unit(4.8, "miles")
  4754. },
  4755. {
  4756. name: "Celestial",
  4757. height: math.unit(765000, "miles")
  4758. },
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(5 + 3 / 4, "feet"),
  4766. weight: math.unit(120, "lbs"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/tails/front.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(5 + 3 / 4, "feet"),
  4777. default: true
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(4, "feet"),
  4786. weight: math.unit(50, "lbs"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/rainy/front.svg"
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Macro",
  4796. height: math.unit(800, "feet"),
  4797. default: true
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(150, "lbs"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/rainier/front.svg"
  4810. }
  4811. }
  4812. },
  4813. [
  4814. {
  4815. name: "Micro",
  4816. height: math.unit(2, "mm"),
  4817. default: true
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4823. {
  4824. front: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(180, "lbs"),
  4827. name: "Front",
  4828. image: {
  4829. source: "./media/characters/andy/front.svg"
  4830. }
  4831. }
  4832. },
  4833. [
  4834. {
  4835. name: "Normal",
  4836. height: math.unit(8, "feet"),
  4837. default: true
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(1000, "feet")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(5, "miles")
  4846. },
  4847. {
  4848. name: "Gigamacro",
  4849. height: math.unit(5000, "miles")
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4855. {
  4856. front: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(210, "lbs"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/cimmaron/front-sfw.svg",
  4862. extra: 701 / 676,
  4863. bottom: 0.046
  4864. }
  4865. },
  4866. back: {
  4867. height: math.unit(6, "feet"),
  4868. weight: math.unit(210, "lbs"),
  4869. name: "Back",
  4870. image: {
  4871. source: "./media/characters/cimmaron/back-sfw.svg",
  4872. extra: 701 / 676,
  4873. bottom: 0.046
  4874. }
  4875. },
  4876. frontNsfw: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(210, "lbs"),
  4879. name: "Front (NSFW)",
  4880. image: {
  4881. source: "./media/characters/cimmaron/front-nsfw.svg",
  4882. extra: 701 / 676,
  4883. bottom: 0.046
  4884. }
  4885. },
  4886. backNsfw: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(210, "lbs"),
  4889. name: "Back (NSFW)",
  4890. image: {
  4891. source: "./media/characters/cimmaron/back-nsfw.svg",
  4892. extra: 701 / 676,
  4893. bottom: 0.046
  4894. }
  4895. },
  4896. dick: {
  4897. height: math.unit(1.714, "feet"),
  4898. name: "Dick",
  4899. image: {
  4900. source: "./media/characters/cimmaron/dick.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(6, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro Mayor",
  4912. height: math.unit(350, "meters")
  4913. },
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(200, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/akari/front.svg",
  4925. extra: 962 / 901,
  4926. bottom: 0.04
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Micro",
  4933. height: math.unit(5, "inches"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(7, "feet")
  4939. },
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(140, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/cynosura/front.svg",
  4951. extra: 896 / 847
  4952. }
  4953. },
  4954. back: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(140, "lbs"),
  4957. name: "Back",
  4958. image: {
  4959. source: "./media/characters/cynosura/back.svg",
  4960. extra: 1365 / 1250
  4961. }
  4962. },
  4963. },
  4964. [
  4965. {
  4966. name: "Micro",
  4967. height: math.unit(4, "inches")
  4968. },
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(5.75, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Tall",
  4976. height: math.unit(10, "feet")
  4977. },
  4978. {
  4979. name: "Big",
  4980. height: math.unit(20, "feet")
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(50, "feet")
  4985. },
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4990. {
  4991. front: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(170, "lbs"),
  4994. name: "Front",
  4995. image: {
  4996. source: "./media/characters/gin/front.svg",
  4997. extra: 1.053,
  4998. bottom: 0.025
  4999. }
  5000. },
  5001. foot: {
  5002. height: math.unit(6 / 4.25, "feet"),
  5003. name: "Foot",
  5004. image: {
  5005. source: "./media/characters/gin/foot.svg"
  5006. }
  5007. },
  5008. sole: {
  5009. height: math.unit(6 / 4.40, "feet"),
  5010. name: "Sole",
  5011. image: {
  5012. source: "./media/characters/gin/sole.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(13 + 2/12, "feet")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(1500, "feet")
  5024. },
  5025. {
  5026. name: "Megamacro",
  5027. height: math.unit(200, "miles"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Gigamacro",
  5032. height: math.unit(500, "megameters")
  5033. },
  5034. {
  5035. name: "Teramacro",
  5036. height: math.unit(15, "lightyears")
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6 + 1 / 6, "feet"),
  5045. weight: math.unit(178, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/guy/front.svg"
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(6 + 1 / 6, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Large",
  5060. height: math.unit(25 + 7 / 12, "feet")
  5061. },
  5062. {
  5063. name: "Macro",
  5064. height: math.unit(60 + 9 / 12, "feet")
  5065. },
  5066. {
  5067. name: "Macro+",
  5068. height: math.unit(246, "feet")
  5069. },
  5070. {
  5071. name: "Macro++",
  5072. height: math.unit(878, "feet")
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(9, "feet"),
  5081. weight: math.unit(800, "lbs"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/tiberius/front.svg",
  5085. extra: 2295 / 2071
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(9, "feet"),
  5090. weight: math.unit(800, "lbs"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/tiberius/back.svg",
  5094. extra: 2373 / 2160
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(9, "feet"),
  5102. default: true
  5103. }
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5108. {
  5109. front: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(600, "lbs"),
  5112. name: "Front",
  5113. image: {
  5114. source: "./media/characters/surgo/front.svg",
  5115. extra: 3591 / 2227
  5116. }
  5117. },
  5118. back: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(600, "lbs"),
  5121. name: "Back",
  5122. image: {
  5123. source: "./media/characters/surgo/back.svg",
  5124. extra: 3557 / 2228
  5125. }
  5126. },
  5127. laying: {
  5128. height: math.unit(6 * 0.85, "feet"),
  5129. weight: math.unit(600, "lbs"),
  5130. name: "Laying",
  5131. image: {
  5132. source: "./media/characters/surgo/laying.svg"
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(6, "feet"),
  5140. default: true
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5146. {
  5147. side: {
  5148. height: math.unit(6, "feet"),
  5149. weight: math.unit(150, "lbs"),
  5150. name: "Side",
  5151. image: {
  5152. source: "./media/characters/cibus/side.svg",
  5153. extra: 800 / 400
  5154. }
  5155. },
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(6, "feet"),
  5161. default: true
  5162. }
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5167. {
  5168. front: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(240, "lbs"),
  5171. name: "Front",
  5172. image: {
  5173. source: "./media/characters/nibbles/front.svg"
  5174. }
  5175. },
  5176. side: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(240, "lbs"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/nibbles/side.svg"
  5182. }
  5183. },
  5184. },
  5185. [
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(9, "feet"),
  5189. default: true
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5195. {
  5196. side: {
  5197. height: math.unit(5 + 1 / 6, "feet"),
  5198. weight: math.unit(130, "lbs"),
  5199. name: "Side",
  5200. image: {
  5201. source: "./media/characters/rikky/side.svg"
  5202. }
  5203. },
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(5 + 1 / 6, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(152, "feet"),
  5213. default: true
  5214. },
  5215. {
  5216. name: "Megamacro",
  5217. height: math.unit(7, "miles")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5223. {
  5224. side: {
  5225. height: math.unit(370, "cm"),
  5226. weight: math.unit(350, "lbs"),
  5227. name: "Side",
  5228. image: {
  5229. source: "./media/characters/malfressa/side.svg"
  5230. }
  5231. },
  5232. walking: {
  5233. height: math.unit(370, "cm"),
  5234. weight: math.unit(350, "lbs"),
  5235. name: "Walking",
  5236. image: {
  5237. source: "./media/characters/malfressa/walking.svg"
  5238. }
  5239. },
  5240. feral: {
  5241. height: math.unit(2500, "cm"),
  5242. weight: math.unit(100000, "lbs"),
  5243. name: "Feral",
  5244. image: {
  5245. source: "./media/characters/malfressa/feral.svg",
  5246. extra: 2108 / 837,
  5247. bottom: 0.02
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(370, "cm")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(300, "meters"),
  5259. default: true
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(60, "kg"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/jaro/front.svg"
  5272. }
  5273. },
  5274. back: {
  5275. height: math.unit(6, "feet"),
  5276. weight: math.unit(60, "kg"),
  5277. name: "Back",
  5278. image: {
  5279. source: "./media/characters/jaro/back.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(7, "inches")
  5287. },
  5288. {
  5289. name: "Normal",
  5290. height: math.unit(5.5, "feet"),
  5291. default: true
  5292. },
  5293. {
  5294. name: "Minimacro",
  5295. height: math.unit(20, "feet")
  5296. },
  5297. {
  5298. name: "Macro",
  5299. height: math.unit(200, "meters")
  5300. }
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(195, "lb"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/rogue/front.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(90, "feet"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(5 + 8 / 12, "feet"),
  5328. weight: math.unit(140, "lb"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/piper/front.svg",
  5332. extra: 3928 / 3681
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Micro",
  5339. height: math.unit(2, "inches")
  5340. },
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(5 + 8 / 12, "feet")
  5344. },
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(250, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(7, "miles")
  5353. },
  5354. ]
  5355. ))
  5356. characterMakers.push(() => makeCharacter(
  5357. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5358. {
  5359. front: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(220, "lb"),
  5362. name: "Front",
  5363. image: {
  5364. source: "./media/characters/gemini/front.svg"
  5365. }
  5366. },
  5367. back: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(220, "lb"),
  5370. name: "Back",
  5371. image: {
  5372. source: "./media/characters/gemini/back.svg"
  5373. }
  5374. },
  5375. kneeling: {
  5376. height: math.unit(6 / 1.5, "feet"),
  5377. weight: math.unit(220, "lb"),
  5378. name: "Kneeling",
  5379. image: {
  5380. source: "./media/characters/gemini/kneeling.svg",
  5381. bottom: 0.02
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(300, "meters"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Megamacro",
  5393. height: math.unit(6900, "meters")
  5394. },
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5399. {
  5400. anthro: {
  5401. height: math.unit(2.35, "meters"),
  5402. weight: math.unit(73, "kg"),
  5403. name: "Anthro",
  5404. image: {
  5405. source: "./media/characters/alicia/anthro.svg",
  5406. extra: 2571/2385,
  5407. bottom: 75/2648
  5408. }
  5409. },
  5410. paw: {
  5411. height: math.unit(1.32, "feet"),
  5412. name: "Paw",
  5413. image: {
  5414. source: "./media/characters/alicia/paw.svg"
  5415. }
  5416. },
  5417. feral: {
  5418. height: math.unit(1.69, "meters"),
  5419. weight: math.unit(73, "kg"),
  5420. name: "Feral",
  5421. image: {
  5422. source: "./media/characters/alicia/feral.svg",
  5423. extra: 2123/1715,
  5424. bottom: 222/2349
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(2.35, "meters")
  5432. },
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(60, "meters"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(10000, "kilometers")
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(7, "feet"),
  5449. weight: math.unit(250, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/archy/front.svg"
  5453. }
  5454. }
  5455. },
  5456. [
  5457. {
  5458. name: "Micro",
  5459. height: math.unit(1, "inch")
  5460. },
  5461. {
  5462. name: "Shorty",
  5463. height: math.unit(5, "feet")
  5464. },
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(7, "feet")
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(600, "meters"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(1, "mile")
  5477. },
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5482. {
  5483. front: {
  5484. height: math.unit(1.65, "meters"),
  5485. weight: math.unit(74, "kg"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/berri/front.svg",
  5489. extra: 857/837,
  5490. bottom: 18/877
  5491. }
  5492. },
  5493. bum: {
  5494. height: math.unit(1.46, "feet"),
  5495. name: "Bum",
  5496. image: {
  5497. source: "./media/characters/berri/bum.svg"
  5498. }
  5499. },
  5500. mouth: {
  5501. height: math.unit(0.44, "feet"),
  5502. name: "Mouth",
  5503. image: {
  5504. source: "./media/characters/berri/mouth.svg"
  5505. }
  5506. },
  5507. paw: {
  5508. height: math.unit(0.826, "feet"),
  5509. name: "Paw",
  5510. image: {
  5511. source: "./media/characters/berri/paw.svg"
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(1.65, "meters")
  5519. },
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(60, "m"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Megamacro",
  5527. height: math.unit(9.213, "km")
  5528. },
  5529. {
  5530. name: "Planet Eater",
  5531. height: math.unit(489, "megameters")
  5532. },
  5533. {
  5534. name: "Teramacro",
  5535. height: math.unit(2471635000000, "meters")
  5536. },
  5537. {
  5538. name: "Examacro",
  5539. height: math.unit(8.0624e+26, "meters")
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(1.72, "meters"),
  5548. weight: math.unit(68, "kg"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/lexi/front.svg"
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Very Smol",
  5558. height: math.unit(10, "mm")
  5559. },
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(6.8, "cm"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(1.72, "m")
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(1.69, "meters"),
  5576. weight: math.unit(68, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/martin/front.svg",
  5580. extra: 596 / 581
  5581. }
  5582. }
  5583. },
  5584. [
  5585. {
  5586. name: "Micro",
  5587. height: math.unit(6.85, "cm"),
  5588. default: true
  5589. },
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(1.69, "m")
  5593. }
  5594. ]
  5595. ))
  5596. characterMakers.push(() => makeCharacter(
  5597. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5598. {
  5599. front: {
  5600. height: math.unit(1.69, "meters"),
  5601. weight: math.unit(68, "kg"),
  5602. name: "Front",
  5603. image: {
  5604. source: "./media/characters/juno/front.svg"
  5605. }
  5606. }
  5607. },
  5608. [
  5609. {
  5610. name: "Micro",
  5611. height: math.unit(7, "cm")
  5612. },
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(1.89, "m")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(353, "meters"),
  5620. default: true
  5621. }
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5626. {
  5627. front: {
  5628. height: math.unit(1.93, "meters"),
  5629. weight: math.unit(83, "kg"),
  5630. name: "Front",
  5631. image: {
  5632. source: "./media/characters/samantha/front.svg"
  5633. }
  5634. },
  5635. frontClothed: {
  5636. height: math.unit(1.93, "meters"),
  5637. weight: math.unit(83, "kg"),
  5638. name: "Front (Clothed)",
  5639. image: {
  5640. source: "./media/characters/samantha/front-clothed.svg"
  5641. }
  5642. },
  5643. back: {
  5644. height: math.unit(1.93, "meters"),
  5645. weight: math.unit(83, "kg"),
  5646. name: "Back",
  5647. image: {
  5648. source: "./media/characters/samantha/back.svg"
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(1.93, "m")
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(74, "meters"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Macro+",
  5664. height: math.unit(223, "meters"),
  5665. },
  5666. {
  5667. name: "Megamacro",
  5668. height: math.unit(8381, "meters"),
  5669. },
  5670. {
  5671. name: "Megamacro+",
  5672. height: math.unit(12000, "kilometers")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(1.92, "meters"),
  5681. weight: math.unit(80, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/dr-clay/front.svg"
  5685. }
  5686. },
  5687. frontClothed: {
  5688. height: math.unit(1.92, "meters"),
  5689. weight: math.unit(80, "kg"),
  5690. name: "Front (Clothed)",
  5691. image: {
  5692. source: "./media/characters/dr-clay/front-clothed.svg"
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(1.92, "m")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(214, "meters"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro+",
  5708. height: math.unit(12.237, "meters"),
  5709. },
  5710. {
  5711. name: "Megamacro",
  5712. height: math.unit(557, "megameters"),
  5713. },
  5714. {
  5715. name: "Unimaginable",
  5716. height: math.unit(120e9, "lightyears")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(2, "meters"),
  5725. weight: math.unit(80, "kg"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Teramacro",
  5735. height: math.unit(500000, "lightyears"),
  5736. default: true
  5737. },
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(2, "meters"),
  5745. weight: math.unit(150, "kg"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/vemus/front.svg",
  5749. extra: 2384 / 2084,
  5750. bottom: 0.0123
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(3.75, "meters"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Big",
  5762. height: math.unit(8, "meters")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(100, "meters")
  5767. },
  5768. {
  5769. name: "Macro+",
  5770. height: math.unit(1500, "meters")
  5771. },
  5772. {
  5773. name: "Stellar",
  5774. height: math.unit(14e8, "meters")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(2, "meters"),
  5783. weight: math.unit(70, "kg"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/beherit/front.svg",
  5787. extra: 1408 / 1242
  5788. }
  5789. }
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(6, "feet")
  5795. },
  5796. {
  5797. name: "Lorg",
  5798. height: math.unit(25, "feet"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Lorger",
  5803. height: math.unit(75, "feet")
  5804. },
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(200, "meters")
  5808. },
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5813. {
  5814. front: {
  5815. height: math.unit(2, "meters"),
  5816. weight: math.unit(150, "kg"),
  5817. name: "Front",
  5818. image: {
  5819. source: "./media/characters/everett/front.svg",
  5820. extra: 2038 / 1737,
  5821. bottom: 0.03
  5822. }
  5823. },
  5824. paw: {
  5825. height: math.unit(2 / 3.6, "meters"),
  5826. name: "Paw",
  5827. image: {
  5828. source: "./media/characters/everett/paw.svg"
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(15, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Lorg",
  5840. height: math.unit(70, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Lorger",
  5845. height: math.unit(250, "feet")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(500, "meters")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(2, "meters"),
  5858. weight: math.unit(86, "kg"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/rose-lion/front.svg"
  5862. }
  5863. },
  5864. bent: {
  5865. height: math.unit(2 / 1.4288, "meters"),
  5866. weight: math.unit(86, "kg"),
  5867. name: "Bent",
  5868. image: {
  5869. source: "./media/characters/rose-lion/bent.svg"
  5870. }
  5871. }
  5872. },
  5873. [
  5874. {
  5875. name: "Mini-Micro",
  5876. height: math.unit(1, "cm")
  5877. },
  5878. {
  5879. name: "Micro",
  5880. height: math.unit(3.5, "inches"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(6 + 1 / 6, "feet")
  5886. },
  5887. {
  5888. name: "Mini-Macro",
  5889. height: math.unit(9 + 10 / 12, "feet")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(2, "meters"),
  5898. weight: math.unit(350, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/regal/front.svg"
  5902. }
  5903. },
  5904. back: {
  5905. height: math.unit(2, "meters"),
  5906. weight: math.unit(350, "lbs"),
  5907. name: "Back",
  5908. image: {
  5909. source: "./media/characters/regal/back.svg"
  5910. }
  5911. },
  5912. },
  5913. [
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(350, "feet"),
  5917. default: true
  5918. }
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5923. {
  5924. front: {
  5925. height: math.unit(4 + 11 / 12, "feet"),
  5926. weight: math.unit(100, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/opal/front.svg"
  5930. }
  5931. },
  5932. frontAlt: {
  5933. height: math.unit(4 + 11 / 12, "feet"),
  5934. weight: math.unit(100, "lbs"),
  5935. name: "Front (Alt)",
  5936. image: {
  5937. source: "./media/characters/opal/front-alt.svg"
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Small",
  5944. height: math.unit(4 + 11 / 12, "feet")
  5945. },
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(20, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Macro",
  5953. height: math.unit(120, "feet")
  5954. },
  5955. {
  5956. name: "Megamacro",
  5957. height: math.unit(80, "miles")
  5958. },
  5959. {
  5960. name: "True Size",
  5961. height: math.unit(100000, "lightyears")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5967. {
  5968. front: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(200, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/vector-wuff/front.svg"
  5974. }
  5975. }
  5976. },
  5977. [
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(2.8, "meters")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(450, "meters"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Megamacro",
  5989. height: math.unit(15, "kilometers")
  5990. }
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(256, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/dannik/front.svg"
  6002. }
  6003. }
  6004. },
  6005. [
  6006. {
  6007. name: "Macro",
  6008. height: math.unit(69.57, "meters"),
  6009. default: true
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(120, "lbs"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/azura-saharah/front.svg"
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(120, "lbs"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/azura-saharah/back.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Macro",
  6036. height: math.unit(100, "feet"),
  6037. default: true
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6043. {
  6044. side: {
  6045. height: math.unit(5 + 4 / 12, "feet"),
  6046. weight: math.unit(163, "lbs"),
  6047. name: "Side",
  6048. image: {
  6049. source: "./media/characters/kennedy/side.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Standard Doggo",
  6056. height: math.unit(5 + 4 / 12, "feet")
  6057. },
  6058. {
  6059. name: "Big Doggo",
  6060. height: math.unit(25 + 3 / 12, "feet"),
  6061. default: true
  6062. },
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(90, "lbs"),
  6071. name: "Front",
  6072. image: {
  6073. source: "./media/characters/odi-lunar/front.svg"
  6074. }
  6075. }
  6076. },
  6077. [
  6078. {
  6079. name: "Micro",
  6080. height: math.unit(3, "inches"),
  6081. default: true
  6082. },
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5.5, "feet")
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6091. {
  6092. back: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(220, "lbs"),
  6095. name: "Back",
  6096. image: {
  6097. source: "./media/characters/mandake/back.svg"
  6098. }
  6099. }
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(7, "feet"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(78, "feet")
  6110. },
  6111. {
  6112. name: "Macro+",
  6113. height: math.unit(300, "meters")
  6114. },
  6115. {
  6116. name: "Macro++",
  6117. height: math.unit(2400, "feet")
  6118. },
  6119. {
  6120. name: "Megamacro",
  6121. height: math.unit(5167, "meters")
  6122. },
  6123. {
  6124. name: "Gigamacro",
  6125. height: math.unit(41769, "miles")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(120, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/yozey/front.svg"
  6138. }
  6139. },
  6140. frontAlt: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(120, "lbs"),
  6143. name: "Front (Alt)",
  6144. image: {
  6145. source: "./media/characters/yozey/front-alt.svg"
  6146. }
  6147. },
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(120, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/yozey/side.svg"
  6154. }
  6155. },
  6156. },
  6157. [
  6158. {
  6159. name: "Micro",
  6160. height: math.unit(3, "inches"),
  6161. default: true
  6162. },
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(6, "feet")
  6166. }
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6171. {
  6172. front: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(103, "lbs"),
  6175. name: "Front",
  6176. image: {
  6177. source: "./media/characters/valeska-voss/front.svg"
  6178. }
  6179. }
  6180. },
  6181. [
  6182. {
  6183. name: "Mini-Sized Sub",
  6184. height: math.unit(3.1, "inches")
  6185. },
  6186. {
  6187. name: "Mid-Sized Sub",
  6188. height: math.unit(6.2, "inches")
  6189. },
  6190. {
  6191. name: "Full-Sized Sub",
  6192. height: math.unit(9.3, "inches")
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(5 + 2 / 12, "foot"),
  6197. default: true
  6198. },
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6203. {
  6204. front: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(160, "lbs"),
  6207. name: "Front",
  6208. image: {
  6209. source: "./media/characters/gene-zeta/front.svg",
  6210. bottom: 0.03,
  6211. extra: 1
  6212. }
  6213. }
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(6.25, "foot"),
  6219. default: true
  6220. },
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6225. {
  6226. front: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/razinox/front.svg",
  6232. extra: 1686 / 1548,
  6233. bottom: 28.2/1868
  6234. }
  6235. },
  6236. back: {
  6237. height: math.unit(6, "feet"),
  6238. weight: math.unit(350, "lbs"),
  6239. name: "Back",
  6240. image: {
  6241. source: "./media/characters/razinox/back.svg",
  6242. extra: 1660 / 1590,
  6243. bottom: 15/1665
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(10 + 8 / 12, "foot")
  6251. },
  6252. {
  6253. name: "Minimacro",
  6254. height: math.unit(15, "foot")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(60, "foot"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(5, "miles")
  6264. },
  6265. {
  6266. name: "Gigamacro",
  6267. height: math.unit(6000, "miles")
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6273. {
  6274. front: {
  6275. height: math.unit(6, "feet"),
  6276. weight: math.unit(150, "lbs"),
  6277. name: "Front",
  6278. image: {
  6279. source: "./media/characters/cobalt/front.svg"
  6280. }
  6281. }
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(8 + 1 / 12, "foot")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(111, "foot"),
  6291. default: true
  6292. },
  6293. {
  6294. name: "Supracosmic",
  6295. height: math.unit(1e42, "feet")
  6296. },
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(140, "lbs"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/amanda/front.svg"
  6308. }
  6309. }
  6310. },
  6311. [
  6312. {
  6313. name: "Micro",
  6314. height: math.unit(5, "inches"),
  6315. default: true
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(5.59, "feet"),
  6324. weight: math.unit(250, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/teal/front.svg"
  6328. }
  6329. },
  6330. frontAlt: {
  6331. height: math.unit(6, "feet"),
  6332. weight: math.unit(250, "lbs"),
  6333. name: "Front (Alt)",
  6334. image: {
  6335. source: "./media/characters/teal/front-alt.svg",
  6336. bottom: 0.04,
  6337. extra: 1
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(12, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(300, "feet")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6355. {
  6356. frontCat: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(180, "lbs"),
  6359. name: "Front (Cat)",
  6360. image: {
  6361. source: "./media/characters/ravin-amulet/front-cat.svg"
  6362. }
  6363. },
  6364. frontCatAlt: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(180, "lbs"),
  6367. name: "Front (Alt, Cat)",
  6368. image: {
  6369. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6370. }
  6371. },
  6372. frontWerewolf: {
  6373. height: math.unit(6 * 1.2, "feet"),
  6374. weight: math.unit(225, "lbs"),
  6375. name: "Front (Werewolf)",
  6376. image: {
  6377. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6378. }
  6379. },
  6380. backWerewolf: {
  6381. height: math.unit(6 * 1.2, "feet"),
  6382. weight: math.unit(225, "lbs"),
  6383. name: "Back (Werewolf)",
  6384. image: {
  6385. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Nano",
  6392. height: math.unit(1, "micrometer")
  6393. },
  6394. {
  6395. name: "Micro",
  6396. height: math.unit(1, "inch")
  6397. },
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(60, "feet")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(165, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/fluoresce/front.svg"
  6418. }
  6419. }
  6420. },
  6421. [
  6422. {
  6423. name: "Micro",
  6424. height: math.unit(6, "cm")
  6425. },
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(5 + 7 / 12, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(56, "feet")
  6434. },
  6435. {
  6436. name: "Megamacro",
  6437. height: math.unit(1.9, "miles")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(9 + 6 / 12, "feet"),
  6446. weight: math.unit(523, "lbs"),
  6447. name: "Side",
  6448. image: {
  6449. source: "./media/characters/aurora/side.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(9 + 6 / 12, "feet")
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(96, "feet"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Macro+",
  6465. height: math.unit(243, "feet")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(194, "cm"),
  6474. weight: math.unit(90, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/ranek/front.svg"
  6478. }
  6479. },
  6480. side: {
  6481. height: math.unit(194, "cm"),
  6482. weight: math.unit(90, "kg"),
  6483. name: "Side",
  6484. image: {
  6485. source: "./media/characters/ranek/side.svg"
  6486. }
  6487. },
  6488. back: {
  6489. height: math.unit(194, "cm"),
  6490. weight: math.unit(90, "kg"),
  6491. name: "Back",
  6492. image: {
  6493. source: "./media/characters/ranek/back.svg"
  6494. }
  6495. },
  6496. feral: {
  6497. height: math.unit(30, "cm"),
  6498. weight: math.unit(1.6, "lbs"),
  6499. name: "Feral",
  6500. image: {
  6501. source: "./media/characters/ranek/feral.svg"
  6502. }
  6503. },
  6504. },
  6505. [
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(194, "cm"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(100, "meters")
  6514. },
  6515. ]
  6516. ))
  6517. characterMakers.push(() => makeCharacter(
  6518. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6519. {
  6520. front: {
  6521. height: math.unit(5 + 6 / 12, "feet"),
  6522. weight: math.unit(153, "lbs"),
  6523. name: "Front",
  6524. image: {
  6525. source: "./media/characters/andrew-cooper/front.svg"
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Nano",
  6532. height: math.unit(1, "mm")
  6533. },
  6534. {
  6535. name: "Micro",
  6536. height: math.unit(2, "inches")
  6537. },
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(5 + 6 / 12, "feet"),
  6541. default: true
  6542. }
  6543. ]
  6544. ))
  6545. characterMakers.push(() => makeCharacter(
  6546. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6547. {
  6548. front: {
  6549. height: math.unit(6, "feet"),
  6550. weight: math.unit(180, "lbs"),
  6551. name: "Front",
  6552. image: {
  6553. source: "./media/characters/akane-sato/front.svg",
  6554. extra: 1219 / 1140
  6555. }
  6556. },
  6557. back: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(180, "lbs"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/akane-sato/back.svg",
  6563. extra: 1219 / 1170
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(2.5, "meters")
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(250, "meters"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Megamacro",
  6579. height: math.unit(25, "km")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(65, "kg"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/rook/front.svg",
  6592. extra: 960/950
  6593. }
  6594. }
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(8.8, "feet")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(88, "feet"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Megamacro",
  6608. height: math.unit(8, "miles")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(12 + 2 / 12, "feet"),
  6617. weight: math.unit(808, "lbs"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/prodigy/front.svg"
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(12 + 2 / 12, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(143, "feet")
  6633. },
  6634. {
  6635. name: "Macro+",
  6636. height: math.unit(400, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(225, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/daniel/front.svg"
  6649. }
  6650. },
  6651. leaning: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(225, "lbs"),
  6654. name: "Leaning",
  6655. image: {
  6656. source: "./media/characters/daniel/leaning.svg"
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(1000, "feet"),
  6664. default: true
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(88, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/chiros/front.svg",
  6677. extra: 306 / 226
  6678. }
  6679. },
  6680. side: {
  6681. height: math.unit(6, "feet"),
  6682. weight: math.unit(88, "lbs"),
  6683. name: "Side",
  6684. image: {
  6685. source: "./media/characters/chiros/side.svg",
  6686. extra: 306 / 226
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(6, "cm"),
  6694. default: true
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(100, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/selka/front.svg",
  6707. extra: 947 / 887
  6708. }
  6709. }
  6710. },
  6711. [
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(5, "cm"),
  6715. default: true
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(8 + 3 / 12, "feet"),
  6724. weight: math.unit(424, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/verin/front.svg",
  6728. extra: 1845 / 1550
  6729. }
  6730. },
  6731. frontArmored: {
  6732. height: math.unit(8 + 3 / 12, "feet"),
  6733. weight: math.unit(424, "lbs"),
  6734. name: "Front (Armored)",
  6735. image: {
  6736. source: "./media/characters/verin/front-armor.svg",
  6737. extra: 1845 / 1550,
  6738. bottom: 0.01
  6739. }
  6740. },
  6741. back: {
  6742. height: math.unit(8 + 3 / 12, "feet"),
  6743. weight: math.unit(424, "lbs"),
  6744. name: "Back",
  6745. image: {
  6746. source: "./media/characters/verin/back.svg",
  6747. bottom: 0.1,
  6748. extra: 1
  6749. }
  6750. },
  6751. foot: {
  6752. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6753. name: "Foot",
  6754. image: {
  6755. source: "./media/characters/verin/foot.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(8 + 3 / 12, "feet")
  6763. },
  6764. {
  6765. name: "Minimacro",
  6766. height: math.unit(21, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(626, "feet")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(2.718, "meters"),
  6780. weight: math.unit(150, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/sovrim-terraquian/front.svg"
  6784. }
  6785. },
  6786. back: {
  6787. height: math.unit(2.718, "meters"),
  6788. weight: math.unit(150, "lbs"),
  6789. name: "Back",
  6790. image: {
  6791. source: "./media/characters/sovrim-terraquian/back.svg"
  6792. }
  6793. }
  6794. },
  6795. [
  6796. {
  6797. name: "Micro",
  6798. height: math.unit(2, "inches")
  6799. },
  6800. {
  6801. name: "Small",
  6802. height: math.unit(1, "meter")
  6803. },
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(Math.E, "meters"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(20, "meters")
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(400, "meters")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(7, "feet"),
  6824. weight: math.unit(489, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/reece-silvermane/front.svg",
  6828. bottom: 0.02,
  6829. extra: 1
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(1.5, "miles"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6843. {
  6844. front: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(78, "kg"),
  6847. name: "Front",
  6848. image: {
  6849. source: "./media/characters/kane/front.svg",
  6850. extra: 978 / 899
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(2.1, "m"),
  6858. },
  6859. {
  6860. name: "Macro",
  6861. height: math.unit(1, "km"),
  6862. default: true
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(200, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/tegon/front.svg",
  6875. bottom: 0.01,
  6876. extra: 1
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "Micro",
  6883. height: math.unit(1, "inch")
  6884. },
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(6 + 3 / 12, "feet"),
  6888. default: true
  6889. },
  6890. {
  6891. name: "Macro",
  6892. height: math.unit(300, "feet")
  6893. },
  6894. {
  6895. name: "Megamacro",
  6896. height: math.unit(69, "miles")
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6902. {
  6903. side: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(2304, "lbs"),
  6906. name: "Side",
  6907. image: {
  6908. source: "./media/characters/arcturax/side.svg",
  6909. extra: 790 / 376,
  6910. bottom: 0.01
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(2, "inch")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(6, "feet")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(39, "feet"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(7, "miles")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(50, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/sentri/front.svg",
  6943. extra: 1750 / 1570,
  6944. bottom: 0.025
  6945. }
  6946. },
  6947. frontAlt: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(50, "lbs"),
  6950. name: "Front (Alt)",
  6951. image: {
  6952. source: "./media/characters/sentri/front-alt.svg",
  6953. extra: 1750 / 1570,
  6954. bottom: 0.025
  6955. }
  6956. },
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(15, "feet"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(2500, "feet")
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(5 + 8 / 12, "feet"),
  6975. weight: math.unit(130, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/corvin/front.svg",
  6979. extra: 1803 / 1629
  6980. }
  6981. },
  6982. frontShirt: {
  6983. height: math.unit(5 + 8 / 12, "feet"),
  6984. weight: math.unit(130, "lbs"),
  6985. name: "Front (Shirt)",
  6986. image: {
  6987. source: "./media/characters/corvin/front-shirt.svg",
  6988. extra: 1803 / 1629
  6989. }
  6990. },
  6991. frontPoncho: {
  6992. height: math.unit(5 + 8 / 12, "feet"),
  6993. weight: math.unit(130, "lbs"),
  6994. name: "Front (Poncho)",
  6995. image: {
  6996. source: "./media/characters/corvin/front-poncho.svg",
  6997. extra: 1803 / 1629
  6998. }
  6999. },
  7000. side: {
  7001. height: math.unit(5 + 8 / 12, "feet"),
  7002. weight: math.unit(130, "lbs"),
  7003. name: "Side",
  7004. image: {
  7005. source: "./media/characters/corvin/side.svg",
  7006. extra: 1012 / 945
  7007. }
  7008. },
  7009. back: {
  7010. height: math.unit(5 + 8 / 12, "feet"),
  7011. weight: math.unit(130, "lbs"),
  7012. name: "Back",
  7013. image: {
  7014. source: "./media/characters/corvin/back.svg",
  7015. extra: 1803 / 1629
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Micro",
  7022. height: math.unit(3, "inches")
  7023. },
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(5 + 8 / 12, "feet")
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(300, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Megamacro",
  7035. height: math.unit(500, "miles")
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(135, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/q/front.svg",
  7048. extra: 854 / 752,
  7049. bottom: 0.005
  7050. }
  7051. },
  7052. back: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(130, "lbs"),
  7055. name: "Back",
  7056. image: {
  7057. source: "./media/characters/q/back.svg",
  7058. extra: 854 / 752
  7059. }
  7060. },
  7061. },
  7062. [
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(90, "feet"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Extra Macro",
  7070. height: math.unit(300, "feet"),
  7071. },
  7072. {
  7073. name: "BIG WALF",
  7074. height: math.unit(750, "feet"),
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(150, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/carley/front.svg",
  7087. extra: 3927 / 3540,
  7088. bottom: 0.03
  7089. }
  7090. }
  7091. },
  7092. [
  7093. {
  7094. name: "Normal",
  7095. height: math.unit(6 + 3 / 12, "feet")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(185, "feet"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Megamacro",
  7104. height: math.unit(8, "miles"),
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(3, "feet"),
  7113. weight: math.unit(28, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/citrine/front.svg"
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Normal",
  7123. height: math.unit(3, "feet"),
  7124. default: true
  7125. }
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7130. {
  7131. front: {
  7132. height: math.unit(14, "feet"),
  7133. weight: math.unit(1450, "kg"),
  7134. capacity: math.unit(15, "people"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/aura-starwind/front.svg",
  7138. extra: 1455 / 1335
  7139. }
  7140. },
  7141. side: {
  7142. height: math.unit(14, "feet"),
  7143. weight: math.unit(1450, "kg"),
  7144. capacity: math.unit(15, "people"),
  7145. name: "Side",
  7146. image: {
  7147. source: "./media/characters/aura-starwind/side.svg",
  7148. extra: 1654 / 1497
  7149. }
  7150. },
  7151. taur: {
  7152. height: math.unit(18, "feet"),
  7153. weight: math.unit(5500, "kg"),
  7154. capacity: math.unit(50, "people"),
  7155. name: "Taur",
  7156. image: {
  7157. source: "./media/characters/aura-starwind/taur.svg",
  7158. extra: 1760 / 1650
  7159. }
  7160. },
  7161. feral: {
  7162. height: math.unit(46, "feet"),
  7163. weight: math.unit(25000, "kg"),
  7164. capacity: math.unit(120, "people"),
  7165. name: "Feral",
  7166. image: {
  7167. source: "./media/characters/aura-starwind/feral.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(14, "feet"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Macro",
  7179. height: math.unit(50, "meters")
  7180. },
  7181. {
  7182. name: "Megamacro",
  7183. height: math.unit(5000, "meters")
  7184. },
  7185. {
  7186. name: "Gigamacro",
  7187. height: math.unit(100000, "kilometers")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(2 + 7 / 12, "feet"),
  7196. weight: math.unit(32, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/rivet/front.svg",
  7200. extra: 1716 / 1658,
  7201. bottom: 0.03
  7202. }
  7203. },
  7204. foot: {
  7205. height: math.unit(0.551, "feet"),
  7206. name: "Rivet's Foot",
  7207. image: {
  7208. source: "./media/characters/rivet/foot.svg"
  7209. },
  7210. rename: true
  7211. }
  7212. },
  7213. [
  7214. {
  7215. name: "Micro",
  7216. height: math.unit(1.5, "inches"),
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(2 + 7 / 12, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(85, "feet")
  7226. },
  7227. {
  7228. name: "Megamacro",
  7229. height: math.unit(2.2, "km")
  7230. }
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(5 + 9 / 12, "feet"),
  7238. weight: math.unit(150, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/coffee/front.svg",
  7242. extra: 3666 / 3032,
  7243. bottom: 0.04
  7244. }
  7245. },
  7246. foot: {
  7247. height: math.unit(1.29, "feet"),
  7248. name: "Foot",
  7249. image: {
  7250. source: "./media/characters/coffee/foot.svg"
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Micro",
  7257. height: math.unit(2, "inches"),
  7258. },
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(5 + 9 / 12, "feet"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(800, "feet")
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(25, "miles")
  7271. }
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(200, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/chari-gal/front.svg",
  7283. extra: 1568 / 1385,
  7284. bottom: 0.047
  7285. }
  7286. },
  7287. gigantamax: {
  7288. height: math.unit(6 * 16, "feet"),
  7289. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7290. name: "Gigantamax",
  7291. image: {
  7292. source: "./media/characters/chari-gal/gigantamax.svg",
  7293. extra: 1124 / 888,
  7294. bottom: 0.03
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(5 + 7 / 12, "feet")
  7302. },
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(200, "feet"),
  7306. default: true
  7307. }
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(150, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/nova/front.svg",
  7319. extra: 5000 / 4722,
  7320. bottom: 0.02
  7321. }
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Micro-",
  7327. height: math.unit(0.8, "inches")
  7328. },
  7329. {
  7330. name: "Micro",
  7331. height: math.unit(2, "inches"),
  7332. default: true
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(3 + 1 / 12, "feet"),
  7341. weight: math.unit(21.7, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/argent/front.svg",
  7345. extra: 1565 / 1416,
  7346. bottom: 0.01
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Micro",
  7353. height: math.unit(2, "inches")
  7354. },
  7355. {
  7356. name: "Normal",
  7357. height: math.unit(3 + 1 / 12, "feet"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(120, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7368. {
  7369. lamp: {
  7370. height: math.unit(7 * 1559 / 989, "feet"),
  7371. name: "Magic Lamp",
  7372. image: {
  7373. source: "./media/characters/mira-al-cul/lamp.svg",
  7374. extra: 1617 / 1559
  7375. }
  7376. },
  7377. front: {
  7378. height: math.unit(7, "feet"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/mira-al-cul/front.svg",
  7382. extra: 1044 / 990
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Heavily Restricted",
  7389. height: math.unit(7 * 1559 / 989, "feet")
  7390. },
  7391. {
  7392. name: "Freshly Freed",
  7393. height: math.unit(50 * 1559 / 989, "feet")
  7394. },
  7395. {
  7396. name: "World Encompassing",
  7397. height: math.unit(10000 * 1559 / 989, "miles")
  7398. },
  7399. {
  7400. name: "Galactic",
  7401. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7402. },
  7403. {
  7404. name: "Palmed Universe",
  7405. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Multiversal Matriarch",
  7410. height: math.unit(8.87e10, "yottameters")
  7411. },
  7412. {
  7413. name: "Void Mother",
  7414. height: math.unit(3.14e110, "yottaparsecs")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7420. {
  7421. front: {
  7422. height: math.unit(17 + 1 / 12, "feet"),
  7423. weight: math.unit(476.2 * 5, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/kuro-shi-uchū/front.svg",
  7427. extra: 2329 / 1835,
  7428. bottom: 0.02
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(2, "inches")
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(12, "meters")
  7440. },
  7441. {
  7442. name: "Planetary",
  7443. height: math.unit(0.00929, "AU"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Universal",
  7448. height: math.unit(20, "gigaparsecs")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(5 + 2 / 12, "feet"),
  7457. weight: math.unit(120, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/katherine/front.svg",
  7461. extra: 2075 / 1969
  7462. }
  7463. },
  7464. dress: {
  7465. height: math.unit(5 + 2 / 12, "feet"),
  7466. weight: math.unit(120, "lbs"),
  7467. name: "Dress",
  7468. image: {
  7469. source: "./media/characters/katherine/dress.svg",
  7470. extra: 2258 / 2064
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(1, "inches"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(5 + 2 / 12, "feet")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(100, "meters")
  7487. },
  7488. {
  7489. name: "Megamacro",
  7490. height: math.unit(80, "miles")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(7 + 8 / 12, "feet"),
  7499. weight: math.unit(250, "lbs"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/yevis/front.svg",
  7503. extra: 1938 / 1755
  7504. }
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Mortal",
  7510. height: math.unit(7 + 8 / 12, "feet")
  7511. },
  7512. {
  7513. name: "Battle",
  7514. height: math.unit(25 + 11 / 12, "feet")
  7515. },
  7516. {
  7517. name: "Wrath",
  7518. height: math.unit(1654 + 11 / 12, "feet")
  7519. },
  7520. {
  7521. name: "Planet Destroyer",
  7522. height: math.unit(12000, "miles")
  7523. },
  7524. {
  7525. name: "Galaxy Conqueror",
  7526. height: math.unit(1.45, "zettameters"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Universal War",
  7531. height: math.unit(184, "gigaparsecs")
  7532. },
  7533. {
  7534. name: "Eternity War",
  7535. height: math.unit(1.98e55, "yottaparsecs")
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(5 + 8 / 12, "feet"),
  7544. weight: math.unit(63, "kg"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/xavier/front.svg",
  7548. extra: 944 / 883
  7549. }
  7550. },
  7551. frontStretch: {
  7552. height: math.unit(5 + 8 / 12, "feet"),
  7553. weight: math.unit(63, "kg"),
  7554. name: "Stretching",
  7555. image: {
  7556. source: "./media/characters/xavier/front-stretch.svg",
  7557. extra: 962 / 820
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 8 / 12, "feet")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(100, "meters"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "McLargeHuge",
  7573. height: math.unit(10, "miles")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(5 + 5 / 12, "feet"),
  7582. weight: math.unit(150, "lb"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/joshii/front.svg"
  7586. }
  7587. },
  7588. foot: {
  7589. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7590. name: "Foot",
  7591. image: {
  7592. source: "./media/characters/joshii/foot.svg"
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Micro",
  7599. height: math.unit(2, "inches")
  7600. },
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5 + 5 / 12, "feet"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(785, "feet")
  7609. },
  7610. {
  7611. name: "Megamacro",
  7612. height: math.unit(24.5, "miles")
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(6, "feet"),
  7621. weight: math.unit(150, "lb"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/goddess-elizabeth/front.svg",
  7625. extra: 1800 / 1525,
  7626. bottom: 0.005
  7627. }
  7628. },
  7629. foot: {
  7630. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7631. name: "Foot",
  7632. image: {
  7633. source: "./media/characters/goddess-elizabeth/foot.svg"
  7634. }
  7635. },
  7636. mouth: {
  7637. height: math.unit(6, "feet"),
  7638. name: "Mouth",
  7639. image: {
  7640. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7641. }
  7642. },
  7643. },
  7644. [
  7645. {
  7646. name: "Micro",
  7647. height: math.unit(12, "feet")
  7648. },
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(80, "miles"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(15000, "parsecs")
  7657. },
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(5 + 9 / 12, "feet"),
  7665. weight: math.unit(144, "lb"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/kara/front.svg"
  7669. }
  7670. },
  7671. feet: {
  7672. height: math.unit(6 / 6.765, "feet"),
  7673. name: "Kara's Feet",
  7674. rename: true,
  7675. image: {
  7676. source: "./media/characters/kara/feet.svg"
  7677. }
  7678. },
  7679. },
  7680. [
  7681. {
  7682. name: "Normal",
  7683. height: math.unit(5 + 9 / 12, "feet")
  7684. },
  7685. {
  7686. name: "Macro",
  7687. height: math.unit(174, "feet"),
  7688. default: true
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(18, "feet"),
  7697. weight: math.unit(4050, "lb"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/tyrone/front.svg",
  7701. extra: 2520 / 2402,
  7702. bottom: 0.025
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(18, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(300, "feet")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(7 + 8 / 12, "feet"),
  7723. weight: math.unit(120, "lb"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/danny/front.svg",
  7727. extra: 1490 / 1350
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(7 + 8 / 12, "feet"),
  7732. weight: math.unit(120, "lb"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/danny/back.svg",
  7736. extra: 1490 / 1350
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(7 + 8 / 12, "feet"),
  7744. default: true
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(3.5, "inches"),
  7753. weight: math.unit(19, "grams"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/mallow/front.svg",
  7757. extra: 471 / 431
  7758. }
  7759. },
  7760. back: {
  7761. height: math.unit(3.5, "inches"),
  7762. weight: math.unit(19, "grams"),
  7763. name: "Back",
  7764. image: {
  7765. source: "./media/characters/mallow/back.svg",
  7766. extra: 471 / 431
  7767. }
  7768. },
  7769. },
  7770. [
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(3.5, "inches"),
  7774. default: true
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(9, "feet"),
  7783. weight: math.unit(230, "kg"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/starry-aqua/front.svg"
  7787. }
  7788. },
  7789. back: {
  7790. height: math.unit(9, "feet"),
  7791. weight: math.unit(230, "kg"),
  7792. name: "Back",
  7793. image: {
  7794. source: "./media/characters/starry-aqua/back.svg"
  7795. }
  7796. },
  7797. hand: {
  7798. height: math.unit(9 * 0.1168, "feet"),
  7799. name: "Hand",
  7800. image: {
  7801. source: "./media/characters/starry-aqua/hand.svg"
  7802. }
  7803. },
  7804. foot: {
  7805. height: math.unit(9 * 0.18, "feet"),
  7806. name: "Foot",
  7807. image: {
  7808. source: "./media/characters/starry-aqua/foot.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(3, "inches")
  7816. },
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(9, "feet")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(300, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(3200, "feet")
  7829. }
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(230, "lb"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/luka/front.svg",
  7841. extra: 1,
  7842. bottom: 0.025
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(12 + 8 / 12, "feet"),
  7850. default: true
  7851. },
  7852. {
  7853. name: "Minimacro",
  7854. height: math.unit(20, "feet")
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(250, "feet")
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(5, "miles")
  7863. },
  7864. {
  7865. name: "Gigamacro",
  7866. height: math.unit(8000, "miles")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(150, "lb"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/natalie-nightring/front.svg",
  7879. extra: 1,
  7880. bottom: 0.06
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Uh Oh",
  7887. height: math.unit(0.1, "mm")
  7888. },
  7889. {
  7890. name: "Small",
  7891. height: math.unit(3, "inches")
  7892. },
  7893. {
  7894. name: "Human Scale",
  7895. height: math.unit(6, "feet")
  7896. },
  7897. {
  7898. name: "Librarian",
  7899. height: math.unit(50, "feet"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Immense",
  7904. height: math.unit(200, "miles")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(180, "lbs"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/danni-rosie/front.svg",
  7917. extra: 1260 / 1128,
  7918. bottom: 0.022
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Micro",
  7925. height: math.unit(2, "inches"),
  7926. default: true
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(5 + 9 / 12, "feet"),
  7935. weight: math.unit(220, "lb"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/samantha-kruse/front.svg",
  7939. extra: (985 / 935),
  7940. bottom: 0.03
  7941. }
  7942. },
  7943. frontUndressed: {
  7944. height: math.unit(5 + 9 / 12, "feet"),
  7945. weight: math.unit(220, "lb"),
  7946. name: "Front (Undressed)",
  7947. image: {
  7948. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7949. extra: (973 / 923),
  7950. bottom: 0.025
  7951. }
  7952. },
  7953. fat: {
  7954. height: math.unit(5 + 9 / 12, "feet"),
  7955. weight: math.unit(900, "lb"),
  7956. name: "Front (Fat)",
  7957. image: {
  7958. source: "./media/characters/samantha-kruse/fat.svg",
  7959. extra: 2688 / 2561
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(5 + 9 / 12, "feet"),
  7967. default: true
  7968. }
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7973. {
  7974. back: {
  7975. height: math.unit(5 + 4 / 12, "feet"),
  7976. weight: math.unit(4963, "lb"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/amelia-rosie/back.svg",
  7980. extra: 1113 / 963,
  7981. bottom: 0.01
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Level 0",
  7988. height: math.unit(5 + 4 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Level 1",
  7992. height: math.unit(164597, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Level 2",
  7997. height: math.unit(956243, "miles")
  7998. },
  7999. {
  8000. name: "Level 3",
  8001. height: math.unit(29421709423, "miles")
  8002. },
  8003. {
  8004. name: "Level 4",
  8005. height: math.unit(154, "lightyears")
  8006. },
  8007. {
  8008. name: "Level 5",
  8009. height: math.unit(4738272, "lightyears")
  8010. },
  8011. {
  8012. name: "Level 6",
  8013. height: math.unit(145787152896, "lightyears")
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(5 + 11 / 12, "feet"),
  8022. weight: math.unit(65, "kg"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/rook-kitara/front.svg",
  8026. extra: 1347 / 1274,
  8027. bottom: 0.005
  8028. }
  8029. },
  8030. },
  8031. [
  8032. {
  8033. name: "Totally Unfair",
  8034. height: math.unit(1.8, "mm")
  8035. },
  8036. {
  8037. name: "Lap Rookie",
  8038. height: math.unit(1.4, "feet")
  8039. },
  8040. {
  8041. name: "Normal",
  8042. height: math.unit(5 + 11 / 12, "feet"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "How Did This Happen",
  8047. height: math.unit(80, "miles")
  8048. }
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(7, "feet"),
  8056. weight: math.unit(300, "lb"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/pisces/front.svg",
  8060. extra: 2255 / 2115,
  8061. bottom: 0.03
  8062. }
  8063. },
  8064. back: {
  8065. height: math.unit(7, "feet"),
  8066. weight: math.unit(300, "lb"),
  8067. name: "Back",
  8068. image: {
  8069. source: "./media/characters/pisces/back.svg",
  8070. extra: 2146 / 2055,
  8071. bottom: 0.04
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(7, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Swimming Pool",
  8083. height: math.unit(12.2, "meters")
  8084. },
  8085. {
  8086. name: "Olympic Swimming Pool",
  8087. height: math.unit(56.3, "meters")
  8088. },
  8089. {
  8090. name: "Lake Superior",
  8091. height: math.unit(93900, "meters")
  8092. },
  8093. {
  8094. name: "Mediterranean Sea",
  8095. height: math.unit(644457, "meters")
  8096. },
  8097. {
  8098. name: "World's Oceans",
  8099. height: math.unit(4567491, "meters")
  8100. },
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(2.3, "meters"),
  8108. weight: math.unit(120, "kg"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/zelas/front.svg"
  8112. }
  8113. },
  8114. side: {
  8115. height: math.unit(2.3, "meters"),
  8116. weight: math.unit(120, "kg"),
  8117. name: "Side",
  8118. image: {
  8119. source: "./media/characters/zelas/side.svg"
  8120. }
  8121. },
  8122. back: {
  8123. height: math.unit(2.3, "meters"),
  8124. weight: math.unit(120, "kg"),
  8125. name: "Back",
  8126. image: {
  8127. source: "./media/characters/zelas/back.svg"
  8128. }
  8129. },
  8130. foot: {
  8131. height: math.unit(1.116, "feet"),
  8132. name: "Foot",
  8133. image: {
  8134. source: "./media/characters/zelas/foot.svg"
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(2.3, "meters")
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(30, "meters"),
  8146. default: true
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(1, "inch"),
  8155. weight: math.unit(0.21, "grams"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/talbot/front.svg",
  8159. extra: 594 / 544
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(1, "inch"),
  8167. default: true
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8173. {
  8174. front: {
  8175. height: math.unit(3 + 3 / 12, "feet"),
  8176. weight: math.unit(51.8, "lb"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/fliss/front.svg",
  8180. extra: 840 / 640
  8181. }
  8182. },
  8183. },
  8184. [
  8185. {
  8186. name: "Teeny Tiny",
  8187. height: math.unit(1, "mm")
  8188. },
  8189. {
  8190. name: "Small",
  8191. height: math.unit(1, "inch"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Standard Sylveon",
  8196. height: math.unit(3 + 3 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Large Nuisance",
  8200. height: math.unit(33, "feet")
  8201. },
  8202. {
  8203. name: "City Filler",
  8204. height: math.unit(3000, "feet")
  8205. },
  8206. {
  8207. name: "New Horizon",
  8208. height: math.unit(6000, "miles")
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(5, "cm"),
  8217. weight: math.unit(1.94, "g"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/fleta/front.svg",
  8221. extra: 835 / 803
  8222. }
  8223. },
  8224. back: {
  8225. height: math.unit(5, "cm"),
  8226. weight: math.unit(1.94, "g"),
  8227. name: "Back",
  8228. image: {
  8229. source: "./media/characters/fleta/back.svg",
  8230. extra: 835 / 803
  8231. }
  8232. },
  8233. },
  8234. [
  8235. {
  8236. name: "Micro",
  8237. height: math.unit(5, "cm"),
  8238. default: true
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(225, "lb"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/dominic/front.svg",
  8251. extra: 1770 / 1620,
  8252. bottom: 0.025
  8253. }
  8254. },
  8255. back: {
  8256. height: math.unit(6, "feet"),
  8257. weight: math.unit(225, "lb"),
  8258. name: "Back",
  8259. image: {
  8260. source: "./media/characters/dominic/back.svg",
  8261. extra: 1745 / 1620,
  8262. bottom: 0.065
  8263. }
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "Nano",
  8269. height: math.unit(0.1, "mm")
  8270. },
  8271. {
  8272. name: "Micro-",
  8273. height: math.unit(1, "mm")
  8274. },
  8275. {
  8276. name: "Micro",
  8277. height: math.unit(4, "inches")
  8278. },
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(6 + 4 / 12, "feet"),
  8282. default: true
  8283. },
  8284. {
  8285. name: "Macro",
  8286. height: math.unit(115, "feet")
  8287. },
  8288. {
  8289. name: "Macro+",
  8290. height: math.unit(955, "feet")
  8291. },
  8292. {
  8293. name: "Megamacro",
  8294. height: math.unit(8990, "feet")
  8295. },
  8296. {
  8297. name: "Gigmacro",
  8298. height: math.unit(9310, "miles")
  8299. },
  8300. {
  8301. name: "Teramacro",
  8302. height: math.unit(1567005010, "miles")
  8303. },
  8304. {
  8305. name: "Examacro",
  8306. height: math.unit(1425, "parsecs")
  8307. },
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(400, "feet"),
  8315. weight: math.unit(44444444, "lb"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/major-colonel/front.svg"
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(400, "feet"),
  8323. weight: math.unit(44444444, "lb"),
  8324. name: "Back",
  8325. image: {
  8326. source: "./media/characters/major-colonel/back.svg"
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Macro",
  8333. height: math.unit(400, "feet"),
  8334. default: true
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  8340. {
  8341. front: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(120, "lb"),
  8344. name: "Front",
  8345. image: {
  8346. source: "./media/characters/axel-lycan/front.svg",
  8347. extra: 1,
  8348. bottom: 0.08
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(1, "km"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(5 + 9 / 12, "feet"),
  8365. weight: math.unit(175, "lb"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/vanrel-hyena/front.svg",
  8369. extra: 1086 / 1010,
  8370. bottom: 0.04
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(5 + 9 / 12, "feet"),
  8378. default: true
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(103, "lb"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/abbott-absol/front.svg",
  8391. extra: 2010 / 1842
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Megamicro",
  8398. height: math.unit(0.1, "mm")
  8399. },
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(1, "inch")
  8403. },
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(6, "feet"),
  8407. default: true
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(264, "lb"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/hector/front.svg",
  8420. extra: 2280 / 2130,
  8421. bottom: 0.07
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Normal",
  8428. height: math.unit(12.25, "foot"),
  8429. default: true
  8430. },
  8431. {
  8432. name: "Macro",
  8433. height: math.unit(160, "feet")
  8434. },
  8435. ]
  8436. ))
  8437. characterMakers.push(() => makeCharacter(
  8438. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8439. {
  8440. front: {
  8441. height: math.unit(6, "feet"),
  8442. weight: math.unit(150, "lb"),
  8443. name: "Front",
  8444. image: {
  8445. source: "./media/characters/sal/front.svg",
  8446. extra: 1846 / 1699,
  8447. bottom: 0.04
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Megamacro",
  8454. height: math.unit(10, "miles"),
  8455. default: true
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8461. {
  8462. front: {
  8463. height: math.unit(3, "meters"),
  8464. weight: math.unit(450, "kg"),
  8465. name: "front",
  8466. image: {
  8467. source: "./media/characters/ranger/front.svg",
  8468. extra: 2401 / 2243,
  8469. bottom: 0.05
  8470. }
  8471. },
  8472. },
  8473. [
  8474. {
  8475. name: "Normal",
  8476. height: math.unit(3, "meters"),
  8477. default: true
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(14, "feet"),
  8486. weight: math.unit(800, "kg"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/theresa/front.svg",
  8490. extra: 3575 / 3346,
  8491. bottom: 0.03
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(14, "feet"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8505. {
  8506. front: {
  8507. height: math.unit(6, "feet"),
  8508. weight: math.unit(3, "kg"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/ine/front.svg",
  8512. extra: 678 / 539,
  8513. bottom: 0.023
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(2.265, "feet"),
  8521. default: true
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(5, "feet"),
  8530. weight: math.unit(30, "kg"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/vial/front.svg",
  8534. extra: 1365 / 1277,
  8535. bottom: 0.04
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(5, "feet"),
  8543. default: true
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8549. {
  8550. side: {
  8551. height: math.unit(3.4, "meters"),
  8552. weight: math.unit(1000, "lb"),
  8553. name: "Side",
  8554. image: {
  8555. source: "./media/characters/rovoska/side.svg",
  8556. extra: 4403 / 1515
  8557. }
  8558. },
  8559. },
  8560. [
  8561. {
  8562. name: "Normal",
  8563. height: math.unit(3.4, "meters"),
  8564. default: true
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(8, "feet"),
  8573. weight: math.unit(315, "lb"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/gunner-rotthbauer/front.svg"
  8577. }
  8578. },
  8579. back: {
  8580. height: math.unit(8, "feet"),
  8581. weight: math.unit(315, "lb"),
  8582. name: "Back",
  8583. image: {
  8584. source: "./media/characters/gunner-rotthbauer/back.svg"
  8585. }
  8586. },
  8587. },
  8588. [
  8589. {
  8590. name: "Micro",
  8591. height: math.unit(3.5, "inches")
  8592. },
  8593. {
  8594. name: "Normal",
  8595. height: math.unit(8, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(250, "feet")
  8601. },
  8602. {
  8603. name: "Megamacro",
  8604. height: math.unit(1, "AU")
  8605. },
  8606. ]
  8607. ))
  8608. characterMakers.push(() => makeCharacter(
  8609. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8610. {
  8611. front: {
  8612. height: math.unit(5 + 5 / 12, "feet"),
  8613. weight: math.unit(140, "lb"),
  8614. name: "Front",
  8615. image: {
  8616. source: "./media/characters/allatia/front.svg",
  8617. extra: 1227 / 1180,
  8618. bottom: 0.027
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(5 + 5 / 12, "feet")
  8626. },
  8627. {
  8628. name: "Macro",
  8629. height: math.unit(250, "feet"),
  8630. default: true
  8631. },
  8632. {
  8633. name: "Megamacro",
  8634. height: math.unit(8, "miles")
  8635. }
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8640. {
  8641. front: {
  8642. height: math.unit(6, "feet"),
  8643. weight: math.unit(120, "lb"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/tene/front.svg",
  8647. extra: 1728 / 1578,
  8648. bottom: 0.022
  8649. }
  8650. },
  8651. stomping: {
  8652. height: math.unit(2.025, "meters"),
  8653. weight: math.unit(120, "lb"),
  8654. name: "Stomping",
  8655. image: {
  8656. source: "./media/characters/tene/stomping.svg",
  8657. extra: 938 / 873,
  8658. bottom: 0.01
  8659. }
  8660. },
  8661. sitting: {
  8662. height: math.unit(1, "meter"),
  8663. weight: math.unit(120, "lb"),
  8664. name: "Sitting",
  8665. image: {
  8666. source: "./media/characters/tene/sitting.svg",
  8667. extra: 437 / 415,
  8668. bottom: 0.1
  8669. }
  8670. },
  8671. feral: {
  8672. height: math.unit(3.9, "feet"),
  8673. weight: math.unit(250, "lb"),
  8674. name: "Feral",
  8675. image: {
  8676. source: "./media/characters/tene/feral.svg",
  8677. extra: 717 / 458,
  8678. bottom: 0.179
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(6, "feet")
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(300, "feet"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Megamacro",
  8694. height: math.unit(5, "miles")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8700. {
  8701. side: {
  8702. height: math.unit(6, "feet"),
  8703. name: "Side",
  8704. image: {
  8705. source: "./media/characters/evander/side.svg",
  8706. extra: 877 / 477
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(0.83, "meters"),
  8714. default: true
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(12, "feet"),
  8723. weight: math.unit(1000, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8727. extra: 1762 / 1611
  8728. }
  8729. },
  8730. back: {
  8731. height: math.unit(12, "feet"),
  8732. weight: math.unit(1000, "lb"),
  8733. name: "Back",
  8734. image: {
  8735. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8736. extra: 1762 / 1611
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(12, "feet"),
  8744. default: true
  8745. },
  8746. {
  8747. name: "Kaiju",
  8748. height: math.unit(150, "feet")
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(150, "lb"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/zero-alurus/front.svg"
  8761. }
  8762. },
  8763. back: {
  8764. height: math.unit(6, "feet"),
  8765. weight: math.unit(150, "lb"),
  8766. name: "Back",
  8767. image: {
  8768. source: "./media/characters/zero-alurus/back.svg"
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(5 + 10 / 12, "feet")
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(60, "feet"),
  8780. default: true
  8781. },
  8782. {
  8783. name: "Macro+",
  8784. height: math.unit(450, "feet")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(6, "feet"),
  8793. weight: math.unit(200, "lb"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/mega-shi/front.svg",
  8797. extra: 1279 / 1250,
  8798. bottom: 0.02
  8799. }
  8800. },
  8801. back: {
  8802. height: math.unit(6, "feet"),
  8803. weight: math.unit(200, "lb"),
  8804. name: "Back",
  8805. image: {
  8806. source: "./media/characters/mega-shi/back.svg",
  8807. extra: 1279 / 1250,
  8808. bottom: 0.02
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Micro",
  8815. height: math.unit(16 + 6 / 12, "feet")
  8816. },
  8817. {
  8818. name: "Third Dimension",
  8819. height: math.unit(40, "meters")
  8820. },
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(660, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Megamacro",
  8828. height: math.unit(10, "miles")
  8829. },
  8830. {
  8831. name: "Planetary Launch",
  8832. height: math.unit(500, "miles")
  8833. },
  8834. {
  8835. name: "Interstellar",
  8836. height: math.unit(1e9, "miles")
  8837. },
  8838. {
  8839. name: "Leaving the Universe",
  8840. height: math.unit(1, "gigaparsec")
  8841. },
  8842. {
  8843. name: "Travelling Universes",
  8844. height: math.unit(30e15, "parsecs")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(150, "lb"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/odyssey/front.svg",
  8857. extra: 1782 / 1582,
  8858. bottom: 0.01
  8859. }
  8860. },
  8861. side: {
  8862. height: math.unit(5.7, "feet"),
  8863. weight: math.unit(140, "lb"),
  8864. name: "Side",
  8865. image: {
  8866. source: "./media/characters/odyssey/side.svg",
  8867. extra: 6462 / 5700
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(5 + 4 / 12, "feet")
  8875. },
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(1, "km")
  8879. },
  8880. {
  8881. name: "Megamacro",
  8882. height: math.unit(3000, "km")
  8883. },
  8884. {
  8885. name: "Gigamacro",
  8886. height: math.unit(1, "AU"),
  8887. default: true
  8888. },
  8889. {
  8890. name: "Omniversal",
  8891. height: math.unit(100e14, "lightyears")
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8897. {
  8898. front: {
  8899. height: math.unit(6, "feet"),
  8900. weight: math.unit(300, "lb"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/mekuto/front.svg",
  8904. extra: 921 / 832,
  8905. bottom: 0.03
  8906. }
  8907. },
  8908. hand: {
  8909. height: math.unit(6 / 10.24, "feet"),
  8910. name: "Hand",
  8911. image: {
  8912. source: "./media/characters/mekuto/hand.svg"
  8913. }
  8914. },
  8915. foot: {
  8916. height: math.unit(6 / 5.05, "feet"),
  8917. name: "Foot",
  8918. image: {
  8919. source: "./media/characters/mekuto/foot.svg"
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Minimicro",
  8926. height: math.unit(0.2, "inches")
  8927. },
  8928. {
  8929. name: "Micro",
  8930. height: math.unit(1.5, "inches")
  8931. },
  8932. {
  8933. name: "Normal",
  8934. height: math.unit(5 + 11 / 12, "feet"),
  8935. default: true
  8936. },
  8937. {
  8938. name: "Minimacro",
  8939. height: math.unit(17 + 9 / 12, "feet")
  8940. },
  8941. {
  8942. name: "Macro",
  8943. height: math.unit(177.5, "feet")
  8944. },
  8945. {
  8946. name: "Megamacro",
  8947. height: math.unit(152, "miles")
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(6.5, "inches"),
  8956. weight: math.unit(13, "oz"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/dafydd-tomos/front.svg",
  8960. extra: 2990 / 2603,
  8961. bottom: 0.03
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Micro",
  8968. height: math.unit(6.5, "inches"),
  8969. default: true
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8975. {
  8976. front: {
  8977. height: math.unit(6, "feet"),
  8978. weight: math.unit(150, "lb"),
  8979. name: "Front",
  8980. image: {
  8981. source: "./media/characters/splinter/front.svg",
  8982. extra: 2990 / 2882,
  8983. bottom: 0.04
  8984. }
  8985. },
  8986. back: {
  8987. height: math.unit(6, "feet"),
  8988. weight: math.unit(150, "lb"),
  8989. name: "Back",
  8990. image: {
  8991. source: "./media/characters/splinter/back.svg",
  8992. extra: 2990 / 2882,
  8993. bottom: 0.04
  8994. }
  8995. },
  8996. },
  8997. [
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(6, "feet")
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(230, "meters"),
  9005. default: true
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9011. {
  9012. front: {
  9013. height: math.unit(4 + 10 / 12, "feet"),
  9014. weight: math.unit(480, "lb"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/snow-gabumon/front.svg",
  9018. extra: 1140 / 963,
  9019. bottom: 0.058
  9020. }
  9021. },
  9022. back: {
  9023. height: math.unit(4 + 10 / 12, "feet"),
  9024. weight: math.unit(480, "lb"),
  9025. name: "Back",
  9026. image: {
  9027. source: "./media/characters/snow-gabumon/back.svg",
  9028. extra: 1115 / 962,
  9029. bottom: 0.041
  9030. }
  9031. },
  9032. frontUndresed: {
  9033. height: math.unit(4 + 10 / 12, "feet"),
  9034. weight: math.unit(480, "lb"),
  9035. name: "Front (Undressed)",
  9036. image: {
  9037. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9038. extra: 1061 / 960,
  9039. bottom: 0.045
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Micro",
  9046. height: math.unit(1, "inch")
  9047. },
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(4 + 10 / 12, "feet"),
  9051. default: true
  9052. },
  9053. {
  9054. name: "Macro",
  9055. height: math.unit(200, "feet")
  9056. },
  9057. {
  9058. name: "Megamacro",
  9059. height: math.unit(120, "miles")
  9060. },
  9061. {
  9062. name: "Gigamacro",
  9063. height: math.unit(9800, "miles")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(1.7, "meters"),
  9072. weight: math.unit(140, "lb"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/moody/front.svg",
  9076. extra: 3226 / 3007,
  9077. bottom: 0.087
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(1, "mm")
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(1.7, "meters"),
  9089. default: true
  9090. },
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(80, "meters")
  9094. },
  9095. {
  9096. name: "Macro+",
  9097. height: math.unit(500, "meters")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(150, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/zyas/front.svg",
  9110. extra: 1180 / 1120,
  9111. bottom: 0.045
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(10, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(500, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(5, "miles")
  9128. },
  9129. {
  9130. name: "Teramacro",
  9131. height: math.unit(150000, "miles")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(150, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/cuon/front.svg",
  9144. extra: 1390 / 1320,
  9145. bottom: 0.008
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Micro",
  9152. height: math.unit(3, "inches")
  9153. },
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(18 + 9 / 12, "feet"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(360, "feet")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(360, "miles")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(2.4, "meters"),
  9174. weight: math.unit(70, "kg"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/nyanuxk/front.svg",
  9178. extra: 1172 / 1084,
  9179. bottom: 0.065
  9180. }
  9181. },
  9182. side: {
  9183. height: math.unit(2.4, "meters"),
  9184. weight: math.unit(70, "kg"),
  9185. name: "Side",
  9186. image: {
  9187. source: "./media/characters/nyanuxk/side.svg",
  9188. extra: 1190 / 1132,
  9189. bottom: 0.007
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(2.4, "meters"),
  9194. weight: math.unit(70, "kg"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/nyanuxk/back.svg",
  9198. extra: 1200 / 1141,
  9199. bottom: 0.015
  9200. }
  9201. },
  9202. foot: {
  9203. height: math.unit(0.52, "meters"),
  9204. name: "Foot",
  9205. image: {
  9206. source: "./media/characters/nyanuxk/foot.svg"
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Micro",
  9213. height: math.unit(2, "cm")
  9214. },
  9215. {
  9216. name: "Normal",
  9217. height: math.unit(2.4, "meters"),
  9218. default: true
  9219. },
  9220. {
  9221. name: "Smaller Macro",
  9222. height: math.unit(120, "meters")
  9223. },
  9224. {
  9225. name: "Bigger Macro",
  9226. height: math.unit(1.2, "km")
  9227. },
  9228. {
  9229. name: "Megamacro",
  9230. height: math.unit(15, "kilometers")
  9231. },
  9232. {
  9233. name: "Gigamacro",
  9234. height: math.unit(2000, "km")
  9235. },
  9236. {
  9237. name: "Teramacro",
  9238. height: math.unit(500000, "km")
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9244. {
  9245. side: {
  9246. height: math.unit(6, "feet"),
  9247. name: "Side",
  9248. image: {
  9249. source: "./media/characters/ailbhe/side.svg",
  9250. extra: 757 / 464,
  9251. bottom: 0.041
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(1.07, "meters"),
  9259. default: true
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(120, "kg"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/zevulfius/front.svg",
  9272. extra: 965 / 903
  9273. }
  9274. },
  9275. side: {
  9276. height: math.unit(6, "feet"),
  9277. weight: math.unit(120, "kg"),
  9278. name: "Side",
  9279. image: {
  9280. source: "./media/characters/zevulfius/side.svg",
  9281. extra: 939 / 900
  9282. }
  9283. },
  9284. back: {
  9285. height: math.unit(6, "feet"),
  9286. weight: math.unit(120, "kg"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/zevulfius/back.svg",
  9290. extra: 918 / 854,
  9291. bottom: 0.005
  9292. }
  9293. },
  9294. foot: {
  9295. height: math.unit(6 / 3.72, "feet"),
  9296. name: "Foot",
  9297. image: {
  9298. source: "./media/characters/zevulfius/foot.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Macro",
  9305. height: math.unit(750, "meters")
  9306. },
  9307. {
  9308. name: "Megamacro",
  9309. height: math.unit(20, "km"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Gigamacro",
  9314. height: math.unit(2000, "km")
  9315. },
  9316. {
  9317. name: "Teramacro",
  9318. height: math.unit(250000, "km")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(100, "feet"),
  9327. weight: math.unit(350, "kg"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/rikes/front.svg",
  9331. extra: 1565 / 1483,
  9332. bottom: 0.017
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(100, "feet"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9346. {
  9347. anthro: {
  9348. height: math.unit(8, "feet"),
  9349. weight: math.unit(120, "kg"),
  9350. name: "Anthro",
  9351. image: {
  9352. source: "./media/characters/adam-silver-mane/anthro.svg",
  9353. extra: 5743 / 5339,
  9354. bottom: 0.07
  9355. }
  9356. },
  9357. taur: {
  9358. height: math.unit(16, "feet"),
  9359. weight: math.unit(1500, "kg"),
  9360. name: "Taur",
  9361. image: {
  9362. source: "./media/characters/adam-silver-mane/taur.svg",
  9363. extra: 1713 / 1571,
  9364. bottom: 0.01
  9365. }
  9366. },
  9367. },
  9368. [
  9369. {
  9370. name: "Normal",
  9371. height: math.unit(8, "feet")
  9372. },
  9373. {
  9374. name: "Minimacro",
  9375. height: math.unit(80, "feet")
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(800, "feet"),
  9380. default: true
  9381. },
  9382. {
  9383. name: "Megamacro",
  9384. height: math.unit(8000, "feet")
  9385. },
  9386. {
  9387. name: "Gigamacro",
  9388. height: math.unit(800, "miles")
  9389. },
  9390. {
  9391. name: "Teramacro",
  9392. height: math.unit(80000, "miles")
  9393. },
  9394. {
  9395. name: "Celestial",
  9396. height: math.unit(8e6, "miles")
  9397. },
  9398. {
  9399. name: "Star Dragon",
  9400. height: math.unit(800000, "parsecs")
  9401. },
  9402. {
  9403. name: "Godly",
  9404. height: math.unit(800, "teraparsecs")
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9410. {
  9411. front: {
  9412. height: math.unit(6, "feet"),
  9413. weight: math.unit(150, "lb"),
  9414. name: "Front",
  9415. image: {
  9416. source: "./media/characters/ky'owin/front.svg",
  9417. extra: 3888 / 3068,
  9418. bottom: 0.015
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(6 + 8 / 12, "feet")
  9426. },
  9427. {
  9428. name: "Large",
  9429. height: math.unit(68, "feet")
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(132, "feet")
  9434. },
  9435. {
  9436. name: "Macro+",
  9437. height: math.unit(340, "feet")
  9438. },
  9439. {
  9440. name: "Macro++",
  9441. height: math.unit(680, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Megamacro",
  9446. height: math.unit(1, "mile")
  9447. },
  9448. {
  9449. name: "Megamacro+",
  9450. height: math.unit(10, "miles")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(4, "feet"),
  9459. weight: math.unit(50, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/mal/front.svg",
  9463. extra: 785 / 724,
  9464. bottom: 0.07
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Micro",
  9471. height: math.unit(4, "inches")
  9472. },
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(4, "feet"),
  9476. default: true
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(200, "feet")
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9486. {
  9487. front: {
  9488. height: math.unit(6, "feet"),
  9489. weight: math.unit(150, "lb"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/jordan-deware/front.svg",
  9493. extra: 1191 / 1012
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Nano",
  9500. height: math.unit(0.01, "mm")
  9501. },
  9502. {
  9503. name: "Minimicro",
  9504. height: math.unit(1, "mm")
  9505. },
  9506. {
  9507. name: "Micro",
  9508. height: math.unit(0.5, "inches")
  9509. },
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(4, "feet"),
  9513. default: true
  9514. },
  9515. {
  9516. name: "Minimacro",
  9517. height: math.unit(40, "meters")
  9518. },
  9519. {
  9520. name: "Small Macro",
  9521. height: math.unit(400, "meters")
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(4, "miles")
  9526. },
  9527. {
  9528. name: "Megamacro",
  9529. height: math.unit(40, "miles")
  9530. },
  9531. {
  9532. name: "Megamacro+",
  9533. height: math.unit(400, "miles")
  9534. },
  9535. {
  9536. name: "Gigamacro",
  9537. height: math.unit(400000, "miles")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9543. {
  9544. side: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(150, "lb"),
  9547. name: "Side",
  9548. image: {
  9549. source: "./media/characters/kimiko/side.svg",
  9550. extra: 600 / 358
  9551. }
  9552. },
  9553. },
  9554. [
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(15, "feet"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(220, "feet")
  9563. },
  9564. {
  9565. name: "Macro+",
  9566. height: math.unit(1450, "feet")
  9567. },
  9568. {
  9569. name: "Megamacro",
  9570. height: math.unit(11500, "feet")
  9571. },
  9572. {
  9573. name: "Gigamacro",
  9574. height: math.unit(9500, "miles")
  9575. },
  9576. {
  9577. name: "Teramacro",
  9578. height: math.unit(2208005005, "miles")
  9579. },
  9580. {
  9581. name: "Examacro",
  9582. height: math.unit(2750, "parsecs")
  9583. },
  9584. {
  9585. name: "Zettamacro",
  9586. height: math.unit(101500, "parsecs")
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9592. {
  9593. front: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(70, "kg"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/andrew-sleepy/front.svg"
  9599. }
  9600. },
  9601. side: {
  9602. height: math.unit(6, "feet"),
  9603. weight: math.unit(70, "kg"),
  9604. name: "Side",
  9605. image: {
  9606. source: "./media/characters/andrew-sleepy/side.svg"
  9607. }
  9608. },
  9609. },
  9610. [
  9611. {
  9612. name: "Micro",
  9613. height: math.unit(1, "mm"),
  9614. default: true
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(6, "feet"),
  9623. weight: math.unit(150, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/judio/front.svg",
  9627. extra: 1258 / 1110
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(5 + 6 / 12, "feet")
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(1000, "feet"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(10, "miles")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(68, "kg"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/nomaxice/front.svg",
  9656. extra: 1498 / 1073,
  9657. bottom: 0.075
  9658. }
  9659. },
  9660. foot: {
  9661. height: math.unit(1.1, "feet"),
  9662. name: "Foot",
  9663. image: {
  9664. source: "./media/characters/nomaxice/foot.svg"
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Micro",
  9671. height: math.unit(8, "cm")
  9672. },
  9673. {
  9674. name: "Norm",
  9675. height: math.unit(1.82, "m")
  9676. },
  9677. {
  9678. name: "Norm+",
  9679. height: math.unit(8.8, "feet")
  9680. },
  9681. {
  9682. name: "Big",
  9683. height: math.unit(8, "meters"),
  9684. default: true
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(18, "meters")
  9689. },
  9690. {
  9691. name: "Macro+",
  9692. height: math.unit(88, "meters")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(12, "feet"),
  9701. weight: math.unit(1.5, "tons"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/dydros/front.svg",
  9705. extra: 863 / 800,
  9706. bottom: 0.015
  9707. }
  9708. },
  9709. back: {
  9710. height: math.unit(12, "feet"),
  9711. weight: math.unit(1.5, "tons"),
  9712. name: "Back",
  9713. image: {
  9714. source: "./media/characters/dydros/back.svg",
  9715. extra: 900 / 843,
  9716. bottom: 0.005
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Normal",
  9723. height: math.unit(12, "feet"),
  9724. default: true
  9725. },
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9730. {
  9731. front: {
  9732. height: math.unit(6, "feet"),
  9733. weight: math.unit(100, "kg"),
  9734. name: "Front",
  9735. image: {
  9736. source: "./media/characters/riggi/front.svg",
  9737. extra: 5787 / 5303
  9738. }
  9739. },
  9740. hyper: {
  9741. height: math.unit(6 * 5 / 3, "feet"),
  9742. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9743. name: "Hyper",
  9744. image: {
  9745. source: "./media/characters/riggi/hyper.svg",
  9746. extra: 3595 / 3485
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Small Macro",
  9753. height: math.unit(50, "feet")
  9754. },
  9755. {
  9756. name: "Default",
  9757. height: math.unit(200, "feet"),
  9758. default: true
  9759. },
  9760. {
  9761. name: "Loom",
  9762. height: math.unit(10000, "feet")
  9763. },
  9764. {
  9765. name: "Cruising Altitude",
  9766. height: math.unit(30000, "feet")
  9767. },
  9768. {
  9769. name: "Megamacro",
  9770. height: math.unit(100, "miles")
  9771. },
  9772. {
  9773. name: "Continent Sized",
  9774. height: math.unit(2800, "miles")
  9775. },
  9776. {
  9777. name: "Earth Sized",
  9778. height: math.unit(8000, "miles")
  9779. },
  9780. ]
  9781. ))
  9782. characterMakers.push(() => makeCharacter(
  9783. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9784. {
  9785. front: {
  9786. height: math.unit(6, "feet"),
  9787. weight: math.unit(250, "lb"),
  9788. name: "Front",
  9789. image: {
  9790. source: "./media/characters/alexi/front.svg",
  9791. extra: 3483 / 3291,
  9792. bottom: 0.04
  9793. }
  9794. },
  9795. back: {
  9796. height: math.unit(6, "feet"),
  9797. weight: math.unit(250, "lb"),
  9798. name: "Back",
  9799. image: {
  9800. source: "./media/characters/alexi/back.svg",
  9801. extra: 3533 / 3356,
  9802. bottom: 0.021
  9803. }
  9804. },
  9805. frontTransforming: {
  9806. height: math.unit(8.58, "feet"),
  9807. weight: math.unit(1300, "lb"),
  9808. name: "Transforming",
  9809. image: {
  9810. source: "./media/characters/alexi/front-transforming.svg",
  9811. extra: 437 / 409,
  9812. bottom: 19/458.66
  9813. }
  9814. },
  9815. frontTransformed: {
  9816. height: math.unit(12.5, "feet"),
  9817. weight: math.unit(4000, "lb"),
  9818. name: "Transformed",
  9819. image: {
  9820. source: "./media/characters/alexi/front-transformed.svg",
  9821. extra: 639 / 614,
  9822. bottom: 30.55/671
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(3, "meters"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Minimacro",
  9834. height: math.unit(30, "meters")
  9835. },
  9836. {
  9837. name: "Macro",
  9838. height: math.unit(500, "meters")
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(9000, "km")
  9843. },
  9844. {
  9845. name: "Teramacro",
  9846. height: math.unit(384000, "km")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(150, "lb"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/kayroo/front.svg",
  9859. extra: 1153 / 1038,
  9860. bottom: 0.06
  9861. }
  9862. },
  9863. foot: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(150, "lb"),
  9866. name: "Foot",
  9867. image: {
  9868. source: "./media/characters/kayroo/foot.svg"
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(8, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Minimacro",
  9880. height: math.unit(250, "feet")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(2800, "feet")
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(5200, "feet")
  9889. },
  9890. {
  9891. name: "Gigamacro",
  9892. height: math.unit(27000, "feet")
  9893. },
  9894. {
  9895. name: "Omega",
  9896. height: math.unit(45000, "feet")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(18, "feet"),
  9905. weight: math.unit(5800, "lb"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/rhys/front.svg",
  9909. extra: 3386 / 3090,
  9910. bottom: 0.07
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(18, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Working Size",
  9922. height: math.unit(200, "feet")
  9923. },
  9924. {
  9925. name: "Demolition Size",
  9926. height: math.unit(2000, "feet")
  9927. },
  9928. {
  9929. name: "Maximum Licensed Size",
  9930. height: math.unit(5, "miles")
  9931. },
  9932. {
  9933. name: "Maximum Observed Size",
  9934. height: math.unit(10, "yottameters")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(250, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/toto/front.svg",
  9947. extra: 527 / 479,
  9948. bottom: 0.05
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Micro",
  9955. height: math.unit(3, "feet")
  9956. },
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(10, "feet")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(150, "feet"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(1200, "feet")
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "King", species: ["lion"], tags: ["anthro"] },
  9974. {
  9975. back: {
  9976. height: math.unit(6, "feet"),
  9977. weight: math.unit(150, "lb"),
  9978. name: "Back",
  9979. image: {
  9980. source: "./media/characters/king/back.svg"
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Micro",
  9987. height: math.unit(2, "inches")
  9988. },
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(8, "feet")
  9992. },
  9993. {
  9994. name: "Macro",
  9995. height: math.unit(200, "feet"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(50, "miles")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10006. {
  10007. anthro: {
  10008. height: math.unit(6 + 5 / 12, "feet"),
  10009. weight: math.unit(280, "lb"),
  10010. name: "Anthro",
  10011. image: {
  10012. source: "./media/characters/cordite/anthro.svg",
  10013. extra: 1986 / 1905,
  10014. bottom: 0.025
  10015. }
  10016. },
  10017. feral: {
  10018. height: math.unit(2, "feet"),
  10019. weight: math.unit(90, "lb"),
  10020. name: "Feral",
  10021. image: {
  10022. source: "./media/characters/cordite/feral.svg",
  10023. extra: 1260 / 755,
  10024. bottom: 0.05
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Normal",
  10031. height: math.unit(6 + 5 / 12, "feet"),
  10032. default: true
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(150, "lb"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/pianostrong/front.svg",
  10045. extra: 6577 / 6254,
  10046. bottom: 0.02
  10047. }
  10048. },
  10049. side: {
  10050. height: math.unit(6, "feet"),
  10051. weight: math.unit(150, "lb"),
  10052. name: "Side",
  10053. image: {
  10054. source: "./media/characters/pianostrong/side.svg",
  10055. extra: 6106 / 5730
  10056. }
  10057. },
  10058. back: {
  10059. height: math.unit(6, "feet"),
  10060. weight: math.unit(150, "lb"),
  10061. name: "Back",
  10062. image: {
  10063. source: "./media/characters/pianostrong/back.svg",
  10064. extra: 6085 / 5733,
  10065. bottom: 0.01
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Macro",
  10072. height: math.unit(100, "feet")
  10073. },
  10074. {
  10075. name: "Macro+",
  10076. height: math.unit(300, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Macro++",
  10081. height: math.unit(1000, "feet")
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10087. {
  10088. front: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(150, "lb"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/kona/front.svg",
  10094. extra: 2960 / 2629,
  10095. bottom: 0.005
  10096. }
  10097. },
  10098. },
  10099. [
  10100. {
  10101. name: "Normal",
  10102. height: math.unit(11 + 8 / 12, "feet")
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(850, "feet"),
  10107. default: true
  10108. },
  10109. {
  10110. name: "Macro+",
  10111. height: math.unit(1.5, "km"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Megamacro",
  10116. height: math.unit(80, "miles")
  10117. },
  10118. {
  10119. name: "Gigamacro",
  10120. height: math.unit(3500, "miles")
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10126. {
  10127. side: {
  10128. height: math.unit(1.9, "meters"),
  10129. weight: math.unit(326, "kg"),
  10130. name: "Side",
  10131. image: {
  10132. source: "./media/characters/levi/side.svg",
  10133. extra: 1704 / 1334,
  10134. bottom: 0.02
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(1.9, "meters"),
  10142. default: true
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(20, "meters")
  10147. },
  10148. {
  10149. name: "Macro+",
  10150. height: math.unit(200, "meters")
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(2, "km")
  10155. },
  10156. {
  10157. name: "Megamacro+",
  10158. height: math.unit(20, "km")
  10159. },
  10160. {
  10161. name: "Gigamacro",
  10162. height: math.unit(2500, "km")
  10163. },
  10164. {
  10165. name: "Gigamacro+",
  10166. height: math.unit(120000, "km")
  10167. },
  10168. {
  10169. name: "Teramacro",
  10170. height: math.unit(7.77e6, "km")
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6 + 4 / 12, "feet"),
  10179. weight: math.unit(188, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/bmc/front.svg",
  10183. extra: 1067 / 1022,
  10184. bottom: 0.047
  10185. }
  10186. },
  10187. },
  10188. [
  10189. {
  10190. name: "Human-sized",
  10191. height: math.unit(6 + 4 / 12, "feet")
  10192. },
  10193. {
  10194. name: "Small",
  10195. height: math.unit(250, "feet")
  10196. },
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(1250, "feet"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Good Day",
  10204. height: math.unit(88, "miles")
  10205. },
  10206. {
  10207. name: "Largest Measured Size",
  10208. height: math.unit(11.2e6, "lightyears")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10214. {
  10215. front: {
  10216. height: math.unit(20, "feet"),
  10217. weight: math.unit(2016, "kg"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/sven-the-kaiju/front.svg",
  10221. extra: 1479 / 1449,
  10222. bottom: 0.05
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Fairy",
  10229. height: math.unit(6, "inches")
  10230. },
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(20, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Rampage",
  10238. height: math.unit(200, "feet")
  10239. },
  10240. {
  10241. name: "Archfey Forest Guardian",
  10242. height: math.unit(1, "mile")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(4, "meters"),
  10251. weight: math.unit(2, "tons"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/marik/front.svg",
  10255. extra: 1057 / 1003,
  10256. bottom: 0.08
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(4, "meters"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(20, "meters")
  10269. },
  10270. {
  10271. name: "Megamacro",
  10272. height: math.unit(50, "km")
  10273. },
  10274. {
  10275. name: "Gigamacro",
  10276. height: math.unit(100, "km")
  10277. },
  10278. {
  10279. name: "Alpha Macro",
  10280. height: math.unit(7.88e7, "yottameters")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(110, "lb"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/mel/front.svg",
  10293. extra: 736 / 617,
  10294. bottom: 0.017
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Pico",
  10301. height: math.unit(3, "pm")
  10302. },
  10303. {
  10304. name: "Nano",
  10305. height: math.unit(3, "nm")
  10306. },
  10307. {
  10308. name: "Micro",
  10309. height: math.unit(0.3, "mm"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Micro+",
  10314. height: math.unit(3, "mm")
  10315. },
  10316. {
  10317. name: "Normal",
  10318. height: math.unit(5 + 10.5 / 12, "feet")
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10324. {
  10325. kaiju: {
  10326. height: math.unit(1.75, "meters"),
  10327. weight: math.unit(55, "kg"),
  10328. name: "Kaiju",
  10329. image: {
  10330. source: "./media/characters/lykonous/kaiju.svg",
  10331. extra: 1055 / 946,
  10332. bottom: 0.135
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Normal",
  10339. height: math.unit(2.5, "meters"),
  10340. default: true
  10341. },
  10342. {
  10343. name: "Kaiju Dragon",
  10344. height: math.unit(60, "meters")
  10345. },
  10346. {
  10347. name: "Mega Kaiju",
  10348. height: math.unit(120, "km")
  10349. },
  10350. {
  10351. name: "Giga Kaiju",
  10352. height: math.unit(200, "megameters")
  10353. },
  10354. {
  10355. name: "Terra Kaiju",
  10356. height: math.unit(400, "gigameters")
  10357. },
  10358. {
  10359. name: "Kaiju Dragon God",
  10360. height: math.unit(13000, "exaparsecs")
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10366. {
  10367. front: {
  10368. height: math.unit(6, "feet"),
  10369. weight: math.unit(150, "lb"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/blü/front.svg",
  10373. extra: 1883 / 1564,
  10374. bottom: 0.031
  10375. }
  10376. },
  10377. },
  10378. [
  10379. {
  10380. name: "Normal",
  10381. height: math.unit(13, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Big Boi",
  10386. height: math.unit(150, "meters")
  10387. },
  10388. {
  10389. name: "Mini Stomper",
  10390. height: math.unit(300, "meters")
  10391. },
  10392. {
  10393. name: "Macro",
  10394. height: math.unit(1000, "meters")
  10395. },
  10396. {
  10397. name: "Megamacro",
  10398. height: math.unit(11000, "meters")
  10399. },
  10400. {
  10401. name: "Gigamacro",
  10402. height: math.unit(11000, "km")
  10403. },
  10404. {
  10405. name: "Teramacro",
  10406. height: math.unit(420000, "km")
  10407. },
  10408. {
  10409. name: "Examacro",
  10410. height: math.unit(120, "parsecs")
  10411. },
  10412. {
  10413. name: "God Tho",
  10414. height: math.unit(98000000000, "parsecs")
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10420. {
  10421. taurFront: {
  10422. height: math.unit(6, "feet"),
  10423. weight: math.unit(200, "lb"),
  10424. name: "Taur (Front)",
  10425. image: {
  10426. source: "./media/characters/scales/taur-front.svg",
  10427. extra: 1,
  10428. bottom: 0.05
  10429. }
  10430. },
  10431. taurBack: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(200, "lb"),
  10434. name: "Taur (Back)",
  10435. image: {
  10436. source: "./media/characters/scales/taur-back.svg",
  10437. extra: 1,
  10438. bottom: 0.08
  10439. }
  10440. },
  10441. anthro: {
  10442. height: math.unit(6 * 7 / 12, "feet"),
  10443. weight: math.unit(100, "lb"),
  10444. name: "Anthro",
  10445. image: {
  10446. source: "./media/characters/scales/anthro.svg",
  10447. extra: 1,
  10448. bottom: 0.06
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(12, "feet"),
  10456. default: true
  10457. },
  10458. ]
  10459. ))
  10460. characterMakers.push(() => makeCharacter(
  10461. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10462. {
  10463. front: {
  10464. height: math.unit(6, "feet"),
  10465. weight: math.unit(150, "lb"),
  10466. name: "Front",
  10467. image: {
  10468. source: "./media/characters/koragos/front.svg",
  10469. extra: 841 / 794,
  10470. bottom: 0.035
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(150, "lb"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/koragos/back.svg",
  10479. extra: 841 / 810,
  10480. bottom: 0.022
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(6 + 11 / 12, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(490, "feet")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(10, "miles")
  10497. },
  10498. {
  10499. name: "Gigamacro",
  10500. height: math.unit(50, "miles")
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(250, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/xylrem/front.svg",
  10513. extra: 3323 / 3050,
  10514. bottom: 0.065
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Micro",
  10521. height: math.unit(4, "feet")
  10522. },
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(16, "feet"),
  10526. default: true
  10527. },
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(2720, "feet")
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(25000, "miles")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(8, "feet"),
  10543. weight: math.unit(250, "kg"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/ikideru/front.svg",
  10547. extra: 930 / 870,
  10548. bottom: 0.087
  10549. }
  10550. },
  10551. back: {
  10552. height: math.unit(8, "feet"),
  10553. weight: math.unit(250, "kg"),
  10554. name: "Back",
  10555. image: {
  10556. source: "./media/characters/ikideru/back.svg",
  10557. extra: 919 / 852,
  10558. bottom: 0.055
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Rare",
  10565. height: math.unit(8, "feet"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Playful Loom",
  10570. height: math.unit(80, "feet")
  10571. },
  10572. {
  10573. name: "City Leaner",
  10574. height: math.unit(230, "feet")
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(2500, "feet")
  10579. },
  10580. {
  10581. name: "Gigamacro",
  10582. height: math.unit(26400, "feet")
  10583. },
  10584. {
  10585. name: "Tectonic Shifter",
  10586. height: math.unit(1.7, "megameters")
  10587. },
  10588. {
  10589. name: "Planet Carer",
  10590. height: math.unit(21, "megameters")
  10591. },
  10592. {
  10593. name: "God",
  10594. height: math.unit(11157.22, "parsecs")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(120, "lb"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/neo/front.svg"
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Micro",
  10613. height: math.unit(2, "inches"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Human Size",
  10618. height: math.unit(5 + 8 / 12, "feet")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(13 + 10 / 12, "feet"),
  10627. weight: math.unit(5320, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/chauncey-chantz/front.svg",
  10631. extra: 1587 / 1435,
  10632. bottom: 0.02
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Normal",
  10639. height: math.unit(13 + 10 / 12, "feet"),
  10640. default: true
  10641. },
  10642. {
  10643. name: "Macro",
  10644. height: math.unit(45, "feet")
  10645. },
  10646. {
  10647. name: "Megamacro",
  10648. height: math.unit(250, "miles")
  10649. },
  10650. {
  10651. name: "Planetary",
  10652. height: math.unit(10000, "miles")
  10653. },
  10654. {
  10655. name: "Galactic",
  10656. height: math.unit(40000, "parsecs")
  10657. },
  10658. {
  10659. name: "Universal",
  10660. height: math.unit(1, "yottameter")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10666. {
  10667. front: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(150, "lb"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/epifox/front.svg",
  10673. extra: 1,
  10674. bottom: 0.075
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Micro",
  10681. height: math.unit(6, "inches")
  10682. },
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(12, "feet"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Macro",
  10690. height: math.unit(3810, "feet")
  10691. },
  10692. {
  10693. name: "Megamacro",
  10694. height: math.unit(500, "miles")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10700. {
  10701. front: {
  10702. height: math.unit(1.8796, "m"),
  10703. weight: math.unit(230, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/colin-t/front.svg",
  10707. extra: 1272 / 1193,
  10708. bottom: 0.07
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Micro",
  10715. height: math.unit(0.571, "meters")
  10716. },
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(1.8796, "meters"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Tall",
  10724. height: math.unit(4, "meters")
  10725. },
  10726. {
  10727. name: "Macro",
  10728. height: math.unit(67.241, "meters")
  10729. },
  10730. {
  10731. name: "Megamacro",
  10732. height: math.unit(371.856, "meters")
  10733. },
  10734. {
  10735. name: "Planetary",
  10736. height: math.unit(12631.5689, "km")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10742. {
  10743. front: {
  10744. height: math.unit(1.85, "meters"),
  10745. weight: math.unit(80, "kg"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/matvei/front.svg",
  10749. extra: 614 / 594,
  10750. bottom: 0.01
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(1.85, "meters"),
  10758. default: true
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(5 + 9 / 12, "feet"),
  10767. weight: math.unit(70, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/quincy/front.svg",
  10771. extra: 3041 / 2751
  10772. }
  10773. },
  10774. back: {
  10775. height: math.unit(5 + 9 / 12, "feet"),
  10776. weight: math.unit(70, "lb"),
  10777. name: "Back",
  10778. image: {
  10779. source: "./media/characters/quincy/back.svg",
  10780. extra: 3041 / 2751
  10781. }
  10782. },
  10783. flying: {
  10784. height: math.unit(5 + 4 / 12, "feet"),
  10785. weight: math.unit(70, "lb"),
  10786. name: "Flying",
  10787. image: {
  10788. source: "./media/characters/quincy/flying.svg",
  10789. extra: 1044 / 930
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Micro",
  10796. height: math.unit(3, "cm")
  10797. },
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(5 + 9 / 12, "feet")
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(200, "meters"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Megamacro",
  10809. height: math.unit(1000, "meters")
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(4 + 7 / 12, "feet"),
  10818. weight: math.unit(150, "lb"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/vanrel/front.svg",
  10822. extra: 1,
  10823. bottom: 0.02
  10824. }
  10825. },
  10826. elemental: {
  10827. height: math.unit(3, "feet"),
  10828. weight: math.unit(150, "lb"),
  10829. name: "Elemental",
  10830. image: {
  10831. source: "./media/characters/vanrel/elemental.svg",
  10832. extra: 192.3/162.8,
  10833. bottom: 1.79/194.17
  10834. }
  10835. },
  10836. side: {
  10837. height: math.unit(4 + 7 / 12, "feet"),
  10838. weight: math.unit(150, "lb"),
  10839. name: "Side",
  10840. image: {
  10841. source: "./media/characters/vanrel/side.svg",
  10842. extra: 1,
  10843. bottom: 0.025
  10844. }
  10845. },
  10846. tome: {
  10847. height: math.unit(1.35, "feet"),
  10848. weight: math.unit(10, "lb"),
  10849. name: "Vanrel's Tome",
  10850. rename: true,
  10851. image: {
  10852. source: "./media/characters/vanrel/tome.svg"
  10853. }
  10854. },
  10855. beans: {
  10856. height: math.unit(0.89, "feet"),
  10857. name: "Beans",
  10858. image: {
  10859. source: "./media/characters/vanrel/beans.svg"
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Normal",
  10866. height: math.unit(4 + 7 / 12, "feet"),
  10867. default: true
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10873. {
  10874. front: {
  10875. height: math.unit(7 + 5 / 12, "feet"),
  10876. weight: math.unit(150, "lb"),
  10877. name: "Front",
  10878. image: {
  10879. source: "./media/characters/kuiper-vanrel/front.svg",
  10880. extra: 1118 / 1068,
  10881. bottom: 0.09
  10882. }
  10883. },
  10884. foot: {
  10885. height: math.unit(0.55, "meters"),
  10886. name: "Foot",
  10887. image: {
  10888. source: "./media/characters/kuiper-vanrel/foot.svg",
  10889. }
  10890. },
  10891. battle: {
  10892. height: math.unit(6.824, "feet"),
  10893. weight: math.unit(150, "lb"),
  10894. name: "Battle",
  10895. image: {
  10896. source: "./media/characters/kuiper-vanrel/battle.svg",
  10897. extra: 1466/1327,
  10898. bottom: 29/1492.5
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Normal",
  10905. height: math.unit(7 + 5 / 12, "feet"),
  10906. default: true
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(8 + 5 / 12, "feet"),
  10915. weight: math.unit(150, "lb"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/keset-vanrel/front.svg",
  10919. extra: 1150 / 1084,
  10920. bottom: 0.05
  10921. }
  10922. },
  10923. hand: {
  10924. height: math.unit(0.6, "meters"),
  10925. name: "Hand",
  10926. image: {
  10927. source: "./media/characters/keset-vanrel/hand.svg"
  10928. }
  10929. },
  10930. foot: {
  10931. height: math.unit(0.94978, "meters"),
  10932. name: "Foot",
  10933. image: {
  10934. source: "./media/characters/keset-vanrel/foot.svg"
  10935. }
  10936. },
  10937. battle: {
  10938. height: math.unit(7.408, "feet"),
  10939. weight: math.unit(150, "lb"),
  10940. name: "Battle",
  10941. image: {
  10942. source: "./media/characters/keset-vanrel/battle.svg",
  10943. extra: 1890/1386,
  10944. bottom: 73.28/1970
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(8 + 5 / 12, "feet"),
  10952. default: true
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10958. {
  10959. front: {
  10960. height: math.unit(6, "feet"),
  10961. weight: math.unit(150, "lb"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/neos/front.svg",
  10965. extra: 1696 / 992,
  10966. bottom: 0.14
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(54, "cm"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(100, "m")
  10979. },
  10980. {
  10981. name: "Megamacro",
  10982. height: math.unit(10, "km")
  10983. },
  10984. {
  10985. name: "Megamacro+",
  10986. height: math.unit(100, "km")
  10987. },
  10988. {
  10989. name: "Gigamacro",
  10990. height: math.unit(100, "Mm")
  10991. },
  10992. {
  10993. name: "Teramacro",
  10994. height: math.unit(100, "Gm")
  10995. },
  10996. {
  10997. name: "Examacro",
  10998. height: math.unit(100, "Em")
  10999. },
  11000. {
  11001. name: "Godly",
  11002. height: math.unit(10000, "Ym")
  11003. },
  11004. {
  11005. name: "Beyond Godly",
  11006. height: math.unit(10000000, "Ym")
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11012. {
  11013. feminine: {
  11014. height: math.unit(5, "feet"),
  11015. weight: math.unit(100, "lb"),
  11016. name: "Feminine",
  11017. image: {
  11018. source: "./media/characters/sammy-mouse/feminine.svg",
  11019. extra: 2526 / 2425,
  11020. bottom: 0.123
  11021. }
  11022. },
  11023. masculine: {
  11024. height: math.unit(5, "feet"),
  11025. weight: math.unit(100, "lb"),
  11026. name: "Masculine",
  11027. image: {
  11028. source: "./media/characters/sammy-mouse/masculine.svg",
  11029. extra: 2526 / 2425,
  11030. bottom: 0.123
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Micro",
  11037. height: math.unit(5, "inches")
  11038. },
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(5, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Macro",
  11046. height: math.unit(60, "feet")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(4, "feet"),
  11055. weight: math.unit(50, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/kole/front.svg",
  11059. extra: 1423 / 1303,
  11060. bottom: 0.025
  11061. }
  11062. },
  11063. back: {
  11064. height: math.unit(4, "feet"),
  11065. weight: math.unit(50, "lb"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/kole/back.svg",
  11069. extra: 1426 / 1280,
  11070. bottom: 0.02
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Normal",
  11077. height: math.unit(4, "feet"),
  11078. default: true
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11084. {
  11085. front: {
  11086. height: math.unit(2 + 6 / 12, "feet"),
  11087. weight: math.unit(20, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/rufran/front.svg",
  11091. extra: 2041 / 1839,
  11092. bottom: 0.055
  11093. }
  11094. },
  11095. back: {
  11096. height: math.unit(2 + 6 / 12, "feet"),
  11097. weight: math.unit(20, "lb"),
  11098. name: "Back",
  11099. image: {
  11100. source: "./media/characters/rufran/back.svg",
  11101. extra: 2054 / 1839,
  11102. bottom: 0.01
  11103. }
  11104. },
  11105. hand: {
  11106. height: math.unit(0.2166, "meters"),
  11107. name: "Hand",
  11108. image: {
  11109. source: "./media/characters/rufran/hand.svg"
  11110. }
  11111. },
  11112. foot: {
  11113. height: math.unit(0.185, "meters"),
  11114. name: "Foot",
  11115. image: {
  11116. source: "./media/characters/rufran/foot.svg"
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Micro",
  11123. height: math.unit(1, "inch")
  11124. },
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(2 + 6 / 12, "feet"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Big",
  11132. height: math.unit(60, "feet")
  11133. },
  11134. {
  11135. name: "Macro",
  11136. height: math.unit(325, "feet")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(0.3, "meters"),
  11145. weight: math.unit(3.5, "kg"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/chip/front.svg",
  11149. extra: 748 / 674
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Micro",
  11156. height: math.unit(1, "inch"),
  11157. default: true
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11163. {
  11164. side: {
  11165. height: math.unit(2.3, "meters"),
  11166. weight: math.unit(3500, "lb"),
  11167. name: "Side",
  11168. image: {
  11169. source: "./media/characters/torvid/side.svg",
  11170. extra: 1972 / 722,
  11171. bottom: 0.035
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(2.3, "meters"),
  11179. default: true
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(2, "meters"),
  11188. weight: math.unit(150.5, "kg"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/susan/front.svg",
  11192. extra: 693 / 635,
  11193. bottom: 0.05
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Megamacro",
  11200. height: math.unit(505, "miles"),
  11201. default: true
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11207. {
  11208. front: {
  11209. height: math.unit(6, "feet"),
  11210. weight: math.unit(150, "lb"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/raindrops/front.svg",
  11214. extra: 2655 / 2461,
  11215. bottom: 0.02
  11216. }
  11217. },
  11218. back: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Back",
  11222. image: {
  11223. source: "./media/characters/raindrops/back.svg",
  11224. extra: 2574 / 2400,
  11225. bottom: 0.03
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Micro",
  11232. height: math.unit(6, "inches")
  11233. },
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(6 + 2 / 12, "feet")
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(131, "feet"),
  11241. default: true
  11242. },
  11243. {
  11244. name: "Megamacro",
  11245. height: math.unit(15, "miles")
  11246. },
  11247. {
  11248. name: "Gigamacro",
  11249. height: math.unit(4000, "miles")
  11250. },
  11251. {
  11252. name: "Teramacro",
  11253. height: math.unit(315000, "miles")
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11259. {
  11260. front: {
  11261. height: math.unit(2.794, "meters"),
  11262. weight: math.unit(325, "kg"),
  11263. name: "Front",
  11264. image: {
  11265. source: "./media/characters/tezwa/front.svg",
  11266. extra: 2083 / 1906,
  11267. bottom: 0.031
  11268. }
  11269. },
  11270. foot: {
  11271. height: math.unit(0.687, "meters"),
  11272. name: "Foot",
  11273. image: {
  11274. source: "./media/characters/tezwa/foot.svg"
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(9 + 2 / 12, "feet"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(58, "feet"),
  11291. weight: math.unit(89000, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/typhus/front.svg",
  11295. extra: 816 / 800,
  11296. bottom: 0.065
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(58, "feet"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(12, "feet"),
  11313. weight: math.unit(6, "tonnes"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/lyra-von-wulf/front.svg",
  11317. extra: 1,
  11318. bottom: 0.10
  11319. }
  11320. },
  11321. frontMecha: {
  11322. height: math.unit(12, "feet"),
  11323. weight: math.unit(12, "tonnes"),
  11324. name: "Front (Mecha)",
  11325. image: {
  11326. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11327. extra: 1,
  11328. bottom: 0.042
  11329. }
  11330. },
  11331. maw: {
  11332. height: math.unit(2.2, "feet"),
  11333. name: "Maw",
  11334. image: {
  11335. source: "./media/characters/lyra-von-wulf/maw.svg"
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(12, "feet"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Classic",
  11347. height: math.unit(50, "feet")
  11348. },
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(500, "feet")
  11352. },
  11353. {
  11354. name: "Megamacro",
  11355. height: math.unit(1, "mile")
  11356. },
  11357. {
  11358. name: "Gigamacro",
  11359. height: math.unit(400, "miles")
  11360. },
  11361. {
  11362. name: "Teramacro",
  11363. height: math.unit(22000, "miles")
  11364. },
  11365. {
  11366. name: "Solarmacro",
  11367. height: math.unit(8600000, "miles")
  11368. },
  11369. {
  11370. name: "Galactic",
  11371. height: math.unit(1057000, "lightyears")
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11377. {
  11378. front: {
  11379. height: math.unit(6 + 10 / 12, "feet"),
  11380. weight: math.unit(150, "lb"),
  11381. name: "Front",
  11382. image: {
  11383. source: "./media/characters/dixon/front.svg",
  11384. extra: 3361 / 3209,
  11385. bottom: 0.01
  11386. }
  11387. },
  11388. },
  11389. [
  11390. {
  11391. name: "Normal",
  11392. height: math.unit(6 + 10 / 12, "feet"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Big",
  11397. height: math.unit(12, "meters")
  11398. },
  11399. {
  11400. name: "Macro",
  11401. height: math.unit(500, "meters")
  11402. },
  11403. {
  11404. name: "Megamacro",
  11405. height: math.unit(2, "km")
  11406. },
  11407. ]
  11408. ))
  11409. characterMakers.push(() => makeCharacter(
  11410. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11411. {
  11412. front: {
  11413. height: math.unit(185, "cm"),
  11414. weight: math.unit(68, "kg"),
  11415. name: "Front",
  11416. image: {
  11417. source: "./media/characters/kauko/front.svg",
  11418. extra: 1455 / 1421,
  11419. bottom: 0.03
  11420. }
  11421. },
  11422. back: {
  11423. height: math.unit(185, "cm"),
  11424. weight: math.unit(68, "kg"),
  11425. name: "Back",
  11426. image: {
  11427. source: "./media/characters/kauko/back.svg",
  11428. extra: 1455 / 1421,
  11429. bottom: 0.004
  11430. }
  11431. },
  11432. },
  11433. [
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(185, "cm"),
  11437. default: true
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11443. {
  11444. front: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(150, "kg"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/varg/front.svg",
  11450. extra: 1108 / 1018,
  11451. bottom: 0.0375
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(5, "meters")
  11459. },
  11460. {
  11461. name: "Macro",
  11462. height: math.unit(200, "meters")
  11463. },
  11464. {
  11465. name: "Megamacro",
  11466. height: math.unit(20, "kilometers")
  11467. },
  11468. {
  11469. name: "True Size",
  11470. height: math.unit(211, "km"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Gigamacro",
  11475. height: math.unit(1000, "km")
  11476. },
  11477. {
  11478. name: "Gigamacro+",
  11479. height: math.unit(8000, "km")
  11480. },
  11481. {
  11482. name: "Teramacro",
  11483. height: math.unit(1000000, "km")
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11489. {
  11490. front: {
  11491. height: math.unit(7 + 7 / 12, "feet"),
  11492. weight: math.unit(267, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/dayza/front.svg",
  11496. extra: 1262 / 1200,
  11497. bottom: 0.035
  11498. }
  11499. },
  11500. side: {
  11501. height: math.unit(7 + 7 / 12, "feet"),
  11502. weight: math.unit(267, "lb"),
  11503. name: "Side",
  11504. image: {
  11505. source: "./media/characters/dayza/side.svg",
  11506. extra: 1295 / 1245,
  11507. bottom: 0.05
  11508. }
  11509. },
  11510. back: {
  11511. height: math.unit(7 + 7 / 12, "feet"),
  11512. weight: math.unit(267, "lb"),
  11513. name: "Back",
  11514. image: {
  11515. source: "./media/characters/dayza/back.svg",
  11516. extra: 1241 / 1170
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(7 + 7 / 12, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Macro",
  11528. height: math.unit(155, "feet")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(6 + 5 / 12, "feet"),
  11537. weight: math.unit(160, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/xanthos/front.svg",
  11541. extra: 1,
  11542. bottom: 0.04
  11543. }
  11544. },
  11545. back: {
  11546. height: math.unit(6 + 5 / 12, "feet"),
  11547. weight: math.unit(160, "lb"),
  11548. name: "Back",
  11549. image: {
  11550. source: "./media/characters/xanthos/back.svg",
  11551. extra: 1,
  11552. bottom: 0.03
  11553. }
  11554. },
  11555. hand: {
  11556. height: math.unit(0.928, "feet"),
  11557. name: "Hand",
  11558. image: {
  11559. source: "./media/characters/xanthos/hand.svg"
  11560. }
  11561. },
  11562. foot: {
  11563. height: math.unit(1.286, "feet"),
  11564. name: "Foot",
  11565. image: {
  11566. source: "./media/characters/xanthos/foot.svg"
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(6 + 5 / 12, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Normal+",
  11578. height: math.unit(6, "meters")
  11579. },
  11580. {
  11581. name: "Macro",
  11582. height: math.unit(40, "feet")
  11583. },
  11584. {
  11585. name: "Macro+",
  11586. height: math.unit(200, "meters")
  11587. },
  11588. {
  11589. name: "Megamacro",
  11590. height: math.unit(20, "km")
  11591. },
  11592. {
  11593. name: "Megamacro+",
  11594. height: math.unit(100, "km")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(6 + 3 / 12, "feet"),
  11603. weight: math.unit(215, "lb"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/grynn/front.svg",
  11607. extra: 4627 / 4209,
  11608. bottom: 0.047
  11609. }
  11610. },
  11611. },
  11612. [
  11613. {
  11614. name: "Micro",
  11615. height: math.unit(6, "inches")
  11616. },
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(6 + 3 / 12, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Big",
  11624. height: math.unit(104, "feet")
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(944, "feet")
  11629. },
  11630. {
  11631. name: "Macro+",
  11632. height: math.unit(9480, "feet")
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(78752, "feet")
  11637. },
  11638. {
  11639. name: "Megamacro+",
  11640. height: math.unit(630128, "feet")
  11641. },
  11642. {
  11643. name: "Megamacro++",
  11644. height: math.unit(3150695, "feet")
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11650. {
  11651. front: {
  11652. height: math.unit(7 + 5 / 12, "feet"),
  11653. weight: math.unit(450, "lb"),
  11654. name: "Front",
  11655. image: {
  11656. source: "./media/characters/mocha-aura/front.svg",
  11657. extra: 1907 / 1817,
  11658. bottom: 0.04
  11659. }
  11660. },
  11661. back: {
  11662. height: math.unit(7 + 5 / 12, "feet"),
  11663. weight: math.unit(450, "lb"),
  11664. name: "Back",
  11665. image: {
  11666. source: "./media/characters/mocha-aura/back.svg",
  11667. extra: 1900 / 1825,
  11668. bottom: 0.045
  11669. }
  11670. },
  11671. },
  11672. [
  11673. {
  11674. name: "Nano",
  11675. height: math.unit(1, "nm")
  11676. },
  11677. {
  11678. name: "Megamicro",
  11679. height: math.unit(1, "mm")
  11680. },
  11681. {
  11682. name: "Micro",
  11683. height: math.unit(3, "inches")
  11684. },
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(7 + 5 / 12, "feet"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(30, "feet")
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(3500, "feet")
  11697. },
  11698. {
  11699. name: "Teramacro",
  11700. height: math.unit(500000, "miles")
  11701. },
  11702. {
  11703. name: "Petamacro",
  11704. height: math.unit(50000000000000000, "parsecs")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(150, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/ilisha-devya/front.svg",
  11717. extra: 1,
  11718. bottom: 0.175
  11719. }
  11720. },
  11721. back: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(150, "lb"),
  11724. name: "Back",
  11725. image: {
  11726. source: "./media/characters/ilisha-devya/back.svg",
  11727. extra: 1,
  11728. bottom: 0.015
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Macro",
  11735. height: math.unit(500, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(10, "miles")
  11741. },
  11742. {
  11743. name: "Gigamacro",
  11744. height: math.unit(100000, "miles")
  11745. },
  11746. {
  11747. name: "Examacro",
  11748. height: math.unit(1e9, "lightyears")
  11749. },
  11750. {
  11751. name: "Omniversal",
  11752. height: math.unit(1e33, "lightyears")
  11753. },
  11754. {
  11755. name: "Beyond Infinite",
  11756. height: math.unit(1e100, "lightyears")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11762. {
  11763. Side: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Side",
  11767. image: {
  11768. source: "./media/characters/mira/side.svg",
  11769. extra: 900 / 799,
  11770. bottom: 0.02
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Human Size",
  11777. height: math.unit(6, "feet")
  11778. },
  11779. {
  11780. name: "Macro",
  11781. height: math.unit(100, "feet"),
  11782. default: true
  11783. },
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(10, "miles")
  11787. },
  11788. {
  11789. name: "Gigamacro",
  11790. height: math.unit(25000, "miles")
  11791. },
  11792. {
  11793. name: "Teramacro",
  11794. height: math.unit(300, "AU")
  11795. },
  11796. {
  11797. name: "Full Size",
  11798. height: math.unit(4.5e10, "lightyears")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/holly/front.svg",
  11811. extra: 639 / 606
  11812. }
  11813. },
  11814. back: {
  11815. height: math.unit(6, "feet"),
  11816. weight: math.unit(150, "lb"),
  11817. name: "Back",
  11818. image: {
  11819. source: "./media/characters/holly/back.svg",
  11820. extra: 623 / 598
  11821. }
  11822. },
  11823. frontWorking: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(150, "lb"),
  11826. name: "Front (Working)",
  11827. image: {
  11828. source: "./media/characters/holly/front-working.svg",
  11829. extra: 607 / 577,
  11830. bottom: 0.048
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(12 + 3 / 12, "feet"),
  11838. default: true
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/porter/front.svg",
  11851. extra: 1,
  11852. bottom: 0.01
  11853. }
  11854. },
  11855. frontRobes: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(150, "lb"),
  11858. name: "Front (Robes)",
  11859. image: {
  11860. source: "./media/characters/porter/front-robes.svg",
  11861. extra: 1.01,
  11862. bottom: 0.01
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(11 + 9 / 12, "feet"),
  11870. default: true
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11876. {
  11877. legendary: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(150, "lb"),
  11880. name: "Legendary",
  11881. image: {
  11882. source: "./media/characters/lucy/legendary.svg",
  11883. extra: 1355 / 1100,
  11884. bottom: 0.045
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Legendary",
  11891. height: math.unit(86882 * 2, "miles"),
  11892. default: true
  11893. },
  11894. ]
  11895. ))
  11896. characterMakers.push(() => makeCharacter(
  11897. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11898. {
  11899. front: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(150, "lb"),
  11902. name: "Front",
  11903. image: {
  11904. source: "./media/characters/drusilla/front.svg",
  11905. extra: 678 / 635,
  11906. bottom: 0.03
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(150, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/drusilla/back.svg",
  11915. extra: 678 / 635,
  11916. bottom: 0.005
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Macro",
  11923. height: math.unit(100, "feet")
  11924. },
  11925. {
  11926. name: "Canon Height",
  11927. height: math.unit(2000, "feet"),
  11928. default: true
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(6, "feet"),
  11937. weight: math.unit(180, "lb"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/renard-thatch/front.svg",
  11941. extra: 2411 / 2275,
  11942. bottom: 0.01
  11943. }
  11944. },
  11945. frontPosing: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(180, "lb"),
  11948. name: "Front (Posing)",
  11949. image: {
  11950. source: "./media/characters/renard-thatch/front-posing.svg",
  11951. extra: 2381 / 2261,
  11952. bottom: 0.01
  11953. }
  11954. },
  11955. back: {
  11956. height: math.unit(6, "feet"),
  11957. weight: math.unit(180, "lb"),
  11958. name: "Back",
  11959. image: {
  11960. source: "./media/characters/renard-thatch/back.svg",
  11961. extra: 2428 / 2288
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Micro",
  11968. height: math.unit(3, "inches")
  11969. },
  11970. {
  11971. name: "Default",
  11972. height: math.unit(6, "feet"),
  11973. default: true
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(75, "feet")
  11978. },
  11979. ]
  11980. ))
  11981. characterMakers.push(() => makeCharacter(
  11982. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  11983. {
  11984. front: {
  11985. height: math.unit(1450, "feet"),
  11986. weight: math.unit(1.21e6, "tons"),
  11987. name: "Front",
  11988. image: {
  11989. source: "./media/characters/sekvra/front.svg",
  11990. extra: 1,
  11991. bottom: 0.03
  11992. }
  11993. },
  11994. frontClothed: {
  11995. height: math.unit(1450, "feet"),
  11996. weight: math.unit(1.21e6, "tons"),
  11997. name: "Front (Clothed)",
  11998. image: {
  11999. source: "./media/characters/sekvra/front-clothed.svg",
  12000. extra: 1,
  12001. bottom: 0.03
  12002. }
  12003. },
  12004. side: {
  12005. height: math.unit(1450, "feet"),
  12006. weight: math.unit(1.21e6, "tons"),
  12007. name: "Side",
  12008. image: {
  12009. source: "./media/characters/sekvra/side.svg",
  12010. extra: 1,
  12011. bottom: 0.025
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(1450, "feet"),
  12016. weight: math.unit(1.21e6, "tons"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/sekvra/back.svg",
  12020. extra: 1,
  12021. bottom: 0.005
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Macro",
  12028. height: math.unit(1450, "feet"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Megamacro",
  12033. height: math.unit(15000, "feet")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(150, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/carmine/front.svg",
  12046. extra: 1,
  12047. bottom: 0.035
  12048. }
  12049. },
  12050. frontArmor: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(150, "lb"),
  12053. name: "Front (Armor)",
  12054. image: {
  12055. source: "./media/characters/carmine/front-armor.svg",
  12056. extra: 1,
  12057. bottom: 0.035
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Large",
  12064. height: math.unit(1, "mile")
  12065. },
  12066. {
  12067. name: "Huge",
  12068. height: math.unit(40, "miles"),
  12069. default: true
  12070. },
  12071. {
  12072. name: "Colossal",
  12073. height: math.unit(2500, "miles")
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(150, "lb"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/elyssia/front.svg",
  12086. extra: 2201 / 2035,
  12087. bottom: 0.05
  12088. }
  12089. },
  12090. frontClothed: {
  12091. height: math.unit(6, "feet"),
  12092. weight: math.unit(150, "lb"),
  12093. name: "Front (Clothed)",
  12094. image: {
  12095. source: "./media/characters/elyssia/front-clothed.svg",
  12096. extra: 2201 / 2035,
  12097. bottom: 0.05
  12098. }
  12099. },
  12100. back: {
  12101. height: math.unit(6, "feet"),
  12102. weight: math.unit(150, "lb"),
  12103. name: "Back",
  12104. image: {
  12105. source: "./media/characters/elyssia/back.svg",
  12106. extra: 2201 / 2035,
  12107. bottom: 0.013
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Smaller",
  12114. height: math.unit(150, "feet")
  12115. },
  12116. {
  12117. name: "Standard",
  12118. height: math.unit(1400, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Distracted",
  12123. height: math.unit(15000, "feet")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(7 + 4 / 12, "feet"),
  12132. weight: math.unit(500, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/geno-maxwell/front.svg",
  12136. extra: 2207 / 2040,
  12137. bottom: 0.015
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Micro",
  12144. height: math.unit(3, "inches")
  12145. },
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(7 + 4 / 12, "feet"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(220, "feet")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(11, "miles")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(7 + 4 / 12, "feet"),
  12166. weight: math.unit(500, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/regena-maxwell/front.svg",
  12170. extra: 3115 / 2770,
  12171. bottom: 0.02
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(7 + 4 / 12, "feet"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(220, "feet")
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(11, "miles")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12200. extra: 860 / 690,
  12201. bottom: 0.03
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(1.7, "meters"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(150, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/quilly/front.svg",
  12222. extra: 890 / 776
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Gigamacro",
  12229. height: math.unit(404090, "miles"),
  12230. default: true
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(7 + 8 / 12, "feet"),
  12239. weight: math.unit(350, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/tempest/front.svg",
  12243. extra: 1175 / 1086,
  12244. bottom: 0.02
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(7 + 8 / 12, "feet"),
  12252. default: true
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12258. {
  12259. side: {
  12260. height: math.unit(4 + 5 / 12, "feet"),
  12261. weight: math.unit(80, "lb"),
  12262. name: "Side",
  12263. image: {
  12264. source: "./media/characters/rodger/side.svg",
  12265. extra: 1235 / 1118
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(1, "inch")
  12273. },
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(4 + 5 / 12, "feet"),
  12277. default: true
  12278. },
  12279. {
  12280. name: "Macro",
  12281. height: math.unit(120, "feet")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(150, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/danyel/front.svg",
  12294. extra: 1185 / 1123,
  12295. bottom: 0.05
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Shrunken",
  12302. height: math.unit(0.5, "mm")
  12303. },
  12304. {
  12305. name: "Micro",
  12306. height: math.unit(1, "mm"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Upsized",
  12311. height: math.unit(5 + 5 / 12, "feet")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(5 + 6 / 12, "feet"),
  12320. weight: math.unit(200, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/vivian-bijoux/front.svg",
  12324. extra: 1,
  12325. bottom: 0.072
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(5 + 6 / 12, "feet"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Bad Dream",
  12337. height: math.unit(500, "feet")
  12338. },
  12339. {
  12340. name: "Nightmare",
  12341. height: math.unit(500, "miles")
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6 + 1 / 12, "feet"),
  12350. weight: math.unit(260, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/zeta/front.svg",
  12354. extra: 1968 / 1889,
  12355. bottom: 0.06
  12356. }
  12357. },
  12358. back: {
  12359. height: math.unit(6 + 1 / 12, "feet"),
  12360. weight: math.unit(260, "lb"),
  12361. name: "Back",
  12362. image: {
  12363. source: "./media/characters/zeta/back.svg",
  12364. extra: 1944 / 1858,
  12365. bottom: 0.03
  12366. }
  12367. },
  12368. hand: {
  12369. height: math.unit(1.112, "feet"),
  12370. name: "Hand",
  12371. image: {
  12372. source: "./media/characters/zeta/hand.svg"
  12373. }
  12374. },
  12375. foot: {
  12376. height: math.unit(1.48, "feet"),
  12377. name: "Foot",
  12378. image: {
  12379. source: "./media/characters/zeta/foot.svg"
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(6, "inches")
  12387. },
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(6 + 1 / 12, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Macro",
  12395. height: math.unit(20, "feet")
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(150, "lb"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/jamie-larsen/front.svg",
  12408. extra: 962 / 933,
  12409. bottom: 0.02
  12410. }
  12411. },
  12412. back: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(150, "lb"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/jamie-larsen/back.svg",
  12418. extra: 997 / 946
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Macro",
  12425. height: math.unit(28 + 7 / 12, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro+",
  12430. height: math.unit(180, "feet")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(10, "miles")
  12435. },
  12436. {
  12437. name: "Gigamacro",
  12438. height: math.unit(200000, "miles")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12444. {
  12445. front: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(120, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/vance/front.svg",
  12451. extra: 1980 / 1890,
  12452. bottom: 0.09
  12453. }
  12454. },
  12455. back: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(120, "lb"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/vance/back.svg",
  12461. extra: 2081 / 1994,
  12462. bottom: 0.014
  12463. }
  12464. },
  12465. hand: {
  12466. height: math.unit(0.88, "feet"),
  12467. name: "Hand",
  12468. image: {
  12469. source: "./media/characters/vance/hand.svg"
  12470. }
  12471. },
  12472. foot: {
  12473. height: math.unit(0.64, "feet"),
  12474. name: "Foot",
  12475. image: {
  12476. source: "./media/characters/vance/foot.svg"
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Small",
  12483. height: math.unit(90, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro",
  12488. height: math.unit(100, "meters")
  12489. },
  12490. {
  12491. name: "Megamacro",
  12492. height: math.unit(15, "miles")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(6, "feet"),
  12501. weight: math.unit(180, "lb"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/xochitl/front.svg",
  12505. extra: 2297 / 2261,
  12506. bottom: 0.065
  12507. }
  12508. },
  12509. back: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(180, "lb"),
  12512. name: "Back",
  12513. image: {
  12514. source: "./media/characters/xochitl/back.svg",
  12515. extra: 2386 / 2354,
  12516. bottom: 0.01
  12517. }
  12518. },
  12519. foot: {
  12520. height: math.unit(6 / 5 * 1.15, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Foot",
  12523. image: {
  12524. source: "./media/characters/xochitl/foot.svg"
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(80, "feet")
  12532. },
  12533. {
  12534. name: "Macro+",
  12535. height: math.unit(400, "feet"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Gigamacro",
  12540. height: math.unit(80000, "miles")
  12541. },
  12542. {
  12543. name: "Gigamacro+",
  12544. height: math.unit(400000, "miles")
  12545. },
  12546. {
  12547. name: "Teramacro",
  12548. height: math.unit(300, "AU")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/vincent/front.svg",
  12561. extra: 1130 / 1080,
  12562. bottom: 0.055
  12563. }
  12564. },
  12565. beak: {
  12566. height: math.unit(6 * 0.1, "feet"),
  12567. name: "Beak",
  12568. image: {
  12569. source: "./media/characters/vincent/beak.svg"
  12570. }
  12571. },
  12572. hand: {
  12573. height: math.unit(6 * 0.85, "feet"),
  12574. weight: math.unit(150, "lb"),
  12575. name: "Hand",
  12576. image: {
  12577. source: "./media/characters/vincent/hand.svg"
  12578. }
  12579. },
  12580. foot: {
  12581. height: math.unit(6 * 0.19, "feet"),
  12582. weight: math.unit(150, "lb"),
  12583. name: "Foot",
  12584. image: {
  12585. source: "./media/characters/vincent/foot.svg"
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Base",
  12592. height: math.unit(6 + 5 / 12, "feet"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Macro",
  12597. height: math.unit(300, "feet")
  12598. },
  12599. {
  12600. name: "Megamacro",
  12601. height: math.unit(2, "miles")
  12602. },
  12603. {
  12604. name: "Gigamacro",
  12605. height: math.unit(1000, "miles")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6 + 2 / 12, "feet"),
  12614. weight: math.unit(265, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/jay/front.svg",
  12618. extra: 1510 / 1430,
  12619. bottom: 0.042
  12620. }
  12621. },
  12622. back: {
  12623. height: math.unit(6 + 2 / 12, "feet"),
  12624. weight: math.unit(265, "lb"),
  12625. name: "Back",
  12626. image: {
  12627. source: "./media/characters/jay/back.svg",
  12628. extra: 1510 / 1430,
  12629. bottom: 0.025
  12630. }
  12631. },
  12632. clothed: {
  12633. height: math.unit(6 + 2 / 12, "feet"),
  12634. weight: math.unit(265, "lb"),
  12635. name: "Front (Clothed)",
  12636. image: {
  12637. source: "./media/characters/jay/clothed.svg",
  12638. extra: 744 / 699,
  12639. bottom: 0.043
  12640. }
  12641. },
  12642. head: {
  12643. height: math.unit(1.772, "feet"),
  12644. name: "Head",
  12645. image: {
  12646. source: "./media/characters/jay/head.svg"
  12647. }
  12648. },
  12649. sizeRay: {
  12650. height: math.unit(1.331, "feet"),
  12651. name: "Size Ray",
  12652. image: {
  12653. source: "./media/characters/jay/size-ray.svg"
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Micro",
  12660. height: math.unit(1, "inch")
  12661. },
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(6 + 2 / 12, "feet"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(1, "mile")
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(100, "miles")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(2, "meters"),
  12682. weight: math.unit(500, "kg"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/coatl/front.svg",
  12686. extra: 3948 / 3500,
  12687. bottom: 0.082
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(4, "meters")
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(100, "meters"),
  12699. default: true
  12700. },
  12701. {
  12702. name: "Macro+",
  12703. height: math.unit(300, "meters")
  12704. },
  12705. {
  12706. name: "Megamacro",
  12707. height: math.unit(3, "gigameters")
  12708. },
  12709. {
  12710. name: "Megamacro+",
  12711. height: math.unit(300, "terameters")
  12712. },
  12713. {
  12714. name: "Megamacro++",
  12715. height: math.unit(3, "lightyears")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(50, "kg"),
  12725. name: "front",
  12726. image: {
  12727. source: "./media/characters/shiroryu/front.svg",
  12728. extra: 1990 / 1935
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Mortal Mingling",
  12735. height: math.unit(3, "meters")
  12736. },
  12737. {
  12738. name: "Kaiju-ish",
  12739. height: math.unit(250, "meters")
  12740. },
  12741. {
  12742. name: "Somewhat Godly",
  12743. height: math.unit(400, "km"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Planetary",
  12748. height: math.unit(300, "megameters")
  12749. },
  12750. {
  12751. name: "Galaxy-dwarfing",
  12752. height: math.unit(450, "kiloparsecs")
  12753. },
  12754. {
  12755. name: "Universe Eater",
  12756. height: math.unit(150, "gigaparsecs")
  12757. },
  12758. {
  12759. name: "Almost Immeasurable",
  12760. height: math.unit(1.3e266, "yottaparsecs")
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12766. {
  12767. front: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/umeko/front.svg",
  12773. extra: 1,
  12774. bottom: 0.019
  12775. }
  12776. },
  12777. frontArmored: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(150, "lb"),
  12780. name: "Front (Armored)",
  12781. image: {
  12782. source: "./media/characters/umeko/front-armored.svg",
  12783. extra: 1,
  12784. bottom: 0.021
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(220, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Guardian Dragon",
  12796. height: math.unit(50, "miles")
  12797. },
  12798. {
  12799. name: "Cosmic",
  12800. height: math.unit(800000, "miles")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/cassidy/front.svg",
  12813. extra: 1,
  12814. bottom: 0.043
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Canon Height",
  12821. height: math.unit(120, "feet"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Macro+",
  12826. height: math.unit(400, "feet")
  12827. },
  12828. {
  12829. name: "Macro++",
  12830. height: math.unit(4000, "feet")
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(3, "miles")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/isaac/front.svg",
  12847. extra: 896 / 815,
  12848. bottom: 0.11
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Human Size",
  12855. height: math.unit(8, "feet"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Macro",
  12860. height: math.unit(400, "feet")
  12861. },
  12862. {
  12863. name: "Megamacro",
  12864. height: math.unit(50, "miles")
  12865. },
  12866. {
  12867. name: "Canon Height",
  12868. height: math.unit(200, "AU")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(72, "kg"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/sleekit/front.svg",
  12881. extra: 4693 / 4487,
  12882. bottom: 0.012
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Minimum Height",
  12889. height: math.unit(10, "meters")
  12890. },
  12891. {
  12892. name: "Smaller",
  12893. height: math.unit(25, "meters")
  12894. },
  12895. {
  12896. name: "Larger",
  12897. height: math.unit(38, "meters"),
  12898. default: true
  12899. },
  12900. {
  12901. name: "Maximum height",
  12902. height: math.unit(100, "meters")
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(150, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/nillia/front.svg",
  12915. extra: 2195 / 2037,
  12916. bottom: 0.005
  12917. }
  12918. },
  12919. back: {
  12920. height: math.unit(6, "feet"),
  12921. weight: math.unit(150, "lb"),
  12922. name: "Back",
  12923. image: {
  12924. source: "./media/characters/nillia/back.svg",
  12925. extra: 2195 / 2037,
  12926. bottom: 0.005
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Canon Height",
  12933. height: math.unit(489, "feet"),
  12934. default: true
  12935. }
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(150, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/mesmyriza/front.svg",
  12947. extra: 2067 / 1784,
  12948. bottom: 0.035
  12949. }
  12950. },
  12951. foot: {
  12952. height: math.unit(6 / (250 / 35), "feet"),
  12953. name: "Foot",
  12954. image: {
  12955. source: "./media/characters/mesmyriza/foot.svg"
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(457, "meters"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(8, "megameters")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(250, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/saudade/front.svg",
  12980. extra: 1172 / 1139,
  12981. bottom: 0.035
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Micro",
  12988. height: math.unit(3, "inches")
  12989. },
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(6, "feet"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Macro",
  12997. height: math.unit(50, "feet")
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(2800, "feet")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(5 + 4 / 12, "feet"),
  13010. weight: math.unit(100, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/keireer/front.svg",
  13014. extra: 716 / 666,
  13015. bottom: 0.05
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(5 + 4 / 12, "feet"),
  13023. default: true
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(90, "kg"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/mirja/front.svg",
  13036. extra: 1789 / 1683,
  13037. bottom: 0.05
  13038. }
  13039. },
  13040. frontDressed: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(90, "lb"),
  13043. name: "Front (Dressed)",
  13044. image: {
  13045. source: "./media/characters/mirja/front-dressed.svg",
  13046. extra: 1789 / 1683,
  13047. bottom: 0.05
  13048. }
  13049. },
  13050. back: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(90, "lb"),
  13053. name: "Back",
  13054. image: {
  13055. source: "./media/characters/mirja/back.svg",
  13056. extra: 953 / 917,
  13057. bottom: 0.017
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "\"Incognito\"",
  13064. height: math.unit(3, "meters")
  13065. },
  13066. {
  13067. name: "Strolling Size",
  13068. height: math.unit(15, "km")
  13069. },
  13070. {
  13071. name: "Larger Strolling Size",
  13072. height: math.unit(400, "km")
  13073. },
  13074. {
  13075. name: "Preferred Size",
  13076. height: math.unit(5000, "km")
  13077. },
  13078. {
  13079. name: "True Size",
  13080. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13081. default: true
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(15, "feet"),
  13090. weight: math.unit(880, "kg"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/nightraver/front.svg",
  13094. extra: 2444 / 2160,
  13095. bottom: 0.027
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(15, "feet"),
  13100. weight: math.unit(880, "kg"),
  13101. name: "Back",
  13102. image: {
  13103. source: "./media/characters/nightraver/back.svg",
  13104. extra: 2309 / 2180,
  13105. bottom: 0.005
  13106. }
  13107. },
  13108. sole: {
  13109. height: math.unit(2.878, "feet"),
  13110. name: "Sole",
  13111. image: {
  13112. source: "./media/characters/nightraver/sole.svg"
  13113. }
  13114. },
  13115. foot: {
  13116. height: math.unit(2.285, "feet"),
  13117. name: "Foot",
  13118. image: {
  13119. source: "./media/characters/nightraver/foot.svg"
  13120. }
  13121. },
  13122. maw: {
  13123. height: math.unit(2.67, "feet"),
  13124. name: "Maw",
  13125. image: {
  13126. source: "./media/characters/nightraver/maw.svg"
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Micro",
  13133. height: math.unit(1, "cm")
  13134. },
  13135. {
  13136. name: "Normal",
  13137. height: math.unit(15, "feet"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Macro",
  13142. height: math.unit(300, "feet")
  13143. },
  13144. {
  13145. name: "Megamacro",
  13146. height: math.unit(300, "miles")
  13147. },
  13148. {
  13149. name: "Gigamacro",
  13150. height: math.unit(10000, "miles")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13156. {
  13157. side: {
  13158. height: math.unit(2, "inches"),
  13159. weight: math.unit(5, "grams"),
  13160. name: "Side",
  13161. image: {
  13162. source: "./media/characters/arc/side.svg"
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Micro",
  13169. height: math.unit(2, "inches"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(1.1938, "meters"),
  13179. weight: math.unit(54, "kg"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/nebula-shahar/front.svg",
  13183. extra: 1642 / 1436,
  13184. bottom: 0.06
  13185. }
  13186. },
  13187. },
  13188. [
  13189. {
  13190. name: "Megamicro",
  13191. height: math.unit(0.3, "mm")
  13192. },
  13193. {
  13194. name: "Micro",
  13195. height: math.unit(3, "cm")
  13196. },
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(138, "cm"),
  13200. default: true
  13201. },
  13202. {
  13203. name: "Macro",
  13204. height: math.unit(30, "m")
  13205. },
  13206. ]
  13207. ))
  13208. characterMakers.push(() => makeCharacter(
  13209. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13210. {
  13211. front: {
  13212. height: math.unit(5.24, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Front",
  13215. image: {
  13216. source: "./media/characters/shayla/front.svg",
  13217. extra: 1512 / 1414,
  13218. bottom: 0.01
  13219. }
  13220. },
  13221. back: {
  13222. height: math.unit(5.24, "feet"),
  13223. weight: math.unit(150, "lb"),
  13224. name: "Back",
  13225. image: {
  13226. source: "./media/characters/shayla/back.svg",
  13227. extra: 1512 / 1414
  13228. }
  13229. },
  13230. hand: {
  13231. height: math.unit(0.7781496062992126, "feet"),
  13232. name: "Hand",
  13233. image: {
  13234. source: "./media/characters/shayla/hand.svg"
  13235. }
  13236. },
  13237. foot: {
  13238. height: math.unit(1.4206036745406823, "feet"),
  13239. name: "Foot",
  13240. image: {
  13241. source: "./media/characters/shayla/foot.svg"
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Micro",
  13248. height: math.unit(0.32, "feet")
  13249. },
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(5.24, "feet"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Macro",
  13257. height: math.unit(492.12, "feet")
  13258. },
  13259. {
  13260. name: "Megamacro",
  13261. height: math.unit(186.41, "miles")
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(2.2, "m"),
  13270. weight: math.unit(120, "kg"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/pia-jr/front.svg",
  13274. extra: 1000 / 970,
  13275. bottom: 0.035
  13276. }
  13277. },
  13278. hand: {
  13279. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13280. name: "Hand",
  13281. image: {
  13282. source: "./media/characters/pia-jr/hand.svg"
  13283. }
  13284. },
  13285. paw: {
  13286. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13287. name: "Paw",
  13288. image: {
  13289. source: "./media/characters/pia-jr/paw.svg"
  13290. }
  13291. },
  13292. },
  13293. [
  13294. {
  13295. name: "Micro",
  13296. height: math.unit(1.2, "cm")
  13297. },
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(2.2, "m"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(180, "m")
  13306. },
  13307. {
  13308. name: "Megamacro",
  13309. height: math.unit(420, "km")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(2, "m"),
  13318. weight: math.unit(115, "kg"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/pia-sr/front.svg",
  13322. extra: 760 / 730,
  13323. bottom: 0.015
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(2, "m"),
  13328. weight: math.unit(115, "kg"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/pia-sr/back.svg",
  13332. extra: 760 / 730,
  13333. bottom: 0.01
  13334. }
  13335. },
  13336. hand: {
  13337. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13338. name: "Hand",
  13339. image: {
  13340. source: "./media/characters/pia-sr/hand.svg"
  13341. }
  13342. },
  13343. foot: {
  13344. height: math.unit(1.83, "feet"),
  13345. name: "Foot",
  13346. image: {
  13347. source: "./media/characters/pia-sr/foot.svg"
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Micro",
  13354. height: math.unit(88, "mm")
  13355. },
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(2, "m"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(200, "m")
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(420, "km")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(8 + 2 / 12, "feet"),
  13376. weight: math.unit(300, "lb"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/kibibyte/front.svg",
  13380. extra: 2221 / 2098,
  13381. bottom: 0.04
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(8 + 2 / 12, "feet"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Socialable Macro",
  13393. height: math.unit(50, "feet")
  13394. },
  13395. {
  13396. name: "Macro",
  13397. height: math.unit(300, "feet")
  13398. },
  13399. {
  13400. name: "Megamacro",
  13401. height: math.unit(500, "miles")
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/felix/front.svg",
  13414. extra: 762 / 722,
  13415. bottom: 0.02
  13416. }
  13417. },
  13418. frontClothed: {
  13419. height: math.unit(6, "feet"),
  13420. weight: math.unit(150, "lb"),
  13421. name: "Front (Clothed)",
  13422. image: {
  13423. source: "./media/characters/felix/front-clothed.svg",
  13424. extra: 762 / 722,
  13425. bottom: 0.02
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(6 + 8 / 12, "feet"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Macro",
  13437. height: math.unit(2600, "feet")
  13438. },
  13439. {
  13440. name: "Megamacro",
  13441. height: math.unit(450, "miles")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(6 + 1 / 12, "feet"),
  13450. weight: math.unit(250, "lb"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/tobo/front.svg",
  13454. extra: 608 / 586,
  13455. bottom: 0.023
  13456. }
  13457. },
  13458. back: {
  13459. height: math.unit(6 + 1 / 12, "feet"),
  13460. weight: math.unit(250, "lb"),
  13461. name: "Back",
  13462. image: {
  13463. source: "./media/characters/tobo/back.svg",
  13464. extra: 608 / 586
  13465. }
  13466. },
  13467. },
  13468. [
  13469. {
  13470. name: "Nano",
  13471. height: math.unit(2, "nm")
  13472. },
  13473. {
  13474. name: "Megamicro",
  13475. height: math.unit(0.1, "mm")
  13476. },
  13477. {
  13478. name: "Micro",
  13479. height: math.unit(1, "inch"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Human-sized",
  13484. height: math.unit(6 + 1 / 12, "feet")
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(250, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(75, "miles")
  13493. },
  13494. {
  13495. name: "Texas-sized",
  13496. height: math.unit(750, "miles")
  13497. },
  13498. {
  13499. name: "Teramacro",
  13500. height: math.unit(50000, "miles")
  13501. },
  13502. ]
  13503. ))
  13504. characterMakers.push(() => makeCharacter(
  13505. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13506. {
  13507. front: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(269, "lb"),
  13510. name: "Front",
  13511. image: {
  13512. source: "./media/characters/danny-kapowsky/front.svg",
  13513. extra: 766 / 736,
  13514. bottom: 0.044
  13515. }
  13516. },
  13517. back: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(269, "lb"),
  13520. name: "Back",
  13521. image: {
  13522. source: "./media/characters/danny-kapowsky/back.svg",
  13523. extra: 797 / 760,
  13524. bottom: 0.025
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Macro",
  13531. height: math.unit(150, "feet"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Macro+",
  13536. height: math.unit(200, "feet")
  13537. },
  13538. {
  13539. name: "Macro++",
  13540. height: math.unit(300, "feet")
  13541. },
  13542. {
  13543. name: "Macro+++",
  13544. height: math.unit(400, "feet")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13550. {
  13551. side: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(170, "lb"),
  13554. name: "Side",
  13555. image: {
  13556. source: "./media/characters/finn/side.svg",
  13557. extra: 1953 / 1807,
  13558. bottom: 0.057
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Megamacro",
  13565. height: math.unit(14445, "feet"),
  13566. default: true
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13572. {
  13573. front: {
  13574. height: math.unit(5 + 6 / 12, "feet"),
  13575. weight: math.unit(125, "lb"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/roy/front.svg",
  13579. extra: 1,
  13580. bottom: 0.11
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(3, "inches"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(5 + 6 / 12, "feet")
  13593. },
  13594. {
  13595. name: "Lesser Macro",
  13596. height: math.unit(60, "feet")
  13597. },
  13598. {
  13599. name: "Greater Macro",
  13600. height: math.unit(120, "feet")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(100, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/aevsivs/front.svg",
  13613. extra: 1,
  13614. bottom: 0.03
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(100, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/aevsivs/back.svg"
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Micro",
  13629. height: math.unit(2, "inches"),
  13630. default: true
  13631. },
  13632. {
  13633. name: "Normal",
  13634. height: math.unit(5, "feet")
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(5 + 7 / 12, "feet"),
  13643. weight: math.unit(159, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/hildegard/front.svg",
  13647. extra: 312 / 286,
  13648. bottom: 0.005
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Normal",
  13655. height: math.unit(5 + 7 / 12, "feet"),
  13656. default: true
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13662. {
  13663. bernard: {
  13664. height: math.unit(2 + 7 / 12, "feet"),
  13665. weight: math.unit(66, "lb"),
  13666. name: "Bernard",
  13667. rename: true,
  13668. image: {
  13669. source: "./media/characters/bernard-wilder/bernard.svg",
  13670. extra: 192 / 128,
  13671. bottom: 0.05
  13672. }
  13673. },
  13674. wilder: {
  13675. height: math.unit(5 + 8 / 12, "feet"),
  13676. weight: math.unit(143, "lb"),
  13677. name: "Wilder",
  13678. rename: true,
  13679. image: {
  13680. source: "./media/characters/bernard-wilder/wilder.svg",
  13681. extra: 361 / 312,
  13682. bottom: 0.02
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Normal",
  13689. height: math.unit(2 + 7 / 12, "feet"),
  13690. default: true
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13696. {
  13697. anthro: {
  13698. height: math.unit(6 + 1 / 12, "feet"),
  13699. weight: math.unit(155, "lb"),
  13700. name: "Anthro",
  13701. image: {
  13702. source: "./media/characters/hearth/anthro.svg",
  13703. extra: 260 / 250,
  13704. bottom: 0.02
  13705. }
  13706. },
  13707. feral: {
  13708. height: math.unit(3.78, "feet"),
  13709. weight: math.unit(35, "kg"),
  13710. name: "Feral",
  13711. image: {
  13712. source: "./media/characters/hearth/feral.svg",
  13713. extra: 153 / 135,
  13714. bottom: 0.03
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(6 + 1 / 12, "feet"),
  13722. default: true
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(6, "feet"),
  13731. weight: math.unit(182, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/ingrid/front.svg",
  13735. extra: 294 / 268,
  13736. bottom: 0.027
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Normal",
  13743. height: math.unit(6, "feet"),
  13744. default: true
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13750. {
  13751. eevee: {
  13752. height: math.unit(2 + 10 / 12, "feet"),
  13753. weight: math.unit(86, "lb"),
  13754. name: "Malgam",
  13755. image: {
  13756. source: "./media/characters/malgam/eevee.svg",
  13757. extra: 218 / 180,
  13758. bottom: 0.2
  13759. }
  13760. },
  13761. sylveon: {
  13762. height: math.unit(4, "feet"),
  13763. weight: math.unit(101, "lb"),
  13764. name: "Future Malgam",
  13765. rename: true,
  13766. image: {
  13767. source: "./media/characters/malgam/sylveon.svg",
  13768. extra: 371 / 325,
  13769. bottom: 0.015
  13770. }
  13771. },
  13772. gigantamax: {
  13773. height: math.unit(50, "feet"),
  13774. name: "Gigantamax Malgam",
  13775. rename: true,
  13776. image: {
  13777. source: "./media/characters/malgam/gigantamax.svg"
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(2 + 10 / 12, "feet"),
  13785. default: true
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(5 + 11 / 12, "feet"),
  13794. weight: math.unit(188, "lb"),
  13795. name: "Front",
  13796. image: {
  13797. source: "./media/characters/fleur/front.svg",
  13798. extra: 309 / 283,
  13799. bottom: 0.007
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(5 + 11 / 12, "feet"),
  13807. default: true
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(5 + 4 / 12, "feet"),
  13816. weight: math.unit(122, "lb"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/jude/front.svg",
  13820. extra: 288 / 273,
  13821. bottom: 0.03
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(5 + 4 / 12, "feet"),
  13829. default: true
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(5 + 11 / 12, "feet"),
  13838. weight: math.unit(190, "lb"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/seara/front.svg",
  13842. extra: 1,
  13843. bottom: 0.05
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(5 + 11 / 12, "feet"),
  13851. default: true
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(16 + 5 / 12, "feet"),
  13860. weight: math.unit(524, "lb"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/caspian/front.svg",
  13864. extra: 1,
  13865. bottom: 0.04
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Normal",
  13872. height: math.unit(16 + 5 / 12, "feet"),
  13873. default: true
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 7 / 12, "feet"),
  13882. weight: math.unit(170, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/mika/front.svg",
  13886. extra: 1,
  13887. bottom: 0.016
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(5 + 7 / 12, "feet"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(6 + 2 / 12, "feet"),
  13904. weight: math.unit(268, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/sol/front.svg",
  13908. extra: 247 / 231,
  13909. bottom: 0.05
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(6 + 2 / 12, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13923. {
  13924. buizel: {
  13925. height: math.unit(2 + 5 / 12, "feet"),
  13926. weight: math.unit(87, "lb"),
  13927. name: "Buizel",
  13928. image: {
  13929. source: "./media/characters/umiko/buizel.svg",
  13930. extra: 172 / 157,
  13931. bottom: 0.01
  13932. }
  13933. },
  13934. floatzel: {
  13935. height: math.unit(5 + 9 / 12, "feet"),
  13936. weight: math.unit(250, "lb"),
  13937. name: "Floatzel",
  13938. image: {
  13939. source: "./media/characters/umiko/floatzel.svg",
  13940. extra: 262 / 248
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(2 + 5 / 12, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(6 + 2 / 12, "feet"),
  13957. weight: math.unit(146, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/iliac/front.svg",
  13961. extra: 389 / 365,
  13962. bottom: 0.035
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Normal",
  13969. height: math.unit(6 + 2 / 12, "feet"),
  13970. default: true
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  13976. {
  13977. front: {
  13978. height: math.unit(6, "feet"),
  13979. weight: math.unit(170, "lb"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/topaz/front.svg",
  13983. extra: 317 / 303,
  13984. bottom: 0.055
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(6, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(5 + 11 / 12, "feet"),
  14001. weight: math.unit(144, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/gabriel/front.svg",
  14005. extra: 285 / 262,
  14006. bottom: 0.004
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(5 + 11 / 12, "feet"),
  14014. default: true
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14020. {
  14021. side: {
  14022. height: math.unit(6 + 5 / 12, "feet"),
  14023. weight: math.unit(300, "lb"),
  14024. name: "Side",
  14025. image: {
  14026. source: "./media/characters/tempest-suicune/side.svg",
  14027. extra: 195 / 154,
  14028. bottom: 0.04
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Normal",
  14035. height: math.unit(6 + 5 / 12, "feet"),
  14036. default: true
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14042. {
  14043. front: {
  14044. height: math.unit(7 + 2 / 12, "feet"),
  14045. weight: math.unit(322, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/vulcan/front.svg",
  14049. extra: 154 / 147,
  14050. bottom: 0.04
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Normal",
  14057. height: math.unit(7 + 2 / 12, "feet"),
  14058. default: true
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(5 + 10 / 12, "feet"),
  14067. weight: math.unit(264, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/gault/front.svg",
  14071. extra: 161 / 140,
  14072. bottom: 0.028
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(5 + 10 / 12, "feet"),
  14080. default: true
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/shard/front.svg",
  14093. extra: 273 / 238,
  14094. bottom: 0.02
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(3 + 6 / 12, "feet"),
  14102. default: true
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(5 + 11 / 12, "feet"),
  14111. weight: math.unit(146, "lb"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/ashe/front.svg",
  14115. extra: 400 / 373,
  14116. bottom: 0.01
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5 + 11 / 12, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(5 + 5 / 12, "feet"),
  14133. weight: math.unit(135, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/beatrix/front.svg",
  14137. extra: 392 / 379,
  14138. bottom: 0.01
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(6, "feet"),
  14146. default: true
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(6, "feet"),
  14155. weight: math.unit(150, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/ignatius/front.svg",
  14159. extra: 245 / 222,
  14160. bottom: 0.01
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(5 + 5 / 12, "feet"),
  14168. default: true
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(6 + 2 / 12, "feet"),
  14177. weight: math.unit(138, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/mei-li/front.svg",
  14181. extra: 237 / 229,
  14182. bottom: 0.03
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(6 + 2 / 12, "feet"),
  14190. default: true
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(2 + 4 / 12, "feet"),
  14199. weight: math.unit(62, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/puru/front.svg",
  14203. extra: 206 / 149,
  14204. bottom: 0.06
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(2 + 4 / 12, "feet"),
  14212. default: true
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14218. {
  14219. taur: {
  14220. height: math.unit(11, "feet"),
  14221. weight: math.unit(500, "lb"),
  14222. name: "Taur",
  14223. image: {
  14224. source: "./media/characters/kee/taur.svg",
  14225. extra: 1,
  14226. bottom: 0.04
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(11, "feet"),
  14234. default: true
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14240. {
  14241. anthro: {
  14242. height: math.unit(7, "feet"),
  14243. weight: math.unit(190, "lb"),
  14244. name: "Anthro",
  14245. image: {
  14246. source: "./media/characters/cobalt-dracha/anthro.svg",
  14247. extra: 231 / 225,
  14248. bottom: 0.04
  14249. }
  14250. },
  14251. feral: {
  14252. height: math.unit(9 + 7 / 12, "feet"),
  14253. weight: math.unit(294, "lb"),
  14254. name: "Feral",
  14255. image: {
  14256. source: "./media/characters/cobalt-dracha/feral.svg",
  14257. extra: 692 / 633,
  14258. bottom: 0.05
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(7, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14272. {
  14273. fallen: {
  14274. height: math.unit(11 + 8 / 12, "feet"),
  14275. weight: math.unit(485, "lb"),
  14276. name: "Java (Fallen)",
  14277. rename: true,
  14278. image: {
  14279. source: "./media/characters/java/fallen.svg",
  14280. extra: 226 / 208,
  14281. bottom: 0.005
  14282. }
  14283. },
  14284. godkin: {
  14285. height: math.unit(10 + 6 / 12, "feet"),
  14286. weight: math.unit(328, "lb"),
  14287. name: "Java (Godkin)",
  14288. rename: true,
  14289. image: {
  14290. source: "./media/characters/java/godkin.svg",
  14291. extra: 270 / 262,
  14292. bottom: 0.02
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(11 + 8 / 12, "feet"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(7 + 8 / 12, "feet"),
  14309. weight: math.unit(320, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/skoll/front.svg",
  14313. extra: 232 / 220,
  14314. bottom: 0.02
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Normal",
  14321. height: math.unit(7 + 8 / 12, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(5 + 9 / 12, "feet"),
  14331. weight: math.unit(170, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/purna/front.svg",
  14335. extra: 239 / 229,
  14336. bottom: 0.01
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(5 + 9 / 12, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(5 + 9 / 12, "feet"),
  14353. weight: math.unit(142, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/kuva/front.svg",
  14357. extra: 281 / 271,
  14358. bottom: 0.006
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(5 + 9 / 12, "feet"),
  14366. default: true
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14372. {
  14373. anthro: {
  14374. height: math.unit(9 + 2 / 12, "feet"),
  14375. weight: math.unit(270, "lb"),
  14376. name: "Anthro",
  14377. image: {
  14378. source: "./media/characters/embra/anthro.svg",
  14379. extra: 200 / 187,
  14380. bottom: 0.02
  14381. }
  14382. },
  14383. feral: {
  14384. height: math.unit(18 + 8 / 12, "feet"),
  14385. weight: math.unit(576, "lb"),
  14386. name: "Feral",
  14387. image: {
  14388. source: "./media/characters/embra/feral.svg",
  14389. extra: 152 / 137,
  14390. bottom: 0.037
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(9 + 2 / 12, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14404. {
  14405. anthro: {
  14406. height: math.unit(10 + 9 / 12, "feet"),
  14407. weight: math.unit(224, "lb"),
  14408. name: "Anthro",
  14409. image: {
  14410. source: "./media/characters/grottos/anthro.svg",
  14411. extra: 350 / 332,
  14412. bottom: 0.045
  14413. }
  14414. },
  14415. feral: {
  14416. height: math.unit(20 + 7 / 12, "feet"),
  14417. weight: math.unit(629, "lb"),
  14418. name: "Feral",
  14419. image: {
  14420. source: "./media/characters/grottos/feral.svg",
  14421. extra: 207 / 190,
  14422. bottom: 0.05
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(10 + 9 / 12, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14436. {
  14437. anthro: {
  14438. height: math.unit(9 + 6 / 12, "feet"),
  14439. weight: math.unit(298, "lb"),
  14440. name: "Anthro",
  14441. image: {
  14442. source: "./media/characters/frifna/anthro.svg",
  14443. extra: 282 / 269,
  14444. bottom: 0.015
  14445. }
  14446. },
  14447. feral: {
  14448. height: math.unit(16 + 2 / 12, "feet"),
  14449. weight: math.unit(624, "lb"),
  14450. name: "Feral",
  14451. image: {
  14452. source: "./media/characters/frifna/feral.svg"
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(9 + 6 / 12, "feet"),
  14460. default: true
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14466. {
  14467. front: {
  14468. height: math.unit(6 + 2 / 12, "feet"),
  14469. weight: math.unit(168, "lb"),
  14470. name: "Front",
  14471. image: {
  14472. source: "./media/characters/elise/front.svg",
  14473. extra: 276 / 271
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(6 + 2 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(5 + 10 / 12, "feet"),
  14490. weight: math.unit(210, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/glade/front.svg",
  14494. extra: 258 / 247,
  14495. bottom: 0.008
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Normal",
  14502. height: math.unit(5 + 10 / 12, "feet"),
  14503. default: true
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(5 + 10 / 12, "feet"),
  14512. weight: math.unit(129, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/rina/front.svg",
  14516. extra: 266 / 255,
  14517. bottom: 0.005
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(5 + 10 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6 + 1 / 12, "feet"),
  14534. weight: math.unit(192, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/veronica/front.svg",
  14538. extra: 319 / 309,
  14539. bottom: 0.005
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(6 + 1 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(9 + 3 / 12, "feet"),
  14556. weight: math.unit(1100, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/braxton/front.svg",
  14560. extra: 1057 / 984,
  14561. bottom: 0.05
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(9 + 3 / 12, "feet")
  14569. },
  14570. {
  14571. name: "Giant",
  14572. height: math.unit(300, "feet"),
  14573. default: true
  14574. },
  14575. {
  14576. name: "Macro",
  14577. height: math.unit(700, "feet")
  14578. },
  14579. {
  14580. name: "Megamacro",
  14581. height: math.unit(6000, "feet")
  14582. },
  14583. ]
  14584. ))
  14585. characterMakers.push(() => makeCharacter(
  14586. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14587. {
  14588. front: {
  14589. height: math.unit(6 + 7 / 12, "feet"),
  14590. weight: math.unit(150, "lb"),
  14591. name: "Front",
  14592. image: {
  14593. source: "./media/characters/blue-feyonics/front.svg",
  14594. extra: 1403 / 1306,
  14595. bottom: 0.047
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(6 + 7 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(1.8, "meters"),
  14612. weight: math.unit(60, "kg"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/maxwell/front.svg",
  14616. extra: 2060 / 1873
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Micro",
  14623. height: math.unit(1, "mm")
  14624. },
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(1.8, "meter"),
  14628. default: true
  14629. },
  14630. {
  14631. name: "Macro",
  14632. height: math.unit(30, "meters")
  14633. },
  14634. {
  14635. name: "Megamacro",
  14636. height: math.unit(10, "km")
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(6, "feet"),
  14645. weight: math.unit(150, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/jack/front.svg",
  14649. extra: 1754 / 1640,
  14650. bottom: 0.01
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(80000, "feet"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Max size",
  14662. height: math.unit(10, "lightyears")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14668. {
  14669. upright: {
  14670. height: math.unit(7, "feet"),
  14671. weight: math.unit(170, "lb"),
  14672. name: "Upright",
  14673. image: {
  14674. source: "./media/characters/cafat/upright.svg",
  14675. bottom: 0.01
  14676. }
  14677. },
  14678. uprightFull: {
  14679. height: math.unit(7, "feet"),
  14680. weight: math.unit(170, "lb"),
  14681. name: "Upright (Full)",
  14682. image: {
  14683. source: "./media/characters/cafat/upright-full.svg",
  14684. bottom: 0.01
  14685. }
  14686. },
  14687. side: {
  14688. height: math.unit(5, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Side",
  14691. image: {
  14692. source: "./media/characters/cafat/side.svg"
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Small",
  14699. height: math.unit(7, "feet"),
  14700. default: true
  14701. },
  14702. {
  14703. name: "Large",
  14704. height: math.unit(15.5, "feet")
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(6, "feet"),
  14713. weight: math.unit(150, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/verin-raharra/front.svg",
  14717. extra: 5019 / 4835,
  14718. bottom: 0.023
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(7 + 5 / 12, "feet"),
  14726. default: true
  14727. },
  14728. {
  14729. name: "Upsized",
  14730. height: math.unit(20, "feet")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(7, "feet"),
  14739. weight: math.unit(230, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/nakata/front.svg",
  14743. extra: 1.005,
  14744. bottom: 0.01
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(7, "feet"),
  14752. default: true
  14753. },
  14754. {
  14755. name: "Big",
  14756. height: math.unit(14, "feet")
  14757. },
  14758. {
  14759. name: "Macro",
  14760. height: math.unit(400, "feet")
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(4.91, "feet"),
  14769. weight: math.unit(100, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/lily/front.svg",
  14773. extra: 1585 / 1415,
  14774. bottom: 0.02
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(4.91, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14788. {
  14789. laying: {
  14790. height: math.unit(4 + 4 / 12, "feet"),
  14791. weight: math.unit(600, "lb"),
  14792. name: "Laying",
  14793. image: {
  14794. source: "./media/characters/sheila/laying.svg",
  14795. extra: 1333 / 1265,
  14796. bottom: 0.16
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(4 + 4 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(6, "feet"),
  14813. weight: math.unit(190, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/sax/front.svg",
  14817. extra: 1187 / 973,
  14818. bottom: 0.042
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Micro",
  14825. height: math.unit(4, "inches"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(6, "feet"),
  14835. weight: math.unit(150, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/pandora/front.svg",
  14839. extra: 2720 / 2556,
  14840. bottom: 0.015
  14841. }
  14842. },
  14843. back: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Back",
  14847. image: {
  14848. source: "./media/characters/pandora/back.svg",
  14849. extra: 2720 / 2556,
  14850. bottom: 0.01
  14851. }
  14852. },
  14853. beans: {
  14854. height: math.unit(6 / 8, "feet"),
  14855. name: "Beans",
  14856. image: {
  14857. source: "./media/characters/pandora/beans.svg"
  14858. }
  14859. },
  14860. skirt: {
  14861. height: math.unit(6, "feet"),
  14862. weight: math.unit(150, "lb"),
  14863. name: "Skirt",
  14864. image: {
  14865. source: "./media/characters/pandora/skirt.svg",
  14866. extra: 1622 / 1525,
  14867. bottom: 0.015
  14868. }
  14869. },
  14870. hoodie: {
  14871. height: math.unit(6, "feet"),
  14872. weight: math.unit(150, "lb"),
  14873. name: "Hoodie",
  14874. image: {
  14875. source: "./media/characters/pandora/hoodie.svg",
  14876. extra: 1622 / 1525,
  14877. bottom: 0.015
  14878. }
  14879. },
  14880. casual: {
  14881. height: math.unit(6, "feet"),
  14882. weight: math.unit(150, "lb"),
  14883. name: "Casual",
  14884. image: {
  14885. source: "./media/characters/pandora/casual.svg",
  14886. extra: 1622 / 1525,
  14887. bottom: 0.015
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(6, "feet")
  14895. },
  14896. {
  14897. name: "Big Steppy",
  14898. height: math.unit(1, "km"),
  14899. default: true
  14900. },
  14901. ]
  14902. ))
  14903. characterMakers.push(() => makeCharacter(
  14904. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14905. {
  14906. side: {
  14907. height: math.unit(10, "feet"),
  14908. weight: math.unit(800, "kg"),
  14909. name: "Side",
  14910. image: {
  14911. source: "./media/characters/venio-darcony/side.svg",
  14912. extra: 1373 / 1003,
  14913. bottom: 0.037
  14914. }
  14915. },
  14916. front: {
  14917. height: math.unit(19, "feet"),
  14918. weight: math.unit(800, "kg"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/venio-darcony/front.svg"
  14922. }
  14923. },
  14924. back: {
  14925. height: math.unit(19, "feet"),
  14926. weight: math.unit(800, "kg"),
  14927. name: "Back",
  14928. image: {
  14929. source: "./media/characters/venio-darcony/back.svg"
  14930. }
  14931. },
  14932. sideNsfw: {
  14933. height: math.unit(10, "feet"),
  14934. weight: math.unit(800, "kg"),
  14935. name: "Side (NSFW)",
  14936. image: {
  14937. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14938. extra: 1373 / 1003,
  14939. bottom: 0.037
  14940. }
  14941. },
  14942. frontNsfw: {
  14943. height: math.unit(19, "feet"),
  14944. weight: math.unit(800, "kg"),
  14945. name: "Front (NSFW)",
  14946. image: {
  14947. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14948. }
  14949. },
  14950. backNsfw: {
  14951. height: math.unit(19, "feet"),
  14952. weight: math.unit(800, "kg"),
  14953. name: "Back (NSFW)",
  14954. image: {
  14955. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14956. }
  14957. },
  14958. sideArmored: {
  14959. height: math.unit(10, "feet"),
  14960. weight: math.unit(800, "kg"),
  14961. name: "Side (Armored)",
  14962. image: {
  14963. source: "./media/characters/venio-darcony/side-armored.svg",
  14964. extra: 1373 / 1003,
  14965. bottom: 0.037
  14966. }
  14967. },
  14968. frontArmored: {
  14969. height: math.unit(19, "feet"),
  14970. weight: math.unit(900, "kg"),
  14971. name: "Front (Armored)",
  14972. image: {
  14973. source: "./media/characters/venio-darcony/front-armored.svg"
  14974. }
  14975. },
  14976. backArmored: {
  14977. height: math.unit(19, "feet"),
  14978. weight: math.unit(900, "kg"),
  14979. name: "Back (Armored)",
  14980. image: {
  14981. source: "./media/characters/venio-darcony/back-armored.svg"
  14982. }
  14983. },
  14984. sword: {
  14985. height: math.unit(10, "feet"),
  14986. weight: math.unit(50, "lb"),
  14987. name: "Sword",
  14988. image: {
  14989. source: "./media/characters/venio-darcony/sword.svg"
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(10, "feet")
  14997. },
  14998. {
  14999. name: "Macro",
  15000. height: math.unit(130, "feet"),
  15001. default: true
  15002. },
  15003. {
  15004. name: "Macro+",
  15005. height: math.unit(240, "feet")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/veski/front.svg",
  15018. extra: 1299 / 1225,
  15019. bottom: 0.04
  15020. }
  15021. },
  15022. back: {
  15023. height: math.unit(6, "feet"),
  15024. weight: math.unit(150, "lb"),
  15025. name: "Back",
  15026. image: {
  15027. source: "./media/characters/veski/back.svg",
  15028. extra: 1299 / 1225,
  15029. bottom: 0.008
  15030. }
  15031. },
  15032. maw: {
  15033. height: math.unit(1.5 * 1.21, "feet"),
  15034. name: "Maw",
  15035. image: {
  15036. source: "./media/characters/veski/maw.svg"
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Macro",
  15043. height: math.unit(2, "km"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(5 + 7 / 12, "feet"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/isabelle/front.svg",
  15056. extra: 2130 / 1976,
  15057. bottom: 0.05
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Supermicro",
  15064. height: math.unit(10, "micrometers")
  15065. },
  15066. {
  15067. name: "Micro",
  15068. height: math.unit(1, "inch")
  15069. },
  15070. {
  15071. name: "Tiny",
  15072. height: math.unit(5, "inches")
  15073. },
  15074. {
  15075. name: "Standard",
  15076. height: math.unit(5 + 7 / 12, "inches")
  15077. },
  15078. {
  15079. name: "Macro",
  15080. height: math.unit(80, "meters"),
  15081. default: true
  15082. },
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(250, "meters")
  15086. },
  15087. {
  15088. name: "Gigamacro",
  15089. height: math.unit(5, "km")
  15090. },
  15091. {
  15092. name: "Cosmic",
  15093. height: math.unit(2.5e6, "miles")
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(150, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/hanzo/front.svg",
  15106. extra: 374 / 344,
  15107. bottom: 0.02
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(8, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(7, "feet"),
  15124. weight: math.unit(130, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/anna/front.svg",
  15128. extra: 169 / 145,
  15129. bottom: 0.06
  15130. }
  15131. },
  15132. full: {
  15133. height: math.unit(4.96, "feet"),
  15134. weight: math.unit(220, "lb"),
  15135. name: "Full",
  15136. image: {
  15137. source: "./media/characters/anna/full.svg",
  15138. extra: 138 / 114,
  15139. bottom: 0.15
  15140. }
  15141. },
  15142. tongue: {
  15143. height: math.unit(2.53, "feet"),
  15144. name: "Tongue",
  15145. image: {
  15146. source: "./media/characters/anna/tongue.svg"
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(7, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(7, "feet"),
  15163. weight: math.unit(150, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/ian-corvid/front.svg",
  15167. extra: 150 / 142,
  15168. bottom: 0.02
  15169. }
  15170. },
  15171. back: {
  15172. height: math.unit(7, "feet"),
  15173. weight: math.unit(150, "lb"),
  15174. name: "Back",
  15175. image: {
  15176. source: "./media/characters/ian-corvid/back.svg",
  15177. extra: 150 / 143,
  15178. bottom: 0.01
  15179. }
  15180. },
  15181. stomping: {
  15182. height: math.unit(7, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Stomping",
  15185. image: {
  15186. source: "./media/characters/ian-corvid/stomping.svg",
  15187. extra: 76 / 72
  15188. }
  15189. },
  15190. sitting: {
  15191. height: math.unit(7 / 1.8, "feet"),
  15192. weight: math.unit(150, "lb"),
  15193. name: "Sitting",
  15194. image: {
  15195. source: "./media/characters/ian-corvid/sitting.svg",
  15196. extra: 1400 / 1269,
  15197. bottom: 0.15
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Tiny Microw",
  15204. height: math.unit(1, "inch")
  15205. },
  15206. {
  15207. name: "Microw",
  15208. height: math.unit(6, "inches")
  15209. },
  15210. {
  15211. name: "Crow",
  15212. height: math.unit(7 + 1 / 12, "feet"),
  15213. default: true
  15214. },
  15215. {
  15216. name: "Macrow",
  15217. height: math.unit(176, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(5 + 7 / 12, "feet"),
  15226. weight: math.unit(147, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/natalie-kellon/front.svg",
  15230. extra: 1214 / 1141,
  15231. bottom: 0.02
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Micro",
  15238. height: math.unit(1 / 16, "inch")
  15239. },
  15240. {
  15241. name: "Tiny",
  15242. height: math.unit(4, "inches")
  15243. },
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(5 + 7 / 12, "feet"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Amazon",
  15251. height: math.unit(12, "feet")
  15252. },
  15253. {
  15254. name: "Giantess",
  15255. height: math.unit(160, "meters")
  15256. },
  15257. {
  15258. name: "Titaness",
  15259. height: math.unit(800, "meters")
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(150, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/alluria/front.svg",
  15272. extra: 806 / 738,
  15273. bottom: 0.01
  15274. }
  15275. },
  15276. side: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Side",
  15280. image: {
  15281. source: "./media/characters/alluria/side.svg",
  15282. extra: 800 / 750,
  15283. }
  15284. },
  15285. back: {
  15286. height: math.unit(6, "feet"),
  15287. weight: math.unit(150, "lb"),
  15288. name: "Back",
  15289. image: {
  15290. source: "./media/characters/alluria/back.svg",
  15291. extra: 806 / 738,
  15292. }
  15293. },
  15294. frontMaid: {
  15295. height: math.unit(6, "feet"),
  15296. weight: math.unit(150, "lb"),
  15297. name: "Front (Maid)",
  15298. image: {
  15299. source: "./media/characters/alluria/front-maid.svg",
  15300. extra: 806 / 738,
  15301. bottom: 0.01
  15302. }
  15303. },
  15304. sideMaid: {
  15305. height: math.unit(6, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Side (Maid)",
  15308. image: {
  15309. source: "./media/characters/alluria/side-maid.svg",
  15310. extra: 800 / 750,
  15311. bottom: 0.005
  15312. }
  15313. },
  15314. backMaid: {
  15315. height: math.unit(6, "feet"),
  15316. weight: math.unit(150, "lb"),
  15317. name: "Back (Maid)",
  15318. image: {
  15319. source: "./media/characters/alluria/back-maid.svg",
  15320. extra: 806 / 738,
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Micro",
  15327. height: math.unit(6, "inches"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/kyle/front.svg",
  15341. extra: 1069 / 962,
  15342. bottom: 77.228 / 1727.45
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Macro",
  15349. height: math.unit(150, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(300, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/duncan/front.svg",
  15363. extra: 1650 / 1482,
  15364. bottom: 0.05
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Macro",
  15371. height: math.unit(100, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(5 + 4 / 12, "feet"),
  15381. weight: math.unit(220, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/memory/front.svg",
  15385. extra: 3641 / 3545,
  15386. bottom: 0.03
  15387. }
  15388. },
  15389. back: {
  15390. height: math.unit(5 + 4 / 12, "feet"),
  15391. weight: math.unit(220, "lb"),
  15392. name: "Back",
  15393. image: {
  15394. source: "./media/characters/memory/back.svg",
  15395. extra: 3641 / 3545,
  15396. bottom: 0.025
  15397. }
  15398. },
  15399. frontSkirt: {
  15400. height: math.unit(5 + 4 / 12, "feet"),
  15401. weight: math.unit(220, "lb"),
  15402. name: "Front (Skirt)",
  15403. image: {
  15404. source: "./media/characters/memory/front-skirt.svg",
  15405. extra: 3641 / 3545,
  15406. bottom: 0.03
  15407. }
  15408. },
  15409. frontDress: {
  15410. height: math.unit(5 + 4 / 12, "feet"),
  15411. weight: math.unit(220, "lb"),
  15412. name: "Front (Dress)",
  15413. image: {
  15414. source: "./media/characters/memory/front-dress.svg",
  15415. extra: 3641 / 3545,
  15416. bottom: 0.03
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Micro",
  15423. height: math.unit(6, "inches"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 4 / 12, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(4 + 11 / 12, "feet"),
  15437. weight: math.unit(100, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/luno/front.svg",
  15441. extra: 1535 / 1487,
  15442. bottom: 0.03
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Micro",
  15449. height: math.unit(3, "inches")
  15450. },
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(4 + 11 / 12, "feet"),
  15454. default: true
  15455. },
  15456. {
  15457. name: "Macro",
  15458. height: math.unit(300, "feet")
  15459. },
  15460. {
  15461. name: "Megamacro",
  15462. height: math.unit(700, "miles")
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(6 + 2 / 12, "feet"),
  15471. weight: math.unit(170, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/jamesy/front.svg",
  15475. extra: 440 / 382,
  15476. bottom: 0.005
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Micro",
  15483. height: math.unit(3, "inches")
  15484. },
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(6 + 2 / 12, "feet"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Macro",
  15492. height: math.unit(300, "feet")
  15493. },
  15494. {
  15495. name: "Megamacro",
  15496. height: math.unit(700, "miles")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(160, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/mark/front.svg",
  15509. extra: 3300 / 3100,
  15510. bottom: 136.42 / 3440.47
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Macro",
  15517. height: math.unit(120, "meters")
  15518. },
  15519. {
  15520. name: "Bigger Macro",
  15521. height: math.unit(350, "meters")
  15522. },
  15523. {
  15524. name: "Megamacro",
  15525. height: math.unit(8, "km"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Continental",
  15530. height: math.unit(4550, "km")
  15531. },
  15532. {
  15533. name: "Planetary",
  15534. height: math.unit(65000, "km")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(400, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/mac/front.svg",
  15547. extra: 1048 / 987.7,
  15548. bottom: 60 / 1107.6,
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Macro",
  15555. height: math.unit(500, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15562. {
  15563. front: {
  15564. height: math.unit(5 + 2 / 12, "feet"),
  15565. weight: math.unit(190, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/bari/front.svg",
  15569. extra: 3156 / 2880,
  15570. bottom: 0.03
  15571. }
  15572. },
  15573. back: {
  15574. height: math.unit(5 + 2 / 12, "feet"),
  15575. weight: math.unit(190, "lb"),
  15576. name: "Back",
  15577. image: {
  15578. source: "./media/characters/bari/back.svg",
  15579. extra: 3260 / 2834,
  15580. bottom: 0.025
  15581. }
  15582. },
  15583. frontPlush: {
  15584. height: math.unit(5 + 2 / 12, "feet"),
  15585. weight: math.unit(190, "lb"),
  15586. name: "Front (Plush)",
  15587. image: {
  15588. source: "./media/characters/bari/front-plush.svg",
  15589. extra: 1112 / 1061,
  15590. bottom: 0.002
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(3, "inches")
  15598. },
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(5 + 2 / 12, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(20, "feet")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6 + 1 / 12, "feet"),
  15615. weight: math.unit(275, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/hunter-misha-raven/front.svg"
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Mortal",
  15625. height: math.unit(6 + 1 / 12, "feet")
  15626. },
  15627. {
  15628. name: "Divine",
  15629. height: math.unit(1.12134e34, "parsecs"),
  15630. default: true
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(6 + 3 / 12, "feet"),
  15639. weight: math.unit(220, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/max-calore/front.svg",
  15643. extra: 1700 / 1648,
  15644. bottom: 0.01
  15645. }
  15646. },
  15647. back: {
  15648. height: math.unit(6 + 3 / 12, "feet"),
  15649. weight: math.unit(220, "lb"),
  15650. name: "Back",
  15651. image: {
  15652. source: "./media/characters/max-calore/back.svg",
  15653. extra: 1700 / 1648,
  15654. bottom: 0.01
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(6 + 3 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15668. {
  15669. side: {
  15670. height: math.unit(2 + 8 / 12, "feet"),
  15671. weight: math.unit(99, "lb"),
  15672. name: "Side",
  15673. image: {
  15674. source: "./media/characters/aspen/side.svg",
  15675. extra: 152 / 138,
  15676. bottom: 0.032
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(2 + 8 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15690. {
  15691. side: {
  15692. height: math.unit(3 + 2 / 12, "feet"),
  15693. weight: math.unit(224, "lb"),
  15694. name: "Side",
  15695. image: {
  15696. source: "./media/characters/sheila-feral-wolf/side.svg",
  15697. extra: 179 / 166,
  15698. bottom: 0.03
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(3 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15712. {
  15713. side: {
  15714. height: math.unit(1 + 9 / 12, "feet"),
  15715. weight: math.unit(38, "lb"),
  15716. name: "Side",
  15717. image: {
  15718. source: "./media/characters/michelle/side.svg",
  15719. extra: 147 / 136.7,
  15720. bottom: 0.03
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(1 + 9 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(1 + 1 / 12, "feet"),
  15737. weight: math.unit(18, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/nino/front.svg"
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(1 + 1 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(1, "feet"),
  15757. weight: math.unit(16, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/viola/front.svg"
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(1, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(6 + 5 / 12, "feet"),
  15777. weight: math.unit(580, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/atlas/front.svg",
  15781. extra: 298.5 / 290,
  15782. bottom: 0.015
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(6 + 5 / 12, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15796. {
  15797. side: {
  15798. height: math.unit(1 + 10 / 12, "feet"),
  15799. weight: math.unit(25, "lb"),
  15800. name: "Side",
  15801. image: {
  15802. source: "./media/characters/davy/side.svg",
  15803. extra: 200 / 170,
  15804. bottom: 0.01
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(1 + 10 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15818. {
  15819. side: {
  15820. height: math.unit(4 + 8 / 12, "feet"),
  15821. weight: math.unit(166, "lb"),
  15822. name: "Side",
  15823. image: {
  15824. source: "./media/characters/fiona/side.svg",
  15825. extra: 232 / 220,
  15826. bottom: 0.03
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(4 + 8 / 12, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15840. {
  15841. front: {
  15842. height: math.unit(2, "feet"),
  15843. weight: math.unit(62, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/lyla/front.svg",
  15847. bottom: 0.1
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(2, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15861. {
  15862. side: {
  15863. height: math.unit(1.8, "feet"),
  15864. weight: math.unit(44, "lb"),
  15865. name: "Side",
  15866. image: {
  15867. source: "./media/characters/perseus/side.svg",
  15868. bottom: 0.21
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(1.8, "feet"),
  15876. default: true
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15882. {
  15883. side: {
  15884. height: math.unit(4 + 2 / 12, "feet"),
  15885. weight: math.unit(20, "lb"),
  15886. name: "Side",
  15887. image: {
  15888. source: "./media/characters/remus/side.svg"
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(4 + 2 / 12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(4 + 11 / 12, "feet"),
  15905. weight: math.unit(114, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/raf/front.svg",
  15909. bottom: 0.01
  15910. }
  15911. },
  15912. side: {
  15913. height: math.unit(4 + 11 / 12, "feet"),
  15914. weight: math.unit(114, "lb"),
  15915. name: "Side",
  15916. image: {
  15917. source: "./media/characters/raf/side.svg",
  15918. bottom: 0.005
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Micro",
  15925. height: math.unit(2, "inches")
  15926. },
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(4 + 11 / 12, "feet"),
  15930. default: true
  15931. },
  15932. {
  15933. name: "Macro",
  15934. height: math.unit(70, "feet")
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(1.5, "meters"),
  15943. weight: math.unit(68, "kg"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/liam-einarr/front.svg",
  15947. extra: 2822 / 2666
  15948. }
  15949. },
  15950. back: {
  15951. height: math.unit(1.5, "meters"),
  15952. weight: math.unit(68, "kg"),
  15953. name: "Back",
  15954. image: {
  15955. source: "./media/characters/liam-einarr/back.svg",
  15956. extra: 2822 / 2666,
  15957. bottom: 0.015
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(1.5, "meters"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Macro",
  15969. height: math.unit(150, "meters")
  15970. },
  15971. {
  15972. name: "Megamacro",
  15973. height: math.unit(35, "km")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(6, "feet"),
  15982. weight: math.unit(75, "kg"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/linda/front.svg",
  15986. extra: 930 / 874,
  15987. bottom: 0.004
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(6, "feet"),
  15995. default: true
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(6 + 8 / 12, "feet"),
  16004. weight: math.unit(220, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/caylex/front.svg",
  16008. extra: 821 / 772,
  16009. bottom: 0.07
  16010. }
  16011. },
  16012. back: {
  16013. height: math.unit(6 + 8 / 12, "feet"),
  16014. weight: math.unit(220, "lb"),
  16015. name: "Back",
  16016. image: {
  16017. source: "./media/characters/caylex/back.svg",
  16018. extra: 821 / 772,
  16019. bottom: 0.022
  16020. }
  16021. },
  16022. hand: {
  16023. height: math.unit(1.25, "feet"),
  16024. name: "Hand",
  16025. image: {
  16026. source: "./media/characters/caylex/hand.svg"
  16027. }
  16028. },
  16029. foot: {
  16030. height: math.unit(1.6, "feet"),
  16031. name: "Foot",
  16032. image: {
  16033. source: "./media/characters/caylex/foot.svg"
  16034. }
  16035. },
  16036. armored: {
  16037. height: math.unit(6 + 8 / 12, "feet"),
  16038. weight: math.unit(250, "lb"),
  16039. name: "Armored",
  16040. image: {
  16041. source: "./media/characters/caylex/armored.svg",
  16042. extra: 1420 / 1310,
  16043. bottom: 0.045
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(6 + 8 / 12, "feet"),
  16051. default: true
  16052. },
  16053. {
  16054. name: "Normal+",
  16055. height: math.unit(12, "feet")
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(7 + 6 / 12, "feet"),
  16064. weight: math.unit(288, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/alana/front.svg",
  16068. extra: 679 / 653,
  16069. bottom: 22.5 / 701
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(7 + 6 / 12, "feet")
  16077. },
  16078. {
  16079. name: "Large",
  16080. height: math.unit(50, "feet")
  16081. },
  16082. {
  16083. name: "Macro",
  16084. height: math.unit(100, "feet"),
  16085. default: true
  16086. },
  16087. {
  16088. name: "Macro+",
  16089. height: math.unit(200, "feet")
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(6 + 1 / 12, "feet"),
  16098. weight: math.unit(210, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/hasani/front.svg",
  16102. extra: 244 / 232,
  16103. bottom: 0.01
  16104. }
  16105. },
  16106. back: {
  16107. height: math.unit(6 + 1 / 12, "feet"),
  16108. weight: math.unit(210, "lb"),
  16109. name: "Back",
  16110. image: {
  16111. source: "./media/characters/hasani/back.svg",
  16112. extra: 244 / 232,
  16113. bottom: 0.01
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(6 + 1 / 12, "feet")
  16121. },
  16122. {
  16123. name: "Macro",
  16124. height: math.unit(175, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16131. {
  16132. front: {
  16133. height: math.unit(1.82, "meters"),
  16134. weight: math.unit(140, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/nita/front.svg",
  16138. extra: 2473 / 2363,
  16139. bottom: 0.01
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(1.82, "m")
  16147. },
  16148. {
  16149. name: "Macro",
  16150. height: math.unit(300, "m")
  16151. },
  16152. {
  16153. name: "Mistake Canon",
  16154. height: math.unit(0.5, "miles"),
  16155. default: true
  16156. },
  16157. {
  16158. name: "Big Mistake",
  16159. height: math.unit(13, "miles")
  16160. },
  16161. {
  16162. name: "Playing God",
  16163. height: math.unit(2450, "miles")
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16169. {
  16170. front: {
  16171. height: math.unit(4, "feet"),
  16172. weight: math.unit(120, "lb"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/shiriko/front.svg",
  16176. extra: 195 / 188
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(4, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6, "feet"),
  16193. name: "front",
  16194. image: {
  16195. source: "./media/characters/deja/front.svg",
  16196. extra: 926 / 840,
  16197. bottom: 0.07
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Planck Length",
  16204. height: math.unit(1.6e-35, "meters")
  16205. },
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(30.48, "meters"),
  16209. default: true
  16210. },
  16211. {
  16212. name: "Universal",
  16213. height: math.unit(8.8e26, "meters")
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16219. {
  16220. side: {
  16221. height: math.unit(8, "feet"),
  16222. weight: math.unit(6300, "lb"),
  16223. name: "Side",
  16224. image: {
  16225. source: "./media/characters/anima/side.svg",
  16226. bottom: 0.035
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(8, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(8, "feet"),
  16243. weight: math.unit(350, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/bianca/front.svg",
  16247. extra: 234 / 225,
  16248. bottom: 0.03
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(8, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/adinia/front.svg",
  16269. extra: 1845 / 1672,
  16270. bottom: 0.02
  16271. }
  16272. },
  16273. back: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Back",
  16277. image: {
  16278. source: "./media/characters/adinia/back.svg",
  16279. extra: 1845 / 1672,
  16280. bottom: 0.002
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(11 + 5 / 12, "feet"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(3, "meters"),
  16297. weight: math.unit(200, "kg"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/lykasa/front.svg",
  16301. extra: 1076 / 976,
  16302. bottom: 0.06
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(3, "meters")
  16310. },
  16311. {
  16312. name: "Kaiju",
  16313. height: math.unit(120, "meters"),
  16314. default: true
  16315. },
  16316. {
  16317. name: "Mega Kaiju",
  16318. height: math.unit(240, "km")
  16319. },
  16320. {
  16321. name: "Giga Kaiju",
  16322. height: math.unit(400, "megameters")
  16323. },
  16324. {
  16325. name: "Tera Kaiju",
  16326. height: math.unit(800, "gigameters")
  16327. },
  16328. {
  16329. name: "Kaiju Dragon Goddess",
  16330. height: math.unit(26, "zettaparsecs")
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16336. {
  16337. side: {
  16338. height: math.unit(283 / 124 * 6, "feet"),
  16339. weight: math.unit(35000, "lb"),
  16340. name: "Side",
  16341. image: {
  16342. source: "./media/characters/malfaren/side.svg",
  16343. extra: 2500 / 1010,
  16344. bottom: 0.01
  16345. }
  16346. },
  16347. front: {
  16348. height: math.unit(22.36, "feet"),
  16349. weight: math.unit(35000, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/malfaren/front.svg",
  16353. extra: 1631 / 1476,
  16354. bottom: 0.01
  16355. }
  16356. },
  16357. maw: {
  16358. height: math.unit(6.9, "feet"),
  16359. name: "Maw",
  16360. image: {
  16361. source: "./media/characters/malfaren/maw.svg"
  16362. }
  16363. },
  16364. },
  16365. [
  16366. {
  16367. name: "Big",
  16368. height: math.unit(283 / 162 * 6, "feet"),
  16369. },
  16370. {
  16371. name: "Bigger",
  16372. height: math.unit(283 / 124 * 6, "feet")
  16373. },
  16374. {
  16375. name: "Massive",
  16376. height: math.unit(283 / 92 * 6, "feet"),
  16377. default: true
  16378. },
  16379. {
  16380. name: "👀💦",
  16381. height: math.unit(283 / 73 * 6, "feet"),
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(1.7, "m"),
  16390. weight: math.unit(70, "kg"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/kernel/front.svg",
  16394. extra: 222 / 210,
  16395. bottom: 0.007
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Nano",
  16402. height: math.unit(17, "micrometers")
  16403. },
  16404. {
  16405. name: "Micro",
  16406. height: math.unit(1.7, "mm")
  16407. },
  16408. {
  16409. name: "Small",
  16410. height: math.unit(1.7, "cm")
  16411. },
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(1.7, "m"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(1.75, "meters"),
  16424. weight: math.unit(65, "kg"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/jayne-folest/front.svg",
  16428. extra: 2115 / 2007,
  16429. bottom: 0.02
  16430. }
  16431. },
  16432. back: {
  16433. height: math.unit(1.75, "meters"),
  16434. weight: math.unit(65, "kg"),
  16435. name: "Back",
  16436. image: {
  16437. source: "./media/characters/jayne-folest/back.svg",
  16438. extra: 2115 / 2007,
  16439. bottom: 0.005
  16440. }
  16441. },
  16442. frontClothed: {
  16443. height: math.unit(1.75, "meters"),
  16444. weight: math.unit(65, "kg"),
  16445. name: "Front (Clothed)",
  16446. image: {
  16447. source: "./media/characters/jayne-folest/front-clothed.svg",
  16448. extra: 2115 / 2007,
  16449. bottom: 0.035
  16450. }
  16451. },
  16452. hand: {
  16453. height: math.unit(1 / 1.260, "feet"),
  16454. name: "Hand",
  16455. image: {
  16456. source: "./media/characters/jayne-folest/hand.svg"
  16457. }
  16458. },
  16459. foot: {
  16460. height: math.unit(1 / 0.918, "feet"),
  16461. name: "Foot",
  16462. image: {
  16463. source: "./media/characters/jayne-folest/foot.svg"
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Micro",
  16470. height: math.unit(4, "cm")
  16471. },
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(1.75, "meters")
  16475. },
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(47.5, "meters"),
  16479. default: true
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(180, "cm"),
  16488. weight: math.unit(70, "kg"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/algier/front.svg",
  16492. extra: 596 / 572,
  16493. bottom: 0.04
  16494. }
  16495. },
  16496. back: {
  16497. height: math.unit(180, "cm"),
  16498. weight: math.unit(70, "kg"),
  16499. name: "Back",
  16500. image: {
  16501. source: "./media/characters/algier/back.svg",
  16502. extra: 596 / 572,
  16503. bottom: 0.025
  16504. }
  16505. },
  16506. frontdressed: {
  16507. height: math.unit(180, "cm"),
  16508. weight: math.unit(150, "kg"),
  16509. name: "Front-dressed",
  16510. image: {
  16511. source: "./media/characters/algier/front-dressed.svg",
  16512. extra: 596 / 572,
  16513. bottom: 0.038
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Micro",
  16520. height: math.unit(5, "cm")
  16521. },
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(180, "cm"),
  16525. default: true
  16526. },
  16527. {
  16528. name: "Macro",
  16529. height: math.unit(64, "m")
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16535. {
  16536. upright: {
  16537. height: math.unit(7, "feet"),
  16538. weight: math.unit(300, "lb"),
  16539. name: "Upright",
  16540. image: {
  16541. source: "./media/characters/pretzel/upright.svg",
  16542. extra: 534 / 522,
  16543. bottom: 0.065
  16544. }
  16545. },
  16546. sprawling: {
  16547. height: math.unit(3.75, "feet"),
  16548. weight: math.unit(300, "lb"),
  16549. name: "Sprawling",
  16550. image: {
  16551. source: "./media/characters/pretzel/sprawling.svg",
  16552. extra: 314 / 281,
  16553. bottom: 0.1
  16554. }
  16555. },
  16556. tongue: {
  16557. height: math.unit(2, "feet"),
  16558. name: "Tongue",
  16559. image: {
  16560. source: "./media/characters/pretzel/tongue.svg"
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(7, "feet"),
  16568. default: true
  16569. },
  16570. {
  16571. name: "Oversized",
  16572. height: math.unit(15, "feet")
  16573. },
  16574. {
  16575. name: "Huge",
  16576. height: math.unit(30, "feet")
  16577. },
  16578. {
  16579. name: "Macro",
  16580. height: math.unit(250, "feet")
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16586. {
  16587. sideFront: {
  16588. height: math.unit(5 + 2 / 12, "feet"),
  16589. weight: math.unit(120, "lb"),
  16590. name: "Front Side",
  16591. image: {
  16592. source: "./media/characters/roxi/side-front.svg",
  16593. extra: 2924 / 2717,
  16594. bottom: 0.08
  16595. }
  16596. },
  16597. sideBack: {
  16598. height: math.unit(5 + 2 / 12, "feet"),
  16599. weight: math.unit(120, "lb"),
  16600. name: "Back Side",
  16601. image: {
  16602. source: "./media/characters/roxi/side-back.svg",
  16603. extra: 2904 / 2693,
  16604. bottom: 0.06
  16605. }
  16606. },
  16607. front: {
  16608. height: math.unit(5 + 2 / 12, "feet"),
  16609. weight: math.unit(120, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/roxi/front.svg",
  16613. extra: 2028 / 1907,
  16614. bottom: 0.01
  16615. }
  16616. },
  16617. frontAlt: {
  16618. height: math.unit(5 + 2 / 12, "feet"),
  16619. weight: math.unit(120, "lb"),
  16620. name: "Front (Alt)",
  16621. image: {
  16622. source: "./media/characters/roxi/front-alt.svg",
  16623. extra: 1828 / 1798,
  16624. bottom: 0.01
  16625. }
  16626. },
  16627. sitting: {
  16628. height: math.unit(2.8, "feet"),
  16629. weight: math.unit(120, "lb"),
  16630. name: "Sitting",
  16631. image: {
  16632. source: "./media/characters/roxi/sitting.svg",
  16633. extra: 2660 / 2462,
  16634. bottom: 0.1
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(5 + 2 / 12, "feet"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16648. {
  16649. side: {
  16650. height: math.unit(55, "feet"),
  16651. weight: math.unit(153, "tons"),
  16652. name: "Side",
  16653. image: {
  16654. source: "./media/characters/shadow/side.svg",
  16655. extra: 701 / 628,
  16656. bottom: 0.02
  16657. }
  16658. },
  16659. flying: {
  16660. height: math.unit(145, "feet"),
  16661. weight: math.unit(153, "tons"),
  16662. name: "Flying",
  16663. image: {
  16664. source: "./media/characters/shadow/flying.svg"
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(55, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(200, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/marcie/front.svg",
  16685. extra: 960 / 876,
  16686. bottom: 58 / 1017.87
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(1, "mile"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(7, "feet"),
  16703. weight: math.unit(200, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/kachina/front.svg",
  16707. extra: 1290.68 / 1119,
  16708. bottom: 36.5 / 1327.18
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(7, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16722. {
  16723. looking: {
  16724. height: math.unit(2, "meters"),
  16725. weight: math.unit(300, "kg"),
  16726. name: "Looking",
  16727. image: {
  16728. source: "./media/characters/kash/looking.svg",
  16729. extra: 474 / 344,
  16730. bottom: 0.03
  16731. }
  16732. },
  16733. side: {
  16734. height: math.unit(2, "meters"),
  16735. weight: math.unit(300, "kg"),
  16736. name: "Side",
  16737. image: {
  16738. source: "./media/characters/kash/side.svg",
  16739. extra: 302 / 251,
  16740. bottom: 0.03
  16741. }
  16742. },
  16743. front: {
  16744. height: math.unit(2, "meters"),
  16745. weight: math.unit(300, "kg"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/kash/front.svg",
  16749. extra: 495 / 360,
  16750. bottom: 0.015
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(2, "meters"),
  16758. default: true
  16759. },
  16760. {
  16761. name: "Big",
  16762. height: math.unit(3, "meters")
  16763. },
  16764. {
  16765. name: "Large",
  16766. height: math.unit(5, "meters")
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16772. {
  16773. feeding: {
  16774. height: math.unit(6.7, "feet"),
  16775. weight: math.unit(350, "lb"),
  16776. name: "Feeding",
  16777. image: {
  16778. source: "./media/characters/lalim/feeding.svg",
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(6.7, "feet"),
  16786. default: true
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16792. {
  16793. front: {
  16794. height: math.unit(9.5, "feet"),
  16795. weight: math.unit(600, "lb"),
  16796. name: "Front",
  16797. image: {
  16798. source: "./media/characters/de'vout/front.svg",
  16799. extra: 1443 / 1328,
  16800. bottom: 0.025
  16801. }
  16802. },
  16803. back: {
  16804. height: math.unit(9.5, "feet"),
  16805. weight: math.unit(600, "lb"),
  16806. name: "Back",
  16807. image: {
  16808. source: "./media/characters/de'vout/back.svg",
  16809. extra: 1443 / 1328
  16810. }
  16811. },
  16812. frontDressed: {
  16813. height: math.unit(9.5, "feet"),
  16814. weight: math.unit(600, "lb"),
  16815. name: "Front (Dressed",
  16816. image: {
  16817. source: "./media/characters/de'vout/front-dressed.svg",
  16818. extra: 1443 / 1328,
  16819. bottom: 0.025
  16820. }
  16821. },
  16822. backDressed: {
  16823. height: math.unit(9.5, "feet"),
  16824. weight: math.unit(600, "lb"),
  16825. name: "Back (Dressed",
  16826. image: {
  16827. source: "./media/characters/de'vout/back-dressed.svg",
  16828. extra: 1443 / 1328
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(9.5, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(8, "feet"),
  16845. weight: math.unit(225, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/talana/front.svg",
  16849. extra: 1410 / 1300,
  16850. bottom: 0.015
  16851. }
  16852. },
  16853. frontDressed: {
  16854. height: math.unit(8, "feet"),
  16855. weight: math.unit(225, "lb"),
  16856. name: "Front (Dressed",
  16857. image: {
  16858. source: "./media/characters/talana/front-dressed.svg",
  16859. extra: 1410 / 1300,
  16860. bottom: 0.015
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(8, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16874. {
  16875. side: {
  16876. height: math.unit(7.2, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Side",
  16879. image: {
  16880. source: "./media/characters/xeauvok/side.svg",
  16881. extra: 1975 / 1523,
  16882. bottom: 0.07
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(7.2, "feet"),
  16890. default: true
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16896. {
  16897. side: {
  16898. height: math.unit(10, "feet"),
  16899. weight: math.unit(900, "kg"),
  16900. name: "Side",
  16901. image: {
  16902. source: "./media/characters/zara/side.svg",
  16903. extra: 504 / 498
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(10, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16917. {
  16918. side: {
  16919. height: math.unit(6, "feet"),
  16920. weight: math.unit(150, "lb"),
  16921. name: "Side",
  16922. image: {
  16923. source: "./media/characters/richard-dragon/side.svg",
  16924. extra: 845 / 340,
  16925. bottom: 0.017
  16926. }
  16927. },
  16928. maw: {
  16929. height: math.unit(2.97, "feet"),
  16930. name: "Maw",
  16931. image: {
  16932. source: "./media/characters/richard-dragon/maw.svg"
  16933. }
  16934. },
  16935. },
  16936. [
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(4, "feet"),
  16944. weight: math.unit(100, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/richard-smeargle/front.svg",
  16948. extra: 2952 / 2820,
  16949. bottom: 0.028
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(4, "feet"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Dynamax",
  16961. height: math.unit(20, "meters")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6, "feet"),
  16970. weight: math.unit(110, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/klay/front.svg",
  16974. extra: 962 / 883,
  16975. bottom: 0.04
  16976. }
  16977. },
  16978. back: {
  16979. height: math.unit(6, "feet"),
  16980. weight: math.unit(110, "lb"),
  16981. name: "Back",
  16982. image: {
  16983. source: "./media/characters/klay/back.svg",
  16984. extra: 962 / 883
  16985. }
  16986. },
  16987. beans: {
  16988. height: math.unit(1.15, "feet"),
  16989. name: "Beans",
  16990. image: {
  16991. source: "./media/characters/klay/beans.svg"
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Micro",
  16998. height: math.unit(6, "inches")
  16999. },
  17000. {
  17001. name: "Mini",
  17002. height: math.unit(3, "feet")
  17003. },
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(6, "feet"),
  17007. default: true
  17008. },
  17009. {
  17010. name: "Big",
  17011. height: math.unit(25, "feet")
  17012. },
  17013. {
  17014. name: "Macro",
  17015. height: math.unit(100, "feet")
  17016. },
  17017. {
  17018. name: "Megamacro",
  17019. height: math.unit(400, "feet")
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17025. {
  17026. front: {
  17027. height: math.unit(6, "feet"),
  17028. weight: math.unit(160, "lb"),
  17029. name: "Front",
  17030. image: {
  17031. source: "./media/characters/marcus/front.svg",
  17032. extra: 734 / 676,
  17033. bottom: 0.03
  17034. }
  17035. },
  17036. },
  17037. [
  17038. {
  17039. name: "Little",
  17040. height: math.unit(6, "feet")
  17041. },
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(110, "feet"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "Macro",
  17049. height: math.unit(250, "feet")
  17050. },
  17051. {
  17052. name: "Megamacro",
  17053. height: math.unit(1000, "feet")
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(7, "feet"),
  17062. weight: math.unit(275, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/claude-delroute/front.svg",
  17066. extra: 230 / 214,
  17067. bottom: 0.007
  17068. }
  17069. },
  17070. side: {
  17071. height: math.unit(7, "feet"),
  17072. weight: math.unit(275, "lb"),
  17073. name: "Side",
  17074. image: {
  17075. source: "./media/characters/claude-delroute/side.svg",
  17076. extra: 222 / 214,
  17077. bottom: 0.01
  17078. }
  17079. },
  17080. back: {
  17081. height: math.unit(7, "feet"),
  17082. weight: math.unit(275, "lb"),
  17083. name: "Back",
  17084. image: {
  17085. source: "./media/characters/claude-delroute/back.svg",
  17086. extra: 230 / 214,
  17087. bottom: 0.015
  17088. }
  17089. },
  17090. maw: {
  17091. height: math.unit(0.6407, "meters"),
  17092. name: "Maw",
  17093. image: {
  17094. source: "./media/characters/claude-delroute/maw.svg"
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(7, "feet"),
  17102. default: true
  17103. },
  17104. {
  17105. name: "Lorge",
  17106. height: math.unit(20, "feet")
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(8 + 4 / 12, "feet"),
  17115. weight: math.unit(600, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/dragonien/front.svg",
  17119. extra: 100 / 94,
  17120. bottom: 3.3 / 103.3445
  17121. }
  17122. },
  17123. back: {
  17124. height: math.unit(8 + 4 / 12, "feet"),
  17125. weight: math.unit(600, "lb"),
  17126. name: "Back",
  17127. image: {
  17128. source: "./media/characters/dragonien/back.svg",
  17129. extra: 776 / 746,
  17130. bottom: 6.4 / 782.0616
  17131. }
  17132. },
  17133. foot: {
  17134. height: math.unit(1.54, "feet"),
  17135. name: "Foot",
  17136. image: {
  17137. source: "./media/characters/dragonien/foot.svg",
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(8 + 4 / 12, "feet"),
  17145. default: true
  17146. },
  17147. {
  17148. name: "Macro",
  17149. height: math.unit(200, "feet")
  17150. },
  17151. {
  17152. name: "Megamacro",
  17153. height: math.unit(1, "mile")
  17154. },
  17155. {
  17156. name: "Gigamacro",
  17157. height: math.unit(1000, "miles")
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(5 + 2 / 12, "feet"),
  17166. weight: math.unit(110, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/desta/front.svg",
  17170. extra: 1482 / 1417
  17171. }
  17172. },
  17173. side: {
  17174. height: math.unit(5 + 2 / 12, "feet"),
  17175. weight: math.unit(110, "lb"),
  17176. name: "Side",
  17177. image: {
  17178. source: "./media/characters/desta/side.svg",
  17179. extra: 2579 / 2491,
  17180. bottom: 0.053
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Micro",
  17187. height: math.unit(6, "inches")
  17188. },
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(5 + 2 / 12, "feet"),
  17192. default: true
  17193. },
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(62, "feet")
  17197. },
  17198. {
  17199. name: "Megamacro",
  17200. height: math.unit(1800, "feet")
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(10, "feet"),
  17209. weight: math.unit(700, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/storm-alystar/front.svg",
  17213. extra: 2112 / 1898,
  17214. bottom: 0.034
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Micro",
  17221. height: math.unit(3.5, "inches")
  17222. },
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(10, "feet"),
  17226. default: true
  17227. },
  17228. {
  17229. name: "Macro",
  17230. height: math.unit(400, "feet")
  17231. },
  17232. {
  17233. name: "Deific",
  17234. height: math.unit(60, "miles")
  17235. },
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17240. {
  17241. front: {
  17242. height: math.unit(2.35, "meters"),
  17243. weight: math.unit(119, "kg"),
  17244. name: "Front",
  17245. image: {
  17246. source: "./media/characters/ilia/front.svg",
  17247. extra: 1285 / 1255,
  17248. bottom: 0.06
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(2.35, "meters")
  17256. },
  17257. {
  17258. name: "Macro",
  17259. height: math.unit(140, "meters"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Megamacro",
  17264. height: math.unit(100, "miles")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6 + 5 / 12, "feet"),
  17273. weight: math.unit(190, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/kingdead/front.svg",
  17277. extra: 1228 / 1177
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Micro",
  17284. height: math.unit(7, "inches")
  17285. },
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(6 + 5 / 12, "feet")
  17289. },
  17290. {
  17291. name: "Macro",
  17292. height: math.unit(150, "feet"),
  17293. default: true
  17294. },
  17295. {
  17296. name: "Megamacro",
  17297. height: math.unit(200, "miles")
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(8, "feet"),
  17306. weight: math.unit(600, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/kyrehx/front.svg",
  17310. extra: 1195 / 1095,
  17311. bottom: 0.034
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Micro",
  17318. height: math.unit(2, "inches")
  17319. },
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(8, "feet"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(255, "feet")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17336. weight: math.unit(184, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/xang/front.svg",
  17340. extra: 845 / 755
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(0.935 * 146, "feet")
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(0.935 * 3, "miles")
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17362. {
  17363. frontDressed: {
  17364. height: math.unit(5 + 7 / 12, "feet"),
  17365. weight: math.unit(140, "lb"),
  17366. name: "Front (Dressed)",
  17367. image: {
  17368. source: "./media/characters/doc-weardno/front-dressed.svg",
  17369. extra: 263 / 234
  17370. }
  17371. },
  17372. backDressed: {
  17373. height: math.unit(5 + 7 / 12, "feet"),
  17374. weight: math.unit(140, "lb"),
  17375. name: "Back (Dressed)",
  17376. image: {
  17377. source: "./media/characters/doc-weardno/back-dressed.svg",
  17378. extra: 266 / 238
  17379. }
  17380. },
  17381. front: {
  17382. height: math.unit(5 + 7 / 12, "feet"),
  17383. weight: math.unit(140, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/doc-weardno/front.svg",
  17387. extra: 254 / 233
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Micro",
  17394. height: math.unit(3, "inches")
  17395. },
  17396. {
  17397. name: "Normal",
  17398. height: math.unit(5 + 7 / 12, "feet"),
  17399. default: true
  17400. },
  17401. {
  17402. name: "Macro",
  17403. height: math.unit(25, "feet")
  17404. },
  17405. {
  17406. name: "Megamacro",
  17407. height: math.unit(2, "miles")
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(6 + 2 / 12, "feet"),
  17416. weight: math.unit(153, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/seth-whilst/front.svg",
  17420. bottom: 0.07
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Micro",
  17427. height: math.unit(5, "inches")
  17428. },
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(6 + 2 / 12, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(3, "inches"),
  17441. weight: math.unit(8, "grams"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/pocket-jabari/front.svg",
  17445. extra: 1024 / 974,
  17446. bottom: 0.039
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Minimicro",
  17453. height: math.unit(8, "mm")
  17454. },
  17455. {
  17456. name: "Micro",
  17457. height: math.unit(3, "inches"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(3, "feet")
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(15, "feet"),
  17471. weight: math.unit(3280, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/sapphy/front.svg",
  17475. extra: 671 / 577,
  17476. bottom: 0.085
  17477. }
  17478. },
  17479. back: {
  17480. height: math.unit(15, "feet"),
  17481. weight: math.unit(3280, "lb"),
  17482. name: "Back",
  17483. image: {
  17484. source: "./media/characters/sapphy/back.svg",
  17485. extra: 631 / 607,
  17486. bottom: 0.045
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(15, "feet")
  17494. },
  17495. {
  17496. name: "Casual Macro",
  17497. height: math.unit(120, "feet")
  17498. },
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(2150, "feet"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Megamacro",
  17506. height: math.unit(8, "miles")
  17507. },
  17508. {
  17509. name: "Galaxy Mom",
  17510. height: math.unit(6, "megalightyears")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(6, "feet"),
  17519. weight: math.unit(170, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/kiro/front.svg",
  17523. extra: 1064 / 1012,
  17524. bottom: 0.052
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Micro",
  17531. height: math.unit(6, "inches")
  17532. },
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(6, "feet"),
  17536. default: true
  17537. },
  17538. {
  17539. name: "Macro",
  17540. height: math.unit(72, "feet")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(5 + 9 / 12, "feet"),
  17549. weight: math.unit(175, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/irishfox/front.svg",
  17553. extra: 1912 / 1680,
  17554. bottom: 0.02
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Nano",
  17561. height: math.unit(1, "mm")
  17562. },
  17563. {
  17564. name: "Micro",
  17565. height: math.unit(2, "inches")
  17566. },
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(5 + 9 / 12, "feet"),
  17570. default: true
  17571. },
  17572. {
  17573. name: "Macro",
  17574. height: math.unit(45, "feet")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(6 + 1 / 12, "feet"),
  17583. weight: math.unit(150, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/aronai-sieyes/front.svg",
  17587. extra: 1556 / 1480,
  17588. bottom: 0.015
  17589. }
  17590. },
  17591. side: {
  17592. height: math.unit(6 + 1 / 12, "feet"),
  17593. weight: math.unit(150, "lb"),
  17594. name: "Side",
  17595. image: {
  17596. source: "./media/characters/aronai-sieyes/side.svg",
  17597. extra: 1433 / 1390,
  17598. bottom: 0.0393
  17599. }
  17600. },
  17601. back: {
  17602. height: math.unit(6 + 1 / 12, "feet"),
  17603. weight: math.unit(150, "lb"),
  17604. name: "Back",
  17605. image: {
  17606. source: "./media/characters/aronai-sieyes/back.svg",
  17607. extra: 1544 / 1494,
  17608. bottom: 0.02
  17609. }
  17610. },
  17611. frontClothed: {
  17612. height: math.unit(6 + 1 / 12, "feet"),
  17613. weight: math.unit(150, "lb"),
  17614. name: "Front (Clothed)",
  17615. image: {
  17616. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17617. extra: 1582 / 1527
  17618. }
  17619. },
  17620. feral: {
  17621. height: math.unit(18, "feet"),
  17622. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17623. name: "Feral",
  17624. image: {
  17625. source: "./media/characters/aronai-sieyes/feral.svg",
  17626. extra: 1530 / 1240,
  17627. bottom: 0.035
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Micro",
  17634. height: math.unit(2, "inches")
  17635. },
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(6 + 1 / 12, "feet"),
  17639. default: true
  17640. }
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(12, "feet"),
  17648. weight: math.unit(410, "kg"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/xuna/front.svg",
  17652. extra: 2184 / 1980
  17653. }
  17654. },
  17655. side: {
  17656. height: math.unit(12, "feet"),
  17657. weight: math.unit(410, "kg"),
  17658. name: "Side",
  17659. image: {
  17660. source: "./media/characters/xuna/side.svg",
  17661. extra: 2184 / 1980
  17662. }
  17663. },
  17664. back: {
  17665. height: math.unit(12, "feet"),
  17666. weight: math.unit(410, "kg"),
  17667. name: "Back",
  17668. image: {
  17669. source: "./media/characters/xuna/back.svg",
  17670. extra: 2184 / 1980
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Nano glow",
  17677. height: math.unit(10, "nm")
  17678. },
  17679. {
  17680. name: "Micro floof",
  17681. height: math.unit(0.3, "m")
  17682. },
  17683. {
  17684. name: "Huggable softy boi",
  17685. height: math.unit(3.6576, "m"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Admirable floof",
  17690. height: math.unit(80, "meters")
  17691. },
  17692. {
  17693. name: "Gentle macro",
  17694. height: math.unit(300, "meters")
  17695. },
  17696. {
  17697. name: "Very careful floof",
  17698. height: math.unit(3200, "meters")
  17699. },
  17700. {
  17701. name: "The mega floof",
  17702. height: math.unit(36000, "meters")
  17703. },
  17704. {
  17705. name: "Giga-fur-Wicker",
  17706. height: math.unit(4800000, "meters")
  17707. },
  17708. {
  17709. name: "Licky world",
  17710. height: math.unit(20000000, "meters")
  17711. },
  17712. {
  17713. name: "Floofy cyan sun",
  17714. height: math.unit(1500000000, "meters")
  17715. },
  17716. {
  17717. name: "Milky Wicker",
  17718. height: math.unit(1000000000000000000000, "meters")
  17719. },
  17720. {
  17721. name: "The observing Wicker",
  17722. height: math.unit(999999999999999999999999999, "meters")
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(5 + 9 / 12, "feet"),
  17731. weight: math.unit(150, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/arokha-sieyes/front.svg",
  17735. extra: 1425 / 1284,
  17736. bottom: 0.05
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(5 + 9 / 12, "feet")
  17744. },
  17745. {
  17746. name: "Macro",
  17747. height: math.unit(30, "meters"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17754. {
  17755. front: {
  17756. height: math.unit(6, "feet"),
  17757. weight: math.unit(180, "lb"),
  17758. name: "Front",
  17759. image: {
  17760. source: "./media/characters/arokh-sieyes/front.svg",
  17761. extra: 1830 / 1769,
  17762. bottom: 0.01
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(6, "feet")
  17770. },
  17771. {
  17772. name: "Macro",
  17773. height: math.unit(30, "meters"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17780. {
  17781. side: {
  17782. height: math.unit(13 + 1 / 12, "feet"),
  17783. weight: math.unit(8.5, "tonnes"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/goldeneye/side.svg",
  17787. extra: 1182 / 778,
  17788. bottom: 0.067
  17789. }
  17790. },
  17791. paw: {
  17792. height: math.unit(3.4, "feet"),
  17793. name: "Paw",
  17794. image: {
  17795. source: "./media/characters/goldeneye/paw.svg"
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(13 + 1 / 12, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17809. {
  17810. front: {
  17811. height: math.unit(6 + 1 / 12, "feet"),
  17812. weight: math.unit(210, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/leonardo-lycheborne/front.svg",
  17816. extra: 390 / 365,
  17817. bottom: 0.032
  17818. }
  17819. },
  17820. side: {
  17821. height: math.unit(6 + 1 / 12, "feet"),
  17822. weight: math.unit(210, "lb"),
  17823. name: "Side",
  17824. image: {
  17825. source: "./media/characters/leonardo-lycheborne/side.svg",
  17826. extra: 390 / 365,
  17827. bottom: 0.005
  17828. }
  17829. },
  17830. back: {
  17831. height: math.unit(6 + 1 / 12, "feet"),
  17832. weight: math.unit(210, "lb"),
  17833. name: "Back",
  17834. image: {
  17835. source: "./media/characters/leonardo-lycheborne/back.svg",
  17836. extra: 392 / 366,
  17837. bottom: 0.01
  17838. }
  17839. },
  17840. hand: {
  17841. height: math.unit(1.08, "feet"),
  17842. name: "Hand",
  17843. image: {
  17844. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17845. }
  17846. },
  17847. foot: {
  17848. height: math.unit(1.32, "feet"),
  17849. name: "Foot",
  17850. image: {
  17851. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17852. }
  17853. },
  17854. were: {
  17855. height: math.unit(20, "feet"),
  17856. weight: math.unit(7800, "lb"),
  17857. name: "Were",
  17858. image: {
  17859. source: "./media/characters/leonardo-lycheborne/were.svg",
  17860. extra: 308 / 294,
  17861. bottom: 0.048
  17862. }
  17863. },
  17864. feral: {
  17865. height: math.unit(7.5, "feet"),
  17866. weight: math.unit(600, "lb"),
  17867. name: "Feral",
  17868. image: {
  17869. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17870. extra: 210 / 186,
  17871. bottom: 0.108
  17872. }
  17873. },
  17874. taur: {
  17875. height: math.unit(11, "feet"),
  17876. weight: math.unit(3300, "lb"),
  17877. name: "Taur",
  17878. image: {
  17879. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17880. extra: 320 / 303,
  17881. bottom: 0.025
  17882. }
  17883. },
  17884. barghest: {
  17885. height: math.unit(11, "feet"),
  17886. weight: math.unit(1300, "lb"),
  17887. name: "Barghest",
  17888. image: {
  17889. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17890. extra: 323 / 302,
  17891. bottom: 0.027
  17892. }
  17893. },
  17894. dick: {
  17895. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17896. name: "Dick",
  17897. image: {
  17898. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17899. }
  17900. },
  17901. dickWere: {
  17902. height: math.unit((20) / 3.8, "feet"),
  17903. name: "Dick (Were)",
  17904. image: {
  17905. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(6 + 1 / 12, "feet"),
  17913. default: true
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17919. {
  17920. front: {
  17921. height: math.unit(10, "feet"),
  17922. weight: math.unit(350, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/jet/front.svg",
  17926. extra: 2050 / 1980,
  17927. bottom: 0.013
  17928. }
  17929. },
  17930. back: {
  17931. height: math.unit(10, "feet"),
  17932. weight: math.unit(350, "lb"),
  17933. name: "Back",
  17934. image: {
  17935. source: "./media/characters/jet/back.svg",
  17936. extra: 2050 / 1980,
  17937. bottom: 0.013
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Micro",
  17944. height: math.unit(6, "inches")
  17945. },
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(10, "feet"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Macro",
  17953. height: math.unit(100, "feet")
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(15, "feet"),
  17962. weight: math.unit(2800, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/tanarath/front.svg",
  17966. extra: 2392 / 2220,
  17967. bottom: 0.03
  17968. }
  17969. },
  17970. back: {
  17971. height: math.unit(15, "feet"),
  17972. weight: math.unit(2800, "lb"),
  17973. name: "Back",
  17974. image: {
  17975. source: "./media/characters/tanarath/back.svg",
  17976. extra: 2392 / 2220,
  17977. bottom: 0.03
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(15, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(7 + 1 / 12, "feet"),
  17994. weight: math.unit(175, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/patty-cattybatty/front.svg",
  17998. extra: 908 / 874,
  17999. bottom: 0.025
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Micro",
  18006. height: math.unit(1, "inch")
  18007. },
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(7 + 1 / 12, "feet")
  18011. },
  18012. {
  18013. name: "Mini Macro",
  18014. height: math.unit(155, "feet")
  18015. },
  18016. {
  18017. name: "Macro",
  18018. height: math.unit(1077, "feet")
  18019. },
  18020. {
  18021. name: "Mega Macro",
  18022. height: math.unit(47650, "feet"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Giga Macro",
  18027. height: math.unit(440, "miles")
  18028. },
  18029. {
  18030. name: "Tera Macro",
  18031. height: math.unit(8700, "miles")
  18032. },
  18033. {
  18034. name: "Planetary Macro",
  18035. height: math.unit(32700, "miles")
  18036. },
  18037. {
  18038. name: "Solar Macro",
  18039. height: math.unit(550000, "miles")
  18040. },
  18041. {
  18042. name: "Celestial Macro",
  18043. height: math.unit(2.5, "AU")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(4 + 5 / 12, "feet"),
  18052. weight: math.unit(90, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/cappu/front.svg",
  18056. extra: 1247 / 1152,
  18057. bottom: 0.012
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(4 + 5 / 12, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18071. {
  18072. frontDressed: {
  18073. height: math.unit(70, "cm"),
  18074. weight: math.unit(6, "kg"),
  18075. name: "Front (Dressed)",
  18076. image: {
  18077. source: "./media/characters/sebi/front-dressed.svg",
  18078. extra: 713.5 / 686.5,
  18079. bottom: 0.003
  18080. }
  18081. },
  18082. front: {
  18083. height: math.unit(70, "cm"),
  18084. weight: math.unit(5, "kg"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/sebi/front.svg",
  18088. extra: 713.5 / 686.5,
  18089. bottom: 0.003
  18090. }
  18091. }
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(70, "cm"),
  18097. default: true
  18098. },
  18099. {
  18100. name: "Macro",
  18101. height: math.unit(8, "meters")
  18102. },
  18103. ]
  18104. ))
  18105. characterMakers.push(() => makeCharacter(
  18106. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18107. {
  18108. front: {
  18109. height: math.unit(6, "feet"),
  18110. weight: math.unit(150, "lb"),
  18111. name: "Front",
  18112. image: {
  18113. source: "./media/characters/typhek/front.svg",
  18114. extra: 1948 / 1929,
  18115. bottom: 0.025
  18116. }
  18117. },
  18118. side: {
  18119. height: math.unit(6, "feet"),
  18120. weight: math.unit(150, "lb"),
  18121. name: "Side",
  18122. image: {
  18123. source: "./media/characters/typhek/side.svg",
  18124. extra: 2034 / 2010,
  18125. bottom: 0.003
  18126. }
  18127. },
  18128. back: {
  18129. height: math.unit(6, "feet"),
  18130. weight: math.unit(150, "lb"),
  18131. name: "Back",
  18132. image: {
  18133. source: "./media/characters/typhek/back.svg",
  18134. extra: 2005 / 1978,
  18135. bottom: 0.004
  18136. }
  18137. },
  18138. palm: {
  18139. height: math.unit(1.2, "feet"),
  18140. name: "Palm",
  18141. image: {
  18142. source: "./media/characters/typhek/palm.svg"
  18143. }
  18144. },
  18145. fist: {
  18146. height: math.unit(1.1, "feet"),
  18147. name: "Fist",
  18148. image: {
  18149. source: "./media/characters/typhek/fist.svg"
  18150. }
  18151. },
  18152. foot: {
  18153. height: math.unit(1.57, "feet"),
  18154. name: "Foot",
  18155. image: {
  18156. source: "./media/characters/typhek/foot.svg"
  18157. }
  18158. },
  18159. sole: {
  18160. height: math.unit(2.05, "feet"),
  18161. name: "Sole",
  18162. image: {
  18163. source: "./media/characters/typhek/sole.svg"
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Macro",
  18170. height: math.unit(40, "stories"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Megamacro",
  18175. height: math.unit(1, "mile")
  18176. },
  18177. {
  18178. name: "Gigamacro",
  18179. height: math.unit(4000, "solarradii")
  18180. },
  18181. {
  18182. name: "Universal",
  18183. height: math.unit(1.1, "universes")
  18184. }
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18189. {
  18190. side: {
  18191. height: math.unit(5 + 7 / 12, "feet"),
  18192. weight: math.unit(150, "lb"),
  18193. name: "Side",
  18194. image: {
  18195. source: "./media/characters/kassy/side.svg",
  18196. extra: 1280 / 1225,
  18197. bottom: 0.002
  18198. }
  18199. },
  18200. front: {
  18201. height: math.unit(5 + 7 / 12, "feet"),
  18202. weight: math.unit(150, "lb"),
  18203. name: "Front",
  18204. image: {
  18205. source: "./media/characters/kassy/front.svg",
  18206. extra: 1280 / 1225,
  18207. bottom: 0.025
  18208. }
  18209. },
  18210. back: {
  18211. height: math.unit(5 + 7 / 12, "feet"),
  18212. weight: math.unit(150, "lb"),
  18213. name: "Back",
  18214. image: {
  18215. source: "./media/characters/kassy/back.svg",
  18216. extra: 1280 / 1225,
  18217. bottom: 0.002
  18218. }
  18219. },
  18220. foot: {
  18221. height: math.unit(1.266, "feet"),
  18222. name: "Foot",
  18223. image: {
  18224. source: "./media/characters/kassy/foot.svg"
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(5 + 7 / 12, "feet")
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(137, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Megamacro",
  18240. height: math.unit(1, "mile")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(6 + 1 / 12, "feet"),
  18249. weight: math.unit(200, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/neil/front.svg",
  18253. extra: 1326 / 1250,
  18254. bottom: 0.023
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(6 + 1 / 12, "feet"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Macro",
  18266. height: math.unit(200, "feet")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(5 + 9 / 12, "feet"),
  18275. weight: math.unit(190, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/atticus/front.svg",
  18279. extra: 2934 / 2785,
  18280. bottom: 0.025
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(5 + 9 / 12, "feet"),
  18288. default: true
  18289. },
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(180, "feet")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18298. {
  18299. side: {
  18300. height: math.unit(9, "feet"),
  18301. weight: math.unit(650, "lb"),
  18302. name: "Side",
  18303. image: {
  18304. source: "./media/characters/milo/side.svg",
  18305. extra: 2644 / 2310,
  18306. bottom: 0.032
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Normal",
  18313. height: math.unit(9, "feet"),
  18314. default: true
  18315. },
  18316. {
  18317. name: "Macro",
  18318. height: math.unit(300, "feet")
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18324. {
  18325. side: {
  18326. height: math.unit(8, "meters"),
  18327. weight: math.unit(90000, "kg"),
  18328. name: "Side",
  18329. image: {
  18330. source: "./media/characters/ijzer/side.svg",
  18331. extra: 2756 / 1600,
  18332. bottom: 0.01
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Small",
  18339. height: math.unit(3, "meters")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(8, "meters"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Normal+",
  18348. height: math.unit(10, "meters")
  18349. },
  18350. {
  18351. name: "Bigger",
  18352. height: math.unit(24, "meters")
  18353. },
  18354. {
  18355. name: "Huge",
  18356. height: math.unit(80, "meters")
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6 + 2 / 12, "feet"),
  18365. weight: math.unit(153, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/luca-cervicum/front.svg",
  18369. extra: 370 / 327,
  18370. bottom: 0.015
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(6 + 2 / 12, "feet"),
  18375. weight: math.unit(153, "lb"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/luca-cervicum/back.svg",
  18379. extra: 367 / 333,
  18380. bottom: 0.005
  18381. }
  18382. },
  18383. frontGear: {
  18384. height: math.unit(6 + 2 / 12, "feet"),
  18385. weight: math.unit(173, "lb"),
  18386. name: "Front (Gear)",
  18387. image: {
  18388. source: "./media/characters/luca-cervicum/front-gear.svg",
  18389. extra: 377 / 333,
  18390. bottom: 0.006
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(6 + 2 / 12, "feet"),
  18398. default: true
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18404. {
  18405. front: {
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. weight: math.unit(304, "lb"),
  18408. name: "Front",
  18409. image: {
  18410. source: "./media/characters/oliver/front.svg",
  18411. extra: 157 / 143,
  18412. bottom: 0.08
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(6 + 1 / 12, "feet"),
  18420. default: true
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18426. {
  18427. front: {
  18428. height: math.unit(5 + 7 / 12, "feet"),
  18429. weight: math.unit(140, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/shane/front.svg",
  18433. extra: 304 / 289,
  18434. bottom: 0.005
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Normal",
  18441. height: math.unit(5 + 7 / 12, "feet"),
  18442. default: true
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(5 + 9 / 12, "feet"),
  18451. weight: math.unit(178, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/shin/front.svg",
  18455. extra: 159 / 151,
  18456. bottom: 0.015
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Normal",
  18463. height: math.unit(5 + 9 / 12, "feet"),
  18464. default: true
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(5 + 10 / 12, "feet"),
  18473. weight: math.unit(168, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/xerxes/front.svg",
  18477. extra: 282 / 260,
  18478. bottom: 0.045
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(5 + 10 / 12, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(6 + 7 / 12, "feet"),
  18495. weight: math.unit(208, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/chaska/front.svg",
  18499. extra: 332 / 319,
  18500. bottom: 0.015
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(6 + 7 / 12, "feet"),
  18508. default: true
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18514. {
  18515. front: {
  18516. height: math.unit(5 + 8 / 12, "feet"),
  18517. weight: math.unit(208, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/enuk/front.svg",
  18521. extra: 437 / 406,
  18522. bottom: 0.02
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(5 + 8 / 12, "feet"),
  18530. default: true
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(5 + 10 / 12, "feet"),
  18539. weight: math.unit(252, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/bruun/front.svg",
  18543. extra: 197 / 187,
  18544. bottom: 0.012
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(5 + 10 / 12, "feet"),
  18552. default: true
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(6 + 10 / 12, "feet"),
  18561. weight: math.unit(255, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/alexeev/front.svg",
  18565. extra: 213 / 200,
  18566. bottom: 0.05
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(6 + 10 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(2 + 8 / 12, "feet"),
  18583. weight: math.unit(22, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/evelyn/front.svg",
  18587. extra: 208 / 180
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(2 + 8 / 12, "feet"),
  18595. default: true
  18596. },
  18597. ]
  18598. ))
  18599. characterMakers.push(() => makeCharacter(
  18600. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18601. {
  18602. front: {
  18603. height: math.unit(5 + 9 / 12, "feet"),
  18604. weight: math.unit(139, "lb"),
  18605. name: "Front",
  18606. image: {
  18607. source: "./media/characters/inca/front.svg",
  18608. extra: 294 / 291,
  18609. bottom: 0.03
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(5 + 9 / 12, "feet"),
  18617. default: true
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18623. {
  18624. front: {
  18625. height: math.unit(5 + 1 / 12, "feet"),
  18626. weight: math.unit(84, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/magdalene/front.svg",
  18630. extra: 293 / 273
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(5 + 1 / 12, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(6 + 3 / 12, "feet"),
  18647. weight: math.unit(185, "lb"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/mera/front.svg",
  18651. extra: 291 / 277,
  18652. bottom: 0.03
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(6 + 3 / 12, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18666. {
  18667. front: {
  18668. height: math.unit(6 + 7 / 12, "feet"),
  18669. weight: math.unit(160, "lb"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/ceres/front.svg",
  18673. extra: 1023 / 950,
  18674. bottom: 0.027
  18675. }
  18676. },
  18677. back: {
  18678. height: math.unit(6 + 7 / 12, "feet"),
  18679. weight: math.unit(160, "lb"),
  18680. name: "Back",
  18681. image: {
  18682. source: "./media/characters/ceres/back.svg",
  18683. extra: 1023 / 950
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(6 + 7 / 12, "feet"),
  18691. default: true
  18692. },
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18697. {
  18698. front: {
  18699. height: math.unit(5 + 10 / 12, "feet"),
  18700. weight: math.unit(150, "lb"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/kris/front.svg",
  18704. extra: 885 / 803,
  18705. bottom: 0.03
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(5 + 10 / 12, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(7, "feet"),
  18722. weight: math.unit(120, "kg"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/taluthus/front.svg",
  18726. extra: 903 / 833,
  18727. bottom: 0.015
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(7, "feet"),
  18735. default: true
  18736. },
  18737. {
  18738. name: "Macro",
  18739. height: math.unit(300, "feet")
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18745. {
  18746. front: {
  18747. height: math.unit(5 + 9 / 12, "feet"),
  18748. weight: math.unit(145, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/dawn/front.svg",
  18752. extra: 2094 / 2016,
  18753. bottom: 0.025
  18754. }
  18755. },
  18756. back: {
  18757. height: math.unit(5 + 9 / 12, "feet"),
  18758. weight: math.unit(160, "lb"),
  18759. name: "Back",
  18760. image: {
  18761. source: "./media/characters/dawn/back.svg",
  18762. extra: 2112 / 2080,
  18763. bottom: 0.005
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(6 + 7 / 12, "feet"),
  18771. default: true
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18777. {
  18778. anthro: {
  18779. height: math.unit(8 + 3 / 12, "feet"),
  18780. weight: math.unit(450, "lb"),
  18781. name: "Anthro",
  18782. image: {
  18783. source: "./media/characters/arador/anthro.svg",
  18784. extra: 1835 / 1718,
  18785. bottom: 0.025
  18786. }
  18787. },
  18788. feral: {
  18789. height: math.unit(4, "feet"),
  18790. weight: math.unit(200, "lb"),
  18791. name: "Feral",
  18792. image: {
  18793. source: "./media/characters/arador/feral.svg",
  18794. extra: 1683 / 1514,
  18795. bottom: 0.07
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(8 + 3 / 12, "feet")
  18803. },
  18804. {
  18805. name: "Macro",
  18806. height: math.unit(82.5, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(5 + 10 / 12, "feet"),
  18816. weight: math.unit(125, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/dharsi/front.svg",
  18820. extra: 716 / 630,
  18821. bottom: 0.035
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Nano",
  18828. height: math.unit(100, "nm")
  18829. },
  18830. {
  18831. name: "Micro",
  18832. height: math.unit(2, "inches")
  18833. },
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(5 + 10 / 12, "feet"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(1000, "feet")
  18842. },
  18843. {
  18844. name: "Megamacro",
  18845. height: math.unit(10, "miles")
  18846. },
  18847. {
  18848. name: "Gigamacro",
  18849. height: math.unit(3000, "miles")
  18850. },
  18851. {
  18852. name: "Teramacro",
  18853. height: math.unit(500000, "miles")
  18854. },
  18855. {
  18856. name: "Teramacro+",
  18857. height: math.unit(30, "galaxies")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(6, "feet"),
  18866. weight: math.unit(150, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/deathy/front.svg",
  18870. extra: 1552 / 1463,
  18871. bottom: 0.025
  18872. }
  18873. },
  18874. side: {
  18875. height: math.unit(6, "feet"),
  18876. weight: math.unit(150, "lb"),
  18877. name: "Side",
  18878. image: {
  18879. source: "./media/characters/deathy/side.svg",
  18880. extra: 1604 / 1455,
  18881. bottom: 0.025
  18882. }
  18883. },
  18884. back: {
  18885. height: math.unit(6, "feet"),
  18886. weight: math.unit(150, "lb"),
  18887. name: "Back",
  18888. image: {
  18889. source: "./media/characters/deathy/back.svg",
  18890. extra: 1580 / 1463,
  18891. bottom: 0.005
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Micro",
  18898. height: math.unit(5, "millimeters")
  18899. },
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(6 + 5 / 12, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18909. {
  18910. front: {
  18911. height: math.unit(16, "feet"),
  18912. weight: math.unit(4000, "lb"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/juniper/front.svg",
  18916. bottom: 0.04
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(16, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(6, "feet"),
  18933. weight: math.unit(150, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/hipster/front.svg",
  18937. extra: 1312 / 1209,
  18938. bottom: 0.025
  18939. }
  18940. },
  18941. back: {
  18942. height: math.unit(6, "feet"),
  18943. weight: math.unit(150, "lb"),
  18944. name: "Back",
  18945. image: {
  18946. source: "./media/characters/hipster/back.svg",
  18947. extra: 1281 / 1196,
  18948. bottom: 0.01
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Micro",
  18955. height: math.unit(1, "mm")
  18956. },
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(4, "inches"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(500, "feet")
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(1000, "miles")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6, "feet"),
  18977. weight: math.unit(150, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/tendirmuldr/front.svg",
  18981. extra: 1878 / 1772,
  18982. bottom: 0.015
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Megamacro",
  18989. height: math.unit(1500, "miles"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Mort", species: ["demon"], tags: ["feral"] },
  18996. {
  18997. front: {
  18998. height: math.unit(14, "feet"),
  18999. weight: math.unit(12000, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/mort/front.svg",
  19003. extra: 365 / 318,
  19004. bottom: 0.01
  19005. }
  19006. },
  19007. side: {
  19008. height: math.unit(14, "feet"),
  19009. weight: math.unit(12000, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/mort/side.svg",
  19013. extra: 365 / 318,
  19014. bottom: 0.052
  19015. },
  19016. default: true
  19017. },
  19018. back: {
  19019. height: math.unit(14, "feet"),
  19020. weight: math.unit(12000, "lb"),
  19021. name: "Back",
  19022. image: {
  19023. source: "./media/characters/mort/back.svg",
  19024. extra: 371 / 332,
  19025. bottom: 0.18
  19026. }
  19027. },
  19028. },
  19029. [
  19030. {
  19031. name: "Normal",
  19032. height: math.unit(14, "feet"),
  19033. default: true
  19034. },
  19035. ]
  19036. ))
  19037. characterMakers.push(() => makeCharacter(
  19038. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19039. {
  19040. front: {
  19041. height: math.unit(8, "feet"),
  19042. weight: math.unit(1, "ton"),
  19043. name: "Front",
  19044. image: {
  19045. source: "./media/characters/lycoa/front.svg",
  19046. extra: 1875 / 1789,
  19047. bottom: 0.022
  19048. }
  19049. },
  19050. back: {
  19051. height: math.unit(8, "feet"),
  19052. weight: math.unit(1, "ton"),
  19053. name: "Back",
  19054. image: {
  19055. source: "./media/characters/lycoa/back.svg",
  19056. extra: 1835 / 1781,
  19057. bottom: 0.03
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(8, "feet"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Macro",
  19069. height: math.unit(30, "feet")
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(4 + 2 / 12, "feet"),
  19078. weight: math.unit(70, "lb"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/naldara/front.svg",
  19082. extra: 841 / 720,
  19083. bottom: 0.04
  19084. }
  19085. },
  19086. },
  19087. [
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(4 + 2 / 12, "feet"),
  19091. default: true
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(13 + 7 / 12, "feet"),
  19100. weight: math.unit(1500, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/briar/front.svg",
  19104. extra: 626 / 596,
  19105. bottom: 0.08
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Normal",
  19112. height: math.unit(13 + 7 / 12, "feet"),
  19113. default: true
  19114. },
  19115. ]
  19116. ))
  19117. characterMakers.push(() => makeCharacter(
  19118. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19119. {
  19120. side: {
  19121. height: math.unit(10, "feet"),
  19122. weight: math.unit(500, "lb"),
  19123. name: "Side",
  19124. image: {
  19125. source: "./media/characters/vanguard/side.svg",
  19126. extra: 502 / 425,
  19127. bottom: 0.087
  19128. }
  19129. },
  19130. },
  19131. [
  19132. {
  19133. name: "Normal",
  19134. height: math.unit(10, "feet"),
  19135. default: true
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(7.5, "feet"),
  19144. weight: math.unit(2, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/artemis/front.svg",
  19148. extra: 1192 / 1075,
  19149. bottom: 0.07
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(7.5, "feet"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Enlarged",
  19161. height: math.unit(12, "feet")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(5 + 3 / 12, "feet"),
  19170. weight: math.unit(160, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/kira/front.svg",
  19174. extra: 906 / 786,
  19175. bottom: 0.01
  19176. }
  19177. },
  19178. back: {
  19179. height: math.unit(5 + 3 / 12, "feet"),
  19180. weight: math.unit(160, "lb"),
  19181. name: "Back",
  19182. image: {
  19183. source: "./media/characters/kira/back.svg",
  19184. extra: 882 / 757,
  19185. bottom: 0.005
  19186. }
  19187. },
  19188. frontDressed: {
  19189. height: math.unit(5 + 3 / 12, "feet"),
  19190. weight: math.unit(160, "lb"),
  19191. name: "Front (Dressed)",
  19192. image: {
  19193. source: "./media/characters/kira/front-dressed.svg",
  19194. extra: 906 / 786,
  19195. bottom: 0.01
  19196. }
  19197. },
  19198. beans: {
  19199. height: math.unit(0.92, "feet"),
  19200. name: "Beans",
  19201. image: {
  19202. source: "./media/characters/kira/beans.svg"
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(5 + 3 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(5 + 4 / 12, "feet"),
  19219. weight: math.unit(145, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/scramble/front.svg",
  19223. extra: 763 / 727,
  19224. bottom: 0.05
  19225. }
  19226. },
  19227. back: {
  19228. height: math.unit(5 + 4 / 12, "feet"),
  19229. weight: math.unit(145, "lb"),
  19230. name: "Back",
  19231. image: {
  19232. source: "./media/characters/scramble/back.svg",
  19233. extra: 826 / 737,
  19234. bottom: 0.002
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(5 + 4 / 12, "feet"),
  19242. default: true
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19248. {
  19249. side: {
  19250. height: math.unit(6 + 2 / 12, "feet"),
  19251. weight: math.unit(190, "lb"),
  19252. name: "Side",
  19253. image: {
  19254. source: "./media/characters/biscuit/side.svg",
  19255. extra: 858 / 791,
  19256. bottom: 0.044
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(6 + 2 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(5 + 2 / 12, "feet"),
  19273. weight: math.unit(120, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/poffin/front.svg",
  19277. extra: 786 / 680,
  19278. bottom: 0.005
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(5 + 2 / 12, "feet"),
  19286. default: true
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(6 + 3 / 12, "feet"),
  19295. weight: math.unit(519, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/dhari/front.svg",
  19299. extra: 1048 / 946,
  19300. bottom: 0.015
  19301. }
  19302. },
  19303. back: {
  19304. height: math.unit(6 + 3 / 12, "feet"),
  19305. weight: math.unit(519, "lb"),
  19306. name: "Back",
  19307. image: {
  19308. source: "./media/characters/dhari/back.svg",
  19309. extra: 1048 / 931,
  19310. bottom: 0.005
  19311. }
  19312. },
  19313. frontDressed: {
  19314. height: math.unit(6 + 3 / 12, "feet"),
  19315. weight: math.unit(519, "lb"),
  19316. name: "Front (Dressed)",
  19317. image: {
  19318. source: "./media/characters/dhari/front-dressed.svg",
  19319. extra: 1713 / 1546,
  19320. bottom: 0.02
  19321. }
  19322. },
  19323. backDressed: {
  19324. height: math.unit(6 + 3 / 12, "feet"),
  19325. weight: math.unit(519, "lb"),
  19326. name: "Back (Dressed)",
  19327. image: {
  19328. source: "./media/characters/dhari/back-dressed.svg",
  19329. extra: 1699 / 1537,
  19330. bottom: 0.01
  19331. }
  19332. },
  19333. maw: {
  19334. height: math.unit(0.95, "feet"),
  19335. name: "Maw",
  19336. image: {
  19337. source: "./media/characters/dhari/maw.svg"
  19338. }
  19339. },
  19340. wereFront: {
  19341. height: math.unit(12 + 8 / 12, "feet"),
  19342. weight: math.unit(4000, "lb"),
  19343. name: "Front (Were)",
  19344. image: {
  19345. source: "./media/characters/dhari/were-front.svg",
  19346. extra: 1065 / 969,
  19347. bottom: 0.015
  19348. }
  19349. },
  19350. wereBack: {
  19351. height: math.unit(12 + 8 / 12, "feet"),
  19352. weight: math.unit(4000, "lb"),
  19353. name: "Back (Were)",
  19354. image: {
  19355. source: "./media/characters/dhari/were-back.svg",
  19356. extra: 1065 / 969,
  19357. bottom: 0.012
  19358. }
  19359. },
  19360. wereMaw: {
  19361. height: math.unit(0.625, "meters"),
  19362. name: "Maw (Were)",
  19363. image: {
  19364. source: "./media/characters/dhari/were-maw.svg"
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(6 + 3 / 12, "feet"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19378. {
  19379. anthro: {
  19380. height: math.unit(5 + 7 / 12, "feet"),
  19381. weight: math.unit(175, "lb"),
  19382. name: "Anthro",
  19383. image: {
  19384. source: "./media/characters/rena-dyne/anthro.svg",
  19385. extra: 1849 / 1785,
  19386. bottom: 0.005
  19387. }
  19388. },
  19389. taur: {
  19390. height: math.unit(15 + 6 / 12, "feet"),
  19391. weight: math.unit(8000, "lb"),
  19392. name: "Taur",
  19393. image: {
  19394. source: "./media/characters/rena-dyne/taur.svg",
  19395. extra: 2315 / 2234,
  19396. bottom: 0.033
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(5 + 7 / 12, "feet"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(8, "feet"),
  19413. weight: math.unit(600, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/weremeep/front.svg",
  19417. extra: 967 / 862,
  19418. bottom: 0.01
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(8, "feet"),
  19426. default: true
  19427. },
  19428. {
  19429. name: "Lorg",
  19430. height: math.unit(12, "feet")
  19431. },
  19432. {
  19433. name: "Oh Lawd She Comin'",
  19434. height: math.unit(20, "feet")
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19440. {
  19441. front: {
  19442. height: math.unit(4, "feet"),
  19443. weight: math.unit(90, "lb"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/reza/front.svg",
  19447. extra: 1183 / 1111,
  19448. bottom: 0.017
  19449. }
  19450. },
  19451. back: {
  19452. height: math.unit(4, "feet"),
  19453. weight: math.unit(90, "lb"),
  19454. name: "Back",
  19455. image: {
  19456. source: "./media/characters/reza/back.svg",
  19457. extra: 1183 / 1111,
  19458. bottom: 0.01
  19459. }
  19460. },
  19461. drake: {
  19462. height: math.unit(30, "feet"),
  19463. weight: math.unit(246960, "lb"),
  19464. name: "Drake",
  19465. image: {
  19466. source: "./media/characters/reza/drake.svg",
  19467. extra: 2350/2024,
  19468. bottom: 60.7/2403
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(4, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19482. {
  19483. side: {
  19484. height: math.unit(15, "feet"),
  19485. weight: math.unit(14, "tons"),
  19486. name: "Side",
  19487. image: {
  19488. source: "./media/characters/athea/side.svg",
  19489. extra: 960 / 540,
  19490. bottom: 0.003
  19491. }
  19492. },
  19493. sitting: {
  19494. height: math.unit(6 * 2.85, "feet"),
  19495. weight: math.unit(14, "tons"),
  19496. name: "Sitting",
  19497. image: {
  19498. source: "./media/characters/athea/sitting.svg",
  19499. extra: 621 / 581,
  19500. bottom: 0.075
  19501. }
  19502. },
  19503. maw: {
  19504. height: math.unit(7.59498031496063, "feet"),
  19505. name: "Maw",
  19506. image: {
  19507. source: "./media/characters/athea/maw.svg"
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Lap Cat",
  19514. height: math.unit(2.5, "feet")
  19515. },
  19516. {
  19517. name: "Minimacro",
  19518. height: math.unit(15, "feet"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Macro",
  19523. height: math.unit(120, "feet")
  19524. },
  19525. {
  19526. name: "Macro+",
  19527. height: math.unit(640, "feet")
  19528. },
  19529. {
  19530. name: "Colossus",
  19531. height: math.unit(2.2, "miles")
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19537. {
  19538. front: {
  19539. height: math.unit(8 + 8 / 12, "feet"),
  19540. weight: math.unit(130, "kg"),
  19541. name: "Front",
  19542. image: {
  19543. source: "./media/characters/seroko/front.svg",
  19544. extra: 1385 / 1280,
  19545. bottom: 0.025
  19546. }
  19547. },
  19548. back: {
  19549. height: math.unit(8 + 8 / 12, "feet"),
  19550. weight: math.unit(130, "kg"),
  19551. name: "Back",
  19552. image: {
  19553. source: "./media/characters/seroko/back.svg",
  19554. extra: 1369 / 1238,
  19555. bottom: 0.018
  19556. }
  19557. },
  19558. frontDressed: {
  19559. height: math.unit(8 + 8 / 12, "feet"),
  19560. weight: math.unit(130, "kg"),
  19561. name: "Front (Dressed)",
  19562. image: {
  19563. source: "./media/characters/seroko/front-dressed.svg",
  19564. extra: 1366 / 1275,
  19565. bottom: 0.03
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(8 + 8 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(5.5, "feet"),
  19582. weight: math.unit(160, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/quatzi/front.svg",
  19586. extra: 2346 / 2242,
  19587. bottom: 0.015
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(5.5, "feet"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Big",
  19599. height: math.unit(7.7, "feet")
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(5 + 11 / 12, "feet"),
  19608. weight: math.unit(180, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/sen/front.svg",
  19612. extra: 1321 / 1254,
  19613. bottom: 0.015
  19614. }
  19615. },
  19616. side: {
  19617. height: math.unit(5 + 11 / 12, "feet"),
  19618. weight: math.unit(180, "lb"),
  19619. name: "Side",
  19620. image: {
  19621. source: "./media/characters/sen/side.svg",
  19622. extra: 1321 / 1254,
  19623. bottom: 0.007
  19624. }
  19625. },
  19626. back: {
  19627. height: math.unit(5 + 11 / 12, "feet"),
  19628. weight: math.unit(180, "lb"),
  19629. name: "Back",
  19630. image: {
  19631. source: "./media/characters/sen/back.svg",
  19632. extra: 1321 / 1254
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(5 + 11 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(166.6, "cm"),
  19649. weight: math.unit(66.6, "kg"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/fruity/front.svg",
  19653. extra: 1510 / 1386,
  19654. bottom: 0.04
  19655. }
  19656. },
  19657. back: {
  19658. height: math.unit(166.6, "cm"),
  19659. weight: math.unit(66.6, "lb"),
  19660. name: "Back",
  19661. image: {
  19662. source: "./media/characters/fruity/back.svg",
  19663. extra: 1563 / 1435,
  19664. bottom: 0.005
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(166.6, "cm"),
  19672. default: true
  19673. },
  19674. {
  19675. name: "Demonic",
  19676. height: math.unit(166.6, "feet")
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19682. {
  19683. side: {
  19684. height: math.unit(10, "feet"),
  19685. weight: math.unit(500, "lb"),
  19686. name: "Side",
  19687. image: {
  19688. source: "./media/characters/zost/side.svg",
  19689. extra: 966 / 880,
  19690. bottom: 0.075
  19691. }
  19692. },
  19693. mawFront: {
  19694. height: math.unit(1.08, "meters"),
  19695. name: "Maw (Front)",
  19696. image: {
  19697. source: "./media/characters/zost/maw-front.svg"
  19698. }
  19699. },
  19700. mawSide: {
  19701. height: math.unit(2.66, "feet"),
  19702. name: "Maw (Side)",
  19703. image: {
  19704. source: "./media/characters/zost/maw-side.svg"
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(10, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(5 + 4 / 12, "feet"),
  19721. weight: math.unit(120, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/luci/front.svg",
  19725. extra: 1985 / 1884,
  19726. bottom: 0.04
  19727. }
  19728. },
  19729. back: {
  19730. height: math.unit(5 + 4 / 12, "feet"),
  19731. weight: math.unit(120, "lb"),
  19732. name: "Back",
  19733. image: {
  19734. source: "./media/characters/luci/back.svg",
  19735. extra: 1892 / 1791,
  19736. bottom: 0.002
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(5 + 4 / 12, "feet"),
  19744. default: true
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19750. {
  19751. front: {
  19752. height: math.unit(1500, "feet"),
  19753. weight: math.unit(3.8e6, "tons"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/2th/front.svg",
  19757. extra: 3489 / 3350,
  19758. bottom: 0.1
  19759. }
  19760. },
  19761. foot: {
  19762. height: math.unit(461, "feet"),
  19763. name: "Foot",
  19764. image: {
  19765. source: "./media/characters/2th/foot.svg"
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "\"Micro\"",
  19772. height: math.unit(15 + 7 / 12, "feet")
  19773. },
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(1500, "feet"),
  19777. default: true
  19778. },
  19779. {
  19780. name: "Macro",
  19781. height: math.unit(5000, "feet")
  19782. },
  19783. {
  19784. name: "Megamacro",
  19785. height: math.unit(15, "miles")
  19786. },
  19787. {
  19788. name: "Gigamacro",
  19789. height: math.unit(4000, "miles")
  19790. },
  19791. {
  19792. name: "Galactic",
  19793. height: math.unit(50, "AU")
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(5 + 6 / 12, "feet"),
  19802. weight: math.unit(220, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/amethyst/front.svg",
  19806. extra: 2078 / 2040,
  19807. bottom: 0.045
  19808. }
  19809. },
  19810. back: {
  19811. height: math.unit(5 + 6 / 12, "feet"),
  19812. weight: math.unit(220, "lb"),
  19813. name: "Back",
  19814. image: {
  19815. source: "./media/characters/amethyst/back.svg",
  19816. extra: 2021 / 1989,
  19817. bottom: 0.02
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(5 + 6 / 12, "feet"),
  19825. default: true
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(4 + 11 / 12, "feet"),
  19834. weight: math.unit(120, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/yumi-akiyama/front.svg",
  19838. extra: 1327 / 1235,
  19839. bottom: 0.02
  19840. }
  19841. },
  19842. back: {
  19843. height: math.unit(4 + 11 / 12, "feet"),
  19844. weight: math.unit(120, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/yumi-akiyama/back.svg",
  19848. extra: 1287 / 1245,
  19849. bottom: 0.002
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Galactic",
  19856. height: math.unit(50, "galaxies"),
  19857. default: true
  19858. },
  19859. {
  19860. name: "Universal",
  19861. height: math.unit(100, "universes")
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(8, "feet"),
  19870. weight: math.unit(500, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/rifter-yrmori/front.svg",
  19874. extra: 1180 / 1125,
  19875. bottom: 0.02
  19876. }
  19877. },
  19878. back: {
  19879. height: math.unit(8, "feet"),
  19880. weight: math.unit(500, "lb"),
  19881. name: "Back",
  19882. image: {
  19883. source: "./media/characters/rifter-yrmori/back.svg",
  19884. extra: 1190 / 1145,
  19885. bottom: 0.001
  19886. }
  19887. },
  19888. wings: {
  19889. height: math.unit(7.75, "feet"),
  19890. weight: math.unit(500, "lb"),
  19891. name: "Wings",
  19892. image: {
  19893. source: "./media/characters/rifter-yrmori/wings.svg",
  19894. extra: 1357 / 1285
  19895. }
  19896. },
  19897. maw: {
  19898. height: math.unit(0.8, "feet"),
  19899. name: "Maw",
  19900. image: {
  19901. source: "./media/characters/rifter-yrmori/maw.svg"
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(8, "feet"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Macro",
  19913. height: math.unit(42, "meters")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19919. {
  19920. were: {
  19921. height: math.unit(25 + 6 / 12, "feet"),
  19922. weight: math.unit(10000, "lb"),
  19923. name: "Were",
  19924. image: {
  19925. source: "./media/characters/tahajin/were.svg",
  19926. extra: 801 / 770,
  19927. bottom: 0.042
  19928. }
  19929. },
  19930. aquatic: {
  19931. height: math.unit(6 + 4 / 12, "feet"),
  19932. weight: math.unit(160, "lb"),
  19933. name: "Aquatic",
  19934. image: {
  19935. source: "./media/characters/tahajin/aquatic.svg",
  19936. extra: 572 / 542,
  19937. bottom: 0.04
  19938. }
  19939. },
  19940. chow: {
  19941. height: math.unit(8 + 11 / 12, "feet"),
  19942. weight: math.unit(450, "lb"),
  19943. name: "Chow",
  19944. image: {
  19945. source: "./media/characters/tahajin/chow.svg",
  19946. extra: 660 / 640,
  19947. bottom: 0.015
  19948. }
  19949. },
  19950. demiNaga: {
  19951. height: math.unit(6 + 8 / 12, "feet"),
  19952. weight: math.unit(300, "lb"),
  19953. name: "Demi Naga",
  19954. image: {
  19955. source: "./media/characters/tahajin/demi-naga.svg",
  19956. extra: 643 / 615,
  19957. bottom: 0.1
  19958. }
  19959. },
  19960. data: {
  19961. height: math.unit(5, "inches"),
  19962. weight: math.unit(0.1, "lb"),
  19963. name: "Data",
  19964. image: {
  19965. source: "./media/characters/tahajin/data.svg"
  19966. }
  19967. },
  19968. fluu: {
  19969. height: math.unit(5 + 7 / 12, "feet"),
  19970. weight: math.unit(140, "lb"),
  19971. name: "Fluu",
  19972. image: {
  19973. source: "./media/characters/tahajin/fluu.svg",
  19974. extra: 628 / 592,
  19975. bottom: 0.02
  19976. }
  19977. },
  19978. starWarrior: {
  19979. height: math.unit(4 + 5 / 12, "feet"),
  19980. weight: math.unit(50, "lb"),
  19981. name: "Star Warrior",
  19982. image: {
  19983. source: "./media/characters/tahajin/star-warrior.svg"
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(25 + 6 / 12, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(8, "feet"),
  20000. weight: math.unit(350, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/gabira/front.svg",
  20004. extra: 608 / 580,
  20005. bottom: 0.03
  20006. }
  20007. },
  20008. back: {
  20009. height: math.unit(8, "feet"),
  20010. weight: math.unit(350, "lb"),
  20011. name: "Back",
  20012. image: {
  20013. source: "./media/characters/gabira/back.svg",
  20014. extra: 608 / 580,
  20015. bottom: 0.03
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(8, "feet"),
  20023. default: true
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20029. {
  20030. front: {
  20031. height: math.unit(5 + 3 / 12, "feet"),
  20032. weight: math.unit(137, "lb"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/sasha-katraine/front.svg",
  20036. bottom: 0.045
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Micro",
  20043. height: math.unit(5, "inches")
  20044. },
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(5 + 3 / 12, "feet"),
  20048. default: true
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20054. {
  20055. side: {
  20056. height: math.unit(4, "inches"),
  20057. weight: math.unit(200, "grams"),
  20058. name: "Side",
  20059. image: {
  20060. source: "./media/characters/der/side.svg",
  20061. extra: 719 / 400,
  20062. bottom: 30.6 / 749.9187
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Micro",
  20069. height: math.unit(4, "inches"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20076. {
  20077. side: {
  20078. height: math.unit(30, "meters"),
  20079. weight: math.unit(700, "tonnes"),
  20080. name: "Side",
  20081. image: {
  20082. source: "./media/characters/fixerdragon/side.svg",
  20083. extra: (1293.0514 - 116.03) / 1106.86,
  20084. bottom: 116.03 / 1293.0514
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Planck",
  20091. height: math.unit(1.6e-35, "meters")
  20092. },
  20093. {
  20094. name: "Micro",
  20095. height: math.unit(0.4, "meters")
  20096. },
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(30, "meters"),
  20100. default: true
  20101. },
  20102. {
  20103. name: "Megamacro",
  20104. height: math.unit(1.2, "megameters")
  20105. },
  20106. {
  20107. name: "Teramacro",
  20108. height: math.unit(130, "terameters")
  20109. },
  20110. {
  20111. name: "Yottamacro",
  20112. height: math.unit(6200, "yottameters")
  20113. },
  20114. ]
  20115. ));
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(8, "feet"),
  20121. weight: math.unit(250, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/kite/front.svg",
  20125. extra: 2796 / 2659,
  20126. bottom: 0.002
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(8, "feet"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(360, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(1500, "feet")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(5 + 10 / 12, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/poojawa-vynar/front.svg",
  20155. extra: (1506.1547 - 55) / 1356.6,
  20156. bottom: 55 / 1506.1547
  20157. }
  20158. },
  20159. frontTailless: {
  20160. height: math.unit(5 + 10 / 12, "feet"),
  20161. weight: math.unit(150, "lb"),
  20162. name: "Front (Tailless)",
  20163. image: {
  20164. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20165. extra: (1506.1547 - 55) / 1356.6,
  20166. bottom: 55 / 1506.1547
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(5 + 10 / 12, "feet"),
  20174. default: true
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(293, "meters"),
  20183. weight: math.unit(70400, "tons"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/violette/front.svg",
  20187. extra: 1227 / 1180,
  20188. bottom: 0.005
  20189. }
  20190. },
  20191. back: {
  20192. height: math.unit(293, "meters"),
  20193. weight: math.unit(70400, "tons"),
  20194. name: "Back",
  20195. image: {
  20196. source: "./media/characters/violette/back.svg",
  20197. extra: 1227 / 1180,
  20198. bottom: 0.005
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Macro",
  20205. height: math.unit(293, "meters"),
  20206. default: true
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20212. {
  20213. front: {
  20214. height: math.unit(1050, "feet"),
  20215. weight: math.unit(200000, "tons"),
  20216. name: "Front",
  20217. image: {
  20218. source: "./media/characters/alessandra/front.svg",
  20219. extra: 960 / 912,
  20220. bottom: 0.06
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Macro",
  20227. height: math.unit(1050, "feet")
  20228. },
  20229. {
  20230. name: "Macro+",
  20231. height: math.unit(900, "meters"),
  20232. default: true
  20233. },
  20234. ]
  20235. ))
  20236. characterMakers.push(() => makeCharacter(
  20237. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20238. {
  20239. front: {
  20240. height: math.unit(5, "feet"),
  20241. weight: math.unit(187, "lb"),
  20242. name: "Front",
  20243. image: {
  20244. source: "./media/characters/person/front.svg",
  20245. extra: 3087 / 2945,
  20246. bottom: 91 / 3181
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Micro",
  20253. height: math.unit(3, "inches")
  20254. },
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(5, "feet"),
  20258. default: true
  20259. },
  20260. {
  20261. name: "Macro",
  20262. height: math.unit(90, "feet")
  20263. },
  20264. {
  20265. name: "Max Size",
  20266. height: math.unit(280, "feet")
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(4.5, "meters"),
  20275. weight: math.unit(3200, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/ty/front.svg",
  20279. extra: 1038 / 960,
  20280. bottom: 31.156 / 1068
  20281. }
  20282. },
  20283. back: {
  20284. height: math.unit(4.5, "meters"),
  20285. weight: math.unit(3200, "lb"),
  20286. name: "Back",
  20287. image: {
  20288. source: "./media/characters/ty/back.svg",
  20289. extra: 1044 / 966,
  20290. bottom: 7.48 / 1049
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(4.5, "meters"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(5 + 4 / 12, "feet"),
  20307. weight: math.unit(115, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/rocky/front.svg",
  20311. extra: 1012 / 975,
  20312. bottom: 54 / 1066
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(5 + 4 / 12, "feet"),
  20320. default: true
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20326. {
  20327. upright: {
  20328. height: math.unit(6, "meters"),
  20329. weight: math.unit(4000, "kg"),
  20330. name: "Upright",
  20331. image: {
  20332. source: "./media/characters/ruin/upright.svg",
  20333. extra: 668 / 661,
  20334. bottom: 42 / 799.8396
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(6, "meters"),
  20342. default: true
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(5, "feet"),
  20351. weight: math.unit(106, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/robin/front.svg",
  20355. extra: 862 / 799,
  20356. bottom: 42.4 / 914.8856
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(5, "feet"),
  20364. default: true
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20370. {
  20371. side: {
  20372. height: math.unit(3, "feet"),
  20373. weight: math.unit(225, "lb"),
  20374. name: "Side",
  20375. image: {
  20376. source: "./media/characters/saian/side.svg",
  20377. extra: 566 / 356,
  20378. bottom: 79.7 / 643
  20379. }
  20380. },
  20381. maw: {
  20382. height: math.unit(2.85, "feet"),
  20383. name: "Maw",
  20384. image: {
  20385. source: "./media/characters/saian/maw.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(3, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20399. {
  20400. side: {
  20401. height: math.unit(8, "feet"),
  20402. weight: math.unit(300, "lb"),
  20403. name: "Side",
  20404. image: {
  20405. source: "./media/characters/equus-silvermane/side.svg",
  20406. extra: 2176 / 2050,
  20407. bottom: 65.7 / 2245
  20408. }
  20409. },
  20410. front: {
  20411. height: math.unit(8, "feet"),
  20412. weight: math.unit(300, "lb"),
  20413. name: "Front",
  20414. image: {
  20415. source: "./media/characters/equus-silvermane/front.svg",
  20416. extra: 4633 / 4400,
  20417. bottom: 71.3 / 4706.915
  20418. }
  20419. },
  20420. sideStepping: {
  20421. height: math.unit(8, "feet"),
  20422. weight: math.unit(300, "lb"),
  20423. name: "Side (Stepping)",
  20424. image: {
  20425. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20426. extra: 1968 / 1860,
  20427. bottom: 16.4 / 1989
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(8, "feet")
  20435. },
  20436. {
  20437. name: "Minimacro",
  20438. height: math.unit(75, "feet"),
  20439. default: true
  20440. },
  20441. {
  20442. name: "Macro",
  20443. height: math.unit(150, "feet")
  20444. },
  20445. {
  20446. name: "Macro+",
  20447. height: math.unit(1000, "feet")
  20448. },
  20449. {
  20450. name: "Megamacro",
  20451. height: math.unit(1, "mile")
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20457. {
  20458. side: {
  20459. height: math.unit(20, "feet"),
  20460. weight: math.unit(30000, "kg"),
  20461. name: "Side",
  20462. image: {
  20463. source: "./media/characters/windar/side.svg",
  20464. extra: 1491 / 1248,
  20465. bottom: 82.56 / 1568
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(20, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20479. {
  20480. side: {
  20481. height: math.unit(15.66, "feet"),
  20482. weight: math.unit(150, "lb"),
  20483. name: "Side",
  20484. image: {
  20485. source: "./media/characters/melody/side.svg",
  20486. extra: 1097 / 944,
  20487. bottom: 11.8 / 1109
  20488. }
  20489. },
  20490. sideOutfit: {
  20491. height: math.unit(15.66, "feet"),
  20492. weight: math.unit(150, "lb"),
  20493. name: "Side (Outfit)",
  20494. image: {
  20495. source: "./media/characters/melody/side-outfit.svg",
  20496. extra: 1097 / 944,
  20497. bottom: 11.8 / 1109
  20498. }
  20499. },
  20500. },
  20501. [
  20502. {
  20503. name: "Normal",
  20504. height: math.unit(15.66, "feet"),
  20505. default: true
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(8, "feet"),
  20514. weight: math.unit(325, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/windera/front.svg",
  20518. extra: 3180 / 2845,
  20519. bottom: 178 / 3365
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(8, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20533. {
  20534. front: {
  20535. height: math.unit(28.75, "feet"),
  20536. weight: math.unit(2000, "kg"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/sonear/front.svg",
  20540. extra: 1041.1 / 964.9,
  20541. bottom: 53.7 / 1096.6
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(28.75, "feet"),
  20549. default: true
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20555. {
  20556. side: {
  20557. height: math.unit(25.5, "feet"),
  20558. weight: math.unit(23000, "kg"),
  20559. name: "Side",
  20560. image: {
  20561. source: "./media/characters/kanara/side.svg"
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(25.5, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20575. {
  20576. side: {
  20577. height: math.unit(10, "feet"),
  20578. weight: math.unit(1000, "kg"),
  20579. name: "Side",
  20580. image: {
  20581. source: "./media/characters/ereus/side.svg",
  20582. extra: 1157 / 959,
  20583. bottom: 153 / 1312.5
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(10, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20597. {
  20598. side: {
  20599. height: math.unit(4.5, "feet"),
  20600. weight: math.unit(500, "lb"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/e-ter/side.svg",
  20604. extra: 1550 / 1248,
  20605. bottom: 146 / 1694
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(4.5, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20619. {
  20620. side: {
  20621. height: math.unit(9.7, "feet"),
  20622. weight: math.unit(4000, "kg"),
  20623. name: "Side",
  20624. image: {
  20625. source: "./media/characters/yamie/side.svg"
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(9.7, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(50, "feet"),
  20642. weight: math.unit(50000, "kg"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/anders/front.svg",
  20646. extra: 570 / 539,
  20647. bottom: 14.7 / 586.7
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Large",
  20654. height: math.unit(50, "feet")
  20655. },
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(2000, "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Megamacro",
  20663. height: math.unit(12, "miles")
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(7 + 2 / 12, "feet"),
  20672. weight: math.unit(300, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/reban/front.svg",
  20676. extra: 516 / 487,
  20677. bottom: 42.82 / 558.356
  20678. }
  20679. },
  20680. dick: {
  20681. height: math.unit(7 / 5, "feet"),
  20682. name: "Dick",
  20683. image: {
  20684. source: "./media/characters/reban/dick.svg"
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Natural Height",
  20691. height: math.unit(7 + 2 / 12, "feet")
  20692. },
  20693. {
  20694. name: "Macro",
  20695. height: math.unit(500, "feet"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Canon Height",
  20700. height: math.unit(50, "AU")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(6, "feet"),
  20709. weight: math.unit(150, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/terrance-keayes/front.svg",
  20713. extra: 1.005,
  20714. bottom: 151 / 1615
  20715. }
  20716. },
  20717. side: {
  20718. height: math.unit(6, "feet"),
  20719. weight: math.unit(150, "lb"),
  20720. name: "Side",
  20721. image: {
  20722. source: "./media/characters/terrance-keayes/side.svg",
  20723. extra: 1.005,
  20724. bottom: 129.4 / 1544
  20725. }
  20726. },
  20727. back: {
  20728. height: math.unit(6, "feet"),
  20729. weight: math.unit(150, "lb"),
  20730. name: "Back",
  20731. image: {
  20732. source: "./media/characters/terrance-keayes/back.svg",
  20733. extra: 1.005,
  20734. bottom: 58.4 / 1557.3
  20735. }
  20736. },
  20737. dick: {
  20738. height: math.unit(6 * 0.208, "feet"),
  20739. name: "Dick",
  20740. image: {
  20741. source: "./media/characters/terrance-keayes/dick.svg"
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Canon Height",
  20748. height: math.unit(35, "miles"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(6, "feet"),
  20758. weight: math.unit(150, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/ofelia/front.svg",
  20762. extra: 546 / 541,
  20763. bottom: 39 / 583
  20764. }
  20765. },
  20766. back: {
  20767. height: math.unit(6, "feet"),
  20768. weight: math.unit(150, "lb"),
  20769. name: "Back",
  20770. image: {
  20771. source: "./media/characters/ofelia/back.svg",
  20772. extra: 564 / 559.5,
  20773. bottom: 8.69 / 573.02
  20774. }
  20775. },
  20776. maw: {
  20777. height: math.unit(1, "feet"),
  20778. name: "Maw",
  20779. image: {
  20780. source: "./media/characters/ofelia/maw.svg"
  20781. }
  20782. },
  20783. foot: {
  20784. height: math.unit(1.949, "feet"),
  20785. name: "Foot",
  20786. image: {
  20787. source: "./media/characters/ofelia/foot.svg"
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Canon Height",
  20794. height: math.unit(2000, "miles"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20801. {
  20802. front: {
  20803. height: math.unit(6, "feet"),
  20804. weight: math.unit(150, "lb"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/samuel/front.svg",
  20808. extra: 265 / 258,
  20809. bottom: 2 / 266.1566
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Macro",
  20816. height: math.unit(100, "feet"),
  20817. default: true
  20818. },
  20819. {
  20820. name: "Full Size",
  20821. height: math.unit(1000, "miles")
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(6, "feet"),
  20830. weight: math.unit(300, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/beishir-kiel/front.svg",
  20834. extra: 569 / 547,
  20835. bottom: 41.9 / 609
  20836. }
  20837. },
  20838. maw: {
  20839. height: math.unit(6 * 0.202, "feet"),
  20840. name: "Maw",
  20841. image: {
  20842. source: "./media/characters/beishir-kiel/maw.svg"
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Macro",
  20849. height: math.unit(300, "feet"),
  20850. default: true
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(5 + 8 / 12, "feet"),
  20859. weight: math.unit(120, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/logan-grey/front.svg",
  20863. extra: 2539 / 2393,
  20864. bottom: 97.6 / 2636.37
  20865. }
  20866. },
  20867. frontAlt: {
  20868. height: math.unit(5 + 8 / 12, "feet"),
  20869. weight: math.unit(120, "lb"),
  20870. name: "Front (Alt)",
  20871. image: {
  20872. source: "./media/characters/logan-grey/front-alt.svg",
  20873. extra: 958 / 893,
  20874. bottom: 15 / 970.768
  20875. }
  20876. },
  20877. back: {
  20878. height: math.unit(5 + 8 / 12, "feet"),
  20879. weight: math.unit(120, "lb"),
  20880. name: "Back",
  20881. image: {
  20882. source: "./media/characters/logan-grey/back.svg",
  20883. extra: 958 / 893,
  20884. bottom: 2.1881 / 970.9788
  20885. }
  20886. },
  20887. dick: {
  20888. height: math.unit(1.437, "feet"),
  20889. name: "Dick",
  20890. image: {
  20891. source: "./media/characters/logan-grey/dick.svg"
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(5 + 8 / 12, "feet")
  20899. },
  20900. {
  20901. name: "The 500 Foot Femboy",
  20902. height: math.unit(500, "feet"),
  20903. default: true
  20904. },
  20905. {
  20906. name: "Megmacro",
  20907. height: math.unit(20, "miles")
  20908. },
  20909. ]
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20913. {
  20914. front: {
  20915. height: math.unit(8 + 2 / 12, "feet"),
  20916. weight: math.unit(275, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/draganta/front.svg",
  20920. extra: 1177 / 1135,
  20921. bottom: 33.46 / 1212.1
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(8 + 6 / 12, "feet"),
  20929. default: true
  20930. },
  20931. {
  20932. name: "Macro",
  20933. height: math.unit(150, "feet")
  20934. },
  20935. {
  20936. name: "Megamacro",
  20937. height: math.unit(1000, "miles")
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(1.72, "m"),
  20946. weight: math.unit(80, "lb"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/voski/front.svg",
  20950. extra: 2076.22 / 2022.4,
  20951. bottom: 102.7 / 2177.3866
  20952. }
  20953. },
  20954. frontNsfw: {
  20955. height: math.unit(1.72, "m"),
  20956. weight: math.unit(80, "lb"),
  20957. name: "Front (NSFW)",
  20958. image: {
  20959. source: "./media/characters/voski/front-nsfw.svg",
  20960. extra: 2076.22 / 2022.4,
  20961. bottom: 102.7 / 2177.3866
  20962. }
  20963. },
  20964. back: {
  20965. height: math.unit(1.72, "m"),
  20966. weight: math.unit(80, "lb"),
  20967. name: "Back",
  20968. image: {
  20969. source: "./media/characters/voski/back.svg",
  20970. extra: 2104 / 2051,
  20971. bottom: 10.45 / 2113.63
  20972. }
  20973. },
  20974. },
  20975. [
  20976. {
  20977. name: "Normal",
  20978. height: math.unit(1.72, "m")
  20979. },
  20980. {
  20981. name: "Macro",
  20982. height: math.unit(55, "m"),
  20983. default: true
  20984. },
  20985. {
  20986. name: "Macro+",
  20987. height: math.unit(300, "m")
  20988. },
  20989. {
  20990. name: "Macro++",
  20991. height: math.unit(700, "m")
  20992. },
  20993. {
  20994. name: "Macro+++",
  20995. height: math.unit(4500, "m")
  20996. },
  20997. {
  20998. name: "Macro++++",
  20999. height: math.unit(45, "km")
  21000. },
  21001. {
  21002. name: "Macro+++++",
  21003. height: math.unit(1220, "km")
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21009. {
  21010. front: {
  21011. height: math.unit(2.3, "m"),
  21012. weight: math.unit(304, "kg"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/icowom-lee/front.svg",
  21016. extra: 985/955,
  21017. bottom: 25.4/1012
  21018. }
  21019. },
  21020. fronttentacles: {
  21021. height: math.unit(2.3, "m"),
  21022. weight: math.unit(304, "kg"),
  21023. name: "Front-tentacles",
  21024. image: {
  21025. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21026. extra: 985/955,
  21027. bottom: 25.4/1012
  21028. }
  21029. },
  21030. back: {
  21031. height: math.unit(2.3, "m"),
  21032. weight: math.unit(304, "kg"),
  21033. name: "Back",
  21034. image: {
  21035. source: "./media/characters/icowom-lee/back.svg",
  21036. extra: 975/954,
  21037. bottom: 9.5/985
  21038. }
  21039. },
  21040. backtentacles: {
  21041. height: math.unit(2.3, "m"),
  21042. weight: math.unit(304, "kg"),
  21043. name: "Back-tentacles",
  21044. image: {
  21045. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21046. extra: 975/954,
  21047. bottom: 9.5/985
  21048. }
  21049. },
  21050. frontDressed: {
  21051. height: math.unit(2.3, "m"),
  21052. weight: math.unit(304, "kg"),
  21053. name: "Front (Dressed)",
  21054. image: {
  21055. source: "./media/characters/icowom-lee/front-dressed.svg",
  21056. extra: 3076 / 2933,
  21057. bottom: 51.4 / 3125.1889
  21058. }
  21059. },
  21060. rump: {
  21061. height: math.unit(0.776, "meters"),
  21062. name: "Rump",
  21063. image: {
  21064. source: "./media/characters/icowom-lee/rump.svg"
  21065. }
  21066. },
  21067. genitals: {
  21068. height: math.unit(0.78, "meters"),
  21069. name: "Genitals",
  21070. image: {
  21071. source: "./media/characters/icowom-lee/genitals.svg"
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(2.3, "meters"),
  21079. default: true
  21080. },
  21081. {
  21082. name: "Macro",
  21083. height: math.unit(94, "meters"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(22, "meters"),
  21093. weight: math.unit(21000, "kg"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/shock-diamond/front.svg",
  21097. extra: 2204 / 2053,
  21098. bottom: 65 / 2239.47
  21099. }
  21100. },
  21101. frontNude: {
  21102. height: math.unit(22, "meters"),
  21103. weight: math.unit(21000, "kg"),
  21104. name: "Front (Nude)",
  21105. image: {
  21106. source: "./media/characters/shock-diamond/front-nude.svg",
  21107. extra: 2514 / 2285,
  21108. bottom: 13 / 2527.56
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(3, "meters")
  21116. },
  21117. {
  21118. name: "Macro",
  21119. height: math.unit(22, "meters"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(5 + 4 / 12, "feet"),
  21129. weight: math.unit(120, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/rory/front.svg",
  21133. extra: 589 / 556,
  21134. bottom: 45.7 / 635.76
  21135. }
  21136. },
  21137. frontNude: {
  21138. height: math.unit(5 + 4 / 12, "feet"),
  21139. weight: math.unit(120, "lb"),
  21140. name: "Front (Nude)",
  21141. image: {
  21142. source: "./media/characters/rory/front-nude.svg",
  21143. extra: 589 / 556,
  21144. bottom: 45.7 / 635.76
  21145. }
  21146. },
  21147. side: {
  21148. height: math.unit(5 + 4 / 12, "feet"),
  21149. weight: math.unit(120, "lb"),
  21150. name: "Side",
  21151. image: {
  21152. source: "./media/characters/rory/side.svg",
  21153. extra: 597 / 564,
  21154. bottom: 55 / 653
  21155. }
  21156. },
  21157. back: {
  21158. height: math.unit(5 + 4 / 12, "feet"),
  21159. weight: math.unit(120, "lb"),
  21160. name: "Back",
  21161. image: {
  21162. source: "./media/characters/rory/back.svg",
  21163. extra: 620 / 585,
  21164. bottom: 8.86 / 630.43
  21165. }
  21166. },
  21167. dick: {
  21168. height: math.unit(0.86, "feet"),
  21169. name: "Dick",
  21170. image: {
  21171. source: "./media/characters/rory/dick.svg"
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(5 + 4 / 12, "feet"),
  21179. default: true
  21180. },
  21181. {
  21182. name: "Macro",
  21183. height: math.unit(100, "feet")
  21184. },
  21185. {
  21186. name: "Macro+",
  21187. height: math.unit(140, "feet")
  21188. },
  21189. {
  21190. name: "Macro++",
  21191. height: math.unit(300, "feet")
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(5 + 9 / 12, "feet"),
  21200. weight: math.unit(190, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/sprisk/front.svg",
  21204. extra: 1225 / 1180,
  21205. bottom: 42.7 / 1266.4
  21206. }
  21207. },
  21208. frontNsfw: {
  21209. height: math.unit(5 + 9 / 12, "feet"),
  21210. weight: math.unit(190, "lb"),
  21211. name: "Front (NSFW)",
  21212. image: {
  21213. source: "./media/characters/sprisk/front-nsfw.svg",
  21214. extra: 1225 / 1180,
  21215. bottom: 42.7 / 1266.4
  21216. }
  21217. },
  21218. back: {
  21219. height: math.unit(5 + 9 / 12, "feet"),
  21220. weight: math.unit(190, "lb"),
  21221. name: "Back",
  21222. image: {
  21223. source: "./media/characters/sprisk/back.svg",
  21224. extra: 1247 / 1200,
  21225. bottom: 5.6 / 1253.04
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Tiny",
  21232. height: math.unit(2, "inches")
  21233. },
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(5 + 9 / 12, "feet"),
  21237. default: true
  21238. },
  21239. {
  21240. name: "Mini Macro",
  21241. height: math.unit(18, "feet")
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(100, "feet")
  21246. },
  21247. {
  21248. name: "MACRO",
  21249. height: math.unit(50, "miles")
  21250. },
  21251. {
  21252. name: "M A C R O",
  21253. height: math.unit(300, "miles")
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21259. {
  21260. side: {
  21261. height: math.unit(15.6, "meters"),
  21262. weight: math.unit(700000, "kg"),
  21263. name: "Side",
  21264. image: {
  21265. source: "./media/characters/bunsen/side.svg",
  21266. extra: 1644 / 358
  21267. }
  21268. },
  21269. foot: {
  21270. height: math.unit(1.611 * 1644 / 358, "meter"),
  21271. name: "Foot",
  21272. image: {
  21273. source: "./media/characters/bunsen/foot.svg"
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Small",
  21280. height: math.unit(10, "feet")
  21281. },
  21282. {
  21283. name: "Normal",
  21284. height: math.unit(15.6, "meters"),
  21285. default: true
  21286. },
  21287. ]
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21291. {
  21292. front: {
  21293. height: math.unit(4 + 11 / 12, "feet"),
  21294. weight: math.unit(140, "lb"),
  21295. name: "Front",
  21296. image: {
  21297. source: "./media/characters/sesh/front.svg",
  21298. extra: 3420 / 3231,
  21299. bottom: 72 / 3949.5
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(4 + 11 / 12, "feet")
  21307. },
  21308. {
  21309. name: "Grown",
  21310. height: math.unit(15, "feet"),
  21311. default: true
  21312. },
  21313. {
  21314. name: "Macro",
  21315. height: math.unit(1500, "feet")
  21316. },
  21317. {
  21318. name: "Megamacro",
  21319. height: math.unit(30, "miles")
  21320. },
  21321. {
  21322. name: "Continental",
  21323. height: math.unit(3000, "miles")
  21324. },
  21325. {
  21326. name: "Gravity Mass",
  21327. height: math.unit(300000, "miles")
  21328. },
  21329. {
  21330. name: "Planet Buster",
  21331. height: math.unit(30000000, "miles")
  21332. },
  21333. {
  21334. name: "Big",
  21335. height: math.unit(3000000000, "miles")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(9, "feet"),
  21344. weight: math.unit(350, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/pepper/front.svg",
  21348. extra: 1448/1312,
  21349. bottom: 9.4/1457.88
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(9, "feet"),
  21354. weight: math.unit(350, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/pepper/back.svg",
  21358. extra: 1423/1300,
  21359. bottom: 4.6/1429
  21360. }
  21361. },
  21362. maw: {
  21363. height: math.unit(0.932, "feet"),
  21364. name: "Maw",
  21365. image: {
  21366. source: "./media/characters/pepper/maw.svg"
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(9, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(6, "feet"),
  21383. weight: math.unit(150, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/maelstrom/front.svg",
  21387. extra: 2100/1883,
  21388. bottom: 94/2196.7
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Less Kaiju",
  21395. height: math.unit(200, "feet")
  21396. },
  21397. {
  21398. name: "Kaiju",
  21399. height: math.unit(400, "feet"),
  21400. default: true
  21401. },
  21402. {
  21403. name: "Kaiju-er",
  21404. height: math.unit(600, "feet")
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(6 + 5/12, "feet"),
  21413. weight: math.unit(180, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/lexir/front.svg",
  21417. extra: 180/172,
  21418. bottom: 12/192
  21419. }
  21420. },
  21421. back: {
  21422. height: math.unit(6 + 5/12, "feet"),
  21423. weight: math.unit(180, "lb"),
  21424. name: "Back",
  21425. image: {
  21426. source: "./media/characters/lexir/back.svg",
  21427. extra: 183.84/175.5,
  21428. bottom: 3.1/187
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Very Smal",
  21435. height: math.unit(1, "nm")
  21436. },
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(6 + 5/12, "feet"),
  21440. default: true
  21441. },
  21442. {
  21443. name: "Macro",
  21444. height: math.unit(1, "mile")
  21445. },
  21446. {
  21447. name: "Megamacro",
  21448. height: math.unit(50, "miles")
  21449. },
  21450. ]
  21451. ))
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21454. {
  21455. front: {
  21456. height: math.unit(1.5, "meters"),
  21457. weight: math.unit(100, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/maksio/front.svg",
  21461. extra: 1549/1531,
  21462. bottom: 123.7/1674.5429
  21463. }
  21464. },
  21465. back: {
  21466. height: math.unit(1.5, "meters"),
  21467. weight: math.unit(100, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/maksio/back.svg",
  21471. extra: 1541/1509,
  21472. bottom: 97/1639
  21473. }
  21474. },
  21475. hand: {
  21476. height: math.unit(0.621, "feet"),
  21477. name: "Hand",
  21478. image: {
  21479. source: "./media/characters/maksio/hand.svg"
  21480. }
  21481. },
  21482. foot: {
  21483. height: math.unit(1.611, "feet"),
  21484. name: "Foot",
  21485. image: {
  21486. source: "./media/characters/maksio/foot.svg"
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Shrunken",
  21493. height: math.unit(10, "cm")
  21494. },
  21495. {
  21496. name: "Normal",
  21497. height: math.unit(150, "cm"),
  21498. default: true
  21499. },
  21500. ]
  21501. ))
  21502. characterMakers.push(() => makeCharacter(
  21503. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21504. {
  21505. front: {
  21506. height: math.unit(100, "feet"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/erza-bear/front.svg",
  21510. extra: 2449/2390,
  21511. bottom: 46/2494
  21512. }
  21513. },
  21514. back: {
  21515. height: math.unit(100, "feet"),
  21516. name: "Back",
  21517. image: {
  21518. source: "./media/characters/erza-bear/back.svg",
  21519. extra: 2489/2430,
  21520. bottom: 85.4/2480
  21521. }
  21522. },
  21523. tail: {
  21524. height: math.unit(42, "feet"),
  21525. name: "Tail",
  21526. image: {
  21527. source: "./media/characters/erza-bear/tail.svg"
  21528. }
  21529. },
  21530. tongue: {
  21531. height: math.unit(8, "feet"),
  21532. name: "Tongue",
  21533. image: {
  21534. source: "./media/characters/erza-bear/tongue.svg"
  21535. }
  21536. },
  21537. dick: {
  21538. height: math.unit(10.5, "feet"),
  21539. name: "Dick",
  21540. image: {
  21541. source: "./media/characters/erza-bear/dick.svg"
  21542. }
  21543. },
  21544. dickVertical: {
  21545. height: math.unit(16.9, "feet"),
  21546. name: "Dick (Vertical)",
  21547. image: {
  21548. source: "./media/characters/erza-bear/dick-vertical.svg"
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Macro",
  21555. height: math.unit(100, "feet"),
  21556. default: true
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(172, "cm"),
  21565. weight: math.unit(73, "kg"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/violet-flor/front.svg",
  21569. extra: 1530/1442,
  21570. bottom: 61.9/1588.8
  21571. }
  21572. },
  21573. back: {
  21574. height: math.unit(180, "cm"),
  21575. weight: math.unit(73, "kg"),
  21576. name: "Back",
  21577. image: {
  21578. source: "./media/characters/violet-flor/back.svg",
  21579. extra: 1692/1630,
  21580. bottom: 20/1712
  21581. }
  21582. },
  21583. },
  21584. [
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(172, "cm"),
  21588. default: true
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(6, "feet"),
  21597. weight: math.unit(220, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/lynn-rhea/front.svg",
  21601. extra: 310/273
  21602. }
  21603. },
  21604. back: {
  21605. height: math.unit(6, "feet"),
  21606. weight: math.unit(220, "lb"),
  21607. name: "Back",
  21608. image: {
  21609. source: "./media/characters/lynn-rhea/back.svg",
  21610. extra: 310/273
  21611. }
  21612. },
  21613. dicks: {
  21614. height: math.unit(0.9, "feet"),
  21615. name: "Dicks",
  21616. image: {
  21617. source: "./media/characters/lynn-rhea/dicks.svg"
  21618. }
  21619. },
  21620. slit: {
  21621. height: math.unit(0.4, "feet"),
  21622. name: "Slit",
  21623. image: {
  21624. source: "./media/characters/lynn-rhea/slit.svg"
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Micro",
  21631. height: math.unit(1, "inch")
  21632. },
  21633. {
  21634. name: "Macro",
  21635. height: math.unit(60, "feet"),
  21636. default: true
  21637. },
  21638. {
  21639. name: "Megamacro",
  21640. height: math.unit(2, "miles")
  21641. },
  21642. {
  21643. name: "Gigamacro",
  21644. height: math.unit(3, "earths")
  21645. },
  21646. {
  21647. name: "Galactic",
  21648. height: math.unit(0.8, "galaxies")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21654. {
  21655. front: {
  21656. height: math.unit(1600, "feet"),
  21657. weight: math.unit(85758785169, "kg"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/valathos/front.svg",
  21661. extra: 1451/1339
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Macro",
  21668. height: math.unit(1600, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(7 + 5/12, "feet"),
  21678. weight: math.unit(300, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/azula/front.svg",
  21682. extra: 3208/2880,
  21683. bottom: 80.2/3277
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(7 + 5/12, "feet"),
  21688. weight: math.unit(300, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/azula/back.svg",
  21692. extra: 3169/2822,
  21693. bottom: 150.6/3321
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(7 + 5/12, "feet"),
  21701. default: true
  21702. },
  21703. {
  21704. name: "Big",
  21705. height: math.unit(20, "feet")
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(5 + 1/12, "feet"),
  21714. weight: math.unit(110, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/rupert/front.svg",
  21718. extra: 1549/1495,
  21719. bottom: 54.2/1604.4
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(5 + 1/12, "feet"),
  21727. default: true
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(8 + 4/12, "feet"),
  21736. weight: math.unit(350, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/sheera-castellar/front.svg",
  21740. extra: 1957/1894,
  21741. bottom: 26.97/1975.017
  21742. }
  21743. },
  21744. side: {
  21745. height: math.unit(8 + 4/12, "feet"),
  21746. weight: math.unit(350, "lb"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/sheera-castellar/side.svg",
  21750. extra: 1957/1894
  21751. }
  21752. },
  21753. back: {
  21754. height: math.unit(8 + 4/12, "feet"),
  21755. weight: math.unit(350, "lb"),
  21756. name: "Back",
  21757. image: {
  21758. source: "./media/characters/sheera-castellar/back.svg",
  21759. extra: 1957/1894
  21760. }
  21761. },
  21762. angled: {
  21763. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21764. weight: math.unit(350, "lb"),
  21765. name: "Angled",
  21766. image: {
  21767. source: "./media/characters/sheera-castellar/angled.svg",
  21768. extra: 1807/1707,
  21769. bottom: 68/1875
  21770. }
  21771. },
  21772. genitals: {
  21773. height: math.unit(2.2, "feet"),
  21774. name: "Genitals",
  21775. image: {
  21776. source: "./media/characters/sheera-castellar/genitals.svg"
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Normal",
  21783. height: math.unit(8 + 4/12, "feet")
  21784. },
  21785. {
  21786. name: "Macro",
  21787. height: math.unit(150, "feet"),
  21788. default: true
  21789. },
  21790. {
  21791. name: "Macro+",
  21792. height: math.unit(800, "feet")
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(6, "feet"),
  21801. weight: math.unit(150, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/jaipur/front.svg",
  21805. extra: 3860/3731,
  21806. bottom: 287/4140
  21807. }
  21808. },
  21809. back: {
  21810. height: math.unit(6, "feet"),
  21811. weight: math.unit(150, "lb"),
  21812. name: "Back",
  21813. image: {
  21814. source: "./media/characters/jaipur/back.svg",
  21815. extra: 4060/3930,
  21816. bottom: 151/4200
  21817. }
  21818. },
  21819. },
  21820. [
  21821. {
  21822. name: "Normal",
  21823. height: math.unit(1.85, "meters"),
  21824. default: true
  21825. },
  21826. {
  21827. name: "Macro",
  21828. height: math.unit(150, "meters")
  21829. },
  21830. {
  21831. name: "Macro+",
  21832. height: math.unit(0.5, "miles")
  21833. },
  21834. {
  21835. name: "Macro++",
  21836. height: math.unit(2.5, "miles")
  21837. },
  21838. {
  21839. name: "Macro+++",
  21840. height: math.unit(12, "miles")
  21841. },
  21842. {
  21843. name: "Macro++++",
  21844. height: math.unit(120, "miles")
  21845. },
  21846. {
  21847. name: "Macro+++++",
  21848. height: math.unit(1200, "miles")
  21849. },
  21850. ]
  21851. ))
  21852. characterMakers.push(() => makeCharacter(
  21853. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21854. {
  21855. front: {
  21856. height: math.unit(6, "feet"),
  21857. weight: math.unit(150, "lb"),
  21858. name: "Front",
  21859. image: {
  21860. source: "./media/characters/sheila-wolf/front.svg",
  21861. extra: 1931/1808,
  21862. bottom: 29.5/1960
  21863. }
  21864. },
  21865. dick: {
  21866. height: math.unit(1.464, "feet"),
  21867. name: "Dick",
  21868. image: {
  21869. source: "./media/characters/sheila-wolf/dick.svg"
  21870. }
  21871. },
  21872. muzzle: {
  21873. height: math.unit(0.513, "feet"),
  21874. name: "Muzzle",
  21875. image: {
  21876. source: "./media/characters/sheila-wolf/muzzle.svg"
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(70, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(32, "meters"),
  21893. weight: math.unit(300000, "kg"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/almor/front.svg",
  21897. extra: 1408/1322,
  21898. bottom: 94.6/1506.5
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(32, "meters"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(7, "feet"),
  21915. weight: math.unit(200, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/silver/front.svg",
  21919. extra: 472.1/450.5,
  21920. bottom: 26.5/499.424
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(7, "feet"),
  21928. default: true
  21929. },
  21930. {
  21931. name: "Macro",
  21932. height: math.unit(800, "feet")
  21933. },
  21934. {
  21935. name: "Megamacro",
  21936. height: math.unit(250, "miles")
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21942. {
  21943. front: {
  21944. height: math.unit(6, "feet"),
  21945. weight: math.unit(150, "lb"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/pliskin/front.svg",
  21949. extra: 1469/1359,
  21950. bottom: 70/1540
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Micro",
  21957. height: math.unit(3, "inches")
  21958. },
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(5 + 11/12, "feet"),
  21962. default: true
  21963. },
  21964. {
  21965. name: "Macro",
  21966. height: math.unit(120, "feet")
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(6, "feet"),
  21975. weight: math.unit(150, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/sammy/front.svg",
  21979. extra: 1193/1089,
  21980. bottom: 30.5/1226
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Macro",
  21987. height: math.unit(1700, "feet"),
  21988. default: true
  21989. },
  21990. {
  21991. name: "Examacro",
  21992. height: math.unit(2.5e9, "lightyears")
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(21, "meters"),
  22001. weight: math.unit(12, "tonnes"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/kuru/front.svg",
  22005. extra: 4301/3785,
  22006. bottom: 371.3/4691
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Macro",
  22013. height: math.unit(21, "meters"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(23, "meters"),
  22023. weight: math.unit(12.2, "tonnes"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/rakka/front.svg",
  22027. extra: 4670/4169,
  22028. bottom: 301/4968.7
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(23, "meters"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(6, "feet"),
  22045. weight: math.unit(150, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/rhys-feline/front.svg",
  22049. extra: 2488/2308,
  22050. bottom: 35.67/2519.19
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Really Small",
  22057. height: math.unit(1, "nm")
  22058. },
  22059. {
  22060. name: "Micro",
  22061. height: math.unit(4, "inches")
  22062. },
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(4 + 10/12, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(100, "feet")
  22071. },
  22072. {
  22073. name: "Megamacto",
  22074. height: math.unit(50, "miles")
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22080. {
  22081. side: {
  22082. height: math.unit(30, "feet"),
  22083. weight: math.unit(35000, "kg"),
  22084. name: "Side",
  22085. image: {
  22086. source: "./media/characters/alydar/side.svg",
  22087. extra: 234/222,
  22088. bottom: 6.5/241
  22089. }
  22090. },
  22091. front: {
  22092. height: math.unit(30, "feet"),
  22093. weight: math.unit(35000, "kg"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/alydar/front.svg",
  22097. extra: 223.37/210.2,
  22098. bottom: 22.3/246.76
  22099. }
  22100. },
  22101. top: {
  22102. height: math.unit(64.54, "feet"),
  22103. weight: math.unit(35000, "kg"),
  22104. name: "Top",
  22105. image: {
  22106. source: "./media/characters/alydar/top.svg"
  22107. }
  22108. },
  22109. anthro: {
  22110. height: math.unit(30, "feet"),
  22111. weight: math.unit(9000, "kg"),
  22112. name: "Anthro",
  22113. image: {
  22114. source: "./media/characters/alydar/anthro.svg",
  22115. extra: 432/421,
  22116. bottom: 7.18/440
  22117. }
  22118. },
  22119. maw: {
  22120. height: math.unit(11.693, "feet"),
  22121. name: "Maw",
  22122. image: {
  22123. source: "./media/characters/alydar/maw.svg"
  22124. }
  22125. },
  22126. head: {
  22127. height: math.unit(11.693, "feet"),
  22128. name: "Head",
  22129. image: {
  22130. source: "./media/characters/alydar/head.svg"
  22131. }
  22132. },
  22133. headAlt: {
  22134. height: math.unit(12.861, "feet"),
  22135. name: "Head (Alt)",
  22136. image: {
  22137. source: "./media/characters/alydar/head-alt.svg"
  22138. }
  22139. },
  22140. wing: {
  22141. height: math.unit(20.712, "feet"),
  22142. name: "Wing",
  22143. image: {
  22144. source: "./media/characters/alydar/wing.svg"
  22145. }
  22146. },
  22147. wingFeather: {
  22148. height: math.unit(9.662, "feet"),
  22149. name: "Wing Feather",
  22150. image: {
  22151. source: "./media/characters/alydar/wing-feather.svg"
  22152. }
  22153. },
  22154. countourFeather: {
  22155. height: math.unit(4.154, "feet"),
  22156. name: "Contour Feather",
  22157. image: {
  22158. source: "./media/characters/alydar/contour-feather.svg"
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Diplomatic",
  22165. height: math.unit(13, "feet"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Small",
  22170. height: math.unit(30, "feet")
  22171. },
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(95, "feet"),
  22175. default: true
  22176. },
  22177. {
  22178. name: "Large",
  22179. height: math.unit(285, "feet")
  22180. },
  22181. {
  22182. name: "Incomprehensible",
  22183. height: math.unit(450, "megameters")
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22189. {
  22190. side: {
  22191. height: math.unit(11, "feet"),
  22192. weight: math.unit(1750, "kg"),
  22193. name: "Side",
  22194. image: {
  22195. source: "./media/characters/selicia/side.svg",
  22196. extra: 440/396,
  22197. bottom: 24.8/465.979
  22198. }
  22199. },
  22200. maw: {
  22201. height: math.unit(4.665, "feet"),
  22202. name: "Maw",
  22203. image: {
  22204. source: "./media/characters/selicia/maw.svg"
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(11, "feet"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22218. {
  22219. side: {
  22220. height: math.unit(2 + 6 /12, "feet"),
  22221. weight: math.unit(30, "lb"),
  22222. name: "Side",
  22223. image: {
  22224. source: "./media/characters/layla/side.svg",
  22225. extra: 244/188,
  22226. bottom: 18.2/262.1
  22227. }
  22228. },
  22229. back: {
  22230. height: math.unit(2 + 6 /12, "feet"),
  22231. weight: math.unit(30, "lb"),
  22232. name: "Back",
  22233. image: {
  22234. source: "./media/characters/layla/back.svg",
  22235. extra: 308/241.5,
  22236. bottom: 8.9/316.8
  22237. }
  22238. },
  22239. cumming: {
  22240. height: math.unit(2 + 6 /12, "feet"),
  22241. weight: math.unit(30, "lb"),
  22242. name: "Cumming",
  22243. image: {
  22244. source: "./media/characters/layla/cumming.svg",
  22245. extra: 342/279,
  22246. bottom: 595/938
  22247. }
  22248. },
  22249. dickFlaccid: {
  22250. height: math.unit(2.595, "feet"),
  22251. name: "Flaccid Genitals",
  22252. image: {
  22253. source: "./media/characters/layla/dick-flaccid.svg"
  22254. }
  22255. },
  22256. dickErect: {
  22257. height: math.unit(2.359, "feet"),
  22258. name: "Erect Genitals",
  22259. image: {
  22260. source: "./media/characters/layla/dick-erect.svg"
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Micro",
  22267. height: math.unit(1, "inch")
  22268. },
  22269. {
  22270. name: "Small",
  22271. height: math.unit(1, "foot")
  22272. },
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(2 + 6/12, "feet"),
  22276. default: true
  22277. },
  22278. {
  22279. name: "Macro",
  22280. height: math.unit(200, "feet")
  22281. },
  22282. {
  22283. name: "Megamacro",
  22284. height: math.unit(1000, "miles")
  22285. },
  22286. {
  22287. name: "Planetary",
  22288. height: math.unit(8000, "miles")
  22289. },
  22290. {
  22291. name: "True Layla",
  22292. height: math.unit(200000*7, "multiverses")
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22298. {
  22299. back: {
  22300. height: math.unit(10.5, "feet"),
  22301. weight: math.unit(800, "lb"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/knox/back.svg",
  22305. extra: 1486/1089,
  22306. bottom: 107/1601.4
  22307. }
  22308. },
  22309. side: {
  22310. height: math.unit(10.5, "feet"),
  22311. weight: math.unit(800, "lb"),
  22312. name: "Side",
  22313. image: {
  22314. source: "./media/characters/knox/side.svg",
  22315. extra: 244/218,
  22316. bottom: 14/260
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Compact",
  22323. height: math.unit(10.5, "feet"),
  22324. default: true
  22325. },
  22326. {
  22327. name: "Dynamax",
  22328. height: math.unit(210, "feet")
  22329. },
  22330. {
  22331. name: "Full Macro",
  22332. height: math.unit(850, "feet")
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(6, "feet"),
  22341. weight: math.unit(152, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/shin-pikachu/front.svg",
  22345. extra: 1574/1480,
  22346. bottom: 53.3/1626
  22347. }
  22348. },
  22349. hand: {
  22350. height: math.unit(1.055, "feet"),
  22351. name: "Hand",
  22352. image: {
  22353. source: "./media/characters/shin-pikachu/hand.svg"
  22354. }
  22355. },
  22356. foot: {
  22357. height: math.unit(1.1, "feet"),
  22358. name: "Foot",
  22359. image: {
  22360. source: "./media/characters/shin-pikachu/foot.svg"
  22361. }
  22362. },
  22363. collar: {
  22364. height: math.unit(0.386, "feet"),
  22365. name: "Collar",
  22366. image: {
  22367. source: "./media/characters/shin-pikachu/collar.svg"
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Smallest",
  22374. height: math.unit(0.5, "inches")
  22375. },
  22376. {
  22377. name: "Micro",
  22378. height: math.unit(6, "inches")
  22379. },
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(6, "feet"),
  22383. default: true
  22384. },
  22385. {
  22386. name: "Macro",
  22387. height: math.unit(150, "feet")
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(28, "feet"),
  22396. weight: math.unit(10500, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/kayda/front.svg",
  22400. extra: 1536/1428,
  22401. bottom: 68.7/1603
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(28, "feet"),
  22406. weight: math.unit(10500, "lb"),
  22407. name: "Back",
  22408. image: {
  22409. source: "./media/characters/kayda/back.svg",
  22410. extra: 1557/1464,
  22411. bottom: 39.5/1597.49
  22412. }
  22413. },
  22414. dick: {
  22415. height: math.unit(3.858, "feet"),
  22416. name: "Dick",
  22417. image: {
  22418. source: "./media/characters/kayda/dick.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Macro",
  22425. height: math.unit(28, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(10 + 11/12, "feet"),
  22435. weight: math.unit(1400, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/brian/front.svg",
  22439. extra: 737/692,
  22440. bottom: 55.4/785
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(10 + 11/12, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(5 + 8/12, "feet"),
  22457. weight: math.unit(140, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/khemri/front.svg",
  22461. extra: 4780/4059,
  22462. bottom: 80.1/4859.25
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Micro",
  22469. height: math.unit(6, "inches")
  22470. },
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(5 + 8/12, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22480. {
  22481. front: {
  22482. height: math.unit(13, "feet"),
  22483. weight: math.unit(1700, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/felix-braveheart/front.svg",
  22487. extra: 1222/1157,
  22488. bottom: 53.2/1280
  22489. }
  22490. },
  22491. back: {
  22492. height: math.unit(13, "feet"),
  22493. weight: math.unit(1700, "lb"),
  22494. name: "Back",
  22495. image: {
  22496. source: "./media/characters/felix-braveheart/back.svg",
  22497. extra: 1277/1203,
  22498. bottom: 50.2/1327
  22499. }
  22500. },
  22501. feral: {
  22502. height: math.unit(6, "feet"),
  22503. weight: math.unit(400, "lb"),
  22504. name: "Feral",
  22505. image: {
  22506. source: "./media/characters/felix-braveheart/feral.svg",
  22507. extra: 682/625,
  22508. bottom: 6.9/688
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(13, "feet"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22522. {
  22523. side: {
  22524. height: math.unit(5 + 11/12, "feet"),
  22525. weight: math.unit(1400, "lb"),
  22526. name: "Side",
  22527. image: {
  22528. source: "./media/characters/shadow-blade/side.svg",
  22529. extra: 1726/1267,
  22530. bottom: 58.4/1785
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(5 + 11/12, "feet"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(1 + 6/12, "feet"),
  22547. weight: math.unit(25, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/karla-halldor/front.svg",
  22551. extra: 1459/1383,
  22552. bottom: 12/1472
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Normal",
  22559. height: math.unit(1 + 6/12, "feet"),
  22560. default: true
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22566. {
  22567. front: {
  22568. height: math.unit(6 + 2/12, "feet"),
  22569. weight: math.unit(160, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/ariam/front.svg",
  22573. extra: 714/617,
  22574. bottom: 23.4/737,
  22575. }
  22576. },
  22577. squatting: {
  22578. height: math.unit(4.1, "feet"),
  22579. weight: math.unit(160, "lb"),
  22580. name: "Squatting",
  22581. image: {
  22582. source: "./media/characters/ariam/squatting.svg",
  22583. extra: 2617/2112,
  22584. bottom: 61.2/2681,
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Normal",
  22591. height: math.unit(6 + 2/12, "feet"),
  22592. default: true
  22593. },
  22594. {
  22595. name: "Normal+",
  22596. height: math.unit(4, "meters")
  22597. },
  22598. {
  22599. name: "Macro",
  22600. height: math.unit(50, "meters")
  22601. },
  22602. {
  22603. name: "Macro+",
  22604. height: math.unit(100, "meters")
  22605. },
  22606. {
  22607. name: "Megamacro",
  22608. height: math.unit(20, "km")
  22609. },
  22610. ]
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22614. {
  22615. front: {
  22616. height: math.unit(1.67, "meters"),
  22617. weight: math.unit(140, "lb"),
  22618. name: "Front",
  22619. image: {
  22620. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22621. extra: 438/410,
  22622. bottom: 0.75/439
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Shrunken",
  22629. height: math.unit(7.6, "cm")
  22630. },
  22631. {
  22632. name: "Human Scale",
  22633. height: math.unit(1.67, "meters")
  22634. },
  22635. {
  22636. name: "Wolxi Scale",
  22637. height: math.unit(36.7, "meters"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(1.73, "meters"),
  22647. weight: math.unit(240, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/izue-two-mothers/front.svg",
  22651. extra: 469/437,
  22652. bottom: 1.24/470.6
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Shrunken",
  22659. height: math.unit(7.86, "cm")
  22660. },
  22661. {
  22662. name: "Human Scale",
  22663. height: math.unit(1.73, "meters")
  22664. },
  22665. {
  22666. name: "Wolxi Scale",
  22667. height: math.unit(38, "meters"),
  22668. default: true
  22669. },
  22670. ]
  22671. ))
  22672. characterMakers.push(() => makeCharacter(
  22673. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22674. {
  22675. front: {
  22676. height: math.unit(1.55, "meters"),
  22677. weight: math.unit(120, "lb"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/teeku-love-shack/front.svg",
  22681. extra: 387/362,
  22682. bottom: 1.51/388
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Shrunken",
  22689. height: math.unit(7, "cm")
  22690. },
  22691. {
  22692. name: "Human Scale",
  22693. height: math.unit(1.55, "meters")
  22694. },
  22695. {
  22696. name: "Wolxi Scale",
  22697. height: math.unit(34.1, "meters"),
  22698. default: true
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(1.83, "meters"),
  22707. weight: math.unit(135, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/dejma-the-red/front.svg",
  22711. extra: 480/458,
  22712. bottom: 1.8/482
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Shrunken",
  22719. height: math.unit(8.3, "cm")
  22720. },
  22721. {
  22722. name: "Human Scale",
  22723. height: math.unit(1.83, "meters")
  22724. },
  22725. {
  22726. name: "Wolxi Scale",
  22727. height: math.unit(40, "meters"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(1.78, "meters"),
  22737. weight: math.unit(65, "kg"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/aki/front.svg",
  22741. extra: 452/415
  22742. }
  22743. },
  22744. frontNsfw: {
  22745. height: math.unit(1.78, "meters"),
  22746. weight: math.unit(65, "kg"),
  22747. name: "Front (NSFW)",
  22748. image: {
  22749. source: "./media/characters/aki/front-nsfw.svg",
  22750. extra: 452/415
  22751. }
  22752. },
  22753. back: {
  22754. height: math.unit(1.78, "meters"),
  22755. weight: math.unit(65, "kg"),
  22756. name: "Back",
  22757. image: {
  22758. source: "./media/characters/aki/back.svg",
  22759. extra: 452/415
  22760. }
  22761. },
  22762. rump: {
  22763. height: math.unit(2.05, "feet"),
  22764. name: "Rump",
  22765. image: {
  22766. source: "./media/characters/aki/rump.svg"
  22767. }
  22768. },
  22769. dick: {
  22770. height: math.unit(0.95, "feet"),
  22771. name: "Dick",
  22772. image: {
  22773. source: "./media/characters/aki/dick.svg"
  22774. }
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Micro",
  22780. height: math.unit(15, "cm")
  22781. },
  22782. {
  22783. name: "Normal",
  22784. height: math.unit(178, "cm"),
  22785. default: true
  22786. },
  22787. {
  22788. name: "Macro",
  22789. height: math.unit(214, "m")
  22790. },
  22791. {
  22792. name: "Macro+",
  22793. height: math.unit(534, "m")
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(5 + 5/12, "feet"),
  22802. weight: math.unit(120, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/ari/front.svg",
  22806. extra: 714.5/682,
  22807. bottom: 8/722.5
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(5 + 5/12, "feet")
  22815. },
  22816. {
  22817. name: "Macro",
  22818. height: math.unit(100, "feet"),
  22819. default: true
  22820. },
  22821. {
  22822. name: "Megamacro",
  22823. height: math.unit(100, "miles")
  22824. },
  22825. {
  22826. name: "Gigamacro",
  22827. height: math.unit(80000, "miles")
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22833. {
  22834. side: {
  22835. height: math.unit(9, "feet"),
  22836. weight: math.unit(400, "kg"),
  22837. name: "Side",
  22838. image: {
  22839. source: "./media/characters/bolt/side.svg",
  22840. extra: 1126/896,
  22841. bottom: 60/1187.3,
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Micro",
  22848. height: math.unit(5, "inches")
  22849. },
  22850. {
  22851. name: "Normal",
  22852. height: math.unit(9, "feet"),
  22853. default: true
  22854. },
  22855. {
  22856. name: "Macro",
  22857. height: math.unit(700, "feet")
  22858. },
  22859. {
  22860. name: "Max Size",
  22861. height: math.unit(1.52e22, "yottameters")
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(4.53, "meters"),
  22870. weight: math.unit(3, "tons"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/draekon-sylviar/front.svg",
  22874. extra: 1228/1068,
  22875. bottom: 41/1270
  22876. }
  22877. },
  22878. tail: {
  22879. height: math.unit(1.772, "meter"),
  22880. name: "Tail",
  22881. image: {
  22882. source: "./media/characters/draekon-sylviar/tail.svg"
  22883. }
  22884. },
  22885. head: {
  22886. height: math.unit(1.331, "meter"),
  22887. name: "Head",
  22888. image: {
  22889. source: "./media/characters/draekon-sylviar/head.svg"
  22890. }
  22891. },
  22892. hand: {
  22893. height: math.unit(0.564, "meter"),
  22894. name: "Hand",
  22895. image: {
  22896. source: "./media/characters/draekon-sylviar/hand.svg"
  22897. }
  22898. },
  22899. foot: {
  22900. height: math.unit(0.621, "meter"),
  22901. name: "Foot",
  22902. image: {
  22903. source: "./media/characters/draekon-sylviar/foot.svg",
  22904. bottom: 32/324
  22905. }
  22906. },
  22907. dick: {
  22908. height: math.unit(61, "cm"),
  22909. name: "Dick",
  22910. image: {
  22911. source: "./media/characters/draekon-sylviar/dick.svg"
  22912. }
  22913. },
  22914. dickseparated: {
  22915. height: math.unit(61, "cm"),
  22916. name: "Dick-separated",
  22917. image: {
  22918. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Small",
  22925. height: math.unit(4.53/2, "meters"),
  22926. default: true
  22927. },
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(4.53, "meters"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Large",
  22935. height: math.unit(4.53*2, "meters"),
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(6 + 2/12, "feet"),
  22944. weight: math.unit(180, "lb"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/brawler/front.svg",
  22948. extra: 3301/3027,
  22949. bottom: 138/3439
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Normal",
  22956. height: math.unit(6 + 2/12, "feet"),
  22957. default: true
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(11, "feet"),
  22966. weight: math.unit(1000, "lb"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/alex/front.svg",
  22970. bottom: 44.5/620
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Micro",
  22977. height: math.unit(5, "inches")
  22978. },
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(11, "feet"),
  22982. default: true
  22983. },
  22984. {
  22985. name: "Macro",
  22986. height: math.unit(9.5e9, "feet")
  22987. },
  22988. {
  22989. name: "Max Size",
  22990. height: math.unit(1.4e283, "yottameters")
  22991. },
  22992. ]
  22993. ))
  22994. characterMakers.push(() => makeCharacter(
  22995. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  22996. {
  22997. female: {
  22998. height: math.unit(29.9, "m"),
  22999. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  23000. name: "Female",
  23001. image: {
  23002. source: "./media/characters/zenari/female.svg",
  23003. extra: 3281.6/3217,
  23004. bottom: 72.2/3353
  23005. }
  23006. },
  23007. male: {
  23008. height: math.unit(27.7, "m"),
  23009. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  23010. name: "Male",
  23011. image: {
  23012. source: "./media/characters/zenari/male.svg",
  23013. extra: 3008/2991,
  23014. bottom: 54.6/3069
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Macro",
  23021. height: math.unit(29.7, "meters"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23028. {
  23029. female: {
  23030. height: math.unit(23.8, "m"),
  23031. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23032. name: "Female",
  23033. image: {
  23034. source: "./media/characters/mactarian/female.svg",
  23035. extra: 2662/2569,
  23036. bottom: 73/2736
  23037. }
  23038. },
  23039. male: {
  23040. height: math.unit(23.8, "m"),
  23041. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23042. name: "Male",
  23043. image: {
  23044. source: "./media/characters/mactarian/male.svg",
  23045. extra: 2673/2600,
  23046. bottom: 76/2750
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Macro",
  23053. height: math.unit(23.8, "meters"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23060. {
  23061. female: {
  23062. height: math.unit(19.3, "m"),
  23063. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  23064. name: "Female",
  23065. image: {
  23066. source: "./media/characters/umok/female.svg",
  23067. extra: 2186/2078,
  23068. bottom: 87/2277
  23069. }
  23070. },
  23071. male: {
  23072. height: math.unit(19.5, "m"),
  23073. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  23074. name: "Male",
  23075. image: {
  23076. source: "./media/characters/umok/male.svg",
  23077. extra: 2233/2140,
  23078. bottom: 24.4/2258
  23079. }
  23080. },
  23081. },
  23082. [
  23083. {
  23084. name: "Macro",
  23085. height: math.unit(19.3, "meters"),
  23086. default: true
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23092. {
  23093. female: {
  23094. height: math.unit(26.15, "m"),
  23095. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  23096. name: "Female",
  23097. image: {
  23098. source: "./media/characters/joraxian/female.svg",
  23099. extra: 2943/2831,
  23100. bottom: 27/2972
  23101. }
  23102. },
  23103. male: {
  23104. height: math.unit(25.4, "m"),
  23105. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23106. name: "Male",
  23107. image: {
  23108. source: "./media/characters/joraxian/male.svg",
  23109. extra: 2835/2741,
  23110. bottom: 27/2862
  23111. }
  23112. },
  23113. },
  23114. [
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(26.15, "meters"),
  23118. default: true
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23124. {
  23125. female: {
  23126. height: math.unit(21.6, "m"),
  23127. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23128. name: "Female",
  23129. image: {
  23130. source: "./media/characters/sthara/female.svg",
  23131. extra: 2516/2347,
  23132. bottom: 21.5/2537
  23133. }
  23134. },
  23135. male: {
  23136. height: math.unit(24, "m"),
  23137. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23138. name: "Male",
  23139. image: {
  23140. source: "./media/characters/sthara/male.svg",
  23141. extra: 2732/2607,
  23142. bottom: 23/2732
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Macro",
  23149. height: math.unit(21.6, "meters"),
  23150. default: true
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23156. {
  23157. front: {
  23158. height: math.unit(6 + 4/12, "feet"),
  23159. weight: math.unit(175, "lb"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/luka-bryzant/front.svg",
  23163. extra: 311/289,
  23164. bottom: 4/315
  23165. }
  23166. },
  23167. back: {
  23168. height: math.unit(6 + 4/12, "feet"),
  23169. weight: math.unit(175, "lb"),
  23170. name: "Back",
  23171. image: {
  23172. source: "./media/characters/luka-bryzant/back.svg",
  23173. extra: 311/289,
  23174. bottom: 3.8/313.7
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Micro",
  23181. height: math.unit(10, "inches")
  23182. },
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(6 + 4/12, "feet"),
  23186. default: true
  23187. },
  23188. {
  23189. name: "Large",
  23190. height: math.unit(12, "feet")
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(5 + 7/12, "feet"),
  23199. weight: math.unit(185, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/aman-aquila/front.svg",
  23203. extra: 1013/976,
  23204. bottom: 45.6/1057
  23205. }
  23206. },
  23207. side: {
  23208. height: math.unit(5 + 7/12, "feet"),
  23209. weight: math.unit(185, "lb"),
  23210. name: "Side",
  23211. image: {
  23212. source: "./media/characters/aman-aquila/side.svg",
  23213. extra: 1054/1011,
  23214. bottom: 15/1070
  23215. }
  23216. },
  23217. back: {
  23218. height: math.unit(5 + 7/12, "feet"),
  23219. weight: math.unit(185, "lb"),
  23220. name: "Back",
  23221. image: {
  23222. source: "./media/characters/aman-aquila/back.svg",
  23223. extra: 1026/970,
  23224. bottom: 12/1039
  23225. }
  23226. },
  23227. head: {
  23228. height: math.unit(1.211, "feet"),
  23229. name: "Head",
  23230. image: {
  23231. source: "./media/characters/aman-aquila/head.svg",
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Minimicro",
  23238. height: math.unit(0.057, "inches")
  23239. },
  23240. {
  23241. name: "Micro",
  23242. height: math.unit(7, "inches")
  23243. },
  23244. {
  23245. name: "Mini",
  23246. height: math.unit(3 + 7/12, "feet")
  23247. },
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(5 + 7/12, "feet"),
  23251. default: true
  23252. },
  23253. {
  23254. name: "Macro",
  23255. height: math.unit(157 + 7/12, "feet")
  23256. },
  23257. {
  23258. name: "Megamacro",
  23259. height: math.unit(1557 + 7/12, "feet")
  23260. },
  23261. {
  23262. name: "Gigamacro",
  23263. height: math.unit(15557 + 7/12, "feet")
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(3 + 2/12, "inches"),
  23272. weight: math.unit(0.3, "ounces"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/hiphae/front.svg",
  23276. extra: 1931/1683,
  23277. bottom: 24/1955
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Normal",
  23284. height: math.unit(3 + 1/2, "inches"),
  23285. default: true
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23291. {
  23292. front: {
  23293. height: math.unit(5 + 10/12, "feet"),
  23294. weight: math.unit(165, "lb"),
  23295. name: "Front",
  23296. image: {
  23297. source: "./media/characters/nicky/front.svg",
  23298. extra: 3144/2886,
  23299. bottom: 45.6/3192
  23300. }
  23301. },
  23302. back: {
  23303. height: math.unit(5 + 10/12, "feet"),
  23304. weight: math.unit(165, "lb"),
  23305. name: "Back",
  23306. image: {
  23307. source: "./media/characters/nicky/back.svg",
  23308. extra: 3055/2804,
  23309. bottom: 28.4/3087
  23310. }
  23311. },
  23312. frontclothed: {
  23313. height: math.unit(5 + 10/12, "feet"),
  23314. weight: math.unit(165, "lb"),
  23315. name: "Front-clothed",
  23316. image: {
  23317. source: "./media/characters/nicky/front-clothed.svg",
  23318. extra: 3184.9/2926.9,
  23319. bottom: 86.5/3239.9
  23320. }
  23321. },
  23322. foot: {
  23323. height: math.unit(1.16, "feet"),
  23324. name: "Foot",
  23325. image: {
  23326. source: "./media/characters/nicky/foot.svg"
  23327. }
  23328. },
  23329. feet: {
  23330. height: math.unit(1.34, "feet"),
  23331. name: "Feet",
  23332. image: {
  23333. source: "./media/characters/nicky/feet.svg"
  23334. }
  23335. },
  23336. maw: {
  23337. height: math.unit(0.9, "feet"),
  23338. name: "Maw",
  23339. image: {
  23340. source: "./media/characters/nicky/maw.svg"
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(5 + 10/12, "feet"),
  23348. default: true
  23349. },
  23350. {
  23351. name: "Macro",
  23352. height: math.unit(60, "feet")
  23353. },
  23354. {
  23355. name: "Megamacro",
  23356. height: math.unit(1, "mile")
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23362. {
  23363. side: {
  23364. height: math.unit(10, "feet"),
  23365. weight: math.unit(600, "lb"),
  23366. name: "Side",
  23367. image: {
  23368. source: "./media/characters/blair/side.svg",
  23369. bottom: 16.6/475,
  23370. extra: 458/431
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Micro",
  23377. height: math.unit(8, "inches")
  23378. },
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(10, "feet"),
  23382. default: true
  23383. },
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(180, "feet")
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(5 + 4/12, "feet"),
  23395. weight: math.unit(125, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/fisher/front.svg",
  23399. extra: 444/390,
  23400. bottom: 2/444.8
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Micro",
  23407. height: math.unit(4, "inches")
  23408. },
  23409. {
  23410. name: "Normal",
  23411. height: math.unit(5 + 4/12, "feet"),
  23412. default: true
  23413. },
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(100, "feet")
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(6.71, "feet"),
  23425. weight: math.unit(200, "lb"),
  23426. capacity: math.unit(1000000, "people"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/gliss/front.svg",
  23430. extra: 2347/2231,
  23431. bottom: 113/2462
  23432. }
  23433. },
  23434. hammerspaceSize: {
  23435. height: math.unit(6.71*717, "feet"),
  23436. weight: math.unit(200, "lb"),
  23437. capacity: math.unit(1000000, "people"),
  23438. name: "Hammerspace Size",
  23439. image: {
  23440. source: "./media/characters/gliss/front.svg",
  23441. extra: 2347/2231,
  23442. bottom: 113/2462
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(6.71, "feet"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23456. {
  23457. side: {
  23458. height: math.unit(1.44, "m"),
  23459. weight: math.unit(80, "kg"),
  23460. name: "Side",
  23461. image: {
  23462. source: "./media/characters/dune-anderson/side.svg",
  23463. bottom: 49/1426
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Wolf-sized",
  23470. height: math.unit(1.44, "meters")
  23471. },
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(5.05, "meters"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Big",
  23479. height: math.unit(14.4, "meters")
  23480. },
  23481. {
  23482. name: "Huge",
  23483. height: math.unit(144, "meters")
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(7, "feet"),
  23492. weight: math.unit(425, "lb"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/hind/front.svg",
  23496. extra: 2091/1860,
  23497. bottom: 129/2220
  23498. }
  23499. },
  23500. back: {
  23501. height: math.unit(7, "feet"),
  23502. weight: math.unit(425, "lb"),
  23503. name: "Back",
  23504. image: {
  23505. source: "./media/characters/hind/back.svg",
  23506. extra: 2091/1860,
  23507. bottom: 24.6/2309
  23508. }
  23509. },
  23510. tail: {
  23511. height: math.unit(2.8, "feet"),
  23512. name: "Tail",
  23513. image: {
  23514. source: "./media/characters/hind/tail.svg"
  23515. }
  23516. },
  23517. head: {
  23518. height: math.unit(2.55, "feet"),
  23519. name: "Head",
  23520. image: {
  23521. source: "./media/characters/hind/head.svg"
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "XS",
  23528. height: math.unit(0.7, "feet")
  23529. },
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(7, "feet"),
  23533. default: true
  23534. },
  23535. {
  23536. name: "XL",
  23537. height: math.unit(70, "feet")
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23543. {
  23544. front: {
  23545. height: math.unit(6, "feet"),
  23546. weight: math.unit(150, "lb"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/dylan-skaven/front.svg",
  23550. extra: 2318/2063,
  23551. bottom: 93.4/2410
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Nano",
  23558. height: math.unit(1, "mm")
  23559. },
  23560. {
  23561. name: "Micro",
  23562. height: math.unit(1, "cm")
  23563. },
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(2.1, "meters"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(7 + 5/12, "feet"),
  23576. weight: math.unit(357, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/solex-draconov/front.svg",
  23580. extra: 1993/1865,
  23581. bottom: 117/2111
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Natural Height",
  23588. height: math.unit(7 + 5/12, "feet"),
  23589. default: true
  23590. },
  23591. {
  23592. name: "Macro",
  23593. height: math.unit(350, "feet")
  23594. },
  23595. {
  23596. name: "Macro+",
  23597. height: math.unit(1000, "feet")
  23598. },
  23599. {
  23600. name: "Megamacro",
  23601. height: math.unit(20, "km")
  23602. },
  23603. {
  23604. name: "Megamacro+",
  23605. height: math.unit(1000, "km")
  23606. },
  23607. {
  23608. name: "Gigamacro",
  23609. height: math.unit(2.5, "Gm")
  23610. },
  23611. {
  23612. name: "Teramacro",
  23613. height: math.unit(15, "Tm")
  23614. },
  23615. {
  23616. name: "Galactic",
  23617. height: math.unit(30, "Zm")
  23618. },
  23619. {
  23620. name: "Universal",
  23621. height: math.unit(21000, "Ym")
  23622. },
  23623. {
  23624. name: "Omniversal",
  23625. height: math.unit(9.861e50, "Ym")
  23626. },
  23627. {
  23628. name: "Existential",
  23629. height: math.unit(1e300, "meters")
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23635. {
  23636. side: {
  23637. height: math.unit(25, "feet"),
  23638. weight: math.unit(90000, "lb"),
  23639. name: "Side",
  23640. image: {
  23641. source: "./media/characters/mandarax/side.svg",
  23642. extra: 614/332,
  23643. bottom: 55/630
  23644. }
  23645. },
  23646. head: {
  23647. height: math.unit(11.4, "feet"),
  23648. name: "Head",
  23649. image: {
  23650. source: "./media/characters/mandarax/head.svg"
  23651. }
  23652. },
  23653. belly: {
  23654. height: math.unit(33, "feet"),
  23655. name: "Belly",
  23656. capacity: math.unit(500, "people"),
  23657. image: {
  23658. source: "./media/characters/mandarax/belly.svg"
  23659. }
  23660. },
  23661. dick: {
  23662. height: math.unit(8.46, "feet"),
  23663. name: "Dick",
  23664. image: {
  23665. source: "./media/characters/mandarax/dick.svg"
  23666. }
  23667. },
  23668. top: {
  23669. height: math.unit(28, "meters"),
  23670. name: "Top",
  23671. image: {
  23672. source: "./media/characters/mandarax/top.svg"
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(25, "feet"),
  23680. default: true
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(5, "feet"),
  23689. weight: math.unit(90, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/pixil/front.svg",
  23693. extra: 2000/1618,
  23694. bottom: 12.3/2011
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(5, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Megamacro",
  23706. height: math.unit(10, "miles"),
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(7 + 2/12, "feet"),
  23715. weight: math.unit(200, "lb"),
  23716. name: "Front",
  23717. image: {
  23718. source: "./media/characters/angel/front.svg",
  23719. extra: 1830/1737,
  23720. bottom: 22.6/1854,
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(7 + 2/12, "feet"),
  23728. default: true
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(1000, "feet")
  23733. },
  23734. {
  23735. name: "Megamacro",
  23736. height: math.unit(2, "miles")
  23737. },
  23738. {
  23739. name: "Gigamacro",
  23740. height: math.unit(20, "earths")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(5, "feet"),
  23749. weight: math.unit(180, "lb"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/mekana/front.svg",
  23753. extra: 1671/1605,
  23754. bottom: 3.5/1691
  23755. }
  23756. },
  23757. side: {
  23758. height: math.unit(5, "feet"),
  23759. weight: math.unit(180, "lb"),
  23760. name: "Side",
  23761. image: {
  23762. source: "./media/characters/mekana/side.svg",
  23763. extra: 1671/1605,
  23764. bottom: 3.5/1691
  23765. }
  23766. },
  23767. back: {
  23768. height: math.unit(5, "feet"),
  23769. weight: math.unit(180, "lb"),
  23770. name: "Back",
  23771. image: {
  23772. source: "./media/characters/mekana/back.svg",
  23773. extra: 1671/1605,
  23774. bottom: 3.5/1691
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Normal",
  23781. height: math.unit(5, "feet"),
  23782. default: true
  23783. },
  23784. ]
  23785. ))
  23786. characterMakers.push(() => makeCharacter(
  23787. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23788. {
  23789. front: {
  23790. height: math.unit(4 + 6/12, "feet"),
  23791. weight: math.unit(80, "lb"),
  23792. name: "Front",
  23793. image: {
  23794. source: "./media/characters/pixie/front.svg",
  23795. extra: 1924/1825,
  23796. bottom: 22.4/1946
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(4 + 6/12, "feet"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(40, "feet")
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(2.1, "meters"),
  23817. weight: math.unit(200, "lb"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/the-lascivious/front.svg",
  23821. extra: 1/0.893,
  23822. bottom: 3.5/573.7
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Human Scale",
  23829. height: math.unit(2.1, "meters")
  23830. },
  23831. {
  23832. name: "Wolxi Scale",
  23833. height: math.unit(46.2, "m"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Boinker of Buildings",
  23838. height: math.unit(10, "km")
  23839. },
  23840. {
  23841. name: "Shagger of Skyscrapers",
  23842. height: math.unit(40, "km")
  23843. },
  23844. {
  23845. name: "Banger of Boroughs",
  23846. height: math.unit(4000, "km")
  23847. },
  23848. {
  23849. name: "Screwer of States",
  23850. height: math.unit(100000, "km")
  23851. },
  23852. {
  23853. name: "Pounder of Planets",
  23854. height: math.unit(2000000, "km")
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(6, "feet"),
  23863. weight: math.unit(150, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/aj/front.svg",
  23867. extra: 2039/1562,
  23868. bottom: 40/2079
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(11 + 6/12, "feet"),
  23876. default: true
  23877. },
  23878. {
  23879. name: "Megamacro",
  23880. height: math.unit(60, "megameters")
  23881. },
  23882. ]
  23883. ))
  23884. //characters
  23885. function makeCharacters() {
  23886. const results = [];
  23887. characterMakers.forEach(character => {
  23888. results.push(character());
  23889. });
  23890. return results;
  23891. }