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.
 
 
 

55000 wiersze
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. }
  2083. //species
  2084. function getSpeciesInfo(speciesList) {
  2085. let result = new Set();
  2086. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2087. result.add(entry)
  2088. });
  2089. return Array.from(result);
  2090. };
  2091. function getSpeciesInfoHelper(species) {
  2092. if (!speciesData[species]) {
  2093. console.warn(species + " doesn't exist");
  2094. return [];
  2095. }
  2096. if (speciesData[species].parents) {
  2097. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2098. } else {
  2099. return [species];
  2100. }
  2101. }
  2102. characterMakers.push(() => makeCharacter(
  2103. {
  2104. name: "Fen",
  2105. species: ["crux"],
  2106. description: {
  2107. title: "Bio",
  2108. text: "Very furry. Sheds on everything."
  2109. },
  2110. tags: [
  2111. "anthro",
  2112. "goo"
  2113. ]
  2114. },
  2115. {
  2116. front: {
  2117. height: math.unit(12, "feet"),
  2118. weight: math.unit(2400, "lb"),
  2119. name: "Front",
  2120. image: {
  2121. source: "./media/characters/fen/front.svg",
  2122. extra: 1804/1562,
  2123. bottom: 205/2009
  2124. },
  2125. extraAttributes: {
  2126. pawSize: {
  2127. name: "Paw Size",
  2128. power: 2,
  2129. type: "area",
  2130. base: math.unit(0.35, "m^2")
  2131. }
  2132. }
  2133. },
  2134. diving: {
  2135. height: math.unit(4.9, "meters"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Diving",
  2138. image: {
  2139. source: "./media/characters/fen/diving.svg"
  2140. }
  2141. },
  2142. sleeby: {
  2143. height: math.unit(3.45, "meters"),
  2144. weight: math.unit(2400, "lb"),
  2145. name: "Sleeby",
  2146. image: {
  2147. source: "./media/characters/fen/sleeby.svg"
  2148. }
  2149. },
  2150. goo: {
  2151. height: math.unit(12, "feet"),
  2152. weight: math.unit(3600, "lb"),
  2153. volume: math.unit(1000, "liters"),
  2154. preyCapacity: math.unit(6, "people"),
  2155. name: "Goo",
  2156. image: {
  2157. source: "./media/characters/fen/goo.svg",
  2158. extra: 1307/1071,
  2159. bottom: 134/1441
  2160. }
  2161. },
  2162. gooNsfw: {
  2163. height: math.unit(12, "feet"),
  2164. weight: math.unit(3750, "lb"),
  2165. volume: math.unit(1000, "liters"),
  2166. preyCapacity: math.unit(6, "people"),
  2167. name: "Goo (NSFW)",
  2168. image: {
  2169. source: "./media/characters/fen/goo-nsfw.svg",
  2170. extra: 1875/1734,
  2171. bottom: 122/1997
  2172. }
  2173. },
  2174. maw: {
  2175. height: math.unit(5.03, "feet"),
  2176. name: "Maw",
  2177. image: {
  2178. source: "./media/characters/fen/maw.svg"
  2179. }
  2180. },
  2181. gooCeiling: {
  2182. height: math.unit(6.6, "feet"),
  2183. weight: math.unit(3000, "lb"),
  2184. volume: math.unit(1000, "liters"),
  2185. preyCapacity: math.unit(6, "people"),
  2186. name: "Goo (Ceiling)",
  2187. image: {
  2188. source: "./media/characters/fen/goo-ceiling.svg"
  2189. }
  2190. },
  2191. paw: {
  2192. height: math.unit(3.77, "feet"),
  2193. name: "Paw",
  2194. image: {
  2195. source: "./media/characters/fen/paw.svg"
  2196. },
  2197. extraAttributes: {
  2198. "toeSize": {
  2199. name: "Toe Size",
  2200. power: 2,
  2201. type: "area",
  2202. base: math.unit(0.02875, "m^2")
  2203. },
  2204. "pawSize": {
  2205. name: "Paw Size",
  2206. power: 2,
  2207. type: "area",
  2208. base: math.unit(0.378, "m^2")
  2209. },
  2210. }
  2211. },
  2212. tail: {
  2213. height: math.unit(12.1, "feet"),
  2214. name: "Tail",
  2215. image: {
  2216. source: "./media/characters/fen/tail.svg"
  2217. }
  2218. },
  2219. tailFull: {
  2220. height: math.unit(12.1, "feet"),
  2221. name: "Full Tail",
  2222. image: {
  2223. source: "./media/characters/fen/tail-full.svg"
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(12, "feet"),
  2228. weight: math.unit(2400, "lb"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/fen/back.svg",
  2232. },
  2233. info: {
  2234. description: {
  2235. mode: "append",
  2236. text: "\n\nHe is not currently looking at you."
  2237. }
  2238. }
  2239. },
  2240. full: {
  2241. height: math.unit(1.85, "meter"),
  2242. weight: math.unit(3200, "lb"),
  2243. name: "Full",
  2244. image: {
  2245. source: "./media/characters/fen/full.svg",
  2246. extra: 1133/859,
  2247. bottom: 145/1278
  2248. },
  2249. info: {
  2250. description: {
  2251. mode: "append",
  2252. text: "\n\nMunch."
  2253. }
  2254. }
  2255. },
  2256. gooLounging: {
  2257. height: math.unit(4.53, "feet"),
  2258. weight: math.unit(3000, "lb"),
  2259. preyCapacity: math.unit(6, "people"),
  2260. name: "Goo (Lounging)",
  2261. image: {
  2262. source: "./media/characters/fen/goo-lounging.svg",
  2263. bottom: 116 / 613
  2264. }
  2265. },
  2266. lounging: {
  2267. height: math.unit(10.52, "feet"),
  2268. weight: math.unit(2400, "lb"),
  2269. name: "Lounging",
  2270. image: {
  2271. source: "./media/characters/fen/lounging.svg"
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Small",
  2278. height: math.unit(2.2428, "meter")
  2279. },
  2280. {
  2281. name: "Normal",
  2282. height: math.unit(12, "feet"),
  2283. default: true,
  2284. },
  2285. {
  2286. name: "Big",
  2287. height: math.unit(20, "feet")
  2288. },
  2289. {
  2290. name: "Minimacro",
  2291. height: math.unit(40, "feet"),
  2292. info: {
  2293. description: {
  2294. mode: "append",
  2295. text: "\n\nTOO DAMN BIG"
  2296. }
  2297. }
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(100, "feet"),
  2302. info: {
  2303. description: {
  2304. mode: "append",
  2305. text: "\n\nTOO DAMN BIG"
  2306. }
  2307. }
  2308. },
  2309. {
  2310. name: "Megamacro",
  2311. height: math.unit(2, "miles")
  2312. },
  2313. {
  2314. name: "Gigamacro",
  2315. height: math.unit(10, "earths")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(183, "cm"),
  2324. weight: math.unit(80, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/sofia-fluttertail/front.svg",
  2328. bottom: 0.01,
  2329. extra: 2154 / 2081
  2330. }
  2331. },
  2332. frontAlt: {
  2333. height: math.unit(183, "cm"),
  2334. weight: math.unit(80, "kg"),
  2335. name: "Front (alt)",
  2336. image: {
  2337. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2338. }
  2339. },
  2340. back: {
  2341. height: math.unit(183, "cm"),
  2342. weight: math.unit(80, "kg"),
  2343. name: "Back",
  2344. image: {
  2345. source: "./media/characters/sofia-fluttertail/back.svg"
  2346. }
  2347. },
  2348. kneeling: {
  2349. height: math.unit(125, "cm"),
  2350. weight: math.unit(80, "kg"),
  2351. name: "Kneeling",
  2352. image: {
  2353. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2354. extra: 1033 / 977,
  2355. bottom: 23.7 / 1057
  2356. }
  2357. },
  2358. maw: {
  2359. height: math.unit(183 / 5, "cm"),
  2360. name: "Maw",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/maw.svg"
  2363. }
  2364. },
  2365. mawcloseup: {
  2366. height: math.unit(183 / 5 * 0.41, "cm"),
  2367. name: "Maw (Closeup)",
  2368. image: {
  2369. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2370. }
  2371. },
  2372. paws: {
  2373. height: math.unit(1.17, "feet"),
  2374. name: "Paws",
  2375. image: {
  2376. source: "./media/characters/sofia-fluttertail/paws.svg",
  2377. extra: 851 / 851,
  2378. bottom: 17 / 868
  2379. }
  2380. },
  2381. },
  2382. [
  2383. {
  2384. name: "Normal",
  2385. height: math.unit(1.83, "meter")
  2386. },
  2387. {
  2388. name: "Size Thief",
  2389. height: math.unit(18, "feet")
  2390. },
  2391. {
  2392. name: "50 Foot Collie",
  2393. height: math.unit(50, "feet")
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(96, "feet"),
  2398. default: true
  2399. },
  2400. {
  2401. name: "Megamerger",
  2402. height: math.unit(650, "feet")
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(7, "feet"),
  2411. weight: math.unit(100, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/march/front.svg",
  2415. extra: 1992/1851,
  2416. bottom: 39/2031
  2417. }
  2418. },
  2419. foot: {
  2420. height: math.unit(0.9, "feet"),
  2421. name: "Foot",
  2422. image: {
  2423. source: "./media/characters/march/foot.svg"
  2424. }
  2425. },
  2426. },
  2427. [
  2428. {
  2429. name: "Normal",
  2430. height: math.unit(7.9, "feet")
  2431. },
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(220, "meters")
  2435. },
  2436. {
  2437. name: "Megamacro",
  2438. height: math.unit(2.98, "km"),
  2439. default: true
  2440. },
  2441. {
  2442. name: "Gigamacro",
  2443. height: math.unit(15963, "km")
  2444. },
  2445. {
  2446. name: "Teramacro",
  2447. height: math.unit(2980000000, "km")
  2448. },
  2449. {
  2450. name: "Examacro",
  2451. height: math.unit(250, "parsecs")
  2452. },
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2457. {
  2458. front: {
  2459. height: math.unit(6, "feet"),
  2460. weight: math.unit(60, "kg"),
  2461. name: "Front",
  2462. image: {
  2463. source: "./media/characters/noir/front.svg",
  2464. extra: 1,
  2465. bottom: 0.032
  2466. }
  2467. },
  2468. },
  2469. [
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(6.6, "feet")
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(500, "feet")
  2477. },
  2478. {
  2479. name: "Megamacro",
  2480. height: math.unit(2.5, "km"),
  2481. default: true
  2482. },
  2483. {
  2484. name: "Gigamacro",
  2485. height: math.unit(22500, "km")
  2486. },
  2487. {
  2488. name: "Teramacro",
  2489. height: math.unit(2500000000, "km")
  2490. },
  2491. {
  2492. name: "Examacro",
  2493. height: math.unit(200, "parsecs")
  2494. },
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(7, "feet"),
  2502. weight: math.unit(100, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/okuri/front.svg",
  2506. extra: 739/665,
  2507. bottom: 39/778
  2508. }
  2509. },
  2510. back: {
  2511. height: math.unit(7, "feet"),
  2512. weight: math.unit(100, "kg"),
  2513. name: "Back",
  2514. image: {
  2515. source: "./media/characters/okuri/back.svg",
  2516. extra: 734/653,
  2517. bottom: 13/747
  2518. }
  2519. },
  2520. sitting: {
  2521. height: math.unit(2.95, "feet"),
  2522. weight: math.unit(100, "kg"),
  2523. name: "Sitting",
  2524. image: {
  2525. source: "./media/characters/okuri/sitting.svg",
  2526. extra: 370/318,
  2527. bottom: 99/469
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Smallest",
  2534. height: math.unit(5 + 2/12, "feet")
  2535. },
  2536. {
  2537. name: "Smaller",
  2538. height: math.unit(300, "feet")
  2539. },
  2540. {
  2541. name: "Small",
  2542. height: math.unit(1000, "feet")
  2543. },
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(1, "mile")
  2547. },
  2548. {
  2549. name: "Mega Macro (Small)",
  2550. height: math.unit(20, "km")
  2551. },
  2552. {
  2553. name: "Mega Macro (Large)",
  2554. height: math.unit(600, "km")
  2555. },
  2556. {
  2557. name: "Giga Macro",
  2558. height: math.unit(10000, "km")
  2559. },
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(577560, "km"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Large",
  2567. height: math.unit(4, "galaxies")
  2568. },
  2569. {
  2570. name: "Largest",
  2571. height: math.unit(15, "multiverses")
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2577. {
  2578. front: {
  2579. height: math.unit(7, "feet"),
  2580. weight: math.unit(100, "kg"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/manny/front.svg",
  2584. extra: 1,
  2585. bottom: 0.06
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(7, "feet"),
  2590. weight: math.unit(100, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/manny/back.svg",
  2594. extra: 1,
  2595. bottom: 0.014
  2596. }
  2597. },
  2598. },
  2599. [
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(7, "feet"),
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(78, "feet"),
  2607. default: true
  2608. },
  2609. {
  2610. name: "Macro+",
  2611. height: math.unit(300, "meters")
  2612. },
  2613. {
  2614. name: "Macro++",
  2615. height: math.unit(2400, "meters")
  2616. },
  2617. {
  2618. name: "Megamacro",
  2619. height: math.unit(5167, "meters")
  2620. },
  2621. {
  2622. name: "Gigamacro",
  2623. height: math.unit(41769, "miles")
  2624. },
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2629. {
  2630. front: {
  2631. height: math.unit(7, "feet"),
  2632. weight: math.unit(100, "kg"),
  2633. name: "Front",
  2634. image: {
  2635. source: "./media/characters/adake/front-1.svg"
  2636. }
  2637. },
  2638. frontAlt: {
  2639. height: math.unit(7, "feet"),
  2640. weight: math.unit(100, "kg"),
  2641. name: "Front (Alt)",
  2642. image: {
  2643. source: "./media/characters/adake/front-2.svg",
  2644. extra: 1,
  2645. bottom: 0.01
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(7, "feet"),
  2650. weight: math.unit(100, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/adake/back.svg",
  2654. }
  2655. },
  2656. kneel: {
  2657. height: math.unit(5.385, "feet"),
  2658. weight: math.unit(100, "kg"),
  2659. name: "Kneeling",
  2660. image: {
  2661. source: "./media/characters/adake/kneel.svg",
  2662. bottom: 0.052
  2663. }
  2664. },
  2665. },
  2666. [
  2667. {
  2668. name: "Normal",
  2669. height: math.unit(7, "feet"),
  2670. },
  2671. {
  2672. name: "Macro",
  2673. height: math.unit(78, "feet"),
  2674. default: true
  2675. },
  2676. {
  2677. name: "Macro+",
  2678. height: math.unit(300, "meters")
  2679. },
  2680. {
  2681. name: "Macro++",
  2682. height: math.unit(2400, "meters")
  2683. },
  2684. {
  2685. name: "Megamacro",
  2686. height: math.unit(5167, "meters")
  2687. },
  2688. {
  2689. name: "Gigamacro",
  2690. height: math.unit(41769, "miles")
  2691. },
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(1.65, "meters"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/elijah/front.svg",
  2703. extra: 858 / 830,
  2704. bottom: 95.5 / 953.8559
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(1.65, "meters"),
  2709. weight: math.unit(50, "kg"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/elijah/back.svg",
  2713. extra: 895 / 850,
  2714. bottom: 5.3 / 897.956
  2715. }
  2716. },
  2717. frontNsfw: {
  2718. height: math.unit(1.65, "meters"),
  2719. weight: math.unit(50, "kg"),
  2720. name: "Front (NSFW)",
  2721. image: {
  2722. source: "./media/characters/elijah/front-nsfw.svg",
  2723. extra: 858 / 830,
  2724. bottom: 95.5 / 953.8559
  2725. }
  2726. },
  2727. backNsfw: {
  2728. height: math.unit(1.65, "meters"),
  2729. weight: math.unit(50, "kg"),
  2730. name: "Back (NSFW)",
  2731. image: {
  2732. source: "./media/characters/elijah/back-nsfw.svg",
  2733. extra: 895 / 850,
  2734. bottom: 5.3 / 897.956
  2735. }
  2736. },
  2737. dick: {
  2738. height: math.unit(1, "feet"),
  2739. name: "Dick",
  2740. image: {
  2741. source: "./media/characters/elijah/dick.svg"
  2742. }
  2743. },
  2744. beakOpen: {
  2745. height: math.unit(1.25, "feet"),
  2746. name: "Beak (Open)",
  2747. image: {
  2748. source: "./media/characters/elijah/beak-open.svg"
  2749. }
  2750. },
  2751. beakShut: {
  2752. height: math.unit(1.25, "feet"),
  2753. name: "Beak (Shut)",
  2754. image: {
  2755. source: "./media/characters/elijah/beak-shut.svg"
  2756. }
  2757. },
  2758. footFlexing: {
  2759. height: math.unit(1.61, "feet"),
  2760. name: "Foot (Flexing)",
  2761. image: {
  2762. source: "./media/characters/elijah/foot-flexing.svg"
  2763. }
  2764. },
  2765. footStepping: {
  2766. height: math.unit(1.44, "feet"),
  2767. name: "Foot (Stepping)",
  2768. image: {
  2769. source: "./media/characters/elijah/foot-stepping.svg"
  2770. }
  2771. },
  2772. plantigradeLeg: {
  2773. height: math.unit(2.34, "feet"),
  2774. name: "Plantigrade Leg",
  2775. image: {
  2776. source: "./media/characters/elijah/plantigrade-leg.svg"
  2777. }
  2778. },
  2779. plantigradeFootLeft: {
  2780. height: math.unit(0.9, "feet"),
  2781. name: "Plantigrade Foot (Left)",
  2782. image: {
  2783. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2784. }
  2785. },
  2786. plantigradeFootRight: {
  2787. height: math.unit(0.9, "feet"),
  2788. name: "Plantigrade Foot (Right)",
  2789. image: {
  2790. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(1.65, "meters")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(55, "meters"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Macro+",
  2806. height: math.unit(105, "meters")
  2807. },
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(7 + 2/12, "feet"),
  2815. weight: math.unit(320, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/rai/front.svg",
  2819. extra: 1802/1696,
  2820. bottom: 68/1870
  2821. }
  2822. },
  2823. frontDressed: {
  2824. height: math.unit(7 + 2/12, "feet"),
  2825. weight: math.unit(320, "kg"),
  2826. name: "Front (Dressed)",
  2827. image: {
  2828. source: "./media/characters/rai/front-dressed.svg",
  2829. extra: 1802/1696,
  2830. bottom: 68/1870
  2831. }
  2832. },
  2833. side: {
  2834. height: math.unit(7 + 2/12, "feet"),
  2835. weight: math.unit(320, "kg"),
  2836. name: "Side",
  2837. image: {
  2838. source: "./media/characters/rai/side.svg",
  2839. extra: 1789/1710,
  2840. bottom: 115/1904
  2841. }
  2842. },
  2843. back: {
  2844. height: math.unit(7 + 2/12, "feet"),
  2845. weight: math.unit(320, "kg"),
  2846. name: "Back",
  2847. image: {
  2848. source: "./media/characters/rai/back.svg",
  2849. extra: 1770/1707,
  2850. bottom: 28/1798
  2851. }
  2852. },
  2853. feral: {
  2854. height: math.unit(9.5, "feet"),
  2855. weight: math.unit(640, "kg"),
  2856. name: "Feral",
  2857. image: {
  2858. source: "./media/characters/rai/feral.svg",
  2859. extra: 945/553,
  2860. bottom: 176/1121
  2861. }
  2862. },
  2863. dragon: {
  2864. height: math.unit(23, "feet"),
  2865. weight: math.unit(50000, "lb"),
  2866. name: "Dragon",
  2867. image: {
  2868. source: "./media/characters/rai/dragon.svg",
  2869. extra: 2498 / 2030,
  2870. bottom: 85.2 / 2584
  2871. }
  2872. },
  2873. maw: {
  2874. height: math.unit(1.69, "feet"),
  2875. name: "Maw",
  2876. image: {
  2877. source: "./media/characters/rai/maw.svg"
  2878. }
  2879. },
  2880. },
  2881. [
  2882. {
  2883. name: "Normal",
  2884. height: math.unit(7 + 2/12, "feet")
  2885. },
  2886. {
  2887. name: "Big",
  2888. height: math.unit(11, "feet")
  2889. },
  2890. {
  2891. name: "Macro",
  2892. height: math.unit(302, "feet"),
  2893. default: true
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2899. {
  2900. frontDressed: {
  2901. height: math.unit(216, "feet"),
  2902. weight: math.unit(7000000, "lb"),
  2903. name: "Front (Dressed)",
  2904. image: {
  2905. source: "./media/characters/jazzy/front-dressed.svg",
  2906. extra: 2738 / 2651,
  2907. bottom: 41.8 / 2786
  2908. }
  2909. },
  2910. backDressed: {
  2911. height: math.unit(216, "feet"),
  2912. weight: math.unit(7000000, "lb"),
  2913. name: "Back (Dressed)",
  2914. image: {
  2915. source: "./media/characters/jazzy/back-dressed.svg",
  2916. extra: 2775 / 2673,
  2917. bottom: 36.8 / 2817
  2918. }
  2919. },
  2920. front: {
  2921. height: math.unit(216, "feet"),
  2922. weight: math.unit(7000000, "lb"),
  2923. name: "Front",
  2924. image: {
  2925. source: "./media/characters/jazzy/front.svg",
  2926. extra: 2738 / 2651,
  2927. bottom: 41.8 / 2786
  2928. }
  2929. },
  2930. back: {
  2931. height: math.unit(216, "feet"),
  2932. weight: math.unit(7000000, "lb"),
  2933. name: "Back",
  2934. image: {
  2935. source: "./media/characters/jazzy/back.svg",
  2936. extra: 2775 / 2673,
  2937. bottom: 36.8 / 2817
  2938. }
  2939. },
  2940. maw: {
  2941. height: math.unit(20, "feet"),
  2942. name: "Maw",
  2943. image: {
  2944. source: "./media/characters/jazzy/maw.svg"
  2945. }
  2946. },
  2947. paws: {
  2948. height: math.unit(27.5, "feet"),
  2949. name: "Paws",
  2950. image: {
  2951. source: "./media/characters/jazzy/paws.svg"
  2952. }
  2953. },
  2954. eye: {
  2955. height: math.unit(4.4, "feet"),
  2956. name: "Eye",
  2957. image: {
  2958. source: "./media/characters/jazzy/eye.svg"
  2959. }
  2960. },
  2961. droneOffense: {
  2962. height: math.unit(9.5, "inches"),
  2963. name: "Drone (Offense)",
  2964. image: {
  2965. source: "./media/characters/jazzy/drone-offense.svg"
  2966. }
  2967. },
  2968. droneRecon: {
  2969. height: math.unit(9.5, "inches"),
  2970. name: "Drone (Recon)",
  2971. image: {
  2972. source: "./media/characters/jazzy/drone-recon.svg"
  2973. }
  2974. },
  2975. droneDefense: {
  2976. height: math.unit(9.5, "inches"),
  2977. name: "Drone (Defense)",
  2978. image: {
  2979. source: "./media/characters/jazzy/drone-defense.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(216, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(9 + 6/12, "feet"),
  2996. weight: math.unit(700, "lb"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/flamm/front.svg",
  3000. extra: 1751/1632,
  3001. bottom: 46/1797
  3002. }
  3003. },
  3004. buff: {
  3005. height: math.unit(9 + 6/12, "feet"),
  3006. weight: math.unit(950, "lb"),
  3007. name: "Buff",
  3008. image: {
  3009. source: "./media/characters/flamm/buff.svg",
  3010. extra: 3018/2874,
  3011. bottom: 221/3239
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(9.5, "feet")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(200, "feet"),
  3023. default: true
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(5 + 3/12, "feet"),
  3032. weight: math.unit(60, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/zephiro/front.svg",
  3036. extra: 1873/1761,
  3037. bottom: 147/2020
  3038. }
  3039. },
  3040. side: {
  3041. height: math.unit(5 + 3/12, "feet"),
  3042. weight: math.unit(60, "kg"),
  3043. name: "Side",
  3044. image: {
  3045. source: "./media/characters/zephiro/side.svg",
  3046. extra: 1929/1827,
  3047. bottom: 65/1994
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(5 + 3/12, "feet"),
  3052. weight: math.unit(60, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/zephiro/back.svg",
  3056. extra: 1926/1816,
  3057. bottom: 41/1967
  3058. }
  3059. },
  3060. hand: {
  3061. height: math.unit(0.68, "feet"),
  3062. name: "Hand",
  3063. image: {
  3064. source: "./media/characters/zephiro/hand.svg"
  3065. }
  3066. },
  3067. paw: {
  3068. height: math.unit(1, "feet"),
  3069. name: "Paw",
  3070. image: {
  3071. source: "./media/characters/zephiro/paw.svg"
  3072. }
  3073. },
  3074. beans: {
  3075. height: math.unit(0.93, "feet"),
  3076. name: "Beans",
  3077. image: {
  3078. source: "./media/characters/zephiro/beans.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Micro",
  3085. height: math.unit(3, "inches")
  3086. },
  3087. {
  3088. name: "Normal",
  3089. height: math.unit(5 + 3 / 12, "feet"),
  3090. default: true
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(118, "feet")
  3095. },
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(5, "feet"),
  3103. weight: math.unit(90, "kg"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/fory/front.svg",
  3107. extra: 2862 / 2674,
  3108. bottom: 180 / 3043.8
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(5, "feet"),
  3113. weight: math.unit(90, "kg"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/fory/back.svg",
  3117. extra: 2962 / 2791,
  3118. bottom: 106 / 3071.8
  3119. }
  3120. },
  3121. foot: {
  3122. height: math.unit(2.14, "feet"),
  3123. name: "Foot",
  3124. image: {
  3125. source: "./media/characters/fory/foot.svg"
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(5, "feet")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(50, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Megamacro",
  3141. height: math.unit(10, "miles")
  3142. },
  3143. {
  3144. name: "Gigamacro",
  3145. height: math.unit(5, "earths")
  3146. },
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(7, "feet"),
  3154. weight: math.unit(90, "kg"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/kurrikage/front.svg",
  3158. extra: 1845/1733,
  3159. bottom: 119/1964
  3160. }
  3161. },
  3162. back: {
  3163. height: math.unit(7, "feet"),
  3164. weight: math.unit(90, "kg"),
  3165. name: "Back",
  3166. image: {
  3167. source: "./media/characters/kurrikage/back.svg",
  3168. extra: 1790/1677,
  3169. bottom: 61/1851
  3170. }
  3171. },
  3172. dressed: {
  3173. height: math.unit(7, "feet"),
  3174. weight: math.unit(90, "kg"),
  3175. name: "Dressed",
  3176. image: {
  3177. source: "./media/characters/kurrikage/dressed.svg",
  3178. extra: 1845/1733,
  3179. bottom: 119/1964
  3180. }
  3181. },
  3182. foot: {
  3183. height: math.unit(1.5, "feet"),
  3184. name: "Foot",
  3185. image: {
  3186. source: "./media/characters/kurrikage/foot.svg"
  3187. }
  3188. },
  3189. staff: {
  3190. height: math.unit(6.7, "feet"),
  3191. name: "Staff",
  3192. image: {
  3193. source: "./media/characters/kurrikage/staff.svg"
  3194. }
  3195. },
  3196. peek: {
  3197. height: math.unit(1.05, "feet"),
  3198. name: "Peeking",
  3199. image: {
  3200. source: "./media/characters/kurrikage/peek.svg",
  3201. bottom: 0.08
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Normal",
  3208. height: math.unit(12, "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Big",
  3213. height: math.unit(20, "feet")
  3214. },
  3215. {
  3216. name: "Macro",
  3217. height: math.unit(500, "feet")
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(20, "miles")
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/shingo/front.svg",
  3234. extra: 1900/1825,
  3235. bottom: 82/1982
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/shingo/side.svg",
  3244. extra: 1930/1865,
  3245. bottom: 16/1946
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(6, "feet"),
  3250. weight: math.unit(75, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/shingo/back.svg",
  3254. extra: 1922/1852,
  3255. bottom: 16/1938
  3256. }
  3257. },
  3258. frontDressed: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(150, "lb"),
  3261. name: "Front-dressed",
  3262. image: {
  3263. source: "./media/characters/shingo/front-dressed.svg",
  3264. extra: 1900/1825,
  3265. bottom: 82/1982
  3266. }
  3267. },
  3268. paw: {
  3269. height: math.unit(1.29, "feet"),
  3270. name: "Paw",
  3271. image: {
  3272. source: "./media/characters/shingo/paw.svg"
  3273. }
  3274. },
  3275. hand: {
  3276. height: math.unit(1.07, "feet"),
  3277. name: "Hand",
  3278. image: {
  3279. source: "./media/characters/shingo/hand.svg"
  3280. }
  3281. },
  3282. frontAlt: {
  3283. height: math.unit(6, "feet"),
  3284. weight: math.unit(75, "kg"),
  3285. name: "Front (Alt)",
  3286. image: {
  3287. source: "./media/characters/shingo/front-alt.svg",
  3288. extra: 3511 / 3338,
  3289. bottom: 0.005
  3290. }
  3291. },
  3292. frontAlt2: {
  3293. height: math.unit(6, "feet"),
  3294. weight: math.unit(75, "kg"),
  3295. name: "Front (Alt 2)",
  3296. image: {
  3297. source: "./media/characters/shingo/front-alt-2.svg",
  3298. extra: 706/681,
  3299. bottom: 11/717
  3300. }
  3301. },
  3302. pawAlt: {
  3303. height: math.unit(1, "feet"),
  3304. name: "Paw (Alt)",
  3305. image: {
  3306. source: "./media/characters/shingo/paw-alt.svg"
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Micro",
  3313. height: math.unit(4, "inches")
  3314. },
  3315. {
  3316. name: "Normal",
  3317. height: math.unit(6, "feet"),
  3318. default: true
  3319. },
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(108, "feet")
  3323. },
  3324. {
  3325. name: "Macro+",
  3326. height: math.unit(1500, "feet")
  3327. },
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3332. {
  3333. side: {
  3334. height: math.unit(6, "feet"),
  3335. weight: math.unit(75, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/aigey/side.svg"
  3339. }
  3340. },
  3341. },
  3342. [
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(200, "feet"),
  3346. default: true
  3347. },
  3348. {
  3349. name: "Megamacro",
  3350. height: math.unit(100, "miles")
  3351. },
  3352. ]
  3353. )
  3354. )
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3357. {
  3358. front: {
  3359. height: math.unit(5 + 5 / 12, "feet"),
  3360. weight: math.unit(75, "kg"),
  3361. name: "Front",
  3362. image: {
  3363. source: "./media/characters/natasha/front.svg",
  3364. extra: 859 / 824,
  3365. bottom: 23 / 879.6
  3366. }
  3367. },
  3368. frontNsfw: {
  3369. height: math.unit(5 + 5 / 12, "feet"),
  3370. weight: math.unit(75, "kg"),
  3371. name: "Front (NSFW)",
  3372. image: {
  3373. source: "./media/characters/natasha/front-nsfw.svg",
  3374. extra: 859 / 824,
  3375. bottom: 23 / 879.6
  3376. }
  3377. },
  3378. frontErect: {
  3379. height: math.unit(5 + 5 / 12, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Front (Erect)",
  3382. image: {
  3383. source: "./media/characters/natasha/front-erect.svg",
  3384. extra: 859 / 824,
  3385. bottom: 23 / 879.6
  3386. }
  3387. },
  3388. back: {
  3389. height: math.unit(5 + 5 / 12, "feet"),
  3390. weight: math.unit(75, "kg"),
  3391. name: "Back",
  3392. image: {
  3393. source: "./media/characters/natasha/back.svg",
  3394. extra: 887.9 / 852.6,
  3395. bottom: 9.7 / 896.4
  3396. }
  3397. },
  3398. backAlt: {
  3399. height: math.unit(5 + 5 / 12, "feet"),
  3400. weight: math.unit(75, "kg"),
  3401. name: "Back (Alt)",
  3402. image: {
  3403. source: "./media/characters/natasha/back-alt.svg",
  3404. extra: 1236.7 / 1192,
  3405. bottom: 22.3 / 1258.2
  3406. }
  3407. },
  3408. dick: {
  3409. height: math.unit(1.772, "feet"),
  3410. name: "Dick",
  3411. image: {
  3412. source: "./media/characters/natasha/dick.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(0.250, "meters"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/natasha/paw.svg"
  3420. },
  3421. extraAttributes: {
  3422. "toeSize": {
  3423. name: "Toe Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.0024, "m^2")
  3427. },
  3428. "padSize": {
  3429. name: "Pad Size",
  3430. power: 2,
  3431. type: "area",
  3432. base: math.unit(0.00889, "m^2")
  3433. },
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.023667, "m^2")
  3439. },
  3440. }
  3441. },
  3442. },
  3443. [
  3444. {
  3445. name: "Shortstack",
  3446. height: math.unit(3, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(5 + 5 / 12, "feet")
  3452. },
  3453. {
  3454. name: "Large",
  3455. height: math.unit(12, "feet")
  3456. },
  3457. {
  3458. name: "Macro",
  3459. height: math.unit(100, "feet")
  3460. },
  3461. {
  3462. name: "Macro+",
  3463. height: math.unit(260, "feet")
  3464. },
  3465. {
  3466. name: "Macro++",
  3467. height: math.unit(1, "mile")
  3468. },
  3469. ]
  3470. ))
  3471. characterMakers.push(() => makeCharacter(
  3472. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3473. {
  3474. front: {
  3475. height: math.unit(6, "feet"),
  3476. weight: math.unit(75, "kg"),
  3477. name: "Front",
  3478. image: {
  3479. source: "./media/characters/malik/front.svg",
  3480. extra: 1750/1561,
  3481. bottom: 80/1830
  3482. },
  3483. extraAttributes: {
  3484. "toeSize": {
  3485. name: "Toe Size",
  3486. power: 2,
  3487. type: "area",
  3488. base: math.unit(0.0159, "m^2")
  3489. },
  3490. "pawSize": {
  3491. name: "Paw Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.09834, "m^2")
  3495. },
  3496. }
  3497. },
  3498. side: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Side",
  3502. image: {
  3503. source: "./media/characters/malik/side.svg",
  3504. extra: 1802/1685,
  3505. bottom: 42/1844
  3506. },
  3507. extraAttributes: {
  3508. "toeSize": {
  3509. name: "Toe Size",
  3510. power: 2,
  3511. type: "area",
  3512. base: math.unit(0.0159, "m^2")
  3513. },
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.09834, "m^2")
  3519. },
  3520. }
  3521. },
  3522. back: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Back",
  3526. image: {
  3527. source: "./media/characters/malik/back.svg",
  3528. extra: 1803/1607,
  3529. bottom: 33/1836
  3530. },
  3531. extraAttributes: {
  3532. "toeSize": {
  3533. name: "Toe Size",
  3534. power: 2,
  3535. type: "area",
  3536. base: math.unit(0.0159, "m^2")
  3537. },
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.09834, "m^2")
  3543. },
  3544. }
  3545. },
  3546. },
  3547. [
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(156, "feet"),
  3551. default: true
  3552. },
  3553. {
  3554. name: "Macro+",
  3555. height: math.unit(1188, "feet")
  3556. },
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(6, "feet"),
  3564. weight: math.unit(75, "kg"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/sefer/front.svg",
  3568. extra: 848 / 659,
  3569. bottom: 28.3 / 876.442
  3570. }
  3571. },
  3572. back: {
  3573. height: math.unit(6, "feet"),
  3574. weight: math.unit(75, "kg"),
  3575. name: "Back",
  3576. image: {
  3577. source: "./media/characters/sefer/back.svg",
  3578. extra: 864 / 695,
  3579. bottom: 10 / 871
  3580. }
  3581. },
  3582. frontDressed: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(75, "kg"),
  3585. name: "Dressed",
  3586. image: {
  3587. source: "./media/characters/sefer/dressed.svg",
  3588. extra: 839 / 653,
  3589. bottom: 37.6 / 878
  3590. }
  3591. },
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(6, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Big",
  3601. height: math.unit(8, "meters")
  3602. },
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3607. {
  3608. body: {
  3609. height: math.unit(2.2428, "meter"),
  3610. weight: math.unit(124.738, "kg"),
  3611. name: "Body",
  3612. image: {
  3613. extra: 1225 / 1050,
  3614. source: "./media/characters/north/front.svg"
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Micro",
  3621. height: math.unit(4, "inches")
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(63, "meters")
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(101, "miles"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3636. {
  3637. angled: {
  3638. height: math.unit(4, "meter"),
  3639. weight: math.unit(150, "kg"),
  3640. name: "Angled",
  3641. image: {
  3642. source: "./media/characters/talan/angled-sfw.svg",
  3643. bottom: 29 / 3734
  3644. }
  3645. },
  3646. angledNsfw: {
  3647. height: math.unit(4, "meter"),
  3648. weight: math.unit(150, "kg"),
  3649. name: "Angled (NSFW)",
  3650. image: {
  3651. source: "./media/characters/talan/angled-nsfw.svg",
  3652. bottom: 29 / 3734
  3653. }
  3654. },
  3655. frontNsfw: {
  3656. height: math.unit(4, "meter"),
  3657. weight: math.unit(150, "kg"),
  3658. name: "Front (NSFW)",
  3659. image: {
  3660. source: "./media/characters/talan/front-nsfw.svg",
  3661. bottom: 29 / 3734
  3662. }
  3663. },
  3664. sideNsfw: {
  3665. height: math.unit(4, "meter"),
  3666. weight: math.unit(150, "kg"),
  3667. name: "Side (NSFW)",
  3668. image: {
  3669. source: "./media/characters/talan/side-nsfw.svg",
  3670. bottom: 29 / 3734
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(4, "meter"),
  3675. weight: math.unit(150, "kg"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/talan/back.svg"
  3679. }
  3680. },
  3681. dickBottom: {
  3682. height: math.unit(0.621, "meter"),
  3683. name: "Dick (Bottom)",
  3684. image: {
  3685. source: "./media/characters/talan/dick-bottom.svg"
  3686. }
  3687. },
  3688. dickTop: {
  3689. height: math.unit(0.621, "meter"),
  3690. name: "Dick (Top)",
  3691. image: {
  3692. source: "./media/characters/talan/dick-top.svg"
  3693. }
  3694. },
  3695. dickSide: {
  3696. height: math.unit(0.305, "meter"),
  3697. name: "Dick (Side)",
  3698. image: {
  3699. source: "./media/characters/talan/dick-side.svg"
  3700. }
  3701. },
  3702. dickFront: {
  3703. height: math.unit(0.305, "meter"),
  3704. name: "Dick (Front)",
  3705. image: {
  3706. source: "./media/characters/talan/dick-front.svg"
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Normal",
  3713. height: math.unit(4, "meters")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(100, "meters")
  3718. },
  3719. {
  3720. name: "Megamacro",
  3721. height: math.unit(2, "miles"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(5000, "miles")
  3727. },
  3728. {
  3729. name: "Teramacro",
  3730. height: math.unit(100, "parsecs")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(90, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/gael'rathus/front.svg"
  3743. }
  3744. },
  3745. frontAlt: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(90, "kg"),
  3748. name: "Front (alt)",
  3749. image: {
  3750. source: "./media/characters/gael'rathus/front-alt.svg"
  3751. }
  3752. },
  3753. frontAlt2: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(90, "kg"),
  3756. name: "Front (alt 2)",
  3757. image: {
  3758. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(9, "feet"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Large",
  3770. height: math.unit(25, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(0.25, "miles")
  3775. },
  3776. {
  3777. name: "Megamacro",
  3778. height: math.unit(10, "miles")
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3784. {
  3785. side: {
  3786. height: math.unit(2, "meter"),
  3787. weight: math.unit(140, "kg"),
  3788. name: "Side",
  3789. image: {
  3790. source: "./media/characters/sosha/side.svg",
  3791. extra: 1170/1006,
  3792. bottom: 94/1264
  3793. }
  3794. },
  3795. maw: {
  3796. height: math.unit(2.87, "feet"),
  3797. name: "Maw",
  3798. image: {
  3799. source: "./media/characters/sosha/maw.svg",
  3800. extra: 966/865,
  3801. bottom: 0/966
  3802. }
  3803. },
  3804. cooch: {
  3805. height: math.unit(5.6, "feet"),
  3806. name: "Cooch",
  3807. image: {
  3808. source: "./media/characters/sosha/cooch.svg"
  3809. }
  3810. },
  3811. },
  3812. [
  3813. {
  3814. name: "Normal",
  3815. height: math.unit(12, "feet"),
  3816. default: true
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3822. {
  3823. side: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(170, "kg"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/runnola/side.svg",
  3829. extra: 741 / 448,
  3830. bottom: 0.05
  3831. }
  3832. },
  3833. },
  3834. [
  3835. {
  3836. name: "Small",
  3837. height: math.unit(3, "feet")
  3838. },
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(5 + 5 / 12, "feet"),
  3842. default: true
  3843. },
  3844. {
  3845. name: "Big",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3852. {
  3853. front: {
  3854. height: math.unit(2, "meter"),
  3855. weight: math.unit(50, "kg"),
  3856. name: "Front",
  3857. image: {
  3858. source: "./media/characters/kurribird/front.svg",
  3859. bottom: 0.015
  3860. }
  3861. },
  3862. frontAlt: {
  3863. height: math.unit(1.5, "meter"),
  3864. weight: math.unit(50, "kg"),
  3865. name: "Front (Alt)",
  3866. image: {
  3867. source: "./media/characters/kurribird/front-alt.svg",
  3868. extra: 1.45
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Normal",
  3875. height: math.unit(7, "feet")
  3876. },
  3877. {
  3878. name: "Big",
  3879. height: math.unit(12, "feet"),
  3880. default: true
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(1500, "feet")
  3885. },
  3886. {
  3887. name: "Megamacro",
  3888. height: math.unit(2, "miles")
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(2, "meter"),
  3897. weight: math.unit(80, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/elbial/front.svg",
  3901. extra: 1643 / 1556,
  3902. bottom: 60.2 / 1696
  3903. }
  3904. },
  3905. side: {
  3906. height: math.unit(2, "meter"),
  3907. weight: math.unit(80, "kg"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/elbial/side.svg",
  3911. extra: 1601/1528,
  3912. bottom: 97/1698
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(2, "meter"),
  3917. weight: math.unit(80, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/elbial/back.svg",
  3921. extra: 1653/1569,
  3922. bottom: 20/1673
  3923. }
  3924. },
  3925. frontDressed: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(80, "kg"),
  3928. name: "Front (Dressed)",
  3929. image: {
  3930. source: "./media/characters/elbial/front-dressed.svg",
  3931. extra: 1638/1569,
  3932. bottom: 70/1708
  3933. }
  3934. },
  3935. genitals: {
  3936. height: math.unit(2 / 3.367, "meter"),
  3937. name: "Genitals",
  3938. image: {
  3939. source: "./media/characters/elbial/genitals.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Large",
  3946. height: math.unit(100, "feet")
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(500, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(10, "miles")
  3956. },
  3957. {
  3958. name: "Gigamacro",
  3959. height: math.unit(25000, "miles")
  3960. },
  3961. {
  3962. name: "Full-Size",
  3963. height: math.unit(8000000, "gigaparsecs")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(60, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/noah/front.svg"
  3976. }
  3977. },
  3978. talons: {
  3979. height: math.unit(0.315, "meter"),
  3980. name: "Talons",
  3981. image: {
  3982. source: "./media/characters/noah/talons.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Large",
  3989. height: math.unit(50, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(750, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(50, "miles")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(100000, "miles")
  4003. },
  4004. {
  4005. name: "Full-Size",
  4006. height: math.unit(3000000000, "miles")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(80, "kg"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/natalya/front.svg"
  4019. }
  4020. },
  4021. back: {
  4022. height: math.unit(2, "meter"),
  4023. weight: math.unit(80, "kg"),
  4024. name: "Back",
  4025. image: {
  4026. source: "./media/characters/natalya/back.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(150, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Megamacro",
  4038. height: math.unit(5, "miles")
  4039. },
  4040. {
  4041. name: "Full-Size",
  4042. height: math.unit(600, "kiloparsecs")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(50, "kg"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/erestrebah/front.svg",
  4055. extra: 1262/1162,
  4056. bottom: 96/1358
  4057. }
  4058. },
  4059. back: {
  4060. height: math.unit(2, "meter"),
  4061. weight: math.unit(50, "kg"),
  4062. name: "Back",
  4063. image: {
  4064. source: "./media/characters/erestrebah/back.svg",
  4065. extra: 1257/1139,
  4066. bottom: 13/1270
  4067. }
  4068. },
  4069. wing: {
  4070. height: math.unit(2, "meter"),
  4071. weight: math.unit(50, "kg"),
  4072. name: "Wing",
  4073. image: {
  4074. source: "./media/characters/erestrebah/wing.svg",
  4075. extra: 1262/1162,
  4076. bottom: 96/1358
  4077. }
  4078. },
  4079. mouth: {
  4080. height: math.unit(0.39, "feet"),
  4081. name: "Mouth",
  4082. image: {
  4083. source: "./media/characters/erestrebah/mouth.svg"
  4084. }
  4085. }
  4086. },
  4087. [
  4088. {
  4089. name: "Normal",
  4090. height: math.unit(10, "feet")
  4091. },
  4092. {
  4093. name: "Large",
  4094. height: math.unit(50, "feet"),
  4095. default: true
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(300, "feet")
  4100. },
  4101. {
  4102. name: "Macro+",
  4103. height: math.unit(750, "feet")
  4104. },
  4105. {
  4106. name: "Megamacro",
  4107. height: math.unit(3, "miles")
  4108. }
  4109. ]
  4110. ))
  4111. characterMakers.push(() => makeCharacter(
  4112. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4113. {
  4114. front: {
  4115. height: math.unit(2, "meter"),
  4116. weight: math.unit(80, "kg"),
  4117. name: "Front",
  4118. image: {
  4119. source: "./media/characters/jennifer/front.svg",
  4120. bottom: 0.11,
  4121. extra: 1.16
  4122. }
  4123. },
  4124. frontAlt: {
  4125. height: math.unit(2, "meter"),
  4126. weight: math.unit(80, "kg"),
  4127. name: "Front (Alt)",
  4128. image: {
  4129. source: "./media/characters/jennifer/front-alt.svg"
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Canon Height",
  4136. height: math.unit(120, "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Macro+",
  4141. height: math.unit(300, "feet")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(20000, "feet")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(50, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/kalista/front.svg",
  4158. extra: 1314/1145,
  4159. bottom: 101/1415
  4160. }
  4161. },
  4162. back: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(50, "kg"),
  4165. name: "Back",
  4166. image: {
  4167. source: "./media/characters/kalista/back.svg",
  4168. extra: 1366 / 1156,
  4169. bottom: 33.9 / 1362.78
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Uncomfortably Small",
  4176. height: math.unit(10, "feet")
  4177. },
  4178. {
  4179. name: "Small",
  4180. height: math.unit(30, "feet")
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(100, "feet"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Macro+",
  4189. height: math.unit(2000, "feet")
  4190. },
  4191. {
  4192. name: "True Form",
  4193. height: math.unit(8924, "miles")
  4194. }
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(2, "meter"),
  4202. weight: math.unit(120, "kg"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/ggv/front.svg"
  4206. }
  4207. },
  4208. side: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(120, "kg"),
  4211. name: "Side",
  4212. image: {
  4213. source: "./media/characters/ggv/side.svg"
  4214. }
  4215. }
  4216. },
  4217. [
  4218. {
  4219. name: "Extremely Puny",
  4220. height: math.unit(9 + 5 / 12, "feet")
  4221. },
  4222. {
  4223. name: "Horribly Small",
  4224. height: math.unit(47.7, "miles"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Reasonably Sized",
  4229. height: math.unit(25000, "parsecs")
  4230. },
  4231. {
  4232. name: "Slightly Uncompressed",
  4233. height: math.unit(7.77e31, "parsecs")
  4234. },
  4235. {
  4236. name: "Omniversal",
  4237. height: math.unit(1e300, "meters")
  4238. },
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(75, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/napalm/front.svg"
  4250. }
  4251. },
  4252. back: {
  4253. height: math.unit(2, "meter"),
  4254. weight: math.unit(75, "lb"),
  4255. name: "Back",
  4256. image: {
  4257. source: "./media/characters/napalm/back.svg"
  4258. }
  4259. }
  4260. },
  4261. [
  4262. {
  4263. name: "Standard",
  4264. height: math.unit(55, "feet"),
  4265. default: true
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(7 + 5 / 6, "feet"),
  4274. weight: math.unit(325, "lb"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/asana/front.svg",
  4278. extra: 1133 / 1060,
  4279. bottom: 15.2 / 1148.6
  4280. }
  4281. },
  4282. back: {
  4283. height: math.unit(7 + 5 / 6, "feet"),
  4284. weight: math.unit(325, "lb"),
  4285. name: "Back",
  4286. image: {
  4287. source: "./media/characters/asana/back.svg",
  4288. extra: 1114 / 1043,
  4289. bottom: 5 / 1120
  4290. }
  4291. },
  4292. dressedDark: {
  4293. height: math.unit(7 + 5 / 6, "feet"),
  4294. weight: math.unit(325, "lb"),
  4295. name: "Dressed (Dark)",
  4296. image: {
  4297. source: "./media/characters/asana/dressed-dark.svg",
  4298. extra: 1133 / 1060,
  4299. bottom: 15.2 / 1148.6
  4300. }
  4301. },
  4302. dressedLight: {
  4303. height: math.unit(7 + 5 / 6, "feet"),
  4304. weight: math.unit(325, "lb"),
  4305. name: "Dressed (Light)",
  4306. image: {
  4307. source: "./media/characters/asana/dressed-light.svg",
  4308. extra: 1133 / 1060,
  4309. bottom: 15.2 / 1148.6
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Standard",
  4316. height: math.unit(7 + 5 / 6, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Large",
  4321. height: math.unit(10, "meters")
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(2500, "meters")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(5e6, "meters")
  4330. },
  4331. {
  4332. name: "Examacro",
  4333. height: math.unit(5e12, "lightyears")
  4334. },
  4335. {
  4336. name: "Max Size",
  4337. height: math.unit(1e31, "lightyears")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(60, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/ebony/front.svg",
  4350. bottom: 0.03,
  4351. extra: 1045 / 810 + 0.03
  4352. }
  4353. },
  4354. side: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(60, "kg"),
  4357. name: "Side",
  4358. image: {
  4359. source: "./media/characters/ebony/side.svg",
  4360. bottom: 0.03,
  4361. extra: 1045 / 810 + 0.03
  4362. }
  4363. },
  4364. back: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(60, "kg"),
  4367. name: "Back",
  4368. image: {
  4369. source: "./media/characters/ebony/back.svg",
  4370. bottom: 0.01,
  4371. extra: 1045 / 810 + 0.01
  4372. }
  4373. },
  4374. },
  4375. [
  4376. // TODO check why I did this lol
  4377. {
  4378. name: "Standard",
  4379. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(200, "feet")
  4385. },
  4386. {
  4387. name: "Gigamacro",
  4388. height: math.unit(13000, "km")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(175, "lb"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/mountain/front.svg",
  4401. extra: 972 / 955,
  4402. bottom: 64 / 1036.6
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(175, "lb"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/mountain/back.svg",
  4411. extra: 970 / 950,
  4412. bottom: 28.25 / 999
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Large",
  4419. height: math.unit(20, "meters")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(300, "meters")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(10000, "km"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Examacro",
  4432. height: math.unit(10e9, "lightyears")
  4433. }
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4438. {
  4439. front: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(500, "lb"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/rick/front.svg"
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(8, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(5, "km")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(8, "feet"),
  4465. weight: math.unit(120, "lb"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/ona/front.svg"
  4469. }
  4470. },
  4471. frontAlt: {
  4472. height: math.unit(8, "feet"),
  4473. weight: math.unit(120, "lb"),
  4474. name: "Front (Alt)",
  4475. image: {
  4476. source: "./media/characters/ona/front-alt.svg"
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(8, "feet"),
  4481. weight: math.unit(120, "lb"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/ona/back.svg"
  4485. }
  4486. },
  4487. foot: {
  4488. height: math.unit(1.1, "feet"),
  4489. name: "Foot",
  4490. image: {
  4491. source: "./media/characters/ona/foot.svg"
  4492. }
  4493. }
  4494. },
  4495. [
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(70, "km"),
  4499. default: true
  4500. },
  4501. {
  4502. name: "Gigamacro",
  4503. height: math.unit(681818, "miles")
  4504. },
  4505. {
  4506. name: "Examacro",
  4507. height: math.unit(3800000, "lightyears")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(12, "feet"),
  4516. weight: math.unit(3000, "lb"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/mech/front.svg",
  4520. extra: 2900 / 2770,
  4521. bottom: 110 / 3010
  4522. }
  4523. },
  4524. back: {
  4525. height: math.unit(12, "feet"),
  4526. weight: math.unit(3000, "lb"),
  4527. name: "Back",
  4528. image: {
  4529. source: "./media/characters/mech/back.svg",
  4530. extra: 3011 / 2890,
  4531. bottom: 94 / 3105
  4532. }
  4533. },
  4534. maw: {
  4535. height: math.unit(3.07, "feet"),
  4536. name: "Maw",
  4537. image: {
  4538. source: "./media/characters/mech/maw.svg"
  4539. }
  4540. },
  4541. head: {
  4542. height: math.unit(3.07, "feet"),
  4543. name: "Head",
  4544. image: {
  4545. source: "./media/characters/mech/head.svg"
  4546. }
  4547. },
  4548. dick: {
  4549. height: math.unit(1.43, "feet"),
  4550. name: "Dick",
  4551. image: {
  4552. source: "./media/characters/mech/dick.svg"
  4553. }
  4554. },
  4555. },
  4556. [
  4557. {
  4558. name: "Normal",
  4559. height: math.unit(12, "feet")
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(300, "feet"),
  4564. default: true
  4565. },
  4566. {
  4567. name: "Macro+",
  4568. height: math.unit(1500, "feet")
  4569. },
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(1.3, "meter"),
  4577. weight: math.unit(30, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/gregory/front.svg",
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(1.3, "meter"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(20, "meter")
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4598. {
  4599. front: {
  4600. height: math.unit(2.8, "meter"),
  4601. weight: math.unit(200, "kg"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/elory/front.svg",
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(2.8, "meter"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(38, "meter")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(470, "feet"),
  4625. weight: math.unit(924, "tons"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/angelpatamon/front.svg",
  4629. }
  4630. }
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(470, "feet"),
  4636. default: true
  4637. },
  4638. {
  4639. name: "Deity Size I",
  4640. height: math.unit(28651.2, "km")
  4641. },
  4642. {
  4643. name: "Deity Size II",
  4644. height: math.unit(171907.2, "km")
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4650. {
  4651. side: {
  4652. height: math.unit(7.2, "meter"),
  4653. weight: math.unit(8.2, "tons"),
  4654. name: "Side",
  4655. image: {
  4656. source: "./media/characters/cryae/side.svg",
  4657. extra: 3500 / 1500
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(7.2, "meter"),
  4665. default: true
  4666. }
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4671. {
  4672. front: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(175, "lb"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/xera/front.svg",
  4678. extra: 2377 / 1972,
  4679. bottom: 75.5 / 2452
  4680. }
  4681. },
  4682. side: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(175, "lb"),
  4685. name: "Side",
  4686. image: {
  4687. source: "./media/characters/xera/side.svg",
  4688. extra: 2345 / 2019,
  4689. bottom: 39.7 / 2384
  4690. }
  4691. },
  4692. back: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(175, "lb"),
  4695. name: "Back",
  4696. image: {
  4697. source: "./media/characters/xera/back.svg",
  4698. extra: 2095 / 1984,
  4699. bottom: 67 / 2166
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Small",
  4706. height: math.unit(10, "feet")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(500, "meters"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Macro+",
  4715. height: math.unit(10, "km")
  4716. },
  4717. {
  4718. name: "Gigamacro",
  4719. height: math.unit(25000, "km")
  4720. },
  4721. {
  4722. name: "Teramacro",
  4723. height: math.unit(3e6, "km")
  4724. }
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(175, "lb"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/nebula/front.svg",
  4736. extra: 2566 / 2362,
  4737. bottom: 81 / 2644
  4738. }
  4739. }
  4740. },
  4741. [
  4742. {
  4743. name: "Small",
  4744. height: math.unit(4.5, "meters")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(1500, "meters"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Megamacro",
  4753. height: math.unit(150, "km")
  4754. },
  4755. {
  4756. name: "Gigamacro",
  4757. height: math.unit(27000, "km")
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(225, "lb"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/abysgar/front.svg",
  4770. extra: 1739/1614,
  4771. bottom: 71/1810
  4772. }
  4773. },
  4774. frontNsfw: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(225, "lb"),
  4777. name: "Front (NSFW)",
  4778. image: {
  4779. source: "./media/characters/abysgar/front-nsfw.svg",
  4780. extra: 1739/1614,
  4781. bottom: 71/1810
  4782. }
  4783. },
  4784. back: {
  4785. height: math.unit(4.6, "feet"),
  4786. weight: math.unit(225, "lb"),
  4787. name: "Back",
  4788. image: {
  4789. source: "./media/characters/abysgar/back.svg",
  4790. extra: 1384/1327,
  4791. bottom: 0/1384
  4792. }
  4793. },
  4794. head: {
  4795. height: math.unit(1.25, "feet"),
  4796. name: "Head",
  4797. image: {
  4798. source: "./media/characters/abysgar/head.svg",
  4799. extra: 669/569,
  4800. bottom: 0/669
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Small",
  4807. height: math.unit(4.5, "meters")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(1250, "meters"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(125, "km")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(26000, "km")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(180, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/yakuz/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Small",
  4839. height: math.unit(5, "meters")
  4840. },
  4841. {
  4842. name: "Macro",
  4843. height: math.unit(1500, "meters"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Megamacro",
  4848. height: math.unit(200, "km")
  4849. },
  4850. {
  4851. name: "Gigamacro",
  4852. height: math.unit(100000, "km")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(175, "lb"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/mirova/front.svg",
  4865. extra: 3334 / 3071,
  4866. bottom: 42 / 3375.6
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Small",
  4873. height: math.unit(5, "meters")
  4874. },
  4875. {
  4876. name: "Macro",
  4877. height: math.unit(900, "meters"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Megamacro",
  4882. height: math.unit(135, "km")
  4883. },
  4884. {
  4885. name: "Gigamacro",
  4886. height: math.unit(20000, "km")
  4887. }
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4892. {
  4893. side: {
  4894. height: math.unit(28.35, "feet"),
  4895. weight: math.unit(99.75, "tons"),
  4896. name: "Side",
  4897. image: {
  4898. source: "./media/characters/asana-mech/side.svg",
  4899. extra: 923 / 699,
  4900. bottom: 50 / 975
  4901. }
  4902. },
  4903. chaingun: {
  4904. height: math.unit(7, "feet"),
  4905. weight: math.unit(2400, "lb"),
  4906. name: "Chaingun",
  4907. image: {
  4908. source: "./media/characters/asana-mech/chaingun.svg"
  4909. }
  4910. },
  4911. laser: {
  4912. height: math.unit(7.12, "feet"),
  4913. weight: math.unit(2000, "lb"),
  4914. name: "Laser",
  4915. image: {
  4916. source: "./media/characters/asana-mech/laser.svg"
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(28.35, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(2500, "feet")
  4929. },
  4930. {
  4931. name: "Megamacro",
  4932. height: math.unit(25, "miles")
  4933. },
  4934. {
  4935. name: "Examacro",
  4936. height: math.unit(6e8, "lightyears")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(5, "meters"),
  4945. weight: math.unit(1000, "kg"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/asche/front.svg",
  4949. extra: 1258 / 1190,
  4950. bottom: 47 / 1305
  4951. }
  4952. },
  4953. frontUnderwear: {
  4954. height: math.unit(5, "meters"),
  4955. weight: math.unit(1000, "kg"),
  4956. name: "Front (Underwear)",
  4957. image: {
  4958. source: "./media/characters/asche/front-underwear.svg",
  4959. extra: 1258 / 1190,
  4960. bottom: 47 / 1305
  4961. }
  4962. },
  4963. frontDressed: {
  4964. height: math.unit(5, "meters"),
  4965. weight: math.unit(1000, "kg"),
  4966. name: "Front (Dressed)",
  4967. image: {
  4968. source: "./media/characters/asche/front-dressed.svg",
  4969. extra: 1258 / 1190,
  4970. bottom: 47 / 1305
  4971. }
  4972. },
  4973. frontArmor: {
  4974. height: math.unit(5, "meters"),
  4975. weight: math.unit(1000, "kg"),
  4976. name: "Front (Armored)",
  4977. image: {
  4978. source: "./media/characters/asche/front-armored.svg",
  4979. extra: 1374 / 1308,
  4980. bottom: 23 / 1397
  4981. }
  4982. },
  4983. mp724: {
  4984. height: math.unit(0.96, "meters"),
  4985. weight: math.unit(38, "kg"),
  4986. name: "H&K MP724",
  4987. image: {
  4988. source: "./media/characters/asche/h&k-mp724.svg"
  4989. }
  4990. },
  4991. side: {
  4992. height: math.unit(5, "meters"),
  4993. weight: math.unit(1000, "kg"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/asche/side.svg",
  4997. extra: 1717 / 1609,
  4998. bottom: 0.005
  4999. }
  5000. },
  5001. back: {
  5002. height: math.unit(5, "meters"),
  5003. weight: math.unit(1000, "kg"),
  5004. name: "Back",
  5005. image: {
  5006. source: "./media/characters/asche/back.svg",
  5007. extra: 1570 / 1501
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "DEFCON 5",
  5014. height: math.unit(5, "meters")
  5015. },
  5016. {
  5017. name: "DEFCON 4",
  5018. height: math.unit(500, "meters"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "DEFCON 3",
  5023. height: math.unit(5, "km")
  5024. },
  5025. {
  5026. name: "DEFCON 2",
  5027. height: math.unit(500, "km")
  5028. },
  5029. {
  5030. name: "DEFCON 1",
  5031. height: math.unit(500000, "km")
  5032. },
  5033. {
  5034. name: "DEFCON 0",
  5035. height: math.unit(3, "gigaparsecs")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(76, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/gale/front.svg"
  5048. }
  5049. },
  5050. frontAlt1: {
  5051. height: math.unit(2, "meters"),
  5052. weight: math.unit(76, "kg"),
  5053. name: "Front (Alt 1)",
  5054. image: {
  5055. source: "./media/characters/gale/front-alt-1.svg"
  5056. }
  5057. },
  5058. frontAlt2: {
  5059. height: math.unit(2, "meters"),
  5060. weight: math.unit(76, "kg"),
  5061. name: "Front (Alt 2)",
  5062. image: {
  5063. source: "./media/characters/gale/front-alt-2.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(7, "feet")
  5071. },
  5072. {
  5073. name: "Macro",
  5074. height: math.unit(150, "feet"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Macro+",
  5079. height: math.unit(300, "feet")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(5 + 10/12, "feet"),
  5088. weight: math.unit(67, "kg"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/draylen/front.svg",
  5092. extra: 832/777,
  5093. bottom: 85/917
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(5 + 10/12, "feet")
  5101. },
  5102. {
  5103. name: "Macro",
  5104. height: math.unit(150, "feet"),
  5105. default: true
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(7 + 9 / 12, "feet"),
  5114. weight: math.unit(379, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/chez/front.svg"
  5118. }
  5119. },
  5120. side: {
  5121. height: math.unit(7 + 9 / 12, "feet"),
  5122. weight: math.unit(379, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/chez/side.svg"
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7 + 9 / 12, "feet"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "God King",
  5137. height: math.unit(9750000, "meters")
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(275, "lbs"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/kaylum/front.svg",
  5150. bottom: 0.01,
  5151. extra: 1166 / 1031
  5152. }
  5153. },
  5154. frontWingless: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(275, "lbs"),
  5157. name: "Front (Wingless)",
  5158. image: {
  5159. source: "./media/characters/kaylum/front-wingless.svg",
  5160. bottom: 0.01,
  5161. extra: 1117 / 1031
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(3.05, "meters")
  5169. },
  5170. {
  5171. name: "Master",
  5172. height: math.unit(5.5, "meters")
  5173. },
  5174. {
  5175. name: "Rampage",
  5176. height: math.unit(19, "meters")
  5177. },
  5178. {
  5179. name: "Macro Lite",
  5180. height: math.unit(37, "meters")
  5181. },
  5182. {
  5183. name: "Hyper Predator",
  5184. height: math.unit(61, "meters")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(138, "meters"),
  5189. default: true
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(5 + 5 / 12, "feet"),
  5198. weight: math.unit(120, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/geta/front.svg",
  5202. extra: 1003/933,
  5203. bottom: 21/1024
  5204. }
  5205. },
  5206. paw: {
  5207. height: math.unit(0.35, "feet"),
  5208. name: "Paw",
  5209. image: {
  5210. source: "./media/characters/geta/paw.svg"
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Micro",
  5217. height: math.unit(3, "inches"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(5 + 5 / 12, "feet")
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/tyrnn/front.svg"
  5235. }
  5236. }
  5237. },
  5238. [
  5239. {
  5240. name: "Main Height",
  5241. height: math.unit(355, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Fave. Height",
  5246. height: math.unit(2400, "feet")
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(300, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/appledectomy/front.svg"
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(2500, "feet")
  5266. },
  5267. {
  5268. name: "Megamacro",
  5269. height: math.unit(50, "miles"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(5000, "miles")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(250000, "miles")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(200, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/vulpes/front.svg",
  5291. extra: 573 / 543,
  5292. bottom: 0.033
  5293. }
  5294. },
  5295. side: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(200, "lbs"),
  5298. name: "Side",
  5299. image: {
  5300. source: "./media/characters/vulpes/side.svg",
  5301. extra: 577 / 549,
  5302. bottom: 11 / 588
  5303. }
  5304. },
  5305. back: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(200, "lbs"),
  5308. name: "Back",
  5309. image: {
  5310. source: "./media/characters/vulpes/back.svg",
  5311. extra: 573 / 549,
  5312. bottom: 20 / 593
  5313. }
  5314. },
  5315. feet: {
  5316. height: math.unit(1.276, "feet"),
  5317. name: "Feet",
  5318. image: {
  5319. source: "./media/characters/vulpes/feet.svg"
  5320. }
  5321. },
  5322. maw: {
  5323. height: math.unit(1.18, "feet"),
  5324. name: "Maw",
  5325. image: {
  5326. source: "./media/characters/vulpes/maw.svg"
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Micro",
  5333. height: math.unit(2, "inches")
  5334. },
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(6.3, "feet")
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(850, "feet")
  5342. },
  5343. {
  5344. name: "Megamacro",
  5345. height: math.unit(7500, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Gigamacro",
  5350. height: math.unit(570000, "miles")
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/rain-fallen/front.svg"
  5363. }
  5364. },
  5365. side: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(210, "lbs"),
  5368. name: "Side",
  5369. image: {
  5370. source: "./media/characters/rain-fallen/side.svg"
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(210, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/rain-fallen/back.svg"
  5379. }
  5380. },
  5381. feral: {
  5382. height: math.unit(9, "feet"),
  5383. weight: math.unit(700, "lbs"),
  5384. name: "Feral",
  5385. image: {
  5386. source: "./media/characters/rain-fallen/feral.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Meddling with Mortals",
  5393. height: math.unit(8 + 8/12, "feet")
  5394. },
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(5, "meter")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(150, "meter"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Megamacro",
  5406. height: math.unit(278e6, "meter")
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(2e9, "meter")
  5411. },
  5412. {
  5413. name: "Teramacro",
  5414. height: math.unit(8e12, "meter")
  5415. },
  5416. {
  5417. name: "Devourer",
  5418. height: math.unit(14, "zettameters")
  5419. },
  5420. {
  5421. name: "Scarlet King",
  5422. height: math.unit(18, "yottameters")
  5423. },
  5424. {
  5425. name: "Void",
  5426. height: math.unit(1e88, "yottameters")
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5432. {
  5433. standing: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(180, "lbs"),
  5436. name: "Standing",
  5437. image: {
  5438. source: "./media/characters/zaakira/standing.svg",
  5439. extra: 1599/1504,
  5440. bottom: 39/1638
  5441. }
  5442. },
  5443. laying: {
  5444. height: math.unit(3.3, "feet"),
  5445. weight: math.unit(180, "lbs"),
  5446. name: "Laying",
  5447. image: {
  5448. source: "./media/characters/zaakira/laying.svg"
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(12, "feet")
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(279, "feet"),
  5460. default: true
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5466. {
  5467. femSfw: {
  5468. height: math.unit(8, "feet"),
  5469. weight: math.unit(350, "lb"),
  5470. name: "Fem",
  5471. image: {
  5472. source: "./media/characters/sigvald/fem-sfw.svg",
  5473. extra: 182 / 164,
  5474. bottom: 8.7 / 190.5
  5475. }
  5476. },
  5477. femNsfw: {
  5478. height: math.unit(8, "feet"),
  5479. weight: math.unit(350, "lb"),
  5480. name: "Fem (NSFW)",
  5481. image: {
  5482. source: "./media/characters/sigvald/fem-nsfw.svg",
  5483. extra: 182 / 164,
  5484. bottom: 8.7 / 190.5
  5485. }
  5486. },
  5487. maleNsfw: {
  5488. height: math.unit(8, "feet"),
  5489. weight: math.unit(350, "lb"),
  5490. name: "Male (NSFW)",
  5491. image: {
  5492. source: "./media/characters/sigvald/male-nsfw.svg",
  5493. extra: 182 / 164,
  5494. bottom: 8.7 / 190.5
  5495. }
  5496. },
  5497. hermNsfw: {
  5498. height: math.unit(8, "feet"),
  5499. weight: math.unit(350, "lb"),
  5500. name: "Herm (NSFW)",
  5501. image: {
  5502. source: "./media/characters/sigvald/herm-nsfw.svg",
  5503. extra: 182 / 164,
  5504. bottom: 8.7 / 190.5
  5505. }
  5506. },
  5507. dick: {
  5508. height: math.unit(2.36, "feet"),
  5509. name: "Dick",
  5510. image: {
  5511. source: "./media/characters/sigvald/dick.svg"
  5512. }
  5513. },
  5514. eye: {
  5515. height: math.unit(0.31, "feet"),
  5516. name: "Eye",
  5517. image: {
  5518. source: "./media/characters/sigvald/eye.svg"
  5519. }
  5520. },
  5521. mouth: {
  5522. height: math.unit(0.92, "feet"),
  5523. name: "Mouth",
  5524. image: {
  5525. source: "./media/characters/sigvald/mouth.svg"
  5526. }
  5527. },
  5528. paws: {
  5529. height: math.unit(2.2, "feet"),
  5530. name: "Paws",
  5531. image: {
  5532. source: "./media/characters/sigvald/paws.svg"
  5533. }
  5534. }
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(8, "feet")
  5540. },
  5541. {
  5542. name: "Large",
  5543. height: math.unit(12, "feet")
  5544. },
  5545. {
  5546. name: "Larger",
  5547. height: math.unit(20, "feet")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(150, "feet")
  5552. },
  5553. {
  5554. name: "Macro+",
  5555. height: math.unit(200, "feet"),
  5556. default: true
  5557. },
  5558. ]
  5559. ))
  5560. characterMakers.push(() => makeCharacter(
  5561. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5562. {
  5563. side: {
  5564. height: math.unit(12, "feet"),
  5565. weight: math.unit(2000, "kg"),
  5566. name: "Side",
  5567. image: {
  5568. source: "./media/characters/scott/side.svg",
  5569. extra: 754 / 724,
  5570. bottom: 0.069
  5571. }
  5572. },
  5573. upright: {
  5574. height: math.unit(12, "feet"),
  5575. weight: math.unit(2000, "kg"),
  5576. name: "Upright",
  5577. image: {
  5578. source: "./media/characters/scott/upright.svg",
  5579. extra: 3881 / 3722,
  5580. bottom: 0.05
  5581. }
  5582. },
  5583. },
  5584. [
  5585. {
  5586. name: "Normal",
  5587. height: math.unit(12, "feet"),
  5588. default: true
  5589. },
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5594. {
  5595. side: {
  5596. height: math.unit(8, "meters"),
  5597. weight: math.unit(84755, "lbs"),
  5598. name: "Side",
  5599. image: {
  5600. source: "./media/characters/tobias/side.svg",
  5601. extra: 1474 / 1096,
  5602. bottom: 38.9 / 1513.1235
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(8, "meters"),
  5610. default: true
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5616. {
  5617. front: {
  5618. height: math.unit(5.5, "feet"),
  5619. weight: math.unit(400, "lbs"),
  5620. name: "Front",
  5621. image: {
  5622. source: "./media/characters/kieran/front.svg",
  5623. extra: 2694 / 2364,
  5624. bottom: 217 / 2908
  5625. }
  5626. },
  5627. side: {
  5628. height: math.unit(5.5, "feet"),
  5629. weight: math.unit(400, "lbs"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/kieran/side.svg",
  5633. extra: 875 / 777,
  5634. bottom: 84.6 / 959
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(5.5, "feet"),
  5642. default: true
  5643. },
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5648. {
  5649. side: {
  5650. height: math.unit(2, "meters"),
  5651. weight: math.unit(70, "kg"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/sanya/side.svg",
  5655. bottom: 0.02,
  5656. extra: 1.02
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Small",
  5663. height: math.unit(2, "meters")
  5664. },
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(3, "meters")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(16, "meters"),
  5672. default: true
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(2, "meters"),
  5681. weight: math.unit(120, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/miranda/front.svg",
  5685. extra: 195 / 185,
  5686. bottom: 10.9 / 206.5
  5687. }
  5688. },
  5689. back: {
  5690. height: math.unit(2, "meters"),
  5691. weight: math.unit(120, "kg"),
  5692. name: "Back",
  5693. image: {
  5694. source: "./media/characters/miranda/back.svg",
  5695. extra: 201 / 193,
  5696. bottom: 2.3 / 203.7
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(10, "feet"),
  5704. default: true
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "James", species: ["deer"], tags: ["anthro"] },
  5710. {
  5711. side: {
  5712. height: math.unit(2, "meters"),
  5713. weight: math.unit(100, "kg"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/james/front.svg",
  5717. extra: 10 / 8.5
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(8.5, "feet"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5731. {
  5732. side: {
  5733. height: math.unit(9.5, "feet"),
  5734. weight: math.unit(2500, "lbs"),
  5735. name: "Side",
  5736. image: {
  5737. source: "./media/characters/heather/side.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(9.5, "feet"),
  5745. default: true
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5751. {
  5752. side: {
  5753. height: math.unit(6.5, "feet"),
  5754. weight: math.unit(400, "lbs"),
  5755. name: "Side",
  5756. image: {
  5757. source: "./media/characters/lukas/side.svg",
  5758. extra: 7.25 / 6.5
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(6.5, "feet"),
  5766. default: true
  5767. }
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5772. {
  5773. side: {
  5774. height: math.unit(5, "feet"),
  5775. weight: math.unit(3000, "lbs"),
  5776. name: "Side",
  5777. image: {
  5778. source: "./media/characters/louise/side.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(5, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5792. {
  5793. side: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(150, "lbs"),
  5796. name: "Side",
  5797. image: {
  5798. source: "./media/characters/ramona/side.svg",
  5799. extra: 871/854,
  5800. bottom: 41/912
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(6 + 4/12, "feet")
  5808. },
  5809. {
  5810. name: "Minimacro",
  5811. height: math.unit(5.3, "meters"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(20, "stories")
  5817. },
  5818. {
  5819. name: "Macro+",
  5820. height: math.unit(50, "stories")
  5821. },
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5826. {
  5827. standing: {
  5828. height: math.unit(5.75, "feet"),
  5829. weight: math.unit(160, "lbs"),
  5830. name: "Standing",
  5831. image: {
  5832. source: "./media/characters/deerpuff/standing.svg",
  5833. extra: 682 / 624
  5834. }
  5835. },
  5836. sitting: {
  5837. height: math.unit(5.75 / 1.79, "feet"),
  5838. weight: math.unit(160, "lbs"),
  5839. name: "Sitting",
  5840. image: {
  5841. source: "./media/characters/deerpuff/sitting.svg",
  5842. bottom: 44 / 400,
  5843. extra: 1
  5844. }
  5845. },
  5846. taurLaying: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(400, "lbs"),
  5849. name: "Taur (Laying)",
  5850. image: {
  5851. source: "./media/characters/deerpuff/taur-laying.svg"
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Puffball",
  5858. height: math.unit(6, "inches")
  5859. },
  5860. {
  5861. name: "Normalpuff",
  5862. height: math.unit(5.75, "feet")
  5863. },
  5864. {
  5865. name: "Macropuff",
  5866. height: math.unit(1500, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Megapuff",
  5871. height: math.unit(500, "miles")
  5872. },
  5873. {
  5874. name: "Gigapuff",
  5875. height: math.unit(250000, "miles")
  5876. },
  5877. {
  5878. name: "Omegapuff",
  5879. height: math.unit(1000, "lightyears")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5885. {
  5886. stomping: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(170, "lbs"),
  5889. name: "Stomping",
  5890. image: {
  5891. source: "./media/characters/vivian/stomping.svg"
  5892. }
  5893. },
  5894. sitting: {
  5895. height: math.unit(6 / 1.75, "feet"),
  5896. weight: math.unit(170, "lbs"),
  5897. name: "Sitting",
  5898. image: {
  5899. source: "./media/characters/vivian/sitting.svg",
  5900. bottom: 1 / 6.4,
  5901. extra: 1,
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(7, "feet"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(10, "stories")
  5914. },
  5915. {
  5916. name: "Macro+",
  5917. height: math.unit(30, "stories")
  5918. },
  5919. {
  5920. name: "Megamacro",
  5921. height: math.unit(10, "miles")
  5922. },
  5923. {
  5924. name: "Megamacro+",
  5925. height: math.unit(2750000, "meters")
  5926. },
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(160, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/prince/front.svg",
  5938. extra: 3400 / 3000
  5939. }
  5940. },
  5941. jumping: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(160, "lbs"),
  5944. name: "Jumping",
  5945. image: {
  5946. source: "./media/characters/prince/jump.svg",
  5947. extra: 2555 / 2134
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(7.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Not cute",
  5959. height: math.unit(17, "feet")
  5960. },
  5961. {
  5962. name: "I said NOT",
  5963. height: math.unit(91, "feet")
  5964. },
  5965. {
  5966. name: "Please stop",
  5967. height: math.unit(560, "feet")
  5968. },
  5969. {
  5970. name: "What have you done",
  5971. height: math.unit(2200, "feet")
  5972. },
  5973. {
  5974. name: "Deer God",
  5975. height: math.unit(3.6, "miles")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5981. {
  5982. standing: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(300, "lbs"),
  5985. name: "Standing",
  5986. image: {
  5987. source: "./media/characters/psymon/standing.svg",
  5988. extra: 1888 / 1810,
  5989. bottom: 0.05
  5990. }
  5991. },
  5992. slithering: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(300, "lbs"),
  5995. name: "Slithering",
  5996. image: {
  5997. source: "./media/characters/psymon/slithering.svg",
  5998. extra: 1330 / 1224
  5999. }
  6000. },
  6001. slitheringAlt: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(300, "lbs"),
  6004. name: "Slithering (Alt)",
  6005. image: {
  6006. source: "./media/characters/psymon/slithering-alt.svg",
  6007. extra: 1330 / 1224
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(11.25, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Large",
  6019. height: math.unit(27, "feet")
  6020. },
  6021. {
  6022. name: "Giant",
  6023. height: math.unit(87, "feet")
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(365, "feet")
  6028. },
  6029. {
  6030. name: "Megamacro",
  6031. height: math.unit(3, "miles")
  6032. },
  6033. {
  6034. name: "World Serpent",
  6035. height: math.unit(8000, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(180, "lbs"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/daimos/front.svg",
  6048. extra: 4160 / 3897,
  6049. bottom: 0.021
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(8, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Big Dog",
  6061. height: math.unit(22, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(127, "feet")
  6066. },
  6067. {
  6068. name: "Megamacro",
  6069. height: math.unit(3600, "feet")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6075. {
  6076. side: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(180, "lbs"),
  6079. name: "Side",
  6080. image: {
  6081. source: "./media/characters/blake/side.svg",
  6082. extra: 1212 / 1120,
  6083. bottom: 0.05
  6084. }
  6085. },
  6086. crouched: {
  6087. height: math.unit(6 * 0.57, "feet"),
  6088. weight: math.unit(180, "lbs"),
  6089. name: "Crouched",
  6090. image: {
  6091. source: "./media/characters/blake/crouched.svg",
  6092. extra: 840 / 587,
  6093. bottom: 0.04
  6094. }
  6095. },
  6096. bent: {
  6097. height: math.unit(6 * 0.75, "feet"),
  6098. weight: math.unit(180, "lbs"),
  6099. name: "Bent",
  6100. image: {
  6101. source: "./media/characters/blake/bent.svg",
  6102. extra: 592 / 544,
  6103. bottom: 0.035
  6104. }
  6105. },
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(8 + 1 / 6, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Big Backside",
  6115. height: math.unit(37, "feet")
  6116. },
  6117. {
  6118. name: "Subway Shredder",
  6119. height: math.unit(72, "feet")
  6120. },
  6121. {
  6122. name: "City Carver",
  6123. height: math.unit(1675, "feet")
  6124. },
  6125. {
  6126. name: "Tectonic Tweaker",
  6127. height: math.unit(2300, "miles")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(180, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/guisetto/front.svg",
  6140. extra: 856 / 817,
  6141. bottom: 0.06
  6142. }
  6143. },
  6144. airborne: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(180, "lbs"),
  6147. name: "Airborne",
  6148. image: {
  6149. source: "./media/characters/guisetto/airborne.svg",
  6150. extra: 584 / 525
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(10 + 11 / 12, "feet"),
  6158. default: true
  6159. },
  6160. {
  6161. name: "Large",
  6162. height: math.unit(35, "feet")
  6163. },
  6164. {
  6165. name: "Macro",
  6166. height: math.unit(475, "feet")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(180, "lbs"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/luxor/front.svg",
  6179. extra: 2940 / 2152
  6180. }
  6181. },
  6182. back: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(180, "lbs"),
  6185. name: "Back",
  6186. image: {
  6187. source: "./media/characters/luxor/back.svg",
  6188. extra: 1083 / 960
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(5 + 5 / 6, "feet"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Lamp",
  6200. height: math.unit(50, "feet")
  6201. },
  6202. {
  6203. name: "Lämp",
  6204. height: math.unit(300, "feet")
  6205. },
  6206. {
  6207. name: "The sun is a lamp",
  6208. height: math.unit(250000, "miles")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6214. {
  6215. front: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(50, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/huoyan/front.svg"
  6221. }
  6222. },
  6223. side: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(180, "lbs"),
  6226. name: "Side",
  6227. image: {
  6228. source: "./media/characters/huoyan/side.svg"
  6229. }
  6230. },
  6231. },
  6232. [
  6233. {
  6234. name: "Chef",
  6235. height: math.unit(9, "feet")
  6236. },
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(65, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Macro",
  6244. height: math.unit(780, "feet")
  6245. },
  6246. {
  6247. name: "Flaming Mountain",
  6248. height: math.unit(4.8, "miles")
  6249. },
  6250. {
  6251. name: "Celestial",
  6252. height: math.unit(765000, "miles")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(5 + 3 / 4, "feet"),
  6261. weight: math.unit(120, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/tails/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(5 + 3 / 4, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(4, "feet"),
  6281. weight: math.unit(50, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/rainy/front.svg"
  6285. }
  6286. }
  6287. },
  6288. [
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(800, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(150, "lbs"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/rainier/front.svg"
  6305. }
  6306. }
  6307. },
  6308. [
  6309. {
  6310. name: "Micro",
  6311. height: math.unit(2, "mm"),
  6312. default: true
  6313. }
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(8 + 4/12, "feet"),
  6321. weight: math.unit(450, "kilograms"),
  6322. volume: math.unit(5, "cups"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/andy-renard/front.svg",
  6326. extra: 1839/1726,
  6327. bottom: 134/1973
  6328. }
  6329. },
  6330. back: {
  6331. height: math.unit(8 + 4/12, "feet"),
  6332. weight: math.unit(450, "kilograms"),
  6333. volume: math.unit(5, "cups"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/andy-renard/back.svg",
  6337. extra: 1838/1710,
  6338. bottom: 105/1943
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Tall",
  6345. height: math.unit(8 + 4/12, "feet")
  6346. },
  6347. {
  6348. name: "Mini Macro",
  6349. height: math.unit(15, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(100, "feet")
  6355. },
  6356. {
  6357. name: "Mega Macro",
  6358. height: math.unit(1000, "feet")
  6359. },
  6360. {
  6361. name: "Giga Macro",
  6362. height: math.unit(10, "miles")
  6363. },
  6364. {
  6365. name: "God Macro",
  6366. height: math.unit(1, "multiverse")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(210, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/cimmaron/front-sfw.svg",
  6379. extra: 701 / 676,
  6380. bottom: 0.046
  6381. }
  6382. },
  6383. back: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(210, "lbs"),
  6386. name: "Back",
  6387. image: {
  6388. source: "./media/characters/cimmaron/back-sfw.svg",
  6389. extra: 701 / 676,
  6390. bottom: 0.046
  6391. }
  6392. },
  6393. frontNsfw: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(210, "lbs"),
  6396. name: "Front (NSFW)",
  6397. image: {
  6398. source: "./media/characters/cimmaron/front-nsfw.svg",
  6399. extra: 701 / 676,
  6400. bottom: 0.046
  6401. }
  6402. },
  6403. backNsfw: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(210, "lbs"),
  6406. name: "Back (NSFW)",
  6407. image: {
  6408. source: "./media/characters/cimmaron/back-nsfw.svg",
  6409. extra: 701 / 676,
  6410. bottom: 0.046
  6411. }
  6412. },
  6413. dick: {
  6414. height: math.unit(1.714, "feet"),
  6415. name: "Dick",
  6416. image: {
  6417. source: "./media/characters/cimmaron/dick.svg"
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(6, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Macro Mayor",
  6429. height: math.unit(350, "meters")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6435. {
  6436. front: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(200, "lbs"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/akari/front.svg",
  6442. extra: 962 / 901,
  6443. bottom: 0.04
  6444. }
  6445. }
  6446. },
  6447. [
  6448. {
  6449. name: "Micro",
  6450. height: math.unit(5, "inches"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(7, "feet")
  6456. },
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(140, "lbs"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/cynosura/front.svg",
  6468. extra: 896 / 847
  6469. }
  6470. },
  6471. back: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(140, "lbs"),
  6474. name: "Back",
  6475. image: {
  6476. source: "./media/characters/cynosura/back.svg",
  6477. extra: 1365 / 1250
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Micro",
  6484. height: math.unit(4, "inches")
  6485. },
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(5.75, "feet"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Tall",
  6493. height: math.unit(10, "feet")
  6494. },
  6495. {
  6496. name: "Big",
  6497. height: math.unit(20, "feet")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(50, "feet")
  6502. },
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6507. {
  6508. front: {
  6509. height: math.unit(13 + 2/12, "feet"),
  6510. weight: math.unit(800, "kg"),
  6511. name: "Front",
  6512. image: {
  6513. source: "./media/characters/gin/front.svg",
  6514. extra: 1312/1191,
  6515. bottom: 45/1357
  6516. }
  6517. },
  6518. mouth: {
  6519. height: math.unit(2.39 * 1.8, "feet"),
  6520. name: "Mouth",
  6521. image: {
  6522. source: "./media/characters/gin/mouth.svg"
  6523. }
  6524. },
  6525. hand: {
  6526. height: math.unit(1.57 * 2.19, "feet"),
  6527. name: "Hand",
  6528. image: {
  6529. source: "./media/characters/gin/hand.svg"
  6530. }
  6531. },
  6532. foot: {
  6533. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6534. name: "Foot",
  6535. image: {
  6536. source: "./media/characters/gin/foot.svg"
  6537. }
  6538. },
  6539. sole: {
  6540. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6541. name: "Sole",
  6542. image: {
  6543. source: "./media/characters/gin/sole.svg"
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Very Small",
  6550. height: math.unit(13 + 2 / 12, "feet")
  6551. },
  6552. {
  6553. name: "Micro",
  6554. height: math.unit(600, "miles")
  6555. },
  6556. {
  6557. name: "Regular",
  6558. height: math.unit(20, "earths"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(2.2, "solarradii")
  6564. },
  6565. {
  6566. name: "Teramacro",
  6567. height: math.unit(1.2, "galaxies")
  6568. },
  6569. {
  6570. name: "Omegamacro",
  6571. height: math.unit(200, "universes")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(6 + 1 / 6, "feet"),
  6580. weight: math.unit(178, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/guy/front.svg"
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(6 + 1 / 6, "feet"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Large",
  6595. height: math.unit(25 + 7 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(60 + 9 / 12, "feet")
  6600. },
  6601. {
  6602. name: "Macro+",
  6603. height: math.unit(246, "feet")
  6604. },
  6605. {
  6606. name: "Macro++",
  6607. height: math.unit(878, "feet")
  6608. }
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6613. {
  6614. front: {
  6615. height: math.unit(9, "feet"),
  6616. weight: math.unit(800, "lbs"),
  6617. name: "Front",
  6618. image: {
  6619. source: "./media/characters/tiberius/front.svg",
  6620. extra: 2295 / 2071
  6621. }
  6622. },
  6623. back: {
  6624. height: math.unit(9, "feet"),
  6625. weight: math.unit(800, "lbs"),
  6626. name: "Back",
  6627. image: {
  6628. source: "./media/characters/tiberius/back.svg",
  6629. extra: 2373 / 2160
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(9, "feet"),
  6637. default: true
  6638. }
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6643. {
  6644. front: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(600, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/surgo/front.svg",
  6650. extra: 3591 / 2227
  6651. }
  6652. },
  6653. back: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(600, "lbs"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/surgo/back.svg",
  6659. extra: 3557 / 2228
  6660. }
  6661. },
  6662. laying: {
  6663. height: math.unit(6 * 0.85, "feet"),
  6664. weight: math.unit(600, "lbs"),
  6665. name: "Laying",
  6666. image: {
  6667. source: "./media/characters/surgo/laying.svg"
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(6, "feet"),
  6675. default: true
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6681. {
  6682. side: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(150, "lbs"),
  6685. name: "Side",
  6686. image: {
  6687. source: "./media/characters/cibus/side.svg",
  6688. extra: 800 / 400
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(6, "feet"),
  6696. default: true
  6697. }
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(240, "lbs"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/nibbles/front.svg"
  6709. }
  6710. },
  6711. side: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(240, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/nibbles/side.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(9, "feet"),
  6724. default: true
  6725. }
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6730. {
  6731. side: {
  6732. height: math.unit(5 + 1 / 6, "feet"),
  6733. weight: math.unit(130, "lbs"),
  6734. name: "Side",
  6735. image: {
  6736. source: "./media/characters/rikky/side.svg",
  6737. extra: 851 / 801
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(5 + 1 / 6, "feet")
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(152, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Megamacro",
  6753. height: math.unit(7, "miles")
  6754. }
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6759. {
  6760. side: {
  6761. height: math.unit(370, "cm"),
  6762. weight: math.unit(350, "lbs"),
  6763. name: "Side",
  6764. image: {
  6765. source: "./media/characters/malfressa/side.svg"
  6766. }
  6767. },
  6768. walking: {
  6769. height: math.unit(370, "cm"),
  6770. weight: math.unit(350, "lbs"),
  6771. name: "Walking",
  6772. image: {
  6773. source: "./media/characters/malfressa/walking.svg"
  6774. }
  6775. },
  6776. feral: {
  6777. height: math.unit(2500, "cm"),
  6778. weight: math.unit(100000, "lbs"),
  6779. name: "Feral",
  6780. image: {
  6781. source: "./media/characters/malfressa/feral.svg",
  6782. extra: 2108 / 837,
  6783. bottom: 0.02
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(370, "cm")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(300, "meters"),
  6795. default: true
  6796. }
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(60, "kg"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/jaro/front.svg",
  6808. extra: 845/817,
  6809. bottom: 45/890
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(60, "kg"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/jaro/back.svg",
  6818. extra: 847/817,
  6819. bottom: 34/881
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(7, "inches")
  6827. },
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5.5, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Minimacro",
  6835. height: math.unit(20, "feet")
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(200, "meters")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(195, "lb"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/rogue/front.svg"
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(90, "feet"),
  6859. default: true
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6865. {
  6866. standing: {
  6867. height: math.unit(5 + 8 / 12, "feet"),
  6868. weight: math.unit(140, "lb"),
  6869. name: "Standing",
  6870. image: {
  6871. source: "./media/characters/piper/standing.svg",
  6872. extra: 1440/1284,
  6873. bottom: 66/1506
  6874. }
  6875. },
  6876. running: {
  6877. height: math.unit(5 + 8 / 12, "feet"),
  6878. weight: math.unit(140, "lb"),
  6879. name: "Running",
  6880. image: {
  6881. source: "./media/characters/piper/running.svg",
  6882. extra: 3948/3655,
  6883. bottom: 0/3948
  6884. }
  6885. },
  6886. sole: {
  6887. height: math.unit(0.81, "feet"),
  6888. weight: math.unit(2, "kg"),
  6889. name: "Sole",
  6890. image: {
  6891. source: "./media/characters/piper/sole.svg"
  6892. }
  6893. },
  6894. nipple: {
  6895. height: math.unit(0.25, "feet"),
  6896. weight: math.unit(1.5, "lb"),
  6897. name: "Nipple",
  6898. image: {
  6899. source: "./media/characters/piper/nipple.svg"
  6900. }
  6901. },
  6902. head: {
  6903. height: math.unit(1.1, "feet"),
  6904. name: "Head",
  6905. image: {
  6906. source: "./media/characters/piper/head.svg"
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Micro",
  6913. height: math.unit(2, "inches")
  6914. },
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(5 + 8 / 12, "feet")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(250, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(7, "miles")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(220, "lb"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/gemini/front.svg"
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(220, "lb"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/gemini/back.svg"
  6947. }
  6948. },
  6949. kneeling: {
  6950. height: math.unit(6 / 1.5, "feet"),
  6951. weight: math.unit(220, "lb"),
  6952. name: "Kneeling",
  6953. image: {
  6954. source: "./media/characters/gemini/kneeling.svg",
  6955. bottom: 0.02
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(300, "meters"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Megamacro",
  6967. height: math.unit(6900, "meters")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6973. {
  6974. anthro: {
  6975. height: math.unit(2.35, "meters"),
  6976. weight: math.unit(73, "kg"),
  6977. name: "Anthro",
  6978. image: {
  6979. source: "./media/characters/alicia/anthro.svg",
  6980. extra: 2571 / 2385,
  6981. bottom: 75 / 2648
  6982. }
  6983. },
  6984. paw: {
  6985. height: math.unit(1.32, "feet"),
  6986. name: "Paw",
  6987. image: {
  6988. source: "./media/characters/alicia/paw.svg"
  6989. }
  6990. },
  6991. feral: {
  6992. height: math.unit(1.69, "meters"),
  6993. weight: math.unit(73, "kg"),
  6994. name: "Feral",
  6995. image: {
  6996. source: "./media/characters/alicia/feral.svg",
  6997. extra: 2123 / 1715,
  6998. bottom: 222 / 2349
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(2.35, "meters")
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(60, "meters"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Megamacro",
  7014. height: math.unit(10000, "kilometers")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(7, "feet"),
  7023. weight: math.unit(250, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/archy/front.svg"
  7027. }
  7028. }
  7029. },
  7030. [
  7031. {
  7032. name: "Micro",
  7033. height: math.unit(1, "inch")
  7034. },
  7035. {
  7036. name: "Shorty",
  7037. height: math.unit(5, "feet")
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(7, "feet")
  7042. },
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(600, "meters"),
  7046. default: true
  7047. },
  7048. {
  7049. name: "Megamacro",
  7050. height: math.unit(1, "mile")
  7051. },
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(1.65, "meters"),
  7059. weight: math.unit(74, "kg"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/berri/front.svg",
  7063. extra: 857 / 837,
  7064. bottom: 18 / 877
  7065. }
  7066. },
  7067. bum: {
  7068. height: math.unit(1.46, "feet"),
  7069. name: "Bum",
  7070. image: {
  7071. source: "./media/characters/berri/bum.svg"
  7072. }
  7073. },
  7074. mouth: {
  7075. height: math.unit(0.44, "feet"),
  7076. name: "Mouth",
  7077. image: {
  7078. source: "./media/characters/berri/mouth.svg"
  7079. }
  7080. },
  7081. paw: {
  7082. height: math.unit(0.826, "feet"),
  7083. name: "Paw",
  7084. image: {
  7085. source: "./media/characters/berri/paw.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(1.65, "meters")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(60, "m"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(9.213, "km")
  7102. },
  7103. {
  7104. name: "Planet Eater",
  7105. height: math.unit(489, "megameters")
  7106. },
  7107. {
  7108. name: "Teramacro",
  7109. height: math.unit(2471635000000, "meters")
  7110. },
  7111. {
  7112. name: "Examacro",
  7113. height: math.unit(8.0624e+26, "meters")
  7114. }
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(1.72, "meters"),
  7122. weight: math.unit(68, "kg"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/lexi/front.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Very Smol",
  7132. height: math.unit(10, "mm")
  7133. },
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(6.8, "cm"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(1.72, "m")
  7142. }
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(1.69, "meters"),
  7150. weight: math.unit(68, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/martin/front.svg",
  7154. extra: 596 / 581
  7155. }
  7156. }
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(6.85, "cm"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(1.69, "m")
  7167. }
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7172. {
  7173. front: {
  7174. height: math.unit(1.69, "meters"),
  7175. weight: math.unit(68, "kg"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/juno/front.svg"
  7179. }
  7180. }
  7181. },
  7182. [
  7183. {
  7184. name: "Micro",
  7185. height: math.unit(7, "cm")
  7186. },
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.89, "m")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(353, "meters"),
  7194. default: true
  7195. }
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(1.93, "meters"),
  7203. weight: math.unit(83, "kg"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/samantha/front.svg"
  7207. }
  7208. },
  7209. frontClothed: {
  7210. height: math.unit(1.93, "meters"),
  7211. weight: math.unit(83, "kg"),
  7212. name: "Front (Clothed)",
  7213. image: {
  7214. source: "./media/characters/samantha/front-clothed.svg"
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(1.93, "meters"),
  7219. weight: math.unit(83, "kg"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/samantha/back.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(1.93, "m")
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(74, "meters"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(223, "meters"),
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(8381, "meters"),
  7243. },
  7244. {
  7245. name: "Megamacro+",
  7246. height: math.unit(12000, "kilometers")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(1.92, "meters"),
  7255. weight: math.unit(80, "kg"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/dr-clay/front.svg"
  7259. }
  7260. },
  7261. frontClothed: {
  7262. height: math.unit(1.92, "meters"),
  7263. weight: math.unit(80, "kg"),
  7264. name: "Front (Clothed)",
  7265. image: {
  7266. source: "./media/characters/dr-clay/front-clothed.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(1.92, "m")
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(214, "meters"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Macro+",
  7282. height: math.unit(12.237, "meters"),
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(557, "megameters"),
  7287. },
  7288. {
  7289. name: "Unimaginable",
  7290. height: math.unit(120e9, "lightyears")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(2, "meters"),
  7299. weight: math.unit(80, "kg"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7303. }
  7304. }
  7305. },
  7306. [
  7307. {
  7308. name: "Teramacro",
  7309. height: math.unit(500000, "lightyears"),
  7310. default: true
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7316. {
  7317. crux: {
  7318. height: math.unit(2, "meters"),
  7319. weight: math.unit(150, "kg"),
  7320. name: "Crux",
  7321. image: {
  7322. source: "./media/characters/vemus/crux.svg",
  7323. extra: 1074/936,
  7324. bottom: 23/1097
  7325. }
  7326. },
  7327. skunkTanuki: {
  7328. height: math.unit(2, "meters"),
  7329. weight: math.unit(150, "kg"),
  7330. name: "Skunk-Tanuki",
  7331. image: {
  7332. source: "./media/characters/vemus/skunk-tanuki.svg",
  7333. extra: 926/893,
  7334. bottom: 20/946
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(4, "meters"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Big",
  7346. height: math.unit(8, "meters")
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(100, "meters")
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(1500, "meters")
  7355. },
  7356. {
  7357. name: "Stellar",
  7358. height: math.unit(14e8, "meters")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(2, "meters"),
  7367. weight: math.unit(70, "kg"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/beherit/front.svg",
  7371. extra: 1234/1109,
  7372. bottom: 55/1289
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(6, "feet")
  7380. },
  7381. {
  7382. name: "Lorg",
  7383. height: math.unit(25, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Lorger",
  7388. height: math.unit(75, "feet")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(200, "meters")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(2, "meters"),
  7401. weight: math.unit(150, "kg"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/everett/front.svg",
  7405. extra: 1017/866,
  7406. bottom: 86/1103
  7407. }
  7408. },
  7409. paw: {
  7410. height: math.unit(2 / 3.6, "meters"),
  7411. name: "Paw",
  7412. image: {
  7413. source: "./media/characters/everett/paw.svg"
  7414. }
  7415. },
  7416. },
  7417. [
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(15, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Lorg",
  7425. height: math.unit(70, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Lorger",
  7430. height: math.unit(250, "feet")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(500, "meters")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(2, "meters"),
  7443. weight: math.unit(86, "kg"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/rose/front.svg",
  7447. extra: 1785/1636,
  7448. bottom: 30/1815
  7449. },
  7450. form: "liom",
  7451. default: true
  7452. },
  7453. frontSporty: {
  7454. height: math.unit(2, "meters"),
  7455. weight: math.unit(86, "kg"),
  7456. name: "Front (Sporty)",
  7457. image: {
  7458. source: "./media/characters/rose/front-sporty.svg",
  7459. extra: 350/335,
  7460. bottom: 10/360
  7461. },
  7462. form: "liom"
  7463. },
  7464. frontAlt: {
  7465. height: math.unit(1.6, "meters"),
  7466. weight: math.unit(86, "kg"),
  7467. name: "Front (Alt)",
  7468. image: {
  7469. source: "./media/characters/rose/front-alt.svg",
  7470. extra: 299/283,
  7471. bottom: 3/302
  7472. },
  7473. form: "liom"
  7474. },
  7475. plush: {
  7476. height: math.unit(2, "meters"),
  7477. weight: math.unit(86/3, "kg"),
  7478. name: "Plush",
  7479. image: {
  7480. source: "./media/characters/rose/plush.svg",
  7481. extra: 361/337,
  7482. bottom: 11/372
  7483. },
  7484. form: "plush",
  7485. default: true
  7486. },
  7487. faeStanding: {
  7488. height: math.unit(10, "cm"),
  7489. weight: math.unit(10, "grams"),
  7490. name: "Standing",
  7491. image: {
  7492. source: "./media/characters/rose/fae-standing.svg",
  7493. extra: 1189/1060,
  7494. bottom: 27/1216
  7495. },
  7496. form: "fae",
  7497. default: true
  7498. },
  7499. faeSitting: {
  7500. height: math.unit(5, "cm"),
  7501. weight: math.unit(10, "grams"),
  7502. name: "Sitting",
  7503. image: {
  7504. source: "./media/characters/rose/fae-sitting.svg",
  7505. extra: 737/577,
  7506. bottom: 356/1093
  7507. },
  7508. form: "fae"
  7509. },
  7510. faePaw: {
  7511. height: math.unit(1.35, "cm"),
  7512. name: "Paw",
  7513. image: {
  7514. source: "./media/characters/rose/fae-paw.svg"
  7515. },
  7516. form: "fae"
  7517. },
  7518. },
  7519. [
  7520. {
  7521. name: "True Micro",
  7522. height: math.unit(9, "cm"),
  7523. form: "liom"
  7524. },
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(16, "cm"),
  7528. form: "liom"
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(1.85, "meters"),
  7533. default: true,
  7534. form: "liom"
  7535. },
  7536. {
  7537. name: "Mini-Macro",
  7538. height: math.unit(5, "meters"),
  7539. form: "liom"
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(15, "meters"),
  7544. form: "liom"
  7545. },
  7546. {
  7547. name: "True Macro",
  7548. height: math.unit(40, "meters"),
  7549. form: "liom"
  7550. },
  7551. {
  7552. name: "City Scale",
  7553. height: math.unit(1, "km"),
  7554. form: "liom"
  7555. },
  7556. {
  7557. name: "Plushie",
  7558. height: math.unit(9, "cm"),
  7559. form: "plush",
  7560. default: true
  7561. },
  7562. {
  7563. name: "Fae",
  7564. height: math.unit(10, "cm"),
  7565. form: "fae",
  7566. default: true
  7567. },
  7568. ],
  7569. {
  7570. "liom": {
  7571. name: "Liom"
  7572. },
  7573. "plush": {
  7574. name: "Plush"
  7575. },
  7576. "fae": {
  7577. name: "Fae Fox",
  7578. default: true
  7579. }
  7580. }
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(350, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/regal/front.svg"
  7591. }
  7592. },
  7593. back: {
  7594. height: math.unit(2, "meters"),
  7595. weight: math.unit(350, "lbs"),
  7596. name: "Back",
  7597. image: {
  7598. source: "./media/characters/regal/back.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(350, "feet"),
  7606. default: true
  7607. }
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(4 + 11 / 12, "feet"),
  7615. weight: math.unit(100, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/opal/front.svg"
  7619. }
  7620. },
  7621. frontAlt: {
  7622. height: math.unit(4 + 11 / 12, "feet"),
  7623. weight: math.unit(100, "lbs"),
  7624. name: "Front (Alt)",
  7625. image: {
  7626. source: "./media/characters/opal/front-alt.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Small",
  7633. height: math.unit(4 + 11 / 12, "feet")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(20, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(120, "feet")
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(80, "miles")
  7647. },
  7648. {
  7649. name: "True Size",
  7650. height: math.unit(100000, "lightyears")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(200, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/vector-wuff/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(2.8, "meters")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(450, "meters"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Megamacro",
  7678. height: math.unit(15, "kilometers")
  7679. }
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(256, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/dannik/front.svg"
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(69.57, "meters"),
  7698. default: true
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(6, "feet"),
  7707. weight: math.unit(120, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/azura-saharah/front.svg"
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(120, "lbs"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/azura-saharah/back.svg"
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(100, "feet"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7732. {
  7733. side: {
  7734. height: math.unit(5 + 4 / 12, "feet"),
  7735. weight: math.unit(163, "lbs"),
  7736. name: "Side",
  7737. image: {
  7738. source: "./media/characters/kennedy/side.svg"
  7739. }
  7740. }
  7741. },
  7742. [
  7743. {
  7744. name: "Standard Doggo",
  7745. height: math.unit(5 + 4 / 12, "feet")
  7746. },
  7747. {
  7748. name: "Big Doggo",
  7749. height: math.unit(25 + 3 / 12, "feet"),
  7750. default: true
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(5 + 5/12, "feet"),
  7759. weight: math.unit(100, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/odios-de-lunar/front.svg",
  7763. extra: 1468/1323,
  7764. bottom: 22/1490
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(3, "inches")
  7772. },
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5.5, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(100, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7786. {
  7787. back: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(220, "lbs"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/mandake/back.svg"
  7793. }
  7794. }
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(7, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(78, "feet")
  7805. },
  7806. {
  7807. name: "Macro+",
  7808. height: math.unit(300, "meters")
  7809. },
  7810. {
  7811. name: "Macro++",
  7812. height: math.unit(2400, "feet")
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(5167, "meters")
  7817. },
  7818. {
  7819. name: "Gigamacro",
  7820. height: math.unit(41769, "miles")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(120, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/yozey/front.svg"
  7833. }
  7834. },
  7835. frontAlt: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(120, "lbs"),
  7838. name: "Front (Alt)",
  7839. image: {
  7840. source: "./media/characters/yozey/front-alt.svg"
  7841. }
  7842. },
  7843. side: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(120, "lbs"),
  7846. name: "Side",
  7847. image: {
  7848. source: "./media/characters/yozey/side.svg"
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(3, "inches"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(6, "feet")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(103, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/valeska-voss/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Mini-Sized Sub",
  7879. height: math.unit(3.1, "inches")
  7880. },
  7881. {
  7882. name: "Mid-Sized Sub",
  7883. height: math.unit(6.2, "inches")
  7884. },
  7885. {
  7886. name: "Full-Sized Sub",
  7887. height: math.unit(9.3, "inches")
  7888. },
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(5 + 2 / 12, "foot"),
  7892. default: true
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(160, "lbs"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/gene-zeta/front.svg",
  7905. extra: 3006 / 2826,
  7906. bottom: 182 / 3188
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Micro",
  7913. height: math.unit(6, "inches")
  7914. },
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(5 + 11 / 12, "foot"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(140, "feet")
  7923. },
  7924. {
  7925. name: "Supercharged",
  7926. height: math.unit(2500, "feet")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(350, "lbs"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/razinox/front.svg",
  7939. extra: 1686 / 1548,
  7940. bottom: 28.2 / 1868
  7941. }
  7942. },
  7943. back: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(350, "lbs"),
  7946. name: "Back",
  7947. image: {
  7948. source: "./media/characters/razinox/back.svg",
  7949. extra: 1660 / 1590,
  7950. bottom: 15 / 1665
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(10 + 8 / 12, "foot")
  7958. },
  7959. {
  7960. name: "Minimacro",
  7961. height: math.unit(15, "foot")
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(60, "foot"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(5, "miles")
  7971. },
  7972. {
  7973. name: "Gigamacro",
  7974. height: math.unit(6000, "miles")
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7980. {
  7981. front: {
  7982. height: math.unit(6, "feet"),
  7983. weight: math.unit(150, "lbs"),
  7984. name: "Front",
  7985. image: {
  7986. source: "./media/characters/cobalt/front.svg"
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(8 + 1 / 12, "foot")
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(111, "foot"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Supracosmic",
  8002. height: math.unit(1e42, "feet")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(5, "inches"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/amanda/front.svg",
  8014. extra: 926/791,
  8015. bottom: 38/964
  8016. }
  8017. },
  8018. back: {
  8019. height: math.unit(5, "inches"),
  8020. name: "Back",
  8021. image: {
  8022. source: "./media/characters/amanda/back.svg",
  8023. extra: 909/805,
  8024. bottom: 43/952
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(5, "inches"),
  8032. default: true
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(2.75, "meters"),
  8041. weight: math.unit(1200, "lb"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/teal/front.svg",
  8045. extra: 2463 / 2320,
  8046. bottom: 166 / 2629
  8047. }
  8048. },
  8049. back: {
  8050. height: math.unit(2.75, "meters"),
  8051. weight: math.unit(1200, "lb"),
  8052. name: "Back",
  8053. image: {
  8054. source: "./media/characters/teal/back.svg",
  8055. extra: 2580 / 2489,
  8056. bottom: 151 / 2731
  8057. }
  8058. },
  8059. sitting: {
  8060. height: math.unit(1.9, "meters"),
  8061. weight: math.unit(1200, "lb"),
  8062. name: "Sitting",
  8063. image: {
  8064. source: "./media/characters/teal/sitting.svg",
  8065. extra: 623 / 590,
  8066. bottom: 121 / 744
  8067. }
  8068. },
  8069. standing: {
  8070. height: math.unit(2.75, "meters"),
  8071. weight: math.unit(1200, "lb"),
  8072. name: "Standing",
  8073. image: {
  8074. source: "./media/characters/teal/standing.svg",
  8075. extra: 923 / 893,
  8076. bottom: 60 / 983
  8077. }
  8078. },
  8079. stretching: {
  8080. height: math.unit(3.65, "meters"),
  8081. weight: math.unit(1200, "lb"),
  8082. name: "Stretching",
  8083. image: {
  8084. source: "./media/characters/teal/stretching.svg",
  8085. extra: 1276 / 1244,
  8086. bottom: 0 / 1276
  8087. }
  8088. },
  8089. legged: {
  8090. height: math.unit(1.3, "meters"),
  8091. weight: math.unit(100, "lb"),
  8092. name: "Legged",
  8093. image: {
  8094. source: "./media/characters/teal/legged.svg",
  8095. extra: 462 / 437,
  8096. bottom: 24 / 486
  8097. }
  8098. },
  8099. naga: {
  8100. height: math.unit(5.4, "meters"),
  8101. weight: math.unit(4000, "lb"),
  8102. name: "Naga",
  8103. image: {
  8104. source: "./media/characters/teal/naga.svg",
  8105. extra: 1902 / 1858,
  8106. bottom: 0 / 1902
  8107. }
  8108. },
  8109. hand: {
  8110. height: math.unit(0.52, "meters"),
  8111. name: "Hand",
  8112. image: {
  8113. source: "./media/characters/teal/hand.svg"
  8114. }
  8115. },
  8116. maw: {
  8117. height: math.unit(0.43, "meters"),
  8118. name: "Maw",
  8119. image: {
  8120. source: "./media/characters/teal/maw.svg"
  8121. }
  8122. },
  8123. slit: {
  8124. height: math.unit(0.25, "meters"),
  8125. name: "Slit",
  8126. image: {
  8127. source: "./media/characters/teal/slit.svg"
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(2.75, "meters"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(300, "feet")
  8140. },
  8141. {
  8142. name: "Macro+",
  8143. height: math.unit(2000, "feet")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8149. {
  8150. frontCat: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front (Cat)",
  8154. image: {
  8155. source: "./media/characters/ravin-amulet/front-cat.svg"
  8156. }
  8157. },
  8158. frontCatAlt: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(180, "lbs"),
  8161. name: "Front (Alt, Cat)",
  8162. image: {
  8163. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8164. }
  8165. },
  8166. frontWerewolf: {
  8167. height: math.unit(6 * 1.2, "feet"),
  8168. weight: math.unit(225, "lbs"),
  8169. name: "Front (Werewolf)",
  8170. image: {
  8171. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8172. }
  8173. },
  8174. backWerewolf: {
  8175. height: math.unit(6 * 1.2, "feet"),
  8176. weight: math.unit(225, "lbs"),
  8177. name: "Back (Werewolf)",
  8178. image: {
  8179. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Nano",
  8186. height: math.unit(1, "micrometer")
  8187. },
  8188. {
  8189. name: "Micro",
  8190. height: math.unit(1, "inch")
  8191. },
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(6, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Macro",
  8199. height: math.unit(60, "feet")
  8200. }
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(165, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/fluoresce/front.svg"
  8212. }
  8213. }
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(6, "cm")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 7 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(56, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(1.9, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(9 + 6 / 12, "feet"),
  8240. weight: math.unit(523, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/aurora/side.svg"
  8244. }
  8245. }
  8246. },
  8247. [
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(9 + 6 / 12, "feet")
  8251. },
  8252. {
  8253. name: "Macro",
  8254. height: math.unit(96, "feet"),
  8255. default: true
  8256. },
  8257. {
  8258. name: "Macro+",
  8259. height: math.unit(243, "feet")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(194, "cm"),
  8268. weight: math.unit(90, "kg"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/ranek/front.svg",
  8272. extra: 1862/1791,
  8273. bottom: 80/1942
  8274. }
  8275. },
  8276. back: {
  8277. height: math.unit(194, "cm"),
  8278. weight: math.unit(90, "kg"),
  8279. name: "Back",
  8280. image: {
  8281. source: "./media/characters/ranek/back.svg",
  8282. extra: 1853/1787,
  8283. bottom: 74/1927
  8284. }
  8285. },
  8286. feral: {
  8287. height: math.unit(30, "cm"),
  8288. weight: math.unit(1.6, "lbs"),
  8289. name: "Feral",
  8290. image: {
  8291. source: "./media/characters/ranek/feral.svg",
  8292. extra: 990/631,
  8293. bottom: 29/1019
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(194, "cm"),
  8301. default: true
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(100, "meters")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(5 + 6 / 12, "feet"),
  8314. weight: math.unit(153, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/andrew-cooper/front.svg"
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Nano",
  8324. height: math.unit(1, "mm")
  8325. },
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches")
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(5 + 6 / 12, "feet"),
  8333. default: true
  8334. }
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(6, "feet"),
  8342. weight: math.unit(180, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/akane-sato/front.svg",
  8346. extra: 1219 / 1140
  8347. }
  8348. },
  8349. back: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(180, "lbs"),
  8352. name: "Back",
  8353. image: {
  8354. source: "./media/characters/akane-sato/back.svg",
  8355. extra: 1219 / 1170
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(2.5, "meters")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(250, "meters"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Megamacro",
  8371. height: math.unit(25, "km")
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(65, "kg"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/rook/front.svg",
  8384. extra: 960 / 950
  8385. }
  8386. }
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(8.8, "feet")
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(88, "feet"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "Megamacro",
  8400. height: math.unit(8, "miles")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(12 + 2 / 12, "feet"),
  8409. weight: math.unit(808, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/prodigy/front.svg"
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(12 + 2 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(143, "feet")
  8425. },
  8426. {
  8427. name: "Macro+",
  8428. height: math.unit(400, "feet")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(225, "lbs"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/daniel/front.svg"
  8441. }
  8442. },
  8443. leaning: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(225, "lbs"),
  8446. name: "Leaning",
  8447. image: {
  8448. source: "./media/characters/daniel/leaning.svg"
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(1000, "feet"),
  8456. default: true
  8457. },
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(6, "feet"),
  8465. weight: math.unit(88, "lbs"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/chiros/front.svg",
  8469. extra: 306 / 226
  8470. }
  8471. },
  8472. side: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(88, "lbs"),
  8475. name: "Side",
  8476. image: {
  8477. source: "./media/characters/chiros/side.svg",
  8478. extra: 306 / 226
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(6, "cm"),
  8486. default: true
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(100, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/selka/front.svg",
  8499. extra: 947 / 887
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(5, "cm"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(8 + 3 / 12, "feet"),
  8516. weight: math.unit(424, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/verin/front.svg",
  8520. extra: 1845 / 1550
  8521. }
  8522. },
  8523. frontArmored: {
  8524. height: math.unit(8 + 3 / 12, "feet"),
  8525. weight: math.unit(424, "lbs"),
  8526. name: "Front (Armored)",
  8527. image: {
  8528. source: "./media/characters/verin/front-armor.svg",
  8529. extra: 1845 / 1550,
  8530. bottom: 0.01
  8531. }
  8532. },
  8533. back: {
  8534. height: math.unit(8 + 3 / 12, "feet"),
  8535. weight: math.unit(424, "lbs"),
  8536. name: "Back",
  8537. image: {
  8538. source: "./media/characters/verin/back.svg",
  8539. bottom: 0.1,
  8540. extra: 1
  8541. }
  8542. },
  8543. foot: {
  8544. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8545. name: "Foot",
  8546. image: {
  8547. source: "./media/characters/verin/foot.svg"
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(8 + 3 / 12, "feet")
  8555. },
  8556. {
  8557. name: "Minimacro",
  8558. height: math.unit(21, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(626, "feet")
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8569. {
  8570. front: {
  8571. height: math.unit(2.718, "meters"),
  8572. weight: math.unit(150, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/sovrim-terraquian/front.svg",
  8576. extra: 1752/1689,
  8577. bottom: 36/1788
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(2.718, "meters"),
  8582. weight: math.unit(150, "lbs"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/sovrim-terraquian/back.svg",
  8586. extra: 1698/1657,
  8587. bottom: 58/1756
  8588. }
  8589. },
  8590. tongue: {
  8591. height: math.unit(2.865, "feet"),
  8592. name: "Tongue",
  8593. image: {
  8594. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8595. }
  8596. },
  8597. hand: {
  8598. height: math.unit(1.61, "feet"),
  8599. name: "Hand",
  8600. image: {
  8601. source: "./media/characters/sovrim-terraquian/hand.svg"
  8602. }
  8603. },
  8604. foot: {
  8605. height: math.unit(1.05, "feet"),
  8606. name: "Foot",
  8607. image: {
  8608. source: "./media/characters/sovrim-terraquian/foot.svg"
  8609. }
  8610. },
  8611. footAlt: {
  8612. height: math.unit(0.88, "feet"),
  8613. name: "Foot (Alt)",
  8614. image: {
  8615. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Micro",
  8622. height: math.unit(2, "inches")
  8623. },
  8624. {
  8625. name: "Small",
  8626. height: math.unit(1, "meter")
  8627. },
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(Math.E, "meters"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(20, "meters")
  8636. },
  8637. {
  8638. name: "Macro+",
  8639. height: math.unit(400, "meters")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7, "feet"),
  8648. weight: math.unit(489, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/reece-silvermane/front.svg",
  8652. bottom: 0.02,
  8653. extra: 1
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(1.5, "miles"),
  8661. default: true
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(78, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/kane/front.svg",
  8674. extra: 978 / 899
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(2.1, "m"),
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(1, "km"),
  8686. default: true
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(200, "kg"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/tegon/front.svg",
  8699. bottom: 0.01,
  8700. extra: 1
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(1, "inch")
  8708. },
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(6 + 3 / 12, "feet"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(300, "feet")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(69, "miles")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8726. {
  8727. side: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(2304, "lbs"),
  8730. name: "Side",
  8731. image: {
  8732. source: "./media/characters/arcturax/side.svg",
  8733. extra: 790 / 376,
  8734. bottom: 0.01
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Micro",
  8741. height: math.unit(2, "inch")
  8742. },
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(6, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(39, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Megamacro",
  8754. height: math.unit(7, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(50, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/sentri/front.svg",
  8767. extra: 1750 / 1570,
  8768. bottom: 0.025
  8769. }
  8770. },
  8771. frontAlt: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(50, "lbs"),
  8774. name: "Front (Alt)",
  8775. image: {
  8776. source: "./media/characters/sentri/front-alt.svg",
  8777. extra: 1750 / 1570,
  8778. bottom: 0.025
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(15, "feet"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(2500, "feet")
  8791. }
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(5 + 8 / 12, "feet"),
  8799. weight: math.unit(130, "lbs"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/corvin/front.svg",
  8803. extra: 1803 / 1629
  8804. }
  8805. },
  8806. frontShirt: {
  8807. height: math.unit(5 + 8 / 12, "feet"),
  8808. weight: math.unit(130, "lbs"),
  8809. name: "Front (Shirt)",
  8810. image: {
  8811. source: "./media/characters/corvin/front-shirt.svg",
  8812. extra: 1803 / 1629
  8813. }
  8814. },
  8815. frontPoncho: {
  8816. height: math.unit(5 + 8 / 12, "feet"),
  8817. weight: math.unit(130, "lbs"),
  8818. name: "Front (Poncho)",
  8819. image: {
  8820. source: "./media/characters/corvin/front-poncho.svg",
  8821. extra: 1803 / 1629
  8822. }
  8823. },
  8824. side: {
  8825. height: math.unit(5 + 8 / 12, "feet"),
  8826. weight: math.unit(130, "lbs"),
  8827. name: "Side",
  8828. image: {
  8829. source: "./media/characters/corvin/side.svg",
  8830. extra: 1012 / 945
  8831. }
  8832. },
  8833. back: {
  8834. height: math.unit(5 + 8 / 12, "feet"),
  8835. weight: math.unit(130, "lbs"),
  8836. name: "Back",
  8837. image: {
  8838. source: "./media/characters/corvin/back.svg",
  8839. extra: 1803 / 1629
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(3, "inches")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(5 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(300, "feet"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Megamacro",
  8859. height: math.unit(500, "miles")
  8860. }
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(135, "lbs"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/q/front.svg",
  8872. extra: 854 / 752,
  8873. bottom: 0.005
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(6, "feet"),
  8878. weight: math.unit(130, "lbs"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/q/back.svg",
  8882. extra: 854 / 752
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(90, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Extra Macro",
  8894. height: math.unit(300, "feet"),
  8895. },
  8896. {
  8897. name: "BIG WALF",
  8898. height: math.unit(750, "feet"),
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(3, "feet"),
  8907. weight: math.unit(28, "lbs"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/citrine/front.svg"
  8911. }
  8912. }
  8913. },
  8914. [
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(3, "feet"),
  8918. default: true
  8919. }
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8924. {
  8925. front: {
  8926. height: math.unit(14, "feet"),
  8927. weight: math.unit(1450, "kg"),
  8928. preyCapacity: math.unit(15, "people"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/aura-starwind/front.svg",
  8932. extra: 1440/1327,
  8933. bottom: 11/1451
  8934. }
  8935. },
  8936. side: {
  8937. height: math.unit(14, "feet"),
  8938. weight: math.unit(1450, "kg"),
  8939. preyCapacity: math.unit(15, "people"),
  8940. name: "Side",
  8941. image: {
  8942. source: "./media/characters/aura-starwind/side.svg",
  8943. extra: 1654 / 1497
  8944. }
  8945. },
  8946. taur: {
  8947. height: math.unit(18, "feet"),
  8948. weight: math.unit(5500, "kg"),
  8949. preyCapacity: math.unit(50, "people"),
  8950. name: "Taur",
  8951. image: {
  8952. source: "./media/characters/aura-starwind/taur.svg",
  8953. extra: 1760 / 1650
  8954. }
  8955. },
  8956. feral: {
  8957. height: math.unit(46, "feet"),
  8958. weight: math.unit(25000, "kg"),
  8959. preyCapacity: math.unit(120, "people"),
  8960. name: "Feral",
  8961. image: {
  8962. source: "./media/characters/aura-starwind/feral.svg"
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(14, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(50, "meters")
  8975. },
  8976. {
  8977. name: "Megamacro",
  8978. height: math.unit(5000, "meters")
  8979. },
  8980. {
  8981. name: "Gigamacro",
  8982. height: math.unit(100000, "kilometers")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(2 + 7 / 12, "feet"),
  8991. weight: math.unit(32, "lbs"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/rivet/front.svg",
  8995. extra: 1716 / 1658,
  8996. bottom: 0.03
  8997. }
  8998. },
  8999. foot: {
  9000. height: math.unit(0.551, "feet"),
  9001. name: "Rivet's Foot",
  9002. image: {
  9003. source: "./media/characters/rivet/foot.svg"
  9004. },
  9005. rename: true
  9006. }
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(1.5, "inches"),
  9012. },
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(2 + 7 / 12, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Macro",
  9020. height: math.unit(85, "feet")
  9021. },
  9022. {
  9023. name: "Megamacro",
  9024. height: math.unit(2.2, "km")
  9025. }
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(5 + 9 / 12, "feet"),
  9033. weight: math.unit(150, "lbs"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/coffee/front.svg",
  9037. extra: 946/880,
  9038. bottom: 66/1012
  9039. }
  9040. },
  9041. foot: {
  9042. height: math.unit(1.29, "feet"),
  9043. name: "Foot",
  9044. image: {
  9045. source: "./media/characters/coffee/foot.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Micro",
  9052. height: math.unit(2, "inches"),
  9053. },
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 9 / 12, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(800, "feet")
  9062. },
  9063. {
  9064. name: "Megamacro",
  9065. height: math.unit(25, "miles")
  9066. }
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(200, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/chari-gal/front.svg",
  9078. extra: 1568 / 1385,
  9079. bottom: 0.047
  9080. }
  9081. },
  9082. gigantamax: {
  9083. height: math.unit(6 * 16, "feet"),
  9084. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9085. name: "Gigantamax",
  9086. image: {
  9087. source: "./media/characters/chari-gal/gigantamax.svg",
  9088. extra: 1124 / 888,
  9089. bottom: 0.03
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(5 + 7 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(200, "feet"),
  9101. default: true
  9102. }
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(150, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/nova/front.svg",
  9114. extra: 5000 / 4722,
  9115. bottom: 0.02
  9116. }
  9117. }
  9118. },
  9119. [
  9120. {
  9121. name: "Micro-",
  9122. height: math.unit(0.8, "inches")
  9123. },
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(2, "inches"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9133. {
  9134. koboldFront: {
  9135. height: math.unit(3 + 1 / 12, "feet"),
  9136. weight: math.unit(21.7, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/argent/kobold-front.svg",
  9140. extra: 1471 / 1331,
  9141. bottom: 100.8 / 1575.5
  9142. },
  9143. form: "kobold",
  9144. default: true
  9145. },
  9146. dragonFront: {
  9147. height: math.unit(75, "inches"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/argent/dragon-front.svg",
  9151. extra: 1389/1248,
  9152. bottom: 54/1443
  9153. },
  9154. form: "dragon",
  9155. },
  9156. dragonBack: {
  9157. height: math.unit(75, "inches"),
  9158. name: "Back",
  9159. image: {
  9160. source: "./media/characters/argent/dragon-back.svg",
  9161. extra: 1399/1271,
  9162. bottom: 23/1422
  9163. },
  9164. form: "dragon",
  9165. },
  9166. dragonDressed: {
  9167. height: math.unit(75, "inches"),
  9168. name: "Dressed",
  9169. image: {
  9170. source: "./media/characters/argent/dragon-dressed.svg",
  9171. extra: 1350/1215,
  9172. bottom: 26/1376
  9173. },
  9174. form: "dragon"
  9175. },
  9176. dragonHead: {
  9177. height: math.unit(23.5, "inches"),
  9178. name: "Head",
  9179. image: {
  9180. source: "./media/characters/argent/dragon-head.svg"
  9181. },
  9182. form: "dragon",
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(2, "inches"),
  9189. form: "kobold",
  9190. },
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(3 + 1 / 12, "feet"),
  9194. form: "kobold",
  9195. default: true
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(120, "feet"),
  9200. form: "kobold",
  9201. },
  9202. {
  9203. name: "Speck",
  9204. height: math.unit(1, "mm"),
  9205. form: "dragon",
  9206. },
  9207. {
  9208. name: "Tiny",
  9209. height: math.unit(1, "cm"),
  9210. form: "dragon",
  9211. },
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(5, "cm"),
  9215. form: "dragon",
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(75, "inches"),
  9220. form: "dragon",
  9221. default: true
  9222. },
  9223. {
  9224. name: "Extra Tall",
  9225. height: math.unit(9, "feet"),
  9226. form: "dragon",
  9227. },
  9228. {
  9229. name: "Inconvenient",
  9230. height: math.unit(5, "meters"),
  9231. form: "dragon",
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(70, "meters"),
  9236. form: "dragon",
  9237. },
  9238. {
  9239. name: "Macro+",
  9240. height: math.unit(250, "meters"),
  9241. form: "dragon",
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(20, "km"),
  9246. form: "dragon",
  9247. },
  9248. {
  9249. name: "Mountainous",
  9250. height: math.unit(100, "km"),
  9251. form: "dragon",
  9252. },
  9253. {
  9254. name: "Continental",
  9255. height: math.unit(2, "megameters"),
  9256. form: "dragon",
  9257. },
  9258. {
  9259. name: "Too Big",
  9260. height: math.unit(900, "megameters"),
  9261. form: "dragon",
  9262. },
  9263. ],
  9264. {
  9265. "kobold": {
  9266. name: "Kobold",
  9267. default: true
  9268. },
  9269. "dragon": {
  9270. name: "Dragon",
  9271. },
  9272. }
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9276. {
  9277. lamp: {
  9278. height: math.unit(7 * 1559 / 989, "feet"),
  9279. name: "Magic Lamp",
  9280. image: {
  9281. source: "./media/characters/mira-al-cul/lamp.svg",
  9282. extra: 1617 / 1559
  9283. }
  9284. },
  9285. front: {
  9286. height: math.unit(7, "feet"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/mira-al-cul/front.svg",
  9290. extra: 1044 / 990
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Heavily Restricted",
  9297. height: math.unit(7 * 1559 / 989, "feet")
  9298. },
  9299. {
  9300. name: "Freshly Freed",
  9301. height: math.unit(50 * 1559 / 989, "feet")
  9302. },
  9303. {
  9304. name: "World Encompassing",
  9305. height: math.unit(10000 * 1559 / 989, "miles")
  9306. },
  9307. {
  9308. name: "Galactic",
  9309. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9310. },
  9311. {
  9312. name: "Palmed Universe",
  9313. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Multiversal Matriarch",
  9318. height: math.unit(8.87e10, "yottameters")
  9319. },
  9320. {
  9321. name: "Void Mother",
  9322. height: math.unit(3.14e110, "yottaparsecs")
  9323. },
  9324. {
  9325. name: "Toying with Transcendence",
  9326. height: math.unit(1e307, "meters")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9332. {
  9333. front: {
  9334. height: math.unit(17 + 1 / 12, "feet"),
  9335. weight: math.unit(476.2 * 5, "lbs"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/kuro-shi-uchū/front.svg",
  9339. extra: 2329 / 1835,
  9340. bottom: 0.02
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Micro",
  9347. height: math.unit(2, "inches")
  9348. },
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(12, "meters")
  9352. },
  9353. {
  9354. name: "Planetary",
  9355. height: math.unit(0.00929, "AU"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Universal",
  9360. height: math.unit(20, "gigaparsecs")
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(5 + 2 / 12, "feet"),
  9369. weight: math.unit(120, "lbs"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/katherine/front.svg",
  9373. extra: 2075 / 1969
  9374. }
  9375. },
  9376. dress: {
  9377. height: math.unit(5 + 2 / 12, "feet"),
  9378. weight: math.unit(120, "lbs"),
  9379. name: "Dress",
  9380. image: {
  9381. source: "./media/characters/katherine/dress.svg",
  9382. extra: 2258 / 2064
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "inches"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(5 + 2 / 12, "feet")
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(100, "meters")
  9399. },
  9400. {
  9401. name: "Megamacro",
  9402. height: math.unit(80, "miles")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(7 + 8 / 12, "feet"),
  9411. weight: math.unit(250, "lbs"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/yevis/front.svg",
  9415. extra: 1938 / 1755
  9416. }
  9417. }
  9418. },
  9419. [
  9420. {
  9421. name: "Mortal",
  9422. height: math.unit(7 + 8 / 12, "feet")
  9423. },
  9424. {
  9425. name: "Battle",
  9426. height: math.unit(25 + 11 / 12, "feet")
  9427. },
  9428. {
  9429. name: "Wrath",
  9430. height: math.unit(1654 + 11 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Planet Destroyer",
  9434. height: math.unit(12000, "miles")
  9435. },
  9436. {
  9437. name: "Galaxy Conqueror",
  9438. height: math.unit(1.45, "zettameters"),
  9439. default: true
  9440. },
  9441. {
  9442. name: "Universal War",
  9443. height: math.unit(184, "gigaparsecs")
  9444. },
  9445. {
  9446. name: "Eternity War",
  9447. height: math.unit(1.98e55, "yottaparsecs")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(5 + 8 / 12, "feet"),
  9456. weight: math.unit(63, "kg"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/xavier/front.svg",
  9460. extra: 944 / 883
  9461. }
  9462. },
  9463. frontStretch: {
  9464. height: math.unit(5 + 8 / 12, "feet"),
  9465. weight: math.unit(63, "kg"),
  9466. name: "Stretching",
  9467. image: {
  9468. source: "./media/characters/xavier/front-stretch.svg",
  9469. extra: 962 / 820
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 8 / 12, "feet")
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(100, "meters"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "McLargeHuge",
  9485. height: math.unit(10, "miles")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(5 + 5 / 12, "feet"),
  9494. weight: math.unit(150, "lb"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/joshii/front.svg",
  9498. extra: 765 / 653,
  9499. bottom: 51 / 816
  9500. }
  9501. },
  9502. foot: {
  9503. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9504. name: "Foot",
  9505. image: {
  9506. source: "./media/characters/joshii/foot.svg"
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(5 + 5 / 12, "feet")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(785, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(24.5, "miles")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/goddess-elizabeth/front.svg",
  9539. extra: 1800 / 1525,
  9540. bottom: 0.005
  9541. }
  9542. },
  9543. foot: {
  9544. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9545. name: "Foot",
  9546. image: {
  9547. source: "./media/characters/goddess-elizabeth/foot.svg"
  9548. }
  9549. },
  9550. mouth: {
  9551. height: math.unit(6, "feet"),
  9552. name: "Mouth",
  9553. image: {
  9554. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Micro",
  9561. height: math.unit(12, "feet")
  9562. },
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(80, "miles"),
  9566. default: true
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(15000, "parsecs")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. weight: math.unit(144, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/kara/front.svg"
  9583. }
  9584. },
  9585. feet: {
  9586. height: math.unit(6 / 6.765, "feet"),
  9587. name: "Kara's Feet",
  9588. rename: true,
  9589. image: {
  9590. source: "./media/characters/kara/feet.svg"
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(5 + 9 / 12, "feet")
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(174, "feet"),
  9602. default: true
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(18, "feet"),
  9611. weight: math.unit(4050, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/tyrone/front.svg",
  9615. extra: 2405 / 2270,
  9616. bottom: 182 / 2587
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(18, "feet"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(300, "feet")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(15, "km")
  9633. },
  9634. {
  9635. name: "Gigamacro",
  9636. height: math.unit(500, "km")
  9637. },
  9638. {
  9639. name: "Teramacro",
  9640. height: math.unit(0.5, "gigameters")
  9641. },
  9642. {
  9643. name: "Omnimacro",
  9644. height: math.unit(1e252, "yottauniverse")
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(7 + 8 / 12, "feet"),
  9653. weight: math.unit(120, "lb"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/danny/front.svg",
  9657. extra: 1490 / 1350
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(7 + 8 / 12, "feet"),
  9662. weight: math.unit(120, "lb"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/danny/back.svg",
  9666. extra: 1490 / 1350
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(7 + 8 / 12, "feet"),
  9674. default: true
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(3.5, "inches"),
  9683. weight: math.unit(19, "grams"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/mallow/front.svg",
  9687. extra: 471 / 431
  9688. }
  9689. },
  9690. back: {
  9691. height: math.unit(3.5, "inches"),
  9692. weight: math.unit(19, "grams"),
  9693. name: "Back",
  9694. image: {
  9695. source: "./media/characters/mallow/back.svg",
  9696. extra: 471 / 431
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(3.5, "inches"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(9, "feet"),
  9713. weight: math.unit(230, "kg"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/starry-aqua/front.svg"
  9717. }
  9718. },
  9719. back: {
  9720. height: math.unit(9, "feet"),
  9721. weight: math.unit(230, "kg"),
  9722. name: "Back",
  9723. image: {
  9724. source: "./media/characters/starry-aqua/back.svg"
  9725. }
  9726. },
  9727. hand: {
  9728. height: math.unit(9 * 0.1168, "feet"),
  9729. name: "Hand",
  9730. image: {
  9731. source: "./media/characters/starry-aqua/hand.svg"
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(9 * 0.18, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/starry-aqua/foot.svg"
  9739. }
  9740. }
  9741. },
  9742. [
  9743. {
  9744. name: "Micro",
  9745. height: math.unit(3, "inches")
  9746. },
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(9, "feet")
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(300, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Megamacro",
  9758. height: math.unit(3200, "feet")
  9759. }
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(15, "feet"),
  9767. weight: math.unit(5026, "lb"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/luka-towers/front.svg",
  9771. extra: 1269/1133,
  9772. bottom: 51/1320
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(15, "feet"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Minimacro",
  9784. height: math.unit(25, "feet")
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(320, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(35000, "feet")
  9793. },
  9794. {
  9795. name: "Gigamacro",
  9796. height: math.unit(4000, "miles")
  9797. },
  9798. {
  9799. name: "Teramacro",
  9800. height: math.unit(15000, "miles")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(6, "feet"),
  9809. weight: math.unit(150, "lb"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/natalie-nightring/front.svg",
  9813. extra: 1,
  9814. bottom: 0.06
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Uh Oh",
  9821. height: math.unit(0.1, "mm")
  9822. },
  9823. {
  9824. name: "Small",
  9825. height: math.unit(3, "inches")
  9826. },
  9827. {
  9828. name: "Human Scale",
  9829. height: math.unit(6, "feet")
  9830. },
  9831. {
  9832. name: "Librarian",
  9833. height: math.unit(50, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Immense",
  9838. height: math.unit(200, "miles")
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(180, "lbs"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/danni-rosie/front.svg",
  9851. extra: 1260 / 1128,
  9852. bottom: 0.022
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Micro",
  9859. height: math.unit(2, "inches"),
  9860. default: true
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(220, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/samantha-kruse/front.svg",
  9873. extra: (985 / 935),
  9874. bottom: 0.03
  9875. }
  9876. },
  9877. frontUndressed: {
  9878. height: math.unit(5 + 9 / 12, "feet"),
  9879. weight: math.unit(220, "lb"),
  9880. name: "Front (Undressed)",
  9881. image: {
  9882. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9883. extra: (973 / 923),
  9884. bottom: 0.025
  9885. }
  9886. },
  9887. fat: {
  9888. height: math.unit(5 + 9 / 12, "feet"),
  9889. weight: math.unit(900, "lb"),
  9890. name: "Front (Fat)",
  9891. image: {
  9892. source: "./media/characters/samantha-kruse/fat.svg",
  9893. extra: 2688 / 2561
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(5 + 9 / 12, "feet"),
  9901. default: true
  9902. }
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9907. {
  9908. back: {
  9909. height: math.unit(5 + 4 / 12, "feet"),
  9910. weight: math.unit(4963, "lb"),
  9911. name: "Back",
  9912. image: {
  9913. source: "./media/characters/amelia-rosie/back.svg",
  9914. extra: 1113 / 963,
  9915. bottom: 0.01
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Level 0",
  9922. height: math.unit(5 + 4 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Level 1",
  9926. height: math.unit(164597, "feet"),
  9927. default: true
  9928. },
  9929. {
  9930. name: "Level 2",
  9931. height: math.unit(956243, "miles")
  9932. },
  9933. {
  9934. name: "Level 3",
  9935. height: math.unit(29421709423, "miles")
  9936. },
  9937. {
  9938. name: "Level 4",
  9939. height: math.unit(154, "lightyears")
  9940. },
  9941. {
  9942. name: "Level 5",
  9943. height: math.unit(4738272, "lightyears")
  9944. },
  9945. {
  9946. name: "Level 6",
  9947. height: math.unit(145787152896, "lightyears")
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9953. {
  9954. front: {
  9955. height: math.unit(5 + 11 / 12, "feet"),
  9956. weight: math.unit(65, "kg"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/rook-kitara/front.svg",
  9960. extra: 1347 / 1274,
  9961. bottom: 0.005
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Totally Unfair",
  9968. height: math.unit(1.8, "mm")
  9969. },
  9970. {
  9971. name: "Lap Rookie",
  9972. height: math.unit(1.4, "feet")
  9973. },
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 11 / 12, "feet"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "How Did This Happen",
  9981. height: math.unit(80, "miles")
  9982. }
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(7, "feet"),
  9990. weight: math.unit(300, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/pisces/front.svg",
  9994. extra: 2255 / 2115,
  9995. bottom: 0.03
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(7, "feet"),
  10000. weight: math.unit(300, "lb"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/pisces/back.svg",
  10004. extra: 2146 / 2055,
  10005. bottom: 0.04
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(7, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Swimming Pool",
  10017. height: math.unit(12.2, "meters")
  10018. },
  10019. {
  10020. name: "Olympic Swimming Pool",
  10021. height: math.unit(56.3, "meters")
  10022. },
  10023. {
  10024. name: "Lake Superior",
  10025. height: math.unit(93900, "meters")
  10026. },
  10027. {
  10028. name: "Mediterranean Sea",
  10029. height: math.unit(644457, "meters")
  10030. },
  10031. {
  10032. name: "World's Oceans",
  10033. height: math.unit(4567491, "meters")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(2.3, "meters"),
  10042. weight: math.unit(120, "kg"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/zelas/front.svg"
  10046. }
  10047. },
  10048. side: {
  10049. height: math.unit(2.3, "meters"),
  10050. weight: math.unit(120, "kg"),
  10051. name: "Side",
  10052. image: {
  10053. source: "./media/characters/zelas/side.svg"
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(2.3, "meters"),
  10058. weight: math.unit(120, "kg"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/zelas/back.svg"
  10062. }
  10063. },
  10064. foot: {
  10065. height: math.unit(1.116, "feet"),
  10066. name: "Foot",
  10067. image: {
  10068. source: "./media/characters/zelas/foot.svg"
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(2.3, "meters")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(30, "meters"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(1, "inch"),
  10089. weight: math.unit(0.21, "grams"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/talbot/front.svg",
  10093. extra: 594 / 544
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Micro",
  10100. height: math.unit(1, "inch"),
  10101. default: true
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10107. {
  10108. front: {
  10109. height: math.unit(3 + 3 / 12, "feet"),
  10110. weight: math.unit(51.8, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/fliss/front.svg",
  10114. extra: 840 / 640
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Teeny Tiny",
  10121. height: math.unit(1, "mm")
  10122. },
  10123. {
  10124. name: "Small",
  10125. height: math.unit(1, "inch"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Standard Sylveon",
  10130. height: math.unit(3 + 3 / 12, "feet")
  10131. },
  10132. {
  10133. name: "Large Nuisance",
  10134. height: math.unit(33, "feet")
  10135. },
  10136. {
  10137. name: "City Filler",
  10138. height: math.unit(3000, "feet")
  10139. },
  10140. {
  10141. name: "New Horizon",
  10142. height: math.unit(6000, "miles")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(5, "cm"),
  10151. weight: math.unit(1.94, "g"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/fleta/front.svg",
  10155. extra: 835 / 803
  10156. }
  10157. },
  10158. back: {
  10159. height: math.unit(5, "cm"),
  10160. weight: math.unit(1.94, "g"),
  10161. name: "Back",
  10162. image: {
  10163. source: "./media/characters/fleta/back.svg",
  10164. extra: 835 / 803
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(5, "cm"),
  10172. default: true
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(225, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/dominic/front.svg",
  10185. extra: 1770 / 1620,
  10186. bottom: 0.025
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(6, "feet"),
  10191. weight: math.unit(225, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/dominic/back.svg",
  10195. extra: 1745 / 1620,
  10196. bottom: 0.065
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Nano",
  10203. height: math.unit(0.1, "mm")
  10204. },
  10205. {
  10206. name: "Micro-",
  10207. height: math.unit(1, "mm")
  10208. },
  10209. {
  10210. name: "Micro",
  10211. height: math.unit(4, "inches")
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(6 + 4 / 12, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Macro",
  10220. height: math.unit(115, "feet")
  10221. },
  10222. {
  10223. name: "Macro+",
  10224. height: math.unit(955, "feet")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(8990, "feet")
  10229. },
  10230. {
  10231. name: "Gigmacro",
  10232. height: math.unit(9310, "miles")
  10233. },
  10234. {
  10235. name: "Teramacro",
  10236. height: math.unit(1567005010, "miles")
  10237. },
  10238. {
  10239. name: "Examacro",
  10240. height: math.unit(1425, "parsecs")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(400, "feet"),
  10249. weight: math.unit(44444444, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/major-colonel/front.svg"
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(400, "feet"),
  10257. weight: math.unit(44444444, "lb"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/major-colonel/back.svg"
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(400, "feet"),
  10268. default: true
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10274. {
  10275. catFront: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Front (Cat Side)",
  10279. image: {
  10280. source: "./media/characters/axel-lycan/cat-front.svg",
  10281. extra: 430 / 402,
  10282. bottom: 43 / 472.35
  10283. }
  10284. },
  10285. catBack: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(120, "lb"),
  10288. name: "Back (Cat Side)",
  10289. image: {
  10290. source: "./media/characters/axel-lycan/cat-back.svg",
  10291. extra: 447 / 419,
  10292. bottom: 23.3 / 469
  10293. }
  10294. },
  10295. wolfFront: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(120, "lb"),
  10298. name: "Front (Wolf Side)",
  10299. image: {
  10300. source: "./media/characters/axel-lycan/wolf-front.svg",
  10301. extra: 485 / 456,
  10302. bottom: 19 / 504
  10303. }
  10304. },
  10305. wolfBack: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(120, "lb"),
  10308. name: "Back (Wolf Side)",
  10309. image: {
  10310. source: "./media/characters/axel-lycan/wolf-back.svg",
  10311. extra: 475 / 438,
  10312. bottom: 39.2 / 514
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(1, "km"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(5 + 9 / 12, "feet"),
  10329. weight: math.unit(175, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/vanrel-hyena/front.svg",
  10333. extra: 1086 / 1010,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(5 + 9 / 12, "feet"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(103, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/abbott-absol/front.svg",
  10355. extra: 2010 / 1842
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Megamicro",
  10362. height: math.unit(0.1, "mm")
  10363. },
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(1, "inch")
  10367. },
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(6, "feet"),
  10371. default: true
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(264, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/hector/front.svg",
  10384. extra: 2280 / 2130,
  10385. bottom: 0.07
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(12.25, "foot"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Macro",
  10397. height: math.unit(160, "feet")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10403. {
  10404. front: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(150, "lb"),
  10407. name: "Front",
  10408. image: {
  10409. source: "./media/characters/sal/front.svg",
  10410. extra: 1846 / 1699,
  10411. bottom: 0.04
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(10, "miles"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10425. {
  10426. front: {
  10427. height: math.unit(3, "meters"),
  10428. weight: math.unit(450, "kg"),
  10429. name: "front",
  10430. image: {
  10431. source: "./media/characters/ranger/front.svg",
  10432. extra: 2401 / 2243,
  10433. bottom: 0.05
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(3, "meters"),
  10441. default: true
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(14, "feet"),
  10450. weight: math.unit(800, "kg"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/theresa/front.svg",
  10454. extra: 3575 / 3346,
  10455. bottom: 0.03
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(14, "feet"),
  10463. default: true
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(3, "kg"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/ine/front.svg",
  10476. extra: 678 / 539,
  10477. bottom: 0.023
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(2.265, "feet"),
  10485. default: true
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(5, "feet"),
  10494. weight: math.unit(30, "kg"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/vial/front.svg",
  10498. extra: 1365 / 1277,
  10499. bottom: 0.04
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(5, "feet"),
  10507. default: true
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10513. {
  10514. side: {
  10515. height: math.unit(3.4, "meters"),
  10516. weight: math.unit(1000, "lb"),
  10517. name: "Side",
  10518. image: {
  10519. source: "./media/characters/rovoska/side.svg",
  10520. extra: 4403 / 1515
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(3.4, "meters"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(8, "feet"),
  10537. weight: math.unit(315, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/gunner-rotthbauer/front.svg"
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(8, "feet"),
  10545. weight: math.unit(315, "lb"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/gunner-rotthbauer/back.svg"
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Micro",
  10555. height: math.unit(3.5, "inches")
  10556. },
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(8, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(250, "feet")
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(1, "AU")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(5 + 5 / 12, "feet"),
  10577. weight: math.unit(140, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/allatia/front.svg",
  10581. extra: 1227 / 1180,
  10582. bottom: 0.027
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(5 + 5 / 12, "feet")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(250, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(8, "miles")
  10599. }
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(120, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/tene/front.svg",
  10611. extra: 814/750,
  10612. bottom: 36/850
  10613. }
  10614. },
  10615. stomping: {
  10616. height: math.unit(2.025, "meters"),
  10617. weight: math.unit(120, "lb"),
  10618. name: "Stomping",
  10619. image: {
  10620. source: "./media/characters/tene/stomping.svg",
  10621. extra: 885/821,
  10622. bottom: 15/900
  10623. }
  10624. },
  10625. sitting: {
  10626. height: math.unit(1, "meter"),
  10627. weight: math.unit(120, "lb"),
  10628. name: "Sitting",
  10629. image: {
  10630. source: "./media/characters/tene/sitting.svg",
  10631. extra: 396/366,
  10632. bottom: 79/475
  10633. }
  10634. },
  10635. smiling: {
  10636. height: math.unit(1.2, "feet"),
  10637. name: "Smiling",
  10638. image: {
  10639. source: "./media/characters/tene/smiling.svg",
  10640. extra: 1364/1071,
  10641. bottom: 0/1364
  10642. }
  10643. },
  10644. smug: {
  10645. height: math.unit(1.3, "feet"),
  10646. name: "Smug",
  10647. image: {
  10648. source: "./media/characters/tene/smug.svg",
  10649. extra: 1323/1082,
  10650. bottom: 0/1323
  10651. }
  10652. },
  10653. feral: {
  10654. height: math.unit(3.9, "feet"),
  10655. weight: math.unit(250, "lb"),
  10656. name: "Feral",
  10657. image: {
  10658. source: "./media/characters/tene/feral.svg",
  10659. extra: 717 / 458,
  10660. bottom: 0.179
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(6, "feet")
  10668. },
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(300, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(5, "miles")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10682. {
  10683. side: {
  10684. height: math.unit(6, "feet"),
  10685. name: "Side",
  10686. image: {
  10687. source: "./media/characters/evander/side.svg",
  10688. extra: 877 / 477
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(0.83, "meters"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(12, "feet"),
  10705. weight: math.unit(1000, "lb"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10709. extra: 1762 / 1611
  10710. }
  10711. },
  10712. back: {
  10713. height: math.unit(12, "feet"),
  10714. weight: math.unit(1000, "lb"),
  10715. name: "Back",
  10716. image: {
  10717. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10718. extra: 1762 / 1611
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(12, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Kaiju",
  10730. height: math.unit(150, "feet")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/zero-alurus/front.svg"
  10743. }
  10744. },
  10745. back: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/zero-alurus/back.svg"
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(5 + 10 / 12, "feet")
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(60, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Macro+",
  10766. height: math.unit(450, "feet")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(200, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/mega-shi/front.svg",
  10779. extra: 1279 / 1250,
  10780. bottom: 0.02
  10781. }
  10782. },
  10783. back: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(200, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/mega-shi/back.svg",
  10789. extra: 1279 / 1250,
  10790. bottom: 0.02
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Micro",
  10797. height: math.unit(16 + 6 / 12, "feet")
  10798. },
  10799. {
  10800. name: "Third Dimension",
  10801. height: math.unit(40, "meters")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(660, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(10, "miles")
  10811. },
  10812. {
  10813. name: "Planetary Launch",
  10814. height: math.unit(500, "miles")
  10815. },
  10816. {
  10817. name: "Interstellar",
  10818. height: math.unit(1e9, "miles")
  10819. },
  10820. {
  10821. name: "Leaving the Universe",
  10822. height: math.unit(1, "gigaparsec")
  10823. },
  10824. {
  10825. name: "Travelling Universes",
  10826. height: math.unit(30e15, "parsecs")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5 + 4/12, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/odyssey/front.svg",
  10839. extra: 1747/1571,
  10840. bottom: 47/1794
  10841. }
  10842. },
  10843. side: {
  10844. height: math.unit(5.1, "feet"),
  10845. weight: math.unit(120, "lb"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/odyssey/side.svg",
  10849. extra: 1847/1619,
  10850. bottom: 47/1894
  10851. }
  10852. },
  10853. lounging: {
  10854. height: math.unit(1.464, "feet"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Lounging",
  10857. image: {
  10858. source: "./media/characters/odyssey/lounging.svg",
  10859. extra: 1235/837,
  10860. bottom: 551/1786
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(5 + 4 / 12, "feet")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(1, "km")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(3000, "km")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(1, "AU"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Omniversal",
  10884. height: math.unit(100e14, "lightyears")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(300, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/mekuto/front.svg",
  10897. extra: 921 / 832,
  10898. bottom: 0.03
  10899. }
  10900. },
  10901. hand: {
  10902. height: math.unit(6 / 10.24, "feet"),
  10903. name: "Hand",
  10904. image: {
  10905. source: "./media/characters/mekuto/hand.svg"
  10906. }
  10907. },
  10908. foot: {
  10909. height: math.unit(6 / 5.05, "feet"),
  10910. name: "Foot",
  10911. image: {
  10912. source: "./media/characters/mekuto/foot.svg"
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Minimicro",
  10919. height: math.unit(0.2, "inches")
  10920. },
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(1.5, "inches")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(5 + 11 / 12, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Minimacro",
  10932. height: math.unit(17 + 9 / 12, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(177.5, "feet")
  10937. },
  10938. {
  10939. name: "Megamacro",
  10940. height: math.unit(152, "miles")
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(6.5, "inches"),
  10949. weight: math.unit(13, "oz"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/dafydd-tomos/front.svg",
  10953. extra: 2990 / 2603,
  10954. bottom: 0.03
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Micro",
  10961. height: math.unit(6.5, "inches"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/splinter/front.svg",
  10975. extra: 2990 / 2882,
  10976. bottom: 0.04
  10977. }
  10978. },
  10979. back: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Back",
  10983. image: {
  10984. source: "./media/characters/splinter/back.svg",
  10985. extra: 2990 / 2882,
  10986. bottom: 0.04
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(6, "feet")
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(230, "meters"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(4 + 10 / 12, "feet"),
  11007. weight: math.unit(480, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/snow-gabumon/front.svg",
  11011. extra: 1140 / 963,
  11012. bottom: 0.058
  11013. }
  11014. },
  11015. back: {
  11016. height: math.unit(4 + 10 / 12, "feet"),
  11017. weight: math.unit(480, "lb"),
  11018. name: "Back",
  11019. image: {
  11020. source: "./media/characters/snow-gabumon/back.svg",
  11021. extra: 1115 / 962,
  11022. bottom: 0.041
  11023. }
  11024. },
  11025. frontUndresed: {
  11026. height: math.unit(4 + 10 / 12, "feet"),
  11027. weight: math.unit(480, "lb"),
  11028. name: "Front (Undressed)",
  11029. image: {
  11030. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11031. extra: 1061 / 960,
  11032. bottom: 0.045
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Micro",
  11039. height: math.unit(1, "inch")
  11040. },
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(4 + 10 / 12, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(200, "feet")
  11049. },
  11050. {
  11051. name: "Megamacro",
  11052. height: math.unit(120, "miles")
  11053. },
  11054. {
  11055. name: "Gigamacro",
  11056. height: math.unit(9800, "miles")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(1.7, "meters"),
  11065. weight: math.unit(140, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/moody/front.svg",
  11069. extra: 3226 / 3007,
  11070. bottom: 0.087
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Micro",
  11077. height: math.unit(1, "mm")
  11078. },
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(1.7, "meters"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(80, "meters")
  11087. },
  11088. {
  11089. name: "Macro+",
  11090. height: math.unit(500, "meters")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/zyas/front.svg",
  11103. extra: 1180 / 1120,
  11104. bottom: 0.045
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(10, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(500, "feet")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(5, "miles")
  11121. },
  11122. {
  11123. name: "Teramacro",
  11124. height: math.unit(150000, "miles")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/cuon/front.svg",
  11137. extra: 1390 / 1320,
  11138. bottom: 0.008
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Micro",
  11145. height: math.unit(3, "inches")
  11146. },
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(18 + 9 / 12, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(360, "feet")
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(360, "miles")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(2.4, "meters"),
  11167. weight: math.unit(70, "kg"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/nyanuxk/front.svg",
  11171. extra: 1172 / 1084,
  11172. bottom: 0.065
  11173. }
  11174. },
  11175. side: {
  11176. height: math.unit(2.4, "meters"),
  11177. weight: math.unit(70, "kg"),
  11178. name: "Side",
  11179. image: {
  11180. source: "./media/characters/nyanuxk/side.svg",
  11181. extra: 1190 / 1132,
  11182. bottom: 0.007
  11183. }
  11184. },
  11185. back: {
  11186. height: math.unit(2.4, "meters"),
  11187. weight: math.unit(70, "kg"),
  11188. name: "Back",
  11189. image: {
  11190. source: "./media/characters/nyanuxk/back.svg",
  11191. extra: 1200 / 1141,
  11192. bottom: 0.015
  11193. }
  11194. },
  11195. foot: {
  11196. height: math.unit(0.52, "meters"),
  11197. name: "Foot",
  11198. image: {
  11199. source: "./media/characters/nyanuxk/foot.svg"
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Micro",
  11206. height: math.unit(2, "cm")
  11207. },
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(2.4, "meters"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Smaller Macro",
  11215. height: math.unit(120, "meters")
  11216. },
  11217. {
  11218. name: "Bigger Macro",
  11219. height: math.unit(1.2, "km")
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(15, "kilometers")
  11224. },
  11225. {
  11226. name: "Gigamacro",
  11227. height: math.unit(2000, "km")
  11228. },
  11229. {
  11230. name: "Teramacro",
  11231. height: math.unit(500000, "km")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11237. {
  11238. side: {
  11239. height: math.unit(6, "feet"),
  11240. name: "Side",
  11241. image: {
  11242. source: "./media/characters/ailbhe/side.svg",
  11243. extra: 757 / 464,
  11244. bottom: 0.041
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(1.07, "meters"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(120, "kg"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/zevulfius/front.svg",
  11265. extra: 965 / 903
  11266. }
  11267. },
  11268. side: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(120, "kg"),
  11271. name: "Side",
  11272. image: {
  11273. source: "./media/characters/zevulfius/side.svg",
  11274. extra: 939 / 900
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(120, "kg"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/zevulfius/back.svg",
  11283. extra: 918 / 854,
  11284. bottom: 0.005
  11285. }
  11286. },
  11287. foot: {
  11288. height: math.unit(6 / 3.72, "feet"),
  11289. name: "Foot",
  11290. image: {
  11291. source: "./media/characters/zevulfius/foot.svg"
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(750, "meters")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(20, "km"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Gigamacro",
  11307. height: math.unit(2000, "km")
  11308. },
  11309. {
  11310. name: "Teramacro",
  11311. height: math.unit(250000, "km")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(100, "feet"),
  11320. weight: math.unit(350, "kg"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/rikes/front.svg",
  11324. extra: 1565 / 1483,
  11325. bottom: 0.017
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(100, "feet"),
  11333. default: true
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(8, "feet"),
  11342. weight: math.unit(356, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/adam-silver-mane/front.svg",
  11346. extra: 1036/937,
  11347. bottom: 63/1099
  11348. }
  11349. },
  11350. side: {
  11351. height: math.unit(8, "feet"),
  11352. weight: math.unit(356, "lb"),
  11353. name: "Side",
  11354. image: {
  11355. source: "./media/characters/adam-silver-mane/side.svg",
  11356. extra: 997/901,
  11357. bottom: 59/1056
  11358. }
  11359. },
  11360. frontNsfw: {
  11361. height: math.unit(8, "feet"),
  11362. weight: math.unit(356, "lb"),
  11363. name: "Front (NSFW)",
  11364. image: {
  11365. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11366. extra: 1036/937,
  11367. bottom: 63/1099
  11368. }
  11369. },
  11370. sideNsfw: {
  11371. height: math.unit(8, "feet"),
  11372. weight: math.unit(356, "lb"),
  11373. name: "Side (NSFW)",
  11374. image: {
  11375. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11376. extra: 997/901,
  11377. bottom: 59/1056
  11378. }
  11379. },
  11380. dick: {
  11381. height: math.unit(2.1, "feet"),
  11382. name: "Dick",
  11383. image: {
  11384. source: "./media/characters/adam-silver-mane/dick.svg"
  11385. }
  11386. },
  11387. taur: {
  11388. height: math.unit(16, "feet"),
  11389. weight: math.unit(1500, "kg"),
  11390. name: "Taur",
  11391. image: {
  11392. source: "./media/characters/adam-silver-mane/taur.svg",
  11393. extra: 1713 / 1571,
  11394. bottom: 0.01
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(8, "feet")
  11402. },
  11403. {
  11404. name: "Minimacro",
  11405. height: math.unit(80, "feet")
  11406. },
  11407. {
  11408. name: "MDA",
  11409. height: math.unit(80, "meters")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(800, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(8000, "feet")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(800, "miles")
  11423. },
  11424. {
  11425. name: "Teramacro",
  11426. height: math.unit(80000, "miles")
  11427. },
  11428. {
  11429. name: "Celestial",
  11430. height: math.unit(8e6, "miles")
  11431. },
  11432. {
  11433. name: "Star Dragon",
  11434. height: math.unit(800000, "parsecs")
  11435. },
  11436. {
  11437. name: "Godly",
  11438. height: math.unit(800, "teraparsecs")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/ky'owin/front.svg",
  11451. extra: 3888 / 3068,
  11452. bottom: 0.015
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(6 + 8 / 12, "feet")
  11460. },
  11461. {
  11462. name: "Large",
  11463. height: math.unit(68, "feet")
  11464. },
  11465. {
  11466. name: "Macro",
  11467. height: math.unit(132, "feet")
  11468. },
  11469. {
  11470. name: "Macro+",
  11471. height: math.unit(340, "feet")
  11472. },
  11473. {
  11474. name: "Macro++",
  11475. height: math.unit(680, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(1, "mile")
  11481. },
  11482. {
  11483. name: "Megamacro+",
  11484. height: math.unit(10, "miles")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(4, "feet"),
  11493. weight: math.unit(50, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/mal/front.svg",
  11497. extra: 785 / 724,
  11498. bottom: 0.07
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Micro",
  11505. height: math.unit(4, "inches")
  11506. },
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(4, "feet"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(200, "feet")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/jordan-deware/front.svg",
  11527. extra: 1191 / 1012
  11528. }
  11529. },
  11530. },
  11531. [
  11532. {
  11533. name: "Nano",
  11534. height: math.unit(0.01, "mm")
  11535. },
  11536. {
  11537. name: "Minimicro",
  11538. height: math.unit(1, "mm")
  11539. },
  11540. {
  11541. name: "Micro",
  11542. height: math.unit(0.5, "inches")
  11543. },
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(4, "feet"),
  11547. default: true
  11548. },
  11549. {
  11550. name: "Minimacro",
  11551. height: math.unit(40, "meters")
  11552. },
  11553. {
  11554. name: "Small Macro",
  11555. height: math.unit(400, "meters")
  11556. },
  11557. {
  11558. name: "Macro",
  11559. height: math.unit(4, "miles")
  11560. },
  11561. {
  11562. name: "Megamacro",
  11563. height: math.unit(40, "miles")
  11564. },
  11565. {
  11566. name: "Megamacro+",
  11567. height: math.unit(400, "miles")
  11568. },
  11569. {
  11570. name: "Gigamacro",
  11571. height: math.unit(400000, "miles")
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11577. {
  11578. side: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/kimiko/side.svg",
  11584. extra: 600 / 358
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(15, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(220, "feet")
  11597. },
  11598. {
  11599. name: "Macro+",
  11600. height: math.unit(1450, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(11500, "feet")
  11605. },
  11606. {
  11607. name: "Gigamacro",
  11608. height: math.unit(9500, "miles")
  11609. },
  11610. {
  11611. name: "Teramacro",
  11612. height: math.unit(2208005005, "miles")
  11613. },
  11614. {
  11615. name: "Examacro",
  11616. height: math.unit(2750, "parsecs")
  11617. },
  11618. {
  11619. name: "Zettamacro",
  11620. height: math.unit(101500, "parsecs")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(70, "kg"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/andrew-sleepy/front.svg"
  11633. }
  11634. },
  11635. side: {
  11636. height: math.unit(6, "feet"),
  11637. weight: math.unit(70, "kg"),
  11638. name: "Side",
  11639. image: {
  11640. source: "./media/characters/andrew-sleepy/side.svg"
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Micro",
  11647. height: math.unit(1, "mm"),
  11648. default: true
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/judio/front.svg",
  11661. extra: 1258 / 1110
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(5 + 6 / 12, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(1000, "feet"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Megamacro",
  11677. height: math.unit(10, "miles")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11683. {
  11684. frontDressed: {
  11685. height: math.unit(6, "feet"),
  11686. weight: math.unit(68, "kg"),
  11687. name: "Front (Dressed)",
  11688. image: {
  11689. source: "./media/characters/nomaxice/front-dressed.svg",
  11690. extra: 1137/824,
  11691. bottom: 74/1211
  11692. }
  11693. },
  11694. frontShorts: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(68, "kg"),
  11697. name: "Front (Shorts)",
  11698. image: {
  11699. source: "./media/characters/nomaxice/front-shorts.svg",
  11700. extra: 1137/824,
  11701. bottom: 74/1211
  11702. }
  11703. },
  11704. back: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(68, "kg"),
  11707. name: "Back",
  11708. image: {
  11709. source: "./media/characters/nomaxice/back.svg",
  11710. extra: 822/786,
  11711. bottom: 39/861
  11712. }
  11713. },
  11714. hand: {
  11715. height: math.unit(0.565, "feet"),
  11716. name: "Hand",
  11717. image: {
  11718. source: "./media/characters/nomaxice/hand.svg"
  11719. }
  11720. },
  11721. foot: {
  11722. height: math.unit(1, "feet"),
  11723. name: "Foot",
  11724. image: {
  11725. source: "./media/characters/nomaxice/foot.svg"
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Micro",
  11732. height: math.unit(8, "cm")
  11733. },
  11734. {
  11735. name: "Norm",
  11736. height: math.unit(1.82, "m")
  11737. },
  11738. {
  11739. name: "Norm+",
  11740. height: math.unit(8.8, "feet"),
  11741. default: true
  11742. },
  11743. {
  11744. name: "Big",
  11745. height: math.unit(8, "meters")
  11746. },
  11747. {
  11748. name: "Macro",
  11749. height: math.unit(18, "meters")
  11750. },
  11751. {
  11752. name: "Macro+",
  11753. height: math.unit(88, "meters")
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(12, "feet"),
  11762. weight: math.unit(1.5, "tons"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/dydros/front.svg",
  11766. extra: 863 / 800,
  11767. bottom: 0.015
  11768. }
  11769. },
  11770. back: {
  11771. height: math.unit(12, "feet"),
  11772. weight: math.unit(1.5, "tons"),
  11773. name: "Back",
  11774. image: {
  11775. source: "./media/characters/dydros/back.svg",
  11776. extra: 900 / 843,
  11777. bottom: 0.005
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(12, "feet"),
  11785. default: true
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(100, "kg"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/riggi/front.svg",
  11798. extra: 5787 / 5303
  11799. }
  11800. },
  11801. hyper: {
  11802. height: math.unit(6 * 5 / 3, "feet"),
  11803. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11804. name: "Hyper",
  11805. image: {
  11806. source: "./media/characters/riggi/hyper.svg",
  11807. extra: 3595 / 3485
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Small Macro",
  11814. height: math.unit(50, "feet")
  11815. },
  11816. {
  11817. name: "Default",
  11818. height: math.unit(200, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Loom",
  11823. height: math.unit(10000, "feet")
  11824. },
  11825. {
  11826. name: "Cruising Altitude",
  11827. height: math.unit(30000, "feet")
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(100, "miles")
  11832. },
  11833. {
  11834. name: "Continent Sized",
  11835. height: math.unit(2800, "miles")
  11836. },
  11837. {
  11838. name: "Earth Sized",
  11839. height: math.unit(8000, "miles")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(250, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/alexi/front.svg",
  11852. extra: 3483 / 3291,
  11853. bottom: 0.04
  11854. }
  11855. },
  11856. back: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(250, "lb"),
  11859. name: "Back",
  11860. image: {
  11861. source: "./media/characters/alexi/back.svg",
  11862. extra: 3533 / 3356,
  11863. bottom: 0.021
  11864. }
  11865. },
  11866. frontTransforming: {
  11867. height: math.unit(8.58, "feet"),
  11868. weight: math.unit(1300, "lb"),
  11869. name: "Transforming",
  11870. image: {
  11871. source: "./media/characters/alexi/front-transforming.svg",
  11872. extra: 437 / 409,
  11873. bottom: 19 / 458.66
  11874. }
  11875. },
  11876. frontTransformed: {
  11877. height: math.unit(12.5, "feet"),
  11878. weight: math.unit(4000, "lb"),
  11879. name: "Transformed",
  11880. image: {
  11881. source: "./media/characters/alexi/front-transformed.svg",
  11882. extra: 639 / 614,
  11883. bottom: 30.55 / 671
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Normal",
  11890. height: math.unit(14, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Minimacro",
  11895. height: math.unit(30, "meters")
  11896. },
  11897. {
  11898. name: "Macro",
  11899. height: math.unit(500, "meters")
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(9000, "km")
  11904. },
  11905. {
  11906. name: "Teramacro",
  11907. height: math.unit(384000, "km")
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11913. {
  11914. front: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Front",
  11918. image: {
  11919. source: "./media/characters/kayroo/front.svg",
  11920. extra: 1153 / 1038,
  11921. bottom: 0.06
  11922. }
  11923. },
  11924. foot: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Foot",
  11928. image: {
  11929. source: "./media/characters/kayroo/foot.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(8, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Minimacro",
  11941. height: math.unit(250, "feet")
  11942. },
  11943. {
  11944. name: "Macro",
  11945. height: math.unit(2800, "feet")
  11946. },
  11947. {
  11948. name: "Megamacro",
  11949. height: math.unit(5200, "feet")
  11950. },
  11951. {
  11952. name: "Gigamacro",
  11953. height: math.unit(27000, "feet")
  11954. },
  11955. {
  11956. name: "Omega",
  11957. height: math.unit(45000, "feet")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(18, "feet"),
  11966. weight: math.unit(5800, "lb"),
  11967. name: "Front",
  11968. image: {
  11969. source: "./media/characters/rhys/front.svg",
  11970. extra: 3386 / 3090,
  11971. bottom: 0.07
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(18, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Working Size",
  11983. height: math.unit(200, "feet")
  11984. },
  11985. {
  11986. name: "Demolition Size",
  11987. height: math.unit(2000, "feet")
  11988. },
  11989. {
  11990. name: "Maximum Licensed Size",
  11991. height: math.unit(5, "miles")
  11992. },
  11993. {
  11994. name: "Maximum Observed Size",
  11995. height: math.unit(10, "yottameters")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(250, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/toto/front.svg",
  12008. extra: 527 / 479,
  12009. bottom: 0.05
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(3, "feet")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(10, "feet")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(150, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(1200, "feet")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "King", species: ["lion"], tags: ["anthro"] },
  12035. {
  12036. back: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(150, "lb"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/king/back.svg"
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Micro",
  12048. height: math.unit(2, "inches")
  12049. },
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(8, "feet")
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(200, "feet"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(50, "miles")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(11, "feet"),
  12070. weight: math.unit(1400, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/cordite/front.svg",
  12074. extra: 1919/1827,
  12075. bottom: 40/1959
  12076. }
  12077. },
  12078. side: {
  12079. height: math.unit(11, "feet"),
  12080. weight: math.unit(1400, "lb"),
  12081. name: "Side",
  12082. image: {
  12083. source: "./media/characters/cordite/side.svg",
  12084. extra: 1908/1793,
  12085. bottom: 38/1946
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(11, "feet"),
  12090. weight: math.unit(1400, "lb"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/cordite/back.svg",
  12094. extra: 1938/1837,
  12095. bottom: 10/1948
  12096. }
  12097. },
  12098. feral: {
  12099. height: math.unit(2, "feet"),
  12100. weight: math.unit(90, "lb"),
  12101. name: "Feral",
  12102. image: {
  12103. source: "./media/characters/cordite/feral.svg",
  12104. extra: 1260 / 755,
  12105. bottom: 0.05
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(11, "feet"),
  12113. default: true
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/pianostrong/front.svg",
  12126. extra: 6577 / 6254,
  12127. bottom: 0.02
  12128. }
  12129. },
  12130. side: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Side",
  12134. image: {
  12135. source: "./media/characters/pianostrong/side.svg",
  12136. extra: 6106 / 5730
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/pianostrong/back.svg",
  12145. extra: 6085 / 5733,
  12146. bottom: 0.01
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(100, "feet")
  12154. },
  12155. {
  12156. name: "Macro+",
  12157. height: math.unit(300, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Macro++",
  12162. height: math.unit(1000, "feet")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/kona/front.svg",
  12175. extra: 2960 / 2629,
  12176. bottom: 0.005
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Normal",
  12183. height: math.unit(11 + 8 / 12, "feet")
  12184. },
  12185. {
  12186. name: "Macro",
  12187. height: math.unit(850, "feet"),
  12188. default: true
  12189. },
  12190. {
  12191. name: "Macro+",
  12192. height: math.unit(1.5, "km"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(80, "miles")
  12198. },
  12199. {
  12200. name: "Gigamacro",
  12201. height: math.unit(3500, "miles")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12207. {
  12208. side: {
  12209. height: math.unit(1.9, "meters"),
  12210. weight: math.unit(326, "kg"),
  12211. name: "Side",
  12212. image: {
  12213. source: "./media/characters/levi/side.svg",
  12214. extra: 1704 / 1334,
  12215. bottom: 0.02
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(1.9, "meters"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(20, "meters")
  12228. },
  12229. {
  12230. name: "Macro+",
  12231. height: math.unit(200, "meters")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(2, "km")
  12236. },
  12237. {
  12238. name: "Megamacro+",
  12239. height: math.unit(20, "km")
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(2500, "km")
  12244. },
  12245. {
  12246. name: "Gigamacro+",
  12247. height: math.unit(120000, "km")
  12248. },
  12249. {
  12250. name: "Teramacro",
  12251. height: math.unit(7.77e6, "km")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(6 + 4/12, "feet"),
  12260. weight: math.unit(190, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/bmc/front.svg",
  12264. extra: 1626/1472,
  12265. bottom: 79/1705
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(6 + 4/12, "feet"),
  12270. weight: math.unit(190, "lb"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/bmc/back.svg",
  12274. extra: 1640/1479,
  12275. bottom: 45/1685
  12276. }
  12277. },
  12278. frontArmor: {
  12279. height: math.unit(6 + 4/12, "feet"),
  12280. weight: math.unit(190, "lb"),
  12281. name: "Front-armor",
  12282. image: {
  12283. source: "./media/characters/bmc/front-armor.svg",
  12284. extra: 1538/1468,
  12285. bottom: 79/1617
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Human-sized",
  12292. height: math.unit(6 + 4 / 12, "feet")
  12293. },
  12294. {
  12295. name: "Interactive Size",
  12296. height: math.unit(25, "feet")
  12297. },
  12298. {
  12299. name: "Small",
  12300. height: math.unit(250, "feet")
  12301. },
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(1250, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Good Day",
  12309. height: math.unit(88, "miles")
  12310. },
  12311. {
  12312. name: "Largest Measured Size",
  12313. height: math.unit(105.960, "galaxies")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(20, "feet"),
  12322. weight: math.unit(2016, "kg"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/sven-the-kaiju/front.svg",
  12326. extra: 1277/1250,
  12327. bottom: 35/1312
  12328. }
  12329. },
  12330. mouth: {
  12331. height: math.unit(1.85, "feet"),
  12332. name: "Mouth",
  12333. image: {
  12334. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Fairy",
  12341. height: math.unit(6, "inches")
  12342. },
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(20, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Rampage",
  12350. height: math.unit(200, "feet")
  12351. },
  12352. {
  12353. name: "Archfey Forest Guardian",
  12354. height: math.unit(1, "mile")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(4, "meters"),
  12363. weight: math.unit(2, "tons"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/marik/front.svg",
  12367. extra: 1057 / 1003,
  12368. bottom: 0.08
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Normal",
  12375. height: math.unit(4, "meters"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(20, "meters")
  12381. },
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(50, "km")
  12385. },
  12386. {
  12387. name: "Gigamacro",
  12388. height: math.unit(100, "km")
  12389. },
  12390. {
  12391. name: "Alpha Macro",
  12392. height: math.unit(7.88e7, "yottameters")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(110, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/mel/front.svg",
  12405. extra: 736 / 617,
  12406. bottom: 0.017
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Pico",
  12413. height: math.unit(3, "pm")
  12414. },
  12415. {
  12416. name: "Nano",
  12417. height: math.unit(3, "nm")
  12418. },
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(0.3, "mm"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Micro+",
  12426. height: math.unit(3, "mm")
  12427. },
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(5 + 10.5 / 12, "feet")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12436. {
  12437. kaiju: {
  12438. height: math.unit(1.75, "meters"),
  12439. weight: math.unit(55, "kg"),
  12440. name: "Kaiju",
  12441. image: {
  12442. source: "./media/characters/lykonous/kaiju.svg",
  12443. extra: 1055 / 946,
  12444. bottom: 0.135
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(2.5, "meters"),
  12452. default: true
  12453. },
  12454. {
  12455. name: "Kaiju Dragon",
  12456. height: math.unit(60, "meters")
  12457. },
  12458. {
  12459. name: "Mega Kaiju",
  12460. height: math.unit(120, "km")
  12461. },
  12462. {
  12463. name: "Giga Kaiju",
  12464. height: math.unit(200, "megameters")
  12465. },
  12466. {
  12467. name: "Terra Kaiju",
  12468. height: math.unit(400, "gigameters")
  12469. },
  12470. {
  12471. name: "Kaiju Dragon God",
  12472. height: math.unit(13000, "exaparsecs")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/blü/front.svg",
  12485. extra: 1883 / 1564,
  12486. bottom: 0.031
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(13, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Big Boi",
  12498. height: math.unit(150, "meters")
  12499. },
  12500. {
  12501. name: "Mini Stomper",
  12502. height: math.unit(300, "meters")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(1000, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(11000, "meters")
  12511. },
  12512. {
  12513. name: "Gigamacro",
  12514. height: math.unit(11000, "km")
  12515. },
  12516. {
  12517. name: "Teramacro",
  12518. height: math.unit(420000, "km")
  12519. },
  12520. {
  12521. name: "Examacro",
  12522. height: math.unit(120, "parsecs")
  12523. },
  12524. {
  12525. name: "God Tho",
  12526. height: math.unit(98000000000, "parsecs")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12532. {
  12533. taurFront: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(200, "lb"),
  12536. name: "Taur (Front)",
  12537. image: {
  12538. source: "./media/characters/scales/taur-front.svg",
  12539. extra: 1,
  12540. bottom: 0.05
  12541. }
  12542. },
  12543. taurBack: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(200, "lb"),
  12546. name: "Taur (Back)",
  12547. image: {
  12548. source: "./media/characters/scales/taur-back.svg",
  12549. extra: 1,
  12550. bottom: 0.08
  12551. }
  12552. },
  12553. anthro: {
  12554. height: math.unit(6 * 7 / 12, "feet"),
  12555. weight: math.unit(100, "lb"),
  12556. name: "Anthro",
  12557. image: {
  12558. source: "./media/characters/scales/anthro.svg",
  12559. extra: 1,
  12560. bottom: 0.06
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12574. {
  12575. front: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Front",
  12579. image: {
  12580. source: "./media/characters/koragos/front.svg",
  12581. extra: 841 / 794,
  12582. bottom: 0.035
  12583. }
  12584. },
  12585. back: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Back",
  12589. image: {
  12590. source: "./media/characters/koragos/back.svg",
  12591. extra: 841 / 810,
  12592. bottom: 0.022
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(6 + 11 / 12, "feet"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(490, "feet")
  12605. },
  12606. {
  12607. name: "Megamacro",
  12608. height: math.unit(10, "miles")
  12609. },
  12610. {
  12611. name: "Gigamacro",
  12612. height: math.unit(50, "miles")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(250, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/xylrem/front.svg",
  12625. extra: 3323 / 3050,
  12626. bottom: 0.065
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Micro",
  12633. height: math.unit(4, "feet")
  12634. },
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(16, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(2720, "feet")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(25000, "miles")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(8, "feet"),
  12655. weight: math.unit(250, "kg"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/ikideru/front.svg",
  12659. extra: 930 / 870,
  12660. bottom: 0.087
  12661. }
  12662. },
  12663. back: {
  12664. height: math.unit(8, "feet"),
  12665. weight: math.unit(250, "kg"),
  12666. name: "Back",
  12667. image: {
  12668. source: "./media/characters/ikideru/back.svg",
  12669. extra: 919 / 852,
  12670. bottom: 0.055
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Rare",
  12677. height: math.unit(8, "feet"),
  12678. default: true
  12679. },
  12680. {
  12681. name: "Playful Loom",
  12682. height: math.unit(80, "feet")
  12683. },
  12684. {
  12685. name: "City Leaner",
  12686. height: math.unit(230, "feet")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(2500, "feet")
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(26400, "feet")
  12695. },
  12696. {
  12697. name: "Tectonic Shifter",
  12698. height: math.unit(1.7, "megameters")
  12699. },
  12700. {
  12701. name: "Planet Carer",
  12702. height: math.unit(21, "megameters")
  12703. },
  12704. {
  12705. name: "God",
  12706. height: math.unit(11157.22, "parsecs")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(120, "lb"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/neo/front.svg"
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(2, "inches"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Human Size",
  12730. height: math.unit(5 + 8 / 12, "feet")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(13 + 10 / 12, "feet"),
  12739. weight: math.unit(5320, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/chauncey-chantz/front.svg",
  12743. extra: 1587 / 1435,
  12744. bottom: 0.02
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(13 + 10 / 12, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(45, "feet")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(250, "miles")
  12761. },
  12762. {
  12763. name: "Planetary",
  12764. height: math.unit(10000, "miles")
  12765. },
  12766. {
  12767. name: "Galactic",
  12768. height: math.unit(40000, "parsecs")
  12769. },
  12770. {
  12771. name: "Universal",
  12772. height: math.unit(1, "yottameter")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/epifox/front.svg",
  12785. extra: 1,
  12786. bottom: 0.075
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Micro",
  12793. height: math.unit(6, "inches")
  12794. },
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(12, "feet"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro",
  12802. height: math.unit(3810, "feet")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(500, "miles")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(1.8796, "m"),
  12815. weight: math.unit(230, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/colin-t/front.svg",
  12819. extra: 1272 / 1193,
  12820. bottom: 0.07
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Micro",
  12827. height: math.unit(0.571, "meters")
  12828. },
  12829. {
  12830. name: "Normal",
  12831. height: math.unit(1.8796, "meters"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Tall",
  12836. height: math.unit(4, "meters")
  12837. },
  12838. {
  12839. name: "Macro",
  12840. height: math.unit(67.241, "meters")
  12841. },
  12842. {
  12843. name: "Megamacro",
  12844. height: math.unit(371.856, "meters")
  12845. },
  12846. {
  12847. name: "Planetary",
  12848. height: math.unit(12631.5689, "km")
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12854. {
  12855. front: {
  12856. height: math.unit(1.85, "meters"),
  12857. weight: math.unit(80, "kg"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/matvei/front.svg",
  12861. extra: 614 / 594,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(1.85, "meters"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(5 + 9 / 12, "feet"),
  12879. weight: math.unit(70, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/quincy/front.svg",
  12883. extra: 3041 / 2751
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(5 + 9 / 12, "feet"),
  12888. weight: math.unit(70, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/quincy/back.svg",
  12892. extra: 3041 / 2751
  12893. }
  12894. },
  12895. flying: {
  12896. height: math.unit(5 + 4 / 12, "feet"),
  12897. weight: math.unit(70, "lb"),
  12898. name: "Flying",
  12899. image: {
  12900. source: "./media/characters/quincy/flying.svg",
  12901. extra: 1044 / 930
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(3, "cm")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(5 + 9 / 12, "feet")
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(200, "meters"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(1000, "meters")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(3 + 11/12, "feet"),
  12930. weight: math.unit(50, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/vanrel/front.svg",
  12934. extra: 1104/949,
  12935. bottom: 52/1156
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(3 + 11/12, "feet"),
  12940. weight: math.unit(50, "lb"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/vanrel/back.svg",
  12944. extra: 1119/976,
  12945. bottom: 37/1156
  12946. }
  12947. },
  12948. tome: {
  12949. height: math.unit(1.35, "feet"),
  12950. weight: math.unit(10, "lb"),
  12951. name: "Vanrel's Tome",
  12952. rename: true,
  12953. image: {
  12954. source: "./media/characters/vanrel/tome.svg"
  12955. }
  12956. },
  12957. beans: {
  12958. height: math.unit(0.89, "feet"),
  12959. name: "Beans",
  12960. image: {
  12961. source: "./media/characters/vanrel/beans.svg"
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(3 + 11/12, "feet"),
  12969. default: true
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 5 / 12, "feet"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/kuiper-vanrel/front.svg",
  12981. extra: 1219/1169,
  12982. bottom: 69/1288
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(7 + 5 / 12, "feet"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/kuiper-vanrel/back.svg",
  12990. extra: 1236/1193,
  12991. bottom: 27/1263
  12992. }
  12993. },
  12994. foot: {
  12995. height: math.unit(0.55, "meters"),
  12996. name: "Foot",
  12997. image: {
  12998. source: "./media/characters/kuiper-vanrel/foot.svg",
  12999. }
  13000. },
  13001. battle: {
  13002. height: math.unit(6.824, "feet"),
  13003. name: "Battle",
  13004. image: {
  13005. source: "./media/characters/kuiper-vanrel/battle.svg",
  13006. extra: 1466 / 1327,
  13007. bottom: 29 / 1492.5
  13008. }
  13009. },
  13010. meerkui: {
  13011. height: math.unit(18, "inches"),
  13012. name: "Meerkui",
  13013. image: {
  13014. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13015. extra: 1354/1289,
  13016. bottom: 69/1423
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(7 + 5 / 12, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(8 + 5 / 12, "feet"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/keset-vanrel/front.svg",
  13036. extra: 1231/1148,
  13037. bottom: 82/1313
  13038. }
  13039. },
  13040. back: {
  13041. height: math.unit(8 + 5 / 12, "feet"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/keset-vanrel/back.svg",
  13045. extra: 1240/1174,
  13046. bottom: 33/1273
  13047. }
  13048. },
  13049. hand: {
  13050. height: math.unit(0.6, "meters"),
  13051. name: "Hand",
  13052. image: {
  13053. source: "./media/characters/keset-vanrel/hand.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(0.94978, "meters"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/keset-vanrel/foot.svg"
  13061. }
  13062. },
  13063. battle: {
  13064. height: math.unit(7.408, "feet"),
  13065. name: "Battle",
  13066. image: {
  13067. source: "./media/characters/keset-vanrel/battle.svg",
  13068. extra: 1890 / 1386,
  13069. bottom: 73.28 / 1970
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(8 + 5 / 12, "feet"),
  13077. default: true
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/neos/front.svg",
  13090. extra: 1696 / 992,
  13091. bottom: 0.14
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(54, "cm"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(100, "m")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(10, "km")
  13108. },
  13109. {
  13110. name: "Megamacro+",
  13111. height: math.unit(100, "km")
  13112. },
  13113. {
  13114. name: "Gigamacro",
  13115. height: math.unit(100, "Mm")
  13116. },
  13117. {
  13118. name: "Teramacro",
  13119. height: math.unit(100, "Gm")
  13120. },
  13121. {
  13122. name: "Examacro",
  13123. height: math.unit(100, "Em")
  13124. },
  13125. {
  13126. name: "Godly",
  13127. height: math.unit(10000, "Ym")
  13128. },
  13129. {
  13130. name: "Beyond Godly",
  13131. height: math.unit(25, "multiverses")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13137. {
  13138. feminine: {
  13139. height: math.unit(5, "feet"),
  13140. weight: math.unit(100, "lb"),
  13141. name: "Feminine",
  13142. image: {
  13143. source: "./media/characters/sammy-mouse/feminine.svg",
  13144. extra: 2526 / 2425,
  13145. bottom: 0.123
  13146. }
  13147. },
  13148. masculine: {
  13149. height: math.unit(5, "feet"),
  13150. weight: math.unit(100, "lb"),
  13151. name: "Masculine",
  13152. image: {
  13153. source: "./media/characters/sammy-mouse/masculine.svg",
  13154. extra: 2526 / 2425,
  13155. bottom: 0.123
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Micro",
  13162. height: math.unit(5, "inches")
  13163. },
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(5, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(60, "feet")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(4, "feet"),
  13180. weight: math.unit(50, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/kole/front.svg",
  13184. extra: 1423 / 1303,
  13185. bottom: 0.025
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(4, "feet"),
  13190. weight: math.unit(50, "lb"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/kole/back.svg",
  13194. extra: 1426 / 1280,
  13195. bottom: 0.02
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(4, "feet"),
  13203. default: true
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(2.5, "feet"),
  13212. weight: math.unit(32, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/rufran/front.svg",
  13216. extra: 1313/885,
  13217. bottom: 94/1407
  13218. }
  13219. },
  13220. side: {
  13221. height: math.unit(2.5, "feet"),
  13222. weight: math.unit(32, "lb"),
  13223. name: "Side",
  13224. image: {
  13225. source: "./media/characters/rufran/side.svg",
  13226. extra: 1109/852,
  13227. bottom: 118/1227
  13228. }
  13229. },
  13230. back: {
  13231. height: math.unit(2.5, "feet"),
  13232. weight: math.unit(32, "lb"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/rufran/back.svg",
  13236. extra: 1280/878,
  13237. bottom: 131/1411
  13238. }
  13239. },
  13240. mouth: {
  13241. height: math.unit(1.13, "feet"),
  13242. name: "Mouth",
  13243. image: {
  13244. source: "./media/characters/rufran/mouth.svg"
  13245. }
  13246. },
  13247. foot: {
  13248. height: math.unit(1.33, "feet"),
  13249. name: "Foot",
  13250. image: {
  13251. source: "./media/characters/rufran/foot.svg"
  13252. }
  13253. },
  13254. koboldFront: {
  13255. height: math.unit(2 + 6 / 12, "feet"),
  13256. weight: math.unit(20, "lb"),
  13257. name: "Front (Kobold)",
  13258. image: {
  13259. source: "./media/characters/rufran/kobold-front.svg",
  13260. extra: 2041 / 1839,
  13261. bottom: 0.055
  13262. }
  13263. },
  13264. koboldBack: {
  13265. height: math.unit(2 + 6 / 12, "feet"),
  13266. weight: math.unit(20, "lb"),
  13267. name: "Back (Kobold)",
  13268. image: {
  13269. source: "./media/characters/rufran/kobold-back.svg",
  13270. extra: 2054 / 1839,
  13271. bottom: 0.01
  13272. }
  13273. },
  13274. koboldHand: {
  13275. height: math.unit(0.2166, "meters"),
  13276. name: "Hand (Kobold)",
  13277. image: {
  13278. source: "./media/characters/rufran/kobold-hand.svg"
  13279. }
  13280. },
  13281. koboldFoot: {
  13282. height: math.unit(0.185, "meters"),
  13283. name: "Foot (Kobold)",
  13284. image: {
  13285. source: "./media/characters/rufran/kobold-foot.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1, "inch")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(2 + 6 / 12, "feet"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Big",
  13301. height: math.unit(60, "feet")
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(325, "feet")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(0.3, "meters"),
  13314. weight: math.unit(3.5, "kg"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/chip/front.svg",
  13318. extra: 748 / 674
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Micro",
  13325. height: math.unit(1, "inch"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13332. {
  13333. side: {
  13334. height: math.unit(2.3, "meters"),
  13335. weight: math.unit(3500, "lb"),
  13336. name: "Side",
  13337. image: {
  13338. source: "./media/characters/torvid/side.svg",
  13339. extra: 1972 / 722,
  13340. bottom: 0.035
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(2.3, "meters"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(2, "meters"),
  13357. weight: math.unit(150.5, "kg"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/susan/front.svg",
  13361. extra: 693 / 635,
  13362. bottom: 0.05
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(505, "miles"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/raindrops/front.svg",
  13383. extra: 2655 / 2461,
  13384. bottom: 49 / 2705
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(150, "lb"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/raindrops/back.svg",
  13393. extra: 2574 / 2400,
  13394. bottom: 65 / 2634
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Micro",
  13401. height: math.unit(6, "inches")
  13402. },
  13403. {
  13404. name: "Normal",
  13405. height: math.unit(6 + 2 / 12, "feet")
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(131, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(15, "miles")
  13415. },
  13416. {
  13417. name: "Gigamacro",
  13418. height: math.unit(4000, "miles")
  13419. },
  13420. {
  13421. name: "Teramacro",
  13422. height: math.unit(315000, "miles")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(2.794, "meters"),
  13431. weight: math.unit(325, "kg"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/tezwa/front.svg",
  13435. extra: 2083 / 1906,
  13436. bottom: 0.031
  13437. }
  13438. },
  13439. foot: {
  13440. height: math.unit(0.687, "meters"),
  13441. name: "Foot",
  13442. image: {
  13443. source: "./media/characters/tezwa/foot.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(9 + 2 / 12, "feet"),
  13451. default: true
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(58, "feet"),
  13460. weight: math.unit(89000, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/typhus/front.svg",
  13464. extra: 816 / 800,
  13465. bottom: 0.065
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(58, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(12, "feet"),
  13482. weight: math.unit(6, "tonnes"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/lyra-von-wulf/front.svg",
  13486. extra: 1,
  13487. bottom: 0.10
  13488. }
  13489. },
  13490. frontMecha: {
  13491. height: math.unit(12, "feet"),
  13492. weight: math.unit(12, "tonnes"),
  13493. name: "Front (Mecha)",
  13494. image: {
  13495. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13496. extra: 1,
  13497. bottom: 0.042
  13498. }
  13499. },
  13500. maw: {
  13501. height: math.unit(2.2, "feet"),
  13502. name: "Maw",
  13503. image: {
  13504. source: "./media/characters/lyra-von-wulf/maw.svg"
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(12, "feet"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Classic",
  13516. height: math.unit(50, "feet")
  13517. },
  13518. {
  13519. name: "Macro",
  13520. height: math.unit(500, "feet")
  13521. },
  13522. {
  13523. name: "Megamacro",
  13524. height: math.unit(1, "mile")
  13525. },
  13526. {
  13527. name: "Gigamacro",
  13528. height: math.unit(400, "miles")
  13529. },
  13530. {
  13531. name: "Teramacro",
  13532. height: math.unit(22000, "miles")
  13533. },
  13534. {
  13535. name: "Solarmacro",
  13536. height: math.unit(8600000, "miles")
  13537. },
  13538. {
  13539. name: "Galactic",
  13540. height: math.unit(1057000, "lightyears")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13546. {
  13547. front: {
  13548. height: math.unit(6 + 10 / 12, "feet"),
  13549. weight: math.unit(150, "lb"),
  13550. name: "Front",
  13551. image: {
  13552. source: "./media/characters/dixon/front.svg",
  13553. extra: 3361 / 3209,
  13554. bottom: 0.01
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Normal",
  13561. height: math.unit(6 + 10 / 12, "feet"),
  13562. default: true
  13563. },
  13564. {
  13565. name: "Big",
  13566. height: math.unit(12, "meters")
  13567. },
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(500, "meters")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(2, "km")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(185, "cm"),
  13583. weight: math.unit(68, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/kauko/front.svg",
  13587. extra: 1455 / 1421,
  13588. bottom: 0.03
  13589. }
  13590. },
  13591. back: {
  13592. height: math.unit(185, "cm"),
  13593. weight: math.unit(68, "kg"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/kauko/back.svg",
  13597. extra: 1455 / 1421,
  13598. bottom: 0.004
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(185, "cm"),
  13606. default: true
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "kg"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/varg/front.svg",
  13619. extra: 1108 / 1018,
  13620. bottom: 0.0375
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(5, "meters")
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(200, "meters")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(20, "kilometers")
  13636. },
  13637. {
  13638. name: "True Size",
  13639. height: math.unit(211, "km"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Gigamacro",
  13644. height: math.unit(1000, "km")
  13645. },
  13646. {
  13647. name: "Gigamacro+",
  13648. height: math.unit(8000, "km")
  13649. },
  13650. {
  13651. name: "Teramacro",
  13652. height: math.unit(1000000, "km")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(7 + 7 / 12, "feet"),
  13661. weight: math.unit(267, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/dayza/front.svg",
  13665. extra: 1262 / 1200,
  13666. bottom: 0.035
  13667. }
  13668. },
  13669. side: {
  13670. height: math.unit(7 + 7 / 12, "feet"),
  13671. weight: math.unit(267, "lb"),
  13672. name: "Side",
  13673. image: {
  13674. source: "./media/characters/dayza/side.svg",
  13675. extra: 1295 / 1245,
  13676. bottom: 0.05
  13677. }
  13678. },
  13679. back: {
  13680. height: math.unit(7 + 7 / 12, "feet"),
  13681. weight: math.unit(267, "lb"),
  13682. name: "Back",
  13683. image: {
  13684. source: "./media/characters/dayza/back.svg",
  13685. extra: 1241 / 1170
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(7 + 7 / 12, "feet"),
  13693. default: true
  13694. },
  13695. {
  13696. name: "Macro",
  13697. height: math.unit(155, "feet")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6 + 5 / 12, "feet"),
  13706. weight: math.unit(160, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/xanthos/front.svg",
  13710. extra: 1,
  13711. bottom: 0.04
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(6 + 5 / 12, "feet"),
  13716. weight: math.unit(160, "lb"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/xanthos/back.svg",
  13720. extra: 1,
  13721. bottom: 0.03
  13722. }
  13723. },
  13724. hand: {
  13725. height: math.unit(0.928, "feet"),
  13726. name: "Hand",
  13727. image: {
  13728. source: "./media/characters/xanthos/hand.svg"
  13729. }
  13730. },
  13731. foot: {
  13732. height: math.unit(1.286, "feet"),
  13733. name: "Foot",
  13734. image: {
  13735. source: "./media/characters/xanthos/foot.svg"
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(6 + 5 / 12, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Normal+",
  13747. height: math.unit(6, "meters")
  13748. },
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(40, "feet")
  13752. },
  13753. {
  13754. name: "Macro+",
  13755. height: math.unit(200, "meters")
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(20, "km")
  13760. },
  13761. {
  13762. name: "Megamacro+",
  13763. height: math.unit(100, "km")
  13764. },
  13765. {
  13766. name: "Gigamacro",
  13767. height: math.unit(200, "megameters")
  13768. },
  13769. {
  13770. name: "Gigamacro+",
  13771. height: math.unit(1.5, "gigameters")
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6 + 3 / 12, "feet"),
  13780. weight: math.unit(215, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/grynn/front.svg",
  13784. extra: 4627 / 4209,
  13785. bottom: 0.047
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(6, "inches")
  13793. },
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(6 + 3 / 12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Big",
  13801. height: math.unit(104, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(944, "feet")
  13806. },
  13807. {
  13808. name: "Macro+",
  13809. height: math.unit(9480, "feet")
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(78752, "feet")
  13814. },
  13815. {
  13816. name: "Megamacro+",
  13817. height: math.unit(630128, "feet")
  13818. },
  13819. {
  13820. name: "Megamacro++",
  13821. height: math.unit(3150695, "feet")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(7 + 5 / 12, "feet"),
  13830. weight: math.unit(450, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/mocha-aura/front.svg",
  13834. extra: 1907 / 1817,
  13835. bottom: 0.04
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(7 + 5 / 12, "feet"),
  13840. weight: math.unit(450, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/mocha-aura/back.svg",
  13844. extra: 1900 / 1825,
  13845. bottom: 0.045
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Nano",
  13852. height: math.unit(1, "nm")
  13853. },
  13854. {
  13855. name: "Megamicro",
  13856. height: math.unit(1, "mm")
  13857. },
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(3, "inches")
  13861. },
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(7 + 5 / 12, "feet"),
  13865. default: true
  13866. },
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(30, "feet")
  13870. },
  13871. {
  13872. name: "Megamacro",
  13873. height: math.unit(3500, "feet")
  13874. },
  13875. {
  13876. name: "Teramacro",
  13877. height: math.unit(500000, "miles")
  13878. },
  13879. {
  13880. name: "Petamacro",
  13881. height: math.unit(50000000000000000, "parsecs")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(150, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/ilisha-devya/front.svg",
  13894. extra: 1053/1049,
  13895. bottom: 270/1323
  13896. }
  13897. },
  13898. back: {
  13899. height: math.unit(6, "feet"),
  13900. weight: math.unit(150, "lb"),
  13901. name: "Back",
  13902. image: {
  13903. source: "./media/characters/ilisha-devya/back.svg",
  13904. extra: 1131/1128,
  13905. bottom: 39/1170
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(500, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Megamacro",
  13917. height: math.unit(10, "miles")
  13918. },
  13919. {
  13920. name: "Gigamacro",
  13921. height: math.unit(100000, "miles")
  13922. },
  13923. {
  13924. name: "Examacro",
  13925. height: math.unit(1e9, "lightyears")
  13926. },
  13927. {
  13928. name: "Omniversal",
  13929. height: math.unit(1e33, "lightyears")
  13930. },
  13931. {
  13932. name: "Beyond Infinite",
  13933. height: math.unit(1e100, "lightyears")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13939. {
  13940. Side: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(150, "lb"),
  13943. name: "Side",
  13944. image: {
  13945. source: "./media/characters/mira/side.svg",
  13946. extra: 900 / 799,
  13947. bottom: 0.02
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Human Size",
  13954. height: math.unit(6, "feet")
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(100, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Megamacro",
  13963. height: math.unit(10, "miles")
  13964. },
  13965. {
  13966. name: "Gigamacro",
  13967. height: math.unit(25000, "miles")
  13968. },
  13969. {
  13970. name: "Teramacro",
  13971. height: math.unit(300, "AU")
  13972. },
  13973. {
  13974. name: "Full Size",
  13975. height: math.unit(4.5e10, "lightyears")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/holly/front.svg",
  13988. extra: 639 / 606
  13989. }
  13990. },
  13991. back: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Back",
  13995. image: {
  13996. source: "./media/characters/holly/back.svg",
  13997. extra: 623 / 598
  13998. }
  13999. },
  14000. frontWorking: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Front (Working)",
  14004. image: {
  14005. source: "./media/characters/holly/front-working.svg",
  14006. extra: 607 / 577,
  14007. bottom: 0.048
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(12 + 3 / 12, "feet"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/porter/front.svg",
  14028. extra: 1,
  14029. bottom: 0.01
  14030. }
  14031. },
  14032. frontRobes: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Front (Robes)",
  14036. image: {
  14037. source: "./media/characters/porter/front-robes.svg",
  14038. extra: 1.01,
  14039. bottom: 0.01
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(11 + 9 / 12, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14053. {
  14054. legendary: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Legendary",
  14058. image: {
  14059. source: "./media/characters/lucy/legendary.svg",
  14060. extra: 1355 / 1100,
  14061. bottom: 0.045
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Legendary",
  14068. height: math.unit(86882 * 2, "miles"),
  14069. default: true
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14075. {
  14076. front: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front",
  14080. image: {
  14081. source: "./media/characters/drusilla/front.svg",
  14082. extra: 678 / 635,
  14083. bottom: 0.03
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/drusilla/back.svg",
  14092. extra: 678 / 635,
  14093. bottom: 0.005
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(100, "feet")
  14101. },
  14102. {
  14103. name: "Canon Height",
  14104. height: math.unit(2000, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(180, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/renard-thatch/front.svg",
  14118. extra: 2411 / 2275,
  14119. bottom: 0.01
  14120. }
  14121. },
  14122. frontPosing: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(180, "lb"),
  14125. name: "Front (Posing)",
  14126. image: {
  14127. source: "./media/characters/renard-thatch/front-posing.svg",
  14128. extra: 2381 / 2261,
  14129. bottom: 0.01
  14130. }
  14131. },
  14132. back: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(180, "lb"),
  14135. name: "Back",
  14136. image: {
  14137. source: "./media/characters/renard-thatch/back.svg",
  14138. extra: 2428 / 2288
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Micro",
  14145. height: math.unit(3, "inches")
  14146. },
  14147. {
  14148. name: "Default",
  14149. height: math.unit(6, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Macro",
  14154. height: math.unit(75, "feet")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(1450, "feet"),
  14163. weight: math.unit(1.21e6, "tons"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/sekvra/front.svg",
  14167. extra: 1193/1190,
  14168. bottom: 78/1271
  14169. }
  14170. },
  14171. side: {
  14172. height: math.unit(1450, "feet"),
  14173. weight: math.unit(1.21e6, "tons"),
  14174. name: "Side",
  14175. image: {
  14176. source: "./media/characters/sekvra/side.svg",
  14177. extra: 1193/1190,
  14178. bottom: 52/1245
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(1450, "feet"),
  14183. weight: math.unit(1.21e6, "tons"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/sekvra/back.svg",
  14187. extra: 1219/1216,
  14188. bottom: 21/1240
  14189. }
  14190. },
  14191. frontClothed: {
  14192. height: math.unit(1450, "feet"),
  14193. weight: math.unit(1.21e6, "tons"),
  14194. name: "Front (Clothed)",
  14195. image: {
  14196. source: "./media/characters/sekvra/front-clothed.svg",
  14197. extra: 1192/1189,
  14198. bottom: 79/1271
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(1450, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Megamacro",
  14210. height: math.unit(15000, "feet")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/carmine/front.svg",
  14223. extra: 1,
  14224. bottom: 0.035
  14225. }
  14226. },
  14227. frontArmor: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(150, "lb"),
  14230. name: "Front (Armor)",
  14231. image: {
  14232. source: "./media/characters/carmine/front-armor.svg",
  14233. extra: 1,
  14234. bottom: 0.035
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Large",
  14241. height: math.unit(1, "mile")
  14242. },
  14243. {
  14244. name: "Huge",
  14245. height: math.unit(40, "miles"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Colossal",
  14250. height: math.unit(2500, "miles")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/elyssia/front.svg",
  14263. extra: 2201 / 2035,
  14264. bottom: 0.05
  14265. }
  14266. },
  14267. frontClothed: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front (Clothed)",
  14271. image: {
  14272. source: "./media/characters/elyssia/front-clothed.svg",
  14273. extra: 2201 / 2035,
  14274. bottom: 0.05
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/elyssia/back.svg",
  14283. extra: 2201 / 2035,
  14284. bottom: 0.013
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Smaller",
  14291. height: math.unit(150, "feet")
  14292. },
  14293. {
  14294. name: "Standard",
  14295. height: math.unit(1400, "feet"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Distracted",
  14300. height: math.unit(15000, "feet")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(7 + 4/12, "feet"),
  14309. weight: math.unit(690, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/geno-maxwell/front.svg",
  14313. extra: 984/856,
  14314. bottom: 87/1071
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(7 + 4/12, "feet"),
  14319. weight: math.unit(690, "lb"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/geno-maxwell/back.svg",
  14323. extra: 981/854,
  14324. bottom: 57/1038
  14325. }
  14326. },
  14327. frontCostume: {
  14328. height: math.unit(7 + 4/12, "feet"),
  14329. weight: math.unit(690, "lb"),
  14330. name: "Front (Costume)",
  14331. image: {
  14332. source: "./media/characters/geno-maxwell/front-costume.svg",
  14333. extra: 984/856,
  14334. bottom: 87/1071
  14335. }
  14336. },
  14337. backcostume: {
  14338. height: math.unit(7 + 4/12, "feet"),
  14339. weight: math.unit(690, "lb"),
  14340. name: "Back (Costume)",
  14341. image: {
  14342. source: "./media/characters/geno-maxwell/back-costume.svg",
  14343. extra: 981/854,
  14344. bottom: 57/1038
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Micro",
  14351. height: math.unit(3, "inches")
  14352. },
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(7 + 4 / 12, "feet"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Macro",
  14360. height: math.unit(220, "feet")
  14361. },
  14362. {
  14363. name: "Megamacro",
  14364. height: math.unit(11, "miles")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(7 + 4/12, "feet"),
  14373. weight: math.unit(750, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/regena-maxwell/front.svg",
  14377. extra: 984/856,
  14378. bottom: 87/1071
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(7 + 4/12, "feet"),
  14383. weight: math.unit(750, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/regena-maxwell/back.svg",
  14387. extra: 981/854,
  14388. bottom: 57/1038
  14389. }
  14390. },
  14391. frontCostume: {
  14392. height: math.unit(7 + 4/12, "feet"),
  14393. weight: math.unit(750, "lb"),
  14394. name: "Front (Costume)",
  14395. image: {
  14396. source: "./media/characters/regena-maxwell/front-costume.svg",
  14397. extra: 984/856,
  14398. bottom: 87/1071
  14399. }
  14400. },
  14401. backcostume: {
  14402. height: math.unit(7 + 4/12, "feet"),
  14403. weight: math.unit(750, "lb"),
  14404. name: "Back (Costume)",
  14405. image: {
  14406. source: "./media/characters/regena-maxwell/back-costume.svg",
  14407. extra: 981/854,
  14408. bottom: 57/1038
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(7 + 4 / 12, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(220, "feet")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(11, "miles")
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(6, "feet"),
  14433. weight: math.unit(150, "lb"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14437. extra: 860 / 690,
  14438. bottom: 0.03
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(1.7, "meters"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(150, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/quilly/front.svg",
  14459. extra: 890 / 776
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Gigamacro",
  14466. height: math.unit(404090, "miles"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(7 + 8 / 12, "feet"),
  14476. weight: math.unit(350, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/tempest/front.svg",
  14480. extra: 1175 / 1086,
  14481. bottom: 0.02
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(7 + 8 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14495. {
  14496. side: {
  14497. height: math.unit(4 + 5 / 12, "feet"),
  14498. weight: math.unit(80, "lb"),
  14499. name: "Side",
  14500. image: {
  14501. source: "./media/characters/rodger/side.svg",
  14502. extra: 1235 / 1118
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Micro",
  14509. height: math.unit(1, "inch")
  14510. },
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(4 + 5 / 12, "feet"),
  14514. default: true
  14515. },
  14516. {
  14517. name: "Macro",
  14518. height: math.unit(120, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/danyel/front.svg",
  14531. extra: 1185 / 1123,
  14532. bottom: 0.05
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Shrunken",
  14539. height: math.unit(0.5, "mm")
  14540. },
  14541. {
  14542. name: "Micro",
  14543. height: math.unit(1, "mm"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Upsized",
  14548. height: math.unit(5 + 5 / 12, "feet")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(5 + 6 / 12, "feet"),
  14557. weight: math.unit(200, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/vivian-bijoux/front.svg",
  14561. extra: 1217/1209,
  14562. bottom: 76/1293
  14563. }
  14564. },
  14565. back: {
  14566. height: math.unit(5 + 6 / 12, "feet"),
  14567. weight: math.unit(200, "lb"),
  14568. name: "Back",
  14569. image: {
  14570. source: "./media/characters/vivian-bijoux/back.svg",
  14571. extra: 1214/1208,
  14572. bottom: 51/1265
  14573. }
  14574. },
  14575. dressed: {
  14576. height: math.unit(5 + 6 / 12, "feet"),
  14577. weight: math.unit(200, "lb"),
  14578. name: "Dressed",
  14579. image: {
  14580. source: "./media/characters/vivian-bijoux/dressed.svg",
  14581. extra: 1217/1209,
  14582. bottom: 76/1293
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(5 + 6 / 12, "feet"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Bad Dream",
  14594. height: math.unit(500, "feet")
  14595. },
  14596. {
  14597. name: "Nightmare",
  14598. height: math.unit(500, "miles")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(6 + 1 / 12, "feet"),
  14607. weight: math.unit(260, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/zeta/front.svg",
  14611. extra: 1968 / 1889,
  14612. bottom: 0.06
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(6 + 1 / 12, "feet"),
  14617. weight: math.unit(260, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/zeta/back.svg",
  14621. extra: 1944 / 1858,
  14622. bottom: 0.03
  14623. }
  14624. },
  14625. hand: {
  14626. height: math.unit(1.112, "feet"),
  14627. name: "Hand",
  14628. image: {
  14629. source: "./media/characters/zeta/hand.svg"
  14630. }
  14631. },
  14632. foot: {
  14633. height: math.unit(1.48, "feet"),
  14634. name: "Foot",
  14635. image: {
  14636. source: "./media/characters/zeta/foot.svg"
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Micro",
  14643. height: math.unit(6, "inches")
  14644. },
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(6 + 1 / 12, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(20, "feet")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/jamie-larsen/front.svg",
  14665. extra: 962 / 933,
  14666. bottom: 0.02
  14667. }
  14668. },
  14669. back: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Back",
  14673. image: {
  14674. source: "./media/characters/jamie-larsen/back.svg",
  14675. extra: 997 / 946
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Macro",
  14682. height: math.unit(28 + 7 / 12, "feet"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Macro+",
  14687. height: math.unit(180, "feet")
  14688. },
  14689. {
  14690. name: "Megamacro",
  14691. height: math.unit(10, "miles")
  14692. },
  14693. {
  14694. name: "Gigamacro",
  14695. height: math.unit(200000, "miles")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(120, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/vance/front.svg",
  14708. extra: 1980 / 1890,
  14709. bottom: 0.09
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(120, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/vance/back.svg",
  14718. extra: 2081 / 1994,
  14719. bottom: 0.014
  14720. }
  14721. },
  14722. hand: {
  14723. height: math.unit(0.88, "feet"),
  14724. name: "Hand",
  14725. image: {
  14726. source: "./media/characters/vance/hand.svg"
  14727. }
  14728. },
  14729. foot: {
  14730. height: math.unit(0.64, "feet"),
  14731. name: "Foot",
  14732. image: {
  14733. source: "./media/characters/vance/foot.svg"
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Small",
  14740. height: math.unit(90, "feet"),
  14741. default: true
  14742. },
  14743. {
  14744. name: "Macro",
  14745. height: math.unit(100, "meters")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(15, "miles")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(180, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/xochitl/front.svg",
  14762. extra: 2297 / 2261,
  14763. bottom: 0.065
  14764. }
  14765. },
  14766. back: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(180, "lb"),
  14769. name: "Back",
  14770. image: {
  14771. source: "./media/characters/xochitl/back.svg",
  14772. extra: 2386 / 2354,
  14773. bottom: 0.01
  14774. }
  14775. },
  14776. foot: {
  14777. height: math.unit(6 / 5 * 1.15, "feet"),
  14778. weight: math.unit(150, "lb"),
  14779. name: "Foot",
  14780. image: {
  14781. source: "./media/characters/xochitl/foot.svg"
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Macro",
  14788. height: math.unit(80, "feet")
  14789. },
  14790. {
  14791. name: "Macro+",
  14792. height: math.unit(400, "feet"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Gigamacro",
  14797. height: math.unit(80000, "miles")
  14798. },
  14799. {
  14800. name: "Gigamacro+",
  14801. height: math.unit(400000, "miles")
  14802. },
  14803. {
  14804. name: "Teramacro",
  14805. height: math.unit(300, "AU")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6, "feet"),
  14814. weight: math.unit(150, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/vincent/front.svg",
  14818. extra: 1130 / 1080,
  14819. bottom: 0.055
  14820. }
  14821. },
  14822. beak: {
  14823. height: math.unit(6 * 0.1, "feet"),
  14824. name: "Beak",
  14825. image: {
  14826. source: "./media/characters/vincent/beak.svg"
  14827. }
  14828. },
  14829. hand: {
  14830. height: math.unit(6 * 0.85, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Hand",
  14833. image: {
  14834. source: "./media/characters/vincent/hand.svg"
  14835. }
  14836. },
  14837. foot: {
  14838. height: math.unit(6 * 0.19, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Foot",
  14841. image: {
  14842. source: "./media/characters/vincent/foot.svg"
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Base",
  14849. height: math.unit(6 + 5 / 12, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro",
  14854. height: math.unit(300, "feet")
  14855. },
  14856. {
  14857. name: "Megamacro",
  14858. height: math.unit(2, "miles")
  14859. },
  14860. {
  14861. name: "Gigamacro",
  14862. height: math.unit(1000, "miles")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(2, "meters"),
  14871. weight: math.unit(500, "kg"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/coatl/front.svg",
  14875. extra: 3948 / 3500,
  14876. bottom: 0.082
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(4, "meters")
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(100, "meters"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro+",
  14892. height: math.unit(300, "meters")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(3, "gigameters")
  14897. },
  14898. {
  14899. name: "Megamacro+",
  14900. height: math.unit(300, "terameters")
  14901. },
  14902. {
  14903. name: "Megamacro++",
  14904. height: math.unit(3, "lightyears")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(50, "kg"),
  14914. name: "front",
  14915. image: {
  14916. source: "./media/characters/shiroryu/front.svg",
  14917. extra: 1990 / 1935
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Mortal Mingling",
  14924. height: math.unit(3, "meters")
  14925. },
  14926. {
  14927. name: "Kaiju-ish",
  14928. height: math.unit(250, "meters")
  14929. },
  14930. {
  14931. name: "Somewhat Godly",
  14932. height: math.unit(400, "km"),
  14933. default: true
  14934. },
  14935. {
  14936. name: "Planetary",
  14937. height: math.unit(300, "megameters")
  14938. },
  14939. {
  14940. name: "Galaxy-dwarfing",
  14941. height: math.unit(450, "kiloparsecs")
  14942. },
  14943. {
  14944. name: "Universe Eater",
  14945. height: math.unit(150, "gigaparsecs")
  14946. },
  14947. {
  14948. name: "Almost Immeasurable",
  14949. height: math.unit(1.3e266, "yottaparsecs")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/umeko/front.svg",
  14962. extra: 1,
  14963. bottom: 0.019
  14964. }
  14965. },
  14966. frontArmored: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Front (Armored)",
  14970. image: {
  14971. source: "./media/characters/umeko/front-armored.svg",
  14972. extra: 1,
  14973. bottom: 0.021
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(220, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Guardian Dragon",
  14985. height: math.unit(50, "miles")
  14986. },
  14987. {
  14988. name: "Cosmic",
  14989. height: math.unit(800000, "miles")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(150, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/cassidy/front.svg",
  15002. extra: 810/808,
  15003. bottom: 41/851
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Canon Height",
  15010. height: math.unit(120, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro+",
  15015. height: math.unit(400, "feet")
  15016. },
  15017. {
  15018. name: "Macro++",
  15019. height: math.unit(4000, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(3, "miles")
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/isaac/front.svg",
  15036. extra: 896 / 815,
  15037. bottom: 0.11
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Human Size",
  15044. height: math.unit(8, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(400, "feet")
  15050. },
  15051. {
  15052. name: "Megamacro",
  15053. height: math.unit(50, "miles")
  15054. },
  15055. {
  15056. name: "Canon Height",
  15057. height: math.unit(200, "AU")
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(72, "kg"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/sleekit/front.svg",
  15070. extra: 4693 / 4487,
  15071. bottom: 0.012
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Minimum Height",
  15078. height: math.unit(10, "meters")
  15079. },
  15080. {
  15081. name: "Smaller",
  15082. height: math.unit(25, "meters")
  15083. },
  15084. {
  15085. name: "Larger",
  15086. height: math.unit(38, "meters"),
  15087. default: true
  15088. },
  15089. {
  15090. name: "Maximum height",
  15091. height: math.unit(100, "meters")
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(6, "feet"),
  15100. weight: math.unit(150, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/nillia/front.svg",
  15104. extra: 2195 / 2037,
  15105. bottom: 0.005
  15106. }
  15107. },
  15108. back: {
  15109. height: math.unit(6, "feet"),
  15110. weight: math.unit(150, "lb"),
  15111. name: "Back",
  15112. image: {
  15113. source: "./media/characters/nillia/back.svg",
  15114. extra: 2195 / 2037,
  15115. bottom: 0.005
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Canon Height",
  15122. height: math.unit(489, "feet"),
  15123. default: true
  15124. }
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/mesmyriza/front.svg",
  15136. extra: 2067 / 1784,
  15137. bottom: 0.035
  15138. }
  15139. },
  15140. foot: {
  15141. height: math.unit(6 / (250 / 35), "feet"),
  15142. name: "Foot",
  15143. image: {
  15144. source: "./media/characters/mesmyriza/foot.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Macro",
  15151. height: math.unit(457, "meters"),
  15152. default: true
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(8, "megameters")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(250, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/saudade/front.svg",
  15169. extra: 1172 / 1139,
  15170. bottom: 0.035
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Micro",
  15177. height: math.unit(3, "inches")
  15178. },
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(6, "feet"),
  15182. default: true
  15183. },
  15184. {
  15185. name: "Macro",
  15186. height: math.unit(50, "feet")
  15187. },
  15188. {
  15189. name: "Megamacro",
  15190. height: math.unit(2800, "feet")
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15196. {
  15197. front: {
  15198. height: math.unit(5 + 4 / 12, "feet"),
  15199. weight: math.unit(100, "lb"),
  15200. name: "Front",
  15201. image: {
  15202. source: "./media/characters/keireer/front.svg",
  15203. extra: 716 / 666,
  15204. bottom: 0.05
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(5 + 4 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(5.5, "feet"),
  15221. weight: math.unit(90, "kg"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/mirja/front.svg",
  15225. extra: 1452/1262,
  15226. bottom: 67/1519
  15227. }
  15228. },
  15229. frontDressed: {
  15230. height: math.unit(5.5, "feet"),
  15231. weight: math.unit(90, "lb"),
  15232. name: "Front (Dressed)",
  15233. image: {
  15234. source: "./media/characters/mirja/dressed.svg",
  15235. extra: 1452/1262,
  15236. bottom: 67/1519
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(90, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/mirja/back.svg",
  15245. extra: 1892/1795,
  15246. bottom: 48/1940
  15247. }
  15248. },
  15249. maw: {
  15250. height: math.unit(1.312, "feet"),
  15251. name: "Maw",
  15252. image: {
  15253. source: "./media/characters/mirja/maw.svg"
  15254. }
  15255. },
  15256. paw: {
  15257. height: math.unit(1.15, "feet"),
  15258. name: "Paw",
  15259. image: {
  15260. source: "./media/characters/mirja/paw.svg"
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "\"Incognito\"",
  15267. height: math.unit(3, "meters")
  15268. },
  15269. {
  15270. name: "Strolling Size",
  15271. height: math.unit(15, "km")
  15272. },
  15273. {
  15274. name: "Larger Strolling Size",
  15275. height: math.unit(400, "km")
  15276. },
  15277. {
  15278. name: "Preferred Size",
  15279. height: math.unit(5000, "km"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "True Size",
  15284. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(15, "feet"),
  15293. weight: math.unit(880, "kg"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/nightraver/front.svg",
  15297. extra: 2444 / 2160,
  15298. bottom: 0.027
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(15, "feet"),
  15303. weight: math.unit(880, "kg"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/nightraver/back.svg",
  15307. extra: 2309 / 2180,
  15308. bottom: 0.005
  15309. }
  15310. },
  15311. sole: {
  15312. height: math.unit(2.878, "feet"),
  15313. name: "Sole",
  15314. image: {
  15315. source: "./media/characters/nightraver/sole.svg"
  15316. }
  15317. },
  15318. foot: {
  15319. height: math.unit(2.285, "feet"),
  15320. name: "Foot",
  15321. image: {
  15322. source: "./media/characters/nightraver/foot.svg"
  15323. }
  15324. },
  15325. maw: {
  15326. height: math.unit(2.67, "feet"),
  15327. name: "Maw",
  15328. image: {
  15329. source: "./media/characters/nightraver/maw.svg"
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Micro",
  15336. height: math.unit(1, "cm")
  15337. },
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(15, "feet"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(300, "feet")
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(300, "miles")
  15350. },
  15351. {
  15352. name: "Gigamacro",
  15353. height: math.unit(10000, "miles")
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15359. {
  15360. side: {
  15361. height: math.unit(2, "inches"),
  15362. weight: math.unit(5, "grams"),
  15363. name: "Side",
  15364. image: {
  15365. source: "./media/characters/arc/side.svg"
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Micro",
  15372. height: math.unit(2, "inches"),
  15373. default: true
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(1.1938, "meters"),
  15382. weight: math.unit(54, "kg"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/nebula-shahar/front.svg",
  15386. extra: 1642 / 1436,
  15387. bottom: 0.06
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Megamicro",
  15394. height: math.unit(0.3, "mm")
  15395. },
  15396. {
  15397. name: "Micro",
  15398. height: math.unit(3, "cm")
  15399. },
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(138, "cm"),
  15403. default: true
  15404. },
  15405. {
  15406. name: "Macro",
  15407. height: math.unit(30, "m")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5.24, "feet"),
  15416. weight: math.unit(150, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/shayla/front.svg",
  15420. extra: 1512 / 1414,
  15421. bottom: 0.01
  15422. }
  15423. },
  15424. back: {
  15425. height: math.unit(5.24, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Back",
  15428. image: {
  15429. source: "./media/characters/shayla/back.svg",
  15430. extra: 1512 / 1414
  15431. }
  15432. },
  15433. hand: {
  15434. height: math.unit(0.7781496062992126, "feet"),
  15435. name: "Hand",
  15436. image: {
  15437. source: "./media/characters/shayla/hand.svg"
  15438. }
  15439. },
  15440. foot: {
  15441. height: math.unit(1.4206036745406823, "feet"),
  15442. name: "Foot",
  15443. image: {
  15444. source: "./media/characters/shayla/foot.svg"
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Micro",
  15451. height: math.unit(0.32, "feet")
  15452. },
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5.24, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Macro",
  15460. height: math.unit(492.12, "feet")
  15461. },
  15462. {
  15463. name: "Megamacro",
  15464. height: math.unit(186.41, "miles")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(2.2, "m"),
  15473. weight: math.unit(120, "kg"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/pia-jr/front.svg",
  15477. extra: 1000 / 970,
  15478. bottom: 0.035
  15479. }
  15480. },
  15481. hand: {
  15482. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15483. name: "Hand",
  15484. image: {
  15485. source: "./media/characters/pia-jr/hand.svg"
  15486. }
  15487. },
  15488. paw: {
  15489. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15490. name: "Paw",
  15491. image: {
  15492. source: "./media/characters/pia-jr/paw.svg"
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Micro",
  15499. height: math.unit(1.2, "cm")
  15500. },
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(2.2, "m"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(180, "m")
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(420, "km")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(2, "m"),
  15521. weight: math.unit(115, "kg"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/pia-sr/front.svg",
  15525. extra: 760 / 730,
  15526. bottom: 0.015
  15527. }
  15528. },
  15529. back: {
  15530. height: math.unit(2, "m"),
  15531. weight: math.unit(115, "kg"),
  15532. name: "Back",
  15533. image: {
  15534. source: "./media/characters/pia-sr/back.svg",
  15535. extra: 760 / 730,
  15536. bottom: 0.01
  15537. }
  15538. },
  15539. hand: {
  15540. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15541. name: "Hand",
  15542. image: {
  15543. source: "./media/characters/pia-sr/hand.svg"
  15544. }
  15545. },
  15546. foot: {
  15547. height: math.unit(1.83, "feet"),
  15548. name: "Foot",
  15549. image: {
  15550. source: "./media/characters/pia-sr/foot.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Micro",
  15557. height: math.unit(88, "mm")
  15558. },
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(2, "m"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Macro",
  15566. height: math.unit(200, "m")
  15567. },
  15568. {
  15569. name: "Megamacro",
  15570. height: math.unit(420, "km")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(8 + 2 / 12, "feet"),
  15579. weight: math.unit(300, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/kibibyte/front.svg",
  15583. extra: 2221 / 2098,
  15584. bottom: 0.04
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(8 + 2 / 12, "feet"),
  15592. default: true
  15593. },
  15594. {
  15595. name: "Socialable Macro",
  15596. height: math.unit(50, "feet")
  15597. },
  15598. {
  15599. name: "Macro",
  15600. height: math.unit(300, "feet")
  15601. },
  15602. {
  15603. name: "Megamacro",
  15604. height: math.unit(500, "miles")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/felix/front.svg",
  15617. extra: 762 / 722,
  15618. bottom: 0.02
  15619. }
  15620. },
  15621. frontClothed: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Front (Clothed)",
  15625. image: {
  15626. source: "./media/characters/felix/front-clothed.svg",
  15627. extra: 762 / 722,
  15628. bottom: 0.02
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(6 + 8 / 12, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(2600, "feet")
  15641. },
  15642. {
  15643. name: "Megamacro",
  15644. height: math.unit(450, "miles")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6 + 1 / 12, "feet"),
  15653. weight: math.unit(250, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/tobo/front.svg",
  15657. extra: 608 / 586,
  15658. bottom: 0.023
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(6 + 1 / 12, "feet"),
  15663. weight: math.unit(250, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/tobo/back.svg",
  15667. extra: 608 / 586
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Nano",
  15674. height: math.unit(2, "nm")
  15675. },
  15676. {
  15677. name: "Megamicro",
  15678. height: math.unit(0.1, "mm")
  15679. },
  15680. {
  15681. name: "Micro",
  15682. height: math.unit(1, "inch"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Human-sized",
  15687. height: math.unit(6 + 1 / 12, "feet")
  15688. },
  15689. {
  15690. name: "Macro",
  15691. height: math.unit(250, "feet")
  15692. },
  15693. {
  15694. name: "Megamacro",
  15695. height: math.unit(75, "miles")
  15696. },
  15697. {
  15698. name: "Texas-sized",
  15699. height: math.unit(750, "miles")
  15700. },
  15701. {
  15702. name: "Teramacro",
  15703. height: math.unit(50000, "miles")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(269, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/danny-kapowsky/front.svg",
  15716. extra: 766 / 736,
  15717. bottom: 0.044
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(269, "lb"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/danny-kapowsky/back.svg",
  15726. extra: 797 / 760,
  15727. bottom: 0.025
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "Macro",
  15734. height: math.unit(150, "feet"),
  15735. default: true
  15736. },
  15737. {
  15738. name: "Macro+",
  15739. height: math.unit(200, "feet")
  15740. },
  15741. {
  15742. name: "Macro++",
  15743. height: math.unit(300, "feet")
  15744. },
  15745. {
  15746. name: "Macro+++",
  15747. height: math.unit(400, "feet")
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15753. {
  15754. side: {
  15755. height: math.unit(6, "feet"),
  15756. weight: math.unit(170, "lb"),
  15757. name: "Side",
  15758. image: {
  15759. source: "./media/characters/finn/side.svg",
  15760. extra: 1953 / 1807,
  15761. bottom: 0.057
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Megamacro",
  15768. height: math.unit(14445, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 6 / 12, "feet"),
  15778. weight: math.unit(125, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/roy/front.svg",
  15782. extra: 1,
  15783. bottom: 0.11
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Micro",
  15790. height: math.unit(3, "inches"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5 + 6 / 12, "feet")
  15796. },
  15797. {
  15798. name: "Lesser Macro",
  15799. height: math.unit(60, "feet")
  15800. },
  15801. {
  15802. name: "Greater Macro",
  15803. height: math.unit(120, "feet")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(100, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/aevsivs/front.svg",
  15816. extra: 1,
  15817. bottom: 0.03
  15818. }
  15819. },
  15820. back: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(100, "lb"),
  15823. name: "Back",
  15824. image: {
  15825. source: "./media/characters/aevsivs/back.svg"
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Micro",
  15832. height: math.unit(2, "inches"),
  15833. default: true
  15834. },
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(5, "feet")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(5 + 7 / 12, "feet"),
  15846. weight: math.unit(159, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/hildegard/front.svg",
  15850. extra: 289 / 269,
  15851. bottom: 7.63 / 297.8
  15852. }
  15853. },
  15854. back: {
  15855. height: math.unit(5 + 7 / 12, "feet"),
  15856. weight: math.unit(159, "lb"),
  15857. name: "Back",
  15858. image: {
  15859. source: "./media/characters/hildegard/back.svg",
  15860. extra: 280 / 260,
  15861. bottom: 2.3 / 282
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(5 + 7 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15875. {
  15876. bernard: {
  15877. height: math.unit(2 + 7 / 12, "feet"),
  15878. weight: math.unit(66, "lb"),
  15879. name: "Bernard",
  15880. rename: true,
  15881. image: {
  15882. source: "./media/characters/bernard-wilder/bernard.svg",
  15883. extra: 192 / 128,
  15884. bottom: 0.05
  15885. }
  15886. },
  15887. wilder: {
  15888. height: math.unit(5 + 8 / 12, "feet"),
  15889. weight: math.unit(143, "lb"),
  15890. name: "Wilder",
  15891. rename: true,
  15892. image: {
  15893. source: "./media/characters/bernard-wilder/wilder.svg",
  15894. extra: 361 / 312,
  15895. bottom: 0.02
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(2 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15909. {
  15910. anthro: {
  15911. height: math.unit(6 + 1 / 12, "feet"),
  15912. weight: math.unit(155, "lb"),
  15913. name: "Anthro",
  15914. image: {
  15915. source: "./media/characters/hearth/anthro.svg",
  15916. extra: 1178/1136,
  15917. bottom: 28/1206
  15918. }
  15919. },
  15920. feral: {
  15921. height: math.unit(3.78, "feet"),
  15922. weight: math.unit(35, "kg"),
  15923. name: "Feral",
  15924. image: {
  15925. source: "./media/characters/hearth/feral.svg",
  15926. extra: 153 / 135,
  15927. bottom: 0.03
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(6 + 1 / 12, "feet"),
  15935. default: true
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(6, "feet"),
  15944. weight: math.unit(182, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/ingrid/front.svg",
  15948. extra: 294 / 268,
  15949. bottom: 0.027
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(6, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15963. {
  15964. eevee: {
  15965. height: math.unit(2 + 10 / 12, "feet"),
  15966. weight: math.unit(86, "lb"),
  15967. name: "Malgam",
  15968. image: {
  15969. source: "./media/characters/malgam/eevee.svg",
  15970. extra: 952/784,
  15971. bottom: 38/990
  15972. }
  15973. },
  15974. sylveon: {
  15975. height: math.unit(4, "feet"),
  15976. weight: math.unit(101, "lb"),
  15977. name: "Future Malgam",
  15978. rename: true,
  15979. image: {
  15980. source: "./media/characters/malgam/sylveon.svg",
  15981. extra: 371 / 325,
  15982. bottom: 0.015
  15983. }
  15984. },
  15985. gigantamax: {
  15986. height: math.unit(50, "feet"),
  15987. name: "Gigantamax Malgam",
  15988. rename: true,
  15989. image: {
  15990. source: "./media/characters/malgam/gigantamax.svg"
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(2 + 10 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16004. {
  16005. front: {
  16006. height: math.unit(5 + 11 / 12, "feet"),
  16007. weight: math.unit(188, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/fleur/front.svg",
  16011. extra: 309 / 283,
  16012. bottom: 0.007
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(5 + 11 / 12, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(5 + 4 / 12, "feet"),
  16029. weight: math.unit(122, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/jude/front.svg",
  16033. extra: 288 / 273,
  16034. bottom: 0.03
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(5 + 4 / 12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(5 + 11 / 12, "feet"),
  16051. weight: math.unit(190, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/seara/front.svg",
  16055. extra: 1,
  16056. bottom: 0.05
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(5 + 11 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(16 + 5 / 12, "feet"),
  16073. weight: math.unit(524, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/caspian-lugia/front.svg",
  16077. extra: 1,
  16078. bottom: 0.04
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(16 + 5 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(5 + 7 / 12, "feet"),
  16095. weight: math.unit(170, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/mika/front.svg",
  16099. extra: 1,
  16100. bottom: 0.016
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(5 + 7 / 12, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(6 + 2 / 12, "feet"),
  16117. weight: math.unit(268, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/sol/front.svg",
  16121. extra: 247 / 231,
  16122. bottom: 0.05
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(6 + 2 / 12, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16136. {
  16137. buizel: {
  16138. height: math.unit(2 + 5 / 12, "feet"),
  16139. weight: math.unit(87, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/umiko/buizel.svg",
  16143. extra: 172 / 157,
  16144. bottom: 0.01
  16145. },
  16146. form: "buizel",
  16147. default: true
  16148. },
  16149. floatzel: {
  16150. height: math.unit(5 + 9 / 12, "feet"),
  16151. weight: math.unit(250, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/umiko/floatzel.svg",
  16155. extra: 1076/1006,
  16156. bottom: 15/1091
  16157. },
  16158. form: "floatzel",
  16159. default: true
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(2 + 5 / 12, "feet"),
  16166. form: "buizel",
  16167. default: true
  16168. },
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(5 + 9 / 12, "feet"),
  16172. form: "floatzel",
  16173. default: true
  16174. },
  16175. ],
  16176. {
  16177. "buizel": {
  16178. name: "Buizel"
  16179. },
  16180. "floatzel": {
  16181. name: "Floatzel",
  16182. default: true
  16183. }
  16184. }
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6 + 2 / 12, "feet"),
  16191. weight: math.unit(146, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/iliac/front.svg",
  16195. extra: 389 / 365,
  16196. bottom: 0.035
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(6 + 2 / 12, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(170, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/topaz/front.svg",
  16217. extra: 317 / 303,
  16218. bottom: 0.055
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(6, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(5 + 11 / 12, "feet"),
  16235. weight: math.unit(144, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/gabriel/front.svg",
  16239. extra: 285 / 262,
  16240. bottom: 0.004
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(5 + 11 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16254. {
  16255. side: {
  16256. height: math.unit(6 + 5 / 12, "feet"),
  16257. weight: math.unit(300, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/tempest-suicune/side.svg",
  16261. extra: 195 / 154,
  16262. bottom: 0.04
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(6 + 5 / 12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(7 + 2 / 12, "feet"),
  16279. weight: math.unit(322, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/vulcan/front.svg",
  16283. extra: 154 / 147,
  16284. bottom: 0.04
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(7 + 2 / 12, "feet"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 10 / 12, "feet"),
  16301. weight: math.unit(264, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/gault/front.svg",
  16305. extra: 161 / 140,
  16306. bottom: 0.028
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(5 + 10 / 12, "feet"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(150, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/shard/front.svg",
  16327. extra: 273 / 238,
  16328. bottom: 0.02
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(3 + 6 / 12, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(5 + 11 / 12, "feet"),
  16345. weight: math.unit(146, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/ashe/front.svg",
  16349. extra: 400 / 373,
  16350. bottom: 0.01
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(5 + 11 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(5 + 5 / 12, "feet"),
  16367. weight: math.unit(135, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/beatrix/front.svg",
  16371. extra: 392 / 379,
  16372. bottom: 0.01
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(6, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 2/12, "feet"),
  16389. weight: math.unit(135, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/ignatius/front.svg",
  16393. extra: 1380/1259,
  16394. bottom: 27/1407
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6 + 2/12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(6 + 2 / 12, "feet"),
  16411. weight: math.unit(138, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/mei-li/front.svg",
  16415. extra: 237 / 229,
  16416. bottom: 0.03
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(6 + 2 / 12, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(2 + 4 / 12, "feet"),
  16433. weight: math.unit(62, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/puru/front.svg",
  16437. extra: 206 / 149,
  16438. bottom: 0.06
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(2 + 4 / 12, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16452. {
  16453. anthro: {
  16454. height: math.unit(5 + 8/12, "feet"),
  16455. weight: math.unit(200, "lb"),
  16456. energyNeed: math.unit(2000, "kcal"),
  16457. name: "Anthro",
  16458. image: {
  16459. source: "./media/characters/kee/anthro.svg",
  16460. extra: 3251/3184,
  16461. bottom: 250/3501
  16462. }
  16463. },
  16464. taur: {
  16465. height: math.unit(11, "feet"),
  16466. weight: math.unit(500, "lb"),
  16467. energyNeed: math.unit(5000, "kcal"),
  16468. name: "Taur",
  16469. image: {
  16470. source: "./media/characters/kee/taur.svg",
  16471. extra: 1362/1320,
  16472. bottom: 83/1445
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(5 + 8/12, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(35, "feet")
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16490. {
  16491. anthro: {
  16492. height: math.unit(7, "feet"),
  16493. weight: math.unit(190, "lb"),
  16494. name: "Anthro",
  16495. image: {
  16496. source: "./media/characters/cobalt-dracha/anthro.svg",
  16497. extra: 231 / 225,
  16498. bottom: 0.04
  16499. }
  16500. },
  16501. feral: {
  16502. height: math.unit(9 + 7 / 12, "feet"),
  16503. weight: math.unit(294, "lb"),
  16504. name: "Feral",
  16505. image: {
  16506. source: "./media/characters/cobalt-dracha/feral.svg",
  16507. extra: 692 / 633,
  16508. bottom: 0.05
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(7, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16522. {
  16523. fallen: {
  16524. height: math.unit(11 + 8 / 12, "feet"),
  16525. weight: math.unit(485, "lb"),
  16526. name: "Java (Fallen)",
  16527. rename: true,
  16528. image: {
  16529. source: "./media/characters/java/fallen.svg",
  16530. extra: 226 / 208,
  16531. bottom: 0.005
  16532. }
  16533. },
  16534. godkin: {
  16535. height: math.unit(10 + 6 / 12, "feet"),
  16536. weight: math.unit(328, "lb"),
  16537. name: "Java (Godkin)",
  16538. rename: true,
  16539. image: {
  16540. source: "./media/characters/java/godkin.svg",
  16541. extra: 1104/1068,
  16542. bottom: 36/1140
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(11 + 8 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(5 + 9 / 12, "feet"),
  16559. weight: math.unit(170, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/purna/front.svg",
  16563. extra: 239 / 229,
  16564. bottom: 0.01
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(5 + 9 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(5 + 9 / 12, "feet"),
  16581. weight: math.unit(142, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/kuva/front.svg",
  16585. extra: 281 / 271,
  16586. bottom: 0.006
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(5 + 9 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16600. {
  16601. anthro: {
  16602. height: math.unit(9 + 2 / 12, "feet"),
  16603. weight: math.unit(270, "lb"),
  16604. name: "Anthro",
  16605. image: {
  16606. source: "./media/characters/embra/anthro.svg",
  16607. extra: 200 / 187,
  16608. bottom: 0.02
  16609. }
  16610. },
  16611. feral: {
  16612. height: math.unit(18 + 8 / 12, "feet"),
  16613. weight: math.unit(576, "lb"),
  16614. name: "Feral",
  16615. image: {
  16616. source: "./media/characters/embra/feral.svg",
  16617. extra: 152 / 137,
  16618. bottom: 0.037
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(9 + 2 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16632. {
  16633. anthro: {
  16634. height: math.unit(10 + 9 / 12, "feet"),
  16635. weight: math.unit(224, "lb"),
  16636. name: "Anthro",
  16637. image: {
  16638. source: "./media/characters/grottos/anthro.svg",
  16639. extra: 350 / 332,
  16640. bottom: 0.045
  16641. }
  16642. },
  16643. feral: {
  16644. height: math.unit(20 + 7 / 12, "feet"),
  16645. weight: math.unit(629, "lb"),
  16646. name: "Feral",
  16647. image: {
  16648. source: "./media/characters/grottos/feral.svg",
  16649. extra: 207 / 190,
  16650. bottom: 0.05
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(10 + 9 / 12, "feet"),
  16658. default: true
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16664. {
  16665. anthro: {
  16666. height: math.unit(9 + 6 / 12, "feet"),
  16667. weight: math.unit(298, "lb"),
  16668. name: "Anthro",
  16669. image: {
  16670. source: "./media/characters/frifna/anthro.svg",
  16671. extra: 282 / 269,
  16672. bottom: 0.015
  16673. }
  16674. },
  16675. feral: {
  16676. height: math.unit(16 + 2 / 12, "feet"),
  16677. weight: math.unit(624, "lb"),
  16678. name: "Feral",
  16679. image: {
  16680. source: "./media/characters/frifna/feral.svg"
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(9 + 6 / 12, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(6 + 2 / 12, "feet"),
  16697. weight: math.unit(168, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/elise/front.svg",
  16701. extra: 276 / 271
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(6 + 2 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 10 / 12, "feet"),
  16718. weight: math.unit(210, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/glade/front.svg",
  16722. extra: 258 / 247,
  16723. bottom: 0.008
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(5 + 10 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 10 / 12, "feet"),
  16740. weight: math.unit(129, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/rina/front.svg",
  16744. extra: 266 / 255,
  16745. bottom: 0.005
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 10 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(6 + 1 / 12, "feet"),
  16762. weight: math.unit(192, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/veronica/front.svg",
  16766. extra: 319 / 309,
  16767. bottom: 0.005
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6 + 1 / 12, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(9 + 3 / 12, "feet"),
  16784. weight: math.unit(1100, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/braxton/front.svg",
  16788. extra: 1057 / 984,
  16789. bottom: 0.05
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(9 + 3 / 12, "feet")
  16797. },
  16798. {
  16799. name: "Giant",
  16800. height: math.unit(300, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(700, "feet")
  16806. },
  16807. {
  16808. name: "Megamacro",
  16809. height: math.unit(6000, "feet")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 7 / 12, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/blue-feyonics/front.svg",
  16822. extra: 1403 / 1306,
  16823. bottom: 0.047
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6 + 7 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(1.8, "meters"),
  16840. weight: math.unit(60, "kg"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/maxwell/front.svg",
  16844. extra: 2060 / 1873
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Micro",
  16851. height: math.unit(1, "mm")
  16852. },
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(1.8, "meter"),
  16856. default: true
  16857. },
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(30, "meters")
  16861. },
  16862. {
  16863. name: "Megamacro",
  16864. height: math.unit(10, "km")
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/jack/front.svg",
  16877. extra: 1754 / 1640,
  16878. bottom: 0.01
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(80000, "feet"),
  16886. default: true
  16887. },
  16888. {
  16889. name: "Max size",
  16890. height: math.unit(10, "lightyears")
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16896. {
  16897. urban: {
  16898. height: math.unit(5, "feet"),
  16899. weight: math.unit(240, "lb"),
  16900. name: "Urban",
  16901. image: {
  16902. source: "./media/characters/cafat/urban.svg",
  16903. extra: 1223/1126,
  16904. bottom: 205/1428
  16905. }
  16906. },
  16907. summer: {
  16908. height: math.unit(5, "feet"),
  16909. weight: math.unit(240, "lb"),
  16910. name: "Summer",
  16911. image: {
  16912. source: "./media/characters/cafat/summer.svg",
  16913. extra: 1223/1126,
  16914. bottom: 205/1428
  16915. }
  16916. },
  16917. winter: {
  16918. height: math.unit(5, "feet"),
  16919. weight: math.unit(240, "lb"),
  16920. name: "Winter",
  16921. image: {
  16922. source: "./media/characters/cafat/winter.svg",
  16923. extra: 1223/1126,
  16924. bottom: 205/1428
  16925. }
  16926. },
  16927. lingerie: {
  16928. height: math.unit(5, "feet"),
  16929. weight: math.unit(240, "lb"),
  16930. name: "Lingerie",
  16931. image: {
  16932. source: "./media/characters/cafat/lingerie.svg",
  16933. extra: 1223/1126,
  16934. bottom: 205/1428
  16935. }
  16936. },
  16937. upright: {
  16938. height: math.unit(6.3, "feet"),
  16939. weight: math.unit(240, "lb"),
  16940. name: "Upright",
  16941. image: {
  16942. source: "./media/characters/cafat/upright.svg",
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. uprightFull: {
  16947. height: math.unit(6.3, "feet"),
  16948. weight: math.unit(240, "lb"),
  16949. name: "Upright (Full)",
  16950. image: {
  16951. source: "./media/characters/cafat/upright-full.svg",
  16952. bottom: 0.01
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Small",
  16959. height: math.unit(5, "feet"),
  16960. default: true
  16961. },
  16962. {
  16963. name: "Large",
  16964. height: math.unit(13, "feet")
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(6, "feet"),
  16973. weight: math.unit(150, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/verin-raharra/front.svg",
  16977. extra: 5019 / 4835,
  16978. bottom: 0.023
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(7 + 5 / 12, "feet"),
  16986. default: true
  16987. },
  16988. {
  16989. name: "Upsized",
  16990. height: math.unit(20, "feet")
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(7, "feet"),
  16999. weight: math.unit(230, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/nakata/front.svg",
  17003. extra: 1.005,
  17004. bottom: 0.01
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(7, "feet"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Big",
  17016. height: math.unit(14, "feet")
  17017. },
  17018. {
  17019. name: "Macro",
  17020. height: math.unit(400, "feet")
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(4.91, "feet"),
  17029. weight: math.unit(100, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/lily/front.svg",
  17033. extra: 1585 / 1415,
  17034. bottom: 0.02
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(4.91, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17048. {
  17049. laying: {
  17050. height: math.unit(4 + 4 / 12, "feet"),
  17051. weight: math.unit(600, "lb"),
  17052. name: "Laying",
  17053. image: {
  17054. source: "./media/characters/sheila/laying.svg",
  17055. extra: 1333 / 1265,
  17056. bottom: 0.16
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(4 + 4 / 12, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(190, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/sax/front.svg",
  17077. extra: 1187 / 973,
  17078. bottom: 0.042
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Micro",
  17085. height: math.unit(4, "inches"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(150, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/pandora/front.svg",
  17099. extra: 2720 / 2556,
  17100. bottom: 0.015
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/pandora/back.svg",
  17109. extra: 2720 / 2556,
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. beans: {
  17114. height: math.unit(6 / 8, "feet"),
  17115. name: "Beans",
  17116. image: {
  17117. source: "./media/characters/pandora/beans.svg"
  17118. }
  17119. },
  17120. collar: {
  17121. height: math.unit(0.31, "feet"),
  17122. name: "Collar",
  17123. image: {
  17124. source: "./media/characters/pandora/collar.svg"
  17125. }
  17126. },
  17127. skirt: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Skirt",
  17131. image: {
  17132. source: "./media/characters/pandora/skirt.svg",
  17133. extra: 1622 / 1525,
  17134. bottom: 0.015
  17135. }
  17136. },
  17137. hoodie: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Hoodie",
  17141. image: {
  17142. source: "./media/characters/pandora/hoodie.svg",
  17143. extra: 1622 / 1525,
  17144. bottom: 0.015
  17145. }
  17146. },
  17147. casual: {
  17148. height: math.unit(6, "feet"),
  17149. weight: math.unit(150, "lb"),
  17150. name: "Casual",
  17151. image: {
  17152. source: "./media/characters/pandora/casual.svg",
  17153. extra: 1622 / 1525,
  17154. bottom: 0.015
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(6, "feet")
  17162. },
  17163. {
  17164. name: "Big Steppy",
  17165. height: math.unit(1, "km"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Galactic Steppy",
  17170. height: math.unit(2, "gigameters")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17176. {
  17177. side: {
  17178. height: math.unit(10, "feet"),
  17179. weight: math.unit(800, "kg"),
  17180. name: "Side",
  17181. image: {
  17182. source: "./media/characters/venio-darcony/side.svg",
  17183. extra: 1373 / 1003,
  17184. bottom: 0.037
  17185. }
  17186. },
  17187. front: {
  17188. height: math.unit(19, "feet"),
  17189. weight: math.unit(800, "kg"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/venio-darcony/front.svg"
  17193. }
  17194. },
  17195. back: {
  17196. height: math.unit(19, "feet"),
  17197. weight: math.unit(800, "kg"),
  17198. name: "Back",
  17199. image: {
  17200. source: "./media/characters/venio-darcony/back.svg"
  17201. }
  17202. },
  17203. sideNsfw: {
  17204. height: math.unit(10, "feet"),
  17205. weight: math.unit(800, "kg"),
  17206. name: "Side (NSFW)",
  17207. image: {
  17208. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17209. extra: 1373 / 1003,
  17210. bottom: 0.037
  17211. }
  17212. },
  17213. frontNsfw: {
  17214. height: math.unit(19, "feet"),
  17215. weight: math.unit(800, "kg"),
  17216. name: "Front (NSFW)",
  17217. image: {
  17218. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17219. }
  17220. },
  17221. backNsfw: {
  17222. height: math.unit(19, "feet"),
  17223. weight: math.unit(800, "kg"),
  17224. name: "Back (NSFW)",
  17225. image: {
  17226. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17227. }
  17228. },
  17229. sideArmored: {
  17230. height: math.unit(10, "feet"),
  17231. weight: math.unit(800, "kg"),
  17232. name: "Side (Armored)",
  17233. image: {
  17234. source: "./media/characters/venio-darcony/side-armored.svg",
  17235. extra: 1373 / 1003,
  17236. bottom: 0.037
  17237. }
  17238. },
  17239. frontArmored: {
  17240. height: math.unit(19, "feet"),
  17241. weight: math.unit(900, "kg"),
  17242. name: "Front (Armored)",
  17243. image: {
  17244. source: "./media/characters/venio-darcony/front-armored.svg"
  17245. }
  17246. },
  17247. backArmored: {
  17248. height: math.unit(19, "feet"),
  17249. weight: math.unit(900, "kg"),
  17250. name: "Back (Armored)",
  17251. image: {
  17252. source: "./media/characters/venio-darcony/back-armored.svg"
  17253. }
  17254. },
  17255. sword: {
  17256. height: math.unit(10, "feet"),
  17257. weight: math.unit(50, "lb"),
  17258. name: "Sword",
  17259. image: {
  17260. source: "./media/characters/venio-darcony/sword.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(10, "feet")
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(130, "feet"),
  17272. default: true
  17273. },
  17274. {
  17275. name: "Macro+",
  17276. height: math.unit(240, "feet")
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/veski/front.svg",
  17289. extra: 1299 / 1225,
  17290. bottom: 0.04
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(150, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/veski/back.svg",
  17299. extra: 1299 / 1225,
  17300. bottom: 0.008
  17301. }
  17302. },
  17303. maw: {
  17304. height: math.unit(1.5 * 1.21, "feet"),
  17305. name: "Maw",
  17306. image: {
  17307. source: "./media/characters/veski/maw.svg"
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(2, "km"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(5 + 7 / 12, "feet"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/isabelle/front.svg",
  17327. extra: 2130 / 1976,
  17328. bottom: 0.05
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Supermicro",
  17335. height: math.unit(10, "micrometers")
  17336. },
  17337. {
  17338. name: "Micro",
  17339. height: math.unit(1, "inch")
  17340. },
  17341. {
  17342. name: "Tiny",
  17343. height: math.unit(5, "inches")
  17344. },
  17345. {
  17346. name: "Standard",
  17347. height: math.unit(5 + 7 / 12, "inches")
  17348. },
  17349. {
  17350. name: "Macro",
  17351. height: math.unit(80, "meters"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(250, "meters")
  17357. },
  17358. {
  17359. name: "Gigamacro",
  17360. height: math.unit(5, "km")
  17361. },
  17362. {
  17363. name: "Cosmic",
  17364. height: math.unit(2.5e6, "miles")
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(150, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/hanzo/front.svg",
  17377. extra: 374 / 344,
  17378. bottom: 0.02
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(8, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(7, "feet"),
  17395. weight: math.unit(130, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/anna/front.svg",
  17399. extra: 169 / 145,
  17400. bottom: 0.06
  17401. }
  17402. },
  17403. full: {
  17404. height: math.unit(4.96, "feet"),
  17405. weight: math.unit(220, "lb"),
  17406. name: "Full",
  17407. image: {
  17408. source: "./media/characters/anna/full.svg",
  17409. extra: 138 / 114,
  17410. bottom: 0.15
  17411. }
  17412. },
  17413. tongue: {
  17414. height: math.unit(2.53, "feet"),
  17415. name: "Tongue",
  17416. image: {
  17417. source: "./media/characters/anna/tongue.svg"
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(7, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(7, "feet"),
  17434. weight: math.unit(150, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/ian-corvid/front.svg",
  17438. extra: 150 / 142,
  17439. bottom: 0.02
  17440. }
  17441. },
  17442. back: {
  17443. height: math.unit(7, "feet"),
  17444. weight: math.unit(150, "lb"),
  17445. name: "Back",
  17446. image: {
  17447. source: "./media/characters/ian-corvid/back.svg",
  17448. extra: 150 / 143,
  17449. bottom: 0.01
  17450. }
  17451. },
  17452. stomping: {
  17453. height: math.unit(7, "feet"),
  17454. weight: math.unit(150, "lb"),
  17455. name: "Stomping",
  17456. image: {
  17457. source: "./media/characters/ian-corvid/stomping.svg",
  17458. extra: 76 / 72
  17459. }
  17460. },
  17461. sitting: {
  17462. height: math.unit(7 / 1.8, "feet"),
  17463. weight: math.unit(150, "lb"),
  17464. name: "Sitting",
  17465. image: {
  17466. source: "./media/characters/ian-corvid/sitting.svg",
  17467. extra: 1400 / 1269,
  17468. bottom: 0.15
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Tiny Microw",
  17475. height: math.unit(1, "inch")
  17476. },
  17477. {
  17478. name: "Microw",
  17479. height: math.unit(6, "inches")
  17480. },
  17481. {
  17482. name: "Crow",
  17483. height: math.unit(7 + 1 / 12, "feet"),
  17484. default: true
  17485. },
  17486. {
  17487. name: "Macrow",
  17488. height: math.unit(176, "feet")
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(5 + 7 / 12, "feet"),
  17497. weight: math.unit(147, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/natalie-kellon/front.svg",
  17501. extra: 1214 / 1141,
  17502. bottom: 0.02
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(1 / 16, "inch")
  17510. },
  17511. {
  17512. name: "Tiny",
  17513. height: math.unit(4, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 7 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Amazon",
  17522. height: math.unit(12, "feet")
  17523. },
  17524. {
  17525. name: "Giantess",
  17526. height: math.unit(160, "meters")
  17527. },
  17528. {
  17529. name: "Titaness",
  17530. height: math.unit(800, "meters")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6, "feet"),
  17539. weight: math.unit(150, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/alluria/front.svg",
  17543. extra: 806 / 738,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. side: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/alluria/side.svg",
  17553. extra: 800 / 750,
  17554. }
  17555. },
  17556. back: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(150, "lb"),
  17559. name: "Back",
  17560. image: {
  17561. source: "./media/characters/alluria/back.svg",
  17562. extra: 806 / 738,
  17563. }
  17564. },
  17565. frontMaid: {
  17566. height: math.unit(6, "feet"),
  17567. weight: math.unit(150, "lb"),
  17568. name: "Front (Maid)",
  17569. image: {
  17570. source: "./media/characters/alluria/front-maid.svg",
  17571. extra: 806 / 738,
  17572. bottom: 0.01
  17573. }
  17574. },
  17575. sideMaid: {
  17576. height: math.unit(6, "feet"),
  17577. weight: math.unit(150, "lb"),
  17578. name: "Side (Maid)",
  17579. image: {
  17580. source: "./media/characters/alluria/side-maid.svg",
  17581. extra: 800 / 750,
  17582. bottom: 0.005
  17583. }
  17584. },
  17585. backMaid: {
  17586. height: math.unit(6, "feet"),
  17587. weight: math.unit(150, "lb"),
  17588. name: "Back (Maid)",
  17589. image: {
  17590. source: "./media/characters/alluria/back-maid.svg",
  17591. extra: 806 / 738,
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Micro",
  17598. height: math.unit(6, "inches"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(150, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/kyle/front.svg",
  17612. extra: 1069 / 962,
  17613. bottom: 77.228 / 1727.45
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(150, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(300, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/duncan/front.svg",
  17634. extra: 1650 / 1482,
  17635. bottom: 0.05
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(100, "feet"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(5 + 4 / 12, "feet"),
  17652. weight: math.unit(220, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/memory/front.svg",
  17656. extra: 3641 / 3545,
  17657. bottom: 0.03
  17658. }
  17659. },
  17660. back: {
  17661. height: math.unit(5 + 4 / 12, "feet"),
  17662. weight: math.unit(220, "lb"),
  17663. name: "Back",
  17664. image: {
  17665. source: "./media/characters/memory/back.svg",
  17666. extra: 3641 / 3545,
  17667. bottom: 0.025
  17668. }
  17669. },
  17670. frontSkirt: {
  17671. height: math.unit(5 + 4 / 12, "feet"),
  17672. weight: math.unit(220, "lb"),
  17673. name: "Front (Skirt)",
  17674. image: {
  17675. source: "./media/characters/memory/front-skirt.svg",
  17676. extra: 3641 / 3545,
  17677. bottom: 0.03
  17678. }
  17679. },
  17680. frontDress: {
  17681. height: math.unit(5 + 4 / 12, "feet"),
  17682. weight: math.unit(220, "lb"),
  17683. name: "Front (Dress)",
  17684. image: {
  17685. source: "./media/characters/memory/front-dress.svg",
  17686. extra: 3641 / 3545,
  17687. bottom: 0.03
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(6, "inches"),
  17695. default: true
  17696. },
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(5 + 4 / 12, "feet")
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(4 + 11 / 12, "feet"),
  17708. weight: math.unit(100, "lb"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/luno/front.svg",
  17712. extra: 1535 / 1487,
  17713. bottom: 0.03
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Micro",
  17720. height: math.unit(3, "inches")
  17721. },
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(4 + 11 / 12, "feet"),
  17725. default: true
  17726. },
  17727. {
  17728. name: "Macro",
  17729. height: math.unit(300, "feet")
  17730. },
  17731. {
  17732. name: "Megamacro",
  17733. height: math.unit(700, "miles")
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(6 + 2 / 12, "feet"),
  17742. weight: math.unit(170, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/jamesy/front.svg",
  17746. extra: 440 / 382,
  17747. bottom: 0.005
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Micro",
  17754. height: math.unit(3, "inches")
  17755. },
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(6 + 2 / 12, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(300, "feet")
  17764. },
  17765. {
  17766. name: "Megamacro",
  17767. height: math.unit(700, "miles")
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17773. {
  17774. front: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(160, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/mark/front.svg",
  17780. extra: 3300 / 3100,
  17781. bottom: 136.42 / 3440.47
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(120, "meters")
  17789. },
  17790. {
  17791. name: "Bigger Macro",
  17792. height: math.unit(350, "meters")
  17793. },
  17794. {
  17795. name: "Megamacro",
  17796. height: math.unit(8, "km"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Continental",
  17801. height: math.unit(4550, "km")
  17802. },
  17803. {
  17804. name: "Planetary",
  17805. height: math.unit(65000, "km")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6, "feet"),
  17814. weight: math.unit(400, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/mac/front.svg",
  17818. extra: 1048 / 987.7,
  17819. bottom: 60 / 1107.6,
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(500, "feet"),
  17827. default: true
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(5 + 2 / 12, "feet"),
  17836. weight: math.unit(190, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/bari/front.svg",
  17840. extra: 3156 / 2880,
  17841. bottom: 0.03
  17842. }
  17843. },
  17844. back: {
  17845. height: math.unit(5 + 2 / 12, "feet"),
  17846. weight: math.unit(190, "lb"),
  17847. name: "Back",
  17848. image: {
  17849. source: "./media/characters/bari/back.svg",
  17850. extra: 3260 / 2834,
  17851. bottom: 0.025
  17852. }
  17853. },
  17854. frontPlush: {
  17855. height: math.unit(5 + 2 / 12, "feet"),
  17856. weight: math.unit(190, "lb"),
  17857. name: "Front (Plush)",
  17858. image: {
  17859. source: "./media/characters/bari/front-plush.svg",
  17860. extra: 1112 / 1061,
  17861. bottom: 0.002
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Micro",
  17868. height: math.unit(3, "inches")
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(5 + 2 / 12, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Macro",
  17877. height: math.unit(20, "feet")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(6 + 1 / 12, "feet"),
  17886. weight: math.unit(275, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/hunter-misha-raven/front.svg"
  17890. }
  17891. },
  17892. },
  17893. [
  17894. {
  17895. name: "Mortal",
  17896. height: math.unit(6 + 1 / 12, "feet")
  17897. },
  17898. {
  17899. name: "Divine",
  17900. height: math.unit(1.12134e34, "parsecs"),
  17901. default: true
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(6 + 3 / 12, "feet"),
  17910. weight: math.unit(220, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/max-calore/front.svg",
  17914. extra: 1700 / 1648,
  17915. bottom: 0.01
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(6 + 3 / 12, "feet"),
  17920. weight: math.unit(220, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/max-calore/back.svg",
  17924. extra: 1700 / 1648,
  17925. bottom: 0.01
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6 + 3 / 12, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17939. {
  17940. side: {
  17941. height: math.unit(2 + 8 / 12, "feet"),
  17942. weight: math.unit(99, "lb"),
  17943. name: "Side",
  17944. image: {
  17945. source: "./media/characters/aspen/side.svg",
  17946. extra: 152 / 138,
  17947. bottom: 0.032
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(2 + 8 / 12, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17961. {
  17962. side: {
  17963. height: math.unit(3 + 2 / 12, "feet"),
  17964. weight: math.unit(224, "lb"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/sheila-feral-wolf/side.svg",
  17968. extra: 179 / 166,
  17969. bottom: 0.03
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(3 + 2 / 12, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17983. {
  17984. side: {
  17985. height: math.unit(1 + 9 / 12, "feet"),
  17986. weight: math.unit(38, "lb"),
  17987. name: "Side",
  17988. image: {
  17989. source: "./media/characters/michelle/side.svg",
  17990. extra: 147 / 136.7,
  17991. bottom: 0.03
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(1 + 9 / 12, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(1.54, "feet"),
  18008. weight: math.unit(50, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/nino/front.svg"
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(1.54, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(1.49, "feet"),
  18028. weight: math.unit(45, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/viola/front.svg"
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(1.49, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6 + 5 / 12, "feet"),
  18048. weight: math.unit(580, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/atlas/front.svg",
  18052. extra: 298.5 / 290,
  18053. bottom: 0.015
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(6 + 5 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18067. {
  18068. side: {
  18069. height: math.unit(15.6, "inches"),
  18070. weight: math.unit(10, "lb"),
  18071. name: "Side",
  18072. image: {
  18073. source: "./media/characters/davy/side.svg",
  18074. extra: 200 / 170,
  18075. bottom: 0.01
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(15.6, "inches"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18089. {
  18090. side: {
  18091. height: math.unit(4 + 8 / 12, "feet"),
  18092. weight: math.unit(166, "lb"),
  18093. name: "Side",
  18094. image: {
  18095. source: "./media/characters/fiona/side.svg",
  18096. extra: 232 / 220,
  18097. bottom: 0.03
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(4 + 8 / 12, "feet"),
  18105. default: true
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18111. {
  18112. front: {
  18113. height: math.unit(26, "inches"),
  18114. weight: math.unit(35, "lb"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/lyla/front.svg",
  18118. bottom: 0.1
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(3, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18132. {
  18133. side: {
  18134. height: math.unit(1.8, "feet"),
  18135. weight: math.unit(44, "lb"),
  18136. name: "Side",
  18137. image: {
  18138. source: "./media/characters/perseus/side.svg",
  18139. bottom: 0.21
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(1.8, "feet"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18153. {
  18154. side: {
  18155. height: math.unit(4 + 2 / 12, "feet"),
  18156. weight: math.unit(20, "lb"),
  18157. name: "Side",
  18158. image: {
  18159. source: "./media/characters/remus/side.svg"
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(4 + 2 / 12, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18173. {
  18174. front: {
  18175. height: math.unit(4 + 11 / 12, "feet"),
  18176. weight: math.unit(114, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/raf/front.svg",
  18180. extra: 1504/1339,
  18181. bottom: 26/1530
  18182. }
  18183. },
  18184. side: {
  18185. height: math.unit(4 + 11 / 12, "feet"),
  18186. weight: math.unit(114, "lb"),
  18187. name: "Side",
  18188. image: {
  18189. source: "./media/characters/raf/side.svg",
  18190. extra: 1466/1316,
  18191. bottom: 29/1495
  18192. }
  18193. },
  18194. paw: {
  18195. height: math.unit(1.45, "feet"),
  18196. name: "Paw",
  18197. image: {
  18198. source: "./media/characters/raf/paw.svg"
  18199. },
  18200. extraAttributes: {
  18201. "toeSize": {
  18202. name: "Toe Size",
  18203. power: 2,
  18204. type: "area",
  18205. base: math.unit(0.004, "m^2")
  18206. },
  18207. "padSize": {
  18208. name: "Pad Size",
  18209. power: 2,
  18210. type: "area",
  18211. base: math.unit(0.04, "m^2")
  18212. },
  18213. "footSize": {
  18214. name: "Foot Size",
  18215. power: 2,
  18216. type: "area",
  18217. base: math.unit(0.08, "m^2")
  18218. },
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Micro",
  18225. height: math.unit(2, "inches")
  18226. },
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(4 + 11 / 12, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Macro",
  18234. height: math.unit(70, "feet")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(1.5, "meters"),
  18243. weight: math.unit(68, "kg"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/liam-einarr/front.svg",
  18247. extra: 2822 / 2666
  18248. }
  18249. },
  18250. back: {
  18251. height: math.unit(1.5, "meters"),
  18252. weight: math.unit(68, "kg"),
  18253. name: "Back",
  18254. image: {
  18255. source: "./media/characters/liam-einarr/back.svg",
  18256. extra: 2822 / 2666,
  18257. bottom: 0.015
  18258. }
  18259. },
  18260. },
  18261. [
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(1.5, "meters"),
  18265. default: true
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(150, "meters")
  18270. },
  18271. {
  18272. name: "Megamacro",
  18273. height: math.unit(35, "km")
  18274. },
  18275. ]
  18276. ))
  18277. characterMakers.push(() => makeCharacter(
  18278. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18279. {
  18280. front: {
  18281. height: math.unit(6, "feet"),
  18282. weight: math.unit(75, "kg"),
  18283. name: "Front",
  18284. image: {
  18285. source: "./media/characters/linda/front.svg",
  18286. extra: 930 / 874,
  18287. bottom: 0.004
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(6, "feet"),
  18295. default: true
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18301. {
  18302. front: {
  18303. height: math.unit(6 + 8 / 12, "feet"),
  18304. weight: math.unit(220, "lb"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/caylex/front.svg",
  18308. extra: 821 / 772,
  18309. bottom: 0.07
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(6 + 8 / 12, "feet"),
  18314. weight: math.unit(220, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/caylex/back.svg",
  18318. extra: 821 / 772,
  18319. bottom: 0.022
  18320. }
  18321. },
  18322. hand: {
  18323. height: math.unit(1.25, "feet"),
  18324. name: "Hand",
  18325. image: {
  18326. source: "./media/characters/caylex/hand.svg"
  18327. }
  18328. },
  18329. foot: {
  18330. height: math.unit(1.6, "feet"),
  18331. name: "Foot",
  18332. image: {
  18333. source: "./media/characters/caylex/foot.svg"
  18334. }
  18335. },
  18336. armored: {
  18337. height: math.unit(6 + 8 / 12, "feet"),
  18338. weight: math.unit(250, "lb"),
  18339. name: "Armored",
  18340. image: {
  18341. source: "./media/characters/caylex/armored.svg",
  18342. extra: 1420 / 1310,
  18343. bottom: 0.045
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(6 + 8 / 12, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Normal+",
  18355. height: math.unit(12, "feet")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(7 + 6 / 12, "feet"),
  18364. weight: math.unit(288, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/alana/front.svg",
  18368. extra: 679 / 653,
  18369. bottom: 22.5 / 701
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(7 + 6 / 12, "feet")
  18377. },
  18378. {
  18379. name: "Large",
  18380. height: math.unit(50, "feet")
  18381. },
  18382. {
  18383. name: "Macro",
  18384. height: math.unit(100, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Macro+",
  18389. height: math.unit(200, "feet")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(6 + 1 / 12, "feet"),
  18398. weight: math.unit(210, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/hasani/front.svg",
  18402. extra: 244 / 232,
  18403. bottom: 0.01
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(6 + 1 / 12, "feet"),
  18408. weight: math.unit(210, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/hasani/back.svg",
  18412. extra: 244 / 232,
  18413. bottom: 0.01
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(6 + 1 / 12, "feet")
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(175, "feet"),
  18425. default: true
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(1.82, "meters"),
  18434. weight: math.unit(140, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/nita/front.svg",
  18438. extra: 2473 / 2363,
  18439. bottom: 0.01
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(1.82, "m")
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(300, "m")
  18451. },
  18452. {
  18453. name: "Mistake Canon",
  18454. height: math.unit(0.5, "miles"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Big Mistake",
  18459. height: math.unit(13, "miles")
  18460. },
  18461. {
  18462. name: "Playing God",
  18463. height: math.unit(2450, "miles")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(4, "feet"),
  18472. weight: math.unit(120, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/shiriko/front.svg",
  18476. extra: 970/934,
  18477. bottom: 5/975
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(4, "feet"),
  18485. default: true
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18491. {
  18492. front: {
  18493. height: math.unit(6, "feet"),
  18494. name: "front",
  18495. image: {
  18496. source: "./media/characters/deja/front.svg",
  18497. extra: 926 / 840,
  18498. bottom: 0.07
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Planck Length",
  18505. height: math.unit(1.6e-35, "meters")
  18506. },
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(30.48, "meters"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Universal",
  18514. height: math.unit(8.8e26, "meters")
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18520. {
  18521. side: {
  18522. height: math.unit(8, "feet"),
  18523. weight: math.unit(6300, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/anima/side.svg",
  18527. bottom: 0.035
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(8, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(8, "feet"),
  18544. weight: math.unit(350, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/bianca/front.svg",
  18548. extra: 234 / 225,
  18549. bottom: 0.03
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(11 + 5/12, "feet"),
  18566. weight: math.unit(1200, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/adinia/front.svg",
  18570. extra: 1767/1641,
  18571. bottom: 44/1811
  18572. },
  18573. extraAttributes: {
  18574. "energyIntake": {
  18575. name: "Energy Intake",
  18576. power: 3,
  18577. type: "energy",
  18578. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18579. },
  18580. }
  18581. },
  18582. back: {
  18583. height: math.unit(11 + 5/12, "feet"),
  18584. weight: math.unit(1200, "lb"),
  18585. name: "Back",
  18586. image: {
  18587. source: "./media/characters/adinia/back.svg",
  18588. extra: 1834/1684,
  18589. bottom: 14/1848
  18590. },
  18591. extraAttributes: {
  18592. "energyIntake": {
  18593. name: "Energy Intake",
  18594. power: 3,
  18595. type: "energy",
  18596. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18597. },
  18598. }
  18599. },
  18600. maw: {
  18601. height: math.unit(3.79, "feet"),
  18602. name: "Maw",
  18603. image: {
  18604. source: "./media/characters/adinia/maw.svg"
  18605. }
  18606. },
  18607. rump: {
  18608. height: math.unit(4.6, "feet"),
  18609. name: "Rump",
  18610. image: {
  18611. source: "./media/characters/adinia/rump.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(11 + 5 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(3, "meters"),
  18628. weight: math.unit(200, "kg"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/lykasa/front.svg",
  18632. extra: 1076 / 976,
  18633. bottom: 0.06
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(3, "meters")
  18641. },
  18642. {
  18643. name: "Kaiju",
  18644. height: math.unit(120, "meters"),
  18645. default: true
  18646. },
  18647. {
  18648. name: "Mega Kaiju",
  18649. height: math.unit(240, "km")
  18650. },
  18651. {
  18652. name: "Giga Kaiju",
  18653. height: math.unit(400, "megameters")
  18654. },
  18655. {
  18656. name: "Tera Kaiju",
  18657. height: math.unit(800, "gigameters")
  18658. },
  18659. {
  18660. name: "Kaiju Dragon Goddess",
  18661. height: math.unit(26, "zettaparsecs")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18667. {
  18668. side: {
  18669. height: math.unit(283 / 124 * 6, "feet"),
  18670. weight: math.unit(35000, "lb"),
  18671. name: "Side",
  18672. image: {
  18673. source: "./media/characters/malfaren/side.svg",
  18674. extra: 1310/529,
  18675. bottom: 24/1334
  18676. }
  18677. },
  18678. front: {
  18679. height: math.unit(22.36, "feet"),
  18680. weight: math.unit(35000, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/malfaren/front.svg",
  18684. extra: 1237/1115,
  18685. bottom: 32/1269
  18686. }
  18687. },
  18688. maw: {
  18689. height: math.unit(6.9, "feet"),
  18690. name: "Maw",
  18691. image: {
  18692. source: "./media/characters/malfaren/maw.svg"
  18693. }
  18694. },
  18695. dick: {
  18696. height: math.unit(6.19, "feet"),
  18697. name: "Dick",
  18698. image: {
  18699. source: "./media/characters/malfaren/dick.svg"
  18700. }
  18701. },
  18702. eye: {
  18703. height: math.unit(0.69, "feet"),
  18704. name: "Eye",
  18705. image: {
  18706. source: "./media/characters/malfaren/eye.svg"
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Big",
  18713. height: math.unit(283 / 162 * 6, "feet"),
  18714. },
  18715. {
  18716. name: "Bigger",
  18717. height: math.unit(283 / 124 * 6, "feet")
  18718. },
  18719. {
  18720. name: "Massive",
  18721. height: math.unit(283 / 92 * 6, "feet"),
  18722. default: true
  18723. },
  18724. {
  18725. name: "👀💦",
  18726. height: math.unit(283 / 73 * 6, "feet"),
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(1.7, "m"),
  18735. weight: math.unit(70, "kg"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/kernel/front.svg",
  18739. extra: 222 / 210,
  18740. bottom: 0.007
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Nano",
  18747. height: math.unit(17, "micrometers")
  18748. },
  18749. {
  18750. name: "Micro",
  18751. height: math.unit(1.7, "mm")
  18752. },
  18753. {
  18754. name: "Small",
  18755. height: math.unit(1.7, "cm")
  18756. },
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(1.7, "m"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(1.75, "meters"),
  18769. weight: math.unit(65, "kg"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/jayne-folest/front.svg",
  18773. extra: 2115 / 2007,
  18774. bottom: 0.02
  18775. }
  18776. },
  18777. back: {
  18778. height: math.unit(1.75, "meters"),
  18779. weight: math.unit(65, "kg"),
  18780. name: "Back",
  18781. image: {
  18782. source: "./media/characters/jayne-folest/back.svg",
  18783. extra: 2115 / 2007,
  18784. bottom: 0.005
  18785. }
  18786. },
  18787. frontClothed: {
  18788. height: math.unit(1.75, "meters"),
  18789. weight: math.unit(65, "kg"),
  18790. name: "Front (Clothed)",
  18791. image: {
  18792. source: "./media/characters/jayne-folest/front-clothed.svg",
  18793. extra: 2115 / 2007,
  18794. bottom: 0.035
  18795. }
  18796. },
  18797. hand: {
  18798. height: math.unit(1 / 1.260, "feet"),
  18799. name: "Hand",
  18800. image: {
  18801. source: "./media/characters/jayne-folest/hand.svg"
  18802. }
  18803. },
  18804. foot: {
  18805. height: math.unit(1 / 0.918, "feet"),
  18806. name: "Foot",
  18807. image: {
  18808. source: "./media/characters/jayne-folest/foot.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(4, "cm")
  18816. },
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(1.75, "meters")
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(47.5, "meters"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(180, "cm"),
  18833. weight: math.unit(70, "kg"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/algier/front.svg",
  18837. extra: 596 / 572,
  18838. bottom: 0.04
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(180, "cm"),
  18843. weight: math.unit(70, "kg"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/algier/back.svg",
  18847. extra: 596 / 572,
  18848. bottom: 0.025
  18849. }
  18850. },
  18851. frontdressed: {
  18852. height: math.unit(180, "cm"),
  18853. weight: math.unit(150, "kg"),
  18854. name: "Front-dressed",
  18855. image: {
  18856. source: "./media/characters/algier/front-dressed.svg",
  18857. extra: 596 / 572,
  18858. bottom: 0.038
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Micro",
  18865. height: math.unit(5, "cm")
  18866. },
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(180, "cm"),
  18870. default: true
  18871. },
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(64, "m")
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18880. {
  18881. upright: {
  18882. height: math.unit(7, "feet"),
  18883. weight: math.unit(300, "lb"),
  18884. name: "Upright",
  18885. image: {
  18886. source: "./media/characters/pretzel/upright.svg",
  18887. extra: 534 / 522,
  18888. bottom: 0.065
  18889. }
  18890. },
  18891. sprawling: {
  18892. height: math.unit(3.75, "feet"),
  18893. weight: math.unit(300, "lb"),
  18894. name: "Sprawling",
  18895. image: {
  18896. source: "./media/characters/pretzel/sprawling.svg",
  18897. extra: 314 / 281,
  18898. bottom: 0.1
  18899. }
  18900. },
  18901. tongue: {
  18902. height: math.unit(2, "feet"),
  18903. name: "Tongue",
  18904. image: {
  18905. source: "./media/characters/pretzel/tongue.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(7, "feet"),
  18913. default: true
  18914. },
  18915. {
  18916. name: "Oversized",
  18917. height: math.unit(15, "feet")
  18918. },
  18919. {
  18920. name: "Huge",
  18921. height: math.unit(30, "feet")
  18922. },
  18923. {
  18924. name: "Macro",
  18925. height: math.unit(250, "feet")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18931. {
  18932. sideFront: {
  18933. height: math.unit(5 + 2 / 12, "feet"),
  18934. weight: math.unit(120, "lb"),
  18935. name: "Front Side",
  18936. image: {
  18937. source: "./media/characters/roxi/side-front.svg",
  18938. extra: 2924 / 2717,
  18939. bottom: 0.08
  18940. }
  18941. },
  18942. sideBack: {
  18943. height: math.unit(5 + 2 / 12, "feet"),
  18944. weight: math.unit(120, "lb"),
  18945. name: "Back Side",
  18946. image: {
  18947. source: "./media/characters/roxi/side-back.svg",
  18948. extra: 2904 / 2693,
  18949. bottom: 0.06
  18950. }
  18951. },
  18952. front: {
  18953. height: math.unit(5 + 2 / 12, "feet"),
  18954. weight: math.unit(120, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/roxi/front.svg",
  18958. extra: 2028 / 1907,
  18959. bottom: 0.01
  18960. }
  18961. },
  18962. frontAlt: {
  18963. height: math.unit(5 + 2 / 12, "feet"),
  18964. weight: math.unit(120, "lb"),
  18965. name: "Front (Alt)",
  18966. image: {
  18967. source: "./media/characters/roxi/front-alt.svg",
  18968. extra: 1828 / 1798,
  18969. bottom: 0.01
  18970. }
  18971. },
  18972. sitting: {
  18973. height: math.unit(2.8, "feet"),
  18974. weight: math.unit(120, "lb"),
  18975. name: "Sitting",
  18976. image: {
  18977. source: "./media/characters/roxi/sitting.svg",
  18978. extra: 2660 / 2462,
  18979. bottom: 0.1
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(5 + 2 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18993. {
  18994. side: {
  18995. height: math.unit(55, "feet"),
  18996. weight: math.unit(153, "tons"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/shadow/side.svg",
  19000. extra: 701 / 628,
  19001. bottom: 0.02
  19002. }
  19003. },
  19004. flying: {
  19005. height: math.unit(145, "feet"),
  19006. weight: math.unit(153, "tons"),
  19007. name: "Flying",
  19008. image: {
  19009. source: "./media/characters/shadow/flying.svg"
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(55, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6, "feet"),
  19026. weight: math.unit(200, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/marcie/front.svg",
  19030. extra: 960 / 876,
  19031. bottom: 58 / 1017.87
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(1, "mile"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(7, "feet"),
  19048. weight: math.unit(200, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/kachina/front.svg",
  19052. extra: 1290.68 / 1119,
  19053. bottom: 36.5 / 1327.18
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(7, "feet"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19067. {
  19068. looking: {
  19069. height: math.unit(2, "meters"),
  19070. weight: math.unit(300, "kg"),
  19071. name: "Looking",
  19072. image: {
  19073. source: "./media/characters/kash/looking.svg",
  19074. extra: 474 / 344,
  19075. bottom: 0.03
  19076. }
  19077. },
  19078. side: {
  19079. height: math.unit(2, "meters"),
  19080. weight: math.unit(300, "kg"),
  19081. name: "Side",
  19082. image: {
  19083. source: "./media/characters/kash/side.svg",
  19084. extra: 302 / 251,
  19085. bottom: 0.03
  19086. }
  19087. },
  19088. front: {
  19089. height: math.unit(2, "meters"),
  19090. weight: math.unit(300, "kg"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/kash/front.svg",
  19094. extra: 495 / 360,
  19095. bottom: 0.015
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(2, "meters"),
  19103. default: true
  19104. },
  19105. {
  19106. name: "Big",
  19107. height: math.unit(3, "meters")
  19108. },
  19109. {
  19110. name: "Large",
  19111. height: math.unit(5, "meters")
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19117. {
  19118. feeding: {
  19119. height: math.unit(6.7, "feet"),
  19120. weight: math.unit(350, "lb"),
  19121. name: "Feeding",
  19122. image: {
  19123. source: "./media/characters/lalim/feeding.svg",
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6.7, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(9.5, "feet"),
  19140. weight: math.unit(600, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/de'vout/front.svg",
  19144. extra: 1443 / 1328,
  19145. bottom: 0.025
  19146. }
  19147. },
  19148. back: {
  19149. height: math.unit(9.5, "feet"),
  19150. weight: math.unit(600, "lb"),
  19151. name: "Back",
  19152. image: {
  19153. source: "./media/characters/de'vout/back.svg",
  19154. extra: 1443 / 1328
  19155. }
  19156. },
  19157. frontDressed: {
  19158. height: math.unit(9.5, "feet"),
  19159. weight: math.unit(600, "lb"),
  19160. name: "Front (Dressed",
  19161. image: {
  19162. source: "./media/characters/de'vout/front-dressed.svg",
  19163. extra: 1443 / 1328,
  19164. bottom: 0.025
  19165. }
  19166. },
  19167. backDressed: {
  19168. height: math.unit(9.5, "feet"),
  19169. weight: math.unit(600, "lb"),
  19170. name: "Back (Dressed",
  19171. image: {
  19172. source: "./media/characters/de'vout/back-dressed.svg",
  19173. extra: 1443 / 1328
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(9.5, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(8, "feet"),
  19190. weight: math.unit(225, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/talana/front.svg",
  19194. extra: 1410 / 1300,
  19195. bottom: 0.015
  19196. }
  19197. },
  19198. frontDressed: {
  19199. height: math.unit(8, "feet"),
  19200. weight: math.unit(225, "lb"),
  19201. name: "Front (Dressed",
  19202. image: {
  19203. source: "./media/characters/talana/front-dressed.svg",
  19204. extra: 1410 / 1300,
  19205. bottom: 0.015
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(8, "feet"),
  19213. default: true
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19219. {
  19220. side: {
  19221. height: math.unit(7.2, "feet"),
  19222. weight: math.unit(150, "lb"),
  19223. name: "Side",
  19224. image: {
  19225. source: "./media/characters/xeauvok/side.svg",
  19226. extra: 1975 / 1523,
  19227. bottom: 0.07
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(7.2, "feet"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19241. {
  19242. side: {
  19243. height: math.unit(4, "meters"),
  19244. weight: math.unit(2200, "kg"),
  19245. name: "Side",
  19246. image: {
  19247. source: "./media/characters/zara/side.svg",
  19248. extra: 765/744,
  19249. bottom: 156/921
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(4, "meters"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19263. {
  19264. side: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Side",
  19268. image: {
  19269. source: "./media/characters/richard-dragon/side.svg",
  19270. extra: 845 / 340,
  19271. bottom: 0.017
  19272. }
  19273. },
  19274. maw: {
  19275. height: math.unit(2.97, "feet"),
  19276. name: "Maw",
  19277. image: {
  19278. source: "./media/characters/richard-dragon/maw.svg"
  19279. }
  19280. },
  19281. },
  19282. [
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19287. {
  19288. front: {
  19289. height: math.unit(4, "feet"),
  19290. weight: math.unit(100, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/richard-smeargle/front.svg",
  19294. extra: 2952 / 2820,
  19295. bottom: 0.028
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(4, "feet"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Dynamax",
  19307. height: math.unit(20, "meters")
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(6, "feet"),
  19316. weight: math.unit(110, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/klay/front.svg",
  19320. extra: 962 / 883,
  19321. bottom: 0.04
  19322. }
  19323. },
  19324. back: {
  19325. height: math.unit(6, "feet"),
  19326. weight: math.unit(110, "lb"),
  19327. name: "Back",
  19328. image: {
  19329. source: "./media/characters/klay/back.svg",
  19330. extra: 962 / 883
  19331. }
  19332. },
  19333. beans: {
  19334. height: math.unit(1.15, "feet"),
  19335. name: "Beans",
  19336. image: {
  19337. source: "./media/characters/klay/beans.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Micro",
  19344. height: math.unit(6, "inches")
  19345. },
  19346. {
  19347. name: "Mini",
  19348. height: math.unit(3, "feet")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(6, "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Big",
  19357. height: math.unit(25, "feet")
  19358. },
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(100, "feet")
  19362. },
  19363. {
  19364. name: "Megamacro",
  19365. height: math.unit(400, "feet")
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6, "feet"),
  19374. weight: math.unit(160, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/marcus/front.svg",
  19378. extra: 734 / 676,
  19379. bottom: 0.03
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Little",
  19386. height: math.unit(6, "feet")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(110, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(250, "feet")
  19396. },
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(1000, "feet")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(7, "feet"),
  19408. weight: math.unit(275, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/claude-delroute/front.svg",
  19412. extra: 902/827,
  19413. bottom: 26/928
  19414. }
  19415. },
  19416. side: {
  19417. height: math.unit(7, "feet"),
  19418. weight: math.unit(275, "lb"),
  19419. name: "Side",
  19420. image: {
  19421. source: "./media/characters/claude-delroute/side.svg",
  19422. extra: 908/853,
  19423. bottom: 16/924
  19424. }
  19425. },
  19426. back: {
  19427. height: math.unit(7, "feet"),
  19428. weight: math.unit(275, "lb"),
  19429. name: "Back",
  19430. image: {
  19431. source: "./media/characters/claude-delroute/back.svg",
  19432. extra: 911/829,
  19433. bottom: 18/929
  19434. }
  19435. },
  19436. maw: {
  19437. height: math.unit(0.6407, "meters"),
  19438. name: "Maw",
  19439. image: {
  19440. source: "./media/characters/claude-delroute/maw.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(7, "feet"),
  19448. default: true
  19449. },
  19450. {
  19451. name: "Lorge",
  19452. height: math.unit(20, "feet")
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(8 + 4 / 12, "feet"),
  19461. weight: math.unit(600, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/dragonien/front.svg",
  19465. extra: 100 / 94,
  19466. bottom: 3.3 / 103.3445
  19467. }
  19468. },
  19469. back: {
  19470. height: math.unit(8 + 4 / 12, "feet"),
  19471. weight: math.unit(600, "lb"),
  19472. name: "Back",
  19473. image: {
  19474. source: "./media/characters/dragonien/back.svg",
  19475. extra: 776 / 746,
  19476. bottom: 6.4 / 782.0616
  19477. }
  19478. },
  19479. foot: {
  19480. height: math.unit(1.54, "feet"),
  19481. name: "Foot",
  19482. image: {
  19483. source: "./media/characters/dragonien/foot.svg",
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(8 + 4 / 12, "feet"),
  19491. default: true
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(200, "feet")
  19496. },
  19497. {
  19498. name: "Megamacro",
  19499. height: math.unit(1, "mile")
  19500. },
  19501. {
  19502. name: "Gigamacro",
  19503. height: math.unit(1000, "miles")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(5 + 2 / 12, "feet"),
  19512. weight: math.unit(110, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/desta/front.svg",
  19516. extra: 767 / 726,
  19517. bottom: 11.7 / 779
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(5 + 2 / 12, "feet"),
  19522. weight: math.unit(110, "lb"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/desta/back.svg",
  19526. extra: 777 / 728,
  19527. bottom: 6 / 784
  19528. }
  19529. },
  19530. frontAlt: {
  19531. height: math.unit(5 + 2 / 12, "feet"),
  19532. weight: math.unit(110, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/desta/front-alt.svg",
  19536. extra: 1482 / 1417
  19537. }
  19538. },
  19539. side: {
  19540. height: math.unit(5 + 2 / 12, "feet"),
  19541. weight: math.unit(110, "lb"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/desta/side.svg",
  19545. extra: 2579 / 2491,
  19546. bottom: 0.053
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Micro",
  19553. height: math.unit(6, "inches")
  19554. },
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(5 + 2 / 12, "feet"),
  19558. default: true
  19559. },
  19560. {
  19561. name: "Macro",
  19562. height: math.unit(62, "feet")
  19563. },
  19564. {
  19565. name: "Megamacro",
  19566. height: math.unit(1800, "feet")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(10, "feet"),
  19575. weight: math.unit(700, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/storm-alystar/front.svg",
  19579. extra: 2112 / 1898,
  19580. bottom: 0.034
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Micro",
  19587. height: math.unit(3.5, "inches")
  19588. },
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(10, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(400, "feet")
  19597. },
  19598. {
  19599. name: "Deific",
  19600. height: math.unit(60, "miles")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(2.35, "meters"),
  19609. weight: math.unit(119, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/ilia/front.svg",
  19613. extra: 1285 / 1255,
  19614. bottom: 0.06
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(2.35, "meters")
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(140, "meters"),
  19626. default: true
  19627. },
  19628. {
  19629. name: "Megamacro",
  19630. height: math.unit(100, "miles")
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(6 + 5 / 12, "feet"),
  19639. weight: math.unit(190, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/kingdead/front.svg",
  19643. extra: 1228 / 1177
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Micro",
  19650. height: math.unit(7, "inches")
  19651. },
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(6 + 5 / 12, "feet")
  19655. },
  19656. {
  19657. name: "Macro",
  19658. height: math.unit(150, "feet"),
  19659. default: true
  19660. },
  19661. {
  19662. name: "Megamacro",
  19663. height: math.unit(200, "miles")
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(8, "feet"),
  19672. weight: math.unit(600, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/kyrehx/front.svg",
  19676. extra: 1195 / 1095,
  19677. bottom: 0.034
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Micro",
  19684. height: math.unit(2, "inches")
  19685. },
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(8, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(255, "feet")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19699. {
  19700. front: {
  19701. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19702. weight: math.unit(184, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/xang/front.svg",
  19706. extra: 845 / 755
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19714. default: true
  19715. },
  19716. {
  19717. name: "Macro",
  19718. height: math.unit(0.935 * 146, "feet")
  19719. },
  19720. {
  19721. name: "Megamacro",
  19722. height: math.unit(0.935 * 3, "miles")
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19728. {
  19729. frontDressed: {
  19730. height: math.unit(5 + 7 / 12, "feet"),
  19731. weight: math.unit(140, "lb"),
  19732. name: "Front (Dressed)",
  19733. image: {
  19734. source: "./media/characters/doc-weardno/front-dressed.svg",
  19735. extra: 263 / 234
  19736. }
  19737. },
  19738. backDressed: {
  19739. height: math.unit(5 + 7 / 12, "feet"),
  19740. weight: math.unit(140, "lb"),
  19741. name: "Back (Dressed)",
  19742. image: {
  19743. source: "./media/characters/doc-weardno/back-dressed.svg",
  19744. extra: 266 / 238
  19745. }
  19746. },
  19747. front: {
  19748. height: math.unit(5 + 7 / 12, "feet"),
  19749. weight: math.unit(140, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/doc-weardno/front.svg",
  19753. extra: 254 / 233
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Micro",
  19760. height: math.unit(3, "inches")
  19761. },
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(5 + 7 / 12, "feet"),
  19765. default: true
  19766. },
  19767. {
  19768. name: "Macro",
  19769. height: math.unit(25, "feet")
  19770. },
  19771. {
  19772. name: "Megamacro",
  19773. height: math.unit(2, "miles")
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(6 + 2 / 12, "feet"),
  19782. weight: math.unit(153, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/seth-whilst/front.svg",
  19786. bottom: 0.07
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Micro",
  19793. height: math.unit(5, "inches")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(6 + 2 / 12, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(3, "inches"),
  19807. weight: math.unit(8, "grams"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/pocket-jabari/front.svg",
  19811. extra: 1024 / 974,
  19812. bottom: 0.039
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Minimicro",
  19819. height: math.unit(8, "mm")
  19820. },
  19821. {
  19822. name: "Micro",
  19823. height: math.unit(3, "inches"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(3, "feet")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19834. {
  19835. frontDressed: {
  19836. height: math.unit(15, "feet"),
  19837. weight: math.unit(3280, "lb"),
  19838. name: "Front (Dressed)",
  19839. image: {
  19840. source: "./media/characters/sapphy/front-dressed.svg",
  19841. extra: 1951/1654,
  19842. bottom: 194/2145
  19843. },
  19844. form: "anthro",
  19845. default: true
  19846. },
  19847. backDressed: {
  19848. height: math.unit(15, "feet"),
  19849. weight: math.unit(3280, "lb"),
  19850. name: "Back (Dressed)",
  19851. image: {
  19852. source: "./media/characters/sapphy/back-dressed.svg",
  19853. extra: 2058/1918,
  19854. bottom: 125/2183
  19855. },
  19856. form: "anthro"
  19857. },
  19858. frontNude: {
  19859. height: math.unit(15, "feet"),
  19860. weight: math.unit(3280, "lb"),
  19861. name: "Front (Nude)",
  19862. image: {
  19863. source: "./media/characters/sapphy/front-nude.svg",
  19864. extra: 1951/1654,
  19865. bottom: 194/2145
  19866. },
  19867. form: "anthro"
  19868. },
  19869. backNude: {
  19870. height: math.unit(15, "feet"),
  19871. weight: math.unit(3280, "lb"),
  19872. name: "Back (Nude)",
  19873. image: {
  19874. source: "./media/characters/sapphy/back-nude.svg",
  19875. extra: 2058/1918,
  19876. bottom: 125/2183
  19877. },
  19878. form: "anthro"
  19879. },
  19880. full: {
  19881. height: math.unit(15, "feet"),
  19882. weight: math.unit(3280, "lb"),
  19883. name: "Full",
  19884. image: {
  19885. source: "./media/characters/sapphy/full.svg",
  19886. extra: 1396/1317,
  19887. bottom: 44/1440
  19888. },
  19889. form: "anthro"
  19890. },
  19891. dick: {
  19892. height: math.unit(3.8, "feet"),
  19893. name: "Dick",
  19894. image: {
  19895. source: "./media/characters/sapphy/dick.svg"
  19896. },
  19897. form: "anthro"
  19898. },
  19899. feral: {
  19900. height: math.unit(35, "feet"),
  19901. weight: math.unit(160, "tons"),
  19902. name: "Feral",
  19903. image: {
  19904. source: "./media/characters/sapphy/feral.svg",
  19905. extra: 1050/573,
  19906. bottom: 60/1110
  19907. },
  19908. form: "feral",
  19909. default: true
  19910. },
  19911. },
  19912. [
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(15, "feet"),
  19916. form: "anthro"
  19917. },
  19918. {
  19919. name: "Casual Macro",
  19920. height: math.unit(120, "feet"),
  19921. form: "anthro"
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(2150, "feet"),
  19926. default: true,
  19927. form: "anthro"
  19928. },
  19929. {
  19930. name: "Megamacro",
  19931. height: math.unit(8, "miles"),
  19932. form: "anthro"
  19933. },
  19934. {
  19935. name: "Galaxy Mom",
  19936. height: math.unit(6, "megalightyears"),
  19937. form: "anthro"
  19938. },
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(35, "feet"),
  19942. form: "feral",
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(300, "feet"),
  19948. form: "feral"
  19949. },
  19950. {
  19951. name: "Galaxy Mom",
  19952. height: math.unit(10, "megalightyears"),
  19953. form: "feral"
  19954. },
  19955. ],
  19956. {
  19957. "anthro": {
  19958. name: "Anthro",
  19959. default: true
  19960. },
  19961. "feral": {
  19962. name: "Feral"
  19963. }
  19964. }
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  19968. {
  19969. hyenaFront: {
  19970. height: math.unit(6, "feet"),
  19971. weight: math.unit(190, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/kiro/hyena-front.svg",
  19975. extra: 927/839,
  19976. bottom: 91/1018
  19977. },
  19978. form: "hyena",
  19979. default: true
  19980. },
  19981. front: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(170, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/kiro/front.svg",
  19987. extra: 1064 / 1012,
  19988. bottom: 0.052
  19989. },
  19990. form: "folf",
  19991. default: true
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Micro",
  19997. height: math.unit(6, "inches"),
  19998. form: "folf"
  19999. },
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(6, "feet"),
  20003. form: "folf",
  20004. default: true
  20005. },
  20006. {
  20007. name: "Macro",
  20008. height: math.unit(72, "feet"),
  20009. form: "folf"
  20010. },
  20011. {
  20012. name: "Micro",
  20013. height: math.unit(6, "inches"),
  20014. form: "hyena"
  20015. },
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(6, "feet"),
  20019. form: "hyena",
  20020. default: true
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(72, "feet"),
  20025. form: "hyena"
  20026. },
  20027. ],
  20028. {
  20029. "hyena": {
  20030. name: "Hyena",
  20031. default: true
  20032. },
  20033. "folf": {
  20034. name: "Folf",
  20035. },
  20036. }
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(5 + 9 / 12, "feet"),
  20043. weight: math.unit(175, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/irishfox/front.svg",
  20047. extra: 1912 / 1680,
  20048. bottom: 0.02
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Nano",
  20055. height: math.unit(1, "mm")
  20056. },
  20057. {
  20058. name: "Micro",
  20059. height: math.unit(2, "inches")
  20060. },
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5 + 9 / 12, "feet"),
  20064. default: true
  20065. },
  20066. {
  20067. name: "Macro",
  20068. height: math.unit(45, "feet")
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(6 + 1 / 12, "feet"),
  20077. weight: math.unit(75, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/aronai-sieyes/front.svg",
  20081. extra: 1532/1450,
  20082. bottom: 42/1574
  20083. }
  20084. },
  20085. side: {
  20086. height: math.unit(6 + 1 / 12, "feet"),
  20087. weight: math.unit(75, "lb"),
  20088. name: "Side",
  20089. image: {
  20090. source: "./media/characters/aronai-sieyes/side.svg",
  20091. extra: 1422/1365,
  20092. bottom: 148/1570
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(6 + 1 / 12, "feet"),
  20097. weight: math.unit(75, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/aronai-sieyes/back.svg",
  20101. extra: 1526/1464,
  20102. bottom: 51/1577
  20103. }
  20104. },
  20105. dressed: {
  20106. height: math.unit(6 + 1 / 12, "feet"),
  20107. weight: math.unit(75, "lb"),
  20108. name: "Dressed",
  20109. image: {
  20110. source: "./media/characters/aronai-sieyes/dressed.svg",
  20111. extra: 1559/1483,
  20112. bottom: 39/1598
  20113. }
  20114. },
  20115. slit: {
  20116. height: math.unit(1.3, "feet"),
  20117. name: "Slit",
  20118. image: {
  20119. source: "./media/characters/aronai-sieyes/slit.svg"
  20120. }
  20121. },
  20122. slitSpread: {
  20123. height: math.unit(0.9, "feet"),
  20124. name: "Slit (Spread)",
  20125. image: {
  20126. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20127. }
  20128. },
  20129. rump: {
  20130. height: math.unit(1.3, "feet"),
  20131. name: "Rump",
  20132. image: {
  20133. source: "./media/characters/aronai-sieyes/rump.svg"
  20134. }
  20135. },
  20136. maw: {
  20137. height: math.unit(1.25, "feet"),
  20138. name: "Maw",
  20139. image: {
  20140. source: "./media/characters/aronai-sieyes/maw.svg"
  20141. }
  20142. },
  20143. feral: {
  20144. height: math.unit(18, "feet"),
  20145. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20146. name: "Feral",
  20147. image: {
  20148. source: "./media/characters/aronai-sieyes/feral.svg",
  20149. extra: 1530 / 1240,
  20150. bottom: 0.035
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Micro",
  20157. height: math.unit(2, "inches")
  20158. },
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(6 + 1 / 12, "feet"),
  20162. default: true
  20163. }
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(12, "feet"),
  20171. weight: math.unit(410, "kg"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/xuna/front.svg",
  20175. extra: 2184 / 1980
  20176. }
  20177. },
  20178. side: {
  20179. height: math.unit(12, "feet"),
  20180. weight: math.unit(410, "kg"),
  20181. name: "Side",
  20182. image: {
  20183. source: "./media/characters/xuna/side.svg",
  20184. extra: 2184 / 1980
  20185. }
  20186. },
  20187. back: {
  20188. height: math.unit(12, "feet"),
  20189. weight: math.unit(410, "kg"),
  20190. name: "Back",
  20191. image: {
  20192. source: "./media/characters/xuna/back.svg",
  20193. extra: 2184 / 1980
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Nano glow",
  20200. height: math.unit(10, "nm")
  20201. },
  20202. {
  20203. name: "Micro floof",
  20204. height: math.unit(0.3, "m")
  20205. },
  20206. {
  20207. name: "Huggable softy boi",
  20208. height: math.unit(3.6576, "m"),
  20209. default: true
  20210. },
  20211. {
  20212. name: "Admirable floof",
  20213. height: math.unit(80, "meters")
  20214. },
  20215. {
  20216. name: "Gentle macro",
  20217. height: math.unit(300, "meters")
  20218. },
  20219. {
  20220. name: "Very careful floof",
  20221. height: math.unit(3200, "meters")
  20222. },
  20223. {
  20224. name: "The mega floof",
  20225. height: math.unit(36000, "meters")
  20226. },
  20227. {
  20228. name: "Giga-fur-Wicker",
  20229. height: math.unit(4800000, "meters")
  20230. },
  20231. {
  20232. name: "Licky world",
  20233. height: math.unit(20000000, "meters")
  20234. },
  20235. {
  20236. name: "Floofy cyan sun",
  20237. height: math.unit(1500000000, "meters")
  20238. },
  20239. {
  20240. name: "Milky Wicker",
  20241. height: math.unit(1000000000000000000000, "meters")
  20242. },
  20243. {
  20244. name: "The observing Wicker",
  20245. height: math.unit(999999999999999999999999999, "meters")
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(5 + 9 / 12, "feet"),
  20254. weight: math.unit(150, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/arokha-sieyes/front.svg",
  20258. extra: 1425 / 1284,
  20259. bottom: 0.05
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(5 + 9 / 12, "feet")
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(30, "meters"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(6, "feet"),
  20280. weight: math.unit(180, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/arokh-sieyes/front.svg",
  20284. extra: 1830 / 1769,
  20285. bottom: 0.01
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(6, "feet")
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(30, "meters"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20303. {
  20304. side: {
  20305. height: math.unit(13 + 1 / 12, "feet"),
  20306. weight: math.unit(8.5, "tonnes"),
  20307. preyCapacity: math.unit(36, "people"),
  20308. name: "Side",
  20309. image: {
  20310. source: "./media/characters/goldeneye/side.svg",
  20311. extra: 1139/741,
  20312. bottom: 98/1237
  20313. }
  20314. },
  20315. front: {
  20316. height: math.unit(5.1, "feet"),
  20317. weight: math.unit(8.5, "tonnes"),
  20318. preyCapacity: math.unit(36, "people"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/goldeneye/front.svg",
  20322. extra: 635/365,
  20323. bottom: 598/1233
  20324. }
  20325. },
  20326. maw: {
  20327. height: math.unit(6.6, "feet"),
  20328. name: "Maw",
  20329. image: {
  20330. source: "./media/characters/goldeneye/maw.svg"
  20331. }
  20332. },
  20333. headFront: {
  20334. height: math.unit(8, "feet"),
  20335. name: "Head (Front)",
  20336. image: {
  20337. source: "./media/characters/goldeneye/head-front.svg"
  20338. }
  20339. },
  20340. headSide: {
  20341. height: math.unit(6, "feet"),
  20342. name: "Head (Side)",
  20343. image: {
  20344. source: "./media/characters/goldeneye/head-side.svg"
  20345. }
  20346. },
  20347. headBack: {
  20348. height: math.unit(8, "feet"),
  20349. name: "Head (Back)",
  20350. image: {
  20351. source: "./media/characters/goldeneye/head-back.svg"
  20352. }
  20353. },
  20354. paw: {
  20355. height: math.unit(3.4, "feet"),
  20356. name: "Paw",
  20357. image: {
  20358. source: "./media/characters/goldeneye/paw.svg"
  20359. }
  20360. },
  20361. toering: {
  20362. height: math.unit(0.45, "feet"),
  20363. name: "Toering",
  20364. image: {
  20365. source: "./media/characters/goldeneye/toering.svg"
  20366. }
  20367. },
  20368. eyes: {
  20369. height: math.unit(0.5, "feet"),
  20370. name: "Eyes",
  20371. image: {
  20372. source: "./media/characters/goldeneye/eyes.svg"
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(13 + 1 / 12, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20386. {
  20387. front: {
  20388. height: math.unit(6 + 1 / 12, "feet"),
  20389. weight: math.unit(210, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/leonardo-lycheborne/front.svg",
  20393. extra: 776/723,
  20394. bottom: 34/810
  20395. }
  20396. },
  20397. side: {
  20398. height: math.unit(6 + 1 / 12, "feet"),
  20399. weight: math.unit(210, "lb"),
  20400. name: "Side",
  20401. image: {
  20402. source: "./media/characters/leonardo-lycheborne/side.svg",
  20403. extra: 780/728,
  20404. bottom: 12/792
  20405. }
  20406. },
  20407. back: {
  20408. height: math.unit(6 + 1 / 12, "feet"),
  20409. weight: math.unit(210, "lb"),
  20410. name: "Back",
  20411. image: {
  20412. source: "./media/characters/leonardo-lycheborne/back.svg",
  20413. extra: 775/721,
  20414. bottom: 17/792
  20415. }
  20416. },
  20417. hand: {
  20418. height: math.unit(1.08, "feet"),
  20419. name: "Hand",
  20420. image: {
  20421. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20422. }
  20423. },
  20424. foot: {
  20425. height: math.unit(1.32, "feet"),
  20426. name: "Foot",
  20427. image: {
  20428. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20429. }
  20430. },
  20431. maw: {
  20432. height: math.unit(1, "feet"),
  20433. name: "Maw",
  20434. image: {
  20435. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20436. }
  20437. },
  20438. were: {
  20439. height: math.unit(20, "feet"),
  20440. weight: math.unit(7800, "lb"),
  20441. name: "Were",
  20442. image: {
  20443. source: "./media/characters/leonardo-lycheborne/were.svg",
  20444. extra: 1224/1165,
  20445. bottom: 72/1296
  20446. }
  20447. },
  20448. feral: {
  20449. height: math.unit(7.5, "feet"),
  20450. weight: math.unit(600, "lb"),
  20451. name: "Feral",
  20452. image: {
  20453. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20454. extra: 797/702,
  20455. bottom: 139/936
  20456. }
  20457. },
  20458. taur: {
  20459. height: math.unit(11, "feet"),
  20460. weight: math.unit(3300, "lb"),
  20461. name: "Taur",
  20462. image: {
  20463. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20464. extra: 1271/1197,
  20465. bottom: 47/1318
  20466. }
  20467. },
  20468. barghest: {
  20469. height: math.unit(11, "feet"),
  20470. weight: math.unit(1300, "lb"),
  20471. name: "Barghest",
  20472. image: {
  20473. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20474. extra: 1291/1204,
  20475. bottom: 37/1328
  20476. }
  20477. },
  20478. dick: {
  20479. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20480. name: "Dick",
  20481. image: {
  20482. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20483. }
  20484. },
  20485. dickWere: {
  20486. height: math.unit((20) / 3.8, "feet"),
  20487. name: "Dick (Were)",
  20488. image: {
  20489. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(6 + 1 / 12, "feet"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(10, "feet"),
  20506. weight: math.unit(350, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/jet/front.svg",
  20510. extra: 2050 / 1980,
  20511. bottom: 0.013
  20512. }
  20513. },
  20514. back: {
  20515. height: math.unit(10, "feet"),
  20516. weight: math.unit(350, "lb"),
  20517. name: "Back",
  20518. image: {
  20519. source: "./media/characters/jet/back.svg",
  20520. extra: 2050 / 1980,
  20521. bottom: 0.013
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Micro",
  20528. height: math.unit(6, "inches")
  20529. },
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(10, "feet"),
  20533. default: true
  20534. },
  20535. {
  20536. name: "Macro",
  20537. height: math.unit(100, "feet")
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(15, "feet"),
  20546. weight: math.unit(2800, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/tanarath/front.svg",
  20550. extra: 2392 / 2220,
  20551. bottom: 0.03
  20552. }
  20553. },
  20554. back: {
  20555. height: math.unit(15, "feet"),
  20556. weight: math.unit(2800, "lb"),
  20557. name: "Back",
  20558. image: {
  20559. source: "./media/characters/tanarath/back.svg",
  20560. extra: 2392 / 2220,
  20561. bottom: 0.03
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(15, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(7 + 1 / 12, "feet"),
  20578. weight: math.unit(175, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/patty-cattybatty/front.svg",
  20582. extra: 908 / 874,
  20583. bottom: 0.025
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Micro",
  20590. height: math.unit(1, "inch")
  20591. },
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(7 + 1 / 12, "feet")
  20595. },
  20596. {
  20597. name: "Mini Macro",
  20598. height: math.unit(155, "feet")
  20599. },
  20600. {
  20601. name: "Macro",
  20602. height: math.unit(1077, "feet")
  20603. },
  20604. {
  20605. name: "Mega Macro",
  20606. height: math.unit(47650, "feet"),
  20607. default: true
  20608. },
  20609. {
  20610. name: "Giga Macro",
  20611. height: math.unit(440, "miles")
  20612. },
  20613. {
  20614. name: "Tera Macro",
  20615. height: math.unit(8700, "miles")
  20616. },
  20617. {
  20618. name: "Planetary Macro",
  20619. height: math.unit(32700, "miles")
  20620. },
  20621. {
  20622. name: "Solar Macro",
  20623. height: math.unit(550000, "miles")
  20624. },
  20625. {
  20626. name: "Celestial Macro",
  20627. height: math.unit(2.5, "AU")
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(4 + 5 / 12, "feet"),
  20636. weight: math.unit(90, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/cappu/front.svg",
  20640. extra: 1247 / 1152,
  20641. bottom: 0.012
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(4 + 5 / 12, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20655. {
  20656. frontDressed: {
  20657. height: math.unit(70, "cm"),
  20658. weight: math.unit(6, "kg"),
  20659. name: "Front (Dressed)",
  20660. image: {
  20661. source: "./media/characters/sebi/front-dressed.svg",
  20662. extra: 713.5 / 686.5,
  20663. bottom: 0.003
  20664. }
  20665. },
  20666. front: {
  20667. height: math.unit(70, "cm"),
  20668. weight: math.unit(5, "kg"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/sebi/front.svg",
  20672. extra: 713.5 / 686.5,
  20673. bottom: 0.003
  20674. }
  20675. }
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(70, "cm"),
  20681. default: true
  20682. },
  20683. {
  20684. name: "Macro",
  20685. height: math.unit(8, "meters")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(6, "feet"),
  20694. weight: math.unit(150, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/typhek/front.svg",
  20698. extra: 1948 / 1929,
  20699. bottom: 0.025
  20700. }
  20701. },
  20702. side: {
  20703. height: math.unit(6, "feet"),
  20704. weight: math.unit(150, "lb"),
  20705. name: "Side",
  20706. image: {
  20707. source: "./media/characters/typhek/side.svg",
  20708. extra: 2034 / 2010,
  20709. bottom: 0.003
  20710. }
  20711. },
  20712. back: {
  20713. height: math.unit(6, "feet"),
  20714. weight: math.unit(150, "lb"),
  20715. name: "Back",
  20716. image: {
  20717. source: "./media/characters/typhek/back.svg",
  20718. extra: 2005 / 1978,
  20719. bottom: 0.004
  20720. }
  20721. },
  20722. palm: {
  20723. height: math.unit(1.2, "feet"),
  20724. name: "Palm",
  20725. image: {
  20726. source: "./media/characters/typhek/palm.svg"
  20727. }
  20728. },
  20729. fist: {
  20730. height: math.unit(1.1, "feet"),
  20731. name: "Fist",
  20732. image: {
  20733. source: "./media/characters/typhek/fist.svg"
  20734. }
  20735. },
  20736. foot: {
  20737. height: math.unit(1.57, "feet"),
  20738. name: "Foot",
  20739. image: {
  20740. source: "./media/characters/typhek/foot.svg"
  20741. }
  20742. },
  20743. sole: {
  20744. height: math.unit(2.05, "feet"),
  20745. name: "Sole",
  20746. image: {
  20747. source: "./media/characters/typhek/sole.svg"
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(40, "stories"),
  20755. default: true
  20756. },
  20757. {
  20758. name: "Megamacro",
  20759. height: math.unit(1, "mile")
  20760. },
  20761. {
  20762. name: "Gigamacro",
  20763. height: math.unit(4000, "solarradii")
  20764. },
  20765. {
  20766. name: "Universal",
  20767. height: math.unit(1.1, "universes")
  20768. }
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20773. {
  20774. side: {
  20775. height: math.unit(5 + 7 / 12, "feet"),
  20776. weight: math.unit(150, "lb"),
  20777. name: "Side",
  20778. image: {
  20779. source: "./media/characters/kassy/side.svg",
  20780. extra: 1280 / 1225,
  20781. bottom: 0.002
  20782. }
  20783. },
  20784. front: {
  20785. height: math.unit(5 + 7 / 12, "feet"),
  20786. weight: math.unit(150, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/kassy/front.svg",
  20790. extra: 1280 / 1225,
  20791. bottom: 0.025
  20792. }
  20793. },
  20794. back: {
  20795. height: math.unit(5 + 7 / 12, "feet"),
  20796. weight: math.unit(150, "lb"),
  20797. name: "Back",
  20798. image: {
  20799. source: "./media/characters/kassy/back.svg",
  20800. extra: 1280 / 1225,
  20801. bottom: 0.002
  20802. }
  20803. },
  20804. foot: {
  20805. height: math.unit(1.266, "feet"),
  20806. name: "Foot",
  20807. image: {
  20808. source: "./media/characters/kassy/foot.svg"
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(5 + 7 / 12, "feet")
  20816. },
  20817. {
  20818. name: "Macro",
  20819. height: math.unit(137, "feet"),
  20820. default: true
  20821. },
  20822. {
  20823. name: "Megamacro",
  20824. height: math.unit(1, "mile")
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(6 + 1 / 12, "feet"),
  20833. weight: math.unit(200, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/neil/front.svg",
  20837. extra: 1326 / 1250,
  20838. bottom: 0.023
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(6 + 1 / 12, "feet"),
  20846. default: true
  20847. },
  20848. {
  20849. name: "Macro",
  20850. height: math.unit(200, "feet")
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(5 + 9 / 12, "feet"),
  20859. weight: math.unit(190, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/atticus/front.svg",
  20863. extra: 2934 / 2785,
  20864. bottom: 0.025
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(5 + 9 / 12, "feet"),
  20872. default: true
  20873. },
  20874. {
  20875. name: "Macro",
  20876. height: math.unit(180, "feet")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20882. {
  20883. side: {
  20884. height: math.unit(9, "feet"),
  20885. weight: math.unit(650, "lb"),
  20886. name: "Side",
  20887. image: {
  20888. source: "./media/characters/milo/side.svg",
  20889. extra: 2644 / 2310,
  20890. bottom: 0.032
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(9, "feet"),
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(300, "feet")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20908. {
  20909. side: {
  20910. height: math.unit(8, "meters"),
  20911. weight: math.unit(90000, "kg"),
  20912. name: "Side",
  20913. image: {
  20914. source: "./media/characters/ijzer/side.svg",
  20915. extra: 2756 / 1600,
  20916. bottom: 0.01
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Small",
  20923. height: math.unit(3, "meters")
  20924. },
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(8, "meters"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Normal+",
  20932. height: math.unit(10, "meters")
  20933. },
  20934. {
  20935. name: "Bigger",
  20936. height: math.unit(24, "meters")
  20937. },
  20938. {
  20939. name: "Huge",
  20940. height: math.unit(80, "meters")
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(6 + 2 / 12, "feet"),
  20949. weight: math.unit(153, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/luca-cervicum/front.svg",
  20953. extra: 370 / 327,
  20954. bottom: 0.015
  20955. }
  20956. },
  20957. back: {
  20958. height: math.unit(6 + 2 / 12, "feet"),
  20959. weight: math.unit(153, "lb"),
  20960. name: "Back",
  20961. image: {
  20962. source: "./media/characters/luca-cervicum/back.svg",
  20963. extra: 367 / 333,
  20964. bottom: 0.005
  20965. }
  20966. },
  20967. frontGear: {
  20968. height: math.unit(6 + 2 / 12, "feet"),
  20969. weight: math.unit(173, "lb"),
  20970. name: "Front (Gear)",
  20971. image: {
  20972. source: "./media/characters/luca-cervicum/front-gear.svg",
  20973. extra: 377 / 333,
  20974. bottom: 0.006
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(6 + 2 / 12, "feet"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(6 + 1 / 12, "feet"),
  20991. weight: math.unit(304, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/oliver/front.svg",
  20995. extra: 157 / 143,
  20996. bottom: 0.08
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(6 + 1 / 12, "feet"),
  21004. default: true
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(5 + 7 / 12, "feet"),
  21013. weight: math.unit(140, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/shane/front.svg",
  21017. extra: 304 / 289,
  21018. bottom: 0.005
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(5 + 7 / 12, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(5 + 9 / 12, "feet"),
  21035. weight: math.unit(178, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/shin/front.svg",
  21039. extra: 159 / 151,
  21040. bottom: 0.015
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(5 + 9 / 12, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(5 + 10 / 12, "feet"),
  21057. weight: math.unit(168, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/xerxes/front.svg",
  21061. extra: 282 / 260,
  21062. bottom: 0.045
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(5 + 10 / 12, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(6 + 7 / 12, "feet"),
  21079. weight: math.unit(208, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/chaska/front.svg",
  21083. extra: 332 / 319,
  21084. bottom: 0.015
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(6 + 7 / 12, "feet"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(5 + 8 / 12, "feet"),
  21101. weight: math.unit(208, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/enuk/front.svg",
  21105. extra: 437 / 406,
  21106. bottom: 0.02
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(5 + 8 / 12, "feet"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21120. {
  21121. front: {
  21122. height: math.unit(5 + 10 / 12, "feet"),
  21123. weight: math.unit(252, "lb"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/bruun/front.svg",
  21127. extra: 197 / 187,
  21128. bottom: 0.012
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(5 + 10 / 12, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(6 + 10 / 12, "feet"),
  21145. weight: math.unit(255, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/alexeev/front.svg",
  21149. extra: 213 / 200,
  21150. bottom: 0.05
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(6 + 10 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21164. {
  21165. front: {
  21166. height: math.unit(2 + 8 / 12, "feet"),
  21167. weight: math.unit(22, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/evelyn/front.svg",
  21171. extra: 208 / 180
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(2 + 8 / 12, "feet"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(5 + 9 / 12, "feet"),
  21188. weight: math.unit(139, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/inca/front.svg",
  21192. extra: 294 / 291,
  21193. bottom: 0.03
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(5 + 9 / 12, "feet"),
  21201. default: true
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(6 + 3 / 12, "feet"),
  21210. weight: math.unit(185, "lb"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/mera/front.svg",
  21214. extra: 291 / 277,
  21215. bottom: 0.03
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(6 + 3 / 12, "feet"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(6 + 7 / 12, "feet"),
  21232. weight: math.unit(160, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/ceres/front.svg",
  21236. extra: 1023 / 950,
  21237. bottom: 0.027
  21238. }
  21239. },
  21240. back: {
  21241. height: math.unit(6 + 7 / 12, "feet"),
  21242. weight: math.unit(160, "lb"),
  21243. name: "Back",
  21244. image: {
  21245. source: "./media/characters/ceres/back.svg",
  21246. extra: 1023 / 950
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(6 + 7 / 12, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(5 + 10 / 12, "feet"),
  21263. weight: math.unit(150, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/kris/front.svg",
  21267. extra: 885 / 803,
  21268. bottom: 0.03
  21269. }
  21270. },
  21271. },
  21272. [
  21273. {
  21274. name: "Normal",
  21275. height: math.unit(5 + 10 / 12, "feet"),
  21276. default: true
  21277. },
  21278. ]
  21279. ))
  21280. characterMakers.push(() => makeCharacter(
  21281. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21282. {
  21283. front: {
  21284. height: math.unit(7, "feet"),
  21285. weight: math.unit(120, "kg"),
  21286. name: "Front",
  21287. image: {
  21288. source: "./media/characters/taluthus/front.svg",
  21289. extra: 903 / 833,
  21290. bottom: 0.015
  21291. }
  21292. },
  21293. },
  21294. [
  21295. {
  21296. name: "Normal",
  21297. height: math.unit(7, "feet"),
  21298. default: true
  21299. },
  21300. {
  21301. name: "Macro",
  21302. height: math.unit(300, "feet")
  21303. },
  21304. ]
  21305. ))
  21306. characterMakers.push(() => makeCharacter(
  21307. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21308. {
  21309. front: {
  21310. height: math.unit(5 + 9 / 12, "feet"),
  21311. weight: math.unit(145, "lb"),
  21312. name: "Front",
  21313. image: {
  21314. source: "./media/characters/dawn/front.svg",
  21315. extra: 2094 / 2016,
  21316. bottom: 0.025
  21317. }
  21318. },
  21319. back: {
  21320. height: math.unit(5 + 9 / 12, "feet"),
  21321. weight: math.unit(160, "lb"),
  21322. name: "Back",
  21323. image: {
  21324. source: "./media/characters/dawn/back.svg",
  21325. extra: 2112 / 2080,
  21326. bottom: 0.005
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(6 + 7 / 12, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21340. {
  21341. anthro: {
  21342. height: math.unit(8 + 3 / 12, "feet"),
  21343. weight: math.unit(450, "lb"),
  21344. name: "Anthro",
  21345. image: {
  21346. source: "./media/characters/arador/anthro.svg",
  21347. extra: 1835 / 1718,
  21348. bottom: 0.025
  21349. }
  21350. },
  21351. feral: {
  21352. height: math.unit(4, "feet"),
  21353. weight: math.unit(200, "lb"),
  21354. name: "Feral",
  21355. image: {
  21356. source: "./media/characters/arador/feral.svg",
  21357. extra: 1683 / 1514,
  21358. bottom: 0.07
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(8 + 3 / 12, "feet")
  21366. },
  21367. {
  21368. name: "Macro",
  21369. height: math.unit(82.5, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(5 + 10 / 12, "feet"),
  21379. weight: math.unit(125, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/dharsi/front.svg",
  21383. extra: 716 / 630,
  21384. bottom: 0.035
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Nano",
  21391. height: math.unit(100, "nm")
  21392. },
  21393. {
  21394. name: "Micro",
  21395. height: math.unit(2, "inches")
  21396. },
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(5 + 10 / 12, "feet"),
  21400. default: true
  21401. },
  21402. {
  21403. name: "Macro",
  21404. height: math.unit(1000, "feet")
  21405. },
  21406. {
  21407. name: "Megamacro",
  21408. height: math.unit(10, "miles")
  21409. },
  21410. {
  21411. name: "Gigamacro",
  21412. height: math.unit(3000, "miles")
  21413. },
  21414. {
  21415. name: "Teramacro",
  21416. height: math.unit(500000, "miles")
  21417. },
  21418. {
  21419. name: "Teramacro+",
  21420. height: math.unit(30, "galaxies")
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21426. {
  21427. front: {
  21428. height: math.unit(6, "feet"),
  21429. weight: math.unit(150, "lb"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/deathy/front.svg",
  21433. extra: 1552 / 1463,
  21434. bottom: 0.025
  21435. }
  21436. },
  21437. side: {
  21438. height: math.unit(6, "feet"),
  21439. weight: math.unit(150, "lb"),
  21440. name: "Side",
  21441. image: {
  21442. source: "./media/characters/deathy/side.svg",
  21443. extra: 1604 / 1455,
  21444. bottom: 0.025
  21445. }
  21446. },
  21447. back: {
  21448. height: math.unit(6, "feet"),
  21449. weight: math.unit(150, "lb"),
  21450. name: "Back",
  21451. image: {
  21452. source: "./media/characters/deathy/back.svg",
  21453. extra: 1580 / 1463,
  21454. bottom: 0.005
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Micro",
  21461. height: math.unit(5, "millimeters")
  21462. },
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(6 + 5 / 12, "feet"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21472. {
  21473. front: {
  21474. height: math.unit(16, "feet"),
  21475. weight: math.unit(4000, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/juniper/front.svg",
  21479. bottom: 0.04
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(16, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(6, "feet"),
  21496. weight: math.unit(150, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/hipster/front.svg",
  21500. extra: 1312 / 1209,
  21501. bottom: 0.025
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(6, "feet"),
  21506. weight: math.unit(150, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/hipster/back.svg",
  21510. extra: 1281 / 1196,
  21511. bottom: 0.01
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Micro",
  21518. height: math.unit(1, "mm")
  21519. },
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(4, "inches"),
  21523. default: true
  21524. },
  21525. {
  21526. name: "Macro",
  21527. height: math.unit(500, "feet")
  21528. },
  21529. {
  21530. name: "Megamacro",
  21531. height: math.unit(1000, "miles")
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(6, "feet"),
  21540. weight: math.unit(150, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/tendirmuldr/front.svg",
  21544. extra: 1878 / 1772,
  21545. bottom: 0.015
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Megamacro",
  21552. height: math.unit(1500, "miles"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21559. {
  21560. front: {
  21561. height: math.unit(14, "feet"),
  21562. weight: math.unit(12000, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/mort/front.svg",
  21566. extra: 365 / 318,
  21567. bottom: 0.01
  21568. }
  21569. },
  21570. side: {
  21571. height: math.unit(14, "feet"),
  21572. weight: math.unit(12000, "lb"),
  21573. name: "Side",
  21574. image: {
  21575. source: "./media/characters/mort/side.svg",
  21576. extra: 365 / 318,
  21577. bottom: 0.052
  21578. },
  21579. default: true
  21580. },
  21581. back: {
  21582. height: math.unit(14, "feet"),
  21583. weight: math.unit(12000, "lb"),
  21584. name: "Back",
  21585. image: {
  21586. source: "./media/characters/mort/back.svg",
  21587. extra: 371 / 332,
  21588. bottom: 0.18
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(14, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21602. {
  21603. front: {
  21604. height: math.unit(8, "feet"),
  21605. weight: math.unit(1, "ton"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/lycoa/front.svg",
  21609. extra: 1836/1728,
  21610. bottom: 81/1917
  21611. }
  21612. },
  21613. back: {
  21614. height: math.unit(8, "feet"),
  21615. weight: math.unit(1, "ton"),
  21616. name: "Back",
  21617. image: {
  21618. source: "./media/characters/lycoa/back.svg",
  21619. extra: 1785/1720,
  21620. bottom: 91/1876
  21621. }
  21622. },
  21623. head: {
  21624. height: math.unit(1.6243, "feet"),
  21625. name: "Head",
  21626. image: {
  21627. source: "./media/characters/lycoa/head.svg",
  21628. extra: 1011/782,
  21629. bottom: 0/1011
  21630. }
  21631. },
  21632. tailmaw: {
  21633. height: math.unit(1.9, "feet"),
  21634. name: "Tailmaw",
  21635. image: {
  21636. source: "./media/characters/lycoa/tailmaw.svg"
  21637. }
  21638. },
  21639. tentacles: {
  21640. height: math.unit(2.1, "feet"),
  21641. name: "Tentacles",
  21642. image: {
  21643. source: "./media/characters/lycoa/tentacles.svg"
  21644. }
  21645. },
  21646. dick: {
  21647. height: math.unit(1.73, "feet"),
  21648. name: "Dick",
  21649. image: {
  21650. source: "./media/characters/lycoa/dick.svg"
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(8, "feet"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Macro",
  21662. height: math.unit(30, "feet")
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21668. {
  21669. front: {
  21670. height: math.unit(4 + 2 / 12, "feet"),
  21671. weight: math.unit(70, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/naldara/front.svg",
  21675. extra: 1664/1387,
  21676. bottom: 81/1745
  21677. },
  21678. form: "anthro",
  21679. default: true
  21680. },
  21681. naga: {
  21682. height: math.unit(20, "feet"),
  21683. weight: math.unit(15000, "kg"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/naldara/naga.svg",
  21687. extra: 1590/1396,
  21688. bottom: 285/1875
  21689. },
  21690. form: "naga",
  21691. default: true
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(4 + 2 / 12, "feet"),
  21698. form: "anthro",
  21699. default: true
  21700. },
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(20, "feet"),
  21704. form: "naga",
  21705. default: true
  21706. },
  21707. ],
  21708. {
  21709. "anthro": {
  21710. name: "Anthro",
  21711. default: true
  21712. },
  21713. "naga": {
  21714. name: "Naga"
  21715. }
  21716. }
  21717. ))
  21718. characterMakers.push(() => makeCharacter(
  21719. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21720. {
  21721. front: {
  21722. height: math.unit(13 + 7 / 12, "feet"),
  21723. weight: math.unit(1500, "lb"),
  21724. name: "Front",
  21725. image: {
  21726. source: "./media/characters/briar/front.svg",
  21727. extra: 1223/1157,
  21728. bottom: 123/1346
  21729. }
  21730. },
  21731. },
  21732. [
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(13 + 7 / 12, "feet"),
  21736. default: true
  21737. },
  21738. ]
  21739. ))
  21740. characterMakers.push(() => makeCharacter(
  21741. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21742. {
  21743. side: {
  21744. height: math.unit(16, "feet"),
  21745. weight: math.unit(500, "lb"),
  21746. name: "Side",
  21747. image: {
  21748. source: "./media/characters/vanguard/side.svg",
  21749. extra: 1022/914,
  21750. bottom: 30/1052
  21751. }
  21752. },
  21753. sideAlt: {
  21754. height: math.unit(10, "feet"),
  21755. weight: math.unit(500, "lb"),
  21756. name: "Side (Alt)",
  21757. image: {
  21758. source: "./media/characters/vanguard/side-alt.svg",
  21759. extra: 502 / 425,
  21760. bottom: 0.087
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(17.71, "feet"),
  21768. default: true
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21774. {
  21775. front: {
  21776. height: math.unit(7.5, "feet"),
  21777. weight: math.unit(2, "lb"),
  21778. name: "Front",
  21779. image: {
  21780. source: "./media/characters/artemis/work-safe-front.svg",
  21781. extra: 1192 / 1075,
  21782. bottom: 0.07
  21783. },
  21784. form: "work-safe",
  21785. default: true
  21786. },
  21787. frontNsfw: {
  21788. height: math.unit(7.5, "feet"),
  21789. weight: math.unit(2, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/artemis/calibrating-front.svg",
  21793. extra: 1192 / 1075,
  21794. bottom: 0.07
  21795. },
  21796. form: "calibrating",
  21797. default: true
  21798. },
  21799. frontNsfwer: {
  21800. height: math.unit(7.5, "feet"),
  21801. weight: math.unit(2, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/artemis/oversize-load-front.svg",
  21805. extra: 1192 / 1075,
  21806. bottom: 0.07
  21807. },
  21808. form: "oversize-load",
  21809. default: true
  21810. },
  21811. side: {
  21812. height: math.unit(7.5, "feet"),
  21813. weight: math.unit(2, "lb"),
  21814. name: "Side",
  21815. image: {
  21816. source: "./media/characters/artemis/work-safe-side.svg",
  21817. extra: 1192 / 1075,
  21818. bottom: 0.07
  21819. },
  21820. form: "work-safe"
  21821. },
  21822. sideNsfw: {
  21823. height: math.unit(7.5, "feet"),
  21824. weight: math.unit(2, "lb"),
  21825. name: "Side",
  21826. image: {
  21827. source: "./media/characters/artemis/calibrating-side.svg",
  21828. extra: 1192 / 1075,
  21829. bottom: 0.07
  21830. },
  21831. form: "calibrating"
  21832. },
  21833. sideNsfwer: {
  21834. height: math.unit(7.5, "feet"),
  21835. weight: math.unit(2, "lb"),
  21836. name: "Side",
  21837. image: {
  21838. source: "./media/characters/artemis/oversize-load-side.svg",
  21839. extra: 1192 / 1075,
  21840. bottom: 0.07
  21841. },
  21842. form: "oversize-load"
  21843. },
  21844. maw: {
  21845. height: math.unit(1.1, "feet"),
  21846. name: "Maw",
  21847. image: {
  21848. source: "./media/characters/artemis/maw.svg"
  21849. },
  21850. form: "work-safe"
  21851. },
  21852. stomach: {
  21853. height: math.unit(0.95, "feet"),
  21854. name: "Stomach",
  21855. image: {
  21856. source: "./media/characters/artemis/stomach.svg"
  21857. },
  21858. form: "work-safe"
  21859. },
  21860. dickCanine: {
  21861. height: math.unit(1, "feet"),
  21862. name: "Dick (Canine)",
  21863. image: {
  21864. source: "./media/characters/artemis/dick-canine.svg"
  21865. },
  21866. form: "calibrating"
  21867. },
  21868. dickEquine: {
  21869. height: math.unit(0.85, "feet"),
  21870. name: "Dick (Equine)",
  21871. image: {
  21872. source: "./media/characters/artemis/dick-equine.svg"
  21873. },
  21874. form: "calibrating"
  21875. },
  21876. dickExotic: {
  21877. height: math.unit(0.85, "feet"),
  21878. name: "Dick (Exotic)",
  21879. image: {
  21880. source: "./media/characters/artemis/dick-exotic.svg"
  21881. },
  21882. form: "calibrating"
  21883. },
  21884. dickCanineBigger: {
  21885. height: math.unit(1 * 1.33, "feet"),
  21886. name: "Dick (Canine)",
  21887. image: {
  21888. source: "./media/characters/artemis/dick-canine.svg"
  21889. },
  21890. form: "oversize-load"
  21891. },
  21892. dickEquineBigger: {
  21893. height: math.unit(0.85 * 1.33, "feet"),
  21894. name: "Dick (Equine)",
  21895. image: {
  21896. source: "./media/characters/artemis/dick-equine.svg"
  21897. },
  21898. form: "oversize-load"
  21899. },
  21900. dickExoticBigger: {
  21901. height: math.unit(0.85 * 1.33, "feet"),
  21902. name: "Dick (Exotic)",
  21903. image: {
  21904. source: "./media/characters/artemis/dick-exotic.svg"
  21905. },
  21906. form: "oversize-load"
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(7.5, "feet"),
  21913. form: "work-safe",
  21914. default: true
  21915. },
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(7.5, "feet"),
  21919. form: "calibrating",
  21920. default: true
  21921. },
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(7.5, "feet"),
  21925. form: "oversize-load",
  21926. default: true
  21927. },
  21928. {
  21929. name: "Enlarged",
  21930. height: math.unit(12, "feet"),
  21931. form: "work-safe",
  21932. },
  21933. {
  21934. name: "Enlarged",
  21935. height: math.unit(12, "feet"),
  21936. form: "calibrating",
  21937. },
  21938. {
  21939. name: "Enlarged",
  21940. height: math.unit(12, "feet"),
  21941. form: "oversize-load",
  21942. },
  21943. ],
  21944. {
  21945. "work-safe": {
  21946. name: "Work-Safe",
  21947. default: true
  21948. },
  21949. "calibrating": {
  21950. name: "Calibrating"
  21951. },
  21952. "oversize-load": {
  21953. name: "Oversize Load"
  21954. }
  21955. }
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(5 + 3 / 12, "feet"),
  21962. weight: math.unit(160, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/kira/front.svg",
  21966. extra: 906 / 786,
  21967. bottom: 0.01
  21968. }
  21969. },
  21970. back: {
  21971. height: math.unit(5 + 3 / 12, "feet"),
  21972. weight: math.unit(160, "lb"),
  21973. name: "Back",
  21974. image: {
  21975. source: "./media/characters/kira/back.svg",
  21976. extra: 882 / 757,
  21977. bottom: 0.005
  21978. }
  21979. },
  21980. frontDressed: {
  21981. height: math.unit(5 + 3 / 12, "feet"),
  21982. weight: math.unit(160, "lb"),
  21983. name: "Front (Dressed)",
  21984. image: {
  21985. source: "./media/characters/kira/front-dressed.svg",
  21986. extra: 906 / 786,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. beans: {
  21991. height: math.unit(0.92, "feet"),
  21992. name: "Beans",
  21993. image: {
  21994. source: "./media/characters/kira/beans.svg"
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 3 / 12, "feet"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(5 + 4 / 12, "feet"),
  22011. weight: math.unit(145, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/scramble/front.svg",
  22015. extra: 763 / 727,
  22016. bottom: 0.05
  22017. }
  22018. },
  22019. back: {
  22020. height: math.unit(5 + 4 / 12, "feet"),
  22021. weight: math.unit(145, "lb"),
  22022. name: "Back",
  22023. image: {
  22024. source: "./media/characters/scramble/back.svg",
  22025. extra: 826 / 737,
  22026. bottom: 0.002
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Normal",
  22033. height: math.unit(5 + 4 / 12, "feet"),
  22034. default: true
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22040. {
  22041. side: {
  22042. height: math.unit(6 + 2 / 12, "feet"),
  22043. weight: math.unit(190, "lb"),
  22044. name: "Side",
  22045. image: {
  22046. source: "./media/characters/biscuit/side.svg",
  22047. extra: 858 / 791,
  22048. bottom: 0.044
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Normal",
  22055. height: math.unit(6 + 2 / 12, "feet"),
  22056. default: true
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22062. {
  22063. front: {
  22064. height: math.unit(5 + 2 / 12, "feet"),
  22065. weight: math.unit(120, "lb"),
  22066. name: "Front",
  22067. image: {
  22068. source: "./media/characters/poffin/front.svg",
  22069. extra: 786 / 680,
  22070. bottom: 0.005
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(5 + 2 / 12, "feet"),
  22078. default: true
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(6 + 3 / 12, "feet"),
  22087. weight: math.unit(519, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/dhari/front.svg",
  22091. extra: 1048 / 946,
  22092. bottom: 0.015
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(6 + 3 / 12, "feet"),
  22097. weight: math.unit(519, "lb"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/dhari/back.svg",
  22101. extra: 1048 / 931,
  22102. bottom: 0.005
  22103. }
  22104. },
  22105. frontDressed: {
  22106. height: math.unit(6 + 3 / 12, "feet"),
  22107. weight: math.unit(519, "lb"),
  22108. name: "Front (Dressed)",
  22109. image: {
  22110. source: "./media/characters/dhari/front-dressed.svg",
  22111. extra: 1713 / 1546,
  22112. bottom: 0.02
  22113. }
  22114. },
  22115. backDressed: {
  22116. height: math.unit(6 + 3 / 12, "feet"),
  22117. weight: math.unit(519, "lb"),
  22118. name: "Back (Dressed)",
  22119. image: {
  22120. source: "./media/characters/dhari/back-dressed.svg",
  22121. extra: 1699 / 1537,
  22122. bottom: 0.01
  22123. }
  22124. },
  22125. maw: {
  22126. height: math.unit(0.95, "feet"),
  22127. name: "Maw",
  22128. image: {
  22129. source: "./media/characters/dhari/maw.svg"
  22130. }
  22131. },
  22132. wereFront: {
  22133. height: math.unit(12 + 8 / 12, "feet"),
  22134. weight: math.unit(4000, "lb"),
  22135. name: "Front (Were)",
  22136. image: {
  22137. source: "./media/characters/dhari/were-front.svg",
  22138. extra: 1065 / 969,
  22139. bottom: 0.015
  22140. }
  22141. },
  22142. wereBack: {
  22143. height: math.unit(12 + 8 / 12, "feet"),
  22144. weight: math.unit(4000, "lb"),
  22145. name: "Back (Were)",
  22146. image: {
  22147. source: "./media/characters/dhari/were-back.svg",
  22148. extra: 1065 / 969,
  22149. bottom: 0.012
  22150. }
  22151. },
  22152. wereMaw: {
  22153. height: math.unit(0.625, "meters"),
  22154. name: "Maw (Were)",
  22155. image: {
  22156. source: "./media/characters/dhari/were-maw.svg"
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(6 + 3 / 12, "feet"),
  22164. default: true
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22170. {
  22171. anthro: {
  22172. height: math.unit(5 + 7 / 12, "feet"),
  22173. weight: math.unit(175, "lb"),
  22174. name: "Anthro",
  22175. image: {
  22176. source: "./media/characters/rena-dyne/anthro.svg",
  22177. extra: 1849 / 1785,
  22178. bottom: 0.005
  22179. }
  22180. },
  22181. taur: {
  22182. height: math.unit(15 + 6 / 12, "feet"),
  22183. weight: math.unit(8000, "lb"),
  22184. name: "Taur",
  22185. image: {
  22186. source: "./media/characters/rena-dyne/taur.svg",
  22187. extra: 2315 / 2234,
  22188. bottom: 0.033
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(5 + 7 / 12, "feet"),
  22196. default: true
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22202. {
  22203. front: {
  22204. height: math.unit(8, "feet"),
  22205. weight: math.unit(600, "lb"),
  22206. name: "Front",
  22207. image: {
  22208. source: "./media/characters/weremeep/front.svg",
  22209. extra: 970/849,
  22210. bottom: 7/977
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(8, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Lorg",
  22222. height: math.unit(12, "feet")
  22223. },
  22224. {
  22225. name: "Oh Lawd She Comin'",
  22226. height: math.unit(20, "feet")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22232. {
  22233. front: {
  22234. height: math.unit(4, "feet"),
  22235. weight: math.unit(90, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/reza/front.svg",
  22239. extra: 1183 / 1111,
  22240. bottom: 0.017
  22241. }
  22242. },
  22243. back: {
  22244. height: math.unit(4, "feet"),
  22245. weight: math.unit(90, "lb"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/reza/back.svg",
  22249. extra: 1183 / 1111,
  22250. bottom: 0.01
  22251. }
  22252. },
  22253. drake: {
  22254. height: math.unit(30, "feet"),
  22255. weight: math.unit(246960, "lb"),
  22256. name: "Drake",
  22257. image: {
  22258. source: "./media/characters/reza/drake.svg",
  22259. extra: 2350 / 2024,
  22260. bottom: 60.7 / 2403
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(4, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22274. {
  22275. side: {
  22276. height: math.unit(15, "feet"),
  22277. weight: math.unit(14, "tons"),
  22278. name: "Side",
  22279. image: {
  22280. source: "./media/characters/athea/side.svg",
  22281. extra: 960 / 540,
  22282. bottom: 0.003
  22283. }
  22284. },
  22285. sitting: {
  22286. height: math.unit(6 * 2.85, "feet"),
  22287. weight: math.unit(14, "tons"),
  22288. name: "Sitting",
  22289. image: {
  22290. source: "./media/characters/athea/sitting.svg",
  22291. extra: 621 / 581,
  22292. bottom: 0.075
  22293. }
  22294. },
  22295. maw: {
  22296. height: math.unit(7.59498031496063, "feet"),
  22297. name: "Maw",
  22298. image: {
  22299. source: "./media/characters/athea/maw.svg"
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Lap Cat",
  22306. height: math.unit(2.5, "feet")
  22307. },
  22308. {
  22309. name: "Minimacro",
  22310. height: math.unit(15, "feet"),
  22311. default: true
  22312. },
  22313. {
  22314. name: "Macro",
  22315. height: math.unit(120, "feet")
  22316. },
  22317. {
  22318. name: "Macro+",
  22319. height: math.unit(640, "feet")
  22320. },
  22321. {
  22322. name: "Colossus",
  22323. height: math.unit(2.2, "miles")
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22329. {
  22330. front: {
  22331. height: math.unit(8 + 8 / 12, "feet"),
  22332. weight: math.unit(130, "kg"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/seroko/front.svg",
  22336. extra: 1385 / 1280,
  22337. bottom: 0.025
  22338. }
  22339. },
  22340. back: {
  22341. height: math.unit(8 + 8 / 12, "feet"),
  22342. weight: math.unit(130, "kg"),
  22343. name: "Back",
  22344. image: {
  22345. source: "./media/characters/seroko/back.svg",
  22346. extra: 1369 / 1238,
  22347. bottom: 0.018
  22348. }
  22349. },
  22350. frontDressed: {
  22351. height: math.unit(8 + 8 / 12, "feet"),
  22352. weight: math.unit(130, "kg"),
  22353. name: "Front (Dressed)",
  22354. image: {
  22355. source: "./media/characters/seroko/front-dressed.svg",
  22356. extra: 1366 / 1275,
  22357. bottom: 0.03
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(8 + 8 / 12, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(5.5, "feet"),
  22374. weight: math.unit(160, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/quatzi/front.svg",
  22378. extra: 2346 / 2242,
  22379. bottom: 0.015
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5.5, "feet"),
  22387. default: true
  22388. },
  22389. {
  22390. name: "Big",
  22391. height: math.unit(7.7, "feet")
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(5 + 11 / 12, "feet"),
  22400. weight: math.unit(180, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/sen/front.svg",
  22404. extra: 1321 / 1254,
  22405. bottom: 0.015
  22406. }
  22407. },
  22408. side: {
  22409. height: math.unit(5 + 11 / 12, "feet"),
  22410. weight: math.unit(180, "lb"),
  22411. name: "Side",
  22412. image: {
  22413. source: "./media/characters/sen/side.svg",
  22414. extra: 1321 / 1254,
  22415. bottom: 0.007
  22416. }
  22417. },
  22418. back: {
  22419. height: math.unit(5 + 11 / 12, "feet"),
  22420. weight: math.unit(180, "lb"),
  22421. name: "Back",
  22422. image: {
  22423. source: "./media/characters/sen/back.svg",
  22424. extra: 1321 / 1254
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(5 + 11 / 12, "feet"),
  22432. default: true
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(166.6, "cm"),
  22441. weight: math.unit(66.6, "kg"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/fruity/front.svg",
  22445. extra: 1510 / 1386,
  22446. bottom: 0.04
  22447. }
  22448. },
  22449. back: {
  22450. height: math.unit(166.6, "cm"),
  22451. weight: math.unit(66.6, "lb"),
  22452. name: "Back",
  22453. image: {
  22454. source: "./media/characters/fruity/back.svg",
  22455. extra: 1563 / 1435,
  22456. bottom: 0.005
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(166.6, "cm"),
  22464. default: true
  22465. },
  22466. {
  22467. name: "Demonic",
  22468. height: math.unit(166.6, "feet")
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22474. {
  22475. side: {
  22476. height: math.unit(10, "feet"),
  22477. weight: math.unit(500, "lb"),
  22478. name: "Side",
  22479. image: {
  22480. source: "./media/characters/zost/side.svg",
  22481. extra: 2870/2533,
  22482. bottom: 252/3122
  22483. }
  22484. },
  22485. mawFront: {
  22486. height: math.unit(1.08, "meters"),
  22487. name: "Maw (Front)",
  22488. image: {
  22489. source: "./media/characters/zost/maw-front.svg"
  22490. }
  22491. },
  22492. mawSide: {
  22493. height: math.unit(2.66, "feet"),
  22494. name: "Maw (Side)",
  22495. image: {
  22496. source: "./media/characters/zost/maw-side.svg"
  22497. }
  22498. },
  22499. wingspan: {
  22500. height: math.unit(7.4, "feet"),
  22501. name: "Wingspan",
  22502. image: {
  22503. source: "./media/characters/zost/wingspan.svg"
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(10, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 4 / 12, "feet"),
  22520. weight: math.unit(120, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/luci/front.svg",
  22524. extra: 1985 / 1884,
  22525. bottom: 0.04
  22526. }
  22527. },
  22528. back: {
  22529. height: math.unit(5 + 4 / 12, "feet"),
  22530. weight: math.unit(120, "lb"),
  22531. name: "Back",
  22532. image: {
  22533. source: "./media/characters/luci/back.svg",
  22534. extra: 1892 / 1791,
  22535. bottom: 0.002
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(5 + 4 / 12, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(1500, "feet"),
  22552. weight: math.unit(3.8e6, "tons"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/2th/front.svg",
  22556. extra: 3489 / 3350,
  22557. bottom: 0.1
  22558. }
  22559. },
  22560. foot: {
  22561. height: math.unit(461, "feet"),
  22562. name: "Foot",
  22563. image: {
  22564. source: "./media/characters/2th/foot.svg"
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "\"Micro\"",
  22571. height: math.unit(15 + 7 / 12, "feet")
  22572. },
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(1500, "feet"),
  22576. default: true
  22577. },
  22578. {
  22579. name: "Macro",
  22580. height: math.unit(5000, "feet")
  22581. },
  22582. {
  22583. name: "Megamacro",
  22584. height: math.unit(15, "miles")
  22585. },
  22586. {
  22587. name: "Gigamacro",
  22588. height: math.unit(4000, "miles")
  22589. },
  22590. {
  22591. name: "Galactic",
  22592. height: math.unit(50, "AU")
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(5 + 6 / 12, "feet"),
  22601. weight: math.unit(220, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/amethyst/front.svg",
  22605. extra: 2078 / 2040,
  22606. bottom: 0.045
  22607. }
  22608. },
  22609. back: {
  22610. height: math.unit(5 + 6 / 12, "feet"),
  22611. weight: math.unit(220, "lb"),
  22612. name: "Back",
  22613. image: {
  22614. source: "./media/characters/amethyst/back.svg",
  22615. extra: 2021 / 1989,
  22616. bottom: 0.02
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(5 + 6 / 12, "feet"),
  22624. default: true
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(4 + 11 / 12, "feet"),
  22633. weight: math.unit(120, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/yumi-akiyama/front.svg",
  22637. extra: 1327 / 1235,
  22638. bottom: 0.02
  22639. }
  22640. },
  22641. back: {
  22642. height: math.unit(4 + 11 / 12, "feet"),
  22643. weight: math.unit(120, "lb"),
  22644. name: "Back",
  22645. image: {
  22646. source: "./media/characters/yumi-akiyama/back.svg",
  22647. extra: 1287 / 1245,
  22648. bottom: 0.002
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Galactic",
  22655. height: math.unit(50, "galaxies"),
  22656. default: true
  22657. },
  22658. {
  22659. name: "Universal",
  22660. height: math.unit(100, "universes")
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(8, "feet"),
  22669. weight: math.unit(500, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/rifter-yrmori/front.svg",
  22673. extra: 1180 / 1125,
  22674. bottom: 0.02
  22675. }
  22676. },
  22677. back: {
  22678. height: math.unit(8, "feet"),
  22679. weight: math.unit(500, "lb"),
  22680. name: "Back",
  22681. image: {
  22682. source: "./media/characters/rifter-yrmori/back.svg",
  22683. extra: 1190 / 1145,
  22684. bottom: 0.001
  22685. }
  22686. },
  22687. wings: {
  22688. height: math.unit(7.75, "feet"),
  22689. weight: math.unit(500, "lb"),
  22690. name: "Wings",
  22691. image: {
  22692. source: "./media/characters/rifter-yrmori/wings.svg",
  22693. extra: 1357 / 1285
  22694. }
  22695. },
  22696. maw: {
  22697. height: math.unit(0.8, "feet"),
  22698. name: "Maw",
  22699. image: {
  22700. source: "./media/characters/rifter-yrmori/maw.svg"
  22701. }
  22702. },
  22703. mawfront: {
  22704. height: math.unit(1.45, "feet"),
  22705. name: "Maw (Front)",
  22706. image: {
  22707. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(8, "feet"),
  22715. default: true
  22716. },
  22717. {
  22718. name: "Macro",
  22719. height: math.unit(42, "meters")
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22725. {
  22726. were: {
  22727. height: math.unit(25 + 6 / 12, "feet"),
  22728. weight: math.unit(10000, "lb"),
  22729. name: "Were",
  22730. image: {
  22731. source: "./media/characters/tahajin/were.svg",
  22732. extra: 801 / 770,
  22733. bottom: 0.042
  22734. }
  22735. },
  22736. aquatic: {
  22737. height: math.unit(6 + 4 / 12, "feet"),
  22738. weight: math.unit(160, "lb"),
  22739. name: "Aquatic",
  22740. image: {
  22741. source: "./media/characters/tahajin/aquatic.svg",
  22742. extra: 572 / 542,
  22743. bottom: 0.04
  22744. }
  22745. },
  22746. chow: {
  22747. height: math.unit(8 + 11 / 12, "feet"),
  22748. weight: math.unit(450, "lb"),
  22749. name: "Chow",
  22750. image: {
  22751. source: "./media/characters/tahajin/chow.svg",
  22752. extra: 660 / 640,
  22753. bottom: 0.015
  22754. }
  22755. },
  22756. demiNaga: {
  22757. height: math.unit(6 + 8 / 12, "feet"),
  22758. weight: math.unit(300, "lb"),
  22759. name: "Demi Naga",
  22760. image: {
  22761. source: "./media/characters/tahajin/demi-naga.svg",
  22762. extra: 643 / 615,
  22763. bottom: 0.1
  22764. }
  22765. },
  22766. data: {
  22767. height: math.unit(5, "inches"),
  22768. weight: math.unit(0.1, "lb"),
  22769. name: "Data",
  22770. image: {
  22771. source: "./media/characters/tahajin/data.svg"
  22772. }
  22773. },
  22774. fluu: {
  22775. height: math.unit(5 + 7 / 12, "feet"),
  22776. weight: math.unit(140, "lb"),
  22777. name: "Fluu",
  22778. image: {
  22779. source: "./media/characters/tahajin/fluu.svg",
  22780. extra: 628 / 592,
  22781. bottom: 0.02
  22782. }
  22783. },
  22784. starWarrior: {
  22785. height: math.unit(4 + 5 / 12, "feet"),
  22786. weight: math.unit(50, "lb"),
  22787. name: "Star Warrior",
  22788. image: {
  22789. source: "./media/characters/tahajin/star-warrior.svg"
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(25 + 6 / 12, "feet"),
  22797. default: true
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22803. {
  22804. front: {
  22805. height: math.unit(8, "feet"),
  22806. weight: math.unit(350, "lb"),
  22807. name: "Front",
  22808. image: {
  22809. source: "./media/characters/gabira/front.svg",
  22810. extra: 1261/1154,
  22811. bottom: 51/1312
  22812. }
  22813. },
  22814. back: {
  22815. height: math.unit(8, "feet"),
  22816. weight: math.unit(350, "lb"),
  22817. name: "Back",
  22818. image: {
  22819. source: "./media/characters/gabira/back.svg",
  22820. extra: 1265/1163,
  22821. bottom: 46/1311
  22822. }
  22823. },
  22824. head: {
  22825. height: math.unit(2.85, "feet"),
  22826. name: "Head",
  22827. image: {
  22828. source: "./media/characters/gabira/head.svg"
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(8, "feet"),
  22836. default: true
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(5 + 3 / 12, "feet"),
  22845. weight: math.unit(137, "lb"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/sasha-katraine/front.svg",
  22849. extra: 1745/1694,
  22850. bottom: 37/1782
  22851. }
  22852. },
  22853. back: {
  22854. height: math.unit(5 + 3 / 12, "feet"),
  22855. weight: math.unit(137, "lb"),
  22856. name: "Back",
  22857. image: {
  22858. source: "./media/characters/sasha-katraine/back.svg",
  22859. extra: 1776/1699,
  22860. bottom: 26/1802
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Micro",
  22867. height: math.unit(5, "inches")
  22868. },
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(5 + 3 / 12, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22878. {
  22879. side: {
  22880. height: math.unit(4, "inches"),
  22881. weight: math.unit(200, "grams"),
  22882. name: "Side",
  22883. image: {
  22884. source: "./media/characters/der/side.svg",
  22885. extra: 719 / 400,
  22886. bottom: 30.6 / 749.9187
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Micro",
  22893. height: math.unit(4, "inches"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22900. {
  22901. side: {
  22902. height: math.unit(30, "meters"),
  22903. weight: math.unit(700, "tonnes"),
  22904. name: "Side",
  22905. image: {
  22906. source: "./media/characters/fixerdragon/side.svg",
  22907. extra: (1293.0514 - 116.03) / 1106.86,
  22908. bottom: 116.03 / 1293.0514
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Planck",
  22915. height: math.unit(1.6e-35, "meters")
  22916. },
  22917. {
  22918. name: "Micro",
  22919. height: math.unit(0.4, "meters")
  22920. },
  22921. {
  22922. name: "Normal",
  22923. height: math.unit(30, "meters"),
  22924. default: true
  22925. },
  22926. {
  22927. name: "Megamacro",
  22928. height: math.unit(1.2, "megameters")
  22929. },
  22930. {
  22931. name: "Teramacro",
  22932. height: math.unit(130, "terameters")
  22933. },
  22934. {
  22935. name: "Yottamacro",
  22936. height: math.unit(6200, "yottameters")
  22937. },
  22938. ]
  22939. ));
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(8, "feet"),
  22945. weight: math.unit(250, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/kite/front.svg",
  22949. extra: 2796 / 2659,
  22950. bottom: 0.002
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(8, "feet"),
  22958. default: true
  22959. },
  22960. {
  22961. name: "Macro",
  22962. height: math.unit(360, "feet")
  22963. },
  22964. {
  22965. name: "Megamacro",
  22966. height: math.unit(1500, "feet")
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(5 + 11/12, "feet"),
  22975. weight: math.unit(170, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/poojawa-vynar/front.svg",
  22979. extra: 1735/1585,
  22980. bottom: 96/1831
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(5 + 11/12, "feet"),
  22985. weight: math.unit(170, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/poojawa-vynar/back.svg",
  22989. extra: 1749/1607,
  22990. bottom: 28/1777
  22991. }
  22992. },
  22993. male: {
  22994. height: math.unit(5 + 11/12, "feet"),
  22995. weight: math.unit(170, "lb"),
  22996. name: "Male",
  22997. image: {
  22998. source: "./media/characters/poojawa-vynar/male.svg",
  22999. extra: 1855/1713,
  23000. bottom: 63/1918
  23001. }
  23002. },
  23003. taur: {
  23004. height: math.unit(5 + 11/12, "feet"),
  23005. weight: math.unit(170, "lb"),
  23006. name: "Taur",
  23007. image: {
  23008. source: "./media/characters/poojawa-vynar/taur.svg",
  23009. extra: 1151/1059,
  23010. bottom: 356/1507
  23011. }
  23012. },
  23013. frontDressed: {
  23014. height: math.unit(5 + 11/12, "feet"),
  23015. weight: math.unit(170, "lb"),
  23016. name: "Front (Dressed)",
  23017. image: {
  23018. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23019. extra: 1735/1585,
  23020. bottom: 96/1831
  23021. }
  23022. },
  23023. backDressed: {
  23024. height: math.unit(5 + 11/12, "feet"),
  23025. weight: math.unit(170, "lb"),
  23026. name: "Back (Dressed)",
  23027. image: {
  23028. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23029. extra: 1749/1607,
  23030. bottom: 28/1777
  23031. }
  23032. },
  23033. maleDressed: {
  23034. height: math.unit(5 + 11/12, "feet"),
  23035. weight: math.unit(170, "lb"),
  23036. name: "Male (Dressed)",
  23037. image: {
  23038. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23039. extra: 1855/1713,
  23040. bottom: 63/1918
  23041. }
  23042. },
  23043. taurDressed: {
  23044. height: math.unit(5 + 11/12, "feet"),
  23045. weight: math.unit(170, "lb"),
  23046. name: "Taur (Dressed)",
  23047. image: {
  23048. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23049. extra: 1151/1059,
  23050. bottom: 356/1507
  23051. }
  23052. },
  23053. maw: {
  23054. height: math.unit(1.46, "feet"),
  23055. name: "Maw",
  23056. image: {
  23057. source: "./media/characters/poojawa-vynar/maw.svg"
  23058. }
  23059. },
  23060. head: {
  23061. height: math.unit(2.34, "feet"),
  23062. name: "Head",
  23063. image: {
  23064. source: "./media/characters/poojawa-vynar/head.svg"
  23065. }
  23066. },
  23067. paw: {
  23068. height: math.unit(1.61, "feet"),
  23069. name: "Paw",
  23070. image: {
  23071. source: "./media/characters/poojawa-vynar/paw.svg"
  23072. }
  23073. },
  23074. pawToering: {
  23075. height: math.unit(1.72, "feet"),
  23076. name: "Paw (Toering)",
  23077. image: {
  23078. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23079. }
  23080. },
  23081. toering: {
  23082. height: math.unit(2.9, "inches"),
  23083. name: "Toering",
  23084. image: {
  23085. source: "./media/characters/poojawa-vynar/toering.svg"
  23086. }
  23087. },
  23088. shaft: {
  23089. height: math.unit(0.625, "feet"),
  23090. name: "Shaft",
  23091. image: {
  23092. source: "./media/characters/poojawa-vynar/shaft.svg"
  23093. }
  23094. },
  23095. spade: {
  23096. height: math.unit(0.42, "feet"),
  23097. name: "Spade",
  23098. image: {
  23099. source: "./media/characters/poojawa-vynar/spade.svg"
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Shortstack",
  23106. height: math.unit(4, "feet")
  23107. },
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(5 + 11 / 12, "feet"),
  23111. default: true
  23112. },
  23113. {
  23114. name: "Tauric",
  23115. height: math.unit(4, "meters")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(293, "meters"),
  23124. weight: math.unit(70400, "tons"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/violette/front.svg",
  23128. extra: 1227 / 1180,
  23129. bottom: 0.005
  23130. }
  23131. },
  23132. back: {
  23133. height: math.unit(293, "meters"),
  23134. weight: math.unit(70400, "tons"),
  23135. name: "Back",
  23136. image: {
  23137. source: "./media/characters/violette/back.svg",
  23138. extra: 1227 / 1180,
  23139. bottom: 0.005
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(293, "meters"),
  23147. default: true
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(1050, "feet"),
  23156. weight: math.unit(200000, "tons"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/alessandra/front.svg",
  23160. extra: 960 / 912,
  23161. bottom: 0.06
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Macro",
  23168. height: math.unit(1050, "feet")
  23169. },
  23170. {
  23171. name: "Macro+",
  23172. height: math.unit(900, "meters"),
  23173. default: true
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(5, "feet"),
  23182. weight: math.unit(187, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/person/front.svg",
  23186. extra: 3087 / 2945,
  23187. bottom: 91 / 3181
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Micro",
  23194. height: math.unit(3, "inches")
  23195. },
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(5, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Macro",
  23203. height: math.unit(90, "feet")
  23204. },
  23205. {
  23206. name: "Max Size",
  23207. height: math.unit(280, "feet")
  23208. },
  23209. ]
  23210. ))
  23211. characterMakers.push(() => makeCharacter(
  23212. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23213. {
  23214. front: {
  23215. height: math.unit(4.5, "meters"),
  23216. weight: math.unit(3200, "lb"),
  23217. name: "Front",
  23218. image: {
  23219. source: "./media/characters/ty/front.svg",
  23220. extra: 1038 / 960,
  23221. bottom: 31.156 / 1068
  23222. }
  23223. },
  23224. back: {
  23225. height: math.unit(4.5, "meters"),
  23226. weight: math.unit(3200, "lb"),
  23227. name: "Back",
  23228. image: {
  23229. source: "./media/characters/ty/back.svg",
  23230. extra: 1044 / 966,
  23231. bottom: 7.48 / 1049
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(4.5, "meters"),
  23239. default: true
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23245. {
  23246. front: {
  23247. height: math.unit(5 + 4 / 12, "feet"),
  23248. weight: math.unit(115, "lb"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/rocky/front.svg",
  23252. extra: 1012 / 975,
  23253. bottom: 54 / 1066
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(5 + 4 / 12, "feet"),
  23261. default: true
  23262. },
  23263. ]
  23264. ))
  23265. characterMakers.push(() => makeCharacter(
  23266. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23267. {
  23268. upright: {
  23269. height: math.unit(6, "meters"),
  23270. weight: math.unit(4000, "kg"),
  23271. name: "Upright",
  23272. image: {
  23273. source: "./media/characters/ruin/upright.svg",
  23274. extra: 668 / 661,
  23275. bottom: 42 / 799.8396
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(6, "meters"),
  23283. default: true
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23289. {
  23290. front: {
  23291. height: math.unit(5, "feet"),
  23292. weight: math.unit(106, "lb"),
  23293. name: "Front",
  23294. image: {
  23295. source: "./media/characters/robin/front.svg",
  23296. extra: 862 / 799,
  23297. bottom: 42.4 / 914.8856
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Normal",
  23304. height: math.unit(5, "feet"),
  23305. default: true
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23311. {
  23312. side: {
  23313. height: math.unit(3, "feet"),
  23314. weight: math.unit(225, "lb"),
  23315. name: "Side",
  23316. image: {
  23317. source: "./media/characters/saian/side.svg",
  23318. extra: 566 / 356,
  23319. bottom: 79.7 / 643
  23320. }
  23321. },
  23322. maw: {
  23323. height: math.unit(2.85, "feet"),
  23324. name: "Maw",
  23325. image: {
  23326. source: "./media/characters/saian/maw.svg"
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(3, "feet"),
  23334. default: true
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23340. {
  23341. side: {
  23342. height: math.unit(8, "feet"),
  23343. weight: math.unit(300, "lb"),
  23344. name: "Side",
  23345. image: {
  23346. source: "./media/characters/equus-silvermane/side.svg",
  23347. extra: 2176 / 2050,
  23348. bottom: 65.7 / 2245
  23349. }
  23350. },
  23351. front: {
  23352. height: math.unit(8, "feet"),
  23353. weight: math.unit(300, "lb"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/equus-silvermane/front.svg",
  23357. extra: 4633 / 4400,
  23358. bottom: 71.3 / 4706.915
  23359. }
  23360. },
  23361. sideStepping: {
  23362. height: math.unit(8, "feet"),
  23363. weight: math.unit(300, "lb"),
  23364. name: "Side (Stepping)",
  23365. image: {
  23366. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23367. extra: 1968 / 1860,
  23368. bottom: 16.4 / 1989
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(8, "feet")
  23376. },
  23377. {
  23378. name: "Minimacro",
  23379. height: math.unit(75, "feet"),
  23380. default: true
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(150, "feet")
  23385. },
  23386. {
  23387. name: "Macro+",
  23388. height: math.unit(1000, "feet")
  23389. },
  23390. {
  23391. name: "Megamacro",
  23392. height: math.unit(1, "mile")
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23398. {
  23399. side: {
  23400. height: math.unit(20, "feet"),
  23401. weight: math.unit(30000, "kg"),
  23402. name: "Side",
  23403. image: {
  23404. source: "./media/characters/windar/side.svg",
  23405. extra: 1491 / 1248,
  23406. bottom: 82.56 / 1568
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Normal",
  23413. height: math.unit(20, "feet"),
  23414. default: true
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23420. {
  23421. side: {
  23422. height: math.unit(15.66, "feet"),
  23423. weight: math.unit(150, "lb"),
  23424. name: "Side",
  23425. image: {
  23426. source: "./media/characters/melody/side.svg",
  23427. extra: 1097 / 944,
  23428. bottom: 11.8 / 1109
  23429. }
  23430. },
  23431. sideOutfit: {
  23432. height: math.unit(15.66, "feet"),
  23433. weight: math.unit(150, "lb"),
  23434. name: "Side (Outfit)",
  23435. image: {
  23436. source: "./media/characters/melody/side-outfit.svg",
  23437. extra: 1097 / 944,
  23438. bottom: 11.8 / 1109
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(15.66, "feet"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23452. {
  23453. armoredFront: {
  23454. height: math.unit(8, "feet"),
  23455. weight: math.unit(325, "lb"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/windera/armored-front.svg",
  23459. extra: 1830/1598,
  23460. bottom: 151/1981
  23461. },
  23462. form: "armored",
  23463. default: true
  23464. },
  23465. macroFront: {
  23466. height: math.unit(70, "feet"),
  23467. weight: math.unit(315453, "lb"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/windera/macro-front.svg",
  23471. extra: 963/883,
  23472. bottom: 23/986
  23473. },
  23474. form: "macro",
  23475. default: true
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Normal",
  23481. height: math.unit(8, "feet"),
  23482. default: true,
  23483. form: "armored"
  23484. },
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(70, "feet"),
  23488. default: true,
  23489. form: "macro"
  23490. },
  23491. ],
  23492. {
  23493. "armored": {
  23494. name: "Armored",
  23495. default: true
  23496. },
  23497. "macro": {
  23498. name: "Macro",
  23499. },
  23500. }
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23504. {
  23505. front: {
  23506. height: math.unit(28.75, "feet"),
  23507. weight: math.unit(2000, "kg"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/sonear/front.svg",
  23511. extra: 1041.1 / 964.9,
  23512. bottom: 53.7 / 1096.6
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Normal",
  23519. height: math.unit(28.75, "feet"),
  23520. default: true
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23526. {
  23527. side: {
  23528. height: math.unit(25.5, "feet"),
  23529. weight: math.unit(23000, "kg"),
  23530. name: "Side",
  23531. image: {
  23532. source: "./media/characters/kanara/side.svg"
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(25.5, "feet"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23546. {
  23547. side: {
  23548. height: math.unit(10, "feet"),
  23549. weight: math.unit(1000, "kg"),
  23550. name: "Side",
  23551. image: {
  23552. source: "./media/characters/ereus/side.svg",
  23553. extra: 1157 / 959,
  23554. bottom: 153 / 1312.5
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(10, "feet"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23568. {
  23569. side: {
  23570. height: math.unit(4.5, "feet"),
  23571. weight: math.unit(500, "lb"),
  23572. name: "Side",
  23573. image: {
  23574. source: "./media/characters/e-ter/side.svg",
  23575. extra: 1550 / 1248,
  23576. bottom: 146 / 1694
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(4.5, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23590. {
  23591. side: {
  23592. height: math.unit(9.7, "feet"),
  23593. weight: math.unit(4000, "kg"),
  23594. name: "Side",
  23595. image: {
  23596. source: "./media/characters/yamie/side.svg"
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(9.7, "feet"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23610. {
  23611. front: {
  23612. height: math.unit(50, "feet"),
  23613. weight: math.unit(50000, "kg"),
  23614. name: "Front",
  23615. image: {
  23616. source: "./media/characters/anders/front.svg",
  23617. extra: 570 / 539,
  23618. bottom: 14.7 / 586.7
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Large",
  23625. height: math.unit(50, "feet")
  23626. },
  23627. {
  23628. name: "Macro",
  23629. height: math.unit(2000, "feet"),
  23630. default: true
  23631. },
  23632. {
  23633. name: "Megamacro",
  23634. height: math.unit(12, "miles")
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(7 + 2 / 12, "feet"),
  23643. weight: math.unit(300, "lb"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/reban/front.svg",
  23647. extra: 1287/1212,
  23648. bottom: 148/1435
  23649. }
  23650. },
  23651. head: {
  23652. height: math.unit(1.95, "feet"),
  23653. name: "Head",
  23654. image: {
  23655. source: "./media/characters/reban/head.svg"
  23656. }
  23657. },
  23658. maw: {
  23659. height: math.unit(0.95, "feet"),
  23660. name: "Maw",
  23661. image: {
  23662. source: "./media/characters/reban/maw.svg"
  23663. }
  23664. },
  23665. foot: {
  23666. height: math.unit(1.65, "feet"),
  23667. name: "Foot",
  23668. image: {
  23669. source: "./media/characters/reban/foot.svg"
  23670. }
  23671. },
  23672. dick: {
  23673. height: math.unit(7 / 5, "feet"),
  23674. name: "Dick",
  23675. image: {
  23676. source: "./media/characters/reban/dick.svg"
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Natural Height",
  23683. height: math.unit(7 + 2 / 12, "feet")
  23684. },
  23685. {
  23686. name: "Macro",
  23687. height: math.unit(500, "feet"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Canon Height",
  23692. height: math.unit(50, "AU")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23698. {
  23699. front: {
  23700. height: math.unit(6, "feet"),
  23701. weight: math.unit(150, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/terrance-keayes/front.svg",
  23705. extra: 1.005,
  23706. bottom: 151 / 1615
  23707. }
  23708. },
  23709. side: {
  23710. height: math.unit(6, "feet"),
  23711. weight: math.unit(150, "lb"),
  23712. name: "Side",
  23713. image: {
  23714. source: "./media/characters/terrance-keayes/side.svg",
  23715. extra: 1.005,
  23716. bottom: 129.4 / 1544
  23717. }
  23718. },
  23719. back: {
  23720. height: math.unit(6, "feet"),
  23721. weight: math.unit(150, "lb"),
  23722. name: "Back",
  23723. image: {
  23724. source: "./media/characters/terrance-keayes/back.svg",
  23725. extra: 1.005,
  23726. bottom: 58.4 / 1557.3
  23727. }
  23728. },
  23729. dick: {
  23730. height: math.unit(6 * 0.208, "feet"),
  23731. name: "Dick",
  23732. image: {
  23733. source: "./media/characters/terrance-keayes/dick.svg"
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Canon Height",
  23740. height: math.unit(35, "miles"),
  23741. default: true
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(6, "feet"),
  23750. weight: math.unit(150, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/ofelia/front.svg",
  23754. extra: 1130/1117,
  23755. bottom: 91/1221
  23756. }
  23757. },
  23758. back: {
  23759. height: math.unit(6, "feet"),
  23760. weight: math.unit(150, "lb"),
  23761. name: "Back",
  23762. image: {
  23763. source: "./media/characters/ofelia/back.svg",
  23764. extra: 1172/1159,
  23765. bottom: 28/1200
  23766. }
  23767. },
  23768. maw: {
  23769. height: math.unit(1, "feet"),
  23770. name: "Maw",
  23771. image: {
  23772. source: "./media/characters/ofelia/maw.svg"
  23773. }
  23774. },
  23775. foot: {
  23776. height: math.unit(1.949, "feet"),
  23777. name: "Foot",
  23778. image: {
  23779. source: "./media/characters/ofelia/foot.svg"
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Canon Height",
  23786. height: math.unit(2000, "miles"),
  23787. default: true
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23793. {
  23794. front: {
  23795. height: math.unit(6, "feet"),
  23796. weight: math.unit(150, "lb"),
  23797. name: "Front",
  23798. image: {
  23799. source: "./media/characters/samuel/front.svg",
  23800. extra: 265 / 258,
  23801. bottom: 2 / 266.1566
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(100, "feet"),
  23809. default: true
  23810. },
  23811. {
  23812. name: "Full Size",
  23813. height: math.unit(1000, "miles")
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(6, "feet"),
  23822. weight: math.unit(300, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/beishir-kiel/front.svg",
  23826. extra: 569 / 547,
  23827. bottom: 41.9 / 609
  23828. }
  23829. },
  23830. maw: {
  23831. height: math.unit(6 * 0.202, "feet"),
  23832. name: "Maw",
  23833. image: {
  23834. source: "./media/characters/beishir-kiel/maw.svg"
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Macro",
  23841. height: math.unit(300, "feet"),
  23842. default: true
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23848. {
  23849. front: {
  23850. height: math.unit(5 + 7/12, "feet"),
  23851. weight: math.unit(120, "lb"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/logan-grey/front.svg",
  23855. extra: 1836/1738,
  23856. bottom: 108/1944
  23857. }
  23858. },
  23859. back: {
  23860. height: math.unit(5 + 7/12, "feet"),
  23861. weight: math.unit(120, "lb"),
  23862. name: "Back",
  23863. image: {
  23864. source: "./media/characters/logan-grey/back.svg",
  23865. extra: 1880/1794,
  23866. bottom: 24/1904
  23867. }
  23868. },
  23869. frontSfw: {
  23870. height: math.unit(5 + 7/12, "feet"),
  23871. weight: math.unit(120, "lb"),
  23872. name: "Front (SFW)",
  23873. image: {
  23874. source: "./media/characters/logan-grey/front-sfw.svg",
  23875. extra: 1836/1738,
  23876. bottom: 108/1944
  23877. }
  23878. },
  23879. backSfw: {
  23880. height: math.unit(5 + 7/12, "feet"),
  23881. weight: math.unit(120, "lb"),
  23882. name: "Back (SFW)",
  23883. image: {
  23884. source: "./media/characters/logan-grey/back-sfw.svg",
  23885. extra: 1880/1794,
  23886. bottom: 24/1904
  23887. }
  23888. },
  23889. hands: {
  23890. height: math.unit(0.84, "feet"),
  23891. name: "Hands",
  23892. image: {
  23893. source: "./media/characters/logan-grey/hands.svg"
  23894. }
  23895. },
  23896. paws: {
  23897. height: math.unit(0.72, "feet"),
  23898. name: "Paws",
  23899. image: {
  23900. source: "./media/characters/logan-grey/paws.svg"
  23901. }
  23902. },
  23903. cock: {
  23904. height: math.unit(1.45, "feet"),
  23905. name: "Cock",
  23906. image: {
  23907. source: "./media/characters/logan-grey/cock.svg"
  23908. }
  23909. },
  23910. cockAlt: {
  23911. height: math.unit(1.437, "feet"),
  23912. name: "Cock (alt)",
  23913. image: {
  23914. source: "./media/characters/logan-grey/cock-alt.svg"
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(5 + 8 / 12, "feet")
  23922. },
  23923. {
  23924. name: "The 500 Foot Femboy",
  23925. height: math.unit(500, "feet"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Megmacro",
  23930. height: math.unit(20, "miles")
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(8 + 2 / 12, "feet"),
  23939. weight: math.unit(275, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/draganta/front.svg",
  23943. extra: 1177 / 1135,
  23944. bottom: 33.46 / 1212.1
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(8 + 6 / 12, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(150, "feet")
  23957. },
  23958. {
  23959. name: "Megamacro",
  23960. height: math.unit(1000, "miles")
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(1.72, "m"),
  23969. weight: math.unit(80, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/voski/front.svg",
  23973. extra: 2076.22 / 2022.4,
  23974. bottom: 102.7 / 2177.3866
  23975. }
  23976. },
  23977. frontFlaccid: {
  23978. height: math.unit(1.72, "m"),
  23979. weight: math.unit(80, "lb"),
  23980. name: "Front (Flaccid)",
  23981. image: {
  23982. source: "./media/characters/voski/front-flaccid.svg",
  23983. extra: 2076.22 / 2022.4,
  23984. bottom: 102.7 / 2177.3866
  23985. }
  23986. },
  23987. frontErect: {
  23988. height: math.unit(1.72, "m"),
  23989. weight: math.unit(80, "lb"),
  23990. name: "Front (Erect)",
  23991. image: {
  23992. source: "./media/characters/voski/front-erect.svg",
  23993. extra: 2076.22 / 2022.4,
  23994. bottom: 102.7 / 2177.3866
  23995. }
  23996. },
  23997. back: {
  23998. height: math.unit(1.72, "m"),
  23999. weight: math.unit(80, "lb"),
  24000. name: "Back",
  24001. image: {
  24002. source: "./media/characters/voski/back.svg",
  24003. extra: 2104 / 2051,
  24004. bottom: 10.45 / 2113.63
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Normal",
  24011. height: math.unit(1.72, "m")
  24012. },
  24013. {
  24014. name: "Macro",
  24015. height: math.unit(55, "m"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Macro+",
  24020. height: math.unit(300, "m")
  24021. },
  24022. {
  24023. name: "Macro++",
  24024. height: math.unit(700, "m")
  24025. },
  24026. {
  24027. name: "Macro+++",
  24028. height: math.unit(4500, "m")
  24029. },
  24030. {
  24031. name: "Macro++++",
  24032. height: math.unit(45, "km")
  24033. },
  24034. {
  24035. name: "Macro+++++",
  24036. height: math.unit(1220, "km")
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24042. {
  24043. front: {
  24044. height: math.unit(2.3, "m"),
  24045. weight: math.unit(304, "kg"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/icowom-lee/front.svg",
  24049. extra: 985 / 955,
  24050. bottom: 25.4 / 1012
  24051. }
  24052. },
  24053. fronttentacles: {
  24054. height: math.unit(2.3, "m"),
  24055. weight: math.unit(304, "kg"),
  24056. name: "Front-tentacles",
  24057. image: {
  24058. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24059. extra: 985 / 955,
  24060. bottom: 25.4 / 1012
  24061. }
  24062. },
  24063. back: {
  24064. height: math.unit(2.3, "m"),
  24065. weight: math.unit(304, "kg"),
  24066. name: "Back",
  24067. image: {
  24068. source: "./media/characters/icowom-lee/back.svg",
  24069. extra: 975 / 954,
  24070. bottom: 9.5 / 985
  24071. }
  24072. },
  24073. backtentacles: {
  24074. height: math.unit(2.3, "m"),
  24075. weight: math.unit(304, "kg"),
  24076. name: "Back-tentacles",
  24077. image: {
  24078. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24079. extra: 975 / 954,
  24080. bottom: 9.5 / 985
  24081. }
  24082. },
  24083. frontDressed: {
  24084. height: math.unit(2.3, "m"),
  24085. weight: math.unit(304, "kg"),
  24086. name: "Front (Dressed)",
  24087. image: {
  24088. source: "./media/characters/icowom-lee/front-dressed.svg",
  24089. extra: 3076 / 2933,
  24090. bottom: 51.4 / 3125.1889
  24091. }
  24092. },
  24093. rump: {
  24094. height: math.unit(0.776, "meters"),
  24095. name: "Rump",
  24096. image: {
  24097. source: "./media/characters/icowom-lee/rump.svg"
  24098. }
  24099. },
  24100. genitals: {
  24101. height: math.unit(0.78, "meters"),
  24102. name: "Genitals",
  24103. image: {
  24104. source: "./media/characters/icowom-lee/genitals.svg"
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Normal",
  24111. height: math.unit(2.3, "meters"),
  24112. default: true
  24113. },
  24114. {
  24115. name: "Macro",
  24116. height: math.unit(94, "meters"),
  24117. default: true
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(22, "meters"),
  24126. weight: math.unit(21000, "kg"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/shock-diamond/front.svg",
  24130. extra: 2204 / 2053,
  24131. bottom: 65 / 2239.47
  24132. }
  24133. },
  24134. frontNude: {
  24135. height: math.unit(22, "meters"),
  24136. weight: math.unit(21000, "kg"),
  24137. name: "Front (Nude)",
  24138. image: {
  24139. source: "./media/characters/shock-diamond/front-nude.svg",
  24140. extra: 2514 / 2285,
  24141. bottom: 13 / 2527.56
  24142. }
  24143. },
  24144. },
  24145. [
  24146. {
  24147. name: "Normal",
  24148. height: math.unit(3, "meters")
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(22, "meters"),
  24153. default: true
  24154. },
  24155. ]
  24156. ))
  24157. characterMakers.push(() => makeCharacter(
  24158. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24159. {
  24160. front: {
  24161. height: math.unit(5 + 4/12, "feet"),
  24162. weight: math.unit(125, "lb"),
  24163. name: "Front",
  24164. image: {
  24165. source: "./media/characters/rory/front.svg",
  24166. extra: 1790/1681,
  24167. bottom: 66/1856
  24168. }
  24169. },
  24170. back: {
  24171. height: math.unit(5 + 4/12, "feet"),
  24172. weight: math.unit(125, "lb"),
  24173. name: "Back",
  24174. image: {
  24175. source: "./media/characters/rory/back.svg",
  24176. extra: 1805/1690,
  24177. bottom: 56/1861
  24178. }
  24179. },
  24180. frontDressed: {
  24181. height: math.unit(5 + 4/12, "feet"),
  24182. weight: math.unit(125, "lb"),
  24183. name: "Front (Dressed)",
  24184. image: {
  24185. source: "./media/characters/rory/front-dressed.svg",
  24186. extra: 1790/1681,
  24187. bottom: 66/1856
  24188. }
  24189. },
  24190. backDressed: {
  24191. height: math.unit(5 + 4/12, "feet"),
  24192. weight: math.unit(125, "lb"),
  24193. name: "Back (Dressed)",
  24194. image: {
  24195. source: "./media/characters/rory/back-dressed.svg",
  24196. extra: 1805/1690,
  24197. bottom: 56/1861
  24198. }
  24199. },
  24200. frontNsfw: {
  24201. height: math.unit(5 + 4/12, "feet"),
  24202. weight: math.unit(125, "lb"),
  24203. name: "Front (NSFW)",
  24204. image: {
  24205. source: "./media/characters/rory/front-nsfw.svg",
  24206. extra: 1790/1681,
  24207. bottom: 66/1856
  24208. }
  24209. },
  24210. backNsfw: {
  24211. height: math.unit(5 + 4/12, "feet"),
  24212. weight: math.unit(125, "lb"),
  24213. name: "Back (NSFW)",
  24214. image: {
  24215. source: "./media/characters/rory/back-nsfw.svg",
  24216. extra: 1805/1690,
  24217. bottom: 56/1861
  24218. }
  24219. },
  24220. dick: {
  24221. height: math.unit(0.8, "feet"),
  24222. name: "Dick",
  24223. image: {
  24224. source: "./media/characters/rory/dick.svg"
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Micro",
  24231. height: math.unit(3, "inches")
  24232. },
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(5 + 4/12, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(90, "feet")
  24241. },
  24242. {
  24243. name: "Supercharged",
  24244. height: math.unit(270, "feet")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(5 + 9 / 12, "feet"),
  24253. weight: math.unit(190, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/sprisk/front.svg",
  24257. extra: 1225 / 1180,
  24258. bottom: 42.7 / 1266.4
  24259. }
  24260. },
  24261. frontNsfw: {
  24262. height: math.unit(5 + 9 / 12, "feet"),
  24263. weight: math.unit(190, "lb"),
  24264. name: "Front (NSFW)",
  24265. image: {
  24266. source: "./media/characters/sprisk/front-nsfw.svg",
  24267. extra: 1225 / 1180,
  24268. bottom: 42.7 / 1266.4
  24269. }
  24270. },
  24271. back: {
  24272. height: math.unit(5 + 9 / 12, "feet"),
  24273. weight: math.unit(190, "lb"),
  24274. name: "Back",
  24275. image: {
  24276. source: "./media/characters/sprisk/back.svg",
  24277. extra: 1247 / 1200,
  24278. bottom: 5.6 / 1253.04
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Tiny",
  24285. height: math.unit(2, "inches")
  24286. },
  24287. {
  24288. name: "Normal",
  24289. height: math.unit(5 + 9 / 12, "feet"),
  24290. default: true
  24291. },
  24292. {
  24293. name: "Mini Macro",
  24294. height: math.unit(18, "feet")
  24295. },
  24296. {
  24297. name: "Macro",
  24298. height: math.unit(100, "feet")
  24299. },
  24300. {
  24301. name: "MACRO",
  24302. height: math.unit(50, "miles")
  24303. },
  24304. {
  24305. name: "M A C R O",
  24306. height: math.unit(300, "miles")
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24312. {
  24313. side: {
  24314. height: math.unit(15.6, "meters"),
  24315. weight: math.unit(700000, "kg"),
  24316. name: "Side",
  24317. image: {
  24318. source: "./media/characters/bunsen/side.svg",
  24319. extra: 1644 / 358
  24320. }
  24321. },
  24322. foot: {
  24323. height: math.unit(1.611 * 1644 / 358, "meter"),
  24324. name: "Foot",
  24325. image: {
  24326. source: "./media/characters/bunsen/foot.svg"
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Small",
  24333. height: math.unit(10, "feet")
  24334. },
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(15.6, "meters"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(4 + 11 / 12, "feet"),
  24347. weight: math.unit(140, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/sesh/front.svg",
  24351. extra: 3420 / 3231,
  24352. bottom: 72 / 3949.5
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(4 + 11 / 12, "feet")
  24360. },
  24361. {
  24362. name: "Grown",
  24363. height: math.unit(15, "feet"),
  24364. default: true
  24365. },
  24366. {
  24367. name: "Macro",
  24368. height: math.unit(1500, "feet")
  24369. },
  24370. {
  24371. name: "Megamacro",
  24372. height: math.unit(30, "miles")
  24373. },
  24374. {
  24375. name: "Continental",
  24376. height: math.unit(3000, "miles")
  24377. },
  24378. {
  24379. name: "Gravity Mass",
  24380. height: math.unit(300000, "miles")
  24381. },
  24382. {
  24383. name: "Planet Buster",
  24384. height: math.unit(30000000, "miles")
  24385. },
  24386. {
  24387. name: "Big",
  24388. height: math.unit(3000000000, "miles")
  24389. },
  24390. ]
  24391. ))
  24392. characterMakers.push(() => makeCharacter(
  24393. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24394. {
  24395. front: {
  24396. height: math.unit(9, "feet"),
  24397. weight: math.unit(350, "lb"),
  24398. name: "Front",
  24399. image: {
  24400. source: "./media/characters/pepper/front.svg",
  24401. extra: 1448 / 1312,
  24402. bottom: 9.4 / 1457.88
  24403. }
  24404. },
  24405. back: {
  24406. height: math.unit(9, "feet"),
  24407. weight: math.unit(350, "lb"),
  24408. name: "Back",
  24409. image: {
  24410. source: "./media/characters/pepper/back.svg",
  24411. extra: 1423 / 1300,
  24412. bottom: 4.6 / 1429
  24413. }
  24414. },
  24415. maw: {
  24416. height: math.unit(0.932, "feet"),
  24417. name: "Maw",
  24418. image: {
  24419. source: "./media/characters/pepper/maw.svg"
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(9, "feet"),
  24427. default: true
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24433. {
  24434. front: {
  24435. height: math.unit(6, "feet"),
  24436. weight: math.unit(150, "lb"),
  24437. name: "Front",
  24438. image: {
  24439. source: "./media/characters/maelstrom/front.svg",
  24440. extra: 2100 / 1883,
  24441. bottom: 94 / 2196.7
  24442. }
  24443. },
  24444. },
  24445. [
  24446. {
  24447. name: "Less Kaiju",
  24448. height: math.unit(200, "feet")
  24449. },
  24450. {
  24451. name: "Kaiju",
  24452. height: math.unit(400, "feet"),
  24453. default: true
  24454. },
  24455. {
  24456. name: "Kaiju-er",
  24457. height: math.unit(600, "feet")
  24458. },
  24459. ]
  24460. ))
  24461. characterMakers.push(() => makeCharacter(
  24462. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24463. {
  24464. front: {
  24465. height: math.unit(6 + 5 / 12, "feet"),
  24466. weight: math.unit(180, "lb"),
  24467. name: "Front",
  24468. image: {
  24469. source: "./media/characters/lexir/front.svg",
  24470. extra: 180 / 172,
  24471. bottom: 12 / 192
  24472. }
  24473. },
  24474. back: {
  24475. height: math.unit(6 + 5 / 12, "feet"),
  24476. weight: math.unit(180, "lb"),
  24477. name: "Back",
  24478. image: {
  24479. source: "./media/characters/lexir/back.svg",
  24480. extra: 1273/1201,
  24481. bottom: 39/1312
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Very Smal",
  24488. height: math.unit(1, "nm")
  24489. },
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(6 + 5 / 12, "feet"),
  24493. default: true
  24494. },
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(1, "mile")
  24498. },
  24499. {
  24500. name: "Megamacro",
  24501. height: math.unit(50, "miles")
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24507. {
  24508. front: {
  24509. height: math.unit(1.5, "meters"),
  24510. weight: math.unit(100, "lb"),
  24511. name: "Front",
  24512. image: {
  24513. source: "./media/characters/maksio/front.svg",
  24514. extra: 1549 / 1531,
  24515. bottom: 123.7 / 1674.5429
  24516. }
  24517. },
  24518. back: {
  24519. height: math.unit(1.5, "meters"),
  24520. weight: math.unit(100, "lb"),
  24521. name: "Back",
  24522. image: {
  24523. source: "./media/characters/maksio/back.svg",
  24524. extra: 1541 / 1509,
  24525. bottom: 97 / 1639
  24526. }
  24527. },
  24528. hand: {
  24529. height: math.unit(0.621, "feet"),
  24530. name: "Hand",
  24531. image: {
  24532. source: "./media/characters/maksio/hand.svg"
  24533. }
  24534. },
  24535. foot: {
  24536. height: math.unit(1.611, "feet"),
  24537. name: "Foot",
  24538. image: {
  24539. source: "./media/characters/maksio/foot.svg"
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Shrunken",
  24546. height: math.unit(10, "cm")
  24547. },
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(150, "cm"),
  24551. default: true
  24552. },
  24553. ]
  24554. ))
  24555. characterMakers.push(() => makeCharacter(
  24556. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24557. {
  24558. front: {
  24559. height: math.unit(100, "feet"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/erza-bear/front.svg",
  24563. extra: 2449 / 2390,
  24564. bottom: 46 / 2494
  24565. }
  24566. },
  24567. back: {
  24568. height: math.unit(100, "feet"),
  24569. name: "Back",
  24570. image: {
  24571. source: "./media/characters/erza-bear/back.svg",
  24572. extra: 2489 / 2430,
  24573. bottom: 85.4 / 2480
  24574. }
  24575. },
  24576. tail: {
  24577. height: math.unit(42, "feet"),
  24578. name: "Tail",
  24579. image: {
  24580. source: "./media/characters/erza-bear/tail.svg"
  24581. }
  24582. },
  24583. tongue: {
  24584. height: math.unit(8, "feet"),
  24585. name: "Tongue",
  24586. image: {
  24587. source: "./media/characters/erza-bear/tongue.svg"
  24588. }
  24589. },
  24590. dick: {
  24591. height: math.unit(10.5, "feet"),
  24592. name: "Dick",
  24593. image: {
  24594. source: "./media/characters/erza-bear/dick.svg"
  24595. }
  24596. },
  24597. dickVertical: {
  24598. height: math.unit(16.9, "feet"),
  24599. name: "Dick (Vertical)",
  24600. image: {
  24601. source: "./media/characters/erza-bear/dick-vertical.svg"
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Macro",
  24608. height: math.unit(100, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(172, "cm"),
  24618. weight: math.unit(73, "kg"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/violet-flor/front.svg",
  24622. extra: 1530 / 1442,
  24623. bottom: 61.9 / 1588.8
  24624. }
  24625. },
  24626. back: {
  24627. height: math.unit(180, "cm"),
  24628. weight: math.unit(73, "kg"),
  24629. name: "Back",
  24630. image: {
  24631. source: "./media/characters/violet-flor/back.svg",
  24632. extra: 1692 / 1630,
  24633. bottom: 20 / 1712
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(172, "cm"),
  24641. default: true
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24647. {
  24648. front: {
  24649. height: math.unit(6, "feet"),
  24650. weight: math.unit(220, "lb"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/lynn-rhea/front.svg",
  24654. extra: 310 / 273
  24655. }
  24656. },
  24657. back: {
  24658. height: math.unit(6, "feet"),
  24659. weight: math.unit(220, "lb"),
  24660. name: "Back",
  24661. image: {
  24662. source: "./media/characters/lynn-rhea/back.svg",
  24663. extra: 310 / 273
  24664. }
  24665. },
  24666. dicks: {
  24667. height: math.unit(0.9, "feet"),
  24668. name: "Dicks",
  24669. image: {
  24670. source: "./media/characters/lynn-rhea/dicks.svg"
  24671. }
  24672. },
  24673. slit: {
  24674. height: math.unit(0.4, "feet"),
  24675. name: "Slit",
  24676. image: {
  24677. source: "./media/characters/lynn-rhea/slit.svg"
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Micro",
  24684. height: math.unit(1, "inch")
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(60, "feet"),
  24689. default: true
  24690. },
  24691. {
  24692. name: "Megamacro",
  24693. height: math.unit(2, "miles")
  24694. },
  24695. {
  24696. name: "Gigamacro",
  24697. height: math.unit(3, "earths")
  24698. },
  24699. {
  24700. name: "Galactic",
  24701. height: math.unit(0.8, "galaxies")
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24707. {
  24708. front: {
  24709. height: math.unit(1600, "feet"),
  24710. weight: math.unit(85758785169, "kg"),
  24711. name: "Front",
  24712. image: {
  24713. source: "./media/characters/valathos/front.svg",
  24714. extra: 1451 / 1339
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Macro",
  24721. height: math.unit(1600, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(7 + 5 / 12, "feet"),
  24731. weight: math.unit(300, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/azula/front.svg",
  24735. extra: 3208 / 2880,
  24736. bottom: 80.2 / 3277
  24737. }
  24738. },
  24739. back: {
  24740. height: math.unit(7 + 5 / 12, "feet"),
  24741. weight: math.unit(300, "lb"),
  24742. name: "Back",
  24743. image: {
  24744. source: "./media/characters/azula/back.svg",
  24745. extra: 3169 / 2822,
  24746. bottom: 150.6 / 3321
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(7 + 5 / 12, "feet"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Big",
  24758. height: math.unit(20, "feet")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(5 + 1 / 12, "feet"),
  24767. weight: math.unit(110, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/rupert/front.svg",
  24771. extra: 1549 / 1495,
  24772. bottom: 54.2 / 1604.4
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Normal",
  24779. height: math.unit(5 + 1 / 12, "feet"),
  24780. default: true
  24781. },
  24782. ]
  24783. ))
  24784. characterMakers.push(() => makeCharacter(
  24785. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24786. {
  24787. front: {
  24788. height: math.unit(8 + 4 / 12, "feet"),
  24789. weight: math.unit(350, "lb"),
  24790. name: "Front",
  24791. image: {
  24792. source: "./media/characters/sheera-castellar/front.svg",
  24793. extra: 1957 / 1894,
  24794. bottom: 26.97 / 1975.017
  24795. }
  24796. },
  24797. side: {
  24798. height: math.unit(8 + 4 / 12, "feet"),
  24799. weight: math.unit(350, "lb"),
  24800. name: "Side",
  24801. image: {
  24802. source: "./media/characters/sheera-castellar/side.svg",
  24803. extra: 1957 / 1894
  24804. }
  24805. },
  24806. back: {
  24807. height: math.unit(8 + 4 / 12, "feet"),
  24808. weight: math.unit(350, "lb"),
  24809. name: "Back",
  24810. image: {
  24811. source: "./media/characters/sheera-castellar/back.svg",
  24812. extra: 1957 / 1894
  24813. }
  24814. },
  24815. angled: {
  24816. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24817. weight: math.unit(350, "lb"),
  24818. name: "Angled",
  24819. image: {
  24820. source: "./media/characters/sheera-castellar/angled.svg",
  24821. extra: 1807 / 1707,
  24822. bottom: 68 / 1875
  24823. }
  24824. },
  24825. genitals: {
  24826. height: math.unit(2.2, "feet"),
  24827. name: "Genitals",
  24828. image: {
  24829. source: "./media/characters/sheera-castellar/genitals.svg"
  24830. }
  24831. },
  24832. taur: {
  24833. height: math.unit(10 + 6/12, "feet"),
  24834. name: "Taur",
  24835. image: {
  24836. source: "./media/characters/sheera-castellar/taur.svg",
  24837. extra: 2017/1909,
  24838. bottom: 185/2202
  24839. }
  24840. },
  24841. },
  24842. [
  24843. {
  24844. name: "Normal",
  24845. height: math.unit(8 + 4 / 12, "feet")
  24846. },
  24847. {
  24848. name: "Macro",
  24849. height: math.unit(150, "feet"),
  24850. default: true
  24851. },
  24852. {
  24853. name: "Macro+",
  24854. height: math.unit(800, "feet")
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(6, "feet"),
  24863. weight: math.unit(150, "lb"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/jaipur/front.svg",
  24867. extra: 3860 / 3731,
  24868. bottom: 287 / 4140
  24869. }
  24870. },
  24871. back: {
  24872. height: math.unit(6, "feet"),
  24873. weight: math.unit(150, "lb"),
  24874. name: "Back",
  24875. image: {
  24876. source: "./media/characters/jaipur/back.svg",
  24877. extra: 1637/1561,
  24878. bottom: 154/1791
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(1.85, "meters"),
  24886. default: true
  24887. },
  24888. {
  24889. name: "Macro",
  24890. height: math.unit(150, "meters")
  24891. },
  24892. {
  24893. name: "Macro+",
  24894. height: math.unit(0.5, "miles")
  24895. },
  24896. {
  24897. name: "Macro++",
  24898. height: math.unit(2.5, "miles")
  24899. },
  24900. {
  24901. name: "Macro+++",
  24902. height: math.unit(12, "miles")
  24903. },
  24904. {
  24905. name: "Macro++++",
  24906. height: math.unit(120, "miles")
  24907. },
  24908. {
  24909. name: "Macro+++++",
  24910. height: math.unit(1200, "miles")
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24916. {
  24917. front: {
  24918. height: math.unit(6, "feet"),
  24919. weight: math.unit(150, "lb"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/sheila-wolf/front.svg",
  24923. extra: 1931 / 1808,
  24924. bottom: 29.5 / 1960
  24925. }
  24926. },
  24927. dick: {
  24928. height: math.unit(1.464, "feet"),
  24929. name: "Dick",
  24930. image: {
  24931. source: "./media/characters/sheila-wolf/dick.svg"
  24932. }
  24933. },
  24934. muzzle: {
  24935. height: math.unit(0.513, "feet"),
  24936. name: "Muzzle",
  24937. image: {
  24938. source: "./media/characters/sheila-wolf/muzzle.svg"
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Macro",
  24945. height: math.unit(70, "feet"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(32, "meters"),
  24955. weight: math.unit(300000, "kg"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/almor/front.svg",
  24959. extra: 1408 / 1322,
  24960. bottom: 94.6 / 1506.5
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Macro",
  24967. height: math.unit(32, "meters"),
  24968. default: true
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(7, "feet"),
  24977. weight: math.unit(200, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/silver/front.svg",
  24981. extra: 472.1 / 450.5,
  24982. bottom: 26.5 / 499.424
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Normal",
  24989. height: math.unit(7, "feet"),
  24990. default: true
  24991. },
  24992. {
  24993. name: "Macro",
  24994. height: math.unit(800, "feet")
  24995. },
  24996. {
  24997. name: "Megamacro",
  24998. height: math.unit(250, "miles")
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25004. {
  25005. front: {
  25006. height: math.unit(6, "feet"),
  25007. weight: math.unit(150, "lb"),
  25008. name: "Front",
  25009. image: {
  25010. source: "./media/characters/pliskin/front.svg",
  25011. extra: 1469 / 1359,
  25012. bottom: 70 / 1540
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Micro",
  25019. height: math.unit(3, "inches")
  25020. },
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(5 + 11 / 12, "feet"),
  25024. default: true
  25025. },
  25026. {
  25027. name: "Macro",
  25028. height: math.unit(120, "feet")
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(6, "feet"),
  25037. weight: math.unit(150, "lb"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/sammy/front.svg",
  25041. extra: 1193 / 1089,
  25042. bottom: 30.5 / 1226
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Macro",
  25049. height: math.unit(1700, "feet"),
  25050. default: true
  25051. },
  25052. {
  25053. name: "Examacro",
  25054. height: math.unit(2.5e9, "lightyears")
  25055. },
  25056. ]
  25057. ))
  25058. characterMakers.push(() => makeCharacter(
  25059. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25060. {
  25061. front: {
  25062. height: math.unit(21, "meters"),
  25063. weight: math.unit(12, "tonnes"),
  25064. name: "Front",
  25065. image: {
  25066. source: "./media/characters/kuru/front.svg",
  25067. extra: 4301 / 3785,
  25068. bottom: 371.3 / 4691
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Macro",
  25075. height: math.unit(21, "meters"),
  25076. default: true
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25082. {
  25083. front: {
  25084. height: math.unit(23, "meters"),
  25085. weight: math.unit(12.2, "tonnes"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/rakka/front.svg",
  25089. extra: 4670 / 4169,
  25090. bottom: 301 / 4968.7
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Macro",
  25097. height: math.unit(23, "meters"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(6, "feet"),
  25107. weight: math.unit(150, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/rhys-feline/front.svg",
  25111. extra: 2488 / 2308,
  25112. bottom: 35.67 / 2519.19
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Really Small",
  25119. height: math.unit(1, "nm")
  25120. },
  25121. {
  25122. name: "Micro",
  25123. height: math.unit(4, "inches")
  25124. },
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(4 + 10 / 12, "feet"),
  25128. default: true
  25129. },
  25130. {
  25131. name: "Macro",
  25132. height: math.unit(100, "feet")
  25133. },
  25134. {
  25135. name: "Megamacto",
  25136. height: math.unit(50, "miles")
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25142. {
  25143. side: {
  25144. height: math.unit(30, "feet"),
  25145. weight: math.unit(35000, "kg"),
  25146. name: "Side",
  25147. image: {
  25148. source: "./media/characters/alydar/side.svg",
  25149. extra: 234 / 222,
  25150. bottom: 6.5 / 241
  25151. }
  25152. },
  25153. front: {
  25154. height: math.unit(30, "feet"),
  25155. weight: math.unit(35000, "kg"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/alydar/front.svg",
  25159. extra: 223.37 / 210.2,
  25160. bottom: 22.3 / 246.76
  25161. }
  25162. },
  25163. top: {
  25164. height: math.unit(64.54, "feet"),
  25165. weight: math.unit(35000, "kg"),
  25166. name: "Top",
  25167. image: {
  25168. source: "./media/characters/alydar/top.svg"
  25169. }
  25170. },
  25171. anthro: {
  25172. height: math.unit(30, "feet"),
  25173. weight: math.unit(9000, "kg"),
  25174. name: "Anthro",
  25175. image: {
  25176. source: "./media/characters/alydar/anthro.svg",
  25177. extra: 432 / 421,
  25178. bottom: 7.18 / 440
  25179. }
  25180. },
  25181. maw: {
  25182. height: math.unit(11.693, "feet"),
  25183. name: "Maw",
  25184. image: {
  25185. source: "./media/characters/alydar/maw.svg"
  25186. }
  25187. },
  25188. head: {
  25189. height: math.unit(11.693, "feet"),
  25190. name: "Head",
  25191. image: {
  25192. source: "./media/characters/alydar/head.svg"
  25193. }
  25194. },
  25195. headAlt: {
  25196. height: math.unit(12.861, "feet"),
  25197. name: "Head (Alt)",
  25198. image: {
  25199. source: "./media/characters/alydar/head-alt.svg"
  25200. }
  25201. },
  25202. wing: {
  25203. height: math.unit(20.712, "feet"),
  25204. name: "Wing",
  25205. image: {
  25206. source: "./media/characters/alydar/wing.svg"
  25207. }
  25208. },
  25209. wingFeather: {
  25210. height: math.unit(9.662, "feet"),
  25211. name: "Wing Feather",
  25212. image: {
  25213. source: "./media/characters/alydar/wing-feather.svg"
  25214. }
  25215. },
  25216. countourFeather: {
  25217. height: math.unit(4.154, "feet"),
  25218. name: "Contour Feather",
  25219. image: {
  25220. source: "./media/characters/alydar/contour-feather.svg"
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Diplomatic",
  25227. height: math.unit(13, "feet"),
  25228. default: true
  25229. },
  25230. {
  25231. name: "Small",
  25232. height: math.unit(30, "feet")
  25233. },
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(95, "feet"),
  25237. default: true
  25238. },
  25239. {
  25240. name: "Large",
  25241. height: math.unit(285, "feet")
  25242. },
  25243. {
  25244. name: "Incomprehensible",
  25245. height: math.unit(450, "megameters")
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25251. {
  25252. side: {
  25253. height: math.unit(11, "feet"),
  25254. weight: math.unit(1750, "kg"),
  25255. name: "Side",
  25256. image: {
  25257. source: "./media/characters/selicia/side.svg",
  25258. extra: 440 / 396,
  25259. bottom: 24.8 / 465.979
  25260. }
  25261. },
  25262. maw: {
  25263. height: math.unit(4.665, "feet"),
  25264. name: "Maw",
  25265. image: {
  25266. source: "./media/characters/selicia/maw.svg"
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(11, "feet"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25280. {
  25281. side: {
  25282. height: math.unit(2 + 6 / 12, "feet"),
  25283. weight: math.unit(30, "lb"),
  25284. name: "Side",
  25285. image: {
  25286. source: "./media/characters/layla/side.svg",
  25287. extra: 244 / 188,
  25288. bottom: 18.2 / 262.1
  25289. }
  25290. },
  25291. back: {
  25292. height: math.unit(2 + 6 / 12, "feet"),
  25293. weight: math.unit(30, "lb"),
  25294. name: "Back",
  25295. image: {
  25296. source: "./media/characters/layla/back.svg",
  25297. extra: 308 / 241.5,
  25298. bottom: 8.9 / 316.8
  25299. }
  25300. },
  25301. cumming: {
  25302. height: math.unit(2 + 6 / 12, "feet"),
  25303. weight: math.unit(30, "lb"),
  25304. name: "Cumming",
  25305. image: {
  25306. source: "./media/characters/layla/cumming.svg",
  25307. extra: 342 / 279,
  25308. bottom: 595 / 938
  25309. }
  25310. },
  25311. dickFlaccid: {
  25312. height: math.unit(2.595, "feet"),
  25313. name: "Flaccid Genitals",
  25314. image: {
  25315. source: "./media/characters/layla/dick-flaccid.svg"
  25316. }
  25317. },
  25318. dickErect: {
  25319. height: math.unit(2.359, "feet"),
  25320. name: "Erect Genitals",
  25321. image: {
  25322. source: "./media/characters/layla/dick-erect.svg"
  25323. }
  25324. },
  25325. dragon: {
  25326. height: math.unit(40, "feet"),
  25327. name: "Dragon",
  25328. image: {
  25329. source: "./media/characters/layla/dragon.svg",
  25330. extra: 610/535,
  25331. bottom: 367/977
  25332. }
  25333. },
  25334. taur: {
  25335. height: math.unit(30, "feet"),
  25336. name: "Taur",
  25337. image: {
  25338. source: "./media/characters/layla/taur.svg",
  25339. extra: 1268/1199,
  25340. bottom: 112/1380
  25341. }
  25342. },
  25343. },
  25344. [
  25345. {
  25346. name: "Micro",
  25347. height: math.unit(1, "inch")
  25348. },
  25349. {
  25350. name: "Small",
  25351. height: math.unit(1, "foot")
  25352. },
  25353. {
  25354. name: "Normal",
  25355. height: math.unit(2 + 6 / 12, "feet"),
  25356. default: true
  25357. },
  25358. {
  25359. name: "Macro",
  25360. height: math.unit(200, "feet")
  25361. },
  25362. {
  25363. name: "Megamacro",
  25364. height: math.unit(1000, "miles")
  25365. },
  25366. {
  25367. name: "Planetary",
  25368. height: math.unit(8000, "miles")
  25369. },
  25370. {
  25371. name: "True Layla",
  25372. height: math.unit(200000 * 7, "multiverses")
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25378. {
  25379. back: {
  25380. height: math.unit(10.5, "feet"),
  25381. weight: math.unit(800, "lb"),
  25382. name: "Back",
  25383. image: {
  25384. source: "./media/characters/knox/back.svg",
  25385. extra: 1486 / 1089,
  25386. bottom: 107 / 1601.4
  25387. }
  25388. },
  25389. side: {
  25390. height: math.unit(10.5, "feet"),
  25391. weight: math.unit(800, "lb"),
  25392. name: "Side",
  25393. image: {
  25394. source: "./media/characters/knox/side.svg",
  25395. extra: 244 / 218,
  25396. bottom: 14 / 260
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Compact",
  25403. height: math.unit(10.5, "feet"),
  25404. default: true
  25405. },
  25406. {
  25407. name: "Dynamax",
  25408. height: math.unit(210, "feet")
  25409. },
  25410. {
  25411. name: "Full Macro",
  25412. height: math.unit(850, "feet")
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(28, "feet"),
  25421. weight: math.unit(10500, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/kayda/front.svg",
  25425. extra: 1536 / 1428,
  25426. bottom: 68.7 / 1603
  25427. }
  25428. },
  25429. back: {
  25430. height: math.unit(28, "feet"),
  25431. weight: math.unit(10500, "lb"),
  25432. name: "Back",
  25433. image: {
  25434. source: "./media/characters/kayda/back.svg",
  25435. extra: 1557 / 1464,
  25436. bottom: 39.5 / 1597.49
  25437. }
  25438. },
  25439. dick: {
  25440. height: math.unit(3.858, "feet"),
  25441. name: "Dick",
  25442. image: {
  25443. source: "./media/characters/kayda/dick.svg"
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Macro",
  25450. height: math.unit(28, "feet"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25457. {
  25458. front: {
  25459. height: math.unit(10 + 11 / 12, "feet"),
  25460. weight: math.unit(1400, "lb"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/brian/front.svg",
  25464. extra: 737 / 692,
  25465. bottom: 55.4 / 785
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Normal",
  25472. height: math.unit(10 + 11 / 12, "feet"),
  25473. default: true
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25479. {
  25480. front: {
  25481. height: math.unit(5 + 8 / 12, "feet"),
  25482. weight: math.unit(140, "lb"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/khemri/front.svg",
  25486. extra: 4780 / 4059,
  25487. bottom: 80.1 / 4859.25
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Micro",
  25494. height: math.unit(6, "inches")
  25495. },
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(5 + 8 / 12, "feet"),
  25499. default: true
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25505. {
  25506. front: {
  25507. height: math.unit(13, "feet"),
  25508. weight: math.unit(1700, "lb"),
  25509. name: "Front",
  25510. image: {
  25511. source: "./media/characters/felix-braveheart/front.svg",
  25512. extra: 1222 / 1157,
  25513. bottom: 53.2 / 1280
  25514. }
  25515. },
  25516. back: {
  25517. height: math.unit(13, "feet"),
  25518. weight: math.unit(1700, "lb"),
  25519. name: "Back",
  25520. image: {
  25521. source: "./media/characters/felix-braveheart/back.svg",
  25522. extra: 1277 / 1203,
  25523. bottom: 50.2 / 1327
  25524. }
  25525. },
  25526. feral: {
  25527. height: math.unit(6, "feet"),
  25528. weight: math.unit(400, "lb"),
  25529. name: "Feral",
  25530. image: {
  25531. source: "./media/characters/felix-braveheart/feral.svg",
  25532. extra: 682 / 625,
  25533. bottom: 6.9 / 688
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(13, "feet"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25547. {
  25548. side: {
  25549. height: math.unit(5 + 11 / 12, "feet"),
  25550. weight: math.unit(1400, "lb"),
  25551. name: "Side",
  25552. image: {
  25553. source: "./media/characters/shadow-blade/side.svg",
  25554. extra: 1726 / 1267,
  25555. bottom: 58.4 / 1785
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(5 + 11 / 12, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(1 + 6 / 12, "feet"),
  25572. weight: math.unit(25, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/karla-halldor/front.svg",
  25576. extra: 1459 / 1383,
  25577. bottom: 12 / 1472
  25578. }
  25579. },
  25580. },
  25581. [
  25582. {
  25583. name: "Normal",
  25584. height: math.unit(1 + 6 / 12, "feet"),
  25585. default: true
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(6 + 2 / 12, "feet"),
  25594. weight: math.unit(160, "lb"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/ariam/front.svg",
  25598. extra: 1073/976,
  25599. bottom: 52/1125
  25600. }
  25601. },
  25602. back: {
  25603. height: math.unit(6 + 2/12, "feet"),
  25604. weight: math.unit(160, "lb"),
  25605. name: "Back",
  25606. image: {
  25607. source: "./media/characters/ariam/back.svg",
  25608. extra: 1103/1023,
  25609. bottom: 9/1112
  25610. }
  25611. },
  25612. dressed: {
  25613. height: math.unit(6 + 2/12, "feet"),
  25614. weight: math.unit(160, "lb"),
  25615. name: "Dressed",
  25616. image: {
  25617. source: "./media/characters/ariam/dressed.svg",
  25618. extra: 1099/1009,
  25619. bottom: 25/1124
  25620. }
  25621. },
  25622. squatting: {
  25623. height: math.unit(4.1, "feet"),
  25624. weight: math.unit(160, "lb"),
  25625. name: "Squatting",
  25626. image: {
  25627. source: "./media/characters/ariam/squatting.svg",
  25628. extra: 2617 / 2112,
  25629. bottom: 61.2 / 2681,
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(6 + 2 / 12, "feet"),
  25637. default: true
  25638. },
  25639. {
  25640. name: "Normal+",
  25641. height: math.unit(4, "meters")
  25642. },
  25643. {
  25644. name: "Macro",
  25645. height: math.unit(50, "meters")
  25646. },
  25647. {
  25648. name: "Macro+",
  25649. height: math.unit(100, "meters")
  25650. },
  25651. {
  25652. name: "Megamacro",
  25653. height: math.unit(20, "km")
  25654. },
  25655. {
  25656. name: "Caretaker",
  25657. height: math.unit(444, "megameters")
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25663. {
  25664. front: {
  25665. height: math.unit(1.67, "meters"),
  25666. weight: math.unit(140, "lb"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25670. extra: 438 / 410,
  25671. bottom: 0.75 / 439
  25672. }
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Shrunken",
  25678. height: math.unit(7.6, "cm")
  25679. },
  25680. {
  25681. name: "Human Scale",
  25682. height: math.unit(1.67, "meters")
  25683. },
  25684. {
  25685. name: "Wolxi Scale",
  25686. height: math.unit(36.7, "meters"),
  25687. default: true
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25693. {
  25694. front: {
  25695. height: math.unit(1.73, "meters"),
  25696. weight: math.unit(240, "lb"),
  25697. name: "Front",
  25698. image: {
  25699. source: "./media/characters/izue-two-mothers/front.svg",
  25700. extra: 469 / 437,
  25701. bottom: 1.24 / 470.6
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Shrunken",
  25708. height: math.unit(7.86, "cm")
  25709. },
  25710. {
  25711. name: "Human Scale",
  25712. height: math.unit(1.73, "meters")
  25713. },
  25714. {
  25715. name: "Wolxi Scale",
  25716. height: math.unit(38, "meters"),
  25717. default: true
  25718. },
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25723. {
  25724. front: {
  25725. height: math.unit(1.55, "meters"),
  25726. weight: math.unit(120, "lb"),
  25727. name: "Front",
  25728. image: {
  25729. source: "./media/characters/teeku-love-shack/front.svg",
  25730. extra: 387 / 362,
  25731. bottom: 1.51 / 388
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Shrunken",
  25738. height: math.unit(7, "cm")
  25739. },
  25740. {
  25741. name: "Human Scale",
  25742. height: math.unit(1.55, "meters")
  25743. },
  25744. {
  25745. name: "Wolxi Scale",
  25746. height: math.unit(34.1, "meters"),
  25747. default: true
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25753. {
  25754. front: {
  25755. height: math.unit(1.83, "meters"),
  25756. weight: math.unit(135, "lb"),
  25757. name: "Front",
  25758. image: {
  25759. source: "./media/characters/dejma-the-red/front.svg",
  25760. extra: 480 / 458,
  25761. bottom: 1.8 / 482
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Shrunken",
  25768. height: math.unit(8.3, "cm")
  25769. },
  25770. {
  25771. name: "Human Scale",
  25772. height: math.unit(1.83, "meters")
  25773. },
  25774. {
  25775. name: "Wolxi Scale",
  25776. height: math.unit(40, "meters"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(1.78, "meters"),
  25786. weight: math.unit(65, "kg"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/aki/front.svg",
  25790. extra: 452 / 415
  25791. }
  25792. },
  25793. frontNsfw: {
  25794. height: math.unit(1.78, "meters"),
  25795. weight: math.unit(65, "kg"),
  25796. name: "Front (NSFW)",
  25797. image: {
  25798. source: "./media/characters/aki/front-nsfw.svg",
  25799. extra: 452 / 415
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(1.78, "meters"),
  25804. weight: math.unit(65, "kg"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/aki/back.svg",
  25808. extra: 452 / 415
  25809. }
  25810. },
  25811. rump: {
  25812. height: math.unit(2.05, "feet"),
  25813. name: "Rump",
  25814. image: {
  25815. source: "./media/characters/aki/rump.svg"
  25816. }
  25817. },
  25818. dick: {
  25819. height: math.unit(0.95, "feet"),
  25820. name: "Dick",
  25821. image: {
  25822. source: "./media/characters/aki/dick.svg"
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Micro",
  25829. height: math.unit(15, "cm")
  25830. },
  25831. {
  25832. name: "Normal",
  25833. height: math.unit(178, "cm"),
  25834. default: true
  25835. },
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(214, "m")
  25839. },
  25840. {
  25841. name: "Macro+",
  25842. height: math.unit(534, "m")
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(5 + 5 / 12, "feet"),
  25851. weight: math.unit(120, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/ari/front.svg",
  25855. extra: 1550/1471,
  25856. bottom: 39/1589
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(5 + 5 / 12, "feet")
  25864. },
  25865. {
  25866. name: "Macro",
  25867. height: math.unit(100, "feet"),
  25868. default: true
  25869. },
  25870. {
  25871. name: "Megamacro",
  25872. height: math.unit(100, "miles")
  25873. },
  25874. {
  25875. name: "Gigamacro",
  25876. height: math.unit(80000, "miles")
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25882. {
  25883. side: {
  25884. height: math.unit(9, "feet"),
  25885. weight: math.unit(400, "kg"),
  25886. name: "Side",
  25887. image: {
  25888. source: "./media/characters/bolt/side.svg",
  25889. extra: 1126 / 896,
  25890. bottom: 60 / 1187.3,
  25891. }
  25892. },
  25893. },
  25894. [
  25895. {
  25896. name: "Micro",
  25897. height: math.unit(5, "inches")
  25898. },
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(9, "feet"),
  25902. default: true
  25903. },
  25904. {
  25905. name: "Macro",
  25906. height: math.unit(700, "feet")
  25907. },
  25908. {
  25909. name: "Max Size",
  25910. height: math.unit(1.52e22, "yottameters")
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25916. {
  25917. front: {
  25918. height: math.unit(4.3, "meters"),
  25919. weight: math.unit(3, "tons"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/draekon-sylviar/front.svg",
  25923. extra: 2072/1512,
  25924. bottom: 74/2146
  25925. }
  25926. },
  25927. back: {
  25928. height: math.unit(4.3, "meters"),
  25929. weight: math.unit(3, "tons"),
  25930. name: "Back",
  25931. image: {
  25932. source: "./media/characters/draekon-sylviar/back.svg",
  25933. extra: 1639/1483,
  25934. bottom: 41/1680
  25935. }
  25936. },
  25937. feral: {
  25938. height: math.unit(1.15, "meters"),
  25939. weight: math.unit(3, "tons"),
  25940. name: "Feral",
  25941. image: {
  25942. source: "./media/characters/draekon-sylviar/feral.svg",
  25943. extra: 1033/395,
  25944. bottom: 130/1163
  25945. }
  25946. },
  25947. maw: {
  25948. height: math.unit(1.3, "meters"),
  25949. name: "Maw",
  25950. image: {
  25951. source: "./media/characters/draekon-sylviar/maw.svg"
  25952. }
  25953. },
  25954. mawSeparated: {
  25955. height: math.unit(1.53, "meters"),
  25956. name: "Separated Maw",
  25957. image: {
  25958. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25959. }
  25960. },
  25961. tail: {
  25962. height: math.unit(1.15, "meters"),
  25963. name: "Tail",
  25964. image: {
  25965. source: "./media/characters/draekon-sylviar/tail.svg"
  25966. }
  25967. },
  25968. tailDick: {
  25969. height: math.unit(1.15, "meters"),
  25970. name: "Tail (Dick)",
  25971. image: {
  25972. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25973. }
  25974. },
  25975. tailDickSeparated: {
  25976. height: math.unit(1.19, "meters"),
  25977. name: "Tail (Separated Dick)",
  25978. image: {
  25979. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25980. }
  25981. },
  25982. slit: {
  25983. height: math.unit(1, "meters"),
  25984. name: "Slit",
  25985. image: {
  25986. source: "./media/characters/draekon-sylviar/slit.svg"
  25987. }
  25988. },
  25989. dick: {
  25990. height: math.unit(1.15, "meters"),
  25991. name: "Dick",
  25992. image: {
  25993. source: "./media/characters/draekon-sylviar/dick.svg"
  25994. }
  25995. },
  25996. dickSeparated: {
  25997. height: math.unit(1.1, "meters"),
  25998. name: "Separated Dick",
  25999. image: {
  26000. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26001. }
  26002. },
  26003. sheath: {
  26004. height: math.unit(1.15, "meters"),
  26005. name: "Sheath",
  26006. image: {
  26007. source: "./media/characters/draekon-sylviar/sheath.svg"
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Small",
  26014. height: math.unit(4.53 / 2, "meters"),
  26015. default: true
  26016. },
  26017. {
  26018. name: "Normal",
  26019. height: math.unit(4.53, "meters"),
  26020. default: true
  26021. },
  26022. {
  26023. name: "Large",
  26024. height: math.unit(4.53 * 2, "meters"),
  26025. },
  26026. ]
  26027. ))
  26028. characterMakers.push(() => makeCharacter(
  26029. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26030. {
  26031. front: {
  26032. height: math.unit(6 + 2 / 12, "feet"),
  26033. weight: math.unit(180, "lb"),
  26034. name: "Front",
  26035. image: {
  26036. source: "./media/characters/brawler/front.svg",
  26037. extra: 3301 / 3027,
  26038. bottom: 138 / 3439
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(6 + 2 / 12, "feet"),
  26046. default: true
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(11, "feet"),
  26055. weight: math.unit(1000, "lb"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/alex/front.svg",
  26059. bottom: 44.5 / 620
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Micro",
  26066. height: math.unit(5, "inches")
  26067. },
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(11, "feet"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(9.5e9, "feet")
  26076. },
  26077. {
  26078. name: "Max Size",
  26079. height: math.unit(1.4e283, "yottameters")
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26085. {
  26086. female: {
  26087. height: math.unit(29.9, "m"),
  26088. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26089. name: "Female",
  26090. image: {
  26091. source: "./media/characters/zenari/female.svg",
  26092. extra: 3281.6 / 3217,
  26093. bottom: 72.2 / 3353
  26094. }
  26095. },
  26096. male: {
  26097. height: math.unit(27.7, "m"),
  26098. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26099. name: "Male",
  26100. image: {
  26101. source: "./media/characters/zenari/male.svg",
  26102. extra: 3008 / 2991,
  26103. bottom: 54.6 / 3069
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Macro",
  26110. height: math.unit(29.7, "meters"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26117. {
  26118. female: {
  26119. height: math.unit(23.8, "m"),
  26120. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26121. name: "Female",
  26122. image: {
  26123. source: "./media/characters/mactarian/female.svg",
  26124. extra: 2662 / 2569,
  26125. bottom: 73 / 2736
  26126. }
  26127. },
  26128. male: {
  26129. height: math.unit(23.8, "m"),
  26130. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26131. name: "Male",
  26132. image: {
  26133. source: "./media/characters/mactarian/male.svg",
  26134. extra: 2673 / 2600,
  26135. bottom: 76 / 2750
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Macro",
  26142. height: math.unit(23.8, "meters"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26149. {
  26150. female: {
  26151. height: math.unit(19.3, "m"),
  26152. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26153. name: "Female",
  26154. image: {
  26155. source: "./media/characters/umok/female.svg",
  26156. extra: 2186 / 2078,
  26157. bottom: 87 / 2277
  26158. }
  26159. },
  26160. male: {
  26161. height: math.unit(19.5, "m"),
  26162. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26163. name: "Male",
  26164. image: {
  26165. source: "./media/characters/umok/male.svg",
  26166. extra: 2233 / 2140,
  26167. bottom: 24.4 / 2258
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(19.3, "meters"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26181. {
  26182. female: {
  26183. height: math.unit(26.15, "m"),
  26184. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26185. name: "Female",
  26186. image: {
  26187. source: "./media/characters/joraxian/female.svg",
  26188. extra: 2912 / 2824,
  26189. bottom: 36 / 2956
  26190. }
  26191. },
  26192. male: {
  26193. height: math.unit(25.4, "m"),
  26194. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26195. name: "Male",
  26196. image: {
  26197. source: "./media/characters/joraxian/male.svg",
  26198. extra: 2877 / 2721,
  26199. bottom: 82 / 2967
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Macro",
  26206. height: math.unit(26.15, "meters"),
  26207. default: true
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26213. {
  26214. female: {
  26215. height: math.unit(21.6, "m"),
  26216. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26217. name: "Female",
  26218. image: {
  26219. source: "./media/characters/sthara/female.svg",
  26220. extra: 2516 / 2347,
  26221. bottom: 21.5 / 2537
  26222. }
  26223. },
  26224. male: {
  26225. height: math.unit(24, "m"),
  26226. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26227. name: "Male",
  26228. image: {
  26229. source: "./media/characters/sthara/male.svg",
  26230. extra: 2732 / 2607,
  26231. bottom: 23 / 2732
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(21.6, "meters"),
  26239. default: true
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(6 + 4 / 12, "feet"),
  26248. weight: math.unit(175, "lb"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/luka-bryzant/front.svg",
  26252. extra: 311 / 289,
  26253. bottom: 4 / 315
  26254. }
  26255. },
  26256. back: {
  26257. height: math.unit(6 + 4 / 12, "feet"),
  26258. weight: math.unit(175, "lb"),
  26259. name: "Back",
  26260. image: {
  26261. source: "./media/characters/luka-bryzant/back.svg",
  26262. extra: 311 / 289,
  26263. bottom: 3.8 / 313.7
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Micro",
  26270. height: math.unit(10, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(6 + 4 / 12, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Large",
  26279. height: math.unit(12, "feet")
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(5 + 7 / 12, "feet"),
  26288. weight: math.unit(185, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/aman-aquila/front.svg",
  26292. extra: 1013 / 976,
  26293. bottom: 45.6 / 1057
  26294. }
  26295. },
  26296. side: {
  26297. height: math.unit(5 + 7 / 12, "feet"),
  26298. weight: math.unit(185, "lb"),
  26299. name: "Side",
  26300. image: {
  26301. source: "./media/characters/aman-aquila/side.svg",
  26302. extra: 1054 / 1011,
  26303. bottom: 15 / 1070
  26304. }
  26305. },
  26306. back: {
  26307. height: math.unit(5 + 7 / 12, "feet"),
  26308. weight: math.unit(185, "lb"),
  26309. name: "Back",
  26310. image: {
  26311. source: "./media/characters/aman-aquila/back.svg",
  26312. extra: 1026 / 970,
  26313. bottom: 12 / 1039
  26314. }
  26315. },
  26316. head: {
  26317. height: math.unit(1.211, "feet"),
  26318. name: "Head",
  26319. image: {
  26320. source: "./media/characters/aman-aquila/head.svg",
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Minimicro",
  26327. height: math.unit(0.057, "inches")
  26328. },
  26329. {
  26330. name: "Micro",
  26331. height: math.unit(7, "inches")
  26332. },
  26333. {
  26334. name: "Mini",
  26335. height: math.unit(3 + 7 / 12, "feet")
  26336. },
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(5 + 7 / 12, "feet"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(157 + 7 / 12, "feet")
  26345. },
  26346. {
  26347. name: "Megamacro",
  26348. height: math.unit(1557 + 7 / 12, "feet")
  26349. },
  26350. {
  26351. name: "Gigamacro",
  26352. height: math.unit(15557 + 7 / 12, "feet")
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(3 + 2 / 12, "inches"),
  26361. weight: math.unit(0.3, "ounces"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/hiphae/front.svg",
  26365. extra: 1931 / 1683,
  26366. bottom: 24 / 1955
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(3 + 1 / 2, "inches"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(5 + 10 / 12, "feet"),
  26383. weight: math.unit(165, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/nicky/front.svg",
  26387. extra: 3144 / 2886,
  26388. bottom: 45.6 / 3192
  26389. }
  26390. },
  26391. back: {
  26392. height: math.unit(5 + 10 / 12, "feet"),
  26393. weight: math.unit(165, "lb"),
  26394. name: "Back",
  26395. image: {
  26396. source: "./media/characters/nicky/back.svg",
  26397. extra: 3055 / 2804,
  26398. bottom: 28.4 / 3087
  26399. }
  26400. },
  26401. frontclothed: {
  26402. height: math.unit(5 + 10 / 12, "feet"),
  26403. weight: math.unit(165, "lb"),
  26404. name: "Front-clothed",
  26405. image: {
  26406. source: "./media/characters/nicky/front-clothed.svg",
  26407. extra: 3184.9 / 2926.9,
  26408. bottom: 86.5 / 3239.9
  26409. }
  26410. },
  26411. foot: {
  26412. height: math.unit(1.16, "feet"),
  26413. name: "Foot",
  26414. image: {
  26415. source: "./media/characters/nicky/foot.svg"
  26416. }
  26417. },
  26418. feet: {
  26419. height: math.unit(1.34, "feet"),
  26420. name: "Feet",
  26421. image: {
  26422. source: "./media/characters/nicky/feet.svg"
  26423. }
  26424. },
  26425. maw: {
  26426. height: math.unit(0.9, "feet"),
  26427. name: "Maw",
  26428. image: {
  26429. source: "./media/characters/nicky/maw.svg"
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(5 + 10 / 12, "feet"),
  26437. default: true
  26438. },
  26439. {
  26440. name: "Macro",
  26441. height: math.unit(60, "feet")
  26442. },
  26443. {
  26444. name: "Megamacro",
  26445. height: math.unit(1, "mile")
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26451. {
  26452. side: {
  26453. height: math.unit(10, "feet"),
  26454. weight: math.unit(600, "lb"),
  26455. name: "Side",
  26456. image: {
  26457. source: "./media/characters/blair/side.svg",
  26458. bottom: 16.6 / 475,
  26459. extra: 458 / 431
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Micro",
  26466. height: math.unit(8, "inches")
  26467. },
  26468. {
  26469. name: "Normal",
  26470. height: math.unit(10, "feet"),
  26471. default: true
  26472. },
  26473. {
  26474. name: "Macro",
  26475. height: math.unit(180, "feet")
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26481. {
  26482. front: {
  26483. height: math.unit(5 + 4 / 12, "feet"),
  26484. weight: math.unit(125, "lb"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/fisher/front.svg",
  26488. extra: 444 / 390,
  26489. bottom: 2 / 444.8
  26490. }
  26491. },
  26492. },
  26493. [
  26494. {
  26495. name: "Micro",
  26496. height: math.unit(4, "inches")
  26497. },
  26498. {
  26499. name: "Normal",
  26500. height: math.unit(5 + 4 / 12, "feet"),
  26501. default: true
  26502. },
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(100, "feet")
  26506. },
  26507. ]
  26508. ))
  26509. characterMakers.push(() => makeCharacter(
  26510. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26511. {
  26512. front: {
  26513. height: math.unit(6.71, "feet"),
  26514. weight: math.unit(200, "lb"),
  26515. preyCapacity: math.unit(1000000, "people"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/gliss/front.svg",
  26519. extra: 2347 / 2231,
  26520. bottom: 113 / 2462
  26521. }
  26522. },
  26523. hammerspaceSize: {
  26524. height: math.unit(6.71 * 717, "feet"),
  26525. weight: math.unit(200, "lb"),
  26526. preyCapacity: math.unit(1000000, "people"),
  26527. name: "Hammerspace Size",
  26528. image: {
  26529. source: "./media/characters/gliss/front.svg",
  26530. extra: 2347 / 2231,
  26531. bottom: 113 / 2462
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(6.71, "feet"),
  26539. default: true
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26545. {
  26546. side: {
  26547. height: math.unit(1.44, "m"),
  26548. weight: math.unit(80, "kg"),
  26549. name: "Side",
  26550. image: {
  26551. source: "./media/characters/dune-anderson/side.svg",
  26552. bottom: 49 / 1426
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Wolf-sized",
  26559. height: math.unit(1.44, "meters")
  26560. },
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(5.05, "meters"),
  26564. default: true
  26565. },
  26566. {
  26567. name: "Big",
  26568. height: math.unit(14.4, "meters")
  26569. },
  26570. {
  26571. name: "Huge",
  26572. height: math.unit(144, "meters")
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(7, "feet"),
  26581. weight: math.unit(425, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/hind/front.svg",
  26585. extra: 2091 / 1860,
  26586. bottom: 129 / 2220
  26587. }
  26588. },
  26589. back: {
  26590. height: math.unit(7, "feet"),
  26591. weight: math.unit(425, "lb"),
  26592. name: "Back",
  26593. image: {
  26594. source: "./media/characters/hind/back.svg",
  26595. extra: 2091 / 1860,
  26596. bottom: 24.6 / 2309
  26597. }
  26598. },
  26599. tail: {
  26600. height: math.unit(2.8, "feet"),
  26601. name: "Tail",
  26602. image: {
  26603. source: "./media/characters/hind/tail.svg"
  26604. }
  26605. },
  26606. head: {
  26607. height: math.unit(2.55, "feet"),
  26608. name: "Head",
  26609. image: {
  26610. source: "./media/characters/hind/head.svg"
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "XS",
  26617. height: math.unit(0.7, "feet")
  26618. },
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(7, "feet"),
  26622. default: true
  26623. },
  26624. {
  26625. name: "XL",
  26626. height: math.unit(70, "feet")
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(2.1, "meters"),
  26635. weight: math.unit(150, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/tharquench-sizestealer/front.svg",
  26639. extra: 1605/1470,
  26640. bottom: 36/1641
  26641. }
  26642. },
  26643. frontAlt: {
  26644. height: math.unit(2.1, "meters"),
  26645. weight: math.unit(150, "lb"),
  26646. name: "Front (Alt)",
  26647. image: {
  26648. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26649. extra: 2318 / 2063,
  26650. bottom: 93.4 / 2410
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Nano",
  26657. height: math.unit(1, "mm")
  26658. },
  26659. {
  26660. name: "Micro",
  26661. height: math.unit(1, "cm")
  26662. },
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(2.1, "meters"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(7 + 5 / 12, "feet"),
  26675. weight: math.unit(357, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/solex-draconov/front.svg",
  26679. extra: 1993 / 1865,
  26680. bottom: 117 / 2111
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Natural Height",
  26687. height: math.unit(7 + 5 / 12, "feet"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Macro",
  26692. height: math.unit(350, "feet")
  26693. },
  26694. {
  26695. name: "Macro+",
  26696. height: math.unit(1000, "feet")
  26697. },
  26698. {
  26699. name: "Megamacro",
  26700. height: math.unit(20, "km")
  26701. },
  26702. {
  26703. name: "Megamacro+",
  26704. height: math.unit(1000, "km")
  26705. },
  26706. {
  26707. name: "Gigamacro",
  26708. height: math.unit(2.5, "Gm")
  26709. },
  26710. {
  26711. name: "Teramacro",
  26712. height: math.unit(15, "Tm")
  26713. },
  26714. {
  26715. name: "Galactic",
  26716. height: math.unit(30, "Zm")
  26717. },
  26718. {
  26719. name: "Universal",
  26720. height: math.unit(21000, "Ym")
  26721. },
  26722. {
  26723. name: "Omniversal",
  26724. height: math.unit(9.861e50, "Ym")
  26725. },
  26726. {
  26727. name: "Existential",
  26728. height: math.unit(1e300, "meters")
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26734. {
  26735. side: {
  26736. height: math.unit(25, "feet"),
  26737. weight: math.unit(90000, "lb"),
  26738. name: "Side",
  26739. image: {
  26740. source: "./media/characters/mandarax/side.svg",
  26741. extra: 614 / 332,
  26742. bottom: 55 / 630
  26743. }
  26744. },
  26745. lounging: {
  26746. height: math.unit(15.4, "feet"),
  26747. weight: math.unit(90000, "lb"),
  26748. name: "Lounging",
  26749. image: {
  26750. source: "./media/characters/mandarax/lounging.svg",
  26751. extra: 817/609,
  26752. bottom: 685/1502
  26753. }
  26754. },
  26755. head: {
  26756. height: math.unit(11.4, "feet"),
  26757. name: "Head",
  26758. image: {
  26759. source: "./media/characters/mandarax/head.svg"
  26760. }
  26761. },
  26762. belly: {
  26763. height: math.unit(33, "feet"),
  26764. name: "Belly",
  26765. preyCapacity: math.unit(500, "people"),
  26766. image: {
  26767. source: "./media/characters/mandarax/belly.svg"
  26768. }
  26769. },
  26770. dick: {
  26771. height: math.unit(8.46, "feet"),
  26772. name: "Dick",
  26773. image: {
  26774. source: "./media/characters/mandarax/dick.svg"
  26775. }
  26776. },
  26777. top: {
  26778. height: math.unit(28, "meters"),
  26779. name: "Top",
  26780. image: {
  26781. source: "./media/characters/mandarax/top.svg"
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(25, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(5, "feet"),
  26798. weight: math.unit(90, "lb"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/pixil/front.svg",
  26802. extra: 2000 / 1618,
  26803. bottom: 12.3 / 2011
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(5, "feet"),
  26811. default: true
  26812. },
  26813. {
  26814. name: "Megamacro",
  26815. height: math.unit(10, "miles"),
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(7 + 2 / 12, "feet"),
  26824. weight: math.unit(200, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/angel/front.svg",
  26828. extra: 1830 / 1737,
  26829. bottom: 22.6 / 1854,
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(7 + 2 / 12, "feet"),
  26837. default: true
  26838. },
  26839. {
  26840. name: "Macro",
  26841. height: math.unit(1000, "feet")
  26842. },
  26843. {
  26844. name: "Megamacro",
  26845. height: math.unit(2, "miles")
  26846. },
  26847. {
  26848. name: "Gigamacro",
  26849. height: math.unit(20, "earths")
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26855. {
  26856. front: {
  26857. height: math.unit(5, "feet"),
  26858. weight: math.unit(180, "lb"),
  26859. name: "Front",
  26860. image: {
  26861. source: "./media/characters/mekana/front.svg",
  26862. extra: 1671 / 1605,
  26863. bottom: 3.5 / 1691
  26864. }
  26865. },
  26866. side: {
  26867. height: math.unit(5, "feet"),
  26868. weight: math.unit(180, "lb"),
  26869. name: "Side",
  26870. image: {
  26871. source: "./media/characters/mekana/side.svg",
  26872. extra: 1671 / 1605,
  26873. bottom: 3.5 / 1691
  26874. }
  26875. },
  26876. back: {
  26877. height: math.unit(5, "feet"),
  26878. weight: math.unit(180, "lb"),
  26879. name: "Back",
  26880. image: {
  26881. source: "./media/characters/mekana/back.svg",
  26882. extra: 1671 / 1605,
  26883. bottom: 3.5 / 1691
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(5, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(4 + 6 / 12, "feet"),
  26900. weight: math.unit(80, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/pixie/front.svg",
  26904. extra: 1924 / 1825,
  26905. bottom: 22.4 / 1946
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(4 + 6 / 12, "feet"),
  26913. default: true
  26914. },
  26915. {
  26916. name: "Macro",
  26917. height: math.unit(40, "feet")
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(2.1, "meters"),
  26926. weight: math.unit(200, "lb"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/the-lascivious/front.svg",
  26930. extra: 1 / 0.893,
  26931. bottom: 3.5 / 573.7
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Human Scale",
  26938. height: math.unit(2.1, "meters")
  26939. },
  26940. {
  26941. name: "Wolxi Scale",
  26942. height: math.unit(46.2, "m"),
  26943. default: true
  26944. },
  26945. {
  26946. name: "Boinker of Buildings",
  26947. height: math.unit(10, "km")
  26948. },
  26949. {
  26950. name: "Shagger of Skyscrapers",
  26951. height: math.unit(40, "km")
  26952. },
  26953. {
  26954. name: "Banger of Boroughs",
  26955. height: math.unit(4000, "km")
  26956. },
  26957. {
  26958. name: "Screwer of States",
  26959. height: math.unit(100000, "km")
  26960. },
  26961. {
  26962. name: "Pounder of Planets",
  26963. height: math.unit(2000000, "km")
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(6, "feet"),
  26972. weight: math.unit(150, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/aj/front.svg",
  26976. extra: 2039 / 1562,
  26977. bottom: 40 / 2079
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(11 + 6 / 12, "feet"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Megamacro",
  26989. height: math.unit(60, "megameters")
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26995. {
  26996. side: {
  26997. height: math.unit(31 + 8 / 12, "feet"),
  26998. weight: math.unit(75000, "kg"),
  26999. name: "Side",
  27000. image: {
  27001. source: "./media/characters/koros/side.svg",
  27002. extra: 1442 / 1297,
  27003. bottom: 122.7 / 1562
  27004. }
  27005. },
  27006. dicksKingsCrown: {
  27007. height: math.unit(6, "feet"),
  27008. name: "Dicks (King's Crown)",
  27009. image: {
  27010. source: "./media/characters/koros/dicks-kings-crown.svg"
  27011. }
  27012. },
  27013. dicksTailSet: {
  27014. height: math.unit(3, "feet"),
  27015. name: "Dicks (Tail Set)",
  27016. image: {
  27017. source: "./media/characters/koros/dicks-tail-set.svg"
  27018. }
  27019. },
  27020. dickCumming: {
  27021. height: math.unit(7.98, "feet"),
  27022. name: "Dick (Cumming)",
  27023. image: {
  27024. source: "./media/characters/koros/dick-cumming.svg"
  27025. }
  27026. },
  27027. dicksBack: {
  27028. height: math.unit(5.9, "feet"),
  27029. name: "Dicks (Back)",
  27030. image: {
  27031. source: "./media/characters/koros/dicks-back.svg"
  27032. }
  27033. },
  27034. dicksFront: {
  27035. height: math.unit(3.72, "feet"),
  27036. name: "Dicks (Front)",
  27037. image: {
  27038. source: "./media/characters/koros/dicks-front.svg"
  27039. }
  27040. },
  27041. dicksPeeking: {
  27042. height: math.unit(3.0, "feet"),
  27043. name: "Dicks (Peeking)",
  27044. image: {
  27045. source: "./media/characters/koros/dicks-peeking.svg"
  27046. }
  27047. },
  27048. eye: {
  27049. height: math.unit(1.7, "feet"),
  27050. name: "Eye",
  27051. image: {
  27052. source: "./media/characters/koros/eye.svg"
  27053. }
  27054. },
  27055. headFront: {
  27056. height: math.unit(11.69, "feet"),
  27057. name: "Head (Front)",
  27058. image: {
  27059. source: "./media/characters/koros/head-front.svg"
  27060. }
  27061. },
  27062. headSide: {
  27063. height: math.unit(14, "feet"),
  27064. name: "Head (Side)",
  27065. image: {
  27066. source: "./media/characters/koros/head-side.svg"
  27067. }
  27068. },
  27069. leg: {
  27070. height: math.unit(17, "feet"),
  27071. name: "Leg",
  27072. image: {
  27073. source: "./media/characters/koros/leg.svg"
  27074. }
  27075. },
  27076. mawSide: {
  27077. height: math.unit(12.8, "feet"),
  27078. name: "Maw (Side)",
  27079. image: {
  27080. source: "./media/characters/koros/maw-side.svg"
  27081. }
  27082. },
  27083. mawSpitting: {
  27084. height: math.unit(17, "feet"),
  27085. name: "Maw (Spitting)",
  27086. image: {
  27087. source: "./media/characters/koros/maw-spitting.svg"
  27088. }
  27089. },
  27090. slit: {
  27091. height: math.unit(2.8, "feet"),
  27092. name: "Slit",
  27093. image: {
  27094. source: "./media/characters/koros/slit.svg"
  27095. }
  27096. },
  27097. stomach: {
  27098. height: math.unit(6.8, "feet"),
  27099. preyCapacity: math.unit(20, "people"),
  27100. name: "Stomach",
  27101. image: {
  27102. source: "./media/characters/koros/stomach.svg"
  27103. }
  27104. },
  27105. wingspanBottom: {
  27106. height: math.unit(114, "feet"),
  27107. name: "Wingspan (Bottom)",
  27108. image: {
  27109. source: "./media/characters/koros/wingspan-bottom.svg"
  27110. }
  27111. },
  27112. wingspanTop: {
  27113. height: math.unit(104, "feet"),
  27114. name: "Wingspan (Top)",
  27115. image: {
  27116. source: "./media/characters/koros/wingspan-top.svg"
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Normal",
  27123. height: math.unit(31 + 8 / 12, "feet"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(18 + 5 / 12, "feet"),
  27133. weight: math.unit(3750, "kg"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/vexx/front.svg",
  27137. extra: 426 / 396,
  27138. bottom: 31.5 / 458
  27139. }
  27140. },
  27141. maw: {
  27142. height: math.unit(6, "feet"),
  27143. name: "Maw",
  27144. image: {
  27145. source: "./media/characters/vexx/maw.svg"
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(18 + 5 / 12, "feet"),
  27153. default: true
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(17 + 6 / 12, "feet"),
  27162. weight: math.unit(150, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/baadra/front.svg",
  27166. extra: 1694/1553,
  27167. bottom: 179/1873
  27168. }
  27169. },
  27170. frontAlt: {
  27171. height: math.unit(17 + 6 / 12, "feet"),
  27172. weight: math.unit(150, "lb"),
  27173. name: "Front (Alt)",
  27174. image: {
  27175. source: "./media/characters/baadra/front-alt.svg",
  27176. extra: 3137 / 2890,
  27177. bottom: 168.4 / 3305
  27178. }
  27179. },
  27180. back: {
  27181. height: math.unit(17 + 6 / 12, "feet"),
  27182. weight: math.unit(150, "lb"),
  27183. name: "Back",
  27184. image: {
  27185. source: "./media/characters/baadra/back.svg",
  27186. extra: 3142 / 2890,
  27187. bottom: 220 / 3371
  27188. }
  27189. },
  27190. head: {
  27191. height: math.unit(5.45, "feet"),
  27192. name: "Head",
  27193. image: {
  27194. source: "./media/characters/baadra/head.svg"
  27195. }
  27196. },
  27197. headAngry: {
  27198. height: math.unit(4.95, "feet"),
  27199. name: "Head (Angry)",
  27200. image: {
  27201. source: "./media/characters/baadra/head-angry.svg"
  27202. }
  27203. },
  27204. headOpen: {
  27205. height: math.unit(6, "feet"),
  27206. name: "Head (Open)",
  27207. image: {
  27208. source: "./media/characters/baadra/head-open.svg"
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(17 + 6 / 12, "feet"),
  27216. default: true
  27217. },
  27218. ]
  27219. ))
  27220. characterMakers.push(() => makeCharacter(
  27221. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27222. {
  27223. front: {
  27224. height: math.unit(7 + 3 / 12, "feet"),
  27225. weight: math.unit(180, "lb"),
  27226. name: "Front",
  27227. image: {
  27228. source: "./media/characters/juri/front.svg",
  27229. extra: 1401 / 1237,
  27230. bottom: 18.5 / 1418
  27231. }
  27232. },
  27233. side: {
  27234. height: math.unit(7 + 3 / 12, "feet"),
  27235. weight: math.unit(180, "lb"),
  27236. name: "Side",
  27237. image: {
  27238. source: "./media/characters/juri/side.svg",
  27239. extra: 1424 / 1242,
  27240. bottom: 18.5 / 1447
  27241. }
  27242. },
  27243. sitting: {
  27244. height: math.unit(6, "feet"),
  27245. weight: math.unit(180, "lb"),
  27246. name: "Sitting",
  27247. image: {
  27248. source: "./media/characters/juri/sitting.svg",
  27249. extra: 1270 / 1143,
  27250. bottom: 100 / 1343
  27251. }
  27252. },
  27253. back: {
  27254. height: math.unit(7 + 3 / 12, "feet"),
  27255. weight: math.unit(180, "lb"),
  27256. name: "Back",
  27257. image: {
  27258. source: "./media/characters/juri/back.svg",
  27259. extra: 1377 / 1240,
  27260. bottom: 23.7 / 1405
  27261. }
  27262. },
  27263. maw: {
  27264. height: math.unit(2.8, "feet"),
  27265. name: "Maw",
  27266. image: {
  27267. source: "./media/characters/juri/maw.svg"
  27268. }
  27269. },
  27270. stomach: {
  27271. height: math.unit(0.89, "feet"),
  27272. preyCapacity: math.unit(4, "liters"),
  27273. name: "Stomach",
  27274. image: {
  27275. source: "./media/characters/juri/stomach.svg"
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Normal",
  27282. height: math.unit(7 + 3 / 12, "feet"),
  27283. default: true
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27289. {
  27290. fox: {
  27291. height: math.unit(5 + 6 / 12, "feet"),
  27292. weight: math.unit(140, "lb"),
  27293. name: "Fox",
  27294. image: {
  27295. source: "./media/characters/maxene-sita/fox.svg",
  27296. extra: 146 / 138,
  27297. bottom: 2.1 / 148.19
  27298. }
  27299. },
  27300. foxLaying: {
  27301. height: math.unit(1.70, "feet"),
  27302. weight: math.unit(140, "lb"),
  27303. name: "Fox (Laying)",
  27304. image: {
  27305. source: "./media/characters/maxene-sita/fox-laying.svg",
  27306. extra: 910 / 572,
  27307. bottom: 71 / 981
  27308. }
  27309. },
  27310. kitsune: {
  27311. height: math.unit(10, "feet"),
  27312. weight: math.unit(800, "lb"),
  27313. name: "Kitsune",
  27314. image: {
  27315. source: "./media/characters/maxene-sita/kitsune.svg",
  27316. extra: 185 / 176,
  27317. bottom: 4.7 / 189.9
  27318. }
  27319. },
  27320. hellhound: {
  27321. height: math.unit(10, "feet"),
  27322. weight: math.unit(700, "lb"),
  27323. name: "Hellhound",
  27324. image: {
  27325. source: "./media/characters/maxene-sita/hellhound.svg",
  27326. extra: 1600 / 1545,
  27327. bottom: 81 / 1681
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(5 + 6 / 12, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27341. {
  27342. front: {
  27343. height: math.unit(3 + 4 / 12, "feet"),
  27344. weight: math.unit(70, "lb"),
  27345. name: "Front",
  27346. image: {
  27347. source: "./media/characters/maia/front.svg",
  27348. extra: 227 / 219.5,
  27349. bottom: 40 / 267
  27350. }
  27351. },
  27352. back: {
  27353. height: math.unit(3 + 4 / 12, "feet"),
  27354. weight: math.unit(70, "lb"),
  27355. name: "Back",
  27356. image: {
  27357. source: "./media/characters/maia/back.svg",
  27358. extra: 237 / 225
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(3 + 4 / 12, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(5 + 10 / 12, "feet"),
  27375. weight: math.unit(197, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/jabaro/front.svg",
  27379. extra: 225 / 216,
  27380. bottom: 5.06 / 230
  27381. }
  27382. },
  27383. back: {
  27384. height: math.unit(5 + 10 / 12, "feet"),
  27385. weight: math.unit(197, "lb"),
  27386. name: "Back",
  27387. image: {
  27388. source: "./media/characters/jabaro/back.svg",
  27389. extra: 225 / 219,
  27390. bottom: 1.9 / 227
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(5 + 10 / 12, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(5 + 8 / 12, "feet"),
  27407. weight: math.unit(139, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/risa/front.svg",
  27411. extra: 270 / 260,
  27412. bottom: 11.2 / 282
  27413. }
  27414. },
  27415. back: {
  27416. height: math.unit(5 + 8 / 12, "feet"),
  27417. weight: math.unit(139, "lb"),
  27418. name: "Back",
  27419. image: {
  27420. source: "./media/characters/risa/back.svg",
  27421. extra: 264 / 255,
  27422. bottom: 4 / 268
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(5 + 8 / 12, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(2 + 11 / 12, "feet"),
  27439. weight: math.unit(30, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/weatley/front.svg",
  27443. bottom: 10.7 / 414,
  27444. extra: 403.5 / 362
  27445. }
  27446. },
  27447. back: {
  27448. height: math.unit(2 + 11 / 12, "feet"),
  27449. weight: math.unit(30, "lb"),
  27450. name: "Back",
  27451. image: {
  27452. source: "./media/characters/weatley/back.svg",
  27453. bottom: 10.7 / 414,
  27454. extra: 403.5 / 362
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(2 + 11 / 12, "feet"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(5 + 2 / 12, "feet"),
  27471. weight: math.unit(50, "kg"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/mercury-crescent/front.svg",
  27475. extra: 1088 / 1033,
  27476. bottom: 18.9 / 1109
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(5 + 2 / 12, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(2, "feet"),
  27493. weight: math.unit(15, "kg"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/diamond-jones/front.svg",
  27497. extra: 727/723,
  27498. bottom: 46/773
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(2, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(3, "feet"),
  27515. weight: math.unit(30, "kg"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/sweet-bit/front.svg",
  27519. extra: 675 / 567,
  27520. bottom: 27.7 / 703
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Normal",
  27527. height: math.unit(3, "feet"),
  27528. default: true
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27534. {
  27535. side: {
  27536. height: math.unit(9.178, "feet"),
  27537. weight: math.unit(500, "lb"),
  27538. name: "Side",
  27539. image: {
  27540. source: "./media/characters/umbrazen/side.svg",
  27541. extra: 1730 / 1473,
  27542. bottom: 34.6 / 1765
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Normal",
  27549. height: math.unit(9.178, "feet"),
  27550. default: true
  27551. },
  27552. ]
  27553. ))
  27554. characterMakers.push(() => makeCharacter(
  27555. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27556. {
  27557. front: {
  27558. height: math.unit(10, "feet"),
  27559. weight: math.unit(750, "lb"),
  27560. name: "Front",
  27561. image: {
  27562. source: "./media/characters/arlist/front.svg",
  27563. extra: 961 / 778,
  27564. bottom: 6.2 / 986
  27565. }
  27566. },
  27567. },
  27568. [
  27569. {
  27570. name: "Normal",
  27571. height: math.unit(10, "feet"),
  27572. default: true
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27578. {
  27579. front: {
  27580. height: math.unit(5 + 1 / 12, "feet"),
  27581. weight: math.unit(110, "lb"),
  27582. name: "Front",
  27583. image: {
  27584. source: "./media/characters/aradel/front.svg",
  27585. extra: 324 / 303,
  27586. bottom: 3.6 / 329.4
  27587. }
  27588. },
  27589. },
  27590. [
  27591. {
  27592. name: "Normal",
  27593. height: math.unit(5 + 1 / 12, "feet"),
  27594. default: true
  27595. },
  27596. ]
  27597. ))
  27598. characterMakers.push(() => makeCharacter(
  27599. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27600. {
  27601. dressed: {
  27602. height: math.unit(3 + 8 / 12, "feet"),
  27603. weight: math.unit(50, "lb"),
  27604. name: "Dressed",
  27605. image: {
  27606. source: "./media/characters/serryn/dressed.svg",
  27607. extra: 1792 / 1656,
  27608. bottom: 43.5 / 1840
  27609. }
  27610. },
  27611. nude: {
  27612. height: math.unit(3 + 8 / 12, "feet"),
  27613. weight: math.unit(50, "lb"),
  27614. name: "Nude",
  27615. image: {
  27616. source: "./media/characters/serryn/nude.svg",
  27617. extra: 1792 / 1656,
  27618. bottom: 43.5 / 1840
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(3 + 8 / 12, "feet"),
  27626. default: true
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(7 + 10 / 12, "feet"),
  27635. weight: math.unit(255, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/xavier-thyme/front.svg",
  27639. extra: 3733 / 3642,
  27640. bottom: 131 / 3869
  27641. }
  27642. },
  27643. frontRaven: {
  27644. height: math.unit(7 + 10 / 12, "feet"),
  27645. weight: math.unit(255, "lb"),
  27646. name: "Front (Raven)",
  27647. image: {
  27648. source: "./media/characters/xavier-thyme/front-raven.svg",
  27649. extra: 4385 / 3642,
  27650. bottom: 131 / 4517
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(7 + 10 / 12, "feet"),
  27658. default: true
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(1.6, "m"),
  27667. weight: math.unit(50, "kg"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/kiki/front.svg",
  27671. extra: 4682 / 3610,
  27672. bottom: 115 / 4777
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(1.6, "meters"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(50, "m"),
  27689. weight: math.unit(500, "tonnes"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/ryoko/front.svg",
  27693. extra: 4632 / 3926,
  27694. bottom: 193 / 4823
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(50, "meters"),
  27702. default: true
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27708. {
  27709. front: {
  27710. height: math.unit(30, "m"),
  27711. weight: math.unit(22, "tonnes"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/elio/front.svg",
  27715. extra: 4582 / 3720,
  27716. bottom: 236 / 4828
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(30, "meters"),
  27724. default: true
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27730. {
  27731. front: {
  27732. height: math.unit(6 + 3 / 12, "feet"),
  27733. weight: math.unit(120, "lb"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/azura/front.svg",
  27737. extra: 1149 / 1135,
  27738. bottom: 45 / 1194
  27739. }
  27740. },
  27741. frontClothed: {
  27742. height: math.unit(6 + 3 / 12, "feet"),
  27743. weight: math.unit(120, "lb"),
  27744. name: "Front (Clothed)",
  27745. image: {
  27746. source: "./media/characters/azura/front-clothed.svg",
  27747. extra: 1149 / 1135,
  27748. bottom: 45 / 1194
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(6 + 3 / 12, "feet"),
  27756. default: true
  27757. },
  27758. {
  27759. name: "Macro",
  27760. height: math.unit(20 + 6 / 12, "feet")
  27761. },
  27762. {
  27763. name: "Megamacro",
  27764. height: math.unit(12, "miles")
  27765. },
  27766. {
  27767. name: "Gigamacro",
  27768. height: math.unit(10000, "miles")
  27769. },
  27770. {
  27771. name: "Teramacro",
  27772. height: math.unit(900000, "miles")
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(12, "feet"),
  27781. weight: math.unit(1, "ton"),
  27782. capacity: math.unit(660000, "gallons"),
  27783. name: "Front",
  27784. image: {
  27785. source: "./media/characters/zeus/front.svg",
  27786. extra: 5005 / 4717,
  27787. bottom: 363 / 5388
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Normal",
  27794. height: math.unit(12, "feet")
  27795. },
  27796. {
  27797. name: "Preferred Size",
  27798. height: math.unit(0.5, "miles"),
  27799. default: true
  27800. },
  27801. {
  27802. name: "Giga Horse",
  27803. height: math.unit(300, "miles")
  27804. },
  27805. {
  27806. name: "Riding Planets",
  27807. height: math.unit(30, "megameters")
  27808. },
  27809. {
  27810. name: "Cosmic Giant",
  27811. height: math.unit(3, "zettameters")
  27812. },
  27813. {
  27814. name: "Breeding God",
  27815. height: math.unit(9.92e22, "yottameters")
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27821. {
  27822. side: {
  27823. height: math.unit(9, "feet"),
  27824. weight: math.unit(1500, "kg"),
  27825. name: "Side",
  27826. image: {
  27827. source: "./media/characters/fang/side.svg",
  27828. extra: 924 / 866,
  27829. bottom: 47.5 / 972.3
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Normal",
  27836. height: math.unit(9, "feet"),
  27837. default: true
  27838. },
  27839. {
  27840. name: "Macro",
  27841. height: math.unit(75 + 6 / 12, "feet")
  27842. },
  27843. {
  27844. name: "Teramacro",
  27845. height: math.unit(50000, "miles")
  27846. },
  27847. ]
  27848. ))
  27849. characterMakers.push(() => makeCharacter(
  27850. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27851. {
  27852. front: {
  27853. height: math.unit(10, "feet"),
  27854. weight: math.unit(2, "tons"),
  27855. name: "Front",
  27856. image: {
  27857. source: "./media/characters/rekhit/front.svg",
  27858. extra: 2796 / 2590,
  27859. bottom: 225 / 3022
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(10, "feet"),
  27867. default: true
  27868. },
  27869. {
  27870. name: "Macro",
  27871. height: math.unit(500, "feet")
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(7 + 6.451 / 12, "feet"),
  27880. weight: math.unit(310, "lb"),
  27881. name: "Front",
  27882. image: {
  27883. source: "./media/characters/dahlia-verrick/front.svg",
  27884. extra: 1488 / 1365,
  27885. bottom: 6.2 / 1495
  27886. }
  27887. },
  27888. back: {
  27889. height: math.unit(7 + 6.451 / 12, "feet"),
  27890. weight: math.unit(310, "lb"),
  27891. name: "Back",
  27892. image: {
  27893. source: "./media/characters/dahlia-verrick/back.svg",
  27894. extra: 1472 / 1351,
  27895. bottom: 5.28 / 1477
  27896. }
  27897. },
  27898. frontBusiness: {
  27899. height: math.unit(7 + 6.451 / 12, "feet"),
  27900. weight: math.unit(200, "lb"),
  27901. name: "Front (Business)",
  27902. image: {
  27903. source: "./media/characters/dahlia-verrick/front-business.svg",
  27904. extra: 1478 / 1381,
  27905. bottom: 5.5 / 1484
  27906. }
  27907. },
  27908. frontCasual: {
  27909. height: math.unit(7 + 6.451 / 12, "feet"),
  27910. weight: math.unit(200, "lb"),
  27911. name: "Front (Casual)",
  27912. image: {
  27913. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27914. extra: 1478 / 1381,
  27915. bottom: 5.5 / 1484
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Travel-Sized",
  27922. height: math.unit(7.45, "inches")
  27923. },
  27924. {
  27925. name: "Normal",
  27926. height: math.unit(7 + 6.451 / 12, "feet"),
  27927. default: true
  27928. },
  27929. {
  27930. name: "Hitting the Town",
  27931. height: math.unit(37 + 8 / 12, "feet")
  27932. },
  27933. {
  27934. name: "Stomp in the Suburbs",
  27935. height: math.unit(964 + 9.728 / 12, "feet")
  27936. },
  27937. {
  27938. name: "Sit on the City",
  27939. height: math.unit(61747 + 10.592 / 12, "feet")
  27940. },
  27941. {
  27942. name: "Glomp the Globe",
  27943. height: math.unit(252919327 + 4.832 / 12, "feet")
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27949. {
  27950. front: {
  27951. height: math.unit(6 + 4 / 12, "feet"),
  27952. weight: math.unit(320, "lb"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/balina-mahigan/front.svg",
  27956. extra: 447 / 428,
  27957. bottom: 18 / 466
  27958. }
  27959. },
  27960. back: {
  27961. height: math.unit(6 + 4 / 12, "feet"),
  27962. weight: math.unit(320, "lb"),
  27963. name: "Back",
  27964. image: {
  27965. source: "./media/characters/balina-mahigan/back.svg",
  27966. extra: 445 / 428,
  27967. bottom: 4.07 / 448
  27968. }
  27969. },
  27970. arm: {
  27971. height: math.unit(1.88, "feet"),
  27972. name: "Arm",
  27973. image: {
  27974. source: "./media/characters/balina-mahigan/arm.svg"
  27975. }
  27976. },
  27977. backPort: {
  27978. height: math.unit(0.685, "feet"),
  27979. name: "Back Port",
  27980. image: {
  27981. source: "./media/characters/balina-mahigan/back-port.svg"
  27982. }
  27983. },
  27984. hoofpaw: {
  27985. height: math.unit(1.41, "feet"),
  27986. name: "Hoofpaw",
  27987. image: {
  27988. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27989. }
  27990. },
  27991. leftHandBack: {
  27992. height: math.unit(0.938, "feet"),
  27993. name: "Left Hand (Back)",
  27994. image: {
  27995. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27996. }
  27997. },
  27998. leftHandFront: {
  27999. height: math.unit(0.938, "feet"),
  28000. name: "Left Hand (Front)",
  28001. image: {
  28002. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28003. }
  28004. },
  28005. rightHandBack: {
  28006. height: math.unit(0.95, "feet"),
  28007. name: "Right Hand (Back)",
  28008. image: {
  28009. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28010. }
  28011. },
  28012. rightHandFront: {
  28013. height: math.unit(0.95, "feet"),
  28014. name: "Right Hand (Front)",
  28015. image: {
  28016. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(6 + 4 / 12, "feet"),
  28024. default: true
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(6, "feet"),
  28033. weight: math.unit(320, "lb"),
  28034. name: "Front",
  28035. image: {
  28036. source: "./media/characters/balina-mejeri/front.svg",
  28037. extra: 517 / 488,
  28038. bottom: 44.2 / 561
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(6 + 4 / 12, "feet")
  28046. },
  28047. {
  28048. name: "Business",
  28049. height: math.unit(155, "feet"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28056. {
  28057. kneeling: {
  28058. height: math.unit(6 + 4 / 12, "feet"),
  28059. weight: math.unit(300 * 20, "lb"),
  28060. name: "Kneeling",
  28061. image: {
  28062. source: "./media/characters/balbarian/kneeling.svg",
  28063. extra: 922 / 862,
  28064. bottom: 42.4 / 965
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(6 + 4 / 12, "feet")
  28072. },
  28073. {
  28074. name: "Treasured",
  28075. height: math.unit(18 + 9 / 12, "feet"),
  28076. default: true
  28077. },
  28078. {
  28079. name: "Macro",
  28080. height: math.unit(900, "feet")
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(6 + 4 / 12, "feet"),
  28089. weight: math.unit(325, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/balina-amarini/front.svg",
  28093. extra: 415 / 403,
  28094. bottom: 19 / 433.4
  28095. }
  28096. },
  28097. back: {
  28098. height: math.unit(6 + 4 / 12, "feet"),
  28099. weight: math.unit(325, "lb"),
  28100. name: "Back",
  28101. image: {
  28102. source: "./media/characters/balina-amarini/back.svg",
  28103. extra: 415 / 403,
  28104. bottom: 13.5 / 432
  28105. }
  28106. },
  28107. overdrive: {
  28108. height: math.unit(6 + 4 / 12, "feet"),
  28109. weight: math.unit(400, "lb"),
  28110. name: "Overdrive",
  28111. image: {
  28112. source: "./media/characters/balina-amarini/overdrive.svg",
  28113. extra: 269 / 259,
  28114. bottom: 12 / 282
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Boom",
  28121. height: math.unit(9 + 10 / 12, "feet"),
  28122. default: true
  28123. },
  28124. {
  28125. name: "Macro",
  28126. height: math.unit(280, "feet")
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28132. {
  28133. goddess: {
  28134. height: math.unit(600, "feet"),
  28135. weight: math.unit(2000000, "tons"),
  28136. name: "Goddess",
  28137. image: {
  28138. source: "./media/characters/lady-kubwa/goddess.svg",
  28139. extra: 1240.5 / 1223,
  28140. bottom: 22 / 1263
  28141. }
  28142. },
  28143. goddesser: {
  28144. height: math.unit(900, "feet"),
  28145. weight: math.unit(20000000, "lb"),
  28146. name: "Goddess-er",
  28147. image: {
  28148. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28149. extra: 899 / 888,
  28150. bottom: 12.6 / 912
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Macro",
  28157. height: math.unit(600, "feet"),
  28158. default: true
  28159. },
  28160. {
  28161. name: "Megamacro",
  28162. height: math.unit(250, "miles")
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(7 + 7 / 12, "feet"),
  28171. weight: math.unit(250, "lb"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/tala-grovehorn/front.svg",
  28175. extra: 2636 / 2525,
  28176. bottom: 147 / 2781
  28177. }
  28178. },
  28179. back: {
  28180. height: math.unit(7 + 7 / 12, "feet"),
  28181. weight: math.unit(250, "lb"),
  28182. name: "Back",
  28183. image: {
  28184. source: "./media/characters/tala-grovehorn/back.svg",
  28185. extra: 2635 / 2539,
  28186. bottom: 100 / 2732.8
  28187. }
  28188. },
  28189. mouth: {
  28190. height: math.unit(1.15, "feet"),
  28191. name: "Mouth",
  28192. image: {
  28193. source: "./media/characters/tala-grovehorn/mouth.svg"
  28194. }
  28195. },
  28196. dick: {
  28197. height: math.unit(2.36, "feet"),
  28198. name: "Dick",
  28199. image: {
  28200. source: "./media/characters/tala-grovehorn/dick.svg"
  28201. }
  28202. },
  28203. slit: {
  28204. height: math.unit(0.61, "feet"),
  28205. name: "Slit",
  28206. image: {
  28207. source: "./media/characters/tala-grovehorn/slit.svg"
  28208. }
  28209. },
  28210. },
  28211. [
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28216. {
  28217. front: {
  28218. height: math.unit(7 + 7 / 12, "feet"),
  28219. weight: math.unit(225, "lb"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/epona/front.svg",
  28223. extra: 2445 / 2290,
  28224. bottom: 251 / 2696
  28225. }
  28226. },
  28227. back: {
  28228. height: math.unit(7 + 7 / 12, "feet"),
  28229. weight: math.unit(225, "lb"),
  28230. name: "Back",
  28231. image: {
  28232. source: "./media/characters/epona/back.svg",
  28233. extra: 2546 / 2408,
  28234. bottom: 44 / 2589
  28235. }
  28236. },
  28237. genitals: {
  28238. height: math.unit(1.5, "feet"),
  28239. name: "Genitals",
  28240. image: {
  28241. source: "./media/characters/epona/genitals.svg"
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(7 + 7 / 12, "feet"),
  28249. default: true
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(7, "feet"),
  28258. weight: math.unit(518, "lb"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/avia-bloodbourn/front.svg",
  28262. extra: 1466 / 1350,
  28263. bottom: 65 / 1527
  28264. }
  28265. },
  28266. },
  28267. [
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(9.35, "feet"),
  28275. weight: math.unit(600, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/amera/front.svg",
  28279. extra: 891 / 818,
  28280. bottom: 30 / 922.7
  28281. }
  28282. },
  28283. back: {
  28284. height: math.unit(9.35, "feet"),
  28285. weight: math.unit(600, "lb"),
  28286. name: "Back",
  28287. image: {
  28288. source: "./media/characters/amera/back.svg",
  28289. extra: 876 / 824,
  28290. bottom: 6.8 / 884
  28291. }
  28292. },
  28293. dick: {
  28294. height: math.unit(2.14, "feet"),
  28295. name: "Dick",
  28296. image: {
  28297. source: "./media/characters/amera/dick.svg"
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(9.35, "feet"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28311. {
  28312. kneeling: {
  28313. height: math.unit(3 + 4 / 12, "feet"),
  28314. weight: math.unit(90, "lb"),
  28315. name: "Kneeling",
  28316. image: {
  28317. source: "./media/characters/rosewen/kneeling.svg",
  28318. extra: 1835 / 1571,
  28319. bottom: 27.7 / 1862
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(3 + 4 / 12, "feet"),
  28327. default: true
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(5 + 10 / 12, "feet"),
  28336. weight: math.unit(200, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/sabah/front.svg",
  28340. extra: 849 / 763,
  28341. bottom: 33.9 / 881
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(5 + 10 / 12, "feet"),
  28349. default: true
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28355. {
  28356. front: {
  28357. height: math.unit(3 + 5 / 12, "feet"),
  28358. weight: math.unit(40, "kg"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/purple-flame/front.svg",
  28362. extra: 1577 / 1412,
  28363. bottom: 97 / 1694
  28364. }
  28365. },
  28366. frontDressed: {
  28367. height: math.unit(3 + 5 / 12, "feet"),
  28368. weight: math.unit(40, "kg"),
  28369. name: "Front (Dressed)",
  28370. image: {
  28371. source: "./media/characters/purple-flame/front-dressed.svg",
  28372. extra: 1577 / 1412,
  28373. bottom: 97 / 1694
  28374. }
  28375. },
  28376. headphones: {
  28377. height: math.unit(0.85, "feet"),
  28378. name: "Headphones",
  28379. image: {
  28380. source: "./media/characters/purple-flame/headphones.svg"
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Really Small",
  28387. height: math.unit(5, "cm")
  28388. },
  28389. {
  28390. name: "Micro",
  28391. height: math.unit(1 + 5 / 12, "feet")
  28392. },
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(3 + 5 / 12, "feet"),
  28396. default: true
  28397. },
  28398. {
  28399. name: "Minimacro",
  28400. height: math.unit(125, "feet")
  28401. },
  28402. {
  28403. name: "Macro",
  28404. height: math.unit(0.5, "miles")
  28405. },
  28406. {
  28407. name: "Megamacro",
  28408. height: math.unit(50, "miles")
  28409. },
  28410. {
  28411. name: "Gigantic",
  28412. height: math.unit(750, "miles")
  28413. },
  28414. {
  28415. name: "Planetary",
  28416. height: math.unit(15000, "miles")
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(14, "feet"),
  28425. weight: math.unit(959, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/arsenal/front.svg",
  28429. extra: 2357 / 2157,
  28430. bottom: 93 / 2458
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(14, "feet"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(6, "feet"),
  28447. weight: math.unit(150, "lb"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/adira/front.svg",
  28451. extra: 1078 / 1029,
  28452. bottom: 87 / 1166
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Micro",
  28459. height: math.unit(4, "inches"),
  28460. default: true
  28461. },
  28462. {
  28463. name: "Macro",
  28464. height: math.unit(50, "feet")
  28465. },
  28466. ]
  28467. ))
  28468. characterMakers.push(() => makeCharacter(
  28469. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28470. {
  28471. front: {
  28472. height: math.unit(16, "feet"),
  28473. weight: math.unit(1000, "lb"),
  28474. name: "Front",
  28475. image: {
  28476. source: "./media/characters/grim/front.svg",
  28477. extra: 622 / 614,
  28478. bottom: 18.1 / 642
  28479. }
  28480. },
  28481. back: {
  28482. height: math.unit(16, "feet"),
  28483. weight: math.unit(1000, "lb"),
  28484. name: "Back",
  28485. image: {
  28486. source: "./media/characters/grim/back.svg",
  28487. extra: 610.6 / 602,
  28488. bottom: 40.8 / 652
  28489. }
  28490. },
  28491. hunched: {
  28492. height: math.unit(9.75, "feet"),
  28493. weight: math.unit(1000, "lb"),
  28494. name: "Hunched",
  28495. image: {
  28496. source: "./media/characters/grim/hunched.svg",
  28497. extra: 304 / 297,
  28498. bottom: 35.4 / 394
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Normal",
  28505. height: math.unit(16, "feet"),
  28506. default: true
  28507. },
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28512. {
  28513. front: {
  28514. height: math.unit(2.3, "meters"),
  28515. weight: math.unit(300, "lb"),
  28516. name: "Front",
  28517. image: {
  28518. source: "./media/characters/sinja/front-sfw.svg",
  28519. extra: 1393 / 1294,
  28520. bottom: 70 / 1463
  28521. }
  28522. },
  28523. frontNsfw: {
  28524. height: math.unit(2.3, "meters"),
  28525. weight: math.unit(300, "lb"),
  28526. name: "Front (NSFW)",
  28527. image: {
  28528. source: "./media/characters/sinja/front-nsfw.svg",
  28529. extra: 1393 / 1294,
  28530. bottom: 70 / 1463
  28531. }
  28532. },
  28533. back: {
  28534. height: math.unit(2.3, "meters"),
  28535. weight: math.unit(300, "lb"),
  28536. name: "Back",
  28537. image: {
  28538. source: "./media/characters/sinja/back.svg",
  28539. extra: 1393 / 1294,
  28540. bottom: 70 / 1463
  28541. }
  28542. },
  28543. head: {
  28544. height: math.unit(1.771, "feet"),
  28545. name: "Head",
  28546. image: {
  28547. source: "./media/characters/sinja/head.svg"
  28548. }
  28549. },
  28550. slit: {
  28551. height: math.unit(0.8, "feet"),
  28552. name: "Slit",
  28553. image: {
  28554. source: "./media/characters/sinja/slit.svg"
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(2.3, "meters")
  28562. },
  28563. {
  28564. name: "Macro",
  28565. height: math.unit(91, "meters"),
  28566. default: true
  28567. },
  28568. {
  28569. name: "Megamacro",
  28570. height: math.unit(91440, "meters")
  28571. },
  28572. {
  28573. name: "Gigamacro",
  28574. height: math.unit(60960000, "meters")
  28575. },
  28576. {
  28577. name: "Teramacro",
  28578. height: math.unit(9144000000, "meters")
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(1.7, "meters"),
  28587. weight: math.unit(130, "lb"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/kyu/front.svg",
  28591. extra: 415 / 395,
  28592. bottom: 5 / 420
  28593. }
  28594. },
  28595. head: {
  28596. height: math.unit(1.75, "feet"),
  28597. name: "Head",
  28598. image: {
  28599. source: "./media/characters/kyu/head.svg"
  28600. }
  28601. },
  28602. foot: {
  28603. height: math.unit(0.81, "feet"),
  28604. name: "Foot",
  28605. image: {
  28606. source: "./media/characters/kyu/foot.svg"
  28607. }
  28608. },
  28609. },
  28610. [
  28611. {
  28612. name: "Normal",
  28613. height: math.unit(1.7, "meters")
  28614. },
  28615. {
  28616. name: "Macro",
  28617. height: math.unit(131, "feet"),
  28618. default: true
  28619. },
  28620. {
  28621. name: "Megamacro",
  28622. height: math.unit(91440, "meters")
  28623. },
  28624. {
  28625. name: "Gigamacro",
  28626. height: math.unit(60960000, "meters")
  28627. },
  28628. {
  28629. name: "Teramacro",
  28630. height: math.unit(9144000000, "meters")
  28631. },
  28632. ]
  28633. ))
  28634. characterMakers.push(() => makeCharacter(
  28635. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28636. {
  28637. front: {
  28638. height: math.unit(7 + 1 / 12, "feet"),
  28639. weight: math.unit(250, "lb"),
  28640. name: "Front",
  28641. image: {
  28642. source: "./media/characters/joey/front.svg",
  28643. extra: 1791 / 1537,
  28644. bottom: 28 / 1816
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Micro",
  28651. height: math.unit(3, "inches")
  28652. },
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(7 + 1 / 12, "feet"),
  28656. default: true
  28657. },
  28658. ]
  28659. ))
  28660. characterMakers.push(() => makeCharacter(
  28661. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28662. {
  28663. front: {
  28664. height: math.unit(165, "cm"),
  28665. weight: math.unit(140, "lb"),
  28666. name: "Front",
  28667. image: {
  28668. source: "./media/characters/sam-evans/front.svg",
  28669. extra: 3417 / 3230,
  28670. bottom: 41.3 / 3417
  28671. }
  28672. },
  28673. frontSixTails: {
  28674. height: math.unit(165, "cm"),
  28675. weight: math.unit(140, "lb"),
  28676. name: "Front-six-tails",
  28677. image: {
  28678. source: "./media/characters/sam-evans/front-six-tails.svg",
  28679. extra: 3417 / 3230,
  28680. bottom: 41.3 / 3417
  28681. }
  28682. },
  28683. back: {
  28684. height: math.unit(165, "cm"),
  28685. weight: math.unit(140, "lb"),
  28686. name: "Back",
  28687. image: {
  28688. source: "./media/characters/sam-evans/back.svg",
  28689. extra: 3227 / 3032,
  28690. bottom: 6.8 / 3234
  28691. }
  28692. },
  28693. face: {
  28694. height: math.unit(0.68, "feet"),
  28695. name: "Face",
  28696. image: {
  28697. source: "./media/characters/sam-evans/face.svg"
  28698. }
  28699. },
  28700. },
  28701. [
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(165, "cm"),
  28705. default: true
  28706. },
  28707. {
  28708. name: "Macro",
  28709. height: math.unit(100, "meters")
  28710. },
  28711. {
  28712. name: "Macro+",
  28713. height: math.unit(800, "meters")
  28714. },
  28715. {
  28716. name: "Macro++",
  28717. height: math.unit(3, "km")
  28718. },
  28719. {
  28720. name: "Macro+++",
  28721. height: math.unit(30, "km")
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(10, "feet"),
  28730. weight: math.unit(750, "lb"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/juliet-a/front.svg",
  28734. extra: 1766 / 1720,
  28735. bottom: 43 / 1809
  28736. }
  28737. },
  28738. back: {
  28739. height: math.unit(10, "feet"),
  28740. weight: math.unit(750, "lb"),
  28741. name: "Back",
  28742. image: {
  28743. source: "./media/characters/juliet-a/back.svg",
  28744. extra: 1781 / 1734,
  28745. bottom: 35 / 1810,
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(10, "feet"),
  28753. default: true
  28754. },
  28755. {
  28756. name: "Dragon Form",
  28757. height: math.unit(250, "feet")
  28758. },
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(1000, "feet")
  28762. },
  28763. {
  28764. name: "Megamacro",
  28765. height: math.unit(10000, "feet")
  28766. }
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28771. {
  28772. regular: {
  28773. height: math.unit(7 + 3 / 12, "feet"),
  28774. weight: math.unit(260, "lb"),
  28775. name: "Regular",
  28776. image: {
  28777. source: "./media/characters/wild/regular.svg",
  28778. extra: 97.45 / 92,
  28779. bottom: 6.8 / 104.3
  28780. }
  28781. },
  28782. biggums: {
  28783. height: math.unit(8 + 6 / 12, "feet"),
  28784. weight: math.unit(425, "lb"),
  28785. name: "Biggums",
  28786. image: {
  28787. source: "./media/characters/wild/biggums.svg",
  28788. extra: 97.45 / 92,
  28789. bottom: 7.5 / 132.34
  28790. }
  28791. },
  28792. mawRegular: {
  28793. height: math.unit(1.24, "feet"),
  28794. name: "Maw (Regular)",
  28795. image: {
  28796. source: "./media/characters/wild/maw.svg"
  28797. }
  28798. },
  28799. mawBiggums: {
  28800. height: math.unit(1.47, "feet"),
  28801. name: "Maw (Biggums)",
  28802. image: {
  28803. source: "./media/characters/wild/maw.svg"
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(7 + 3 / 12, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28817. {
  28818. front: {
  28819. height: math.unit(2.5, "meters"),
  28820. weight: math.unit(200, "kg"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/vidar/front.svg",
  28824. extra: 2994 / 2795,
  28825. bottom: 56 / 3061
  28826. }
  28827. },
  28828. back: {
  28829. height: math.unit(2.5, "meters"),
  28830. weight: math.unit(200, "kg"),
  28831. name: "Back",
  28832. image: {
  28833. source: "./media/characters/vidar/back.svg",
  28834. extra: 3131 / 2928,
  28835. bottom: 13.5 / 3141.5
  28836. }
  28837. },
  28838. feral: {
  28839. height: math.unit(2.5, "meters"),
  28840. weight: math.unit(2000, "kg"),
  28841. name: "Feral",
  28842. image: {
  28843. source: "./media/characters/vidar/feral.svg",
  28844. extra: 2790 / 1765,
  28845. bottom: 6 / 2796
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(2.5, "meters"),
  28853. default: true
  28854. },
  28855. {
  28856. name: "Macro",
  28857. height: math.unit(100, "meters")
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(5 + 9 / 12, "feet"),
  28866. weight: math.unit(120, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/ash/front.svg",
  28870. extra: 2189 / 1961,
  28871. bottom: 5.2 / 2194
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(5 + 9 / 12, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(9, "feet"),
  28888. weight: math.unit(10000, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/gygabite/front.svg",
  28892. bottom: 31.7 / 537.8,
  28893. extra: 505 / 370
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(9, "feet"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(12, "feet"),
  28910. weight: math.unit(4000, "lb"),
  28911. name: "Front",
  28912. image: {
  28913. source: "./media/characters/p0tat0/front.svg",
  28914. extra: 1065 / 921,
  28915. bottom: 55.7 / 1121.25
  28916. }
  28917. },
  28918. },
  28919. [
  28920. {
  28921. name: "Normal",
  28922. height: math.unit(12, "feet"),
  28923. default: true
  28924. },
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28929. {
  28930. side: {
  28931. height: math.unit(6.5, "feet"),
  28932. weight: math.unit(800, "lb"),
  28933. name: "Side",
  28934. image: {
  28935. source: "./media/characters/dusk/side.svg",
  28936. extra: 615 / 373,
  28937. bottom: 53 / 664
  28938. }
  28939. },
  28940. sitting: {
  28941. height: math.unit(7, "feet"),
  28942. weight: math.unit(800, "lb"),
  28943. name: "Sitting",
  28944. image: {
  28945. source: "./media/characters/dusk/sitting.svg",
  28946. extra: 753 / 425,
  28947. bottom: 33 / 774
  28948. }
  28949. },
  28950. head: {
  28951. height: math.unit(6.1, "feet"),
  28952. name: "Head",
  28953. image: {
  28954. source: "./media/characters/dusk/head.svg"
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(7, "feet"),
  28962. default: true
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(15, "feet"),
  28971. weight: math.unit(7000, "lb"),
  28972. name: "Front",
  28973. image: {
  28974. source: "./media/characters/jay-direwolf/front.svg",
  28975. extra: 1810 / 1732,
  28976. bottom: 66 / 1892
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(15, "feet"),
  28984. default: true
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(4 + 9 / 12, "feet"),
  28993. weight: math.unit(130, "lb"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/anchovie/front.svg",
  28997. extra: 382 / 350,
  28998. bottom: 25 / 409
  28999. }
  29000. },
  29001. back: {
  29002. height: math.unit(4 + 9 / 12, "feet"),
  29003. weight: math.unit(130, "lb"),
  29004. name: "Back",
  29005. image: {
  29006. source: "./media/characters/anchovie/back.svg",
  29007. extra: 385 / 352,
  29008. bottom: 16.6 / 402
  29009. }
  29010. },
  29011. frontDressed: {
  29012. height: math.unit(4 + 9 / 12, "feet"),
  29013. weight: math.unit(130, "lb"),
  29014. name: "Front (Dressed)",
  29015. image: {
  29016. source: "./media/characters/anchovie/front-dressed.svg",
  29017. extra: 382 / 350,
  29018. bottom: 25 / 409
  29019. }
  29020. },
  29021. backDressed: {
  29022. height: math.unit(4 + 9 / 12, "feet"),
  29023. weight: math.unit(130, "lb"),
  29024. name: "Back (Dressed)",
  29025. image: {
  29026. source: "./media/characters/anchovie/back-dressed.svg",
  29027. extra: 385 / 352,
  29028. bottom: 16.6 / 402
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Micro",
  29035. height: math.unit(6.4, "inches")
  29036. },
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(4 + 9 / 12, "feet"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29046. {
  29047. front: {
  29048. height: math.unit(2, "meters"),
  29049. weight: math.unit(180, "lb"),
  29050. name: "Front",
  29051. image: {
  29052. source: "./media/characters/acidrenamon/front.svg",
  29053. extra: 987 / 890,
  29054. bottom: 22.8 / 1009
  29055. }
  29056. },
  29057. back: {
  29058. height: math.unit(2, "meters"),
  29059. weight: math.unit(180, "lb"),
  29060. name: "Back",
  29061. image: {
  29062. source: "./media/characters/acidrenamon/back.svg",
  29063. extra: 983 / 891,
  29064. bottom: 8.4 / 992
  29065. }
  29066. },
  29067. head: {
  29068. height: math.unit(1.92, "feet"),
  29069. name: "Head",
  29070. image: {
  29071. source: "./media/characters/acidrenamon/head.svg"
  29072. }
  29073. },
  29074. rump: {
  29075. height: math.unit(1.72, "feet"),
  29076. name: "Rump",
  29077. image: {
  29078. source: "./media/characters/acidrenamon/rump.svg"
  29079. }
  29080. },
  29081. tail: {
  29082. height: math.unit(4.2, "feet"),
  29083. name: "Tail",
  29084. image: {
  29085. source: "./media/characters/acidrenamon/tail.svg"
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(2, "meters"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Minimacro",
  29097. height: math.unit(7, "meters")
  29098. },
  29099. {
  29100. name: "Macro",
  29101. height: math.unit(200, "meters")
  29102. },
  29103. {
  29104. name: "Gigamacro",
  29105. height: math.unit(0.2, "earths")
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29111. {
  29112. front: {
  29113. height: math.unit(152, "feet"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/kenzie-lee/front.svg",
  29117. extra: 1869/1774,
  29118. bottom: 128/1997
  29119. }
  29120. },
  29121. side: {
  29122. height: math.unit(86, "feet"),
  29123. name: "Side",
  29124. image: {
  29125. source: "./media/characters/kenzie-lee/side.svg",
  29126. extra: 930/815,
  29127. bottom: 177/1107
  29128. }
  29129. },
  29130. paw: {
  29131. height: math.unit(15, "feet"),
  29132. name: "Paw",
  29133. image: {
  29134. source: "./media/characters/kenzie-lee/paw.svg"
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Kenzie Flea",
  29141. height: math.unit(2, "mm"),
  29142. default: true
  29143. },
  29144. {
  29145. name: "Micro",
  29146. height: math.unit(2, "inches")
  29147. },
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(152, "feet")
  29151. },
  29152. {
  29153. name: "Megamacro",
  29154. height: math.unit(7, "miles")
  29155. },
  29156. {
  29157. name: "Gigamacro",
  29158. height: math.unit(8000, "miles")
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(6, "feet"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/withers/front.svg",
  29170. extra: 1935/1760,
  29171. bottom: 72/2007
  29172. }
  29173. },
  29174. back: {
  29175. height: math.unit(6, "feet"),
  29176. name: "Back",
  29177. image: {
  29178. source: "./media/characters/withers/back.svg",
  29179. extra: 1944/1792,
  29180. bottom: 12/1956
  29181. }
  29182. },
  29183. dressed: {
  29184. height: math.unit(6, "feet"),
  29185. name: "Dressed",
  29186. image: {
  29187. source: "./media/characters/withers/dressed.svg",
  29188. extra: 1937/1765,
  29189. bottom: 73/2010
  29190. }
  29191. },
  29192. phase1: {
  29193. height: math.unit(1.1, "feet"),
  29194. name: "Phase 1",
  29195. image: {
  29196. source: "./media/characters/withers/phase-1.svg",
  29197. extra: 1885/1232,
  29198. bottom: 0/1885
  29199. }
  29200. },
  29201. phase2: {
  29202. height: math.unit(1.05, "feet"),
  29203. name: "Phase 2",
  29204. image: {
  29205. source: "./media/characters/withers/phase-2.svg",
  29206. extra: 1792/1090,
  29207. bottom: 0/1792
  29208. }
  29209. },
  29210. partyWipe: {
  29211. height: math.unit(1.1, "feet"),
  29212. name: "Party Wipe",
  29213. image: {
  29214. source: "./media/characters/withers/party-wipe.svg",
  29215. extra: 1864/1207,
  29216. bottom: 0/1864
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Macro",
  29223. height: math.unit(167, "feet"),
  29224. default: true
  29225. },
  29226. {
  29227. name: "Megamacro",
  29228. height: math.unit(15, "miles")
  29229. }
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(6 + 7 / 12, "feet"),
  29237. weight: math.unit(250, "lb"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/nemoskii/front.svg",
  29241. extra: 2270 / 1734,
  29242. bottom: 86 / 2354
  29243. }
  29244. },
  29245. back: {
  29246. height: math.unit(6 + 7 / 12, "feet"),
  29247. weight: math.unit(250, "lb"),
  29248. name: "Back",
  29249. image: {
  29250. source: "./media/characters/nemoskii/back.svg",
  29251. extra: 1845 / 1788,
  29252. bottom: 10.5 / 1852
  29253. }
  29254. },
  29255. head: {
  29256. height: math.unit(1.31, "feet"),
  29257. name: "Head",
  29258. image: {
  29259. source: "./media/characters/nemoskii/head.svg"
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Micro",
  29266. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29267. },
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(6 + 7 / 12, "feet"),
  29271. default: true
  29272. },
  29273. {
  29274. name: "Macro",
  29275. height: math.unit((6 + 7 / 12) * 150, "feet")
  29276. },
  29277. {
  29278. name: "Macro+",
  29279. height: math.unit((6 + 7 / 12) * 500, "feet")
  29280. },
  29281. {
  29282. name: "Megamacro",
  29283. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(1, "mile"),
  29292. weight: math.unit(265261.9, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/shui/front.svg",
  29296. extra: 1633 / 1564,
  29297. bottom: 91.5 / 1726
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Macro",
  29304. height: math.unit(1, "mile"),
  29305. default: true
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(12 + 6 / 12, "feet"),
  29314. weight: math.unit(1342, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/arokh-takakura/front.svg",
  29318. extra: 1089 / 1043,
  29319. bottom: 77.4 / 1176.7
  29320. }
  29321. },
  29322. back: {
  29323. height: math.unit(12 + 6 / 12, "feet"),
  29324. weight: math.unit(1342, "lb"),
  29325. name: "Back",
  29326. image: {
  29327. source: "./media/characters/arokh-takakura/back.svg",
  29328. extra: 1046 / 1019,
  29329. bottom: 102 / 1150
  29330. }
  29331. },
  29332. },
  29333. [
  29334. {
  29335. name: "Big",
  29336. height: math.unit(12 + 6 / 12, "feet"),
  29337. default: true
  29338. },
  29339. ]
  29340. ))
  29341. characterMakers.push(() => makeCharacter(
  29342. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29343. {
  29344. front: {
  29345. height: math.unit(5 + 6 / 12, "feet"),
  29346. weight: math.unit(150, "lb"),
  29347. name: "Front",
  29348. image: {
  29349. source: "./media/characters/theo/front.svg",
  29350. extra: 1184 / 1131,
  29351. bottom: 7.4 / 1191
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Micro",
  29358. height: math.unit(5, "inches")
  29359. },
  29360. {
  29361. name: "Normal",
  29362. height: math.unit(5 + 6 / 12, "feet"),
  29363. default: true
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29369. {
  29370. front: {
  29371. height: math.unit(5 + 9 / 12, "feet"),
  29372. weight: math.unit(130, "lb"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/cecelia-swift/front.svg",
  29376. extra: 502 / 484,
  29377. bottom: 23 / 523
  29378. }
  29379. },
  29380. back: {
  29381. height: math.unit(5 + 9 / 12, "feet"),
  29382. weight: math.unit(130, "lb"),
  29383. name: "Back",
  29384. image: {
  29385. source: "./media/characters/cecelia-swift/back.svg",
  29386. extra: 499 / 485,
  29387. bottom: 12 / 511
  29388. }
  29389. },
  29390. head: {
  29391. height: math.unit(0.90, "feet"),
  29392. name: "Head",
  29393. image: {
  29394. source: "./media/characters/cecelia-swift/head.svg"
  29395. }
  29396. },
  29397. rump: {
  29398. height: math.unit(1.75, "feet"),
  29399. name: "Rump",
  29400. image: {
  29401. source: "./media/characters/cecelia-swift/rump.svg"
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(5 + 9 / 12, "feet"),
  29409. default: true
  29410. },
  29411. {
  29412. name: "Big",
  29413. height: math.unit(50, "feet")
  29414. },
  29415. {
  29416. name: "Macro",
  29417. height: math.unit(100, "feet")
  29418. },
  29419. {
  29420. name: "Macro+",
  29421. height: math.unit(500, "feet")
  29422. },
  29423. {
  29424. name: "Macro++",
  29425. height: math.unit(1000, "feet")
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29431. {
  29432. front: {
  29433. height: math.unit(6, "feet"),
  29434. weight: math.unit(150, "lb"),
  29435. name: "Front",
  29436. image: {
  29437. source: "./media/characters/kaunan/front.svg",
  29438. extra: 2890 / 2523,
  29439. bottom: 49 / 2939
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Macro",
  29446. height: math.unit(150, "feet"),
  29447. default: true
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29453. {
  29454. dressed: {
  29455. height: math.unit(175, "cm"),
  29456. weight: math.unit(60, "kg"),
  29457. name: "Dressed",
  29458. image: {
  29459. source: "./media/characters/fei/dressed.svg",
  29460. extra: 1402/1278,
  29461. bottom: 27/1429
  29462. }
  29463. },
  29464. nude: {
  29465. height: math.unit(175, "cm"),
  29466. weight: math.unit(60, "kg"),
  29467. name: "Nude",
  29468. image: {
  29469. source: "./media/characters/fei/nude.svg",
  29470. extra: 1402/1278,
  29471. bottom: 27/1429
  29472. }
  29473. },
  29474. heels: {
  29475. height: math.unit(0.466, "feet"),
  29476. name: "Heels",
  29477. image: {
  29478. source: "./media/characters/fei/heels.svg",
  29479. extra: 156/152,
  29480. bottom: 28/184
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Mortal",
  29487. height: math.unit(175, "cm")
  29488. },
  29489. {
  29490. name: "Normal",
  29491. height: math.unit(3500, "m")
  29492. },
  29493. {
  29494. name: "Stroll",
  29495. height: math.unit(18.4, "km"),
  29496. default: true
  29497. },
  29498. {
  29499. name: "Showoff",
  29500. height: math.unit(175, "km")
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29506. {
  29507. front: {
  29508. height: math.unit(7, "feet"),
  29509. weight: math.unit(1000, "kg"),
  29510. name: "Front",
  29511. image: {
  29512. source: "./media/characters/edrax/front.svg",
  29513. extra: 2838 / 2550,
  29514. bottom: 130 / 2968
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Small",
  29521. height: math.unit(7, "feet")
  29522. },
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(1500, "meters")
  29526. },
  29527. {
  29528. name: "Mega",
  29529. height: math.unit(12000000, "km"),
  29530. default: true
  29531. },
  29532. {
  29533. name: "Megamacro",
  29534. height: math.unit(10600000, "lightyears")
  29535. },
  29536. {
  29537. name: "Hypermacro",
  29538. height: math.unit(256, "yottameters")
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(10, "feet"),
  29547. weight: math.unit(750, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/clove/front.svg",
  29551. extra: 1918/1751,
  29552. bottom: 52/1970
  29553. }
  29554. },
  29555. back: {
  29556. height: math.unit(10, "feet"),
  29557. weight: math.unit(750, "lb"),
  29558. name: "Back",
  29559. image: {
  29560. source: "./media/characters/clove/back.svg",
  29561. extra: 1912/1747,
  29562. bottom: 50/1962
  29563. }
  29564. },
  29565. },
  29566. [
  29567. {
  29568. name: "Normal",
  29569. height: math.unit(10, "feet"),
  29570. default: true
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(4, "feet"),
  29579. weight: math.unit(50, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/alex-rabbit/front.svg",
  29583. extra: 507 / 458,
  29584. bottom: 18.5 / 527
  29585. }
  29586. },
  29587. back: {
  29588. height: math.unit(4, "feet"),
  29589. weight: math.unit(50, "lb"),
  29590. name: "Back",
  29591. image: {
  29592. source: "./media/characters/alex-rabbit/back.svg",
  29593. extra: 502 / 460,
  29594. bottom: 18.9 / 521
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(4, "feet"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(1 + 3 / 12, "feet"),
  29611. weight: math.unit(80, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/zander-rose/front.svg",
  29615. extra: 916 / 797,
  29616. bottom: 17 / 933
  29617. }
  29618. },
  29619. back: {
  29620. height: math.unit(1 + 3 / 12, "feet"),
  29621. weight: math.unit(80, "lb"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/zander-rose/back.svg",
  29625. extra: 903 / 779,
  29626. bottom: 31 / 934
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(1 + 3 / 12, "feet"),
  29634. default: true
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29640. {
  29641. anthro: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(150, "lb"),
  29644. name: "Anthro",
  29645. image: {
  29646. source: "./media/characters/razz/anthro.svg",
  29647. extra: 1437 / 1343,
  29648. bottom: 48 / 1485
  29649. }
  29650. },
  29651. feral: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(150, "lb"),
  29654. name: "Feral",
  29655. image: {
  29656. source: "./media/characters/razz/feral.svg",
  29657. extra: 2569 / 1385,
  29658. bottom: 95 / 2664
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Normal",
  29665. height: math.unit(6, "feet"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(9 + 4 / 12, "feet"),
  29675. weight: math.unit(500, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/morrigan/front.svg",
  29679. extra: 2707 / 2579,
  29680. bottom: 156 / 2863
  29681. }
  29682. },
  29683. },
  29684. [
  29685. {
  29686. name: "Normal",
  29687. height: math.unit(9 + 4 / 12, "feet"),
  29688. default: true
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(5, "stories"),
  29697. weight: math.unit(4000, "lb"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/jenene/front.svg",
  29701. extra: 1780 / 1710,
  29702. bottom: 57 / 1837
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Normal",
  29709. height: math.unit(5, "stories"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29716. {
  29717. taurSfw: {
  29718. height: math.unit(10, "meters"),
  29719. weight: math.unit(17500, "kg"),
  29720. name: "Taur",
  29721. image: {
  29722. source: "./media/characters/faey/taur-sfw.svg",
  29723. extra: 1200 / 968,
  29724. bottom: 41 / 1241
  29725. }
  29726. },
  29727. chestmaw: {
  29728. height: math.unit(2.01, "meters"),
  29729. name: "Chestmaw",
  29730. image: {
  29731. source: "./media/characters/faey/chestmaw.svg"
  29732. }
  29733. },
  29734. foot: {
  29735. height: math.unit(2.43, "meters"),
  29736. name: "Foot",
  29737. image: {
  29738. source: "./media/characters/faey/foot.svg"
  29739. }
  29740. },
  29741. jaws: {
  29742. height: math.unit(1.66, "meters"),
  29743. name: "Jaws",
  29744. image: {
  29745. source: "./media/characters/faey/jaws.svg"
  29746. }
  29747. },
  29748. tongues: {
  29749. height: math.unit(2.01, "meters"),
  29750. name: "Tongues",
  29751. image: {
  29752. source: "./media/characters/faey/tongues.svg"
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Small",
  29759. height: math.unit(10, "meters"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "Big",
  29764. height: math.unit(500000, "km")
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(7, "feet"),
  29773. weight: math.unit(275, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/roku/front.svg",
  29777. extra: 903 / 878,
  29778. bottom: 37 / 940
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(7, "feet"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(500, "feet")
  29791. },
  29792. {
  29793. name: "Megamacro",
  29794. height: math.unit(200, "miles")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(6 + 2 / 12, "feet"),
  29803. weight: math.unit(150, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/lira/front.svg",
  29807. extra: 1727 / 1605,
  29808. bottom: 26 / 1753
  29809. }
  29810. },
  29811. back: {
  29812. height: math.unit(6 + 2 / 12, "feet"),
  29813. weight: math.unit(150, "lb"),
  29814. name: "Back",
  29815. image: {
  29816. source: "./media/characters/lira/back.svg",
  29817. extra: 1713/1621,
  29818. bottom: 20/1733
  29819. }
  29820. },
  29821. hand: {
  29822. height: math.unit(0.75, "feet"),
  29823. name: "Hand",
  29824. image: {
  29825. source: "./media/characters/lira/hand.svg"
  29826. }
  29827. },
  29828. maw: {
  29829. height: math.unit(0.65, "feet"),
  29830. name: "Maw",
  29831. image: {
  29832. source: "./media/characters/lira/maw.svg"
  29833. }
  29834. },
  29835. pawDigi: {
  29836. height: math.unit(1.6, "feet"),
  29837. name: "Paw Digi",
  29838. image: {
  29839. source: "./media/characters/lira/paw-digi.svg"
  29840. }
  29841. },
  29842. pawPlanti: {
  29843. height: math.unit(1.4, "feet"),
  29844. name: "Paw Planti",
  29845. image: {
  29846. source: "./media/characters/lira/paw-planti.svg"
  29847. }
  29848. },
  29849. },
  29850. [
  29851. {
  29852. name: "Normal",
  29853. height: math.unit(6 + 2 / 12, "feet"),
  29854. default: true
  29855. },
  29856. {
  29857. name: "Macro",
  29858. height: math.unit(100, "feet")
  29859. },
  29860. {
  29861. name: "Macro²",
  29862. height: math.unit(1600, "feet")
  29863. },
  29864. {
  29865. name: "Planetary",
  29866. height: math.unit(20, "earths")
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(6, "feet"),
  29875. weight: math.unit(150, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/hadjet/front.svg",
  29879. extra: 1480 / 1346,
  29880. bottom: 26 / 1506
  29881. }
  29882. },
  29883. frontNsfw: {
  29884. height: math.unit(6, "feet"),
  29885. weight: math.unit(150, "lb"),
  29886. name: "Front (NSFW)",
  29887. image: {
  29888. source: "./media/characters/hadjet/front-nsfw.svg",
  29889. extra: 1440 / 1358,
  29890. bottom: 52 / 1492
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Macro",
  29897. height: math.unit(10, "stories"),
  29898. default: true
  29899. },
  29900. {
  29901. name: "Megamacro",
  29902. height: math.unit(1.5, "miles")
  29903. },
  29904. {
  29905. name: "Megamacro+",
  29906. height: math.unit(5, "miles")
  29907. },
  29908. ]
  29909. ))
  29910. characterMakers.push(() => makeCharacter(
  29911. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29912. {
  29913. side: {
  29914. height: math.unit(106, "feet"),
  29915. weight: math.unit(500, "tonnes"),
  29916. name: "Side",
  29917. image: {
  29918. source: "./media/characters/kodran/side.svg",
  29919. extra: 553 / 480,
  29920. bottom: 33 / 586
  29921. }
  29922. },
  29923. front: {
  29924. height: math.unit(132, "feet"),
  29925. weight: math.unit(500, "tonnes"),
  29926. name: "Front",
  29927. image: {
  29928. source: "./media/characters/kodran/front.svg",
  29929. extra: 667 / 643,
  29930. bottom: 42 / 709
  29931. }
  29932. },
  29933. flying: {
  29934. height: math.unit(350, "feet"),
  29935. weight: math.unit(500, "tonnes"),
  29936. name: "Flying",
  29937. image: {
  29938. source: "./media/characters/kodran/flying.svg"
  29939. }
  29940. },
  29941. foot: {
  29942. height: math.unit(33, "feet"),
  29943. name: "Foot",
  29944. image: {
  29945. source: "./media/characters/kodran/foot.svg"
  29946. }
  29947. },
  29948. footFront: {
  29949. height: math.unit(19, "feet"),
  29950. name: "Foot (Front)",
  29951. image: {
  29952. source: "./media/characters/kodran/foot-front.svg",
  29953. extra: 261 / 261,
  29954. bottom: 91 / 352
  29955. }
  29956. },
  29957. headFront: {
  29958. height: math.unit(53, "feet"),
  29959. name: "Head (Front)",
  29960. image: {
  29961. source: "./media/characters/kodran/head-front.svg"
  29962. }
  29963. },
  29964. headSide: {
  29965. height: math.unit(65, "feet"),
  29966. name: "Head (Side)",
  29967. image: {
  29968. source: "./media/characters/kodran/head-side.svg"
  29969. }
  29970. },
  29971. throat: {
  29972. height: math.unit(79, "feet"),
  29973. name: "Throat",
  29974. image: {
  29975. source: "./media/characters/kodran/throat.svg"
  29976. }
  29977. },
  29978. },
  29979. [
  29980. {
  29981. name: "Large",
  29982. height: math.unit(106, "feet"),
  29983. default: true
  29984. },
  29985. ]
  29986. ))
  29987. characterMakers.push(() => makeCharacter(
  29988. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29989. {
  29990. side: {
  29991. height: math.unit(11, "feet"),
  29992. weight: math.unit(150, "lb"),
  29993. name: "Side",
  29994. image: {
  29995. source: "./media/characters/pyxaron/side.svg",
  29996. extra: 305 / 195,
  29997. bottom: 17 / 322
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Normal",
  30004. height: math.unit(11, "feet"),
  30005. default: true
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(6, "feet"),
  30014. weight: math.unit(150, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/meep/front.svg",
  30018. extra: 88 / 80,
  30019. bottom: 6 / 94
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Fun Sized",
  30026. height: math.unit(2, "inches"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Friend Sized",
  30031. height: math.unit(8, "inches")
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(15, "feet"),
  30040. weight: math.unit(2500, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/holly-rabbit/front.svg",
  30044. extra: 1433 / 1233,
  30045. bottom: 125 / 1558
  30046. }
  30047. },
  30048. dick: {
  30049. height: math.unit(4.6, "feet"),
  30050. name: "Dick",
  30051. image: {
  30052. source: "./media/characters/holly-rabbit/dick.svg"
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(15, "feet"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(250, "feet")
  30065. },
  30066. {
  30067. name: "Macro+",
  30068. height: math.unit(2500, "feet")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(3.02, "meters"),
  30077. weight: math.unit(500, "kg"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/drena/front.svg",
  30081. extra: 282 / 243,
  30082. bottom: 8 / 290
  30083. }
  30084. },
  30085. side: {
  30086. height: math.unit(3.02, "meters"),
  30087. weight: math.unit(500, "kg"),
  30088. name: "Side",
  30089. image: {
  30090. source: "./media/characters/drena/side.svg",
  30091. extra: 280 / 245,
  30092. bottom: 10 / 290
  30093. }
  30094. },
  30095. back: {
  30096. height: math.unit(3.02, "meters"),
  30097. weight: math.unit(500, "kg"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/drena/back.svg",
  30101. extra: 278 / 243,
  30102. bottom: 2 / 280
  30103. }
  30104. },
  30105. foot: {
  30106. height: math.unit(0.75, "meters"),
  30107. name: "Foot",
  30108. image: {
  30109. source: "./media/characters/drena/foot.svg"
  30110. }
  30111. },
  30112. maw: {
  30113. height: math.unit(0.82, "meters"),
  30114. name: "Maw",
  30115. image: {
  30116. source: "./media/characters/drena/maw.svg"
  30117. }
  30118. },
  30119. eating: {
  30120. height: math.unit(0.75, "meters"),
  30121. name: "Eating",
  30122. image: {
  30123. source: "./media/characters/drena/eating.svg"
  30124. }
  30125. },
  30126. rump: {
  30127. height: math.unit(0.93, "meters"),
  30128. name: "Rump",
  30129. image: {
  30130. source: "./media/characters/drena/rump.svg"
  30131. }
  30132. },
  30133. },
  30134. [
  30135. {
  30136. name: "Normal",
  30137. height: math.unit(3.02, "meters"),
  30138. default: true
  30139. },
  30140. ]
  30141. ))
  30142. characterMakers.push(() => makeCharacter(
  30143. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30144. {
  30145. front: {
  30146. height: math.unit(6 + 4 / 12, "feet"),
  30147. weight: math.unit(250, "lb"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/remmyzilla/front.svg",
  30151. extra: 4033 / 3588,
  30152. bottom: 123 / 4156
  30153. }
  30154. },
  30155. back: {
  30156. height: math.unit(6 + 4 / 12, "feet"),
  30157. weight: math.unit(250, "lb"),
  30158. name: "Back",
  30159. image: {
  30160. source: "./media/characters/remmyzilla/back.svg",
  30161. extra: 2687 / 2555,
  30162. bottom: 48 / 2735
  30163. }
  30164. },
  30165. paw: {
  30166. height: math.unit(1.73, "feet"),
  30167. name: "Paw",
  30168. image: {
  30169. source: "./media/characters/remmyzilla/paw.svg"
  30170. },
  30171. extraAttributes: {
  30172. "toeSize": {
  30173. name: "Toe Size",
  30174. power: 2,
  30175. type: "area",
  30176. base: math.unit(0.0035, "m^2")
  30177. },
  30178. "padSize": {
  30179. name: "Pad Size",
  30180. power: 2,
  30181. type: "area",
  30182. base: math.unit(0.015, "m^2")
  30183. },
  30184. "pawsize": {
  30185. name: "Paw Size",
  30186. power: 2,
  30187. type: "area",
  30188. base: math.unit(0.072, "m^2")
  30189. },
  30190. }
  30191. },
  30192. maw: {
  30193. height: math.unit(1.73, "feet"),
  30194. name: "Maw",
  30195. image: {
  30196. source: "./media/characters/remmyzilla/maw.svg"
  30197. }
  30198. },
  30199. },
  30200. [
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(6 + 4 / 12, "feet")
  30204. },
  30205. {
  30206. name: "Minimacro",
  30207. height: math.unit(12 + 8 / 12, "feet")
  30208. },
  30209. {
  30210. name: "Normal",
  30211. height: math.unit(640, "feet"),
  30212. default: true
  30213. },
  30214. {
  30215. name: "Megamacro",
  30216. height: math.unit(6400, "feet")
  30217. },
  30218. {
  30219. name: "Gigamacro",
  30220. height: math.unit(64000, "miles")
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30226. {
  30227. front: {
  30228. height: math.unit(2.5, "meters"),
  30229. weight: math.unit(300, "lb"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/lawrence/front.svg",
  30233. extra: 357 / 335,
  30234. bottom: 30 / 387
  30235. }
  30236. },
  30237. back: {
  30238. height: math.unit(2.5, "meters"),
  30239. weight: math.unit(300, "lb"),
  30240. name: "Back",
  30241. image: {
  30242. source: "./media/characters/lawrence/back.svg",
  30243. extra: 357 / 338,
  30244. bottom: 16 / 373
  30245. }
  30246. },
  30247. head: {
  30248. height: math.unit(0.9, "meter"),
  30249. name: "Head",
  30250. image: {
  30251. source: "./media/characters/lawrence/head.svg"
  30252. }
  30253. },
  30254. maw: {
  30255. height: math.unit(0.7, "meter"),
  30256. name: "Maw",
  30257. image: {
  30258. source: "./media/characters/lawrence/maw.svg"
  30259. }
  30260. },
  30261. footBottom: {
  30262. height: math.unit(0.5, "meter"),
  30263. name: "Foot (Bottom)",
  30264. image: {
  30265. source: "./media/characters/lawrence/foot-bottom.svg"
  30266. }
  30267. },
  30268. footTop: {
  30269. height: math.unit(0.5, "meter"),
  30270. name: "Foot (Top)",
  30271. image: {
  30272. source: "./media/characters/lawrence/foot-top.svg"
  30273. }
  30274. },
  30275. },
  30276. [
  30277. {
  30278. name: "Normal",
  30279. height: math.unit(2.5, "meters"),
  30280. default: true
  30281. },
  30282. {
  30283. name: "Macro",
  30284. height: math.unit(95, "meters")
  30285. },
  30286. {
  30287. name: "Megamacro",
  30288. height: math.unit(150, "km")
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30294. {
  30295. front: {
  30296. height: math.unit(4.2, "meters"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/sydney/front.svg",
  30300. extra: 1323 / 1277,
  30301. bottom: 111 / 1434
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(4.2, "meters"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30315. {
  30316. back: {
  30317. height: math.unit(201, "feet"),
  30318. name: "Back",
  30319. image: {
  30320. source: "./media/characters/jessica/back.svg",
  30321. extra: 273 / 259,
  30322. bottom: 7 / 280
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(201, "feet"),
  30330. default: true
  30331. },
  30332. {
  30333. name: "Megamacro",
  30334. height: math.unit(8, "miles")
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30340. {
  30341. side: {
  30342. height: math.unit(5.6, "m"),
  30343. weight: math.unit(8000, "kg"),
  30344. name: "Side",
  30345. image: {
  30346. source: "./media/characters/victoria/side.svg",
  30347. extra: 1542/1229,
  30348. bottom: 124/1666
  30349. }
  30350. },
  30351. maw: {
  30352. height: math.unit(7.14, "feet"),
  30353. name: "Maw",
  30354. image: {
  30355. source: "./media/characters/victoria/maw.svg"
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Normal",
  30362. height: math.unit(5.6, "m"),
  30363. default: true
  30364. },
  30365. ]
  30366. ))
  30367. characterMakers.push(() => makeCharacter(
  30368. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30369. {
  30370. front: {
  30371. height: math.unit(5 + 6 / 12, "feet"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/cat/front.svg",
  30375. extra: 1449/1295,
  30376. bottom: 34/1483
  30377. },
  30378. form: "cat",
  30379. default: true
  30380. },
  30381. back: {
  30382. height: math.unit(5 + 6 / 12, "feet"),
  30383. name: "Back",
  30384. image: {
  30385. source: "./media/characters/cat/back.svg",
  30386. extra: 1466/1301,
  30387. bottom: 19/1485
  30388. },
  30389. form: "cat"
  30390. },
  30391. taur: {
  30392. height: math.unit(7, "feet"),
  30393. name: "Taur",
  30394. image: {
  30395. source: "./media/characters/cat/taur.svg",
  30396. extra: 1389/1233,
  30397. bottom: 83/1472
  30398. },
  30399. form: "taur",
  30400. default: true
  30401. },
  30402. lucarioFront: {
  30403. height: math.unit(4, "feet"),
  30404. name: "Lucario (Front)",
  30405. image: {
  30406. source: "./media/characters/cat/lucario-front.svg",
  30407. extra: 1149/1019,
  30408. bottom: 84/1233
  30409. },
  30410. form: "lucario",
  30411. default: true
  30412. },
  30413. lucarioBack: {
  30414. height: math.unit(4, "feet"),
  30415. name: "Lucario (Back)",
  30416. image: {
  30417. source: "./media/characters/cat/lucario-back.svg",
  30418. extra: 1190/1059,
  30419. bottom: 33/1223
  30420. },
  30421. form: "lucario"
  30422. },
  30423. megaLucario: {
  30424. height: math.unit(4, "feet"),
  30425. name: "Mega Lucario",
  30426. image: {
  30427. source: "./media/characters/cat/mega-lucario.svg",
  30428. extra: 1515 / 1319,
  30429. bottom: 63 / 1578
  30430. },
  30431. form: "lucario"
  30432. },
  30433. nickit: {
  30434. height: math.unit(2, "feet"),
  30435. name: "Nickit",
  30436. image: {
  30437. source: "./media/characters/cat/nickit.svg",
  30438. extra: 1980 / 1585,
  30439. bottom: 102 / 2082
  30440. },
  30441. form: "nickit",
  30442. default: true
  30443. },
  30444. lopunnyFront: {
  30445. height: math.unit(5, "feet"),
  30446. name: "Lopunny (Front)",
  30447. image: {
  30448. source: "./media/characters/cat/lopunny-front.svg",
  30449. extra: 1782 / 1469,
  30450. bottom: 38 / 1820
  30451. },
  30452. form: "lopunny",
  30453. default: true
  30454. },
  30455. lopunnyBack: {
  30456. height: math.unit(5, "feet"),
  30457. name: "Lopunny (Back)",
  30458. image: {
  30459. source: "./media/characters/cat/lopunny-back.svg",
  30460. extra: 1660 / 1490,
  30461. bottom: 25 / 1685
  30462. },
  30463. form: "lopunny"
  30464. },
  30465. },
  30466. [
  30467. {
  30468. name: "Really small",
  30469. height: math.unit(1, "nm")
  30470. },
  30471. {
  30472. name: "Micro",
  30473. height: math.unit(5, "inches")
  30474. },
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(5 + 6 / 12, "feet"),
  30478. default: true
  30479. },
  30480. {
  30481. name: "Macro",
  30482. height: math.unit(50, "feet")
  30483. },
  30484. {
  30485. name: "Macro+",
  30486. height: math.unit(150, "feet")
  30487. },
  30488. {
  30489. name: "Megamacro",
  30490. height: math.unit(100, "miles")
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(63.4, "meters"),
  30499. weight: math.unit(3.28349e+6, "kilograms"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/kirina-violet/front.svg",
  30503. extra: 2812 / 2725,
  30504. bottom: 0 / 2812
  30505. }
  30506. },
  30507. back: {
  30508. height: math.unit(63.4, "meters"),
  30509. weight: math.unit(3.28349e+6, "kilograms"),
  30510. name: "Back",
  30511. image: {
  30512. source: "./media/characters/kirina-violet/back.svg",
  30513. extra: 2812 / 2725,
  30514. bottom: 0 / 2812
  30515. }
  30516. },
  30517. mouth: {
  30518. height: math.unit(4.35, "meters"),
  30519. name: "Mouth",
  30520. image: {
  30521. source: "./media/characters/kirina-violet/mouth.svg"
  30522. }
  30523. },
  30524. paw: {
  30525. height: math.unit(5.6, "meters"),
  30526. name: "Paw",
  30527. image: {
  30528. source: "./media/characters/kirina-violet/paw.svg"
  30529. }
  30530. },
  30531. tail: {
  30532. height: math.unit(18, "meters"),
  30533. name: "Tail",
  30534. image: {
  30535. source: "./media/characters/kirina-violet/tail.svg"
  30536. }
  30537. },
  30538. },
  30539. [
  30540. {
  30541. name: "Macro",
  30542. height: math.unit(63.4, "meters"),
  30543. default: true
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30549. {
  30550. front: {
  30551. height: math.unit(75, "feet"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/cat-gigachu/front.svg",
  30555. extra: 1239/1027,
  30556. bottom: 32/1271
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(75, "feet"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/cat-gigachu/back.svg",
  30564. extra: 1229/1030,
  30565. bottom: 9/1238
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Dynamax",
  30572. height: math.unit(75, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(6, "feet"),
  30582. weight: math.unit(150, "lb"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/sfaiyan/front.svg",
  30586. extra: 999 / 978,
  30587. bottom: 5 / 1004
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Normal",
  30594. height: math.unit(1.82, "meters")
  30595. },
  30596. {
  30597. name: "Giant",
  30598. height: math.unit(2.27, "km"),
  30599. default: true
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30605. {
  30606. front: {
  30607. height: math.unit(179, "cm"),
  30608. weight: math.unit(100, "kg"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/raunehkeli/front.svg",
  30612. extra: 1934 / 1926,
  30613. bottom: 0 / 1934
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Normal",
  30620. height: math.unit(179, "cm")
  30621. },
  30622. {
  30623. name: "Maximum",
  30624. height: math.unit(575, "meters"),
  30625. default: true
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(6, "feet"),
  30634. weight: math.unit(150, "lb"),
  30635. name: "Front",
  30636. image: {
  30637. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30638. extra: 2625 / 2518,
  30639. bottom: 60 / 2685
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Normal",
  30646. height: math.unit(6 + 2 / 12, "feet")
  30647. },
  30648. {
  30649. name: "Macro",
  30650. height: math.unit(1180, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30657. {
  30658. front: {
  30659. height: math.unit(5 + 6 / 12, "feet"),
  30660. weight: math.unit(108, "lb"),
  30661. name: "Front",
  30662. image: {
  30663. source: "./media/characters/lilith-zott/front.svg",
  30664. extra: 2510 / 2238,
  30665. bottom: 100 / 2610
  30666. }
  30667. },
  30668. frontDressed: {
  30669. height: math.unit(5 + 6 / 12, "feet"),
  30670. weight: math.unit(108, "lb"),
  30671. name: "Front (Dressed)",
  30672. image: {
  30673. source: "./media/characters/lilith-zott/front-dressed.svg",
  30674. extra: 2510 / 2238,
  30675. bottom: 100 / 2610
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Normal",
  30682. height: math.unit(5 + 6 / 12, "feet")
  30683. },
  30684. {
  30685. name: "Macro",
  30686. height: math.unit(1030, "feet"),
  30687. default: true
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30693. {
  30694. front: {
  30695. height: math.unit(6, "feet"),
  30696. weight: math.unit(150, "lb"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30700. extra: 2567 / 2435,
  30701. bottom: 39 / 2606
  30702. }
  30703. },
  30704. frontSuper: {
  30705. height: math.unit(6, "feet"),
  30706. name: "Front (Super)",
  30707. image: {
  30708. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30709. extra: 2567 / 2435,
  30710. bottom: 39 / 2606
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(5 + 10 / 12, "feet")
  30718. },
  30719. {
  30720. name: "Macro",
  30721. height: math.unit(1100, "feet"),
  30722. default: true
  30723. },
  30724. ]
  30725. ))
  30726. characterMakers.push(() => makeCharacter(
  30727. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30728. {
  30729. front: {
  30730. height: math.unit(100, "miles"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/sona/front.svg",
  30734. extra: 2433 / 2201,
  30735. bottom: 53 / 2486
  30736. }
  30737. },
  30738. foot: {
  30739. height: math.unit(16.1, "miles"),
  30740. name: "Foot",
  30741. image: {
  30742. source: "./media/characters/sona/foot.svg"
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Macro",
  30749. height: math.unit(100, "miles"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6, "feet"),
  30759. weight: math.unit(150, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/bailey/front.svg",
  30763. extra: 1778 / 1724,
  30764. bottom: 30 / 1808
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Micro",
  30771. height: math.unit(4, "inches")
  30772. },
  30773. {
  30774. name: "Normal",
  30775. height: math.unit(5 + 5 / 12, "feet"),
  30776. default: true
  30777. },
  30778. {
  30779. name: "Macro",
  30780. height: math.unit(250, "feet")
  30781. },
  30782. {
  30783. name: "Megamacro",
  30784. height: math.unit(100, "miles")
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(5 + 2 / 12, "feet"),
  30793. weight: math.unit(120, "lb"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/snaps/front.svg",
  30797. extra: 2370 / 2177,
  30798. bottom: 48 / 2418
  30799. }
  30800. },
  30801. back: {
  30802. height: math.unit(5 + 2 / 12, "feet"),
  30803. weight: math.unit(120, "lb"),
  30804. name: "Back",
  30805. image: {
  30806. source: "./media/characters/snaps/back.svg",
  30807. extra: 2408 / 2258,
  30808. bottom: 15 / 2423
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Micro",
  30815. height: math.unit(9, "inches")
  30816. },
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(5 + 2 / 12, "feet"),
  30820. default: true
  30821. },
  30822. {
  30823. name: "Mini Macro",
  30824. height: math.unit(10, "feet")
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(1.8, "meters"),
  30833. weight: math.unit(85, "kg"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/azteck/front.svg",
  30837. extra: 2815 / 2625,
  30838. bottom: 89 / 2904
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(1.8, "meters"),
  30843. weight: math.unit(85, "kg"),
  30844. name: "Back",
  30845. image: {
  30846. source: "./media/characters/azteck/back.svg",
  30847. extra: 2856 / 2648,
  30848. bottom: 85 / 2941
  30849. }
  30850. },
  30851. frontDressed: {
  30852. height: math.unit(1.8, "meters"),
  30853. weight: math.unit(85, "kg"),
  30854. name: "Front (Dressed)",
  30855. image: {
  30856. source: "./media/characters/azteck/front-dressed.svg",
  30857. extra: 2147 / 2003,
  30858. bottom: 68 / 2215
  30859. }
  30860. },
  30861. head: {
  30862. height: math.unit(0.47, "meters"),
  30863. weight: math.unit(85, "kg"),
  30864. name: "Head",
  30865. image: {
  30866. source: "./media/characters/azteck/head.svg"
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Bite sized",
  30873. height: math.unit(16, "cm")
  30874. },
  30875. {
  30876. name: "Normal",
  30877. height: math.unit(1.8, "meters"),
  30878. default: true
  30879. },
  30880. ]
  30881. ))
  30882. characterMakers.push(() => makeCharacter(
  30883. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30884. {
  30885. front: {
  30886. height: math.unit(6, "feet"),
  30887. weight: math.unit(150, "lb"),
  30888. name: "Front",
  30889. image: {
  30890. source: "./media/characters/pidge/front.svg",
  30891. extra: 1936/1820,
  30892. bottom: 0/1936
  30893. }
  30894. },
  30895. back: {
  30896. height: math.unit(6, "feet"),
  30897. weight: math.unit(150, "lb"),
  30898. name: "Back",
  30899. image: {
  30900. source: "./media/characters/pidge/back.svg",
  30901. extra: 1938/1843,
  30902. bottom: 0/1938
  30903. }
  30904. },
  30905. casual: {
  30906. height: math.unit(6, "feet"),
  30907. weight: math.unit(150, "lb"),
  30908. name: "Casual",
  30909. image: {
  30910. source: "./media/characters/pidge/casual.svg",
  30911. extra: 1936/1820,
  30912. bottom: 0/1936
  30913. }
  30914. },
  30915. tech: {
  30916. height: math.unit(6, "feet"),
  30917. weight: math.unit(150, "lb"),
  30918. name: "Tech",
  30919. image: {
  30920. source: "./media/characters/pidge/tech.svg",
  30921. extra: 1802/1682,
  30922. bottom: 0/1802
  30923. }
  30924. },
  30925. head: {
  30926. height: math.unit(1.61, "feet"),
  30927. name: "Head",
  30928. image: {
  30929. source: "./media/characters/pidge/head.svg"
  30930. }
  30931. },
  30932. collar: {
  30933. height: math.unit(0.82, "feet"),
  30934. name: "Collar",
  30935. image: {
  30936. source: "./media/characters/pidge/collar.svg"
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Macro",
  30943. height: math.unit(2, "mile"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "PUPPY",
  30948. height: math.unit(20, "miles")
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30954. {
  30955. front: {
  30956. height: math.unit(6, "feet"),
  30957. weight: math.unit(150, "lb"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/en/front.svg",
  30961. extra: 1697 / 1563,
  30962. bottom: 103 / 1800
  30963. }
  30964. },
  30965. back: {
  30966. height: math.unit(6, "feet"),
  30967. weight: math.unit(150, "lb"),
  30968. name: "Back",
  30969. image: {
  30970. source: "./media/characters/en/back.svg",
  30971. extra: 1700 / 1570,
  30972. bottom: 51 / 1751
  30973. }
  30974. },
  30975. frontDressed: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(150, "lb"),
  30978. name: "Front (Dressed)",
  30979. image: {
  30980. source: "./media/characters/en/front-dressed.svg",
  30981. extra: 1697 / 1563,
  30982. bottom: 103 / 1800
  30983. }
  30984. },
  30985. backDressed: {
  30986. height: math.unit(6, "feet"),
  30987. weight: math.unit(150, "lb"),
  30988. name: "Back (Dressed)",
  30989. image: {
  30990. source: "./media/characters/en/back-dressed.svg",
  30991. extra: 1700 / 1570,
  30992. bottom: 51 / 1751
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Macro",
  30999. height: math.unit(210, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(6, "feet"),
  31009. weight: math.unit(150, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/haze-orris/front.svg",
  31013. extra: 3975 / 3525,
  31014. bottom: 137 / 4112
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Micro",
  31021. height: math.unit(150, "mm"),
  31022. default: true
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(6, "feet"),
  31031. weight: math.unit(150, "lb"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/casselene-yaro/front.svg",
  31035. extra: 4721 / 4541,
  31036. bottom: 82 / 4803
  31037. }
  31038. },
  31039. back: {
  31040. height: math.unit(6, "feet"),
  31041. weight: math.unit(150, "lb"),
  31042. name: "Back",
  31043. image: {
  31044. source: "./media/characters/casselene-yaro/back.svg",
  31045. extra: 4569 / 4377,
  31046. bottom: 69 / 4638
  31047. }
  31048. },
  31049. dressed: {
  31050. height: math.unit(6, "feet"),
  31051. weight: math.unit(150, "lb"),
  31052. name: "Dressed",
  31053. image: {
  31054. source: "./media/characters/casselene-yaro/dressed.svg",
  31055. extra: 4721 / 4541,
  31056. bottom: 82 / 4803
  31057. }
  31058. },
  31059. maw: {
  31060. height: math.unit(1, "feet"),
  31061. name: "Maw",
  31062. image: {
  31063. source: "./media/characters/casselene-yaro/maw.svg"
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(190, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(10, "feet"),
  31080. weight: math.unit(15015, "lb"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/platine/front.svg",
  31084. extra: 1741/1650,
  31085. bottom: 84/1825
  31086. }
  31087. },
  31088. side: {
  31089. height: math.unit(10, "feet"),
  31090. weight: math.unit(15015, "lb"),
  31091. name: "Side",
  31092. image: {
  31093. source: "./media/characters/platine/side.svg",
  31094. extra: 1790/1705,
  31095. bottom: 29/1819
  31096. }
  31097. },
  31098. },
  31099. [
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(10, "feet"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Macro",
  31107. height: math.unit(100, "feet")
  31108. },
  31109. {
  31110. name: "Megamacro",
  31111. height: math.unit(1000, "feet")
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(15 + 5 / 12, "feet"),
  31120. weight: math.unit(4600, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/neapolitan-ananassa/front.svg",
  31124. extra: 2903 / 2736,
  31125. bottom: 0 / 2903
  31126. }
  31127. },
  31128. side: {
  31129. height: math.unit(15 + 5 / 12, "feet"),
  31130. weight: math.unit(4600, "lb"),
  31131. name: "Side",
  31132. image: {
  31133. source: "./media/characters/neapolitan-ananassa/side.svg",
  31134. extra: 2925 / 2719,
  31135. bottom: 0 / 2925
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(15 + 5 / 12, "feet"),
  31140. weight: math.unit(4600, "lb"),
  31141. name: "Back",
  31142. image: {
  31143. source: "./media/characters/neapolitan-ananassa/back.svg",
  31144. extra: 2903 / 2736,
  31145. bottom: 0 / 2903
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(15 + 5 / 12, "feet"),
  31153. default: true
  31154. },
  31155. {
  31156. name: "Post-Millenium",
  31157. height: math.unit(35 + 5 / 12, "feet")
  31158. },
  31159. {
  31160. name: "Post-Era",
  31161. height: math.unit(450 + 5 / 12, "feet")
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31167. {
  31168. front: {
  31169. height: math.unit(300, "meters"),
  31170. weight: math.unit(125000, "tonnes"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/pazuzu/front.svg",
  31174. extra: 877 / 794,
  31175. bottom: 47 / 924
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Macro",
  31182. height: math.unit(300, "meters"),
  31183. default: true
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31189. {
  31190. side: {
  31191. height: math.unit(10 + 7 / 12, "feet"),
  31192. weight: math.unit(2.5, "tons"),
  31193. name: "Side",
  31194. image: {
  31195. source: "./media/characters/aasha/side.svg",
  31196. extra: 1345 / 1245,
  31197. bottom: 111 / 1456
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(10 + 7 / 12, "feet"),
  31202. weight: math.unit(2.5, "tons"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/aasha/back.svg",
  31206. extra: 1133 / 1057,
  31207. bottom: 257 / 1390
  31208. }
  31209. },
  31210. },
  31211. [
  31212. {
  31213. name: "Normal",
  31214. height: math.unit(10 + 7 / 12, "feet"),
  31215. default: true
  31216. },
  31217. ]
  31218. ))
  31219. characterMakers.push(() => makeCharacter(
  31220. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31221. {
  31222. front: {
  31223. height: math.unit(6 + 3 / 12, "feet"),
  31224. name: "Front",
  31225. image: {
  31226. source: "./media/characters/nevan/front.svg",
  31227. extra: 704 / 704,
  31228. bottom: 28 / 732
  31229. }
  31230. },
  31231. back: {
  31232. height: math.unit(6 + 3 / 12, "feet"),
  31233. name: "Back",
  31234. image: {
  31235. source: "./media/characters/nevan/back.svg",
  31236. extra: 714 / 714,
  31237. bottom: 21 / 735
  31238. }
  31239. },
  31240. frontFlaccid: {
  31241. height: math.unit(6 + 3 / 12, "feet"),
  31242. name: "Front (Flaccid)",
  31243. image: {
  31244. source: "./media/characters/nevan/front-flaccid.svg",
  31245. extra: 704 / 704,
  31246. bottom: 28 / 732
  31247. }
  31248. },
  31249. frontErect: {
  31250. height: math.unit(6 + 3 / 12, "feet"),
  31251. name: "Front (Erect)",
  31252. image: {
  31253. source: "./media/characters/nevan/front-erect.svg",
  31254. extra: 704 / 704,
  31255. bottom: 28 / 732
  31256. }
  31257. },
  31258. backFlaccid: {
  31259. height: math.unit(6 + 3 / 12, "feet"),
  31260. name: "Back (Flaccid)",
  31261. image: {
  31262. source: "./media/characters/nevan/back-flaccid.svg",
  31263. extra: 714 / 714,
  31264. bottom: 21 / 735
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(6 + 3 / 12, "feet"),
  31272. default: true
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31278. {
  31279. front: {
  31280. height: math.unit(4, "feet"),
  31281. name: "Front",
  31282. image: {
  31283. source: "./media/characters/arhan/front.svg",
  31284. extra: 3368 / 3133,
  31285. bottom: 0 / 3368
  31286. }
  31287. },
  31288. side: {
  31289. height: math.unit(4, "feet"),
  31290. name: "Side",
  31291. image: {
  31292. source: "./media/characters/arhan/side.svg",
  31293. extra: 3347 / 3105,
  31294. bottom: 0 / 3347
  31295. }
  31296. },
  31297. tongue: {
  31298. height: math.unit(1.42, "feet"),
  31299. name: "Tongue",
  31300. image: {
  31301. source: "./media/characters/arhan/tongue.svg"
  31302. }
  31303. },
  31304. head: {
  31305. height: math.unit(0.85, "feet"),
  31306. name: "Head",
  31307. image: {
  31308. source: "./media/characters/arhan/head.svg"
  31309. }
  31310. },
  31311. },
  31312. [
  31313. {
  31314. name: "Normal",
  31315. height: math.unit(4, "feet"),
  31316. default: true
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31322. {
  31323. front: {
  31324. height: math.unit(5 + 7.5 / 12, "feet"),
  31325. weight: math.unit(120, "lb"),
  31326. name: "Front",
  31327. image: {
  31328. source: "./media/characters/digi-duncan/front.svg",
  31329. extra: 330 / 326,
  31330. bottom: 16 / 346
  31331. }
  31332. },
  31333. side: {
  31334. height: math.unit(5 + 7.5 / 12, "feet"),
  31335. weight: math.unit(120, "lb"),
  31336. name: "Side",
  31337. image: {
  31338. source: "./media/characters/digi-duncan/side.svg",
  31339. extra: 341 / 337,
  31340. bottom: 1 / 342
  31341. }
  31342. },
  31343. back: {
  31344. height: math.unit(5 + 7.5 / 12, "feet"),
  31345. weight: math.unit(120, "lb"),
  31346. name: "Back",
  31347. image: {
  31348. source: "./media/characters/digi-duncan/back.svg",
  31349. extra: 330 / 326,
  31350. bottom: 12 / 342
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Speck",
  31357. height: math.unit(0.25, "mm")
  31358. },
  31359. {
  31360. name: "Micro",
  31361. height: math.unit(5, "mm")
  31362. },
  31363. {
  31364. name: "Tiny",
  31365. height: math.unit(0.5, "inches"),
  31366. default: true
  31367. },
  31368. {
  31369. name: "Human",
  31370. height: math.unit(5 + 7.5 / 12, "feet")
  31371. },
  31372. {
  31373. name: "Minigiant",
  31374. height: math.unit(8 + 5.25, "feet")
  31375. },
  31376. {
  31377. name: "Giant",
  31378. height: math.unit(2000, "feet")
  31379. },
  31380. {
  31381. name: "Mega",
  31382. height: math.unit(371.1, "miles")
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(2, "meters"),
  31391. weight: math.unit(350, "kg"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31395. extra: 898 / 838,
  31396. bottom: 9 / 907
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Micro",
  31403. height: math.unit(8, "meters")
  31404. },
  31405. {
  31406. name: "Normal",
  31407. height: math.unit(50, "meters"),
  31408. default: true
  31409. },
  31410. {
  31411. name: "Macro",
  31412. height: math.unit(500, "meters")
  31413. },
  31414. ]
  31415. ))
  31416. characterMakers.push(() => makeCharacter(
  31417. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31418. {
  31419. front: {
  31420. height: math.unit(6 + 6 / 12, "feet"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/khardesh/front.svg",
  31424. extra: 1788/1596,
  31425. bottom: 66/1854
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(6 + 6 / 12, "feet"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/khardesh/back.svg",
  31433. extra: 1781/1584,
  31434. bottom: 68/1849
  31435. }
  31436. },
  31437. },
  31438. [
  31439. {
  31440. name: "Normal",
  31441. height: math.unit(6 + 6 / 12, "feet"),
  31442. default: true
  31443. },
  31444. {
  31445. name: "Normal+",
  31446. height: math.unit(4, "meters")
  31447. },
  31448. {
  31449. name: "Macro",
  31450. height: math.unit(50, "meters")
  31451. },
  31452. {
  31453. name: "Macro+",
  31454. height: math.unit(100, "meters")
  31455. },
  31456. {
  31457. name: "Megamacro",
  31458. height: math.unit(20, "km")
  31459. },
  31460. ]
  31461. ))
  31462. characterMakers.push(() => makeCharacter(
  31463. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31464. {
  31465. front: {
  31466. height: math.unit(6, "feet"),
  31467. weight: math.unit(150, "lb"),
  31468. name: "Front",
  31469. image: {
  31470. source: "./media/characters/kosho/front.svg",
  31471. extra: 1847 / 1847,
  31472. bottom: 86 / 1933
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Second-stage micro",
  31479. height: math.unit(0.5, "inches")
  31480. },
  31481. {
  31482. name: "First-stage micro",
  31483. height: math.unit(6, "inches")
  31484. },
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(6, "feet"),
  31488. default: true
  31489. },
  31490. {
  31491. name: "First-stage macro",
  31492. height: math.unit(72, "feet")
  31493. },
  31494. {
  31495. name: "Second-stage macro",
  31496. height: math.unit(864, "feet")
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31502. {
  31503. normal: {
  31504. height: math.unit(4 + 6 / 12, "feet"),
  31505. name: "Normal",
  31506. image: {
  31507. source: "./media/characters/hydra/normal.svg",
  31508. extra: 2833 / 2634,
  31509. bottom: 68 / 2901
  31510. }
  31511. },
  31512. smol: {
  31513. height: math.unit(0.705, "inches"),
  31514. name: "Smol",
  31515. image: {
  31516. source: "./media/characters/hydra/smol.svg",
  31517. extra: 2715 / 2540,
  31518. bottom: 0 / 2715
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(4 + 6 / 12, "feet"),
  31526. default: true
  31527. }
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(0.6, "cm"),
  31535. name: "Front",
  31536. image: {
  31537. source: "./media/characters/daz/front.svg",
  31538. extra: 1682 / 1164,
  31539. bottom: 42 / 1724
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(0.6, "cm"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(6, "feet"),
  31556. weight: math.unit(235, "lb"),
  31557. name: "Front",
  31558. image: {
  31559. source: "./media/characters/theo-pangolin/front.svg",
  31560. extra: 1996 / 1969,
  31561. bottom: 115 / 2111
  31562. }
  31563. },
  31564. back: {
  31565. height: math.unit(6, "feet"),
  31566. weight: math.unit(235, "lb"),
  31567. name: "Back",
  31568. image: {
  31569. source: "./media/characters/theo-pangolin/back.svg",
  31570. extra: 1979 / 1979,
  31571. bottom: 40 / 2019
  31572. }
  31573. },
  31574. feral: {
  31575. height: math.unit(2, "feet"),
  31576. weight: math.unit(30, "lb"),
  31577. name: "Feral",
  31578. image: {
  31579. source: "./media/characters/theo-pangolin/feral.svg",
  31580. extra: 803 / 791,
  31581. bottom: 181 / 984
  31582. }
  31583. },
  31584. footFive: {
  31585. height: math.unit(1.43, "feet"),
  31586. name: "Foot (Five Toes)",
  31587. image: {
  31588. source: "./media/characters/theo-pangolin/foot-five.svg"
  31589. }
  31590. },
  31591. footFour: {
  31592. height: math.unit(1.43, "feet"),
  31593. name: "Foot (Four Toes)",
  31594. image: {
  31595. source: "./media/characters/theo-pangolin/foot-four.svg"
  31596. }
  31597. },
  31598. handFour: {
  31599. height: math.unit(0.81, "feet"),
  31600. name: "Hand (Four Fingers)",
  31601. image: {
  31602. source: "./media/characters/theo-pangolin/hand-four.svg"
  31603. }
  31604. },
  31605. handThree: {
  31606. height: math.unit(0.81, "feet"),
  31607. name: "Hand (Three Fingers)",
  31608. image: {
  31609. source: "./media/characters/theo-pangolin/hand-three.svg"
  31610. }
  31611. },
  31612. headFront: {
  31613. height: math.unit(1.37, "feet"),
  31614. name: "Head (Front)",
  31615. image: {
  31616. source: "./media/characters/theo-pangolin/head-front.svg"
  31617. }
  31618. },
  31619. headSide: {
  31620. height: math.unit(1.43, "feet"),
  31621. name: "Head (Side)",
  31622. image: {
  31623. source: "./media/characters/theo-pangolin/head-side.svg"
  31624. }
  31625. },
  31626. tongue: {
  31627. height: math.unit(2.29, "feet"),
  31628. name: "Tongue",
  31629. image: {
  31630. source: "./media/characters/theo-pangolin/tongue.svg"
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(6, "feet")
  31638. },
  31639. {
  31640. name: "Macro",
  31641. height: math.unit(400, "feet"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(6, "inches"),
  31651. weight: math.unit(0.036, "kg"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/renée/front.svg",
  31655. extra: 900 / 886,
  31656. bottom: 8 / 908
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Nano",
  31663. height: math.unit(1, "nm")
  31664. },
  31665. {
  31666. name: "Micro",
  31667. height: math.unit(1, "mm")
  31668. },
  31669. {
  31670. name: "Normal",
  31671. height: math.unit(6, "inches")
  31672. },
  31673. {
  31674. name: "Macro",
  31675. height: math.unit(2000, "feet"),
  31676. default: true
  31677. },
  31678. {
  31679. name: "Megamacro",
  31680. height: math.unit(2, "km")
  31681. },
  31682. {
  31683. name: "Gigamacro",
  31684. height: math.unit(2000, "km")
  31685. },
  31686. {
  31687. name: "Teramacro",
  31688. height: math.unit(250000, "km")
  31689. },
  31690. ]
  31691. ))
  31692. characterMakers.push(() => makeCharacter(
  31693. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31694. {
  31695. front: {
  31696. height: math.unit(4, "meters"),
  31697. weight: math.unit(150, "kg"),
  31698. name: "Front",
  31699. image: {
  31700. source: "./media/characters/caledvwlch/front.svg",
  31701. extra: 1760 / 1551,
  31702. bottom: 28 / 1788
  31703. }
  31704. },
  31705. side: {
  31706. height: math.unit(4, "meters"),
  31707. weight: math.unit(150, "kg"),
  31708. name: "Side",
  31709. image: {
  31710. source: "./media/characters/caledvwlch/side.svg",
  31711. extra: 1605 / 1536,
  31712. bottom: 31 / 1636
  31713. }
  31714. },
  31715. back: {
  31716. height: math.unit(4, "meters"),
  31717. weight: math.unit(150, "kg"),
  31718. name: "Back",
  31719. image: {
  31720. source: "./media/characters/caledvwlch/back.svg",
  31721. extra: 1635 / 1565,
  31722. bottom: 27 / 1662
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "\"Incognito\"",
  31729. height: math.unit(4, "meters")
  31730. },
  31731. {
  31732. name: "Small rampage",
  31733. height: math.unit(600, "meters")
  31734. },
  31735. {
  31736. name: "Mega",
  31737. height: math.unit(30, "km")
  31738. },
  31739. {
  31740. name: "Home-size",
  31741. height: math.unit(50, "km"),
  31742. default: true
  31743. },
  31744. {
  31745. name: "Giga",
  31746. height: math.unit(300, "km")
  31747. },
  31748. {
  31749. name: "Lounging",
  31750. height: math.unit(11000, "km")
  31751. },
  31752. {
  31753. name: "Planet snacking",
  31754. height: math.unit(2000000, "km")
  31755. },
  31756. ]
  31757. ))
  31758. characterMakers.push(() => makeCharacter(
  31759. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31760. {
  31761. front: {
  31762. height: math.unit(6, "feet"),
  31763. weight: math.unit(215, "lb"),
  31764. name: "Front",
  31765. image: {
  31766. source: "./media/characters/sapphire-svell/front.svg",
  31767. extra: 495 / 455,
  31768. bottom: 20 / 515
  31769. }
  31770. },
  31771. back: {
  31772. height: math.unit(6, "feet"),
  31773. weight: math.unit(216, "lb"),
  31774. name: "Back",
  31775. image: {
  31776. source: "./media/characters/sapphire-svell/back.svg",
  31777. extra: 497 / 477,
  31778. bottom: 7 / 504
  31779. }
  31780. },
  31781. maw: {
  31782. height: math.unit(1.57, "feet"),
  31783. name: "Maw",
  31784. image: {
  31785. source: "./media/characters/sapphire-svell/maw.svg"
  31786. }
  31787. },
  31788. foot: {
  31789. height: math.unit(1.07, "feet"),
  31790. name: "Foot",
  31791. image: {
  31792. source: "./media/characters/sapphire-svell/foot.svg"
  31793. }
  31794. },
  31795. toering: {
  31796. height: math.unit(1.7, "inch"),
  31797. name: "Toering",
  31798. image: {
  31799. source: "./media/characters/sapphire-svell/toering.svg"
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(300, "feet"),
  31807. default: true
  31808. },
  31809. {
  31810. name: "Augmented",
  31811. height: math.unit(1250, "feet")
  31812. },
  31813. {
  31814. name: "Unleashed",
  31815. height: math.unit(3000, "feet")
  31816. },
  31817. ]
  31818. ))
  31819. characterMakers.push(() => makeCharacter(
  31820. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31821. {
  31822. side: {
  31823. height: math.unit(2 + 3 / 12, "feet"),
  31824. weight: math.unit(110, "lb"),
  31825. name: "Side",
  31826. image: {
  31827. source: "./media/characters/glitch-flux/side.svg",
  31828. extra: 997 / 805,
  31829. bottom: 20 / 1017
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Normal",
  31836. height: math.unit(2 + 3 / 12, "feet"),
  31837. default: true
  31838. },
  31839. ]
  31840. ))
  31841. characterMakers.push(() => makeCharacter(
  31842. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31843. {
  31844. front: {
  31845. height: math.unit(4, "meters"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/mid/front.svg",
  31849. extra: 507 / 476,
  31850. bottom: 17 / 524
  31851. }
  31852. },
  31853. back: {
  31854. height: math.unit(4, "meters"),
  31855. name: "Back",
  31856. image: {
  31857. source: "./media/characters/mid/back.svg",
  31858. extra: 519 / 487,
  31859. bottom: 7 / 526
  31860. }
  31861. },
  31862. stuck: {
  31863. height: math.unit(2.2, "meters"),
  31864. name: "Stuck",
  31865. image: {
  31866. source: "./media/characters/mid/stuck.svg",
  31867. extra: 1951 / 1869,
  31868. bottom: 88 / 2039
  31869. }
  31870. }
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(4, "meters"),
  31876. default: true
  31877. },
  31878. {
  31879. name: "Big",
  31880. height: math.unit(10, "meters")
  31881. },
  31882. {
  31883. name: "Macro",
  31884. height: math.unit(800, "meters")
  31885. },
  31886. {
  31887. name: "Megamacro",
  31888. height: math.unit(100, "km")
  31889. },
  31890. {
  31891. name: "Overgrown",
  31892. height: math.unit(1, "parsec")
  31893. },
  31894. ]
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31898. {
  31899. front: {
  31900. height: math.unit(2.5, "meters"),
  31901. weight: math.unit(225, "kg"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/iris/front.svg",
  31905. extra: 3348 / 3251,
  31906. bottom: 205 / 3553
  31907. }
  31908. },
  31909. maw: {
  31910. height: math.unit(0.56, "meter"),
  31911. name: "Maw",
  31912. image: {
  31913. source: "./media/characters/iris/maw.svg"
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Mewter cat",
  31920. height: math.unit(1.2, "meters")
  31921. },
  31922. {
  31923. name: "Normal",
  31924. height: math.unit(2.5, "meters"),
  31925. default: true
  31926. },
  31927. {
  31928. name: "Minimacro",
  31929. height: math.unit(18, "feet")
  31930. },
  31931. {
  31932. name: "Macro",
  31933. height: math.unit(140, "feet")
  31934. },
  31935. {
  31936. name: "Macro+",
  31937. height: math.unit(180, "meters")
  31938. },
  31939. {
  31940. name: "Megamacro",
  31941. height: math.unit(2746, "meters")
  31942. },
  31943. ]
  31944. ))
  31945. characterMakers.push(() => makeCharacter(
  31946. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31947. {
  31948. front: {
  31949. height: math.unit(6, "feet"),
  31950. weight: math.unit(135, "lb"),
  31951. name: "Front",
  31952. image: {
  31953. source: "./media/characters/axel/front.svg",
  31954. extra: 908 / 908,
  31955. bottom: 58 / 966
  31956. }
  31957. },
  31958. side: {
  31959. height: math.unit(6, "feet"),
  31960. weight: math.unit(135, "lb"),
  31961. name: "Side",
  31962. image: {
  31963. source: "./media/characters/axel/side.svg",
  31964. extra: 958 / 958,
  31965. bottom: 11 / 969
  31966. }
  31967. },
  31968. back: {
  31969. height: math.unit(6, "feet"),
  31970. weight: math.unit(135, "lb"),
  31971. name: "Back",
  31972. image: {
  31973. source: "./media/characters/axel/back.svg",
  31974. extra: 887 / 887,
  31975. bottom: 34 / 921
  31976. }
  31977. },
  31978. head: {
  31979. height: math.unit(1.07, "feet"),
  31980. name: "Head",
  31981. image: {
  31982. source: "./media/characters/axel/head.svg"
  31983. }
  31984. },
  31985. beak: {
  31986. height: math.unit(1.4, "feet"),
  31987. name: "Beak",
  31988. image: {
  31989. source: "./media/characters/axel/beak.svg"
  31990. }
  31991. },
  31992. beakSide: {
  31993. height: math.unit(1.4, "feet"),
  31994. name: "Beak Side",
  31995. image: {
  31996. source: "./media/characters/axel/beak-side.svg"
  31997. }
  31998. },
  31999. sheath: {
  32000. height: math.unit(0.5, "feet"),
  32001. name: "Sheath",
  32002. image: {
  32003. source: "./media/characters/axel/sheath.svg"
  32004. }
  32005. },
  32006. dick: {
  32007. height: math.unit(0.98, "feet"),
  32008. name: "Dick",
  32009. image: {
  32010. source: "./media/characters/axel/dick.svg"
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Macro",
  32017. height: math.unit(68, "meters"),
  32018. default: true
  32019. },
  32020. ]
  32021. ))
  32022. characterMakers.push(() => makeCharacter(
  32023. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32024. {
  32025. front: {
  32026. height: math.unit(3.5, "meters"),
  32027. weight: math.unit(1200, "kg"),
  32028. name: "Front",
  32029. image: {
  32030. source: "./media/characters/joanna/front.svg",
  32031. extra: 1596 / 1488,
  32032. bottom: 29 / 1625
  32033. }
  32034. },
  32035. back: {
  32036. height: math.unit(3.5, "meters"),
  32037. weight: math.unit(1200, "kg"),
  32038. name: "Back",
  32039. image: {
  32040. source: "./media/characters/joanna/back.svg",
  32041. extra: 1594 / 1495,
  32042. bottom: 26 / 1620
  32043. }
  32044. },
  32045. frontShorts: {
  32046. height: math.unit(3.5, "meters"),
  32047. weight: math.unit(1200, "kg"),
  32048. name: "Front (Shorts)",
  32049. image: {
  32050. source: "./media/characters/joanna/front-shorts.svg",
  32051. extra: 1596 / 1488,
  32052. bottom: 29 / 1625
  32053. }
  32054. },
  32055. frontBiker: {
  32056. height: math.unit(3.5, "meters"),
  32057. weight: math.unit(1200, "kg"),
  32058. name: "Front (Biker)",
  32059. image: {
  32060. source: "./media/characters/joanna/front-biker.svg",
  32061. extra: 1596 / 1488,
  32062. bottom: 29 / 1625
  32063. }
  32064. },
  32065. backBiker: {
  32066. height: math.unit(3.5, "meters"),
  32067. weight: math.unit(1200, "kg"),
  32068. name: "Back (Biker)",
  32069. image: {
  32070. source: "./media/characters/joanna/back-biker.svg",
  32071. extra: 1594 / 1495,
  32072. bottom: 88 / 1682
  32073. }
  32074. },
  32075. bikeLeft: {
  32076. height: math.unit(2.4, "meters"),
  32077. weight: math.unit(1600, "kg"),
  32078. name: "Bike (Left)",
  32079. image: {
  32080. source: "./media/characters/joanna/bike-left.svg",
  32081. extra: 720 / 720,
  32082. bottom: 8 / 728
  32083. }
  32084. },
  32085. bikeRight: {
  32086. height: math.unit(2.4, "meters"),
  32087. weight: math.unit(1600, "kg"),
  32088. name: "Bike (Right)",
  32089. image: {
  32090. source: "./media/characters/joanna/bike-right.svg",
  32091. extra: 720 / 720,
  32092. bottom: 8 / 728
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Incognito",
  32099. height: math.unit(3.5, "meters")
  32100. },
  32101. {
  32102. name: "Casual Big",
  32103. height: math.unit(200, "meters")
  32104. },
  32105. {
  32106. name: "Macro",
  32107. height: math.unit(600, "meters")
  32108. },
  32109. {
  32110. name: "Original",
  32111. height: math.unit(20, "km"),
  32112. default: true
  32113. },
  32114. {
  32115. name: "Giga",
  32116. height: math.unit(400, "km")
  32117. },
  32118. {
  32119. name: "Lounging",
  32120. height: math.unit(1500, "km")
  32121. },
  32122. {
  32123. name: "Planetary",
  32124. height: math.unit(200000, "km")
  32125. },
  32126. ]
  32127. ))
  32128. characterMakers.push(() => makeCharacter(
  32129. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32130. {
  32131. front: {
  32132. height: math.unit(6, "feet"),
  32133. weight: math.unit(150, "lb"),
  32134. name: "Front",
  32135. image: {
  32136. source: "./media/characters/hugo-sigil/front.svg",
  32137. extra: 522 / 500,
  32138. bottom: 2 / 524
  32139. }
  32140. },
  32141. back: {
  32142. height: math.unit(6, "feet"),
  32143. weight: math.unit(150, "lb"),
  32144. name: "Back",
  32145. image: {
  32146. source: "./media/characters/hugo-sigil/back.svg",
  32147. extra: 519 / 495,
  32148. bottom: 5 / 524
  32149. }
  32150. },
  32151. maw: {
  32152. height: math.unit(1.4, "feet"),
  32153. weight: math.unit(150, "lb"),
  32154. name: "Maw",
  32155. image: {
  32156. source: "./media/characters/hugo-sigil/maw.svg"
  32157. }
  32158. },
  32159. feet: {
  32160. height: math.unit(1.56, "feet"),
  32161. weight: math.unit(150, "lb"),
  32162. name: "Feet",
  32163. image: {
  32164. source: "./media/characters/hugo-sigil/feet.svg",
  32165. extra: 177 / 177,
  32166. bottom: 12 / 189
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(6, "feet")
  32174. },
  32175. {
  32176. name: "Macro",
  32177. height: math.unit(200, "feet"),
  32178. default: true
  32179. },
  32180. ]
  32181. ))
  32182. characterMakers.push(() => makeCharacter(
  32183. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32184. {
  32185. front: {
  32186. height: math.unit(6, "feet"),
  32187. weight: math.unit(150, "lb"),
  32188. name: "Front",
  32189. image: {
  32190. source: "./media/characters/peri/front.svg",
  32191. extra: 2354 / 2233,
  32192. bottom: 49 / 2403
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Really Small",
  32199. height: math.unit(1, "nm")
  32200. },
  32201. {
  32202. name: "Micro",
  32203. height: math.unit(4, "inches")
  32204. },
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(7, "inches"),
  32208. default: true
  32209. },
  32210. {
  32211. name: "Macro",
  32212. height: math.unit(400, "feet")
  32213. },
  32214. {
  32215. name: "Megamacro",
  32216. height: math.unit(100, "miles")
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32222. {
  32223. frontSlim: {
  32224. height: math.unit(7, "feet"),
  32225. name: "Front (Slim)",
  32226. image: {
  32227. source: "./media/characters/issilora/front-slim.svg",
  32228. extra: 529 / 449,
  32229. bottom: 53 / 582
  32230. }
  32231. },
  32232. sideSlim: {
  32233. height: math.unit(7, "feet"),
  32234. name: "Side (Slim)",
  32235. image: {
  32236. source: "./media/characters/issilora/side-slim.svg",
  32237. extra: 570 / 480,
  32238. bottom: 30 / 600
  32239. }
  32240. },
  32241. backSlim: {
  32242. height: math.unit(7, "feet"),
  32243. name: "Back (Slim)",
  32244. image: {
  32245. source: "./media/characters/issilora/back-slim.svg",
  32246. extra: 537 / 455,
  32247. bottom: 46 / 583
  32248. }
  32249. },
  32250. frontBuff: {
  32251. height: math.unit(7, "feet"),
  32252. name: "Front (Buff)",
  32253. image: {
  32254. source: "./media/characters/issilora/front-buff.svg",
  32255. extra: 2310 / 2035,
  32256. bottom: 335 / 2645
  32257. }
  32258. },
  32259. head: {
  32260. height: math.unit(1.94, "feet"),
  32261. name: "Head",
  32262. image: {
  32263. source: "./media/characters/issilora/head.svg"
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Minimum",
  32270. height: math.unit(7, "feet")
  32271. },
  32272. {
  32273. name: "Comfortable",
  32274. height: math.unit(17, "feet")
  32275. },
  32276. {
  32277. name: "Fun Size",
  32278. height: math.unit(47, "feet")
  32279. },
  32280. {
  32281. name: "Natural Macro",
  32282. height: math.unit(137, "feet"),
  32283. default: true
  32284. },
  32285. {
  32286. name: "Maximum Kaiju",
  32287. height: math.unit(397, "feet")
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32293. {
  32294. front: {
  32295. height: math.unit(50 + 9/12, "feet"),
  32296. weight: math.unit(32.8, "tons"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/irb'iiritaahn/front.svg",
  32300. extra: 1878/1826,
  32301. bottom: 326/2204
  32302. }
  32303. },
  32304. back: {
  32305. height: math.unit(50 + 9/12, "feet"),
  32306. weight: math.unit(32.8, "tons"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/irb'iiritaahn/back.svg",
  32310. extra: 2052/2018,
  32311. bottom: 152/2204
  32312. }
  32313. },
  32314. head: {
  32315. height: math.unit(12.86, "feet"),
  32316. name: "Head",
  32317. image: {
  32318. source: "./media/characters/irb'iiritaahn/head.svg"
  32319. }
  32320. },
  32321. maw: {
  32322. height: math.unit(9.66, "feet"),
  32323. name: "Maw",
  32324. image: {
  32325. source: "./media/characters/irb'iiritaahn/maw.svg"
  32326. }
  32327. },
  32328. frontDick: {
  32329. height: math.unit(8.78461, "feet"),
  32330. name: "Front Dick",
  32331. image: {
  32332. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32333. }
  32334. },
  32335. rearDick: {
  32336. height: math.unit(8.78461, "feet"),
  32337. name: "Rear Dick",
  32338. image: {
  32339. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32340. }
  32341. },
  32342. rearDickUnfolded: {
  32343. height: math.unit(8.78, "feet"),
  32344. name: "Rear Dick (Unfolded)",
  32345. image: {
  32346. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32347. }
  32348. },
  32349. wings: {
  32350. height: math.unit(43, "feet"),
  32351. name: "Wings",
  32352. image: {
  32353. source: "./media/characters/irb'iiritaahn/wings.svg"
  32354. }
  32355. },
  32356. },
  32357. [
  32358. {
  32359. name: "Macro",
  32360. height: math.unit(50 + 9/12, "feet"),
  32361. default: true
  32362. },
  32363. ]
  32364. ))
  32365. characterMakers.push(() => makeCharacter(
  32366. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32367. {
  32368. front: {
  32369. height: math.unit(205, "cm"),
  32370. weight: math.unit(102, "kg"),
  32371. name: "Front",
  32372. image: {
  32373. source: "./media/characters/irbisgreif/front.svg",
  32374. extra: 785/706,
  32375. bottom: 13/798
  32376. }
  32377. },
  32378. back: {
  32379. height: math.unit(205, "cm"),
  32380. weight: math.unit(102, "kg"),
  32381. name: "Back",
  32382. image: {
  32383. source: "./media/characters/irbisgreif/back.svg",
  32384. extra: 713/701,
  32385. bottom: 26/739
  32386. }
  32387. },
  32388. frontDressed: {
  32389. height: math.unit(216, "cm"),
  32390. weight: math.unit(102, "kg"),
  32391. name: "Front-dressed",
  32392. image: {
  32393. source: "./media/characters/irbisgreif/front-dressed.svg",
  32394. extra: 902/776,
  32395. bottom: 14/916
  32396. }
  32397. },
  32398. sideDressed: {
  32399. height: math.unit(195, "cm"),
  32400. weight: math.unit(102, "kg"),
  32401. name: "Side-dressed",
  32402. image: {
  32403. source: "./media/characters/irbisgreif/side-dressed.svg",
  32404. extra: 788/688,
  32405. bottom: 21/809
  32406. }
  32407. },
  32408. backDressed: {
  32409. height: math.unit(216, "cm"),
  32410. weight: math.unit(102, "kg"),
  32411. name: "Back-dressed",
  32412. image: {
  32413. source: "./media/characters/irbisgreif/back-dressed.svg",
  32414. extra: 901/783,
  32415. bottom: 10/911
  32416. }
  32417. },
  32418. dick: {
  32419. height: math.unit(0.49, "feet"),
  32420. name: "Dick",
  32421. image: {
  32422. source: "./media/characters/irbisgreif/dick.svg"
  32423. }
  32424. },
  32425. wingTop: {
  32426. height: math.unit(1.93 , "feet"),
  32427. name: "Wing-top",
  32428. image: {
  32429. source: "./media/characters/irbisgreif/wing-top.svg"
  32430. }
  32431. },
  32432. wingBottom: {
  32433. height: math.unit(1.93 , "feet"),
  32434. name: "Wing-bottom",
  32435. image: {
  32436. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32437. }
  32438. },
  32439. },
  32440. [
  32441. {
  32442. name: "Normal",
  32443. height: math.unit(216, "cm"),
  32444. default: true
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32450. {
  32451. front: {
  32452. height: math.unit(6, "feet"),
  32453. weight: math.unit(150, "lb"),
  32454. name: "Front",
  32455. image: {
  32456. source: "./media/characters/pride/front.svg",
  32457. extra: 1299/1230,
  32458. bottom: 18/1317
  32459. }
  32460. },
  32461. },
  32462. [
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(7, "feet")
  32466. },
  32467. {
  32468. name: "Mini-macro",
  32469. height: math.unit(11, "feet")
  32470. },
  32471. {
  32472. name: "Macro",
  32473. height: math.unit(15, "meters"),
  32474. default: true
  32475. },
  32476. {
  32477. name: "Macro+",
  32478. height: math.unit(40, "meters")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32484. {
  32485. front: {
  32486. height: math.unit(4 + 2 / 12, "feet"),
  32487. weight: math.unit(95, "lb"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/vaelophis-nyx/front.svg",
  32491. extra: 2532/2330,
  32492. bottom: 0/2532
  32493. }
  32494. },
  32495. back: {
  32496. height: math.unit(4 + 2 / 12, "feet"),
  32497. weight: math.unit(95, "lb"),
  32498. name: "Back",
  32499. image: {
  32500. source: "./media/characters/vaelophis-nyx/back.svg",
  32501. extra: 2484/2361,
  32502. bottom: 0/2484
  32503. }
  32504. },
  32505. feralSide: {
  32506. height: math.unit(2 + 1/12, "feet"),
  32507. weight: math.unit(20, "lb"),
  32508. name: "Feral (Side)",
  32509. image: {
  32510. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32511. extra: 1721/1581,
  32512. bottom: 70/1791
  32513. }
  32514. },
  32515. feralLazing: {
  32516. height: math.unit(1.08, "feet"),
  32517. weight: math.unit(20, "lb"),
  32518. name: "Feral (Lazing)",
  32519. image: {
  32520. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32521. extra: 822/822,
  32522. bottom: 248/1070
  32523. }
  32524. },
  32525. ear: {
  32526. height: math.unit(0.416, "feet"),
  32527. name: "Ear",
  32528. image: {
  32529. source: "./media/characters/vaelophis-nyx/ear.svg"
  32530. }
  32531. },
  32532. eye: {
  32533. height: math.unit(0.0748, "feet"),
  32534. name: "Eye",
  32535. image: {
  32536. source: "./media/characters/vaelophis-nyx/eye.svg"
  32537. }
  32538. },
  32539. mouth: {
  32540. height: math.unit(0.378, "feet"),
  32541. name: "Mouth",
  32542. image: {
  32543. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32544. }
  32545. },
  32546. spade: {
  32547. height: math.unit(0.55, "feet"),
  32548. name: "Spade",
  32549. image: {
  32550. source: "./media/characters/vaelophis-nyx/spade.svg"
  32551. }
  32552. },
  32553. },
  32554. [
  32555. {
  32556. name: "Normal",
  32557. height: math.unit(4 + 2/12, "feet"),
  32558. default: true
  32559. },
  32560. ]
  32561. ))
  32562. characterMakers.push(() => makeCharacter(
  32563. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32564. {
  32565. front: {
  32566. height: math.unit(7, "feet"),
  32567. weight: math.unit(231, "lb"),
  32568. name: "Front",
  32569. image: {
  32570. source: "./media/characters/flux/front.svg",
  32571. extra: 919/871,
  32572. bottom: 0/919
  32573. }
  32574. },
  32575. back: {
  32576. height: math.unit(7, "feet"),
  32577. weight: math.unit(231, "lb"),
  32578. name: "Back",
  32579. image: {
  32580. source: "./media/characters/flux/back.svg",
  32581. extra: 1040/992,
  32582. bottom: 0/1040
  32583. }
  32584. },
  32585. frontDressed: {
  32586. height: math.unit(7, "feet"),
  32587. weight: math.unit(231, "lb"),
  32588. name: "Front (Dressed)",
  32589. image: {
  32590. source: "./media/characters/flux/front-dressed.svg",
  32591. extra: 919/871,
  32592. bottom: 0/919
  32593. }
  32594. },
  32595. feralSide: {
  32596. height: math.unit(5, "feet"),
  32597. weight: math.unit(150, "lb"),
  32598. name: "Feral (Side)",
  32599. image: {
  32600. source: "./media/characters/flux/feral-side.svg",
  32601. extra: 598/528,
  32602. bottom: 28/626
  32603. }
  32604. },
  32605. head: {
  32606. height: math.unit(1.585, "feet"),
  32607. name: "Head",
  32608. image: {
  32609. source: "./media/characters/flux/head.svg"
  32610. }
  32611. },
  32612. headSide: {
  32613. height: math.unit(1.74, "feet"),
  32614. name: "Head (Side)",
  32615. image: {
  32616. source: "./media/characters/flux/head-side.svg"
  32617. }
  32618. },
  32619. headSideFire: {
  32620. height: math.unit(1.76, "feet"),
  32621. name: "Head (Side, Fire)",
  32622. image: {
  32623. source: "./media/characters/flux/head-side-fire.svg"
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(7, "feet"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32637. {
  32638. front: {
  32639. height: math.unit(9, "feet"),
  32640. weight: math.unit(1012, "lb"),
  32641. name: "Front",
  32642. image: {
  32643. source: "./media/characters/ulfra-lupae/front.svg",
  32644. extra: 1083/1011,
  32645. bottom: 67/1150
  32646. }
  32647. },
  32648. },
  32649. [
  32650. {
  32651. name: "Micro",
  32652. height: math.unit(6, "inches")
  32653. },
  32654. {
  32655. name: "Socializing",
  32656. height: math.unit(6 + 5/12, "feet")
  32657. },
  32658. {
  32659. name: "Normal",
  32660. height: math.unit(9, "feet"),
  32661. default: true
  32662. },
  32663. {
  32664. name: "Macro",
  32665. height: math.unit(150, "feet")
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32671. {
  32672. front: {
  32673. height: math.unit(5 + 2/12, "feet"),
  32674. weight: math.unit(120, "lb"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/timber/front.svg",
  32678. extra: 2814/2705,
  32679. bottom: 181/2995
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(5 + 2/12, "feet"),
  32687. default: true
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(9, "feet"),
  32696. name: "Front",
  32697. image: {
  32698. source: "./media/characters/nicki/front.svg",
  32699. extra: 1240/990,
  32700. bottom: 45/1285
  32701. },
  32702. form: "anthro",
  32703. default: true
  32704. },
  32705. side: {
  32706. height: math.unit(9, "feet"),
  32707. name: "Side",
  32708. image: {
  32709. source: "./media/characters/nicki/side.svg",
  32710. extra: 1047/973,
  32711. bottom: 61/1108
  32712. },
  32713. form: "anthro"
  32714. },
  32715. back: {
  32716. height: math.unit(9, "feet"),
  32717. name: "Back",
  32718. image: {
  32719. source: "./media/characters/nicki/back.svg",
  32720. extra: 1006/965,
  32721. bottom: 39/1045
  32722. },
  32723. form: "anthro"
  32724. },
  32725. taur: {
  32726. height: math.unit(15, "feet"),
  32727. name: "Taur",
  32728. image: {
  32729. source: "./media/characters/nicki/taur.svg",
  32730. extra: 1592/1347,
  32731. bottom: 0/1592
  32732. },
  32733. form: "taur",
  32734. default: true
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(9, "feet"),
  32741. form: "anthro",
  32742. default: true
  32743. },
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(15, "feet"),
  32747. form: "taur",
  32748. default: true
  32749. }
  32750. ],
  32751. {
  32752. "anthro": {
  32753. name: "Anthro",
  32754. default: true
  32755. },
  32756. "taur": {
  32757. name: "Taur"
  32758. }
  32759. }
  32760. ))
  32761. characterMakers.push(() => makeCharacter(
  32762. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32763. {
  32764. front: {
  32765. height: math.unit(7 + 10/12, "feet"),
  32766. weight: math.unit(3.5, "tons"),
  32767. name: "Front",
  32768. image: {
  32769. source: "./media/characters/lee/front.svg",
  32770. extra: 1773/1615,
  32771. bottom: 86/1859
  32772. }
  32773. },
  32774. hand: {
  32775. height: math.unit(1.78, "feet"),
  32776. name: "Hand",
  32777. image: {
  32778. source: "./media/characters/lee/hand.svg"
  32779. }
  32780. },
  32781. maw: {
  32782. height: math.unit(1.18, "feet"),
  32783. name: "Maw",
  32784. image: {
  32785. source: "./media/characters/lee/maw.svg"
  32786. }
  32787. },
  32788. },
  32789. [
  32790. {
  32791. name: "Normal",
  32792. height: math.unit(7 + 10/12, "feet"),
  32793. default: true
  32794. },
  32795. ]
  32796. ))
  32797. characterMakers.push(() => makeCharacter(
  32798. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32799. {
  32800. front: {
  32801. height: math.unit(9, "feet"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/guti/front.svg",
  32805. extra: 4551/4355,
  32806. bottom: 123/4674
  32807. }
  32808. },
  32809. tongue: {
  32810. height: math.unit(1, "feet"),
  32811. name: "Tongue",
  32812. image: {
  32813. source: "./media/characters/guti/tongue.svg"
  32814. }
  32815. },
  32816. paw: {
  32817. height: math.unit(1.18, "feet"),
  32818. name: "Paw",
  32819. image: {
  32820. source: "./media/characters/guti/paw.svg"
  32821. }
  32822. },
  32823. },
  32824. [
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(9, "feet"),
  32828. default: true
  32829. },
  32830. ]
  32831. ))
  32832. characterMakers.push(() => makeCharacter(
  32833. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32834. {
  32835. side: {
  32836. height: math.unit(5, "meters"),
  32837. name: "Side",
  32838. image: {
  32839. source: "./media/characters/vesper/side.svg",
  32840. extra: 1605/1518,
  32841. bottom: 0/1605
  32842. }
  32843. },
  32844. },
  32845. [
  32846. {
  32847. name: "Small",
  32848. height: math.unit(5, "meters")
  32849. },
  32850. {
  32851. name: "Sage",
  32852. height: math.unit(100, "meters"),
  32853. default: true
  32854. },
  32855. {
  32856. name: "Fun Size",
  32857. height: math.unit(600, "meters")
  32858. },
  32859. {
  32860. name: "Goddess",
  32861. height: math.unit(20000, "km")
  32862. },
  32863. {
  32864. name: "Maximum",
  32865. height: math.unit(5, "galaxies")
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32871. {
  32872. front: {
  32873. height: math.unit(6 + 3/12, "feet"),
  32874. weight: math.unit(190, "lb"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/gawain/front.svg",
  32878. extra: 2222/2139,
  32879. bottom: 90/2312
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(6 + 3/12, "feet"),
  32884. weight: math.unit(190, "lb"),
  32885. name: "Back",
  32886. image: {
  32887. source: "./media/characters/gawain/back.svg",
  32888. extra: 2199/2111,
  32889. bottom: 73/2272
  32890. }
  32891. },
  32892. },
  32893. [
  32894. {
  32895. name: "Normal",
  32896. height: math.unit(6 + 3/12, "feet"),
  32897. default: true
  32898. },
  32899. ]
  32900. ))
  32901. characterMakers.push(() => makeCharacter(
  32902. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32903. {
  32904. side: {
  32905. height: math.unit(3.5, "meters"),
  32906. weight: math.unit(16000, "lb"),
  32907. name: "Side",
  32908. image: {
  32909. source: "./media/characters/dascalti/side.svg",
  32910. extra: 392/273,
  32911. bottom: 47/439
  32912. }
  32913. },
  32914. breath: {
  32915. height: math.unit(7.4, "feet"),
  32916. name: "Breath",
  32917. image: {
  32918. source: "./media/characters/dascalti/breath.svg"
  32919. }
  32920. },
  32921. fed: {
  32922. height: math.unit(3.6, "meters"),
  32923. weight: math.unit(16000, "lb"),
  32924. name: "Fed",
  32925. image: {
  32926. source: "./media/characters/dascalti/fed.svg",
  32927. extra: 1419/820,
  32928. bottom: 95/1514
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(3.5, "meters"),
  32936. default: true
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32942. {
  32943. front: {
  32944. height: math.unit(3 + 5/12, "feet"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/mauve/front.svg",
  32948. extra: 1126/1033,
  32949. bottom: 65/1191
  32950. }
  32951. },
  32952. side: {
  32953. height: math.unit(3 + 5/12, "feet"),
  32954. name: "Side",
  32955. image: {
  32956. source: "./media/characters/mauve/side.svg",
  32957. extra: 1089/1001,
  32958. bottom: 29/1118
  32959. }
  32960. },
  32961. back: {
  32962. height: math.unit(3 + 5/12, "feet"),
  32963. name: "Back",
  32964. image: {
  32965. source: "./media/characters/mauve/back.svg",
  32966. extra: 1173/1053,
  32967. bottom: 109/1282
  32968. }
  32969. },
  32970. },
  32971. [
  32972. {
  32973. name: "Normal",
  32974. height: math.unit(3 + 5/12, "feet"),
  32975. default: true
  32976. },
  32977. ]
  32978. ))
  32979. characterMakers.push(() => makeCharacter(
  32980. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32981. {
  32982. front: {
  32983. height: math.unit(6 + 3/12, "feet"),
  32984. weight: math.unit(430, "lb"),
  32985. name: "Front",
  32986. image: {
  32987. source: "./media/characters/carlos/front.svg",
  32988. extra: 1964/1913,
  32989. bottom: 70/2034
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Normal",
  32996. height: math.unit(6 + 3/12, "feet"),
  32997. default: true
  32998. },
  32999. ]
  33000. ))
  33001. characterMakers.push(() => makeCharacter(
  33002. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33003. {
  33004. back: {
  33005. height: math.unit(5 + 10/12, "feet"),
  33006. weight: math.unit(200, "lb"),
  33007. name: "Back",
  33008. image: {
  33009. source: "./media/characters/jax/back.svg",
  33010. extra: 764/739,
  33011. bottom: 25/789
  33012. }
  33013. },
  33014. },
  33015. [
  33016. {
  33017. name: "Normal",
  33018. height: math.unit(5 + 10/12, "feet"),
  33019. default: true
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33025. {
  33026. front: {
  33027. height: math.unit(8, "feet"),
  33028. weight: math.unit(250, "lb"),
  33029. name: "Front",
  33030. image: {
  33031. source: "./media/characters/eikthynir/front.svg",
  33032. extra: 1332/1166,
  33033. bottom: 82/1414
  33034. }
  33035. },
  33036. back: {
  33037. height: math.unit(8, "feet"),
  33038. weight: math.unit(250, "lb"),
  33039. name: "Back",
  33040. image: {
  33041. source: "./media/characters/eikthynir/back.svg",
  33042. extra: 1342/1190,
  33043. bottom: 19/1361
  33044. }
  33045. },
  33046. dick: {
  33047. height: math.unit(2.35, "feet"),
  33048. name: "Dick",
  33049. image: {
  33050. source: "./media/characters/eikthynir/dick.svg"
  33051. }
  33052. },
  33053. },
  33054. [
  33055. {
  33056. name: "Normal",
  33057. height: math.unit(8, "feet"),
  33058. default: true
  33059. },
  33060. ]
  33061. ))
  33062. characterMakers.push(() => makeCharacter(
  33063. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33064. {
  33065. front: {
  33066. height: math.unit(99, "meters"),
  33067. weight: math.unit(13000, "tons"),
  33068. name: "Front",
  33069. image: {
  33070. source: "./media/characters/zlmos/front.svg",
  33071. extra: 2202/1992,
  33072. bottom: 315/2517
  33073. }
  33074. },
  33075. },
  33076. [
  33077. {
  33078. name: "Macro",
  33079. height: math.unit(99, "meters"),
  33080. default: true
  33081. },
  33082. ]
  33083. ))
  33084. characterMakers.push(() => makeCharacter(
  33085. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33086. {
  33087. front: {
  33088. height: math.unit(6 + 5/12, "feet"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/purri/front.svg",
  33092. extra: 1698/1610,
  33093. bottom: 32/1730
  33094. }
  33095. },
  33096. frontAlt: {
  33097. height: math.unit(6 + 5/12, "feet"),
  33098. name: "Front (Alt)",
  33099. image: {
  33100. source: "./media/characters/purri/front-alt.svg",
  33101. extra: 450/420,
  33102. bottom: 26/476
  33103. }
  33104. },
  33105. boots: {
  33106. height: math.unit(5.5, "feet"),
  33107. name: "Boots",
  33108. image: {
  33109. source: "./media/characters/purri/boots.svg",
  33110. extra: 905/853,
  33111. bottom: 18/923
  33112. }
  33113. },
  33114. lying: {
  33115. height: math.unit(2, "feet"),
  33116. name: "Lying",
  33117. image: {
  33118. source: "./media/characters/purri/lying.svg",
  33119. extra: 940/843,
  33120. bottom: 146/1086
  33121. }
  33122. },
  33123. devious: {
  33124. height: math.unit(1.77, "feet"),
  33125. name: "Devious",
  33126. image: {
  33127. source: "./media/characters/purri/devious.svg",
  33128. extra: 1440/1155,
  33129. bottom: 147/1587
  33130. }
  33131. },
  33132. bean: {
  33133. height: math.unit(1.94, "feet"),
  33134. name: "Bean",
  33135. image: {
  33136. source: "./media/characters/purri/bean.svg"
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Micro",
  33143. height: math.unit(1, "mm")
  33144. },
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(6 + 5/12, "feet"),
  33148. default: true
  33149. },
  33150. {
  33151. name: "Macro :3c",
  33152. height: math.unit(2, "miles")
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(6 + 2/12, "feet"),
  33161. weight: math.unit(250, "lb"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/moonlight/front.svg",
  33165. extra: 1044/908,
  33166. bottom: 56/1100
  33167. }
  33168. },
  33169. feral: {
  33170. height: math.unit(3 + 1/12, "feet"),
  33171. weight: math.unit(50, "kg"),
  33172. name: "Feral",
  33173. image: {
  33174. source: "./media/characters/moonlight/feral.svg",
  33175. extra: 3705/2791,
  33176. bottom: 145/3850
  33177. }
  33178. },
  33179. paw: {
  33180. height: math.unit(1, "feet"),
  33181. name: "Paw",
  33182. image: {
  33183. source: "./media/characters/moonlight/paw.svg"
  33184. }
  33185. },
  33186. paws: {
  33187. height: math.unit(0.98, "feet"),
  33188. name: "Paws",
  33189. image: {
  33190. source: "./media/characters/moonlight/paws.svg",
  33191. extra: 939/939,
  33192. bottom: 50/989
  33193. }
  33194. },
  33195. mouth: {
  33196. height: math.unit(0.48, "feet"),
  33197. name: "Mouth",
  33198. image: {
  33199. source: "./media/characters/moonlight/mouth.svg"
  33200. }
  33201. },
  33202. dick: {
  33203. height: math.unit(1.46, "feet"),
  33204. name: "Dick",
  33205. image: {
  33206. source: "./media/characters/moonlight/dick.svg"
  33207. }
  33208. },
  33209. },
  33210. [
  33211. {
  33212. name: "Normal",
  33213. height: math.unit(6 + 2/12, "feet"),
  33214. default: true
  33215. },
  33216. {
  33217. name: "Macro",
  33218. height: math.unit(300, "feet")
  33219. },
  33220. {
  33221. name: "Macro+",
  33222. height: math.unit(1, "mile")
  33223. },
  33224. {
  33225. name: "Mt. Moon",
  33226. height: math.unit(5, "miles")
  33227. },
  33228. {
  33229. name: "Megamacro",
  33230. height: math.unit(15, "miles")
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33236. {
  33237. back: {
  33238. height: math.unit(6, "feet"),
  33239. weight: math.unit(150, "lb"),
  33240. name: "Back",
  33241. image: {
  33242. source: "./media/characters/sylen/back.svg",
  33243. extra: 1335/1273,
  33244. bottom: 107/1442
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(5 + 5/12, "feet")
  33252. },
  33253. {
  33254. name: "Megamacro",
  33255. height: math.unit(3, "miles"),
  33256. default: true
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33262. {
  33263. front: {
  33264. height: math.unit(6, "feet"),
  33265. weight: math.unit(190, "lb"),
  33266. name: "Front",
  33267. image: {
  33268. source: "./media/characters/huttser/front.svg",
  33269. extra: 1152/1058,
  33270. bottom: 23/1175
  33271. }
  33272. },
  33273. side: {
  33274. height: math.unit(6, "feet"),
  33275. weight: math.unit(190, "lb"),
  33276. name: "Side",
  33277. image: {
  33278. source: "./media/characters/huttser/side.svg",
  33279. extra: 1174/1065,
  33280. bottom: 18/1192
  33281. }
  33282. },
  33283. back: {
  33284. height: math.unit(6, "feet"),
  33285. weight: math.unit(190, "lb"),
  33286. name: "Back",
  33287. image: {
  33288. source: "./media/characters/huttser/back.svg",
  33289. extra: 1158/1056,
  33290. bottom: 12/1170
  33291. }
  33292. },
  33293. },
  33294. [
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33299. {
  33300. side: {
  33301. height: math.unit(12 + 9/12, "feet"),
  33302. weight: math.unit(15000, "lb"),
  33303. name: "Side",
  33304. image: {
  33305. source: "./media/characters/faan/side.svg",
  33306. extra: 2747/2697,
  33307. bottom: 0/2747
  33308. }
  33309. },
  33310. front: {
  33311. height: math.unit(12 + 9/12, "feet"),
  33312. weight: math.unit(15000, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/faan/front.svg",
  33316. extra: 607/571,
  33317. bottom: 24/631
  33318. }
  33319. },
  33320. head: {
  33321. height: math.unit(2.85, "feet"),
  33322. name: "Head",
  33323. image: {
  33324. source: "./media/characters/faan/head.svg"
  33325. }
  33326. },
  33327. headAlt: {
  33328. height: math.unit(3.13, "feet"),
  33329. name: "Head-alt",
  33330. image: {
  33331. source: "./media/characters/faan/head-alt.svg"
  33332. }
  33333. },
  33334. },
  33335. [
  33336. {
  33337. name: "Normal",
  33338. height: math.unit(12 + 9/12, "feet"),
  33339. default: true
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33345. {
  33346. front: {
  33347. height: math.unit(6, "feet"),
  33348. weight: math.unit(300, "lb"),
  33349. name: "Front",
  33350. image: {
  33351. source: "./media/characters/tanio/front.svg",
  33352. extra: 711/673,
  33353. bottom: 25/736
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(6, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33367. {
  33368. front: {
  33369. height: math.unit(3, "inches"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/noboru/front.svg",
  33373. extra: 1039/932,
  33374. bottom: 18/1057
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Micro",
  33381. height: math.unit(3, "inches"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(1.85, "meters"),
  33391. weight: math.unit(80, "kg"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/daniel-barrett/front.svg",
  33395. extra: 355/337,
  33396. bottom: 9/364
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Pico",
  33403. height: math.unit(0.0433, "mm")
  33404. },
  33405. {
  33406. name: "Nano",
  33407. height: math.unit(1.5, "mm")
  33408. },
  33409. {
  33410. name: "Micro",
  33411. height: math.unit(5.3, "cm"),
  33412. default: true
  33413. },
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(1.85, "meters")
  33417. },
  33418. {
  33419. name: "Macro",
  33420. height: math.unit(64.7, "meters")
  33421. },
  33422. {
  33423. name: "Megamacro",
  33424. height: math.unit(2.26, "km")
  33425. },
  33426. {
  33427. name: "Gigamacro",
  33428. height: math.unit(79, "km")
  33429. },
  33430. {
  33431. name: "Teramacro",
  33432. height: math.unit(2765, "km")
  33433. },
  33434. {
  33435. name: "Petamacro",
  33436. height: math.unit(96678, "km")
  33437. },
  33438. ]
  33439. ))
  33440. characterMakers.push(() => makeCharacter(
  33441. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33442. {
  33443. front: {
  33444. height: math.unit(30, "meters"),
  33445. weight: math.unit(400, "tons"),
  33446. name: "Front",
  33447. image: {
  33448. source: "./media/characters/zeel/front.svg",
  33449. extra: 2599/2599,
  33450. bottom: 226/2825
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Macro",
  33457. height: math.unit(30, "meters"),
  33458. default: true
  33459. },
  33460. ]
  33461. ))
  33462. characterMakers.push(() => makeCharacter(
  33463. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33464. {
  33465. front: {
  33466. height: math.unit(6 + 7/12, "feet"),
  33467. weight: math.unit(210, "lb"),
  33468. name: "Front",
  33469. image: {
  33470. source: "./media/characters/tarn/front.svg",
  33471. extra: 3517/3220,
  33472. bottom: 91/3608
  33473. }
  33474. },
  33475. back: {
  33476. height: math.unit(6 + 7/12, "feet"),
  33477. weight: math.unit(210, "lb"),
  33478. name: "Back",
  33479. image: {
  33480. source: "./media/characters/tarn/back.svg",
  33481. extra: 3566/3241,
  33482. bottom: 34/3600
  33483. }
  33484. },
  33485. dick: {
  33486. height: math.unit(1.65, "feet"),
  33487. name: "Dick",
  33488. image: {
  33489. source: "./media/characters/tarn/dick.svg"
  33490. }
  33491. },
  33492. paw: {
  33493. height: math.unit(1.80, "feet"),
  33494. name: "Paw",
  33495. image: {
  33496. source: "./media/characters/tarn/paw.svg"
  33497. }
  33498. },
  33499. tongue: {
  33500. height: math.unit(0.97, "feet"),
  33501. name: "Tongue",
  33502. image: {
  33503. source: "./media/characters/tarn/tongue.svg"
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Micro",
  33510. height: math.unit(4, "inches")
  33511. },
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(6 + 7/12, "feet"),
  33515. default: true
  33516. },
  33517. {
  33518. name: "Macro",
  33519. height: math.unit(300, "feet")
  33520. },
  33521. ]
  33522. ))
  33523. characterMakers.push(() => makeCharacter(
  33524. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33525. {
  33526. front: {
  33527. height: math.unit(5 + 7/12, "feet"),
  33528. weight: math.unit(80, "kg"),
  33529. name: "Front",
  33530. image: {
  33531. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33532. extra: 3023/2865,
  33533. bottom: 33/3056
  33534. }
  33535. },
  33536. back: {
  33537. height: math.unit(5 + 7/12, "feet"),
  33538. weight: math.unit(80, "kg"),
  33539. name: "Back",
  33540. image: {
  33541. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33542. extra: 3020/2886,
  33543. bottom: 30/3050
  33544. }
  33545. },
  33546. dick: {
  33547. height: math.unit(0.98, "feet"),
  33548. name: "Dick",
  33549. image: {
  33550. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33551. }
  33552. },
  33553. anatomy: {
  33554. height: math.unit(2.86, "feet"),
  33555. name: "Anatomy",
  33556. image: {
  33557. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Really Small",
  33564. height: math.unit(2, "inches")
  33565. },
  33566. {
  33567. name: "Micro",
  33568. height: math.unit(5.583, "inches")
  33569. },
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(5 + 7/12, "feet"),
  33573. default: true
  33574. },
  33575. {
  33576. name: "Macro",
  33577. height: math.unit(67, "feet")
  33578. },
  33579. {
  33580. name: "Megamacro",
  33581. height: math.unit(134, "feet")
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33587. {
  33588. front: {
  33589. height: math.unit(9, "feet"),
  33590. weight: math.unit(120, "lb"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/sally/front.svg",
  33594. extra: 1506/1349,
  33595. bottom: 66/1572
  33596. }
  33597. },
  33598. },
  33599. [
  33600. {
  33601. name: "Normal",
  33602. height: math.unit(9, "feet"),
  33603. default: true
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33609. {
  33610. front: {
  33611. height: math.unit(8, "feet"),
  33612. weight: math.unit(900, "lb"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/owen/front.svg",
  33616. extra: 1761/1657,
  33617. bottom: 74/1835
  33618. }
  33619. },
  33620. side: {
  33621. height: math.unit(8, "feet"),
  33622. weight: math.unit(900, "lb"),
  33623. name: "Side",
  33624. image: {
  33625. source: "./media/characters/owen/side.svg",
  33626. extra: 1797/1734,
  33627. bottom: 30/1827
  33628. }
  33629. },
  33630. back: {
  33631. height: math.unit(8, "feet"),
  33632. weight: math.unit(900, "lb"),
  33633. name: "Back",
  33634. image: {
  33635. source: "./media/characters/owen/back.svg",
  33636. extra: 1796/1706,
  33637. bottom: 59/1855
  33638. }
  33639. },
  33640. maw: {
  33641. height: math.unit(1.76, "feet"),
  33642. name: "Maw",
  33643. image: {
  33644. source: "./media/characters/owen/maw.svg"
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(8, "feet"),
  33652. default: true
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33658. {
  33659. front: {
  33660. height: math.unit(4, "feet"),
  33661. weight: math.unit(400, "lb"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/ryth/front.svg",
  33665. extra: 1920/1748,
  33666. bottom: 42/1962
  33667. }
  33668. },
  33669. back: {
  33670. height: math.unit(4, "feet"),
  33671. weight: math.unit(400, "lb"),
  33672. name: "Back",
  33673. image: {
  33674. source: "./media/characters/ryth/back.svg",
  33675. extra: 1897/1690,
  33676. bottom: 89/1986
  33677. }
  33678. },
  33679. mouth: {
  33680. height: math.unit(1.39, "feet"),
  33681. name: "Mouth",
  33682. image: {
  33683. source: "./media/characters/ryth/mouth.svg"
  33684. }
  33685. },
  33686. tailmaw: {
  33687. height: math.unit(1.23, "feet"),
  33688. name: "Tailmaw",
  33689. image: {
  33690. source: "./media/characters/ryth/tailmaw.svg"
  33691. }
  33692. },
  33693. goia: {
  33694. height: math.unit(4, "meters"),
  33695. weight: math.unit(10800, "lb"),
  33696. name: "Goia",
  33697. image: {
  33698. source: "./media/characters/ryth/goia.svg",
  33699. extra: 745/640,
  33700. bottom: 107/852
  33701. }
  33702. },
  33703. goiaFront: {
  33704. height: math.unit(4, "meters"),
  33705. weight: math.unit(10800, "lb"),
  33706. name: "Goia (Front)",
  33707. image: {
  33708. source: "./media/characters/ryth/goia-front.svg",
  33709. extra: 750/586,
  33710. bottom: 114/864
  33711. }
  33712. },
  33713. goiaMaw: {
  33714. height: math.unit(5.55, "feet"),
  33715. name: "Goia Maw",
  33716. image: {
  33717. source: "./media/characters/ryth/goia-maw.svg"
  33718. }
  33719. },
  33720. goiaForepaw: {
  33721. height: math.unit(3.5, "feet"),
  33722. name: "Goia Forepaw",
  33723. image: {
  33724. source: "./media/characters/ryth/goia-forepaw.svg"
  33725. }
  33726. },
  33727. goiaHindpaw: {
  33728. height: math.unit(5.55, "feet"),
  33729. name: "Goia Hindpaw",
  33730. image: {
  33731. source: "./media/characters/ryth/goia-hindpaw.svg"
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Normal",
  33738. height: math.unit(4, "feet"),
  33739. default: true
  33740. },
  33741. ]
  33742. ))
  33743. characterMakers.push(() => makeCharacter(
  33744. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33745. {
  33746. front: {
  33747. height: math.unit(7, "feet"),
  33748. weight: math.unit(180, "lb"),
  33749. name: "Front",
  33750. image: {
  33751. source: "./media/characters/necrolance/front.svg",
  33752. extra: 1062/947,
  33753. bottom: 41/1103
  33754. }
  33755. },
  33756. back: {
  33757. height: math.unit(7, "feet"),
  33758. weight: math.unit(180, "lb"),
  33759. name: "Back",
  33760. image: {
  33761. source: "./media/characters/necrolance/back.svg",
  33762. extra: 1045/984,
  33763. bottom: 14/1059
  33764. }
  33765. },
  33766. wing: {
  33767. height: math.unit(2.67, "feet"),
  33768. name: "Wing",
  33769. image: {
  33770. source: "./media/characters/necrolance/wing.svg"
  33771. }
  33772. },
  33773. },
  33774. [
  33775. {
  33776. name: "Normal",
  33777. height: math.unit(7, "feet"),
  33778. default: true
  33779. },
  33780. ]
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33784. {
  33785. front: {
  33786. height: math.unit(76, "meters"),
  33787. weight: math.unit(30000, "tons"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/tyler/front.svg",
  33791. extra: 1640/1640,
  33792. bottom: 114/1754
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Macro",
  33799. height: math.unit(76, "meters"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(4 + 11/12, "feet"),
  33809. weight: math.unit(132, "lb"),
  33810. name: "Front",
  33811. image: {
  33812. source: "./media/characters/icey/front.svg",
  33813. extra: 2750/2550,
  33814. bottom: 33/2783
  33815. }
  33816. },
  33817. back: {
  33818. height: math.unit(4 + 11/12, "feet"),
  33819. weight: math.unit(132, "lb"),
  33820. name: "Back",
  33821. image: {
  33822. source: "./media/characters/icey/back.svg",
  33823. extra: 2624/2481,
  33824. bottom: 35/2659
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(4 + 11/12, "feet"),
  33832. default: true
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(100, "feet"),
  33841. weight: math.unit(0, "lb"),
  33842. name: "Front",
  33843. image: {
  33844. source: "./media/characters/smile/front.svg",
  33845. extra: 2983/2912,
  33846. bottom: 162/3145
  33847. }
  33848. },
  33849. back: {
  33850. height: math.unit(100, "feet"),
  33851. weight: math.unit(0, "lb"),
  33852. name: "Back",
  33853. image: {
  33854. source: "./media/characters/smile/back.svg",
  33855. extra: 3143/3031,
  33856. bottom: 91/3234
  33857. }
  33858. },
  33859. head: {
  33860. height: math.unit(26.3, "feet"),
  33861. weight: math.unit(0, "lb"),
  33862. name: "Head",
  33863. image: {
  33864. source: "./media/characters/smile/head.svg"
  33865. }
  33866. },
  33867. collar: {
  33868. height: math.unit(5.3, "feet"),
  33869. weight: math.unit(0, "lb"),
  33870. name: "Collar",
  33871. image: {
  33872. source: "./media/characters/smile/collar.svg"
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Macro",
  33879. height: math.unit(100, "feet"),
  33880. default: true
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33886. {
  33887. dragon: {
  33888. height: math.unit(26, "feet"),
  33889. weight: math.unit(36, "tons"),
  33890. name: "Dragon",
  33891. image: {
  33892. source: "./media/characters/arimphae/dragon.svg",
  33893. extra: 1574/983,
  33894. bottom: 357/1931
  33895. }
  33896. },
  33897. drake: {
  33898. height: math.unit(9, "feet"),
  33899. weight: math.unit(1.5, "tons"),
  33900. name: "Drake",
  33901. image: {
  33902. source: "./media/characters/arimphae/drake.svg",
  33903. extra: 1120/925,
  33904. bottom: 435/1555
  33905. }
  33906. },
  33907. },
  33908. [
  33909. {
  33910. name: "Small",
  33911. height: math.unit(26*5/9, "feet")
  33912. },
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(26, "feet"),
  33916. default: true
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(8 + 9/12, "feet"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/xander/front.svg",
  33928. extra: 1237/974,
  33929. bottom: 94/1331
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(8 + 9/12, "feet"),
  33937. default: true
  33938. },
  33939. {
  33940. name: "Gaze Grabber",
  33941. height: math.unit(13 + 8/12, "feet")
  33942. },
  33943. {
  33944. name: "Jaw Dropper",
  33945. height: math.unit(27, "feet")
  33946. },
  33947. {
  33948. name: "Show Stopper",
  33949. height: math.unit(136, "feet")
  33950. },
  33951. {
  33952. name: "Superstar",
  33953. height: math.unit(1.9e6, "miles")
  33954. },
  33955. ]
  33956. ))
  33957. characterMakers.push(() => makeCharacter(
  33958. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33959. {
  33960. side: {
  33961. height: math.unit(2100, "feet"),
  33962. name: "Side",
  33963. image: {
  33964. source: "./media/characters/osiris/side.svg",
  33965. extra: 1105/939,
  33966. bottom: 167/1272
  33967. }
  33968. },
  33969. },
  33970. [
  33971. {
  33972. name: "Macro",
  33973. height: math.unit(2100, "feet"),
  33974. default: true
  33975. },
  33976. ]
  33977. ))
  33978. characterMakers.push(() => makeCharacter(
  33979. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33980. {
  33981. front: {
  33982. height: math.unit(6 + 8/12, "feet"),
  33983. weight: math.unit(225, "lb"),
  33984. name: "Front",
  33985. image: {
  33986. source: "./media/characters/rhys-londe/front.svg",
  33987. extra: 2258/2141,
  33988. bottom: 188/2446
  33989. }
  33990. },
  33991. back: {
  33992. height: math.unit(6 + 8/12, "feet"),
  33993. weight: math.unit(225, "lb"),
  33994. name: "Back",
  33995. image: {
  33996. source: "./media/characters/rhys-londe/back.svg",
  33997. extra: 2237/2137,
  33998. bottom: 63/2300
  33999. }
  34000. },
  34001. frontNsfw: {
  34002. height: math.unit(6 + 8/12, "feet"),
  34003. weight: math.unit(225, "lb"),
  34004. name: "Front (NSFW)",
  34005. image: {
  34006. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34007. extra: 2258/2141,
  34008. bottom: 188/2446
  34009. }
  34010. },
  34011. backNsfw: {
  34012. height: math.unit(6 + 8/12, "feet"),
  34013. weight: math.unit(225, "lb"),
  34014. name: "Back (NSFW)",
  34015. image: {
  34016. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34017. extra: 2237/2137,
  34018. bottom: 63/2300
  34019. }
  34020. },
  34021. dick: {
  34022. height: math.unit(30, "inches"),
  34023. name: "Dick",
  34024. image: {
  34025. source: "./media/characters/rhys-londe/dick.svg"
  34026. }
  34027. },
  34028. maw: {
  34029. height: math.unit(1.6, "feet"),
  34030. name: "Maw",
  34031. image: {
  34032. source: "./media/characters/rhys-londe/maw.svg"
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(6 + 8/12, "feet"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(3 + 10/12, "feet"),
  34049. weight: math.unit(90, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/taivas-ensim/front.svg",
  34053. extra: 1327/1216,
  34054. bottom: 96/1423
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(3 + 10/12, "feet"),
  34059. weight: math.unit(90, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/taivas-ensim/back.svg",
  34063. extra: 1355/1247,
  34064. bottom: 11/1366
  34065. }
  34066. },
  34067. frontNsfw: {
  34068. height: math.unit(3 + 10/12, "feet"),
  34069. weight: math.unit(90, "lb"),
  34070. name: "Front (NSFW)",
  34071. image: {
  34072. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34073. extra: 1327/1216,
  34074. bottom: 96/1423
  34075. }
  34076. },
  34077. backNsfw: {
  34078. height: math.unit(3 + 10/12, "feet"),
  34079. weight: math.unit(90, "lb"),
  34080. name: "Back (NSFW)",
  34081. image: {
  34082. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34083. extra: 1355/1247,
  34084. bottom: 11/1366
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Normal",
  34091. height: math.unit(3 + 10/12, "feet"),
  34092. default: true
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34098. {
  34099. front: {
  34100. height: math.unit(9 + 6/12, "feet"),
  34101. weight: math.unit(940, "lb"),
  34102. name: "Front",
  34103. image: {
  34104. source: "./media/characters/byliss/front.svg",
  34105. extra: 1327/1290,
  34106. bottom: 82/1409
  34107. }
  34108. },
  34109. back: {
  34110. height: math.unit(9 + 6/12, "feet"),
  34111. weight: math.unit(940, "lb"),
  34112. name: "Back",
  34113. image: {
  34114. source: "./media/characters/byliss/back.svg",
  34115. extra: 1376/1349,
  34116. bottom: 9/1385
  34117. }
  34118. },
  34119. frontNsfw: {
  34120. height: math.unit(9 + 6/12, "feet"),
  34121. weight: math.unit(940, "lb"),
  34122. name: "Front (NSFW)",
  34123. image: {
  34124. source: "./media/characters/byliss/front-nsfw.svg",
  34125. extra: 1327/1290,
  34126. bottom: 82/1409
  34127. }
  34128. },
  34129. backNsfw: {
  34130. height: math.unit(9 + 6/12, "feet"),
  34131. weight: math.unit(940, "lb"),
  34132. name: "Back (NSFW)",
  34133. image: {
  34134. source: "./media/characters/byliss/back-nsfw.svg",
  34135. extra: 1376/1349,
  34136. bottom: 9/1385
  34137. }
  34138. },
  34139. },
  34140. [
  34141. {
  34142. name: "Normal",
  34143. height: math.unit(9 + 6/12, "feet"),
  34144. default: true
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34150. {
  34151. front: {
  34152. height: math.unit(5 + 2/12, "feet"),
  34153. weight: math.unit(200, "lb"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/noraly/front.svg",
  34157. extra: 4985/4773,
  34158. bottom: 150/5135
  34159. }
  34160. },
  34161. full: {
  34162. height: math.unit(5 + 2/12, "feet"),
  34163. weight: math.unit(164, "lb"),
  34164. name: "Full",
  34165. image: {
  34166. source: "./media/characters/noraly/full.svg",
  34167. extra: 1114/1059,
  34168. bottom: 35/1149
  34169. }
  34170. },
  34171. fuller: {
  34172. height: math.unit(5 + 2/12, "feet"),
  34173. weight: math.unit(230, "lb"),
  34174. name: "Fuller",
  34175. image: {
  34176. source: "./media/characters/noraly/fuller.svg",
  34177. extra: 1114/1059,
  34178. bottom: 35/1149
  34179. }
  34180. },
  34181. fullest: {
  34182. height: math.unit(5 + 2/12, "feet"),
  34183. weight: math.unit(300, "lb"),
  34184. name: "Fullest",
  34185. image: {
  34186. source: "./media/characters/noraly/fullest.svg",
  34187. extra: 1114/1059,
  34188. bottom: 35/1149
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Normal",
  34195. height: math.unit(5 + 2/12, "feet"),
  34196. default: true
  34197. },
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34202. {
  34203. front: {
  34204. height: math.unit(5 + 2/12, "feet"),
  34205. weight: math.unit(210, "lb"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/pera/front.svg",
  34209. extra: 1560/1531,
  34210. bottom: 165/1725
  34211. }
  34212. },
  34213. back: {
  34214. height: math.unit(5 + 2/12, "feet"),
  34215. weight: math.unit(210, "lb"),
  34216. name: "Back",
  34217. image: {
  34218. source: "./media/characters/pera/back.svg",
  34219. extra: 1523/1493,
  34220. bottom: 152/1675
  34221. }
  34222. },
  34223. dick: {
  34224. height: math.unit(2.4, "feet"),
  34225. name: "Dick",
  34226. image: {
  34227. source: "./media/characters/pera/dick.svg"
  34228. }
  34229. },
  34230. },
  34231. [
  34232. {
  34233. name: "Normal",
  34234. height: math.unit(5 + 2/12, "feet"),
  34235. default: true
  34236. },
  34237. ]
  34238. ))
  34239. characterMakers.push(() => makeCharacter(
  34240. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34241. {
  34242. front: {
  34243. height: math.unit(12, "feet"),
  34244. weight: math.unit(3200, "lb"),
  34245. name: "Front",
  34246. image: {
  34247. source: "./media/characters/julian/front.svg",
  34248. extra: 2962/2701,
  34249. bottom: 184/3146
  34250. }
  34251. },
  34252. maw: {
  34253. height: math.unit(5.35, "feet"),
  34254. name: "Maw",
  34255. image: {
  34256. source: "./media/characters/julian/maw.svg"
  34257. }
  34258. },
  34259. paw: {
  34260. height: math.unit(3.07, "feet"),
  34261. name: "Paw",
  34262. image: {
  34263. source: "./media/characters/julian/paw.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Default",
  34270. height: math.unit(12, "feet"),
  34271. default: true
  34272. },
  34273. {
  34274. name: "Big",
  34275. height: math.unit(50, "feet")
  34276. },
  34277. {
  34278. name: "Really Big",
  34279. height: math.unit(1, "mile")
  34280. },
  34281. {
  34282. name: "Extremely Big",
  34283. height: math.unit(100, "miles")
  34284. },
  34285. {
  34286. name: "Planet Hugger",
  34287. height: math.unit(200, "megameters")
  34288. },
  34289. {
  34290. name: "Unreasonably Big",
  34291. height: math.unit(1e300, "meters")
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34297. {
  34298. solgooleo: {
  34299. height: math.unit(4, "meters"),
  34300. weight: math.unit(6000*1.5, "kg"),
  34301. volume: math.unit(6000, "liters"),
  34302. name: "Solgooleo",
  34303. image: {
  34304. source: "./media/characters/pi/solgooleo.svg",
  34305. extra: 388/331,
  34306. bottom: 29/417
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(4, "meters"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(8, "feet"),
  34323. weight: math.unit(4, "tons"),
  34324. name: "Front",
  34325. image: {
  34326. source: "./media/characters/shaun/front.svg",
  34327. extra: 503/495,
  34328. bottom: 20/523
  34329. }
  34330. },
  34331. back: {
  34332. height: math.unit(8, "feet"),
  34333. weight: math.unit(4, "tons"),
  34334. name: "Back",
  34335. image: {
  34336. source: "./media/characters/shaun/back.svg",
  34337. extra: 487/480,
  34338. bottom: 20/507
  34339. }
  34340. },
  34341. },
  34342. [
  34343. {
  34344. name: "Lorg",
  34345. height: math.unit(8, "feet"),
  34346. default: true
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34352. {
  34353. frontAnthro: {
  34354. height: math.unit(7, "feet"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/sini/front-anthro.svg",
  34358. extra: 726/678,
  34359. bottom: 35/761
  34360. },
  34361. form: "anthro",
  34362. default: true
  34363. },
  34364. backAnthro: {
  34365. height: math.unit(7, "feet"),
  34366. name: "Back",
  34367. image: {
  34368. source: "./media/characters/sini/back-anthro.svg",
  34369. extra: 743/701,
  34370. bottom: 12/755
  34371. },
  34372. form: "anthro",
  34373. },
  34374. frontAnthroNsfw: {
  34375. height: math.unit(7, "feet"),
  34376. name: "Front (NSFW)",
  34377. image: {
  34378. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34379. extra: 726/678,
  34380. bottom: 35/761
  34381. },
  34382. form: "anthro"
  34383. },
  34384. backAnthroNsfw: {
  34385. height: math.unit(7, "feet"),
  34386. name: "Back (NSFW)",
  34387. image: {
  34388. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34389. extra: 743/701,
  34390. bottom: 12/755
  34391. },
  34392. form: "anthro",
  34393. },
  34394. mawAnthro: {
  34395. height: math.unit(2.14, "feet"),
  34396. name: "Maw",
  34397. image: {
  34398. source: "./media/characters/sini/maw-anthro.svg"
  34399. },
  34400. form: "anthro"
  34401. },
  34402. dick: {
  34403. height: math.unit(1.45, "feet"),
  34404. name: "Dick",
  34405. image: {
  34406. source: "./media/characters/sini/dick-anthro.svg"
  34407. },
  34408. form: "anthro"
  34409. },
  34410. feral: {
  34411. height: math.unit(16, "feet"),
  34412. name: "Feral",
  34413. image: {
  34414. source: "./media/characters/sini/feral.svg",
  34415. extra: 814/605,
  34416. bottom: 11/825
  34417. },
  34418. form: "feral",
  34419. default: true
  34420. },
  34421. feralNsfw: {
  34422. height: math.unit(16, "feet"),
  34423. name: "Feral (NSFW)",
  34424. image: {
  34425. source: "./media/characters/sini/feral-nsfw.svg",
  34426. extra: 814/605,
  34427. bottom: 11/825
  34428. },
  34429. form: "feral"
  34430. },
  34431. mawFeral: {
  34432. height: math.unit(5.66, "feet"),
  34433. name: "Maw",
  34434. image: {
  34435. source: "./media/characters/sini/maw-feral.svg"
  34436. },
  34437. form: "feral",
  34438. },
  34439. pawFeral: {
  34440. height: math.unit(5.17, "feet"),
  34441. name: "Paw",
  34442. image: {
  34443. source: "./media/characters/sini/paw-feral.svg"
  34444. },
  34445. form: "feral",
  34446. },
  34447. rumpFeral: {
  34448. height: math.unit(13.11, "feet"),
  34449. name: "Rump",
  34450. image: {
  34451. source: "./media/characters/sini/rump-feral.svg"
  34452. },
  34453. form: "feral",
  34454. },
  34455. dickFeral: {
  34456. height: math.unit(1, "feet"),
  34457. name: "Dick",
  34458. image: {
  34459. source: "./media/characters/sini/dick-feral.svg"
  34460. },
  34461. form: "feral",
  34462. },
  34463. eyeFeral: {
  34464. height: math.unit(1.23, "feet"),
  34465. name: "Eye",
  34466. image: {
  34467. source: "./media/characters/sini/eye-feral.svg"
  34468. },
  34469. form: "feral",
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(7, "feet"),
  34476. default: true,
  34477. form: "anthro"
  34478. },
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(16, "feet"),
  34482. default: true,
  34483. form: "feral"
  34484. },
  34485. ],
  34486. {
  34487. "anthro": {
  34488. name: "Anthro",
  34489. default: true
  34490. },
  34491. "feral": {
  34492. name: "Feral",
  34493. }
  34494. }
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34498. {
  34499. side: {
  34500. height: math.unit(47.2, "meters"),
  34501. weight: math.unit(10000, "tons"),
  34502. name: "Side",
  34503. image: {
  34504. source: "./media/characters/raylldo/side.svg",
  34505. extra: 2363/642,
  34506. bottom: 221/2584
  34507. }
  34508. },
  34509. top: {
  34510. height: math.unit(240, "meters"),
  34511. weight: math.unit(10000, "tons"),
  34512. name: "Top",
  34513. image: {
  34514. source: "./media/characters/raylldo/top.svg"
  34515. }
  34516. },
  34517. bottom: {
  34518. height: math.unit(240, "meters"),
  34519. weight: math.unit(10000, "tons"),
  34520. name: "Bottom",
  34521. image: {
  34522. source: "./media/characters/raylldo/bottom.svg"
  34523. }
  34524. },
  34525. head: {
  34526. height: math.unit(38.6, "meters"),
  34527. name: "Head",
  34528. image: {
  34529. source: "./media/characters/raylldo/head.svg",
  34530. extra: 1335/1112,
  34531. bottom: 0/1335
  34532. }
  34533. },
  34534. maw: {
  34535. height: math.unit(16.37, "meters"),
  34536. name: "Maw",
  34537. image: {
  34538. source: "./media/characters/raylldo/maw.svg",
  34539. extra: 883/660,
  34540. bottom: 0/883
  34541. },
  34542. extraAttributes: {
  34543. preyCapacity: {
  34544. name: "Capacity",
  34545. power: 3,
  34546. type: "volume",
  34547. base: math.unit(1000, "people")
  34548. },
  34549. tongueSize: {
  34550. name: "Tongue Size",
  34551. power: 2,
  34552. type: "area",
  34553. base: math.unit(21, "m^2")
  34554. }
  34555. }
  34556. },
  34557. forepaw: {
  34558. height: math.unit(18, "meters"),
  34559. name: "Forepaw",
  34560. image: {
  34561. source: "./media/characters/raylldo/forepaw.svg"
  34562. }
  34563. },
  34564. hindpaw: {
  34565. height: math.unit(23, "meters"),
  34566. name: "Hindpaw",
  34567. image: {
  34568. source: "./media/characters/raylldo/hindpaw.svg"
  34569. }
  34570. },
  34571. genitals: {
  34572. height: math.unit(42, "meters"),
  34573. name: "Genitals",
  34574. image: {
  34575. source: "./media/characters/raylldo/genitals.svg"
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(47.2, "meters"),
  34583. default: true
  34584. },
  34585. ]
  34586. ))
  34587. characterMakers.push(() => makeCharacter(
  34588. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34589. {
  34590. anthroFront: {
  34591. height: math.unit(9, "feet"),
  34592. weight: math.unit(600, "lb"),
  34593. name: "Anthro (Front)",
  34594. image: {
  34595. source: "./media/characters/glint/anthro-front.svg",
  34596. extra: 1097/1018,
  34597. bottom: 28/1125
  34598. }
  34599. },
  34600. anthroBack: {
  34601. height: math.unit(9, "feet"),
  34602. weight: math.unit(600, "lb"),
  34603. name: "Anthro (Back)",
  34604. image: {
  34605. source: "./media/characters/glint/anthro-back.svg",
  34606. extra: 1154/997,
  34607. bottom: 36/1190
  34608. }
  34609. },
  34610. feral: {
  34611. height: math.unit(11, "feet"),
  34612. weight: math.unit(50000, "lb"),
  34613. name: "Feral",
  34614. image: {
  34615. source: "./media/characters/glint/feral.svg",
  34616. extra: 3035/1585,
  34617. bottom: 1169/4204
  34618. }
  34619. },
  34620. dickAnthro: {
  34621. height: math.unit(0.7, "meters"),
  34622. name: "Dick (Anthro)",
  34623. image: {
  34624. source: "./media/characters/glint/dick-anthro.svg"
  34625. }
  34626. },
  34627. dickFeral: {
  34628. height: math.unit(2.65, "meters"),
  34629. name: "Dick (Feral)",
  34630. image: {
  34631. source: "./media/characters/glint/dick-feral.svg"
  34632. }
  34633. },
  34634. slitHidden: {
  34635. height: math.unit(5.85, "meters"),
  34636. name: "Slit (Hidden)",
  34637. image: {
  34638. source: "./media/characters/glint/slit-hidden.svg"
  34639. }
  34640. },
  34641. slitErect: {
  34642. height: math.unit(5.85, "meters"),
  34643. name: "Slit (Erect)",
  34644. image: {
  34645. source: "./media/characters/glint/slit-erect.svg"
  34646. }
  34647. },
  34648. mawAnthro: {
  34649. height: math.unit(0.63, "meters"),
  34650. name: "Maw (Anthro)",
  34651. image: {
  34652. source: "./media/characters/glint/maw.svg"
  34653. }
  34654. },
  34655. mawFeral: {
  34656. height: math.unit(2.89, "meters"),
  34657. name: "Maw (Feral)",
  34658. image: {
  34659. source: "./media/characters/glint/maw.svg"
  34660. }
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(9, "feet"),
  34667. default: true
  34668. },
  34669. ]
  34670. ))
  34671. characterMakers.push(() => makeCharacter(
  34672. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34673. {
  34674. side: {
  34675. height: math.unit(15, "feet"),
  34676. weight: math.unit(5000, "kg"),
  34677. name: "Side",
  34678. image: {
  34679. source: "./media/characters/kairne/side.svg",
  34680. extra: 979/811,
  34681. bottom: 13/992
  34682. }
  34683. },
  34684. front: {
  34685. height: math.unit(15, "feet"),
  34686. weight: math.unit(5000, "kg"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/kairne/front.svg",
  34690. extra: 908/814,
  34691. bottom: 26/934
  34692. }
  34693. },
  34694. sideNsfw: {
  34695. height: math.unit(15, "feet"),
  34696. weight: math.unit(5000, "kg"),
  34697. name: "Side (NSFW)",
  34698. image: {
  34699. source: "./media/characters/kairne/side-nsfw.svg",
  34700. extra: 979/811,
  34701. bottom: 13/992
  34702. }
  34703. },
  34704. frontNsfw: {
  34705. height: math.unit(15, "feet"),
  34706. weight: math.unit(5000, "kg"),
  34707. name: "Front (NSFW)",
  34708. image: {
  34709. source: "./media/characters/kairne/front-nsfw.svg",
  34710. extra: 908/814,
  34711. bottom: 26/934
  34712. }
  34713. },
  34714. dickCaged: {
  34715. height: math.unit(0.65, "meters"),
  34716. name: "Dick-caged",
  34717. image: {
  34718. source: "./media/characters/kairne/dick-caged.svg"
  34719. }
  34720. },
  34721. dick: {
  34722. height: math.unit(0.79, "meters"),
  34723. name: "Dick",
  34724. image: {
  34725. source: "./media/characters/kairne/dick.svg"
  34726. }
  34727. },
  34728. genitals: {
  34729. height: math.unit(1.29, "meters"),
  34730. name: "Genitals",
  34731. image: {
  34732. source: "./media/characters/kairne/genitals.svg"
  34733. }
  34734. },
  34735. maw: {
  34736. height: math.unit(1.73, "meters"),
  34737. name: "Maw",
  34738. image: {
  34739. source: "./media/characters/kairne/maw.svg"
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(15, "feet"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34753. {
  34754. front: {
  34755. height: math.unit(5 + 8/12, "feet"),
  34756. weight: math.unit(139, "lb"),
  34757. name: "Front",
  34758. image: {
  34759. source: "./media/characters/biscuit-jackal/front.svg",
  34760. extra: 2106/1961,
  34761. bottom: 58/2164
  34762. }
  34763. },
  34764. back: {
  34765. height: math.unit(5 + 8/12, "feet"),
  34766. weight: math.unit(139, "lb"),
  34767. name: "Back",
  34768. image: {
  34769. source: "./media/characters/biscuit-jackal/back.svg",
  34770. extra: 2132/1976,
  34771. bottom: 57/2189
  34772. }
  34773. },
  34774. werejackal: {
  34775. height: math.unit(6 + 3/12, "feet"),
  34776. weight: math.unit(188, "lb"),
  34777. name: "Werejackal",
  34778. image: {
  34779. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34780. extra: 2373/2178,
  34781. bottom: 53/2426
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(5 + 8/12, "feet"),
  34789. default: true
  34790. },
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34795. {
  34796. front: {
  34797. height: math.unit(140, "cm"),
  34798. weight: math.unit(45, "kg"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/tayra-white/front.svg",
  34802. extra: 2229/2192,
  34803. bottom: 75/2304
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(140, "cm"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(4 + 5/12, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/scoop/front.svg",
  34823. extra: 1257/1136,
  34824. bottom: 69/1326
  34825. }
  34826. },
  34827. back: {
  34828. height: math.unit(4 + 5/12, "feet"),
  34829. name: "Back",
  34830. image: {
  34831. source: "./media/characters/scoop/back.svg",
  34832. extra: 1321/1152,
  34833. bottom: 32/1353
  34834. }
  34835. },
  34836. maw: {
  34837. height: math.unit(0.68, "feet"),
  34838. name: "Maw",
  34839. image: {
  34840. source: "./media/characters/scoop/maw.svg"
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Really Small",
  34847. height: math.unit(1, "mm")
  34848. },
  34849. {
  34850. name: "Micro",
  34851. height: math.unit(1, "inch")
  34852. },
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(4 + 5/12, "feet"),
  34856. default: true
  34857. },
  34858. {
  34859. name: "Macro",
  34860. height: math.unit(200, "feet")
  34861. },
  34862. {
  34863. name: "Megamacro",
  34864. height: math.unit(3240, "feet")
  34865. },
  34866. {
  34867. name: "Teramacro",
  34868. height: math.unit(2500, "miles")
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(15 + 7/12, "feet"),
  34877. weight: math.unit(1150, "tons"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/saphinara/front.svg",
  34881. extra: 1837/1643,
  34882. bottom: 84/1921
  34883. },
  34884. form: "normal",
  34885. default: true
  34886. },
  34887. side: {
  34888. height: math.unit(15 + 7/12, "feet"),
  34889. weight: math.unit(1150, "tons"),
  34890. name: "Side",
  34891. image: {
  34892. source: "./media/characters/saphinara/side.svg",
  34893. extra: 605/547,
  34894. bottom: 6/611
  34895. },
  34896. form: "normal"
  34897. },
  34898. back: {
  34899. height: math.unit(15 + 7/12, "feet"),
  34900. weight: math.unit(1150, "tons"),
  34901. name: "Back",
  34902. image: {
  34903. source: "./media/characters/saphinara/back.svg",
  34904. extra: 591/531,
  34905. bottom: 13/604
  34906. },
  34907. form: "normal"
  34908. },
  34909. frontTail: {
  34910. height: math.unit(15 + 7/12, "feet"),
  34911. weight: math.unit(1150, "tons"),
  34912. name: "Front (Full Tail)",
  34913. image: {
  34914. source: "./media/characters/saphinara/front-tail.svg",
  34915. extra: 2256/1630,
  34916. bottom: 261/2517
  34917. },
  34918. form: "normal"
  34919. },
  34920. insides: {
  34921. height: math.unit(11.92, "feet"),
  34922. name: "Insides",
  34923. image: {
  34924. source: "./media/characters/saphinara/insides.svg"
  34925. },
  34926. form: "normal"
  34927. },
  34928. head: {
  34929. height: math.unit(4.17, "feet"),
  34930. name: "Head",
  34931. image: {
  34932. source: "./media/characters/saphinara/head.svg"
  34933. },
  34934. form: "normal"
  34935. },
  34936. tongue: {
  34937. height: math.unit(4.60, "feet"),
  34938. name: "Tongue",
  34939. image: {
  34940. source: "./media/characters/saphinara/tongue.svg"
  34941. },
  34942. form: "normal"
  34943. },
  34944. headEnraged: {
  34945. height: math.unit(5.55, "feet"),
  34946. name: "Head (Enraged)",
  34947. image: {
  34948. source: "./media/characters/saphinara/head-enraged.svg"
  34949. },
  34950. form: "normal"
  34951. },
  34952. wings: {
  34953. height: math.unit(11.95, "feet"),
  34954. name: "Wings",
  34955. image: {
  34956. source: "./media/characters/saphinara/wings.svg"
  34957. },
  34958. form: "normal"
  34959. },
  34960. feathers: {
  34961. height: math.unit(8.92, "feet"),
  34962. name: "Feathers",
  34963. image: {
  34964. source: "./media/characters/saphinara/feathers.svg"
  34965. },
  34966. form: "normal"
  34967. },
  34968. shackles: {
  34969. height: math.unit(2, "feet"),
  34970. name: "Shackles",
  34971. image: {
  34972. source: "./media/characters/saphinara/shackles.svg"
  34973. },
  34974. form: "normal"
  34975. },
  34976. eyes: {
  34977. height: math.unit(1.331, "feet"),
  34978. name: "Eyes",
  34979. image: {
  34980. source: "./media/characters/saphinara/eyes.svg"
  34981. },
  34982. form: "normal"
  34983. },
  34984. eyesEnraged: {
  34985. height: math.unit(1.331, "feet"),
  34986. name: "Eyes (Enraged)",
  34987. image: {
  34988. source: "./media/characters/saphinara/eyes-enraged.svg"
  34989. },
  34990. form: "normal"
  34991. },
  34992. trueFormSide: {
  34993. height: math.unit(200, "feet"),
  34994. weight: math.unit(1e7, "tons"),
  34995. name: "Side",
  34996. image: {
  34997. source: "./media/characters/saphinara/true-form-side.svg",
  34998. extra: 1399/770,
  34999. bottom: 97/1496
  35000. },
  35001. form: "true-form",
  35002. default: true
  35003. },
  35004. trueFormMaw: {
  35005. height: math.unit(71.5, "feet"),
  35006. name: "Maw",
  35007. image: {
  35008. source: "./media/characters/saphinara/true-form-maw.svg",
  35009. extra: 2302/1453,
  35010. bottom: 0/2302
  35011. },
  35012. form: "true-form"
  35013. },
  35014. meowberusSide: {
  35015. height: math.unit(75, "feet"),
  35016. weight: math.unit(180000, "kg"),
  35017. preyCapacity: math.unit(50000, "people"),
  35018. name: "Side",
  35019. image: {
  35020. source: "./media/characters/saphinara/meowberus-side.svg",
  35021. extra: 1400/711,
  35022. bottom: 126/1526
  35023. },
  35024. form: "meowberus",
  35025. extraAttributes: {
  35026. "pawArea": {
  35027. name: "Paw Size",
  35028. power: 2,
  35029. type: "area",
  35030. base: math.unit(35, "m^2")
  35031. }
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(15 + 7/12, "feet"),
  35039. default: true,
  35040. form: "normal"
  35041. },
  35042. {
  35043. name: "Angry",
  35044. height: math.unit(30 + 6/12, "feet"),
  35045. form: "normal"
  35046. },
  35047. {
  35048. name: "Enraged",
  35049. height: math.unit(102 + 1/12, "feet"),
  35050. form: "normal"
  35051. },
  35052. {
  35053. name: "True",
  35054. height: math.unit(200, "feet"),
  35055. default: true,
  35056. form: "true-form"
  35057. },
  35058. {
  35059. name: "Normal",
  35060. height: math.unit(75, "feet"),
  35061. default: true,
  35062. form: "meowberus"
  35063. },
  35064. ],
  35065. {
  35066. "normal": {
  35067. name: "Normal",
  35068. default: true
  35069. },
  35070. "true-form": {
  35071. name: "True Form"
  35072. },
  35073. "meowberus": {
  35074. name: "Meowberus",
  35075. },
  35076. }
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(6 + 8/12, "feet"),
  35083. weight: math.unit(300, "lb"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/jrain/front.svg",
  35087. extra: 3039/2865,
  35088. bottom: 399/3438
  35089. }
  35090. },
  35091. back: {
  35092. height: math.unit(6 + 8/12, "feet"),
  35093. weight: math.unit(300, "lb"),
  35094. name: "Back",
  35095. image: {
  35096. source: "./media/characters/jrain/back.svg",
  35097. extra: 3089/2938,
  35098. bottom: 172/3261
  35099. }
  35100. },
  35101. head: {
  35102. height: math.unit(2.14, "feet"),
  35103. name: "Head",
  35104. image: {
  35105. source: "./media/characters/jrain/head.svg"
  35106. }
  35107. },
  35108. maw: {
  35109. height: math.unit(1.77, "feet"),
  35110. name: "Maw",
  35111. image: {
  35112. source: "./media/characters/jrain/maw.svg"
  35113. }
  35114. },
  35115. leftHand: {
  35116. height: math.unit(1.1, "feet"),
  35117. name: "Left Hand",
  35118. image: {
  35119. source: "./media/characters/jrain/left-hand.svg"
  35120. }
  35121. },
  35122. rightHand: {
  35123. height: math.unit(1.1, "feet"),
  35124. name: "Right Hand",
  35125. image: {
  35126. source: "./media/characters/jrain/right-hand.svg"
  35127. }
  35128. },
  35129. eye: {
  35130. height: math.unit(0.35, "feet"),
  35131. name: "Eye",
  35132. image: {
  35133. source: "./media/characters/jrain/eye.svg"
  35134. }
  35135. },
  35136. },
  35137. [
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(6 + 8/12, "feet"),
  35141. default: true
  35142. },
  35143. {
  35144. name: "Casually Large",
  35145. height: math.unit(25, "feet")
  35146. },
  35147. {
  35148. name: "Giant",
  35149. height: math.unit(100, "feet")
  35150. },
  35151. {
  35152. name: "Kaiju",
  35153. height: math.unit(300, "feet")
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35159. {
  35160. dragon: {
  35161. height: math.unit(5, "meters"),
  35162. name: "Dragon",
  35163. image: {
  35164. source: "./media/characters/sabrina/dragon.svg",
  35165. extra: 3670 / 2365,
  35166. bottom: 333 / 4003
  35167. }
  35168. },
  35169. gryphon: {
  35170. height: math.unit(3, "meters"),
  35171. name: "Gryphon",
  35172. image: {
  35173. source: "./media/characters/sabrina/gryphon.svg",
  35174. extra: 1576 / 945,
  35175. bottom: 71 / 1647
  35176. }
  35177. },
  35178. snake: {
  35179. height: math.unit(12, "meters"),
  35180. name: "Snake",
  35181. image: {
  35182. source: "./media/characters/sabrina/snake.svg",
  35183. extra: 1758 / 1320,
  35184. bottom: 186 / 1944
  35185. }
  35186. },
  35187. collar: {
  35188. height: math.unit(1.86, "meters"),
  35189. name: "Collar",
  35190. image: {
  35191. source: "./media/characters/sabrina/collar.svg"
  35192. }
  35193. },
  35194. eye: {
  35195. height: math.unit(0.53, "meters"),
  35196. name: "Eye",
  35197. image: {
  35198. source: "./media/characters/sabrina/eye.svg"
  35199. }
  35200. },
  35201. foot: {
  35202. height: math.unit(1.86, "meters"),
  35203. name: "Foot",
  35204. image: {
  35205. source: "./media/characters/sabrina/foot.svg"
  35206. }
  35207. },
  35208. hand: {
  35209. height: math.unit(1.32, "meters"),
  35210. name: "Hand",
  35211. image: {
  35212. source: "./media/characters/sabrina/hand.svg"
  35213. }
  35214. },
  35215. head: {
  35216. height: math.unit(2.44, "meters"),
  35217. name: "Head",
  35218. image: {
  35219. source: "./media/characters/sabrina/head.svg"
  35220. }
  35221. },
  35222. headAngry: {
  35223. height: math.unit(2.44, "meters"),
  35224. name: "Head (Angry))",
  35225. image: {
  35226. source: "./media/characters/sabrina/head-angry.svg"
  35227. }
  35228. },
  35229. maw: {
  35230. height: math.unit(1.65, "meters"),
  35231. name: "Maw",
  35232. image: {
  35233. source: "./media/characters/sabrina/maw.svg"
  35234. }
  35235. },
  35236. spikes: {
  35237. height: math.unit(1.69, "meters"),
  35238. name: "Spikes",
  35239. image: {
  35240. source: "./media/characters/sabrina/spikes.svg"
  35241. }
  35242. },
  35243. stomach: {
  35244. height: math.unit(1.15, "meters"),
  35245. name: "Stomach",
  35246. image: {
  35247. source: "./media/characters/sabrina/stomach.svg"
  35248. }
  35249. },
  35250. tongue: {
  35251. height: math.unit(1.27, "meters"),
  35252. name: "Tongue",
  35253. image: {
  35254. source: "./media/characters/sabrina/tongue.svg"
  35255. }
  35256. },
  35257. wingDorsal: {
  35258. height: math.unit(4.85, "meters"),
  35259. name: "Wing (Dorsal)",
  35260. image: {
  35261. source: "./media/characters/sabrina/wing-dorsal.svg"
  35262. }
  35263. },
  35264. wingVentral: {
  35265. height: math.unit(4.85, "meters"),
  35266. name: "Wing (Ventral)",
  35267. image: {
  35268. source: "./media/characters/sabrina/wing-ventral.svg"
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(5, "meters"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35282. {
  35283. frontMaid: {
  35284. height: math.unit(5 + 5/12, "feet"),
  35285. weight: math.unit(130, "lb"),
  35286. name: "Front (Maid)",
  35287. image: {
  35288. source: "./media/characters/midnight-tales/front-maid.svg",
  35289. extra: 489/454,
  35290. bottom: 61/550
  35291. }
  35292. },
  35293. frontFormal: {
  35294. height: math.unit(5 + 5/12, "feet"),
  35295. weight: math.unit(130, "lb"),
  35296. name: "Front (Formal)",
  35297. image: {
  35298. source: "./media/characters/midnight-tales/front-formal.svg",
  35299. extra: 489/454,
  35300. bottom: 61/550
  35301. }
  35302. },
  35303. back: {
  35304. height: math.unit(5 + 5/12, "feet"),
  35305. weight: math.unit(130, "lb"),
  35306. name: "Back",
  35307. image: {
  35308. source: "./media/characters/midnight-tales/back.svg",
  35309. extra: 498/456,
  35310. bottom: 33/531
  35311. }
  35312. },
  35313. frontBeast: {
  35314. height: math.unit(40, "feet"),
  35315. weight: math.unit(64000, "lb"),
  35316. name: "Front (Beast)",
  35317. image: {
  35318. source: "./media/characters/midnight-tales/front-beast.svg",
  35319. extra: 927/860,
  35320. bottom: 53/980
  35321. }
  35322. },
  35323. backBeast: {
  35324. height: math.unit(40, "feet"),
  35325. weight: math.unit(64000, "lb"),
  35326. name: "Back (Beast)",
  35327. image: {
  35328. source: "./media/characters/midnight-tales/back-beast.svg",
  35329. extra: 929/855,
  35330. bottom: 16/945
  35331. }
  35332. },
  35333. footBeast: {
  35334. height: math.unit(6.7, "feet"),
  35335. name: "Foot (Beast)",
  35336. image: {
  35337. source: "./media/characters/midnight-tales/foot-beast.svg"
  35338. }
  35339. },
  35340. headBeast: {
  35341. height: math.unit(8, "feet"),
  35342. name: "Head (Beast)",
  35343. image: {
  35344. source: "./media/characters/midnight-tales/head-beast.svg"
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Normal",
  35351. height: math.unit(5 + 5 / 12, "feet"),
  35352. default: true
  35353. },
  35354. {
  35355. name: "Macro",
  35356. height: math.unit(25, "feet")
  35357. },
  35358. ]
  35359. ))
  35360. characterMakers.push(() => makeCharacter(
  35361. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35362. {
  35363. front: {
  35364. height: math.unit(5 + 10/12, "feet"),
  35365. name: "Front",
  35366. image: {
  35367. source: "./media/characters/argon/front.svg",
  35368. extra: 2009/1935,
  35369. bottom: 118/2127
  35370. }
  35371. },
  35372. back: {
  35373. height: math.unit(5 + 10/12, "feet"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/argon/back.svg",
  35377. extra: 2047/1992,
  35378. bottom: 20/2067
  35379. }
  35380. },
  35381. frontDressed: {
  35382. height: math.unit(5 + 10/12, "feet"),
  35383. name: "Front (Dressed)",
  35384. image: {
  35385. source: "./media/characters/argon/front-dressed.svg",
  35386. extra: 2009/1935,
  35387. bottom: 118/2127
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(5 + 10/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(8 + 6/12, "feet"),
  35404. weight: math.unit(1150, "lb"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/kichi/front.svg",
  35408. extra: 1267/1164,
  35409. bottom: 61/1328
  35410. }
  35411. },
  35412. back: {
  35413. height: math.unit(8 + 6/12, "feet"),
  35414. weight: math.unit(1150, "lb"),
  35415. name: "Back",
  35416. image: {
  35417. source: "./media/characters/kichi/back.svg",
  35418. extra: 1273/1166,
  35419. bottom: 33/1306
  35420. }
  35421. },
  35422. },
  35423. [
  35424. {
  35425. name: "Normal",
  35426. height: math.unit(8 + 6/12, "feet"),
  35427. default: true
  35428. },
  35429. ]
  35430. ))
  35431. characterMakers.push(() => makeCharacter(
  35432. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35433. {
  35434. front: {
  35435. height: math.unit(6, "feet"),
  35436. weight: math.unit(210, "lb"),
  35437. name: "Front",
  35438. image: {
  35439. source: "./media/characters/manetel-greyscale/front.svg",
  35440. extra: 350/312,
  35441. bottom: 8/358
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Micro",
  35448. height: math.unit(2, "inches")
  35449. },
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(6, "feet"),
  35453. default: true
  35454. },
  35455. {
  35456. name: "Minimacro",
  35457. height: math.unit(17, "feet")
  35458. },
  35459. {
  35460. name: "Macro",
  35461. height: math.unit(117, "feet")
  35462. },
  35463. ]
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35467. {
  35468. side: {
  35469. height: math.unit(5 + 1/12, "feet"),
  35470. weight: math.unit(418, "lb"),
  35471. name: "Side",
  35472. image: {
  35473. source: "./media/characters/softpurr/side.svg",
  35474. extra: 1993/1945,
  35475. bottom: 134/2127
  35476. }
  35477. },
  35478. front: {
  35479. height: math.unit(5 + 1/12, "feet"),
  35480. weight: math.unit(418, "lb"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/softpurr/front.svg",
  35484. extra: 1950/1856,
  35485. bottom: 174/2124
  35486. }
  35487. },
  35488. paw: {
  35489. height: math.unit(1, "feet"),
  35490. name: "Paw",
  35491. image: {
  35492. source: "./media/characters/softpurr/paw.svg"
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(5 + 1/12, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(260, "meters"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/anahita/front.svg",
  35512. extra: 665/635,
  35513. bottom: 89/754
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Macro",
  35520. height: math.unit(260, "meters"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(4 + 10/12, "feet"),
  35530. weight: math.unit(160, "lb"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/chip-mouse/front.svg",
  35534. extra: 3528/3408,
  35535. bottom: 0/3528
  35536. }
  35537. },
  35538. frontNsfw: {
  35539. height: math.unit(4 + 10/12, "feet"),
  35540. weight: math.unit(160, "lb"),
  35541. name: "Front (NSFW)",
  35542. image: {
  35543. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35544. extra: 3528/3408,
  35545. bottom: 0/3528
  35546. }
  35547. },
  35548. },
  35549. [
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(4 + 10/12, "feet"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35559. {
  35560. side: {
  35561. height: math.unit(10, "feet"),
  35562. weight: math.unit(14000, "lb"),
  35563. name: "Side",
  35564. image: {
  35565. source: "./media/characters/kremm/side.svg",
  35566. extra: 1390/1053,
  35567. bottom: 90/1480
  35568. }
  35569. },
  35570. gut: {
  35571. height: math.unit(5.8, "feet"),
  35572. name: "Gut",
  35573. image: {
  35574. source: "./media/characters/kremm/gut.svg"
  35575. }
  35576. },
  35577. ass: {
  35578. height: math.unit(6.1, "feet"),
  35579. name: "Ass",
  35580. image: {
  35581. source: "./media/characters/kremm/ass.svg"
  35582. }
  35583. },
  35584. jaws: {
  35585. height: math.unit(2.2, "feet"),
  35586. name: "Jaws",
  35587. image: {
  35588. source: "./media/characters/kremm/jaws.svg"
  35589. }
  35590. },
  35591. dick: {
  35592. height: math.unit(4.26, "feet"),
  35593. name: "Dick",
  35594. image: {
  35595. source: "./media/characters/kremm/dick.svg"
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Normal",
  35602. height: math.unit(10, "feet"),
  35603. default: true
  35604. },
  35605. ]
  35606. ))
  35607. characterMakers.push(() => makeCharacter(
  35608. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35609. {
  35610. front: {
  35611. height: math.unit(30, "stories"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/kai/front.svg",
  35615. extra: 1892/1718,
  35616. bottom: 162/2054
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Macro",
  35623. height: math.unit(30, "stories"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35630. {
  35631. front: {
  35632. height: math.unit(6 + 4/12, "feet"),
  35633. weight: math.unit(145, "lb"),
  35634. name: "Front",
  35635. image: {
  35636. source: "./media/characters/sykes/front.svg",
  35637. extra: 1321 / 1187,
  35638. bottom: 66 / 1387
  35639. }
  35640. },
  35641. back: {
  35642. height: math.unit(6 + 4/12, "feet"),
  35643. weight: math.unit(145, "lb"),
  35644. name: "Back",
  35645. image: {
  35646. source: "./media/characters/sykes/back.svg",
  35647. extra: 1326/1181,
  35648. bottom: 31/1357
  35649. }
  35650. },
  35651. traditionalOutfit: {
  35652. height: math.unit(6 + 4/12, "feet"),
  35653. weight: math.unit(145, "lb"),
  35654. name: "Traditional Outfit",
  35655. image: {
  35656. source: "./media/characters/sykes/traditional-outfit.svg",
  35657. extra: 1321 / 1187,
  35658. bottom: 66 / 1387
  35659. }
  35660. },
  35661. adventureOutfit: {
  35662. height: math.unit(6 + 4/12, "feet"),
  35663. weight: math.unit(145, "lb"),
  35664. name: "Adventure Outfit",
  35665. image: {
  35666. source: "./media/characters/sykes/adventure-outfit.svg",
  35667. extra: 1321 / 1187,
  35668. bottom: 66 / 1387
  35669. }
  35670. },
  35671. handLeft: {
  35672. height: math.unit(0.9, "feet"),
  35673. name: "Hand (Left)",
  35674. image: {
  35675. source: "./media/characters/sykes/hand-left.svg"
  35676. }
  35677. },
  35678. handRight: {
  35679. height: math.unit(0.839, "feet"),
  35680. name: "Hand (Right)",
  35681. image: {
  35682. source: "./media/characters/sykes/hand-right.svg"
  35683. }
  35684. },
  35685. leftFoot: {
  35686. height: math.unit(1.2, "feet"),
  35687. name: "Foot (Left)",
  35688. image: {
  35689. source: "./media/characters/sykes/foot-left.svg"
  35690. }
  35691. },
  35692. rightFoot: {
  35693. height: math.unit(1.2, "feet"),
  35694. name: "Foot (Right)",
  35695. image: {
  35696. source: "./media/characters/sykes/foot-right.svg"
  35697. }
  35698. },
  35699. maw: {
  35700. height: math.unit(1.93, "feet"),
  35701. name: "Maw",
  35702. image: {
  35703. source: "./media/characters/sykes/maw.svg"
  35704. }
  35705. },
  35706. teeth: {
  35707. height: math.unit(0.51, "feet"),
  35708. name: "Teeth",
  35709. image: {
  35710. source: "./media/characters/sykes/teeth.svg"
  35711. }
  35712. },
  35713. tongue: {
  35714. height: math.unit(2.13, "feet"),
  35715. name: "Tongue",
  35716. image: {
  35717. source: "./media/characters/sykes/tongue.svg"
  35718. }
  35719. },
  35720. uvula: {
  35721. height: math.unit(0.16, "feet"),
  35722. name: "Uvula",
  35723. image: {
  35724. source: "./media/characters/sykes/uvula.svg"
  35725. }
  35726. },
  35727. collar: {
  35728. height: math.unit(0.287, "feet"),
  35729. name: "Collar",
  35730. image: {
  35731. source: "./media/characters/sykes/collar.svg"
  35732. }
  35733. },
  35734. tail: {
  35735. height: math.unit(3.8, "feet"),
  35736. name: "Tail",
  35737. image: {
  35738. source: "./media/characters/sykes/tail.svg"
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Shrunken",
  35745. height: math.unit(5, "inches")
  35746. },
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(6 + 4 / 12, "feet"),
  35750. default: true
  35751. },
  35752. {
  35753. name: "Big",
  35754. height: math.unit(15, "feet")
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(5 + 8/12, "feet"),
  35763. weight: math.unit(190, "lb"),
  35764. name: "Front",
  35765. image: {
  35766. source: "./media/characters/oven-otter/front.svg",
  35767. extra: 1809/1740,
  35768. bottom: 181/1990
  35769. }
  35770. },
  35771. back: {
  35772. height: math.unit(5 + 8/12, "feet"),
  35773. weight: math.unit(190, "lb"),
  35774. name: "Back",
  35775. image: {
  35776. source: "./media/characters/oven-otter/back.svg",
  35777. extra: 1709/1635,
  35778. bottom: 118/1827
  35779. }
  35780. },
  35781. hand: {
  35782. height: math.unit(1.07, "feet"),
  35783. name: "Hand",
  35784. image: {
  35785. source: "./media/characters/oven-otter/hand.svg"
  35786. }
  35787. },
  35788. beans: {
  35789. height: math.unit(1.74, "feet"),
  35790. name: "Beans",
  35791. image: {
  35792. source: "./media/characters/oven-otter/beans.svg"
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Micro",
  35799. height: math.unit(0.5, "inches")
  35800. },
  35801. {
  35802. name: "Normal",
  35803. height: math.unit(5 + 8/12, "feet"),
  35804. default: true
  35805. },
  35806. {
  35807. name: "Macro",
  35808. height: math.unit(250, "feet")
  35809. },
  35810. {
  35811. name: "Really High",
  35812. height: math.unit(420, "feet")
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(5, "meters"),
  35821. weight: math.unit(292000000000000, "kg"),
  35822. name: "Front",
  35823. image: {
  35824. source: "./media/characters/devourer/front.svg",
  35825. extra: 1800/1733,
  35826. bottom: 211/2011
  35827. }
  35828. },
  35829. maw: {
  35830. height: math.unit(1.1, "meter"),
  35831. name: "Maw",
  35832. image: {
  35833. source: "./media/characters/devourer/maw.svg"
  35834. }
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "Small",
  35840. height: math.unit(3, "meters")
  35841. },
  35842. {
  35843. name: "Large",
  35844. height: math.unit(5, "meters"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35851. {
  35852. front: {
  35853. height: math.unit(6, "feet"),
  35854. weight: math.unit(400, "lb"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/ellarby/front.svg",
  35858. extra: 1909/1763,
  35859. bottom: 80/1989
  35860. }
  35861. },
  35862. back: {
  35863. height: math.unit(6, "feet"),
  35864. weight: math.unit(400, "lb"),
  35865. name: "Back",
  35866. image: {
  35867. source: "./media/characters/ellarby/back.svg",
  35868. extra: 1914/1784,
  35869. bottom: 172/2086
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Mischief",
  35876. height: math.unit(18, "inches")
  35877. },
  35878. {
  35879. name: "Trouble",
  35880. height: math.unit(12, "feet")
  35881. },
  35882. {
  35883. name: "Havoc",
  35884. height: math.unit(200, "feet"),
  35885. default: true
  35886. },
  35887. {
  35888. name: "Pandemonium",
  35889. height: math.unit(1, "mile")
  35890. },
  35891. {
  35892. name: "Catastrophe",
  35893. height: math.unit(100, "miles")
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35899. {
  35900. front: {
  35901. height: math.unit(4.7, "meters"),
  35902. weight: math.unit(6500, "kg"),
  35903. name: "Front",
  35904. image: {
  35905. source: "./media/characters/vex/front.svg",
  35906. extra: 1288/1140,
  35907. bottom: 100/1388
  35908. }
  35909. },
  35910. },
  35911. [
  35912. {
  35913. name: "Normal",
  35914. height: math.unit(4.7, "meters"),
  35915. default: true
  35916. },
  35917. ]
  35918. ))
  35919. characterMakers.push(() => makeCharacter(
  35920. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35921. {
  35922. normal: {
  35923. height: math.unit(6, "feet"),
  35924. weight: math.unit(350, "lb"),
  35925. name: "Normal",
  35926. image: {
  35927. source: "./media/characters/teshy/normal.svg",
  35928. extra: 1795/1735,
  35929. bottom: 16/1811
  35930. }
  35931. },
  35932. monsterFront: {
  35933. height: math.unit(12, "feet"),
  35934. weight: math.unit(4700, "lb"),
  35935. name: "Monster (Front)",
  35936. image: {
  35937. source: "./media/characters/teshy/monster-front.svg",
  35938. extra: 2042/2034,
  35939. bottom: 128/2170
  35940. }
  35941. },
  35942. monsterSide: {
  35943. height: math.unit(12, "feet"),
  35944. weight: math.unit(4700, "lb"),
  35945. name: "Monster (Side)",
  35946. image: {
  35947. source: "./media/characters/teshy/monster-side.svg",
  35948. extra: 2067/2056,
  35949. bottom: 70/2137
  35950. }
  35951. },
  35952. monsterBack: {
  35953. height: math.unit(12, "feet"),
  35954. weight: math.unit(4700, "lb"),
  35955. name: "Monster (Back)",
  35956. image: {
  35957. source: "./media/characters/teshy/monster-back.svg",
  35958. extra: 1921/1914,
  35959. bottom: 171/2092
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(6, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35973. {
  35974. front: {
  35975. height: math.unit(6, "feet"),
  35976. name: "Front",
  35977. image: {
  35978. source: "./media/characters/ramey/front.svg",
  35979. extra: 790/787,
  35980. bottom: 27/817
  35981. }
  35982. },
  35983. },
  35984. [
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(6, "feet"),
  35988. default: true
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35994. {
  35995. front: {
  35996. height: math.unit(5 + 5/12, "feet"),
  35997. weight: math.unit(120, "lb"),
  35998. name: "Front",
  35999. image: {
  36000. source: "./media/characters/phirae/front.svg",
  36001. extra: 2491/2436,
  36002. bottom: 38/2529
  36003. }
  36004. },
  36005. },
  36006. [
  36007. {
  36008. name: "Normal",
  36009. height: math.unit(5 + 5/12, "feet"),
  36010. default: true
  36011. },
  36012. ]
  36013. ))
  36014. characterMakers.push(() => makeCharacter(
  36015. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36016. {
  36017. front: {
  36018. height: math.unit(5 + 3/12, "feet"),
  36019. name: "Front",
  36020. image: {
  36021. source: "./media/characters/stagglas/front.svg",
  36022. extra: 962/882,
  36023. bottom: 53/1015
  36024. }
  36025. },
  36026. feral: {
  36027. height: math.unit(335, "cm"),
  36028. name: "Feral",
  36029. image: {
  36030. source: "./media/characters/stagglas/feral.svg",
  36031. extra: 1732/1090,
  36032. bottom: 48/1780
  36033. }
  36034. },
  36035. },
  36036. [
  36037. {
  36038. name: "Normal",
  36039. height: math.unit(5 + 3/12, "feet"),
  36040. default: true
  36041. },
  36042. ]
  36043. ))
  36044. characterMakers.push(() => makeCharacter(
  36045. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36046. {
  36047. front: {
  36048. height: math.unit(5 + 4/12, "feet"),
  36049. weight: math.unit(145, "lb"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/starra/front.svg",
  36053. extra: 1790/1691,
  36054. bottom: 91/1881
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(5 + 4/12, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(2.2, "meters"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36074. extra: 1248/972,
  36075. bottom: 38/1286
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(2.2, "meters"),
  36083. default: true
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36089. {
  36090. side: {
  36091. height: math.unit(8 + 2/12, "feet"),
  36092. weight: math.unit(1240, "lb"),
  36093. name: "Side",
  36094. image: {
  36095. source: "./media/characters/mika-valentine/side.svg",
  36096. extra: 2670/2501,
  36097. bottom: 250/2920
  36098. }
  36099. },
  36100. },
  36101. [
  36102. {
  36103. name: "Normal",
  36104. height: math.unit(8 + 2/12, "feet"),
  36105. default: true
  36106. },
  36107. ]
  36108. ))
  36109. characterMakers.push(() => makeCharacter(
  36110. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36111. {
  36112. front: {
  36113. height: math.unit(7 + 2/12, "feet"),
  36114. name: "Front",
  36115. image: {
  36116. source: "./media/characters/xoltol/front.svg",
  36117. extra: 2212/2124,
  36118. bottom: 84/2296
  36119. }
  36120. },
  36121. side: {
  36122. height: math.unit(7 + 2/12, "feet"),
  36123. name: "Side",
  36124. image: {
  36125. source: "./media/characters/xoltol/side.svg",
  36126. extra: 2273/2197,
  36127. bottom: 26/2299
  36128. }
  36129. },
  36130. hand: {
  36131. height: math.unit(2.5, "feet"),
  36132. name: "Hand",
  36133. image: {
  36134. source: "./media/characters/xoltol/hand.svg"
  36135. }
  36136. },
  36137. },
  36138. [
  36139. {
  36140. name: "Small-ish",
  36141. height: math.unit(5 + 11/12, "feet")
  36142. },
  36143. {
  36144. name: "Normal",
  36145. height: math.unit(7 + 2/12, "feet")
  36146. },
  36147. {
  36148. name: "\"Macro\"",
  36149. height: math.unit(14 + 9/12, "feet"),
  36150. default: true
  36151. },
  36152. {
  36153. name: "Alternate Height",
  36154. height: math.unit(20, "feet")
  36155. },
  36156. {
  36157. name: "Actually Macro",
  36158. height: math.unit(100, "feet")
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36164. {
  36165. front: {
  36166. height: math.unit(5 + 2/12, "feet"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/kotetsu-redwood/front.svg",
  36170. extra: 1053/942,
  36171. bottom: 60/1113
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(5 + 2/12, "feet"),
  36179. default: true
  36180. },
  36181. ]
  36182. ))
  36183. characterMakers.push(() => makeCharacter(
  36184. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36185. {
  36186. front: {
  36187. height: math.unit(2.4, "meters"),
  36188. weight: math.unit(125, "kg"),
  36189. name: "Front",
  36190. image: {
  36191. source: "./media/characters/lilith/front.svg",
  36192. extra: 1590/1513,
  36193. bottom: 203/1793
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Humanoid",
  36200. height: math.unit(2.4, "meters")
  36201. },
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(6, "meters"),
  36205. default: true
  36206. },
  36207. {
  36208. name: "Largest",
  36209. height: math.unit(55, "meters")
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(8 + 4/12, "feet"),
  36218. weight: math.unit(535, "lb"),
  36219. name: "Front",
  36220. image: {
  36221. source: "./media/characters/beh'kah-bolger/front.svg",
  36222. extra: 1660/1603,
  36223. bottom: 37/1697
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(8 + 4/12, "feet"),
  36231. default: true
  36232. },
  36233. {
  36234. name: "Kaiju",
  36235. height: math.unit(250, "feet")
  36236. },
  36237. {
  36238. name: "Still Growing",
  36239. height: math.unit(10, "miles")
  36240. },
  36241. {
  36242. name: "Continental",
  36243. height: math.unit(5000, "miles")
  36244. },
  36245. {
  36246. name: "Final Form",
  36247. height: math.unit(2500000, "miles")
  36248. },
  36249. ]
  36250. ))
  36251. characterMakers.push(() => makeCharacter(
  36252. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36253. {
  36254. front: {
  36255. height: math.unit(7 + 2/12, "feet"),
  36256. weight: math.unit(230, "kg"),
  36257. name: "Front",
  36258. image: {
  36259. source: "./media/characters/tatyana-milewska/front.svg",
  36260. extra: 1199/1150,
  36261. bottom: 86/1285
  36262. }
  36263. },
  36264. },
  36265. [
  36266. {
  36267. name: "Normal",
  36268. height: math.unit(7 + 2/12, "feet"),
  36269. default: true
  36270. },
  36271. {
  36272. name: "Big",
  36273. height: math.unit(12, "feet")
  36274. },
  36275. {
  36276. name: "Minimacro",
  36277. height: math.unit(20, "feet")
  36278. },
  36279. {
  36280. name: "Macro",
  36281. height: math.unit(120, "feet")
  36282. },
  36283. ]
  36284. ))
  36285. characterMakers.push(() => makeCharacter(
  36286. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36287. {
  36288. front: {
  36289. height: math.unit(7 + 8/12, "feet"),
  36290. weight: math.unit(152, "kg"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/helen-arri/front.svg",
  36294. extra: 440/423,
  36295. bottom: 14/454
  36296. }
  36297. },
  36298. back: {
  36299. height: math.unit(7 + 8/12, "feet"),
  36300. weight: math.unit(152, "kg"),
  36301. name: "Back",
  36302. image: {
  36303. source: "./media/characters/helen-arri/back.svg",
  36304. extra: 443/426,
  36305. bottom: 8/451
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(7 + 8/12, "feet"),
  36313. default: true
  36314. },
  36315. {
  36316. name: "Big",
  36317. height: math.unit(14, "feet")
  36318. },
  36319. {
  36320. name: "Minimacro",
  36321. height: math.unit(24, "feet")
  36322. },
  36323. {
  36324. name: "Macro",
  36325. height: math.unit(140, "feet")
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(6, "meters"),
  36334. name: "Front",
  36335. image: {
  36336. source: "./media/characters/ehanu-rehu/front.svg",
  36337. extra: 1800/1800,
  36338. bottom: 59/1859
  36339. }
  36340. },
  36341. },
  36342. [
  36343. {
  36344. name: "Normal",
  36345. height: math.unit(6, "meters"),
  36346. default: true
  36347. },
  36348. ]
  36349. ))
  36350. characterMakers.push(() => makeCharacter(
  36351. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36352. {
  36353. front: {
  36354. height: math.unit(7 + 3/12, "feet"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/renholder/front.svg",
  36358. extra: 3096/2960,
  36359. bottom: 250/3346
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Normal Bat",
  36366. height: math.unit(7 + 3/12, "feet"),
  36367. default: true
  36368. },
  36369. {
  36370. name: "Slightly Tall Bat",
  36371. height: math.unit(100, "feet")
  36372. },
  36373. {
  36374. name: "Big Bat",
  36375. height: math.unit(1000, "feet")
  36376. },
  36377. {
  36378. name: "City-Sized Bat",
  36379. height: math.unit(200000, "feet")
  36380. },
  36381. {
  36382. name: "Bigger Bat",
  36383. height: math.unit(10000, "miles")
  36384. },
  36385. {
  36386. name: "Solar Sized Bat",
  36387. height: math.unit(100, "AU")
  36388. },
  36389. {
  36390. name: "Galactic Bat",
  36391. height: math.unit(200000, "lightyears")
  36392. },
  36393. {
  36394. name: "Universally Known Bat",
  36395. height: math.unit(1, "universe")
  36396. },
  36397. ]
  36398. ))
  36399. characterMakers.push(() => makeCharacter(
  36400. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36401. {
  36402. front: {
  36403. height: math.unit(6 + 11/12, "feet"),
  36404. weight: math.unit(250, "lb"),
  36405. name: "Front",
  36406. image: {
  36407. source: "./media/characters/cookiecat/front.svg",
  36408. extra: 893/827,
  36409. bottom: 14/907
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Micro",
  36416. height: math.unit(3, "inches")
  36417. },
  36418. {
  36419. name: "Normal",
  36420. height: math.unit(6 + 11/12, "feet"),
  36421. default: true
  36422. },
  36423. {
  36424. name: "Macro",
  36425. height: math.unit(100, "feet")
  36426. },
  36427. {
  36428. name: "Macro+",
  36429. height: math.unit(404, "feet")
  36430. },
  36431. {
  36432. name: "Megamacro",
  36433. height: math.unit(165, "miles")
  36434. },
  36435. {
  36436. name: "Planetary",
  36437. height: math.unit(4600, "miles")
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36443. {
  36444. front: {
  36445. height: math.unit(10 + 3/12, "feet"),
  36446. weight: math.unit(1500, "lb"),
  36447. name: "Front",
  36448. image: {
  36449. source: "./media/characters/tux-kusanagi/front.svg",
  36450. extra: 944/840,
  36451. bottom: 39/983
  36452. }
  36453. },
  36454. back: {
  36455. height: math.unit(10 + 3/12, "feet"),
  36456. weight: math.unit(1500, "lb"),
  36457. name: "Back",
  36458. image: {
  36459. source: "./media/characters/tux-kusanagi/back.svg",
  36460. extra: 941/842,
  36461. bottom: 28/969
  36462. }
  36463. },
  36464. rump: {
  36465. height: math.unit(5.25, "feet"),
  36466. name: "Rump",
  36467. image: {
  36468. source: "./media/characters/tux-kusanagi/rump.svg"
  36469. }
  36470. },
  36471. beak: {
  36472. height: math.unit(1.54, "feet"),
  36473. name: "Beak",
  36474. image: {
  36475. source: "./media/characters/tux-kusanagi/beak.svg"
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(10 + 3/12, "feet"),
  36483. default: true
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36489. {
  36490. front: {
  36491. height: math.unit(58, "feet"),
  36492. weight: math.unit(200, "tons"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/uzarmazari/front.svg",
  36496. extra: 1575/1455,
  36497. bottom: 152/1727
  36498. }
  36499. },
  36500. back: {
  36501. height: math.unit(58, "feet"),
  36502. weight: math.unit(200, "tons"),
  36503. name: "Back",
  36504. image: {
  36505. source: "./media/characters/uzarmazari/back.svg",
  36506. extra: 1585/1510,
  36507. bottom: 157/1742
  36508. }
  36509. },
  36510. head: {
  36511. height: math.unit(26, "feet"),
  36512. name: "Head",
  36513. image: {
  36514. source: "./media/characters/uzarmazari/head.svg"
  36515. }
  36516. },
  36517. },
  36518. [
  36519. {
  36520. name: "Normal",
  36521. height: math.unit(58, "feet"),
  36522. default: true
  36523. },
  36524. ]
  36525. ))
  36526. characterMakers.push(() => makeCharacter(
  36527. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36528. {
  36529. side: {
  36530. height: math.unit(15, "feet"),
  36531. name: "Side",
  36532. image: {
  36533. source: "./media/characters/akitu/side.svg",
  36534. extra: 1421/1321,
  36535. bottom: 157/1578
  36536. }
  36537. },
  36538. front: {
  36539. height: math.unit(15, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/akitu/front.svg",
  36543. extra: 1435/1326,
  36544. bottom: 232/1667
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(15, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36558. {
  36559. front: {
  36560. height: math.unit(10 + 8/12, "feet"),
  36561. name: "Front",
  36562. image: {
  36563. source: "./media/characters/azalie-croixland/front.svg",
  36564. extra: 1972/1856,
  36565. bottom: 31/2003
  36566. }
  36567. },
  36568. },
  36569. [
  36570. {
  36571. name: "Original Height",
  36572. height: math.unit(5 + 4/12, "feet")
  36573. },
  36574. {
  36575. name: "Normal Height",
  36576. height: math.unit(10 + 8/12, "feet"),
  36577. default: true
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36583. {
  36584. side: {
  36585. height: math.unit(7 + 1/12, "feet"),
  36586. weight: math.unit(245, "lb"),
  36587. name: "Side",
  36588. image: {
  36589. source: "./media/characters/kavus-kazian/side.svg",
  36590. extra: 349/342,
  36591. bottom: 15/364
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(7 + 1/12, "feet"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36605. {
  36606. normalFront: {
  36607. height: math.unit(5 + 11/12, "feet"),
  36608. name: "Front",
  36609. image: {
  36610. source: "./media/characters/moonlight-rose/normal-front.svg",
  36611. extra: 1980/1825,
  36612. bottom: 18/1998
  36613. },
  36614. form: "normal",
  36615. default: true
  36616. },
  36617. normalBack: {
  36618. height: math.unit(5 + 11/12, "feet"),
  36619. name: "Back",
  36620. image: {
  36621. source: "./media/characters/moonlight-rose/normal-back.svg",
  36622. extra: 2010/1839,
  36623. bottom: 10/2020
  36624. },
  36625. form: "normal"
  36626. },
  36627. demonFront: {
  36628. height: math.unit(1.5, "earths"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/moonlight-rose/demon.svg",
  36632. extra: 1400/1294,
  36633. bottom: 45/1445
  36634. },
  36635. form: "demon",
  36636. default: true
  36637. },
  36638. terraFront: {
  36639. height: math.unit(1.5, "earths"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/moonlight-rose/terra.svg"
  36643. },
  36644. form: "terra",
  36645. default: true
  36646. },
  36647. jupiterFront: {
  36648. height: math.unit(69911*2, "km"),
  36649. name: "Front",
  36650. image: {
  36651. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36652. extra: 1367/1286,
  36653. bottom: 55/1422
  36654. },
  36655. form: "jupiter",
  36656. default: true
  36657. },
  36658. neptuneFront: {
  36659. height: math.unit(24622*2, "feet"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36663. extra: 1851/1712,
  36664. bottom: 0/1851
  36665. },
  36666. form: "neptune",
  36667. default: true
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "\"Natural\" Height",
  36673. height: math.unit(5 + 11/12, "feet"),
  36674. form: "normal"
  36675. },
  36676. {
  36677. name: "Smallest comfortable size",
  36678. height: math.unit(40, "meters"),
  36679. form: "normal"
  36680. },
  36681. {
  36682. name: "Common size",
  36683. height: math.unit(50, "km"),
  36684. form: "normal",
  36685. default: true
  36686. },
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(1.5, "earths"),
  36690. form: "demon",
  36691. default: true
  36692. },
  36693. {
  36694. name: "Universal",
  36695. height: math.unit(15, "universes"),
  36696. form: "demon"
  36697. },
  36698. {
  36699. name: "Earth",
  36700. height: math.unit(1.5, "earths"),
  36701. form: "terra",
  36702. default: true
  36703. },
  36704. {
  36705. name: "Super Earth",
  36706. height: math.unit(67.5, "earths"),
  36707. form: "terra"
  36708. },
  36709. {
  36710. name: "Doesn't fit in a solar system...",
  36711. height: math.unit(1, "galaxy"),
  36712. form: "terra"
  36713. },
  36714. {
  36715. name: "Saturn",
  36716. height: math.unit(58232*2, "km"),
  36717. form: "jupiter"
  36718. },
  36719. {
  36720. name: "Jupiter",
  36721. height: math.unit(69911*2, "km"),
  36722. form: "jupiter",
  36723. default: true
  36724. },
  36725. {
  36726. name: "HD 100546 b",
  36727. height: math.unit(482938, "km"),
  36728. form: "jupiter"
  36729. },
  36730. {
  36731. name: "Enceladus",
  36732. height: math.unit(513*2, "km"),
  36733. form: "neptune"
  36734. },
  36735. {
  36736. name: "Europe",
  36737. height: math.unit(1560*2, "km"),
  36738. form: "neptune"
  36739. },
  36740. {
  36741. name: "Neptune",
  36742. height: math.unit(24622*2, "km"),
  36743. form: "neptune",
  36744. default: true
  36745. },
  36746. {
  36747. name: "CoRoT-9b",
  36748. height: math.unit(75067*2, "km"),
  36749. form: "neptune"
  36750. },
  36751. ],
  36752. {
  36753. "normal": {
  36754. name: "Normal",
  36755. default: true
  36756. },
  36757. "demon": {
  36758. name: "Demon"
  36759. },
  36760. "terra": {
  36761. name: "Terra"
  36762. },
  36763. "jupiter": {
  36764. name: "Jupiter"
  36765. },
  36766. "neptune": {
  36767. name: "Neptune"
  36768. }
  36769. }
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(16, "feet"),
  36776. weight: math.unit(610, "kg"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/huckle/front.svg",
  36780. extra: 1731/1625,
  36781. bottom: 33/1764
  36782. }
  36783. },
  36784. back: {
  36785. height: math.unit(16, "feet"),
  36786. weight: math.unit(610, "kg"),
  36787. name: "Back",
  36788. image: {
  36789. source: "./media/characters/huckle/back.svg",
  36790. extra: 1738/1651,
  36791. bottom: 37/1775
  36792. }
  36793. },
  36794. laughing: {
  36795. height: math.unit(3.75, "feet"),
  36796. name: "Laughing",
  36797. image: {
  36798. source: "./media/characters/huckle/laughing.svg"
  36799. }
  36800. },
  36801. angry: {
  36802. height: math.unit(4.15, "feet"),
  36803. name: "Angry",
  36804. image: {
  36805. source: "./media/characters/huckle/angry.svg"
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(16, "feet"),
  36813. default: true
  36814. },
  36815. {
  36816. name: "Mini Macro",
  36817. height: math.unit(463, "feet")
  36818. },
  36819. {
  36820. name: "Macro",
  36821. height: math.unit(1680, "meters")
  36822. },
  36823. {
  36824. name: "Mega Macro",
  36825. height: math.unit(175, "km")
  36826. },
  36827. {
  36828. name: "Terra Macro",
  36829. height: math.unit(32, "gigameters")
  36830. },
  36831. {
  36832. name: "Multiverse+",
  36833. height: math.unit(2.56e23, "yottameters")
  36834. },
  36835. ]
  36836. ))
  36837. characterMakers.push(() => makeCharacter(
  36838. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36839. {
  36840. front: {
  36841. height: math.unit(6 + 9/12, "feet"),
  36842. weight: math.unit(280, "lb"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/candy/front.svg",
  36846. extra: 234/217,
  36847. bottom: 11/245
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Really Small",
  36854. height: math.unit(0.1, "nm")
  36855. },
  36856. {
  36857. name: "Micro",
  36858. height: math.unit(2, "inches")
  36859. },
  36860. {
  36861. name: "Normal",
  36862. height: math.unit(6 + 9/12, "feet"),
  36863. default: true
  36864. },
  36865. {
  36866. name: "Small Macro",
  36867. height: math.unit(69, "feet")
  36868. },
  36869. {
  36870. name: "Macro",
  36871. height: math.unit(160, "feet")
  36872. },
  36873. {
  36874. name: "Megamacro",
  36875. height: math.unit(22000, "miles")
  36876. },
  36877. {
  36878. name: "Gigamacro",
  36879. height: math.unit(50000, "miles")
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(4, "feet"),
  36888. weight: math.unit(90, "lb"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/joey-mcdonald/front.svg",
  36892. extra: 1059/852,
  36893. bottom: 33/1092
  36894. }
  36895. },
  36896. back: {
  36897. height: math.unit(4, "feet"),
  36898. weight: math.unit(90, "lb"),
  36899. name: "Back",
  36900. image: {
  36901. source: "./media/characters/joey-mcdonald/back.svg",
  36902. extra: 1077/879,
  36903. bottom: 5/1082
  36904. }
  36905. },
  36906. frontKobold: {
  36907. height: math.unit(4, "feet"),
  36908. weight: math.unit(100, "lb"),
  36909. name: "Front-kobold",
  36910. image: {
  36911. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36912. extra: 1480/1367,
  36913. bottom: 0/1480
  36914. }
  36915. },
  36916. backKobold: {
  36917. height: math.unit(4, "feet"),
  36918. weight: math.unit(100, "lb"),
  36919. name: "Back-kobold",
  36920. image: {
  36921. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36922. extra: 1449/1361,
  36923. bottom: 0/1449
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(4, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(12 + 6/12, "feet"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/kass-lockheed/front.svg",
  36943. extra: 354/343,
  36944. bottom: 9/363
  36945. }
  36946. },
  36947. back: {
  36948. height: math.unit(12 + 6/12, "feet"),
  36949. name: "Back",
  36950. image: {
  36951. source: "./media/characters/kass-lockheed/back.svg",
  36952. extra: 364/352,
  36953. bottom: 3/367
  36954. }
  36955. },
  36956. dick: {
  36957. height: math.unit(3.12, "feet"),
  36958. name: "Dick",
  36959. image: {
  36960. source: "./media/characters/kass-lockheed/dick.svg"
  36961. }
  36962. },
  36963. head: {
  36964. height: math.unit(2.6, "feet"),
  36965. name: "Head",
  36966. image: {
  36967. source: "./media/characters/kass-lockheed/head.svg"
  36968. }
  36969. },
  36970. bleh: {
  36971. height: math.unit(2.85, "feet"),
  36972. name: "Bleh",
  36973. image: {
  36974. source: "./media/characters/kass-lockheed/bleh.svg"
  36975. }
  36976. },
  36977. smug: {
  36978. height: math.unit(2.85, "feet"),
  36979. name: "Smug",
  36980. image: {
  36981. source: "./media/characters/kass-lockheed/smug.svg"
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(12 + 6/12, "feet"),
  36989. default: true
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36995. {
  36996. front: {
  36997. height: math.unit(6 + 2/12, "feet"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/taylor/front.svg",
  37001. extra: 639/495,
  37002. bottom: 12/651
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(6 + 2/12, "feet"),
  37010. default: true
  37011. },
  37012. {
  37013. name: "Big",
  37014. height: math.unit(15, "feet")
  37015. },
  37016. {
  37017. name: "Lorg",
  37018. height: math.unit(80, "feet")
  37019. },
  37020. {
  37021. name: "Too Lorg",
  37022. height: math.unit(120, "feet")
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37028. {
  37029. front: {
  37030. height: math.unit(15, "feet"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/kaizer/front.svg",
  37034. extra: 1612/1436,
  37035. bottom: 43/1655
  37036. }
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(15, "feet"),
  37043. default: true
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37049. {
  37050. front: {
  37051. height: math.unit(2, "feet"),
  37052. weight: math.unit(30, "lb"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/sandy/front.svg",
  37056. extra: 1439/1307,
  37057. bottom: 194/1633
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(2, "feet"),
  37065. default: true
  37066. },
  37067. ]
  37068. ))
  37069. characterMakers.push(() => makeCharacter(
  37070. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37071. {
  37072. front: {
  37073. height: math.unit(3, "feet"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/mellvi/front.svg",
  37077. extra: 1831/1630,
  37078. bottom: 58/1889
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(3, "feet"),
  37086. default: true
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(5 + 11/12, "feet"),
  37095. weight: math.unit(200, "lb"),
  37096. name: "Front",
  37097. image: {
  37098. source: "./media/characters/shirou/front.svg",
  37099. extra: 2491/2383,
  37100. bottom: 189/2680
  37101. }
  37102. },
  37103. back: {
  37104. height: math.unit(5 + 11/12, "feet"),
  37105. weight: math.unit(200, "lb"),
  37106. name: "Back",
  37107. image: {
  37108. source: "./media/characters/shirou/back.svg",
  37109. extra: 2554/2450,
  37110. bottom: 76/2630
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Normal",
  37117. height: math.unit(5 + 11/12, "feet"),
  37118. default: true
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37124. {
  37125. front: {
  37126. height: math.unit(6 + 3/12, "feet"),
  37127. weight: math.unit(177, "lb"),
  37128. name: "Front",
  37129. image: {
  37130. source: "./media/characters/noryu/front.svg",
  37131. extra: 973/885,
  37132. bottom: 10/983
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(6 + 3/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(5 + 6/12, "feet"),
  37149. weight: math.unit(170, "lb"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/mevolas-rubenido/front.svg",
  37153. extra: 2109/1901,
  37154. bottom: 96/2205
  37155. }
  37156. },
  37157. },
  37158. [
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(5 + 6/12, "feet"),
  37162. default: true
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(100, "feet"),
  37171. name: "Front",
  37172. image: {
  37173. source: "./media/characters/dee/front.svg",
  37174. extra: 2153/2036,
  37175. bottom: 59/2212
  37176. }
  37177. },
  37178. back: {
  37179. height: math.unit(100, "feet"),
  37180. name: "Back",
  37181. image: {
  37182. source: "./media/characters/dee/back.svg",
  37183. extra: 2183/2058,
  37184. bottom: 75/2258
  37185. }
  37186. },
  37187. foot: {
  37188. height: math.unit(19.43, "feet"),
  37189. name: "Foot",
  37190. image: {
  37191. source: "./media/characters/dee/foot.svg"
  37192. }
  37193. },
  37194. hoof: {
  37195. height: math.unit(20.6, "feet"),
  37196. name: "Hoof",
  37197. image: {
  37198. source: "./media/characters/dee/hoof.svg"
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Macro",
  37205. height: math.unit(100, "feet"),
  37206. default: true
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37212. {
  37213. front: {
  37214. height: math.unit(5 + 6/12, "feet"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/teh/front.svg",
  37218. extra: 1002/847,
  37219. bottom: 62/1064
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(5 + 6/12, "feet"),
  37227. default: true
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37233. {
  37234. side: {
  37235. height: math.unit(6 + 1/12, "feet"),
  37236. weight: math.unit(204, "lb"),
  37237. name: "Side",
  37238. image: {
  37239. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37240. extra: 974/775,
  37241. bottom: 169/1143
  37242. }
  37243. },
  37244. sitting: {
  37245. height: math.unit(6 + 2/12, "feet"),
  37246. weight: math.unit(204, "lb"),
  37247. name: "Sitting",
  37248. image: {
  37249. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37250. extra: 1175/964,
  37251. bottom: 378/1553
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Normal",
  37258. height: math.unit(6 + 1/12, "feet"),
  37259. default: true
  37260. },
  37261. ]
  37262. ))
  37263. characterMakers.push(() => makeCharacter(
  37264. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37265. {
  37266. front: {
  37267. height: math.unit(6, "inches"),
  37268. name: "Front",
  37269. image: {
  37270. source: "./media/characters/tululi/front.svg",
  37271. extra: 1997/1876,
  37272. bottom: 20/2017
  37273. }
  37274. },
  37275. },
  37276. [
  37277. {
  37278. name: "Normal",
  37279. height: math.unit(6, "inches"),
  37280. default: true
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(4 + 1/12, "feet"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/star/front.svg",
  37292. extra: 1493/1189,
  37293. bottom: 48/1541
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(4 + 1/12, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(6 + 3/12, "feet"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/comet/front.svg",
  37313. extra: 1681/1462,
  37314. bottom: 26/1707
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(6 + 3/12, "feet"),
  37322. default: true
  37323. },
  37324. ]
  37325. ))
  37326. characterMakers.push(() => makeCharacter(
  37327. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37328. {
  37329. front: {
  37330. height: math.unit(950, "feet"),
  37331. name: "Front",
  37332. image: {
  37333. source: "./media/characters/vortex/front.svg",
  37334. extra: 1497/1434,
  37335. bottom: 56/1553
  37336. }
  37337. },
  37338. maw: {
  37339. height: math.unit(285, "feet"),
  37340. name: "Maw",
  37341. image: {
  37342. source: "./media/characters/vortex/maw.svg"
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Macro",
  37349. height: math.unit(950, "feet"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(600, "feet"),
  37359. weight: math.unit(0.02, "grams"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/doodle/front.svg",
  37363. extra: 1578/1413,
  37364. bottom: 37/1615
  37365. }
  37366. },
  37367. },
  37368. [
  37369. {
  37370. name: "Macro",
  37371. height: math.unit(600, "feet"),
  37372. default: true
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(6 + 6/12, "feet"),
  37381. name: "Front",
  37382. image: {
  37383. source: "./media/characters/jai/front.svg",
  37384. extra: 1645/1534,
  37385. bottom: 115/1760
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(6 + 6/12, "feet"),
  37393. default: true
  37394. },
  37395. ]
  37396. ))
  37397. characterMakers.push(() => makeCharacter(
  37398. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37399. {
  37400. front: {
  37401. height: math.unit(6 + 8/12, "feet"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/pixel/front.svg",
  37405. extra: 1900/1735,
  37406. bottom: 63/1963
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Normal",
  37413. height: math.unit(6 + 8/12, "feet"),
  37414. default: true
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37420. {
  37421. back: {
  37422. height: math.unit(4 + 1/12, "feet"),
  37423. weight: math.unit(75, "lb"),
  37424. name: "Back",
  37425. image: {
  37426. source: "./media/characters/rhett/back.svg",
  37427. extra: 930/878,
  37428. bottom: 25/955
  37429. }
  37430. },
  37431. front: {
  37432. height: math.unit(4 + 1/12, "feet"),
  37433. weight: math.unit(75, "lb"),
  37434. name: "Front",
  37435. image: {
  37436. source: "./media/characters/rhett/front.svg",
  37437. extra: 1682/1586,
  37438. bottom: 92/1774
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Micro",
  37445. height: math.unit(8, "inches")
  37446. },
  37447. {
  37448. name: "Tiny",
  37449. height: math.unit(2, "feet")
  37450. },
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(4 + 1/12, "feet"),
  37454. default: true
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(3 + 3/12, "feet"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/penny/front.svg",
  37466. extra: 1406/1311,
  37467. bottom: 26/1432
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(3 + 3/12, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(4 + 11/12, "feet"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/monty/front.svg",
  37487. extra: 1479/1209,
  37488. bottom: 0/1479
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "Normal",
  37495. height: math.unit(4 + 11/12, "feet"),
  37496. default: true
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(8 + 4/12, "feet"),
  37505. name: "Front",
  37506. image: {
  37507. source: "./media/characters/sterling/front.svg",
  37508. extra: 1420/1236,
  37509. bottom: 27/1447
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(8 + 4/12, "feet"),
  37517. default: true
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(15, "feet"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/marble/front.svg",
  37529. extra: 973/937,
  37530. bottom: 32/1005
  37531. }
  37532. },
  37533. },
  37534. [
  37535. {
  37536. name: "Normal",
  37537. height: math.unit(15, "feet"),
  37538. default: true
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37544. {
  37545. front: {
  37546. height: math.unit(3, "inches"),
  37547. name: "Front",
  37548. image: {
  37549. source: "./media/characters/powder/front.svg",
  37550. extra: 1504/1334,
  37551. bottom: 518/2022
  37552. }
  37553. },
  37554. },
  37555. [
  37556. {
  37557. name: "Normal",
  37558. height: math.unit(3, "inches"),
  37559. default: true
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(4 + 5/12, "feet"),
  37568. name: "Front",
  37569. image: {
  37570. source: "./media/characters/joey-raccoon/front.svg",
  37571. extra: 1273/1197,
  37572. bottom: 0/1273
  37573. }
  37574. },
  37575. },
  37576. [
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(4 + 5/12, "feet"),
  37580. default: true
  37581. },
  37582. ]
  37583. ))
  37584. characterMakers.push(() => makeCharacter(
  37585. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37586. {
  37587. front: {
  37588. height: math.unit(8 + 4/12, "feet"),
  37589. name: "Front",
  37590. image: {
  37591. source: "./media/characters/vick/front.svg",
  37592. extra: 2187/2118,
  37593. bottom: 47/2234
  37594. }
  37595. },
  37596. },
  37597. [
  37598. {
  37599. name: "Normal",
  37600. height: math.unit(8 + 4/12, "feet"),
  37601. default: true
  37602. },
  37603. ]
  37604. ))
  37605. characterMakers.push(() => makeCharacter(
  37606. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37607. {
  37608. front: {
  37609. height: math.unit(5 + 5/12, "feet"),
  37610. name: "Front",
  37611. image: {
  37612. source: "./media/characters/mitsy/front.svg",
  37613. extra: 1842/1695,
  37614. bottom: 0/1842
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(5 + 5/12, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37628. {
  37629. front: {
  37630. height: math.unit(6 + 3/12, "feet"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/silvy/front.svg",
  37634. extra: 1995/1836,
  37635. bottom: 225/2220
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(6 + 3/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(3 + 8/12, "feet"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/rodney/front.svg",
  37655. extra: 1956/1747,
  37656. bottom: 31/1987
  37657. }
  37658. },
  37659. frontDressed: {
  37660. height: math.unit(2.9, "feet"),
  37661. name: "Front (Dressed)",
  37662. image: {
  37663. source: "./media/characters/rodney/front-dressed.svg",
  37664. extra: 1382/1241,
  37665. bottom: 385/1767
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(3 + 8/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(5 + 9/12, "feet"),
  37682. weight: math.unit(194, "lbs"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/zakail-sudekai/front.svg",
  37686. extra: 2696/2533,
  37687. bottom: 248/2944
  37688. }
  37689. },
  37690. maw: {
  37691. height: math.unit(1.35, "feet"),
  37692. name: "Maw",
  37693. image: {
  37694. source: "./media/characters/zakail-sudekai/maw.svg"
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(5 + 9/12, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(8 + 4/12, "feet"),
  37711. weight: math.unit(1200, "lb"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/eleanor/front.svg",
  37715. extra: 1226/1192,
  37716. bottom: 52/1278
  37717. }
  37718. },
  37719. back: {
  37720. height: math.unit(8 + 4/12, "feet"),
  37721. weight: math.unit(1200, "lb"),
  37722. name: "Back",
  37723. image: {
  37724. source: "./media/characters/eleanor/back.svg",
  37725. extra: 1242/1184,
  37726. bottom: 60/1302
  37727. }
  37728. },
  37729. head: {
  37730. height: math.unit(2.62, "feet"),
  37731. name: "Head",
  37732. image: {
  37733. source: "./media/characters/eleanor/head.svg"
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(8 + 4/12, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(8 + 4/12, "feet"),
  37750. weight: math.unit(750, "lb"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/tanya/front.svg",
  37754. extra: 1749/1615,
  37755. bottom: 33/1782
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(8 + 4/12, "feet"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(5, "feet"),
  37772. weight: math.unit(225, "lb"),
  37773. name: "Front",
  37774. image: {
  37775. source: "./media/characters/cindy/front.svg",
  37776. extra: 1320/1250,
  37777. bottom: 42/1362
  37778. }
  37779. },
  37780. frontDressed: {
  37781. height: math.unit(5, "feet"),
  37782. weight: math.unit(225, "lb"),
  37783. name: "Front (Dressed)",
  37784. image: {
  37785. source: "./media/characters/cindy/front-dressed.svg",
  37786. extra: 1320/1250,
  37787. bottom: 42/1362
  37788. }
  37789. },
  37790. back: {
  37791. height: math.unit(5, "feet"),
  37792. weight: math.unit(225, "lb"),
  37793. name: "Back",
  37794. image: {
  37795. source: "./media/characters/cindy/back.svg",
  37796. extra: 1384/1346,
  37797. bottom: 14/1398
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(5, "feet"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(6 + 9/12, "feet"),
  37814. weight: math.unit(440, "lb"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/wilbur-owen/front.svg",
  37818. extra: 1575/1448,
  37819. bottom: 72/1647
  37820. }
  37821. },
  37822. back: {
  37823. height: math.unit(6 + 9/12, "feet"),
  37824. weight: math.unit(440, "lb"),
  37825. name: "Back",
  37826. image: {
  37827. source: "./media/characters/wilbur-owen/back.svg",
  37828. extra: 1578/1445,
  37829. bottom: 36/1614
  37830. }
  37831. },
  37832. },
  37833. [
  37834. {
  37835. name: "Normal",
  37836. height: math.unit(6 + 9/12, "feet"),
  37837. default: true
  37838. },
  37839. ]
  37840. ))
  37841. characterMakers.push(() => makeCharacter(
  37842. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37843. {
  37844. front: {
  37845. height: math.unit(6 + 5/12, "feet"),
  37846. weight: math.unit(650, "lb"),
  37847. name: "Front",
  37848. image: {
  37849. source: "./media/characters/keegan/front.svg",
  37850. extra: 2387/2198,
  37851. bottom: 33/2420
  37852. }
  37853. },
  37854. side: {
  37855. height: math.unit(6 + 5/12, "feet"),
  37856. weight: math.unit(650, "lb"),
  37857. name: "Side",
  37858. image: {
  37859. source: "./media/characters/keegan/side.svg",
  37860. extra: 2390/2202,
  37861. bottom: 47/2437
  37862. }
  37863. },
  37864. back: {
  37865. height: math.unit(6 + 5/12, "feet"),
  37866. weight: math.unit(650, "lb"),
  37867. name: "Back",
  37868. image: {
  37869. source: "./media/characters/keegan/back.svg",
  37870. extra: 2418/2268,
  37871. bottom: 15/2433
  37872. }
  37873. },
  37874. frontSfw: {
  37875. height: math.unit(6 + 5/12, "feet"),
  37876. weight: math.unit(650, "lb"),
  37877. name: "Front (SFW)",
  37878. image: {
  37879. source: "./media/characters/keegan/front-sfw.svg",
  37880. extra: 2387/2198,
  37881. bottom: 33/2420
  37882. }
  37883. },
  37884. beans: {
  37885. height: math.unit(1.85, "feet"),
  37886. name: "Beans",
  37887. image: {
  37888. source: "./media/characters/keegan/beans.svg"
  37889. }
  37890. },
  37891. },
  37892. [
  37893. {
  37894. name: "Normal",
  37895. height: math.unit(6 + 5/12, "feet"),
  37896. default: true
  37897. },
  37898. ]
  37899. ))
  37900. characterMakers.push(() => makeCharacter(
  37901. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37902. {
  37903. front: {
  37904. height: math.unit(9, "feet"),
  37905. name: "Front",
  37906. image: {
  37907. source: "./media/characters/colton/front.svg",
  37908. extra: 1589/1326,
  37909. bottom: 139/1728
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Normal",
  37916. height: math.unit(9, "feet"),
  37917. default: true
  37918. },
  37919. ]
  37920. ))
  37921. characterMakers.push(() => makeCharacter(
  37922. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37923. {
  37924. front: {
  37925. height: math.unit(2 + 9/12, "feet"),
  37926. name: "Front",
  37927. image: {
  37928. source: "./media/characters/bora/front.svg",
  37929. extra: 1265/1250,
  37930. bottom: 24/1289
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Normal",
  37937. height: math.unit(2 + 9/12, "feet"),
  37938. default: true
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(8, "feet"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/myu-myu/front.svg",
  37950. extra: 1949/1857,
  37951. bottom: 90/2039
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Normal",
  37958. height: math.unit(8, "feet"),
  37959. default: true
  37960. },
  37961. {
  37962. name: "Big",
  37963. height: math.unit(15, "feet")
  37964. },
  37965. {
  37966. name: "BIG",
  37967. height: math.unit(25, "feet")
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37973. {
  37974. side: {
  37975. height: math.unit(7 + 5/12, "feet"),
  37976. weight: math.unit(2800, "lb"),
  37977. name: "Side",
  37978. image: {
  37979. source: "./media/characters/haloren/side.svg",
  37980. extra: 1793/409,
  37981. bottom: 59/1852
  37982. }
  37983. },
  37984. frontPaw: {
  37985. height: math.unit(2.36, "feet"),
  37986. name: "Front paw",
  37987. image: {
  37988. source: "./media/characters/haloren/front-paw.svg"
  37989. }
  37990. },
  37991. hindPaw: {
  37992. height: math.unit(3.18, "feet"),
  37993. name: "Hind paw",
  37994. image: {
  37995. source: "./media/characters/haloren/hind-paw.svg"
  37996. }
  37997. },
  37998. maw: {
  37999. height: math.unit(5.05, "feet"),
  38000. name: "Maw",
  38001. image: {
  38002. source: "./media/characters/haloren/maw.svg"
  38003. }
  38004. },
  38005. dick: {
  38006. height: math.unit(2.90, "feet"),
  38007. name: "Dick",
  38008. image: {
  38009. source: "./media/characters/haloren/dick.svg"
  38010. }
  38011. },
  38012. },
  38013. [
  38014. {
  38015. name: "Normal",
  38016. height: math.unit(7 + 5/12, "feet"),
  38017. default: true
  38018. },
  38019. {
  38020. name: "Enhanced",
  38021. height: math.unit(14 + 3/12, "feet")
  38022. },
  38023. ]
  38024. ))
  38025. characterMakers.push(() => makeCharacter(
  38026. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38027. {
  38028. front: {
  38029. height: math.unit(171, "cm"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/kimmy/front.svg",
  38033. extra: 1491/1435,
  38034. bottom: 53/1544
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Small",
  38041. height: math.unit(9, "cm")
  38042. },
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(171, "cm"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(8, "feet"),
  38055. weight: math.unit(300, "lb"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/galeboomer/front.svg",
  38059. extra: 4651/4415,
  38060. bottom: 162/4813
  38061. }
  38062. },
  38063. back: {
  38064. height: math.unit(8, "feet"),
  38065. weight: math.unit(300, "lb"),
  38066. name: "Back",
  38067. image: {
  38068. source: "./media/characters/galeboomer/back.svg",
  38069. extra: 4544/4314,
  38070. bottom: 16/4560
  38071. }
  38072. },
  38073. frontAlt: {
  38074. height: math.unit(8, "feet"),
  38075. weight: math.unit(300, "lb"),
  38076. name: "Front (Alt)",
  38077. image: {
  38078. source: "./media/characters/galeboomer/front-alt.svg",
  38079. extra: 4458/4228,
  38080. bottom: 68/4526
  38081. }
  38082. },
  38083. maw: {
  38084. height: math.unit(1.2, "feet"),
  38085. name: "Maw",
  38086. image: {
  38087. source: "./media/characters/galeboomer/maw.svg"
  38088. }
  38089. },
  38090. },
  38091. [
  38092. {
  38093. name: "Normal",
  38094. height: math.unit(8, "feet"),
  38095. default: true
  38096. },
  38097. ]
  38098. ))
  38099. characterMakers.push(() => makeCharacter(
  38100. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38101. {
  38102. front: {
  38103. height: math.unit(5 + 9/12, "feet"),
  38104. weight: math.unit(120, "lb"),
  38105. name: "Front",
  38106. image: {
  38107. source: "./media/characters/chyr/front.svg",
  38108. extra: 1323/1254,
  38109. bottom: 63/1386
  38110. }
  38111. },
  38112. back: {
  38113. height: math.unit(5 + 9/12, "feet"),
  38114. weight: math.unit(120, "lb"),
  38115. name: "Back",
  38116. image: {
  38117. source: "./media/characters/chyr/back.svg",
  38118. extra: 1323/1252,
  38119. bottom: 48/1371
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(5 + 9/12, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38133. {
  38134. front: {
  38135. height: math.unit(7, "feet"),
  38136. weight: math.unit(310, "lb"),
  38137. name: "Front",
  38138. image: {
  38139. source: "./media/characters/solarus/front.svg",
  38140. extra: 2415/2021,
  38141. bottom: 103/2518
  38142. }
  38143. },
  38144. back: {
  38145. height: math.unit(7, "feet"),
  38146. weight: math.unit(310, "lb"),
  38147. name: "Back",
  38148. image: {
  38149. source: "./media/characters/solarus/back.svg",
  38150. extra: 2463/2089,
  38151. bottom: 79/2542
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(7, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(16, "feet"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38171. extra: 1844/1780,
  38172. bottom: 58/1902
  38173. }
  38174. },
  38175. winterCoat: {
  38176. height: math.unit(16, "feet"),
  38177. name: "Winter Coat",
  38178. image: {
  38179. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38180. extra: 1807/1775,
  38181. bottom: 69/1876
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(16, "feet"),
  38189. default: true
  38190. },
  38191. {
  38192. name: "Chicago Size",
  38193. height: math.unit(560, "feet")
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(11 + 6/12, "feet"),
  38202. weight: math.unit(1366, "lb"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/lexor/front.svg",
  38206. extra: 1560/1481,
  38207. bottom: 211/1771
  38208. }
  38209. },
  38210. back: {
  38211. height: math.unit(11 + 6/12, "feet"),
  38212. weight: math.unit(1366, "lb"),
  38213. name: "Back",
  38214. image: {
  38215. source: "./media/characters/lexor/back.svg",
  38216. extra: 1614/1533,
  38217. bottom: 76/1690
  38218. }
  38219. },
  38220. maw: {
  38221. height: math.unit(3, "feet"),
  38222. name: "Maw",
  38223. image: {
  38224. source: "./media/characters/lexor/maw.svg"
  38225. }
  38226. },
  38227. dick: {
  38228. height: math.unit(2.59, "feet"),
  38229. name: "Dick",
  38230. image: {
  38231. source: "./media/characters/lexor/dick.svg"
  38232. }
  38233. },
  38234. },
  38235. [
  38236. {
  38237. name: "Normal",
  38238. height: math.unit(11 + 6/12, "feet"),
  38239. default: true
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38245. {
  38246. front: {
  38247. height: math.unit(5 + 8/12, "feet"),
  38248. name: "Front",
  38249. image: {
  38250. source: "./media/characters/magnum/front.svg",
  38251. extra: 942/855,
  38252. bottom: 26/968
  38253. }
  38254. },
  38255. },
  38256. [
  38257. {
  38258. name: "Normal",
  38259. height: math.unit(5 + 8/12, "feet"),
  38260. default: true
  38261. },
  38262. ]
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38266. {
  38267. front: {
  38268. height: math.unit(18 + 4/12, "feet"),
  38269. weight: math.unit(1500, "kg"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/solas-sharpsman/front.svg",
  38273. extra: 1698/1589,
  38274. bottom: 0/1698
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(18 + 4/12, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(5 + 5/12, "feet"),
  38291. weight: math.unit(180, "lb"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/october/front.svg",
  38295. extra: 1800/1650,
  38296. bottom: 0/1800
  38297. }
  38298. },
  38299. frontNsfw: {
  38300. height: math.unit(5 + 5/12, "feet"),
  38301. weight: math.unit(180, "lb"),
  38302. name: "Front (NSFW)",
  38303. image: {
  38304. source: "./media/characters/october/front-nsfw.svg",
  38305. extra: 1392/1307,
  38306. bottom: 42/1434
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(5 + 5/12, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(8 + 6/12, "feet"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/essynkardi/front.svg",
  38326. extra: 1914/1846,
  38327. bottom: 22/1936
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(8 + 6/12, "feet"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(6 + 6/12, "feet"),
  38344. weight: math.unit(7, "lb"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/icky/front.svg",
  38348. extra: 813/782,
  38349. bottom: 66/879
  38350. }
  38351. },
  38352. back: {
  38353. height: math.unit(6 + 6/12, "feet"),
  38354. weight: math.unit(7, "lb"),
  38355. name: "Back",
  38356. image: {
  38357. source: "./media/characters/icky/back.svg",
  38358. extra: 754/735,
  38359. bottom: 56/810
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Normal",
  38366. height: math.unit(6 + 6/12, "feet"),
  38367. default: true
  38368. },
  38369. ]
  38370. ))
  38371. characterMakers.push(() => makeCharacter(
  38372. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38373. {
  38374. front: {
  38375. height: math.unit(15, "feet"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/rojas/front.svg",
  38379. extra: 1462/1408,
  38380. bottom: 95/1557
  38381. }
  38382. },
  38383. back: {
  38384. height: math.unit(15, "feet"),
  38385. name: "Back",
  38386. image: {
  38387. source: "./media/characters/rojas/back.svg",
  38388. extra: 1023/954,
  38389. bottom: 28/1051
  38390. }
  38391. },
  38392. },
  38393. [
  38394. {
  38395. name: "Normal",
  38396. height: math.unit(15, "feet"),
  38397. default: true
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38403. {
  38404. frontHuman: {
  38405. height: math.unit(5 + 7/12, "feet"),
  38406. name: "Front (Human)",
  38407. image: {
  38408. source: "./media/characters/alek-dryagan/front-human.svg",
  38409. extra: 1687/1667,
  38410. bottom: 69/1756
  38411. }
  38412. },
  38413. backHuman: {
  38414. height: math.unit(5 + 7/12, "feet"),
  38415. name: "Back (Human)",
  38416. image: {
  38417. source: "./media/characters/alek-dryagan/back-human.svg",
  38418. extra: 1670/1649,
  38419. bottom: 65/1735
  38420. }
  38421. },
  38422. frontDemi: {
  38423. height: math.unit(65, "feet"),
  38424. name: "Front (Demi)",
  38425. image: {
  38426. source: "./media/characters/alek-dryagan/front-demi.svg",
  38427. extra: 1669/1642,
  38428. bottom: 49/1718
  38429. }
  38430. },
  38431. backDemi: {
  38432. height: math.unit(65, "feet"),
  38433. name: "Back (Demi)",
  38434. image: {
  38435. source: "./media/characters/alek-dryagan/back-demi.svg",
  38436. extra: 1658/1637,
  38437. bottom: 40/1698
  38438. }
  38439. },
  38440. mawHuman: {
  38441. height: math.unit(0.3, "feet"),
  38442. name: "Maw (Human)",
  38443. image: {
  38444. source: "./media/characters/alek-dryagan/maw-human.svg"
  38445. }
  38446. },
  38447. mawDemi: {
  38448. height: math.unit(3.8, "feet"),
  38449. name: "Maw (Demi)",
  38450. image: {
  38451. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(5 + 7/12, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38465. {
  38466. frontHuman: {
  38467. height: math.unit(5 + 2/12, "feet"),
  38468. name: "Front (Human)",
  38469. image: {
  38470. source: "./media/characters/gen/front-human.svg",
  38471. extra: 1627/1538,
  38472. bottom: 71/1698
  38473. }
  38474. },
  38475. backHuman: {
  38476. height: math.unit(5 + 2/12, "feet"),
  38477. name: "Back (Human)",
  38478. image: {
  38479. source: "./media/characters/gen/back-human.svg",
  38480. extra: 1638/1548,
  38481. bottom: 69/1707
  38482. }
  38483. },
  38484. frontDemi: {
  38485. height: math.unit(5 + 2/12, "feet"),
  38486. name: "Front (Demi)",
  38487. image: {
  38488. source: "./media/characters/gen/front-demi.svg",
  38489. extra: 1627/1538,
  38490. bottom: 71/1698
  38491. }
  38492. },
  38493. backDemi: {
  38494. height: math.unit(5 + 2/12, "feet"),
  38495. name: "Back (Demi)",
  38496. image: {
  38497. source: "./media/characters/gen/back-demi.svg",
  38498. extra: 1638/1548,
  38499. bottom: 69/1707
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(5 + 2/12, "feet"),
  38507. default: true
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38513. {
  38514. frontImp: {
  38515. height: math.unit(1 + 11/12, "feet"),
  38516. name: "Front (Imp)",
  38517. image: {
  38518. source: "./media/characters/max-kobold/front-imp.svg",
  38519. extra: 1238/1134,
  38520. bottom: 81/1319
  38521. }
  38522. },
  38523. backImp: {
  38524. height: math.unit(1 + 11/12, "feet"),
  38525. name: "Back (Imp)",
  38526. image: {
  38527. source: "./media/characters/max-kobold/back-imp.svg",
  38528. extra: 1334/1175,
  38529. bottom: 34/1368
  38530. }
  38531. },
  38532. frontDemi: {
  38533. height: math.unit(5 + 9/12, "feet"),
  38534. name: "Front (Demi)",
  38535. image: {
  38536. source: "./media/characters/max-kobold/front-demi.svg",
  38537. extra: 1715/1685,
  38538. bottom: 54/1769
  38539. }
  38540. },
  38541. backDemi: {
  38542. height: math.unit(5 + 9/12, "feet"),
  38543. name: "Back (Demi)",
  38544. image: {
  38545. source: "./media/characters/max-kobold/back-demi.svg",
  38546. extra: 1752/1729,
  38547. bottom: 41/1793
  38548. }
  38549. },
  38550. handImp: {
  38551. height: math.unit(0.45, "feet"),
  38552. name: "Hand (Imp)",
  38553. image: {
  38554. source: "./media/characters/max-kobold/hand.svg"
  38555. }
  38556. },
  38557. pawImp: {
  38558. height: math.unit(0.46, "feet"),
  38559. name: "Paw (Imp)",
  38560. image: {
  38561. source: "./media/characters/max-kobold/paw.svg"
  38562. }
  38563. },
  38564. handDemi: {
  38565. height: math.unit(0.80, "feet"),
  38566. name: "Hand (Demi)",
  38567. image: {
  38568. source: "./media/characters/max-kobold/hand.svg"
  38569. }
  38570. },
  38571. pawDemi: {
  38572. height: math.unit(1.1, "feet"),
  38573. name: "Paw (Demi)",
  38574. image: {
  38575. source: "./media/characters/max-kobold/paw.svg"
  38576. }
  38577. },
  38578. headImp: {
  38579. height: math.unit(1.33, "feet"),
  38580. name: "Head (Imp)",
  38581. image: {
  38582. source: "./media/characters/max-kobold/head-imp.svg"
  38583. }
  38584. },
  38585. mawImp: {
  38586. height: math.unit(0.75, "feet"),
  38587. name: "Maw (Imp)",
  38588. image: {
  38589. source: "./media/characters/max-kobold/maw-imp.svg"
  38590. }
  38591. },
  38592. mawDemi: {
  38593. height: math.unit(0.42, "feet"),
  38594. name: "Maw (Demi)",
  38595. image: {
  38596. source: "./media/characters/max-kobold/maw-demi.svg"
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(1 + 11/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(7 + 5/12, "feet"),
  38613. name: "Front",
  38614. image: {
  38615. source: "./media/characters/carbon/front.svg",
  38616. extra: 1754/1689,
  38617. bottom: 65/1819
  38618. }
  38619. },
  38620. back: {
  38621. height: math.unit(7 + 5/12, "feet"),
  38622. name: "Back",
  38623. image: {
  38624. source: "./media/characters/carbon/back.svg",
  38625. extra: 1762/1695,
  38626. bottom: 24/1786
  38627. }
  38628. },
  38629. frontGigantamax: {
  38630. height: math.unit(150, "feet"),
  38631. name: "Front (Gigantamax)",
  38632. image: {
  38633. source: "./media/characters/carbon/front-gigantamax.svg",
  38634. extra: 1826/1669,
  38635. bottom: 59/1885
  38636. }
  38637. },
  38638. backGigantamax: {
  38639. height: math.unit(150, "feet"),
  38640. name: "Back (Gigantamax)",
  38641. image: {
  38642. source: "./media/characters/carbon/back-gigantamax.svg",
  38643. extra: 1796/1653,
  38644. bottom: 53/1849
  38645. }
  38646. },
  38647. maw: {
  38648. height: math.unit(0.48, "feet"),
  38649. name: "Maw",
  38650. image: {
  38651. source: "./media/characters/carbon/maw.svg"
  38652. }
  38653. },
  38654. mawGigantamax: {
  38655. height: math.unit(7.5, "feet"),
  38656. name: "Maw (Gigantamax)",
  38657. image: {
  38658. source: "./media/characters/carbon/maw-gigantamax.svg"
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(7 + 5/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(6, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/maverick/front.svg",
  38678. extra: 1672/1661,
  38679. bottom: 85/1757
  38680. }
  38681. },
  38682. back: {
  38683. height: math.unit(6, "feet"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/maverick/back.svg",
  38687. extra: 1642/1631,
  38688. bottom: 38/1680
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(6, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(15, "feet"),
  38705. weight: math.unit(615, "lb"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/grockle/front.svg",
  38709. extra: 1535/1427,
  38710. bottom: 56/1591
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Normal",
  38717. height: math.unit(15, "feet"),
  38718. default: true
  38719. },
  38720. {
  38721. name: "Large",
  38722. height: math.unit(150, "feet")
  38723. },
  38724. {
  38725. name: "Macro",
  38726. height: math.unit(1876, "feet")
  38727. },
  38728. {
  38729. name: "Mega Macro",
  38730. height: math.unit(121940, "feet")
  38731. },
  38732. {
  38733. name: "Giga Macro",
  38734. height: math.unit(750, "km")
  38735. },
  38736. {
  38737. name: "Tera Macro",
  38738. height: math.unit(750000, "km")
  38739. },
  38740. {
  38741. name: "Galactic",
  38742. height: math.unit(1.4e5, "km")
  38743. },
  38744. {
  38745. name: "Godlike",
  38746. height: math.unit(9.8e280, "galaxies")
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(11, "meters"),
  38755. weight: math.unit(20, "tonnes"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/alistair/front.svg",
  38759. extra: 1265/1009,
  38760. bottom: 93/1358
  38761. }
  38762. },
  38763. },
  38764. [
  38765. {
  38766. name: "Normal",
  38767. height: math.unit(11, "meters"),
  38768. default: true
  38769. },
  38770. ]
  38771. ))
  38772. characterMakers.push(() => makeCharacter(
  38773. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38774. {
  38775. front: {
  38776. height: math.unit(5 + 8/12, "feet"),
  38777. name: "Front",
  38778. image: {
  38779. source: "./media/characters/haruka/front.svg",
  38780. extra: 2012/1952,
  38781. bottom: 0/2012
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(5 + 8/12, "feet"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38795. {
  38796. back: {
  38797. height: math.unit(9, "feet"),
  38798. name: "Back",
  38799. image: {
  38800. source: "./media/characters/vivian-sylveon/back.svg",
  38801. extra: 1853/1714,
  38802. bottom: 0/1853
  38803. }
  38804. },
  38805. },
  38806. [
  38807. {
  38808. name: "Normal",
  38809. height: math.unit(9, "feet"),
  38810. default: true
  38811. },
  38812. {
  38813. name: "Macro",
  38814. height: math.unit(500, "feet")
  38815. },
  38816. {
  38817. name: "Megamacro",
  38818. height: math.unit(600, "miles")
  38819. },
  38820. {
  38821. name: "Gigamacro",
  38822. height: math.unit(30000, "miles")
  38823. },
  38824. ]
  38825. ))
  38826. characterMakers.push(() => makeCharacter(
  38827. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38828. {
  38829. anthro: {
  38830. height: math.unit(5 + 10/12, "feet"),
  38831. weight: math.unit(100, "lb"),
  38832. name: "Anthro",
  38833. image: {
  38834. source: "./media/characters/daiki/anthro.svg",
  38835. extra: 1115/1027,
  38836. bottom: 69/1184
  38837. }
  38838. },
  38839. feral: {
  38840. height: math.unit(200, "feet"),
  38841. name: "Feral",
  38842. image: {
  38843. source: "./media/characters/daiki/feral.svg",
  38844. extra: 1256/313,
  38845. bottom: 39/1295
  38846. }
  38847. },
  38848. feralHead: {
  38849. height: math.unit(171, "feet"),
  38850. name: "Feral Head",
  38851. image: {
  38852. source: "./media/characters/daiki/feral-head.svg"
  38853. }
  38854. },
  38855. manaDragon: {
  38856. height: math.unit(170, "meters"),
  38857. name: "Mana-dragon",
  38858. image: {
  38859. source: "./media/characters/daiki/mana-dragon.svg",
  38860. extra: 763/420,
  38861. bottom: 97/860
  38862. }
  38863. },
  38864. },
  38865. [
  38866. {
  38867. name: "Normal",
  38868. height: math.unit(5 + 10/12, "feet"),
  38869. default: true
  38870. },
  38871. ]
  38872. ))
  38873. characterMakers.push(() => makeCharacter(
  38874. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38875. {
  38876. fullyEquippedFront: {
  38877. height: math.unit(3 + 1/12, "feet"),
  38878. weight: math.unit(24, "lb"),
  38879. name: "Fully Equipped (Front)",
  38880. image: {
  38881. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38882. extra: 687/605,
  38883. bottom: 18/705
  38884. }
  38885. },
  38886. fullyEquippedBack: {
  38887. height: math.unit(3 + 1/12, "feet"),
  38888. weight: math.unit(24, "lb"),
  38889. name: "Fully Equipped (Back)",
  38890. image: {
  38891. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38892. extra: 689/590,
  38893. bottom: 18/707
  38894. }
  38895. },
  38896. dailyWear: {
  38897. height: math.unit(3 + 1/12, "feet"),
  38898. weight: math.unit(24, "lb"),
  38899. name: "Daily Wear",
  38900. image: {
  38901. source: "./media/characters/tea-spot/daily-wear.svg",
  38902. extra: 701/620,
  38903. bottom: 21/722
  38904. }
  38905. },
  38906. maidWork: {
  38907. height: math.unit(3 + 1/12, "feet"),
  38908. weight: math.unit(24, "lb"),
  38909. name: "Maid Work",
  38910. image: {
  38911. source: "./media/characters/tea-spot/maid-work.svg",
  38912. extra: 693/609,
  38913. bottom: 15/708
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(3 + 1/12, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(175, "cm"),
  38930. weight: math.unit(75, "kg"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/chee/front.svg",
  38934. extra: 1796/1740,
  38935. bottom: 40/1836
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Micro-Micro",
  38942. height: math.unit(1, "nm")
  38943. },
  38944. {
  38945. name: "Micro-erst",
  38946. height: math.unit(1, "micrometer")
  38947. },
  38948. {
  38949. name: "Micro-er",
  38950. height: math.unit(1, "cm")
  38951. },
  38952. {
  38953. name: "Normal",
  38954. height: math.unit(175, "cm"),
  38955. default: true
  38956. },
  38957. {
  38958. name: "Macro",
  38959. height: math.unit(100, "m")
  38960. },
  38961. {
  38962. name: "Macro-er",
  38963. height: math.unit(1, "km")
  38964. },
  38965. {
  38966. name: "Macro-erst",
  38967. height: math.unit(10, "km")
  38968. },
  38969. {
  38970. name: "Macro-Macro",
  38971. height: math.unit(100, "km")
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(11 + 9/12, "feet"),
  38980. weight: math.unit(935, "lb"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/kingsley/front.svg",
  38984. extra: 1803/1674,
  38985. bottom: 127/1930
  38986. }
  38987. },
  38988. frontNude: {
  38989. height: math.unit(11 + 9/12, "feet"),
  38990. weight: math.unit(935, "lb"),
  38991. name: "Front (Nude)",
  38992. image: {
  38993. source: "./media/characters/kingsley/front-nude.svg",
  38994. extra: 1803/1674,
  38995. bottom: 127/1930
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(11 + 9/12, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39009. {
  39010. side: {
  39011. height: math.unit(9, "feet"),
  39012. name: "Side",
  39013. image: {
  39014. source: "./media/characters/rymel/side.svg",
  39015. extra: 792/469,
  39016. bottom: 121/913
  39017. }
  39018. },
  39019. maw: {
  39020. height: math.unit(2.4, "meters"),
  39021. name: "Maw",
  39022. image: {
  39023. source: "./media/characters/rymel/maw.svg"
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "House Drake",
  39030. height: math.unit(2, "feet")
  39031. },
  39032. {
  39033. name: "Reduced",
  39034. height: math.unit(4.5, "feet")
  39035. },
  39036. {
  39037. name: "Normal",
  39038. height: math.unit(9, "feet"),
  39039. default: true
  39040. },
  39041. ]
  39042. ))
  39043. characterMakers.push(() => makeCharacter(
  39044. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39045. {
  39046. front: {
  39047. height: math.unit(1.74, "meters"),
  39048. weight: math.unit(55, "kg"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/rubus/front.svg",
  39052. extra: 1894/1742,
  39053. bottom: 44/1938
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(1.74, "meters"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(5 + 2/12, "feet"),
  39070. weight: math.unit(112, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/cassie-kingston/front.svg",
  39074. extra: 1438/1390,
  39075. bottom: 47/1485
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(5 + 2/12, "feet"),
  39083. default: true
  39084. },
  39085. {
  39086. name: "Macro",
  39087. height: math.unit(128, "feet")
  39088. },
  39089. {
  39090. name: "Megamacro",
  39091. height: math.unit(2.56, "miles")
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39097. {
  39098. front: {
  39099. height: math.unit(7, "feet"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/fox/front.svg",
  39103. extra: 1798/1703,
  39104. bottom: 55/1853
  39105. }
  39106. },
  39107. back: {
  39108. height: math.unit(7, "feet"),
  39109. name: "Back",
  39110. image: {
  39111. source: "./media/characters/fox/back.svg",
  39112. extra: 1748/1649,
  39113. bottom: 32/1780
  39114. }
  39115. },
  39116. head: {
  39117. height: math.unit(1.95, "feet"),
  39118. name: "Head",
  39119. image: {
  39120. source: "./media/characters/fox/head.svg"
  39121. }
  39122. },
  39123. dick: {
  39124. height: math.unit(1.33, "feet"),
  39125. name: "Dick",
  39126. image: {
  39127. source: "./media/characters/fox/dick.svg"
  39128. }
  39129. },
  39130. foot: {
  39131. height: math.unit(1, "feet"),
  39132. name: "Foot",
  39133. image: {
  39134. source: "./media/characters/fox/foot.svg"
  39135. }
  39136. },
  39137. paw: {
  39138. height: math.unit(0.92, "feet"),
  39139. name: "Paw",
  39140. image: {
  39141. source: "./media/characters/fox/paw.svg"
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Small",
  39148. height: math.unit(3, "inches")
  39149. },
  39150. {
  39151. name: "\"Realistic\"",
  39152. height: math.unit(7, "feet")
  39153. },
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(150, "feet"),
  39157. default: true
  39158. },
  39159. {
  39160. name: "BIG",
  39161. height: math.unit(1200, "feet")
  39162. },
  39163. {
  39164. name: "👀",
  39165. height: math.unit(5, "miles")
  39166. },
  39167. {
  39168. name: "👀👀👀",
  39169. height: math.unit(64, "miles")
  39170. },
  39171. ]
  39172. ))
  39173. characterMakers.push(() => makeCharacter(
  39174. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39175. {
  39176. front: {
  39177. height: math.unit(625, "feet"),
  39178. name: "Front",
  39179. image: {
  39180. source: "./media/characters/asonja-rossa/front.svg",
  39181. extra: 1833/1686,
  39182. bottom: 24/1857
  39183. }
  39184. },
  39185. back: {
  39186. height: math.unit(625, "feet"),
  39187. name: "Back",
  39188. image: {
  39189. source: "./media/characters/asonja-rossa/back.svg",
  39190. extra: 1852/1753,
  39191. bottom: 26/1878
  39192. }
  39193. },
  39194. },
  39195. [
  39196. {
  39197. name: "Macro",
  39198. height: math.unit(625, "feet"),
  39199. default: true
  39200. },
  39201. ]
  39202. ))
  39203. characterMakers.push(() => makeCharacter(
  39204. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39205. {
  39206. side: {
  39207. height: math.unit(8, "feet"),
  39208. name: "Side",
  39209. image: {
  39210. source: "./media/characters/rezukii/side.svg",
  39211. extra: 979/542,
  39212. bottom: 87/1066
  39213. }
  39214. },
  39215. sitting: {
  39216. height: math.unit(14.6, "feet"),
  39217. name: "Sitting",
  39218. image: {
  39219. source: "./media/characters/rezukii/sitting.svg",
  39220. extra: 1023/813,
  39221. bottom: 45/1068
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Tiny",
  39228. height: math.unit(2, "feet")
  39229. },
  39230. {
  39231. name: "Smol",
  39232. height: math.unit(4, "feet")
  39233. },
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(8, "feet"),
  39237. default: true
  39238. },
  39239. {
  39240. name: "Big",
  39241. height: math.unit(12, "feet")
  39242. },
  39243. {
  39244. name: "Macro",
  39245. height: math.unit(30, "feet")
  39246. },
  39247. ]
  39248. ))
  39249. characterMakers.push(() => makeCharacter(
  39250. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39251. {
  39252. front: {
  39253. height: math.unit(14, "feet"),
  39254. weight: math.unit(9.5, "tonnes"),
  39255. name: "Front",
  39256. image: {
  39257. source: "./media/characters/dawnheart/front.svg",
  39258. extra: 2792/2675,
  39259. bottom: 64/2856
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(14, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39273. {
  39274. front: {
  39275. height: math.unit(1.7, "m"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/gladi/front.svg",
  39279. extra: 1460/1362,
  39280. bottom: 19/1479
  39281. }
  39282. },
  39283. back: {
  39284. height: math.unit(1.7, "m"),
  39285. name: "Back",
  39286. image: {
  39287. source: "./media/characters/gladi/back.svg",
  39288. extra: 1459/1357,
  39289. bottom: 12/1471
  39290. }
  39291. },
  39292. feral: {
  39293. height: math.unit(2.05, "m"),
  39294. name: "Feral",
  39295. image: {
  39296. source: "./media/characters/gladi/feral.svg",
  39297. extra: 821/557,
  39298. bottom: 91/912
  39299. }
  39300. },
  39301. },
  39302. [
  39303. {
  39304. name: "Shortest",
  39305. height: math.unit(70, "cm")
  39306. },
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(1.7, "m")
  39310. },
  39311. {
  39312. name: "Macro",
  39313. height: math.unit(10, "m"),
  39314. default: true
  39315. },
  39316. {
  39317. name: "Tallest",
  39318. height: math.unit(200, "m")
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39324. {
  39325. front: {
  39326. height: math.unit(5 + 7/12, "feet"),
  39327. weight: math.unit(2, "tons"),
  39328. name: "Front",
  39329. image: {
  39330. source: "./media/characters/erdno/front.svg",
  39331. extra: 1234/1129,
  39332. bottom: 35/1269
  39333. }
  39334. },
  39335. angled: {
  39336. height: math.unit(5 + 7/12, "feet"),
  39337. weight: math.unit(2, "tons"),
  39338. name: "Angled",
  39339. image: {
  39340. source: "./media/characters/erdno/angled.svg",
  39341. extra: 1185/1139,
  39342. bottom: 36/1221
  39343. }
  39344. },
  39345. side: {
  39346. height: math.unit(5 + 7/12, "feet"),
  39347. weight: math.unit(2, "tons"),
  39348. name: "Side",
  39349. image: {
  39350. source: "./media/characters/erdno/side.svg",
  39351. extra: 1191/1144,
  39352. bottom: 40/1231
  39353. }
  39354. },
  39355. back: {
  39356. height: math.unit(5 + 7/12, "feet"),
  39357. weight: math.unit(2, "tons"),
  39358. name: "Back",
  39359. image: {
  39360. source: "./media/characters/erdno/back.svg",
  39361. extra: 1202/1146,
  39362. bottom: 17/1219
  39363. }
  39364. },
  39365. frontNsfw: {
  39366. height: math.unit(5 + 7/12, "feet"),
  39367. weight: math.unit(2, "tons"),
  39368. name: "Front (NSFW)",
  39369. image: {
  39370. source: "./media/characters/erdno/front-nsfw.svg",
  39371. extra: 1234/1129,
  39372. bottom: 35/1269
  39373. }
  39374. },
  39375. angledNsfw: {
  39376. height: math.unit(5 + 7/12, "feet"),
  39377. weight: math.unit(2, "tons"),
  39378. name: "Angled (NSFW)",
  39379. image: {
  39380. source: "./media/characters/erdno/angled-nsfw.svg",
  39381. extra: 1185/1139,
  39382. bottom: 36/1221
  39383. }
  39384. },
  39385. sideNsfw: {
  39386. height: math.unit(5 + 7/12, "feet"),
  39387. weight: math.unit(2, "tons"),
  39388. name: "Side (NSFW)",
  39389. image: {
  39390. source: "./media/characters/erdno/side-nsfw.svg",
  39391. extra: 1191/1144,
  39392. bottom: 40/1231
  39393. }
  39394. },
  39395. backNsfw: {
  39396. height: math.unit(5 + 7/12, "feet"),
  39397. weight: math.unit(2, "tons"),
  39398. name: "Back (NSFW)",
  39399. image: {
  39400. source: "./media/characters/erdno/back-nsfw.svg",
  39401. extra: 1202/1146,
  39402. bottom: 17/1219
  39403. }
  39404. },
  39405. frontHyper: {
  39406. height: math.unit(5 + 7/12, "feet"),
  39407. weight: math.unit(2, "tons"),
  39408. name: "Front (Hyper)",
  39409. image: {
  39410. source: "./media/characters/erdno/front-hyper.svg",
  39411. extra: 1298/1136,
  39412. bottom: 35/1333
  39413. }
  39414. },
  39415. },
  39416. [
  39417. {
  39418. name: "Normal",
  39419. height: math.unit(5 + 7/12, "feet"),
  39420. default: true
  39421. },
  39422. {
  39423. name: "Big",
  39424. height: math.unit(5.7, "meters")
  39425. },
  39426. {
  39427. name: "Macro",
  39428. height: math.unit(5.7, "kilometers")
  39429. },
  39430. {
  39431. name: "Megamacro",
  39432. height: math.unit(5.7, "earths")
  39433. },
  39434. ]
  39435. ))
  39436. characterMakers.push(() => makeCharacter(
  39437. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39438. {
  39439. front: {
  39440. height: math.unit(5 + 10/12, "feet"),
  39441. weight: math.unit(150, "lb"),
  39442. name: "Front",
  39443. image: {
  39444. source: "./media/characters/jamie/front.svg",
  39445. extra: 1908/1768,
  39446. bottom: 19/1927
  39447. }
  39448. },
  39449. },
  39450. [
  39451. {
  39452. name: "Minimum",
  39453. height: math.unit(2, "cm")
  39454. },
  39455. {
  39456. name: "Micro",
  39457. height: math.unit(3, "inches")
  39458. },
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(5 + 10/12, "feet"),
  39462. default: true
  39463. },
  39464. {
  39465. name: "Macro",
  39466. height: math.unit(150, "feet")
  39467. },
  39468. {
  39469. name: "Megamacro",
  39470. height: math.unit(10000, "m")
  39471. },
  39472. ]
  39473. ))
  39474. characterMakers.push(() => makeCharacter(
  39475. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39476. {
  39477. front: {
  39478. height: math.unit(2, "meters"),
  39479. weight: math.unit(100, "kg"),
  39480. name: "Front",
  39481. image: {
  39482. source: "./media/characters/shiron/front.svg",
  39483. extra: 2103/1985,
  39484. bottom: 98/2201
  39485. }
  39486. },
  39487. back: {
  39488. height: math.unit(2, "meters"),
  39489. weight: math.unit(100, "kg"),
  39490. name: "Back",
  39491. image: {
  39492. source: "./media/characters/shiron/back.svg",
  39493. extra: 2110/2015,
  39494. bottom: 89/2199
  39495. }
  39496. },
  39497. hand: {
  39498. height: math.unit(0.96, "feet"),
  39499. name: "Hand",
  39500. image: {
  39501. source: "./media/characters/shiron/hand.svg"
  39502. }
  39503. },
  39504. foot: {
  39505. height: math.unit(1.464, "feet"),
  39506. name: "Foot",
  39507. image: {
  39508. source: "./media/characters/shiron/foot.svg"
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Normal",
  39515. height: math.unit(2, "meters")
  39516. },
  39517. {
  39518. name: "Macro",
  39519. height: math.unit(500, "meters"),
  39520. default: true
  39521. },
  39522. {
  39523. name: "Megamacro",
  39524. height: math.unit(20, "km")
  39525. },
  39526. ]
  39527. ))
  39528. characterMakers.push(() => makeCharacter(
  39529. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39530. {
  39531. front: {
  39532. height: math.unit(6, "feet"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/sam/front.svg",
  39536. extra: 849/826,
  39537. bottom: 19/868
  39538. }
  39539. },
  39540. },
  39541. [
  39542. {
  39543. name: "Normal",
  39544. height: math.unit(6, "feet"),
  39545. default: true
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(8 + 4/12, "feet"),
  39554. weight: math.unit(122, "kg"),
  39555. name: "Front",
  39556. image: {
  39557. source: "./media/characters/namori-kurogawa/front.svg",
  39558. extra: 1894/1576,
  39559. bottom: 34/1928
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(8 + 4/12, "feet"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(9, "feet"),
  39576. weight: math.unit(621, "lb"),
  39577. name: "Front",
  39578. image: {
  39579. source: "./media/characters/unmru/front.svg",
  39580. extra: 1853/1747,
  39581. bottom: 73/1926
  39582. }
  39583. },
  39584. side: {
  39585. height: math.unit(9, "feet"),
  39586. weight: math.unit(621, "lb"),
  39587. name: "Side",
  39588. image: {
  39589. source: "./media/characters/unmru/side.svg",
  39590. extra: 1781/1671,
  39591. bottom: 127/1908
  39592. }
  39593. },
  39594. back: {
  39595. height: math.unit(9, "feet"),
  39596. weight: math.unit(621, "lb"),
  39597. name: "Back",
  39598. image: {
  39599. source: "./media/characters/unmru/back.svg",
  39600. extra: 1894/1765,
  39601. bottom: 75/1969
  39602. }
  39603. },
  39604. dick: {
  39605. height: math.unit(3, "feet"),
  39606. weight: math.unit(35, "lb"),
  39607. name: "Dick",
  39608. image: {
  39609. source: "./media/characters/unmru/dick.svg"
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(9, "feet")
  39617. },
  39618. {
  39619. name: "Natural",
  39620. height: math.unit(27, "feet"),
  39621. default: true
  39622. },
  39623. {
  39624. name: "Giant",
  39625. height: math.unit(90, "feet")
  39626. },
  39627. {
  39628. name: "Kaiju",
  39629. height: math.unit(270, "feet")
  39630. },
  39631. {
  39632. name: "Macro",
  39633. height: math.unit(900, "feet")
  39634. },
  39635. {
  39636. name: "Macro+",
  39637. height: math.unit(2700, "feet")
  39638. },
  39639. {
  39640. name: "Megamacro",
  39641. height: math.unit(9000, "feet")
  39642. },
  39643. {
  39644. name: "City-Crushing",
  39645. height: math.unit(27000, "feet")
  39646. },
  39647. {
  39648. name: "Mountain-Mashing",
  39649. height: math.unit(90000, "feet")
  39650. },
  39651. {
  39652. name: "Earth-Eclipsing",
  39653. height: math.unit(2.7e8, "feet")
  39654. },
  39655. {
  39656. name: "Sol-Swallowing",
  39657. height: math.unit(9e10, "feet")
  39658. },
  39659. {
  39660. name: "Majoris-Munching",
  39661. height: math.unit(2.7e13, "feet")
  39662. },
  39663. ]
  39664. ))
  39665. characterMakers.push(() => makeCharacter(
  39666. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39667. {
  39668. front: {
  39669. height: math.unit(1, "inch"),
  39670. name: "Front",
  39671. image: {
  39672. source: "./media/characters/squeaks-mouse/front.svg",
  39673. extra: 352/308,
  39674. bottom: 25/377
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Micro",
  39681. height: math.unit(1, "inch"),
  39682. default: true
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39688. {
  39689. side: {
  39690. height: math.unit(35, "feet"),
  39691. name: "Side",
  39692. image: {
  39693. source: "./media/characters/sayko/side.svg",
  39694. extra: 1697/1021,
  39695. bottom: 82/1779
  39696. }
  39697. },
  39698. head: {
  39699. height: math.unit(16, "feet"),
  39700. name: "Head",
  39701. image: {
  39702. source: "./media/characters/sayko/head.svg"
  39703. }
  39704. },
  39705. forepaw: {
  39706. height: math.unit(7.85, "feet"),
  39707. name: "Forepaw",
  39708. image: {
  39709. source: "./media/characters/sayko/forepaw.svg"
  39710. }
  39711. },
  39712. hindpaw: {
  39713. height: math.unit(8.8, "feet"),
  39714. name: "Hindpaw",
  39715. image: {
  39716. source: "./media/characters/sayko/hindpaw.svg"
  39717. }
  39718. },
  39719. },
  39720. [
  39721. {
  39722. name: "Normal",
  39723. height: math.unit(35, "feet"),
  39724. default: true
  39725. },
  39726. {
  39727. name: "Colossus",
  39728. height: math.unit(100, "meters")
  39729. },
  39730. {
  39731. name: "\"Small\" Deity",
  39732. height: math.unit(1, "km")
  39733. },
  39734. {
  39735. name: "\"Large\" Deity",
  39736. height: math.unit(15, "km")
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(6, "feet"),
  39745. weight: math.unit(250, "lb"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/mukiro/front.svg",
  39749. extra: 1368/1310,
  39750. bottom: 34/1402
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(6, "feet"),
  39758. default: true
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(12 + 4/12, "feet"),
  39767. name: "Front",
  39768. image: {
  39769. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39770. extra: 1346/1311,
  39771. bottom: 65/1411
  39772. }
  39773. },
  39774. },
  39775. [
  39776. {
  39777. name: "Base",
  39778. height: math.unit(12 + 4/12, "feet"),
  39779. default: true
  39780. },
  39781. {
  39782. name: "Macro",
  39783. height: math.unit(150, "feet")
  39784. },
  39785. {
  39786. name: "Mega",
  39787. height: math.unit(2, "miles")
  39788. },
  39789. {
  39790. name: "Demi God",
  39791. height: math.unit(4, "AU")
  39792. },
  39793. {
  39794. name: "God Size",
  39795. height: math.unit(1, "universe")
  39796. },
  39797. ]
  39798. ))
  39799. characterMakers.push(() => makeCharacter(
  39800. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39801. {
  39802. front: {
  39803. height: math.unit(3 + 3/12, "feet"),
  39804. weight: math.unit(88, "lb"),
  39805. name: "Front",
  39806. image: {
  39807. source: "./media/characters/trey/front.svg",
  39808. extra: 1815/1509,
  39809. bottom: 60/1875
  39810. }
  39811. },
  39812. },
  39813. [
  39814. {
  39815. name: "Normal",
  39816. height: math.unit(3 + 3/12, "feet"),
  39817. default: true
  39818. },
  39819. ]
  39820. ))
  39821. characterMakers.push(() => makeCharacter(
  39822. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39823. {
  39824. front: {
  39825. height: math.unit(4, "meters"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/adelonda/front.svg",
  39829. extra: 1077/982,
  39830. bottom: 39/1116
  39831. }
  39832. },
  39833. back: {
  39834. height: math.unit(4, "meters"),
  39835. name: "Back",
  39836. image: {
  39837. source: "./media/characters/adelonda/back.svg",
  39838. extra: 1105/1003,
  39839. bottom: 25/1130
  39840. }
  39841. },
  39842. feral: {
  39843. height: math.unit(40/1.5, "meters"),
  39844. name: "Feral",
  39845. image: {
  39846. source: "./media/characters/adelonda/feral.svg",
  39847. extra: 597/271,
  39848. bottom: 387/984
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(4, "meters"),
  39856. default: true
  39857. },
  39858. ]
  39859. ))
  39860. characterMakers.push(() => makeCharacter(
  39861. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39862. {
  39863. front: {
  39864. height: math.unit(8 + 4/12, "feet"),
  39865. weight: math.unit(670, "lb"),
  39866. name: "Front",
  39867. image: {
  39868. source: "./media/characters/acadiel/front.svg",
  39869. extra: 1901/1595,
  39870. bottom: 142/2043
  39871. }
  39872. },
  39873. },
  39874. [
  39875. {
  39876. name: "Normal",
  39877. height: math.unit(8 + 4/12, "feet"),
  39878. default: true
  39879. },
  39880. {
  39881. name: "Macro",
  39882. height: math.unit(200, "feet")
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(6 + 2/12, "feet"),
  39891. weight: math.unit(185, "lb"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/kayne-ein/front.svg",
  39895. extra: 1780/1560,
  39896. bottom: 81/1861
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(6 + 2/12, "feet"),
  39904. default: true
  39905. },
  39906. {
  39907. name: "Transformation Stage",
  39908. height: math.unit(15, "feet")
  39909. },
  39910. {
  39911. name: "Macro",
  39912. height: math.unit(150, "feet")
  39913. },
  39914. {
  39915. name: "Earth's Shadow",
  39916. height: math.unit(6200, "miles")
  39917. },
  39918. {
  39919. name: "Universal Demon",
  39920. height: math.unit(28e9, "parsecs")
  39921. },
  39922. {
  39923. name: "Multiverse God",
  39924. height: math.unit(3, "multiverses")
  39925. },
  39926. ]
  39927. ))
  39928. characterMakers.push(() => makeCharacter(
  39929. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39930. {
  39931. front: {
  39932. height: math.unit(5 + 5/12, "feet"),
  39933. name: "Front",
  39934. image: {
  39935. source: "./media/characters/fawn/front.svg",
  39936. extra: 1873/1731,
  39937. bottom: 95/1968
  39938. }
  39939. },
  39940. back: {
  39941. height: math.unit(5 + 5/12, "feet"),
  39942. name: "Back",
  39943. image: {
  39944. source: "./media/characters/fawn/back.svg",
  39945. extra: 1813/1700,
  39946. bottom: 14/1827
  39947. }
  39948. },
  39949. hoof: {
  39950. height: math.unit(1.45, "feet"),
  39951. name: "Hoof",
  39952. image: {
  39953. source: "./media/characters/fawn/hoof.svg"
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Normal",
  39960. height: math.unit(5 + 5/12, "feet"),
  39961. default: true
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(2 + 5/12, "feet"),
  39970. name: "Front",
  39971. image: {
  39972. source: "./media/characters/orion/front.svg",
  39973. extra: 1366/1304,
  39974. bottom: 43/1409
  39975. }
  39976. },
  39977. paw: {
  39978. height: math.unit(0.52, "feet"),
  39979. name: "Paw",
  39980. image: {
  39981. source: "./media/characters/orion/paw.svg"
  39982. }
  39983. },
  39984. },
  39985. [
  39986. {
  39987. name: "Normal",
  39988. height: math.unit(2 + 5/12, "feet"),
  39989. default: true
  39990. },
  39991. ]
  39992. ))
  39993. characterMakers.push(() => makeCharacter(
  39994. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39995. {
  39996. front: {
  39997. height: math.unit(5 + 10/12, "feet"),
  39998. name: "Front",
  39999. image: {
  40000. source: "./media/characters/vera/front.svg",
  40001. extra: 1680/1575,
  40002. bottom: 49/1729
  40003. }
  40004. },
  40005. back: {
  40006. height: math.unit(5 + 10/12, "feet"),
  40007. name: "Back",
  40008. image: {
  40009. source: "./media/characters/vera/back.svg",
  40010. extra: 1700/1588,
  40011. bottom: 18/1718
  40012. }
  40013. },
  40014. arcanine: {
  40015. height: math.unit(6 + 8/12, "feet"),
  40016. name: "Arcanine",
  40017. image: {
  40018. source: "./media/characters/vera/arcanine.svg",
  40019. extra: 1590/1511,
  40020. bottom: 71/1661
  40021. }
  40022. },
  40023. maw: {
  40024. height: math.unit(0.82, "feet"),
  40025. name: "Maw",
  40026. image: {
  40027. source: "./media/characters/vera/maw.svg"
  40028. }
  40029. },
  40030. mawArcanine: {
  40031. height: math.unit(0.97, "feet"),
  40032. name: "Maw (Arcanine)",
  40033. image: {
  40034. source: "./media/characters/vera/maw-arcanine.svg"
  40035. }
  40036. },
  40037. paw: {
  40038. height: math.unit(0.75, "feet"),
  40039. name: "Paw",
  40040. image: {
  40041. source: "./media/characters/vera/paw.svg"
  40042. }
  40043. },
  40044. pawprint: {
  40045. height: math.unit(0.52, "feet"),
  40046. name: "Pawprint",
  40047. image: {
  40048. source: "./media/characters/vera/pawprint.svg"
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Normal",
  40055. height: math.unit(5 + 10/12, "feet"),
  40056. default: true
  40057. },
  40058. {
  40059. name: "Macro",
  40060. height: math.unit(75, "feet")
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40066. {
  40067. front: {
  40068. height: math.unit(4, "feet"),
  40069. weight: math.unit(40, "lb"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/orvan-rabbit/front.svg",
  40073. extra: 1896/1642,
  40074. bottom: 29/1925
  40075. }
  40076. },
  40077. },
  40078. [
  40079. {
  40080. name: "Normal",
  40081. height: math.unit(4, "feet"),
  40082. default: true
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(6, "feet"),
  40091. weight: math.unit(168, "lb"),
  40092. name: "Front",
  40093. image: {
  40094. source: "./media/characters/lisa/front.svg",
  40095. extra: 2065/1867,
  40096. bottom: 46/2111
  40097. }
  40098. },
  40099. back: {
  40100. height: math.unit(6, "feet"),
  40101. weight: math.unit(168, "lb"),
  40102. name: "Back",
  40103. image: {
  40104. source: "./media/characters/lisa/back.svg",
  40105. extra: 1982/1838,
  40106. bottom: 29/2011
  40107. }
  40108. },
  40109. maw: {
  40110. height: math.unit(0.81, "feet"),
  40111. name: "Maw",
  40112. image: {
  40113. source: "./media/characters/lisa/maw.svg"
  40114. }
  40115. },
  40116. paw: {
  40117. height: math.unit(0.9, "feet"),
  40118. name: "Paw",
  40119. image: {
  40120. source: "./media/characters/lisa/paw.svg"
  40121. }
  40122. },
  40123. caribousune: {
  40124. height: math.unit(7 + 2/12, "feet"),
  40125. weight: math.unit(268, "lb"),
  40126. name: "Caribousune",
  40127. image: {
  40128. source: "./media/characters/lisa/caribousune.svg",
  40129. extra: 1843/1633,
  40130. bottom: 29/1872
  40131. }
  40132. },
  40133. frontCaribousune: {
  40134. height: math.unit(7 + 2/12, "feet"),
  40135. weight: math.unit(268, "lb"),
  40136. name: "Front (Caribousune)",
  40137. image: {
  40138. source: "./media/characters/lisa/front-caribousune.svg",
  40139. extra: 1818/1638,
  40140. bottom: 52/1870
  40141. }
  40142. },
  40143. sideCaribousune: {
  40144. height: math.unit(7 + 2/12, "feet"),
  40145. weight: math.unit(268, "lb"),
  40146. name: "Side (Caribousune)",
  40147. image: {
  40148. source: "./media/characters/lisa/side-caribousune.svg",
  40149. extra: 1851/1635,
  40150. bottom: 16/1867
  40151. }
  40152. },
  40153. backCaribousune: {
  40154. height: math.unit(7 + 2/12, "feet"),
  40155. weight: math.unit(268, "lb"),
  40156. name: "Back (Caribousune)",
  40157. image: {
  40158. source: "./media/characters/lisa/back-caribousune.svg",
  40159. extra: 1801/1604,
  40160. bottom: 44/1845
  40161. }
  40162. },
  40163. caribou: {
  40164. height: math.unit(7 + 2/12, "feet"),
  40165. weight: math.unit(268, "lb"),
  40166. name: "Caribou",
  40167. image: {
  40168. source: "./media/characters/lisa/caribou.svg",
  40169. extra: 1843/1633,
  40170. bottom: 29/1872
  40171. }
  40172. },
  40173. frontCaribou: {
  40174. height: math.unit(7 + 2/12, "feet"),
  40175. weight: math.unit(268, "lb"),
  40176. name: "Front (Caribou)",
  40177. image: {
  40178. source: "./media/characters/lisa/front-caribou.svg",
  40179. extra: 1818/1638,
  40180. bottom: 52/1870
  40181. }
  40182. },
  40183. sideCaribou: {
  40184. height: math.unit(7 + 2/12, "feet"),
  40185. weight: math.unit(268, "lb"),
  40186. name: "Side (Caribou)",
  40187. image: {
  40188. source: "./media/characters/lisa/side-caribou.svg",
  40189. extra: 1851/1635,
  40190. bottom: 16/1867
  40191. }
  40192. },
  40193. backCaribou: {
  40194. height: math.unit(7 + 2/12, "feet"),
  40195. weight: math.unit(268, "lb"),
  40196. name: "Back (Caribou)",
  40197. image: {
  40198. source: "./media/characters/lisa/back-caribou.svg",
  40199. extra: 1801/1604,
  40200. bottom: 44/1845
  40201. }
  40202. },
  40203. mawCaribou: {
  40204. height: math.unit(1.45, "feet"),
  40205. name: "Maw (Caribou)",
  40206. image: {
  40207. source: "./media/characters/lisa/maw-caribou.svg"
  40208. }
  40209. },
  40210. mawCaribousune: {
  40211. height: math.unit(1.45, "feet"),
  40212. name: "Maw (Caribousune)",
  40213. image: {
  40214. source: "./media/characters/lisa/maw-caribousune.svg"
  40215. }
  40216. },
  40217. pawCaribousune: {
  40218. height: math.unit(1.61, "feet"),
  40219. name: "Paw (Caribou)",
  40220. image: {
  40221. source: "./media/characters/lisa/paw-caribousune.svg"
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(6, "feet")
  40229. },
  40230. {
  40231. name: "God Size",
  40232. height: math.unit(72, "feet"),
  40233. default: true
  40234. },
  40235. {
  40236. name: "Towering",
  40237. height: math.unit(288, "feet")
  40238. },
  40239. {
  40240. name: "City Size",
  40241. height: math.unit(48384, "feet")
  40242. },
  40243. {
  40244. name: "Continental",
  40245. height: math.unit(4200, "miles")
  40246. },
  40247. {
  40248. name: "Planet Eater",
  40249. height: math.unit(42, "earths")
  40250. },
  40251. {
  40252. name: "Star Swallower",
  40253. height: math.unit(42, "solarradii")
  40254. },
  40255. {
  40256. name: "System Swallower",
  40257. height: math.unit(84000, "AU")
  40258. },
  40259. {
  40260. name: "Galaxy Gobbler",
  40261. height: math.unit(42, "galaxies")
  40262. },
  40263. {
  40264. name: "Universe Devourer",
  40265. height: math.unit(42, "universes")
  40266. },
  40267. {
  40268. name: "Multiverse Muncher",
  40269. height: math.unit(42, "multiverses")
  40270. },
  40271. ]
  40272. ))
  40273. characterMakers.push(() => makeCharacter(
  40274. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40275. {
  40276. front: {
  40277. height: math.unit(36, "feet"),
  40278. name: "Front",
  40279. image: {
  40280. source: "./media/characters/shadow-rat/front.svg",
  40281. extra: 1845/1758,
  40282. bottom: 83/1928
  40283. }
  40284. },
  40285. },
  40286. [
  40287. {
  40288. name: "Macro",
  40289. height: math.unit(36, "feet"),
  40290. default: true
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40296. {
  40297. side: {
  40298. height: math.unit(8, "feet"),
  40299. weight: math.unit(2630, "lb"),
  40300. name: "Side",
  40301. image: {
  40302. source: "./media/characters/torallia/side.svg",
  40303. extra: 2164/2021,
  40304. bottom: 371/2535
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Mortal Interaction",
  40311. height: math.unit(8, "feet")
  40312. },
  40313. {
  40314. name: "Natural",
  40315. height: math.unit(24, "feet"),
  40316. default: true
  40317. },
  40318. {
  40319. name: "Giant",
  40320. height: math.unit(80, "feet")
  40321. },
  40322. {
  40323. name: "Kaiju",
  40324. height: math.unit(240, "feet")
  40325. },
  40326. {
  40327. name: "Macro",
  40328. height: math.unit(800, "feet")
  40329. },
  40330. {
  40331. name: "Macro+",
  40332. height: math.unit(2400, "feet")
  40333. },
  40334. {
  40335. name: "Macro++",
  40336. height: math.unit(8000, "feet")
  40337. },
  40338. {
  40339. name: "City-Crushing",
  40340. height: math.unit(24000, "feet")
  40341. },
  40342. {
  40343. name: "Mountain-Mashing",
  40344. height: math.unit(80000, "feet")
  40345. },
  40346. {
  40347. name: "District Demolisher",
  40348. height: math.unit(240000, "feet")
  40349. },
  40350. {
  40351. name: "Tri-County Terror",
  40352. height: math.unit(800000, "feet")
  40353. },
  40354. {
  40355. name: "State Smasher",
  40356. height: math.unit(2.4e6, "feet")
  40357. },
  40358. {
  40359. name: "Nation Nemesis",
  40360. height: math.unit(8e6, "feet")
  40361. },
  40362. {
  40363. name: "Continent Cracker",
  40364. height: math.unit(2.4e7, "feet")
  40365. },
  40366. {
  40367. name: "Planet-Pillaging",
  40368. height: math.unit(8e7, "feet")
  40369. },
  40370. {
  40371. name: "Earth-Eclipsing",
  40372. height: math.unit(2.4e8, "feet")
  40373. },
  40374. {
  40375. name: "Jovian-Jostling",
  40376. height: math.unit(8e8, "feet")
  40377. },
  40378. {
  40379. name: "Gas Giant Gulper",
  40380. height: math.unit(2.4e9, "feet")
  40381. },
  40382. {
  40383. name: "Astral Annihilator",
  40384. height: math.unit(8e9, "feet")
  40385. },
  40386. {
  40387. name: "Celestial Conqueror",
  40388. height: math.unit(2.4e10, "feet")
  40389. },
  40390. {
  40391. name: "Sol-Swallowing",
  40392. height: math.unit(8e10, "feet")
  40393. },
  40394. {
  40395. name: "Hunter of the Heavens",
  40396. height: math.unit(2.4e13, "feet")
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(6 + 8/12, "feet"),
  40405. weight: math.unit(250, "kilograms"),
  40406. volume: math.unit(28, "liters"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/rebecca-pawlson/front.svg",
  40410. extra: 1737/1596,
  40411. bottom: 107/1844
  40412. }
  40413. },
  40414. back: {
  40415. height: math.unit(6 + 8/12, "feet"),
  40416. weight: math.unit(250, "kilograms"),
  40417. volume: math.unit(28, "liters"),
  40418. name: "Back",
  40419. image: {
  40420. source: "./media/characters/rebecca-pawlson/back.svg",
  40421. extra: 1702/1523,
  40422. bottom: 86/1788
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(6 + 8/12, "feet")
  40430. },
  40431. {
  40432. name: "Mini Macro",
  40433. height: math.unit(10, "feet"),
  40434. default: true
  40435. },
  40436. {
  40437. name: "Macro",
  40438. height: math.unit(100, "feet")
  40439. },
  40440. {
  40441. name: "Mega Macro",
  40442. height: math.unit(2500, "feet")
  40443. },
  40444. {
  40445. name: "Giga Macro",
  40446. height: math.unit(50, "miles")
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40452. {
  40453. front: {
  40454. height: math.unit(7 + 6/12, "feet"),
  40455. weight: math.unit(600, "lb"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/moxie-nova/front.svg",
  40459. extra: 1734/1652,
  40460. bottom: 41/1775
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Normal",
  40467. height: math.unit(7 + 6/12, "feet"),
  40468. default: true
  40469. },
  40470. ]
  40471. ))
  40472. characterMakers.push(() => makeCharacter(
  40473. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40474. {
  40475. goat: {
  40476. height: math.unit(4, "feet"),
  40477. weight: math.unit(180, "lb"),
  40478. name: "Goat",
  40479. image: {
  40480. source: "./media/characters/tiffany/goat.svg",
  40481. extra: 1845/1595,
  40482. bottom: 106/1951
  40483. }
  40484. },
  40485. front: {
  40486. height: math.unit(5, "feet"),
  40487. weight: math.unit(150, "lb"),
  40488. name: "Foxcoon",
  40489. image: {
  40490. source: "./media/characters/tiffany/foxcoon.svg",
  40491. extra: 1941/1845,
  40492. bottom: 58/1999
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Normal",
  40499. height: math.unit(5, "feet"),
  40500. default: true
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(8, "feet"),
  40509. weight: math.unit(300, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/raxinath/front.svg",
  40513. extra: 1407/1309,
  40514. bottom: 39/1446
  40515. }
  40516. },
  40517. back: {
  40518. height: math.unit(8, "feet"),
  40519. weight: math.unit(300, "lb"),
  40520. name: "Back",
  40521. image: {
  40522. source: "./media/characters/raxinath/back.svg",
  40523. extra: 1405/1315,
  40524. bottom: 9/1414
  40525. }
  40526. },
  40527. },
  40528. [
  40529. {
  40530. name: "Speck",
  40531. height: math.unit(0.5, "nm")
  40532. },
  40533. {
  40534. name: "Micro",
  40535. height: math.unit(3, "inches")
  40536. },
  40537. {
  40538. name: "Kobold",
  40539. height: math.unit(3, "feet")
  40540. },
  40541. {
  40542. name: "Normal",
  40543. height: math.unit(8, "feet"),
  40544. default: true
  40545. },
  40546. {
  40547. name: "Giant",
  40548. height: math.unit(50, "feet")
  40549. },
  40550. {
  40551. name: "Macro",
  40552. height: math.unit(1000, "feet")
  40553. },
  40554. {
  40555. name: "Megamacro",
  40556. height: math.unit(1, "mile")
  40557. },
  40558. ]
  40559. ))
  40560. characterMakers.push(() => makeCharacter(
  40561. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40562. {
  40563. front: {
  40564. height: math.unit(10, "feet"),
  40565. weight: math.unit(1442, "lb"),
  40566. name: "Front",
  40567. image: {
  40568. source: "./media/characters/mal-dragon/front.svg",
  40569. extra: 1515/1444,
  40570. bottom: 113/1628
  40571. }
  40572. },
  40573. back: {
  40574. height: math.unit(10, "feet"),
  40575. weight: math.unit(1442, "lb"),
  40576. name: "Back",
  40577. image: {
  40578. source: "./media/characters/mal-dragon/back.svg",
  40579. extra: 1527/1434,
  40580. bottom: 25/1552
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Mortal Interaction",
  40587. height: math.unit(10, "feet"),
  40588. default: true
  40589. },
  40590. {
  40591. name: "Large",
  40592. height: math.unit(30, "feet")
  40593. },
  40594. {
  40595. name: "Kaiju",
  40596. height: math.unit(300, "feet")
  40597. },
  40598. {
  40599. name: "Megamacro",
  40600. height: math.unit(10000, "feet")
  40601. },
  40602. {
  40603. name: "Continent Cracker",
  40604. height: math.unit(30000000, "feet")
  40605. },
  40606. {
  40607. name: "Sol-Swallowing",
  40608. height: math.unit(1e11, "feet")
  40609. },
  40610. {
  40611. name: "Light Universal",
  40612. height: math.unit(5, "universes")
  40613. },
  40614. {
  40615. name: "Universe Atoms",
  40616. height: math.unit(1.829e9, "universes")
  40617. },
  40618. {
  40619. name: "Light Multiversal",
  40620. height: math.unit(5, "multiverses")
  40621. },
  40622. {
  40623. name: "Multiverse Atoms",
  40624. height: math.unit(1.829e9, "multiverses")
  40625. },
  40626. {
  40627. name: "Fabric of Time",
  40628. height: math.unit(1e262, "multiverses")
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(9, "feet"),
  40637. weight: math.unit(1050, "lb"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/tabitha/front.svg",
  40641. extra: 2083/1994,
  40642. bottom: 68/2151
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Baseline",
  40649. height: math.unit(9, "feet"),
  40650. default: true
  40651. },
  40652. {
  40653. name: "Giant",
  40654. height: math.unit(90, "feet")
  40655. },
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(900, "feet")
  40659. },
  40660. {
  40661. name: "Megamacro",
  40662. height: math.unit(9000, "feet")
  40663. },
  40664. {
  40665. name: "City-Crushing",
  40666. height: math.unit(27000, "feet")
  40667. },
  40668. {
  40669. name: "Mountain-Mashing",
  40670. height: math.unit(90000, "feet")
  40671. },
  40672. {
  40673. name: "Nation Nemesis",
  40674. height: math.unit(9e6, "feet")
  40675. },
  40676. {
  40677. name: "Continent Cracker",
  40678. height: math.unit(27e6, "feet")
  40679. },
  40680. {
  40681. name: "Earth-Eclipsing",
  40682. height: math.unit(2.7e8, "feet")
  40683. },
  40684. {
  40685. name: "Gas Giant Gulper",
  40686. height: math.unit(2.7e9, "feet")
  40687. },
  40688. {
  40689. name: "Sol-Swallowing",
  40690. height: math.unit(9e10, "feet")
  40691. },
  40692. {
  40693. name: "Galaxy Gulper",
  40694. height: math.unit(9, "galaxies")
  40695. },
  40696. {
  40697. name: "Cosmos Churner",
  40698. height: math.unit(9, "universes")
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(160, "cm"),
  40707. weight: math.unit(55, "kg"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/tow/front.svg",
  40711. extra: 1751/1722,
  40712. bottom: 74/1825
  40713. }
  40714. },
  40715. },
  40716. [
  40717. {
  40718. name: "Norm",
  40719. height: math.unit(160, "cm")
  40720. },
  40721. {
  40722. name: "Casual",
  40723. height: math.unit(3200, "m"),
  40724. default: true
  40725. },
  40726. {
  40727. name: "Show-Off",
  40728. height: math.unit(160, "km")
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40734. {
  40735. front: {
  40736. height: math.unit(7 + 11/12, "feet"),
  40737. weight: math.unit(342.8, "lb"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/vivian-orca-dragon/front.svg",
  40741. extra: 1890/1865,
  40742. bottom: 28/1918
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Micro",
  40749. height: math.unit(5, "inches")
  40750. },
  40751. {
  40752. name: "Normal",
  40753. height: math.unit(7 + 11/12, "feet"),
  40754. default: true
  40755. },
  40756. {
  40757. name: "Macro",
  40758. height: math.unit(395 + 7/12, "feet")
  40759. },
  40760. ]
  40761. ))
  40762. characterMakers.push(() => makeCharacter(
  40763. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40764. {
  40765. side: {
  40766. height: math.unit(10, "feet"),
  40767. weight: math.unit(1442, "lb"),
  40768. name: "Side",
  40769. image: {
  40770. source: "./media/characters/lotherakon/side.svg",
  40771. extra: 1604/1497,
  40772. bottom: 89/1693
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Mortal Interaction",
  40779. height: math.unit(10, "feet")
  40780. },
  40781. {
  40782. name: "Large",
  40783. height: math.unit(30, "feet"),
  40784. default: true
  40785. },
  40786. {
  40787. name: "Giant",
  40788. height: math.unit(100, "feet")
  40789. },
  40790. {
  40791. name: "Kaiju",
  40792. height: math.unit(300, "feet")
  40793. },
  40794. {
  40795. name: "Macro",
  40796. height: math.unit(1000, "feet")
  40797. },
  40798. {
  40799. name: "Macro+",
  40800. height: math.unit(3000, "feet")
  40801. },
  40802. {
  40803. name: "Megamacro",
  40804. height: math.unit(10000, "feet")
  40805. },
  40806. {
  40807. name: "City-Crushing",
  40808. height: math.unit(30000, "feet")
  40809. },
  40810. {
  40811. name: "Continent Cracker",
  40812. height: math.unit(30e6, "feet")
  40813. },
  40814. {
  40815. name: "Earth Eclipsing",
  40816. height: math.unit(3e8, "feet")
  40817. },
  40818. {
  40819. name: "Gas Giant Gulper",
  40820. height: math.unit(3e9, "feet")
  40821. },
  40822. {
  40823. name: "Sol-Swallowing",
  40824. height: math.unit(1e11, "feet")
  40825. },
  40826. {
  40827. name: "System Swallower",
  40828. height: math.unit(3e14, "feet")
  40829. },
  40830. {
  40831. name: "Galaxy Gulper",
  40832. height: math.unit(10, "galaxies")
  40833. },
  40834. {
  40835. name: "Light Universal",
  40836. height: math.unit(5, "universes")
  40837. },
  40838. {
  40839. name: "Universe Palm",
  40840. height: math.unit(20, "universes")
  40841. },
  40842. {
  40843. name: "Light Multiversal",
  40844. height: math.unit(5, "multiverses")
  40845. },
  40846. {
  40847. name: "Multiverse Palm",
  40848. height: math.unit(20, "multiverses")
  40849. },
  40850. {
  40851. name: "Inferno Incarnate",
  40852. height: math.unit(1e7, "multiverses")
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(8, "feet"),
  40861. weight: math.unit(1200, "lb"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/malithee/front.svg",
  40865. extra: 1675/1640,
  40866. bottom: 162/1837
  40867. }
  40868. },
  40869. },
  40870. [
  40871. {
  40872. name: "Mortal Interaction",
  40873. height: math.unit(8, "feet"),
  40874. default: true
  40875. },
  40876. {
  40877. name: "Large",
  40878. height: math.unit(24, "feet")
  40879. },
  40880. {
  40881. name: "Kaiju",
  40882. height: math.unit(240, "feet")
  40883. },
  40884. {
  40885. name: "Megamacro",
  40886. height: math.unit(8000, "feet")
  40887. },
  40888. {
  40889. name: "Continent Cracker",
  40890. height: math.unit(24e6, "feet")
  40891. },
  40892. {
  40893. name: "Earth-Eclipsing",
  40894. height: math.unit(2.4e8, "feet")
  40895. },
  40896. {
  40897. name: "Sol-Swallowing",
  40898. height: math.unit(8e10, "feet")
  40899. },
  40900. {
  40901. name: "Galaxy Gulper",
  40902. height: math.unit(8, "galaxies")
  40903. },
  40904. {
  40905. name: "Light Universal",
  40906. height: math.unit(4, "universes")
  40907. },
  40908. {
  40909. name: "Universe Atoms",
  40910. height: math.unit(1.829e9, "universes")
  40911. },
  40912. {
  40913. name: "Light Multiversal",
  40914. height: math.unit(4, "multiverses")
  40915. },
  40916. {
  40917. name: "Multiverse Atoms",
  40918. height: math.unit(1.829e9, "multiverses")
  40919. },
  40920. {
  40921. name: "Nigh-Omnipresence",
  40922. height: math.unit(8e261, "multiverses")
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(10, "feet"),
  40931. weight: math.unit(1500, "lb"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/miles-thestia/front.svg",
  40935. extra: 1812/1727,
  40936. bottom: 86/1898
  40937. }
  40938. },
  40939. back: {
  40940. height: math.unit(10, "feet"),
  40941. weight: math.unit(1500, "lb"),
  40942. name: "Back",
  40943. image: {
  40944. source: "./media/characters/miles-thestia/back.svg",
  40945. extra: 1799/1690,
  40946. bottom: 47/1846
  40947. }
  40948. },
  40949. frontNsfw: {
  40950. height: math.unit(10, "feet"),
  40951. weight: math.unit(1500, "lb"),
  40952. name: "Front (NSFW)",
  40953. image: {
  40954. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40955. extra: 1812/1727,
  40956. bottom: 86/1898
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Mini-Macro",
  40963. height: math.unit(10, "feet"),
  40964. default: true
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(25, "feet"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/titan-s-wulf/front.svg",
  40976. extra: 1560/1484,
  40977. bottom: 76/1636
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Smallest",
  40984. height: math.unit(25, "feet"),
  40985. default: true
  40986. },
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(200, "feet")
  40990. },
  40991. {
  40992. name: "Macro",
  40993. height: math.unit(200000, "feet")
  40994. },
  40995. {
  40996. name: "Multiversal Original",
  40997. height: math.unit(10000, "multiverses")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(8, "feet"),
  41006. weight: math.unit(553, "lb"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/tawendeh/front.svg",
  41010. extra: 2365/2268,
  41011. bottom: 83/2448
  41012. }
  41013. },
  41014. frontClothed: {
  41015. height: math.unit(8, "feet"),
  41016. weight: math.unit(553, "lb"),
  41017. name: "Front (Clothed)",
  41018. image: {
  41019. source: "./media/characters/tawendeh/front-clothed.svg",
  41020. extra: 2365/2268,
  41021. bottom: 83/2448
  41022. }
  41023. },
  41024. back: {
  41025. height: math.unit(8, "feet"),
  41026. weight: math.unit(553, "lb"),
  41027. name: "Back",
  41028. image: {
  41029. source: "./media/characters/tawendeh/back.svg",
  41030. extra: 2397/2294,
  41031. bottom: 42/2439
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Mortal Interaction",
  41038. height: math.unit(8, "feet"),
  41039. default: true
  41040. },
  41041. {
  41042. name: "Giant",
  41043. height: math.unit(80, "feet")
  41044. },
  41045. {
  41046. name: "Macro",
  41047. height: math.unit(800, "feet")
  41048. },
  41049. {
  41050. name: "Megamacro",
  41051. height: math.unit(8000, "feet")
  41052. },
  41053. {
  41054. name: "City-Crushing",
  41055. height: math.unit(24000, "feet")
  41056. },
  41057. {
  41058. name: "Mountain-Mashing",
  41059. height: math.unit(80000, "feet")
  41060. },
  41061. {
  41062. name: "Nation Nemesis",
  41063. height: math.unit(8e6, "feet")
  41064. },
  41065. {
  41066. name: "Continent Cracker",
  41067. height: math.unit(24e6, "feet")
  41068. },
  41069. {
  41070. name: "Earth-Eclipsing",
  41071. height: math.unit(2.4e8, "feet")
  41072. },
  41073. {
  41074. name: "Gas Giant Gulper",
  41075. height: math.unit(2.4e9, "feet")
  41076. },
  41077. {
  41078. name: "Sol-Swallowing",
  41079. height: math.unit(8e10, "feet")
  41080. },
  41081. {
  41082. name: "Galaxy Gulper",
  41083. height: math.unit(8, "galaxies")
  41084. },
  41085. {
  41086. name: "Cosmos Churner",
  41087. height: math.unit(8, "universes")
  41088. },
  41089. {
  41090. name: "Omnipotent Otter",
  41091. height: math.unit(80, "universes")
  41092. },
  41093. ]
  41094. ))
  41095. characterMakers.push(() => makeCharacter(
  41096. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41097. {
  41098. front: {
  41099. height: math.unit(2.6, "meters"),
  41100. weight: math.unit(900, "kg"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/neesha/front.svg",
  41104. extra: 1803/1653,
  41105. bottom: 128/1931
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Normal",
  41112. height: math.unit(2.6, "meters"),
  41113. default: true
  41114. },
  41115. {
  41116. name: "Macro",
  41117. height: math.unit(50, "meters")
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(5, "feet"),
  41126. weight: math.unit(185, "lb"),
  41127. name: "Front",
  41128. image: {
  41129. source: "./media/characters/kyera/front.svg",
  41130. extra: 1875/1790,
  41131. bottom: 96/1971
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Normal",
  41138. height: math.unit(5, "feet"),
  41139. default: true
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41145. {
  41146. front: {
  41147. height: math.unit(7 + 6/12, "feet"),
  41148. weight: math.unit(540, "lb"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/yuko/front.svg",
  41152. extra: 1282/1222,
  41153. bottom: 101/1383
  41154. }
  41155. },
  41156. frontClothed: {
  41157. height: math.unit(7 + 6/12, "feet"),
  41158. weight: math.unit(540, "lb"),
  41159. name: "Front (Clothed)",
  41160. image: {
  41161. source: "./media/characters/yuko/front-clothed.svg",
  41162. extra: 1282/1222,
  41163. bottom: 101/1383
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Normal",
  41170. height: math.unit(7 + 6/12, "feet"),
  41171. default: true
  41172. },
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(26 + 9/12, "feet")
  41176. },
  41177. {
  41178. name: "Megamacro",
  41179. height: math.unit(300, "feet")
  41180. },
  41181. {
  41182. name: "Gigamacro",
  41183. height: math.unit(5000, "feet")
  41184. },
  41185. {
  41186. name: "Planetary",
  41187. height: math.unit(10000, "miles")
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(8 + 2/12, "feet"),
  41196. weight: math.unit(600, "lb"),
  41197. name: "Front",
  41198. image: {
  41199. source: "./media/characters/deam-nitrel/front.svg",
  41200. extra: 1308/1234,
  41201. bottom: 125/1433
  41202. }
  41203. },
  41204. },
  41205. [
  41206. {
  41207. name: "Normal",
  41208. height: math.unit(8 + 2/12, "feet"),
  41209. default: true
  41210. },
  41211. ]
  41212. ))
  41213. characterMakers.push(() => makeCharacter(
  41214. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41215. {
  41216. front: {
  41217. height: math.unit(6.1, "feet"),
  41218. weight: math.unit(180, "lb"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/skyress/front.svg",
  41222. extra: 1045/915,
  41223. bottom: 28/1073
  41224. }
  41225. },
  41226. maw: {
  41227. height: math.unit(1, "feet"),
  41228. name: "Maw",
  41229. image: {
  41230. source: "./media/characters/skyress/maw.svg"
  41231. }
  41232. },
  41233. },
  41234. [
  41235. {
  41236. name: "Normal",
  41237. height: math.unit(6.1, "feet"),
  41238. default: true
  41239. },
  41240. {
  41241. name: "Macro",
  41242. height: math.unit(200, "feet")
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41248. {
  41249. front: {
  41250. height: math.unit(4 + 2/12, "feet"),
  41251. weight: math.unit(40, "kg"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/amethyst-jones/front.svg",
  41255. extra: 1220/1150,
  41256. bottom: 101/1321
  41257. }
  41258. },
  41259. },
  41260. [
  41261. {
  41262. name: "Normal",
  41263. height: math.unit(4 + 2/12, "feet"),
  41264. default: true
  41265. },
  41266. ]
  41267. ))
  41268. characterMakers.push(() => makeCharacter(
  41269. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41270. {
  41271. front: {
  41272. height: math.unit(1.7, "m"),
  41273. weight: math.unit(135, "lb"),
  41274. name: "Front",
  41275. image: {
  41276. source: "./media/characters/jade/front.svg",
  41277. extra: 1818/1767,
  41278. bottom: 32/1850
  41279. }
  41280. },
  41281. back: {
  41282. height: math.unit(1.7, "m"),
  41283. weight: math.unit(135, "lb"),
  41284. name: "Back",
  41285. image: {
  41286. source: "./media/characters/jade/back.svg",
  41287. extra: 1869/1809,
  41288. bottom: 35/1904
  41289. }
  41290. },
  41291. hand: {
  41292. height: math.unit(0.24, "m"),
  41293. name: "Hand",
  41294. image: {
  41295. source: "./media/characters/jade/hand.svg"
  41296. }
  41297. },
  41298. foot: {
  41299. height: math.unit(0.263, "m"),
  41300. name: "Foot",
  41301. image: {
  41302. source: "./media/characters/jade/foot.svg"
  41303. }
  41304. },
  41305. dick: {
  41306. height: math.unit(0.47, "m"),
  41307. name: "Dick",
  41308. image: {
  41309. source: "./media/characters/jade/dick.svg"
  41310. }
  41311. },
  41312. },
  41313. [
  41314. {
  41315. name: "Micro",
  41316. height: math.unit(22, "cm")
  41317. },
  41318. {
  41319. name: "Normal",
  41320. height: math.unit(1.7, "m"),
  41321. default: true
  41322. },
  41323. {
  41324. name: "Macro",
  41325. height: math.unit(152, "m")
  41326. },
  41327. ]
  41328. ))
  41329. characterMakers.push(() => makeCharacter(
  41330. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41331. {
  41332. front: {
  41333. height: math.unit(100, "miles"),
  41334. weight: math.unit(20000, "tons"),
  41335. name: "Front",
  41336. image: {
  41337. source: "./media/characters/cookie/front.svg",
  41338. extra: 1125/1070,
  41339. bottom: 30/1155
  41340. }
  41341. },
  41342. },
  41343. [
  41344. {
  41345. name: "Big",
  41346. height: math.unit(50, "feet")
  41347. },
  41348. {
  41349. name: "Macro",
  41350. height: math.unit(100, "miles"),
  41351. default: true
  41352. },
  41353. {
  41354. name: "Megamacro",
  41355. height: math.unit(90000, "miles")
  41356. },
  41357. ]
  41358. ))
  41359. characterMakers.push(() => makeCharacter(
  41360. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41361. {
  41362. front: {
  41363. height: math.unit(6, "feet"),
  41364. weight: math.unit(145, "lb"),
  41365. name: "Front",
  41366. image: {
  41367. source: "./media/characters/farzian/front.svg",
  41368. extra: 1902/1693,
  41369. bottom: 108/2010
  41370. }
  41371. },
  41372. },
  41373. [
  41374. {
  41375. name: "Macro",
  41376. height: math.unit(500, "feet"),
  41377. default: true
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41383. {
  41384. front: {
  41385. height: math.unit(3 + 6/12, "feet"),
  41386. weight: math.unit(50, "lb"),
  41387. name: "Front",
  41388. image: {
  41389. source: "./media/characters/kimberly-tilson/front.svg",
  41390. extra: 1400/1322,
  41391. bottom: 36/1436
  41392. }
  41393. },
  41394. back: {
  41395. height: math.unit(3 + 6/12, "feet"),
  41396. weight: math.unit(50, "lb"),
  41397. name: "Back",
  41398. image: {
  41399. source: "./media/characters/kimberly-tilson/back.svg",
  41400. extra: 1370/1307,
  41401. bottom: 20/1390
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "Normal",
  41408. height: math.unit(3 + 6/12, "feet"),
  41409. default: true
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(1148, "feet"),
  41418. weight: math.unit(34057, "lb"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/harthos/front.svg",
  41422. extra: 1391/1339,
  41423. bottom: 13/1404
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Macro",
  41430. height: math.unit(1148, "feet"),
  41431. default: true
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(15, "feet"),
  41440. name: "Front",
  41441. image: {
  41442. source: "./media/characters/hypatia/front.svg",
  41443. extra: 1653/1591,
  41444. bottom: 79/1732
  41445. }
  41446. },
  41447. },
  41448. [
  41449. {
  41450. name: "Normal",
  41451. height: math.unit(15, "feet")
  41452. },
  41453. {
  41454. name: "Small",
  41455. height: math.unit(300, "feet")
  41456. },
  41457. {
  41458. name: "Macro",
  41459. height: math.unit(2500, "feet"),
  41460. default: true
  41461. },
  41462. {
  41463. name: "Mega Macro",
  41464. height: math.unit(1500, "miles")
  41465. },
  41466. {
  41467. name: "Giga Macro",
  41468. height: math.unit(1.5e6, "miles")
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41474. {
  41475. front: {
  41476. height: math.unit(6, "feet"),
  41477. weight: math.unit(200, "lb"),
  41478. name: "Front",
  41479. image: {
  41480. source: "./media/characters/wulver/front.svg",
  41481. extra: 1724/1632,
  41482. bottom: 130/1854
  41483. }
  41484. },
  41485. frontNsfw: {
  41486. height: math.unit(6, "feet"),
  41487. weight: math.unit(200, "lb"),
  41488. name: "Front (NSFW)",
  41489. image: {
  41490. source: "./media/characters/wulver/front-nsfw.svg",
  41491. extra: 1724/1632,
  41492. bottom: 130/1854
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Human-Sized",
  41499. height: math.unit(6, "feet")
  41500. },
  41501. {
  41502. name: "Normal",
  41503. height: math.unit(4, "meters"),
  41504. default: true
  41505. },
  41506. {
  41507. name: "Large",
  41508. height: math.unit(6, "m")
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(7, "feet"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/maru/front.svg",
  41520. extra: 1595/1570,
  41521. bottom: 0/1595
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Normal",
  41528. height: math.unit(7, "feet"),
  41529. default: true
  41530. },
  41531. {
  41532. name: "Macro",
  41533. height: math.unit(700, "feet")
  41534. },
  41535. {
  41536. name: "Mega Macro",
  41537. height: math.unit(25, "miles")
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(6, "feet"),
  41546. weight: math.unit(170, "lb"),
  41547. name: "Front",
  41548. image: {
  41549. source: "./media/characters/xenon/front.svg",
  41550. extra: 1376/1305,
  41551. bottom: 56/1432
  41552. }
  41553. },
  41554. back: {
  41555. height: math.unit(6, "feet"),
  41556. weight: math.unit(170, "lb"),
  41557. name: "Back",
  41558. image: {
  41559. source: "./media/characters/xenon/back.svg",
  41560. extra: 1328/1259,
  41561. bottom: 95/1423
  41562. }
  41563. },
  41564. maw: {
  41565. height: math.unit(0.52, "feet"),
  41566. name: "Maw",
  41567. image: {
  41568. source: "./media/characters/xenon/maw.svg"
  41569. }
  41570. },
  41571. handLeft: {
  41572. height: math.unit(0.82 * 169 / 153, "feet"),
  41573. name: "Hand (Left)",
  41574. image: {
  41575. source: "./media/characters/xenon/hand-left.svg"
  41576. }
  41577. },
  41578. handRight: {
  41579. height: math.unit(0.82, "feet"),
  41580. name: "Hand (Right)",
  41581. image: {
  41582. source: "./media/characters/xenon/hand-right.svg"
  41583. }
  41584. },
  41585. footLeft: {
  41586. height: math.unit(1.13, "feet"),
  41587. name: "Foot (Left)",
  41588. image: {
  41589. source: "./media/characters/xenon/foot-left.svg"
  41590. }
  41591. },
  41592. footRight: {
  41593. height: math.unit(1.13 * 194 / 196, "feet"),
  41594. name: "Foot (Right)",
  41595. image: {
  41596. source: "./media/characters/xenon/foot-right.svg"
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Micro",
  41603. height: math.unit(0.8, "inches")
  41604. },
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(6, "feet")
  41608. },
  41609. {
  41610. name: "Macro",
  41611. height: math.unit(50, "feet"),
  41612. default: true
  41613. },
  41614. {
  41615. name: "Macro+",
  41616. height: math.unit(250, "feet")
  41617. },
  41618. {
  41619. name: "Megamacro",
  41620. height: math.unit(1500, "feet")
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(7 + 5/12, "feet"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/zane/front.svg",
  41632. extra: 1260/1203,
  41633. bottom: 94/1354
  41634. }
  41635. },
  41636. back: {
  41637. height: math.unit(5.05, "feet"),
  41638. name: "Back",
  41639. image: {
  41640. source: "./media/characters/zane/back.svg",
  41641. extra: 893/829,
  41642. bottom: 30/923
  41643. }
  41644. },
  41645. werewolf: {
  41646. height: math.unit(11, "feet"),
  41647. name: "Werewolf",
  41648. image: {
  41649. source: "./media/characters/zane/werewolf.svg",
  41650. extra: 1383/1323,
  41651. bottom: 89/1472
  41652. }
  41653. },
  41654. foot: {
  41655. height: math.unit(1.46, "feet"),
  41656. name: "Foot",
  41657. image: {
  41658. source: "./media/characters/zane/foot.svg"
  41659. }
  41660. },
  41661. footFront: {
  41662. height: math.unit(0.784, "feet"),
  41663. name: "Foot (Front)",
  41664. image: {
  41665. source: "./media/characters/zane/foot-front.svg"
  41666. }
  41667. },
  41668. dick: {
  41669. height: math.unit(1.95, "feet"),
  41670. name: "Dick",
  41671. image: {
  41672. source: "./media/characters/zane/dick.svg"
  41673. }
  41674. },
  41675. dickWerewolf: {
  41676. height: math.unit(3.77, "feet"),
  41677. name: "Dick (Werewolf)",
  41678. image: {
  41679. source: "./media/characters/zane/dick.svg"
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Normal",
  41686. height: math.unit(7 + 5/12, "feet"),
  41687. default: true
  41688. },
  41689. ]
  41690. ))
  41691. characterMakers.push(() => makeCharacter(
  41692. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41693. {
  41694. front: {
  41695. height: math.unit(6 + 2/12, "feet"),
  41696. weight: math.unit(284, "lb"),
  41697. name: "Front",
  41698. image: {
  41699. source: "./media/characters/benni-desparque/front.svg",
  41700. extra: 1353/1126,
  41701. bottom: 69/1422
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Civilian",
  41708. height: math.unit(6 + 2/12, "feet")
  41709. },
  41710. {
  41711. name: "Normal",
  41712. height: math.unit(98, "feet"),
  41713. default: true
  41714. },
  41715. {
  41716. name: "Kaiju Fighter",
  41717. height: math.unit(268, "feet")
  41718. },
  41719. ]
  41720. ))
  41721. characterMakers.push(() => makeCharacter(
  41722. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41723. {
  41724. front: {
  41725. height: math.unit(5, "feet"),
  41726. weight: math.unit(105, "lb"),
  41727. name: "Front",
  41728. image: {
  41729. source: "./media/characters/maxine/front.svg",
  41730. extra: 1386/1250,
  41731. bottom: 71/1457
  41732. }
  41733. },
  41734. },
  41735. [
  41736. {
  41737. name: "Normal",
  41738. height: math.unit(5, "feet"),
  41739. default: true
  41740. },
  41741. ]
  41742. ))
  41743. characterMakers.push(() => makeCharacter(
  41744. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41745. {
  41746. front: {
  41747. height: math.unit(11 + 7/12, "feet"),
  41748. weight: math.unit(9576, "lb"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/scaly/front.svg",
  41752. extra: 888/867,
  41753. bottom: 36/924
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Normal",
  41760. height: math.unit(11 + 7/12, "feet"),
  41761. default: true
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41767. {
  41768. front: {
  41769. height: math.unit(6 + 3/12, "feet"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/saelria/front.svg",
  41773. extra: 1243/1138,
  41774. bottom: 46/1289
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Micro",
  41781. height: math.unit(6, "inches"),
  41782. },
  41783. {
  41784. name: "Normal",
  41785. height: math.unit(6 + 3/12, "feet"),
  41786. default: true
  41787. },
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(25, "feet")
  41791. },
  41792. ]
  41793. ))
  41794. characterMakers.push(() => makeCharacter(
  41795. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41796. {
  41797. front: {
  41798. height: math.unit(80, "meters"),
  41799. weight: math.unit(7000, "tonnes"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/tef/front.svg",
  41803. extra: 2036/1991,
  41804. bottom: 54/2090
  41805. }
  41806. },
  41807. back: {
  41808. height: math.unit(80, "meters"),
  41809. weight: math.unit(7000, "tonnes"),
  41810. name: "Back",
  41811. image: {
  41812. source: "./media/characters/tef/back.svg",
  41813. extra: 2036/1991,
  41814. bottom: 54/2090
  41815. }
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Macro",
  41821. height: math.unit(80, "meters"),
  41822. default: true
  41823. },
  41824. ]
  41825. ))
  41826. characterMakers.push(() => makeCharacter(
  41827. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41828. {
  41829. front: {
  41830. height: math.unit(13, "feet"),
  41831. weight: math.unit(6, "tons"),
  41832. name: "Front",
  41833. image: {
  41834. source: "./media/characters/rover/front.svg",
  41835. extra: 1233/1156,
  41836. bottom: 50/1283
  41837. }
  41838. },
  41839. back: {
  41840. height: math.unit(13, "feet"),
  41841. weight: math.unit(6, "tons"),
  41842. name: "Back",
  41843. image: {
  41844. source: "./media/characters/rover/back.svg",
  41845. extra: 1327/1258,
  41846. bottom: 39/1366
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Normal",
  41853. height: math.unit(13, "feet"),
  41854. default: true
  41855. },
  41856. {
  41857. name: "Macro",
  41858. height: math.unit(1300, "feet")
  41859. },
  41860. {
  41861. name: "Megamacro",
  41862. height: math.unit(1300, "miles")
  41863. },
  41864. {
  41865. name: "Gigamacro",
  41866. height: math.unit(1300000, "miles")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(6, "feet"),
  41875. weight: math.unit(150, "lb"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/ariz/front.svg",
  41879. extra: 1401/1346,
  41880. bottom: 5/1406
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Normal",
  41887. height: math.unit(10, "feet"),
  41888. default: true
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(6, "feet"),
  41897. weight: math.unit(140, "lb"),
  41898. name: "Front",
  41899. image: {
  41900. source: "./media/characters/sigrun/front.svg",
  41901. extra: 1418/1359,
  41902. bottom: 27/1445
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Macro",
  41909. height: math.unit(35, "feet"),
  41910. default: true
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(6, "feet"),
  41919. weight: math.unit(150, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/numin/front.svg",
  41923. extra: 1433/1388,
  41924. bottom: 12/1445
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Macro",
  41931. height: math.unit(21.5, "km"),
  41932. default: true
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41938. {
  41939. front: {
  41940. height: math.unit(6, "feet"),
  41941. weight: math.unit(463, "lb"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/melwa/front.svg",
  41945. extra: 1307/1248,
  41946. bottom: 93/1400
  41947. }
  41948. },
  41949. },
  41950. [
  41951. {
  41952. name: "Macro",
  41953. height: math.unit(50, "meters"),
  41954. default: true
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41960. {
  41961. front: {
  41962. height: math.unit(325, "feet"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/zorkaiju/front.svg",
  41966. extra: 1955/1814,
  41967. bottom: 40/1995
  41968. }
  41969. },
  41970. frontExtended: {
  41971. height: math.unit(325, "feet"),
  41972. name: "Front (Extended)",
  41973. image: {
  41974. source: "./media/characters/zorkaiju/front-extended.svg",
  41975. extra: 1955/1814,
  41976. bottom: 40/1995
  41977. }
  41978. },
  41979. side: {
  41980. height: math.unit(325, "feet"),
  41981. name: "Side",
  41982. image: {
  41983. source: "./media/characters/zorkaiju/side.svg",
  41984. extra: 1495/1396,
  41985. bottom: 17/1512
  41986. }
  41987. },
  41988. sideExtended: {
  41989. height: math.unit(325, "feet"),
  41990. name: "Side (Extended)",
  41991. image: {
  41992. source: "./media/characters/zorkaiju/side-extended.svg",
  41993. extra: 1495/1396,
  41994. bottom: 17/1512
  41995. }
  41996. },
  41997. back: {
  41998. height: math.unit(325, "feet"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/zorkaiju/back.svg",
  42002. extra: 1959/1821,
  42003. bottom: 31/1990
  42004. }
  42005. },
  42006. backExtended: {
  42007. height: math.unit(325, "feet"),
  42008. name: "Back (Extended)",
  42009. image: {
  42010. source: "./media/characters/zorkaiju/back-extended.svg",
  42011. extra: 1959/1821,
  42012. bottom: 31/1990
  42013. }
  42014. },
  42015. hand: {
  42016. height: math.unit(58.4, "feet"),
  42017. name: "Hand",
  42018. image: {
  42019. source: "./media/characters/zorkaiju/hand.svg"
  42020. }
  42021. },
  42022. handExtended: {
  42023. height: math.unit(61.4, "feet"),
  42024. name: "Hand (Extended)",
  42025. image: {
  42026. source: "./media/characters/zorkaiju/hand-extended.svg"
  42027. }
  42028. },
  42029. foot: {
  42030. height: math.unit(95, "feet"),
  42031. name: "Foot",
  42032. image: {
  42033. source: "./media/characters/zorkaiju/foot.svg"
  42034. }
  42035. },
  42036. leftArm: {
  42037. height: math.unit(59, "feet"),
  42038. name: "Left Arm",
  42039. image: {
  42040. source: "./media/characters/zorkaiju/left-arm.svg"
  42041. }
  42042. },
  42043. rightArm: {
  42044. height: math.unit(59, "feet"),
  42045. name: "Right Arm",
  42046. image: {
  42047. source: "./media/characters/zorkaiju/right-arm.svg"
  42048. }
  42049. },
  42050. leftArmExtended: {
  42051. height: math.unit(59 * 1.033546, "feet"),
  42052. name: "Left Arm (Extended)",
  42053. image: {
  42054. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42055. }
  42056. },
  42057. rightArmExtended: {
  42058. height: math.unit(59 * 1.0496, "feet"),
  42059. name: "Right Arm (Extended)",
  42060. image: {
  42061. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42062. }
  42063. },
  42064. tail: {
  42065. height: math.unit(104, "feet"),
  42066. name: "Tail",
  42067. image: {
  42068. source: "./media/characters/zorkaiju/tail.svg"
  42069. }
  42070. },
  42071. tailExtended: {
  42072. height: math.unit(104, "feet"),
  42073. name: "Tail (Extended)",
  42074. image: {
  42075. source: "./media/characters/zorkaiju/tail-extended.svg"
  42076. }
  42077. },
  42078. tailBottom: {
  42079. height: math.unit(104, "feet"),
  42080. name: "Tail Bottom",
  42081. image: {
  42082. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42083. }
  42084. },
  42085. crystal: {
  42086. height: math.unit(27.54, "feet"),
  42087. name: "Crystal",
  42088. image: {
  42089. source: "./media/characters/zorkaiju/crystal.svg"
  42090. }
  42091. },
  42092. },
  42093. [
  42094. {
  42095. name: "Kaiju",
  42096. height: math.unit(325, "feet"),
  42097. default: true
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(6 + 1/12, "feet"),
  42106. weight: math.unit(115, "lb"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/bailey-belfry/front.svg",
  42110. extra: 1240/1121,
  42111. bottom: 101/1341
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Normal",
  42118. height: math.unit(6 + 1/12, "feet"),
  42119. default: true
  42120. },
  42121. ]
  42122. ))
  42123. characterMakers.push(() => makeCharacter(
  42124. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42125. {
  42126. side: {
  42127. height: math.unit(4, "meters"),
  42128. weight: math.unit(250, "kg"),
  42129. name: "Side",
  42130. image: {
  42131. source: "./media/characters/blacky/side.svg",
  42132. extra: 1027/919,
  42133. bottom: 43/1070
  42134. }
  42135. },
  42136. maw: {
  42137. height: math.unit(1, "meters"),
  42138. name: "Maw",
  42139. image: {
  42140. source: "./media/characters/blacky/maw.svg"
  42141. }
  42142. },
  42143. paw: {
  42144. height: math.unit(1, "meters"),
  42145. name: "Paw",
  42146. image: {
  42147. source: "./media/characters/blacky/paw.svg"
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Normal",
  42154. height: math.unit(4, "meters"),
  42155. default: true
  42156. },
  42157. ]
  42158. ))
  42159. characterMakers.push(() => makeCharacter(
  42160. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42161. {
  42162. front: {
  42163. height: math.unit(170, "cm"),
  42164. weight: math.unit(66, "kg"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/thux-ei/front.svg",
  42168. extra: 1109/1011,
  42169. bottom: 8/1117
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Normal",
  42176. height: math.unit(170, "cm"),
  42177. default: true
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(5, "feet"),
  42186. weight: math.unit(120, "lb"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/roxanne-voltaire/front.svg",
  42190. extra: 1901/1779,
  42191. bottom: 53/1954
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Normal",
  42198. height: math.unit(5, "feet"),
  42199. default: true
  42200. },
  42201. {
  42202. name: "Giant",
  42203. height: math.unit(50, "feet")
  42204. },
  42205. {
  42206. name: "Titan",
  42207. height: math.unit(500, "feet")
  42208. },
  42209. {
  42210. name: "Macro",
  42211. height: math.unit(5000, "feet")
  42212. },
  42213. {
  42214. name: "Megamacro",
  42215. height: math.unit(50000, "feet")
  42216. },
  42217. {
  42218. name: "Gigamacro",
  42219. height: math.unit(500000, "feet")
  42220. },
  42221. {
  42222. name: "Teramacro",
  42223. height: math.unit(5e6, "feet")
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42229. {
  42230. front: {
  42231. height: math.unit(6 + 2/12, "feet"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/squeaks/front.svg",
  42235. extra: 1823/1768,
  42236. bottom: 138/1961
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Micro",
  42243. height: math.unit(0.5, "inches")
  42244. },
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(6 + 2/12, "feet"),
  42248. default: true
  42249. },
  42250. {
  42251. name: "Macro",
  42252. height: math.unit(600, "feet")
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(1.72, "meters"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/archinger/front.svg",
  42264. extra: 1861/1675,
  42265. bottom: 125/1986
  42266. }
  42267. },
  42268. back: {
  42269. height: math.unit(1.72, "meters"),
  42270. name: "Back",
  42271. image: {
  42272. source: "./media/characters/archinger/back.svg",
  42273. extra: 1844/1701,
  42274. bottom: 104/1948
  42275. }
  42276. },
  42277. cock: {
  42278. height: math.unit(0.59, "feet"),
  42279. name: "Cock",
  42280. image: {
  42281. source: "./media/characters/archinger/cock.svg"
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Normal",
  42288. height: math.unit(1.72, "meters"),
  42289. default: true
  42290. },
  42291. {
  42292. name: "Macro",
  42293. height: math.unit(84, "meters")
  42294. },
  42295. {
  42296. name: "Macro+",
  42297. height: math.unit(112, "meters")
  42298. },
  42299. {
  42300. name: "Macro++",
  42301. height: math.unit(960, "meters")
  42302. },
  42303. {
  42304. name: "Macro+++",
  42305. height: math.unit(4, "km")
  42306. },
  42307. {
  42308. name: "Macro++++",
  42309. height: math.unit(48, "km")
  42310. },
  42311. {
  42312. name: "Macro+++++",
  42313. height: math.unit(4500, "km")
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(5 + 5/12, "feet"),
  42322. name: "Front",
  42323. image: {
  42324. source: "./media/characters/alsnapz/front.svg",
  42325. extra: 1157/1065,
  42326. bottom: 42/1199
  42327. }
  42328. },
  42329. },
  42330. [
  42331. {
  42332. name: "Normal",
  42333. height: math.unit(5 + 5/12, "feet"),
  42334. default: true
  42335. },
  42336. ]
  42337. ))
  42338. characterMakers.push(() => makeCharacter(
  42339. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42340. {
  42341. side: {
  42342. height: math.unit(3.2, "earths"),
  42343. name: "Side",
  42344. image: {
  42345. source: "./media/characters/mag/side.svg",
  42346. extra: 1331/1008,
  42347. bottom: 52/1383
  42348. }
  42349. },
  42350. wing: {
  42351. height: math.unit(1.94, "earths"),
  42352. name: "Wing",
  42353. image: {
  42354. source: "./media/characters/mag/wing.svg"
  42355. }
  42356. },
  42357. dick: {
  42358. height: math.unit(1.8, "earths"),
  42359. name: "Dick",
  42360. image: {
  42361. source: "./media/characters/mag/dick.svg"
  42362. }
  42363. },
  42364. ass: {
  42365. height: math.unit(1.33, "earths"),
  42366. name: "Ass",
  42367. image: {
  42368. source: "./media/characters/mag/ass.svg"
  42369. }
  42370. },
  42371. head: {
  42372. height: math.unit(1.1, "earths"),
  42373. name: "Head",
  42374. image: {
  42375. source: "./media/characters/mag/head.svg"
  42376. }
  42377. },
  42378. maw: {
  42379. height: math.unit(1.62, "earths"),
  42380. name: "Maw",
  42381. image: {
  42382. source: "./media/characters/mag/maw.svg"
  42383. }
  42384. },
  42385. },
  42386. [
  42387. {
  42388. name: "Small",
  42389. height: math.unit(162, "feet")
  42390. },
  42391. {
  42392. name: "Normal",
  42393. height: math.unit(3.2, "earths"),
  42394. default: true
  42395. },
  42396. ]
  42397. ))
  42398. characterMakers.push(() => makeCharacter(
  42399. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42400. {
  42401. front: {
  42402. height: math.unit(512, "feet"),
  42403. weight: math.unit(63509, "tonnes"),
  42404. name: "Front",
  42405. image: {
  42406. source: "./media/characters/vorrel-harroc/front.svg",
  42407. extra: 1075/1063,
  42408. bottom: 62/1137
  42409. }
  42410. },
  42411. },
  42412. [
  42413. {
  42414. name: "Normal",
  42415. height: math.unit(10, "feet")
  42416. },
  42417. {
  42418. name: "Macro",
  42419. height: math.unit(512, "feet"),
  42420. default: true
  42421. },
  42422. {
  42423. name: "Megamacro",
  42424. height: math.unit(256, "miles")
  42425. },
  42426. {
  42427. name: "Gigamacro",
  42428. height: math.unit(4096, "miles")
  42429. },
  42430. ]
  42431. ))
  42432. characterMakers.push(() => makeCharacter(
  42433. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42434. {
  42435. side: {
  42436. height: math.unit(50, "feet"),
  42437. name: "Side",
  42438. image: {
  42439. source: "./media/characters/froimar/side.svg",
  42440. extra: 855/638,
  42441. bottom: 99/954
  42442. }
  42443. },
  42444. },
  42445. [
  42446. {
  42447. name: "Macro",
  42448. height: math.unit(50, "feet"),
  42449. default: true
  42450. },
  42451. ]
  42452. ))
  42453. characterMakers.push(() => makeCharacter(
  42454. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42455. {
  42456. front: {
  42457. height: math.unit(210, "miles"),
  42458. name: "Front",
  42459. image: {
  42460. source: "./media/characters/timothy/front.svg",
  42461. extra: 1007/943,
  42462. bottom: 62/1069
  42463. }
  42464. },
  42465. frontSkirt: {
  42466. height: math.unit(210, "miles"),
  42467. name: "Front (Skirt)",
  42468. image: {
  42469. source: "./media/characters/timothy/front-skirt.svg",
  42470. extra: 1007/943,
  42471. bottom: 62/1069
  42472. }
  42473. },
  42474. frontCoat: {
  42475. height: math.unit(210, "miles"),
  42476. name: "Front (Coat)",
  42477. image: {
  42478. source: "./media/characters/timothy/front-coat.svg",
  42479. extra: 1007/943,
  42480. bottom: 62/1069
  42481. }
  42482. },
  42483. },
  42484. [
  42485. {
  42486. name: "Macro",
  42487. height: math.unit(210, "miles"),
  42488. default: true
  42489. },
  42490. {
  42491. name: "Megamacro",
  42492. height: math.unit(210000, "miles")
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(188, "feet"),
  42501. name: "Front",
  42502. image: {
  42503. source: "./media/characters/pyotr/front.svg",
  42504. extra: 1912/1826,
  42505. bottom: 18/1930
  42506. }
  42507. },
  42508. },
  42509. [
  42510. {
  42511. name: "Macro",
  42512. height: math.unit(188, "feet"),
  42513. default: true
  42514. },
  42515. {
  42516. name: "Megamacro",
  42517. height: math.unit(8, "miles")
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42523. {
  42524. side: {
  42525. height: math.unit(10, "feet"),
  42526. weight: math.unit(4500, "lb"),
  42527. name: "Side",
  42528. image: {
  42529. source: "./media/characters/ackart/side.svg",
  42530. extra: 1776/1668,
  42531. bottom: 116/1892
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(10, "feet"),
  42539. default: true
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42545. {
  42546. side: {
  42547. height: math.unit(21, "feet"),
  42548. name: "Side",
  42549. image: {
  42550. source: "./media/characters/nolow/side.svg",
  42551. extra: 1484/1434,
  42552. bottom: 85/1569
  42553. }
  42554. },
  42555. sideErect: {
  42556. height: math.unit(21, "feet"),
  42557. name: "Side-erect",
  42558. image: {
  42559. source: "./media/characters/nolow/side-erect.svg",
  42560. extra: 1484/1434,
  42561. bottom: 85/1569
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Regular",
  42568. height: math.unit(12, "feet")
  42569. },
  42570. {
  42571. name: "Big Chee",
  42572. height: math.unit(21, "feet"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(7, "feet"),
  42582. weight: math.unit(250, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/nines/front.svg",
  42586. extra: 1741/1607,
  42587. bottom: 41/1782
  42588. }
  42589. },
  42590. side: {
  42591. height: math.unit(7, "feet"),
  42592. weight: math.unit(250, "lb"),
  42593. name: "Side",
  42594. image: {
  42595. source: "./media/characters/nines/side.svg",
  42596. extra: 1854/1735,
  42597. bottom: 93/1947
  42598. }
  42599. },
  42600. back: {
  42601. height: math.unit(7, "feet"),
  42602. weight: math.unit(250, "lb"),
  42603. name: "Back",
  42604. image: {
  42605. source: "./media/characters/nines/back.svg",
  42606. extra: 1748/1615,
  42607. bottom: 20/1768
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Megamacro",
  42614. height: math.unit(99, "km"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(5 + 10/12, "feet"),
  42624. weight: math.unit(210, "lb"),
  42625. name: "Front",
  42626. image: {
  42627. source: "./media/characters/zenith/front.svg",
  42628. extra: 1531/1452,
  42629. bottom: 198/1729
  42630. }
  42631. },
  42632. back: {
  42633. height: math.unit(5 + 10/12, "feet"),
  42634. weight: math.unit(210, "lb"),
  42635. name: "Back",
  42636. image: {
  42637. source: "./media/characters/zenith/back.svg",
  42638. extra: 1571/1487,
  42639. bottom: 75/1646
  42640. }
  42641. },
  42642. },
  42643. [
  42644. {
  42645. name: "Normal",
  42646. height: math.unit(5 + 10/12, "feet"),
  42647. default: true
  42648. }
  42649. ]
  42650. ))
  42651. characterMakers.push(() => makeCharacter(
  42652. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42653. {
  42654. front: {
  42655. height: math.unit(4, "feet"),
  42656. weight: math.unit(60, "lb"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/jasper/front.svg",
  42660. extra: 1450/1379,
  42661. bottom: 19/1469
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(4, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(6 + 5/12, "feet"),
  42678. weight: math.unit(290, "lb"),
  42679. name: "Front",
  42680. image: {
  42681. source: "./media/characters/tiberius-thyben/front.svg",
  42682. extra: 757/739,
  42683. bottom: 39/796
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "Micro",
  42690. height: math.unit(1.5, "inches")
  42691. },
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(6 + 5/12, "feet"),
  42695. default: true
  42696. },
  42697. {
  42698. name: "Macro",
  42699. height: math.unit(300, "feet")
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42705. {
  42706. front: {
  42707. height: math.unit(5 + 6/12, "feet"),
  42708. weight: math.unit(60, "kg"),
  42709. name: "Front",
  42710. image: {
  42711. source: "./media/characters/sabre/front.svg",
  42712. extra: 738/671,
  42713. bottom: 27/765
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Teeny",
  42720. height: math.unit(2, "inches")
  42721. },
  42722. {
  42723. name: "Smol",
  42724. height: math.unit(8, "inches")
  42725. },
  42726. {
  42727. name: "Normal",
  42728. height: math.unit(5 + 6/12, "feet"),
  42729. default: true
  42730. },
  42731. {
  42732. name: "Mini-Macro",
  42733. height: math.unit(15, "feet")
  42734. },
  42735. {
  42736. name: "Macro",
  42737. height: math.unit(50, "feet")
  42738. },
  42739. ]
  42740. ))
  42741. characterMakers.push(() => makeCharacter(
  42742. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42743. {
  42744. front: {
  42745. height: math.unit(6 + 4/12, "feet"),
  42746. weight: math.unit(170, "lb"),
  42747. name: "Front",
  42748. image: {
  42749. source: "./media/characters/charlie/front.svg",
  42750. extra: 1348/1228,
  42751. bottom: 15/1363
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Macro",
  42758. height: math.unit(1700, "meters"),
  42759. default: true
  42760. },
  42761. {
  42762. name: "MegaMacro",
  42763. height: math.unit(20400, "meters")
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(6 + 3/12, "feet"),
  42772. weight: math.unit(185, "lb"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/susan-grant/front.svg",
  42776. extra: 1351/1327,
  42777. bottom: 26/1377
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(6 + 3/12, "feet"),
  42785. default: true
  42786. },
  42787. {
  42788. name: "Macro",
  42789. height: math.unit(225, "feet")
  42790. },
  42791. {
  42792. name: "Macro+",
  42793. height: math.unit(900, "feet")
  42794. },
  42795. {
  42796. name: "MegaMacro",
  42797. height: math.unit(14400, "feet")
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(5 + 4/12, "feet"),
  42806. weight: math.unit(110, "lb"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/axel-isanov/front.svg",
  42810. extra: 1096/1065,
  42811. bottom: 13/1109
  42812. }
  42813. },
  42814. },
  42815. [
  42816. {
  42817. name: "Normal",
  42818. height: math.unit(5 + 4/12, "feet"),
  42819. default: true
  42820. },
  42821. ]
  42822. ))
  42823. characterMakers.push(() => makeCharacter(
  42824. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42825. {
  42826. front: {
  42827. height: math.unit(9, "feet"),
  42828. weight: math.unit(467, "lb"),
  42829. name: "Front",
  42830. image: {
  42831. source: "./media/characters/necahual/front.svg",
  42832. extra: 920/873,
  42833. bottom: 26/946
  42834. }
  42835. },
  42836. back: {
  42837. height: math.unit(9, "feet"),
  42838. weight: math.unit(467, "lb"),
  42839. name: "Back",
  42840. image: {
  42841. source: "./media/characters/necahual/back.svg",
  42842. extra: 930/884,
  42843. bottom: 16/946
  42844. }
  42845. },
  42846. frontUnderwear: {
  42847. height: math.unit(9, "feet"),
  42848. weight: math.unit(467, "lb"),
  42849. name: "Front (Underwear)",
  42850. image: {
  42851. source: "./media/characters/necahual/front-underwear.svg",
  42852. extra: 920/873,
  42853. bottom: 26/946
  42854. }
  42855. },
  42856. frontDressed: {
  42857. height: math.unit(9, "feet"),
  42858. weight: math.unit(467, "lb"),
  42859. name: "Front (Dressed)",
  42860. image: {
  42861. source: "./media/characters/necahual/front-dressed.svg",
  42862. extra: 920/873,
  42863. bottom: 26/946
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Comprsesed",
  42870. height: math.unit(9, "feet")
  42871. },
  42872. {
  42873. name: "Natural",
  42874. height: math.unit(15, "feet"),
  42875. default: true
  42876. },
  42877. {
  42878. name: "Boosted",
  42879. height: math.unit(50, "feet")
  42880. },
  42881. {
  42882. name: "Boosted+",
  42883. height: math.unit(150, "feet")
  42884. },
  42885. {
  42886. name: "Max",
  42887. height: math.unit(500, "feet")
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42893. {
  42894. front: {
  42895. height: math.unit(22 + 1/12, "feet"),
  42896. weight: math.unit(3200, "lb"),
  42897. name: "Front",
  42898. image: {
  42899. source: "./media/characters/theo-acacia/front.svg",
  42900. extra: 1796/1741,
  42901. bottom: 83/1879
  42902. }
  42903. },
  42904. frontUnderwear: {
  42905. height: math.unit(22 + 1/12, "feet"),
  42906. weight: math.unit(3200, "lb"),
  42907. name: "Front (Underwear)",
  42908. image: {
  42909. source: "./media/characters/theo-acacia/front-underwear.svg",
  42910. extra: 1796/1741,
  42911. bottom: 83/1879
  42912. }
  42913. },
  42914. frontNude: {
  42915. height: math.unit(22 + 1/12, "feet"),
  42916. weight: math.unit(3200, "lb"),
  42917. name: "Front (Nude)",
  42918. image: {
  42919. source: "./media/characters/theo-acacia/front-nude.svg",
  42920. extra: 1796/1741,
  42921. bottom: 83/1879
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Normal",
  42928. height: math.unit(22 + 1/12, "feet"),
  42929. default: true
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(20, "feet"),
  42938. name: "Front",
  42939. image: {
  42940. source: "./media/characters/astra/front.svg",
  42941. extra: 1850/1714,
  42942. bottom: 106/1956
  42943. }
  42944. },
  42945. frontUndressed: {
  42946. height: math.unit(20, "feet"),
  42947. name: "Front (Undressed)",
  42948. image: {
  42949. source: "./media/characters/astra/front-undressed.svg",
  42950. extra: 1926/1749,
  42951. bottom: 0/1926
  42952. }
  42953. },
  42954. hand: {
  42955. height: math.unit(1.53, "feet"),
  42956. name: "Hand",
  42957. image: {
  42958. source: "./media/characters/astra/hand.svg"
  42959. }
  42960. },
  42961. paw: {
  42962. height: math.unit(1.53, "feet"),
  42963. name: "Paw",
  42964. image: {
  42965. source: "./media/characters/astra/paw.svg"
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Smallest",
  42972. height: math.unit(20, "feet")
  42973. },
  42974. {
  42975. name: "Normal",
  42976. height: math.unit(1e9, "miles"),
  42977. default: true
  42978. },
  42979. {
  42980. name: "Larger",
  42981. height: math.unit(5, "multiverses")
  42982. },
  42983. {
  42984. name: "Largest",
  42985. height: math.unit(1e9, "multiverses")
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42991. {
  42992. front: {
  42993. height: math.unit(8, "feet"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/breanna/front.svg",
  42997. extra: 1912/1632,
  42998. bottom: 33/1945
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Smallest",
  43005. height: math.unit(8, "feet")
  43006. },
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(1, "mile"),
  43010. default: true
  43011. },
  43012. {
  43013. name: "Maximum",
  43014. height: math.unit(1500000000000, "lightyears")
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43020. {
  43021. front: {
  43022. height: math.unit(5 + 11/12, "feet"),
  43023. weight: math.unit(155, "lb"),
  43024. name: "Front",
  43025. image: {
  43026. source: "./media/characters/cai/front.svg",
  43027. extra: 1823/1702,
  43028. bottom: 32/1855
  43029. }
  43030. },
  43031. back: {
  43032. height: math.unit(5 + 11/12, "feet"),
  43033. weight: math.unit(155, "lb"),
  43034. name: "Back",
  43035. image: {
  43036. source: "./media/characters/cai/back.svg",
  43037. extra: 1809/1708,
  43038. bottom: 31/1840
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(5 + 11/12, "feet"),
  43046. default: true
  43047. },
  43048. {
  43049. name: "Big",
  43050. height: math.unit(15, "feet")
  43051. },
  43052. {
  43053. name: "Macro",
  43054. height: math.unit(200, "feet")
  43055. },
  43056. ]
  43057. ))
  43058. characterMakers.push(() => makeCharacter(
  43059. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43060. {
  43061. front: {
  43062. height: math.unit(5 + 6/12, "feet"),
  43063. weight: math.unit(160, "lb"),
  43064. name: "Front",
  43065. image: {
  43066. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43067. extra: 1227/1174,
  43068. bottom: 37/1264
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Macro",
  43075. height: math.unit(444, "meters"),
  43076. default: true
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(18 + 7/12, "feet"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/rex/front.svg",
  43088. extra: 1941/1807,
  43089. bottom: 66/2007
  43090. }
  43091. },
  43092. back: {
  43093. height: math.unit(18 + 7/12, "feet"),
  43094. name: "Back",
  43095. image: {
  43096. source: "./media/characters/rex/back.svg",
  43097. extra: 1937/1822,
  43098. bottom: 42/1979
  43099. }
  43100. },
  43101. boot: {
  43102. height: math.unit(3.45, "feet"),
  43103. name: "Boot",
  43104. image: {
  43105. source: "./media/characters/rex/boot.svg"
  43106. }
  43107. },
  43108. paw: {
  43109. height: math.unit(4.17, "feet"),
  43110. name: "Paw",
  43111. image: {
  43112. source: "./media/characters/rex/paw.svg"
  43113. }
  43114. },
  43115. head: {
  43116. height: math.unit(6.728, "feet"),
  43117. name: "Head",
  43118. image: {
  43119. source: "./media/characters/rex/head.svg"
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Nano",
  43126. height: math.unit(18 + 7/12, "feet")
  43127. },
  43128. {
  43129. name: "Micro",
  43130. height: math.unit(1.5, "megameters")
  43131. },
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(440, "megameters"),
  43135. default: true
  43136. },
  43137. {
  43138. name: "Macro",
  43139. height: math.unit(2.5, "gigameters")
  43140. },
  43141. {
  43142. name: "Gigamacro",
  43143. height: math.unit(2, "galaxies")
  43144. },
  43145. ]
  43146. ))
  43147. characterMakers.push(() => makeCharacter(
  43148. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43149. {
  43150. side: {
  43151. height: math.unit(32, "feet"),
  43152. weight: math.unit(250000, "lb"),
  43153. name: "Side",
  43154. image: {
  43155. source: "./media/characters/silverwing/side.svg",
  43156. extra: 1100/1019,
  43157. bottom: 204/1304
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Normal",
  43164. height: math.unit(32, "feet"),
  43165. default: true
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43171. {
  43172. front: {
  43173. height: math.unit(6 + 6/12, "feet"),
  43174. weight: math.unit(350, "lb"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/tristan-hawthorne/front.svg",
  43178. extra: 1159/1124,
  43179. bottom: 37/1196
  43180. },
  43181. form: "labrador",
  43182. default: true
  43183. },
  43184. skunkFront: {
  43185. height: math.unit(4 + 6/12, "feet"),
  43186. weight: math.unit(120, "lb"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43190. extra: 1609/1551,
  43191. bottom: 169/1778
  43192. },
  43193. form: "skunk",
  43194. default: true
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Normal",
  43200. height: math.unit(6 + 6/12, "feet"),
  43201. form: "labrador",
  43202. default: true
  43203. },
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(4 + 6/12, "feet"),
  43207. form: "skunk",
  43208. default: true
  43209. },
  43210. ],
  43211. {
  43212. "labrador": {
  43213. name: "Labrador",
  43214. default: true
  43215. },
  43216. "skunk": {
  43217. name: "Skunk"
  43218. }
  43219. }
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(5 + 11/12, "feet"),
  43226. weight: math.unit(190, "lb"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/mizu/front.svg",
  43230. extra: 1988/1788,
  43231. bottom: 14/2002
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Normal",
  43238. height: math.unit(5 + 11/12, "feet"),
  43239. default: true
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(1.7, "feet"),
  43248. weight: math.unit(50, "lb"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/dechroma/front.svg",
  43252. extra: 1095/859,
  43253. bottom: 64/1159
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Normal",
  43260. height: math.unit(1.7, "feet"),
  43261. default: true
  43262. },
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43267. {
  43268. side: {
  43269. height: math.unit(30, "feet"),
  43270. name: "Side",
  43271. image: {
  43272. source: "./media/characters/veluren-thanazel/side.svg",
  43273. extra: 1611/633,
  43274. bottom: 118/1729
  43275. }
  43276. },
  43277. front: {
  43278. height: math.unit(30, "feet"),
  43279. name: "Front",
  43280. image: {
  43281. source: "./media/characters/veluren-thanazel/front.svg",
  43282. extra: 1486/636,
  43283. bottom: 238/1724
  43284. }
  43285. },
  43286. head: {
  43287. height: math.unit(21.4, "feet"),
  43288. name: "Head",
  43289. image: {
  43290. source: "./media/characters/veluren-thanazel/head.svg"
  43291. }
  43292. },
  43293. genitals: {
  43294. height: math.unit(19.4, "feet"),
  43295. name: "Genitals",
  43296. image: {
  43297. source: "./media/characters/veluren-thanazel/genitals.svg"
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Social",
  43304. height: math.unit(6, "feet")
  43305. },
  43306. {
  43307. name: "Play",
  43308. height: math.unit(12, "feet")
  43309. },
  43310. {
  43311. name: "True",
  43312. height: math.unit(30, "feet"),
  43313. default: true
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(7 + 6/12, "feet"),
  43322. weight: math.unit(500, "kg"),
  43323. name: "Front",
  43324. image: {
  43325. source: "./media/characters/arcturas/front.svg",
  43326. extra: 1700/1500,
  43327. bottom: 145/1845
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(7 + 6/12, "feet"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43341. {
  43342. side: {
  43343. height: math.unit(6, "feet"),
  43344. weight: math.unit(2, "tons"),
  43345. name: "Side",
  43346. image: {
  43347. source: "./media/characters/vitaen/side.svg",
  43348. extra: 1157/617,
  43349. bottom: 122/1279
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Normal",
  43356. height: math.unit(6, "feet"),
  43357. default: true
  43358. },
  43359. ]
  43360. ))
  43361. characterMakers.push(() => makeCharacter(
  43362. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43363. {
  43364. front: {
  43365. height: math.unit(19, "feet"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/fia-dreamweaver/front.svg",
  43369. extra: 1630/1504,
  43370. bottom: 25/1655
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Normal",
  43377. height: math.unit(19, "feet"),
  43378. default: true
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43384. {
  43385. front: {
  43386. height: math.unit(5 + 4/12, "feet"),
  43387. name: "Front",
  43388. image: {
  43389. source: "./media/characters/artan/front.svg",
  43390. extra: 1618/1535,
  43391. bottom: 46/1664
  43392. }
  43393. },
  43394. back: {
  43395. height: math.unit(5 + 4/12, "feet"),
  43396. name: "Back",
  43397. image: {
  43398. source: "./media/characters/artan/back.svg",
  43399. extra: 1618/1543,
  43400. bottom: 31/1649
  43401. }
  43402. },
  43403. },
  43404. [
  43405. {
  43406. name: "Normal",
  43407. height: math.unit(5 + 4/12, "feet"),
  43408. default: true
  43409. },
  43410. ]
  43411. ))
  43412. characterMakers.push(() => makeCharacter(
  43413. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43414. {
  43415. side: {
  43416. height: math.unit(182, "cm"),
  43417. weight: math.unit(1000, "lb"),
  43418. name: "Side",
  43419. image: {
  43420. source: "./media/characters/silver-dragon/side.svg",
  43421. extra: 710/287,
  43422. bottom: 88/798
  43423. }
  43424. },
  43425. },
  43426. [
  43427. {
  43428. name: "Normal",
  43429. height: math.unit(182, "cm"),
  43430. default: true
  43431. },
  43432. ]
  43433. ))
  43434. characterMakers.push(() => makeCharacter(
  43435. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43436. {
  43437. side: {
  43438. height: math.unit(6 + 6/12, "feet"),
  43439. weight: math.unit(1.5, "tons"),
  43440. name: "Side",
  43441. image: {
  43442. source: "./media/characters/zephyr/side.svg",
  43443. extra: 1433/586,
  43444. bottom: 109/1542
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(6 + 6/12, "feet"),
  43452. default: true
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43458. {
  43459. side: {
  43460. height: math.unit(1, "feet"),
  43461. name: "Side",
  43462. image: {
  43463. source: "./media/characters/vixye/side.svg",
  43464. extra: 632/541,
  43465. bottom: 0/632
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Normal",
  43472. height: math.unit(1, "feet"),
  43473. default: true
  43474. },
  43475. {
  43476. name: "True",
  43477. height: math.unit(1e15, "multiverses")
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(8 + 2/12, "feet"),
  43486. weight: math.unit(650, "lb"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43490. extra: 1174/1137,
  43491. bottom: 82/1256
  43492. }
  43493. },
  43494. back: {
  43495. height: math.unit(8 + 2/12, "feet"),
  43496. weight: math.unit(650, "lb"),
  43497. name: "Back",
  43498. image: {
  43499. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43500. extra: 1204/1157,
  43501. bottom: 46/1250
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Wildform",
  43508. height: math.unit(8 + 2/12, "feet"),
  43509. default: true
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(18, "feet"),
  43518. name: "Front",
  43519. image: {
  43520. source: "./media/characters/cyphin/front.svg",
  43521. extra: 970/886,
  43522. bottom: 42/1012
  43523. }
  43524. },
  43525. back: {
  43526. height: math.unit(18, "feet"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/cyphin/back.svg",
  43530. extra: 1009/894,
  43531. bottom: 24/1033
  43532. }
  43533. },
  43534. head: {
  43535. height: math.unit(5.05, "feet"),
  43536. name: "Head",
  43537. image: {
  43538. source: "./media/characters/cyphin/head.svg"
  43539. }
  43540. },
  43541. tailbud: {
  43542. height: math.unit(5, "feet"),
  43543. name: "Tailbud",
  43544. image: {
  43545. source: "./media/characters/cyphin/tailbud.svg"
  43546. }
  43547. },
  43548. },
  43549. [
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43554. {
  43555. side: {
  43556. height: math.unit(10, "feet"),
  43557. weight: math.unit(6, "tons"),
  43558. name: "Side",
  43559. image: {
  43560. source: "./media/characters/raijin/side.svg",
  43561. extra: 1529/613,
  43562. bottom: 337/1866
  43563. }
  43564. },
  43565. },
  43566. [
  43567. {
  43568. name: "Normal",
  43569. height: math.unit(10, "feet"),
  43570. default: true
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43576. {
  43577. side: {
  43578. height: math.unit(9, "feet"),
  43579. name: "Side",
  43580. image: {
  43581. source: "./media/characters/nilghais/side.svg",
  43582. extra: 1047/744,
  43583. bottom: 91/1138
  43584. }
  43585. },
  43586. head: {
  43587. height: math.unit(3.14, "feet"),
  43588. name: "Head",
  43589. image: {
  43590. source: "./media/characters/nilghais/head.svg"
  43591. }
  43592. },
  43593. mouth: {
  43594. height: math.unit(4.6, "feet"),
  43595. name: "Mouth",
  43596. image: {
  43597. source: "./media/characters/nilghais/mouth.svg"
  43598. }
  43599. },
  43600. wings: {
  43601. height: math.unit(24, "feet"),
  43602. name: "Wings",
  43603. image: {
  43604. source: "./media/characters/nilghais/wings.svg"
  43605. }
  43606. },
  43607. ass: {
  43608. height: math.unit(6.12, "feet"),
  43609. name: "Ass",
  43610. image: {
  43611. source: "./media/characters/nilghais/ass.svg"
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(9, "feet"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43625. {
  43626. regular: {
  43627. height: math.unit(16 + 2/12, "feet"),
  43628. weight: math.unit(2300, "lb"),
  43629. name: "Regular",
  43630. image: {
  43631. source: "./media/characters/zolgar/regular.svg",
  43632. extra: 1246/1004,
  43633. bottom: 124/1370
  43634. }
  43635. },
  43636. boxers: {
  43637. height: math.unit(16 + 2/12, "feet"),
  43638. weight: math.unit(2300, "lb"),
  43639. name: "Boxers",
  43640. image: {
  43641. source: "./media/characters/zolgar/boxers.svg",
  43642. extra: 1246/1004,
  43643. bottom: 124/1370
  43644. }
  43645. },
  43646. armored: {
  43647. height: math.unit(16 + 2/12, "feet"),
  43648. weight: math.unit(2300, "lb"),
  43649. name: "Armored",
  43650. image: {
  43651. source: "./media/characters/zolgar/armored.svg",
  43652. extra: 1246/1004,
  43653. bottom: 124/1370
  43654. }
  43655. },
  43656. goth: {
  43657. height: math.unit(16 + 2/12, "feet"),
  43658. weight: math.unit(2300, "lb"),
  43659. name: "Goth",
  43660. image: {
  43661. source: "./media/characters/zolgar/goth.svg",
  43662. extra: 1246/1004,
  43663. bottom: 124/1370
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Shrunken Down",
  43670. height: math.unit(9 + 2/12, "feet")
  43671. },
  43672. {
  43673. name: "Normal",
  43674. height: math.unit(16 + 2/12, "feet"),
  43675. default: true
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43681. {
  43682. front: {
  43683. height: math.unit(6, "feet"),
  43684. weight: math.unit(168, "lb"),
  43685. name: "Front",
  43686. image: {
  43687. source: "./media/characters/luca/front.svg",
  43688. extra: 841/667,
  43689. bottom: 102/943
  43690. }
  43691. },
  43692. },
  43693. [
  43694. {
  43695. name: "Normal",
  43696. height: math.unit(6, "feet"),
  43697. default: true
  43698. },
  43699. ]
  43700. ))
  43701. characterMakers.push(() => makeCharacter(
  43702. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43703. {
  43704. side: {
  43705. height: math.unit(7 + 3/12, "feet"),
  43706. weight: math.unit(312, "lb"),
  43707. name: "Side",
  43708. image: {
  43709. source: "./media/characters/zezo/side.svg",
  43710. extra: 1192/1067,
  43711. bottom: 63/1255
  43712. }
  43713. },
  43714. },
  43715. [
  43716. {
  43717. name: "Normal",
  43718. height: math.unit(7 + 3/12, "feet"),
  43719. default: true
  43720. },
  43721. ]
  43722. ))
  43723. characterMakers.push(() => makeCharacter(
  43724. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43725. {
  43726. front: {
  43727. height: math.unit(5 + 5/12, "feet"),
  43728. weight: math.unit(170, "lb"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/mayso/front.svg",
  43732. extra: 1215/1108,
  43733. bottom: 16/1231
  43734. }
  43735. },
  43736. },
  43737. [
  43738. {
  43739. name: "Normal",
  43740. height: math.unit(5 + 5/12, "feet"),
  43741. default: true
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43747. {
  43748. front: {
  43749. height: math.unit(4 + 3/12, "feet"),
  43750. weight: math.unit(80, "lb"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/hess/front.svg",
  43754. extra: 1200/1123,
  43755. bottom: 16/1216
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(4 + 3/12, "feet"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43769. {
  43770. front: {
  43771. height: math.unit(1.9, "meters"),
  43772. name: "Front",
  43773. image: {
  43774. source: "./media/characters/ashgar/front.svg",
  43775. extra: 1177/1146,
  43776. bottom: 99/1276
  43777. }
  43778. },
  43779. back: {
  43780. height: math.unit(1.9, "meters"),
  43781. name: "Back",
  43782. image: {
  43783. source: "./media/characters/ashgar/back.svg",
  43784. extra: 1201/1183,
  43785. bottom: 53/1254
  43786. }
  43787. },
  43788. feral: {
  43789. height: math.unit(1.4, "meters"),
  43790. name: "Feral",
  43791. image: {
  43792. source: "./media/characters/ashgar/feral.svg",
  43793. extra: 370/345,
  43794. bottom: 45/415
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Normal",
  43801. height: math.unit(1.9, "meters"),
  43802. default: true
  43803. },
  43804. ]
  43805. ))
  43806. characterMakers.push(() => makeCharacter(
  43807. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43808. {
  43809. regular: {
  43810. height: math.unit(6, "feet"),
  43811. weight: math.unit(220, "lb"),
  43812. name: "Regular",
  43813. image: {
  43814. source: "./media/characters/phillip/regular.svg",
  43815. extra: 1373/1277,
  43816. bottom: 75/1448
  43817. }
  43818. },
  43819. dressed: {
  43820. height: math.unit(6, "feet"),
  43821. weight: math.unit(220, "lb"),
  43822. name: "Dressed",
  43823. image: {
  43824. source: "./media/characters/phillip/dressed.svg",
  43825. extra: 1373/1277,
  43826. bottom: 75/1448
  43827. }
  43828. },
  43829. paw: {
  43830. height: math.unit(1.44, "feet"),
  43831. name: "Paw",
  43832. image: {
  43833. source: "./media/characters/phillip/paw.svg"
  43834. }
  43835. },
  43836. },
  43837. [
  43838. {
  43839. name: "Normal",
  43840. height: math.unit(6, "feet"),
  43841. default: true
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43847. {
  43848. side: {
  43849. height: math.unit(42, "feet"),
  43850. name: "Side",
  43851. image: {
  43852. source: "./media/characters/uvula/side.svg",
  43853. extra: 683/586,
  43854. bottom: 60/743
  43855. }
  43856. },
  43857. front: {
  43858. height: math.unit(42, "feet"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/uvula/front.svg",
  43862. extra: 705/613,
  43863. bottom: 54/759
  43864. }
  43865. },
  43866. maw: {
  43867. height: math.unit(23.5, "feet"),
  43868. name: "Maw",
  43869. image: {
  43870. source: "./media/characters/uvula/maw.svg"
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Original Size",
  43877. height: math.unit(14, "inches")
  43878. },
  43879. {
  43880. name: "Human Size",
  43881. height: math.unit(6, "feet")
  43882. },
  43883. {
  43884. name: "Big",
  43885. height: math.unit(42, "feet"),
  43886. default: true
  43887. },
  43888. {
  43889. name: "Bigger",
  43890. height: math.unit(100, "feet")
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(5 + 11/12, "feet"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/lannah/front.svg",
  43902. extra: 1208/1113,
  43903. bottom: 97/1305
  43904. }
  43905. },
  43906. },
  43907. [
  43908. {
  43909. name: "Normal",
  43910. height: math.unit(5 + 11/12, "feet"),
  43911. default: true
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43917. {
  43918. front: {
  43919. height: math.unit(6 + 3/12, "feet"),
  43920. weight: math.unit(3.5, "tons"),
  43921. name: "Front",
  43922. image: {
  43923. source: "./media/characters/emberflame/front.svg",
  43924. extra: 1198/672,
  43925. bottom: 82/1280
  43926. }
  43927. },
  43928. side: {
  43929. height: math.unit(6 + 3/12, "feet"),
  43930. weight: math.unit(3.5, "tons"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/emberflame/side.svg",
  43934. extra: 938/527,
  43935. bottom: 56/994
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(6 + 3/12, "feet"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43949. {
  43950. side: {
  43951. height: math.unit(17.5, "feet"),
  43952. weight: math.unit(35, "tons"),
  43953. name: "Side",
  43954. image: {
  43955. source: "./media/characters/sophie-ambrose/side.svg",
  43956. extra: 1573/1242,
  43957. bottom: 71/1644
  43958. }
  43959. },
  43960. maw: {
  43961. height: math.unit(7.4, "feet"),
  43962. name: "Maw",
  43963. image: {
  43964. source: "./media/characters/sophie-ambrose/maw.svg"
  43965. }
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Normal",
  43971. height: math.unit(17.5, "feet"),
  43972. default: true
  43973. },
  43974. ]
  43975. ))
  43976. characterMakers.push(() => makeCharacter(
  43977. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43978. {
  43979. front: {
  43980. height: math.unit(280, "feet"),
  43981. weight: math.unit(550, "tons"),
  43982. name: "Front",
  43983. image: {
  43984. source: "./media/characters/king-mugi/front.svg",
  43985. extra: 1102/947,
  43986. bottom: 104/1206
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "King Mugi",
  43993. height: math.unit(280, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(64, "meters"),
  44003. name: "Front",
  44004. image: {
  44005. source: "./media/characters/nova-fox/front.svg",
  44006. extra: 1310/1246,
  44007. bottom: 65/1375
  44008. }
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Macro",
  44014. height: math.unit(64, "meters"),
  44015. default: true
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44021. {
  44022. front: {
  44023. height: math.unit(6 + 3/12, "feet"),
  44024. weight: math.unit(170, "lb"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/sam-bat/front.svg",
  44028. extra: 1601/1411,
  44029. bottom: 125/1726
  44030. }
  44031. },
  44032. back: {
  44033. height: math.unit(6 + 3/12, "feet"),
  44034. weight: math.unit(170, "lb"),
  44035. name: "Back",
  44036. image: {
  44037. source: "./media/characters/sam-bat/back.svg",
  44038. extra: 1577/1405,
  44039. bottom: 58/1635
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "Normal",
  44046. height: math.unit(6 + 3/12, "feet"),
  44047. default: true
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44053. {
  44054. front: {
  44055. height: math.unit(59, "feet"),
  44056. weight: math.unit(40000, "lb"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/inari/front.svg",
  44060. extra: 1884/1350,
  44061. bottom: 95/1979
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Gigantamax",
  44068. height: math.unit(59, "feet"),
  44069. default: true
  44070. },
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44075. {
  44076. front: {
  44077. height: math.unit(5 + 8/12, "feet"),
  44078. name: "Front",
  44079. image: {
  44080. source: "./media/characters/elizabeth/front.svg",
  44081. extra: 1395/1298,
  44082. bottom: 54/1449
  44083. }
  44084. },
  44085. mouth: {
  44086. height: math.unit(1.97, "feet"),
  44087. name: "Mouth",
  44088. image: {
  44089. source: "./media/characters/elizabeth/mouth.svg"
  44090. }
  44091. },
  44092. foot: {
  44093. height: math.unit(1.17, "feet"),
  44094. name: "Foot",
  44095. image: {
  44096. source: "./media/characters/elizabeth/foot.svg"
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(5 + 8/12, "feet"),
  44104. default: true
  44105. },
  44106. {
  44107. name: "Minimacro",
  44108. height: math.unit(18, "feet")
  44109. },
  44110. {
  44111. name: "Macro",
  44112. height: math.unit(180, "feet")
  44113. },
  44114. ]
  44115. ))
  44116. characterMakers.push(() => makeCharacter(
  44117. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44118. {
  44119. front: {
  44120. height: math.unit(5 + 2/12, "feet"),
  44121. name: "Front",
  44122. image: {
  44123. source: "./media/characters/october-gossamer/front.svg",
  44124. extra: 505/454,
  44125. bottom: 7/512
  44126. }
  44127. },
  44128. back: {
  44129. height: math.unit(5 + 2/12, "feet"),
  44130. name: "Back",
  44131. image: {
  44132. source: "./media/characters/october-gossamer/back.svg",
  44133. extra: 501/454,
  44134. bottom: 11/512
  44135. }
  44136. },
  44137. },
  44138. [
  44139. {
  44140. name: "Normal",
  44141. height: math.unit(5 + 2/12, "feet"),
  44142. default: true
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44148. {
  44149. front: {
  44150. height: math.unit(5, "feet"),
  44151. name: "Front",
  44152. image: {
  44153. source: "./media/characters/epiglottis/front.svg",
  44154. extra: 923/849,
  44155. bottom: 17/940
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Original Size",
  44162. height: math.unit(10, "inches")
  44163. },
  44164. {
  44165. name: "Human Size",
  44166. height: math.unit(5, "feet"),
  44167. default: true
  44168. },
  44169. {
  44170. name: "Big",
  44171. height: math.unit(25, "feet")
  44172. },
  44173. {
  44174. name: "Bigger",
  44175. height: math.unit(50, "feet")
  44176. },
  44177. {
  44178. name: "oh lawd",
  44179. height: math.unit(75, "feet")
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(2 + 4/12, "feet"),
  44188. weight: math.unit(60, "lb"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/lerm/front.svg",
  44192. extra: 796/790,
  44193. bottom: 79/875
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(2 + 4/12, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(5.5, "feet"),
  44210. weight: math.unit(130, "lb"),
  44211. name: "Front",
  44212. image: {
  44213. source: "./media/characters/xena-nebadon/front.svg",
  44214. extra: 1828/1730,
  44215. bottom: 79/1907
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Tiny Puppy",
  44222. height: math.unit(3, "inches")
  44223. },
  44224. {
  44225. name: "Normal",
  44226. height: math.unit(5.5, "feet"),
  44227. default: true
  44228. },
  44229. {
  44230. name: "Lotta Lady",
  44231. height: math.unit(12, "feet")
  44232. },
  44233. {
  44234. name: "Pretty Big",
  44235. height: math.unit(100, "feet")
  44236. },
  44237. {
  44238. name: "Big",
  44239. height: math.unit(500, "feet")
  44240. },
  44241. {
  44242. name: "Skyscraper Toys",
  44243. height: math.unit(2500, "feet")
  44244. },
  44245. {
  44246. name: "Plane Catcher",
  44247. height: math.unit(8, "miles")
  44248. },
  44249. {
  44250. name: "Planet Toys",
  44251. height: math.unit(15, "earths")
  44252. },
  44253. {
  44254. name: "Stardust",
  44255. height: math.unit(0.25, "galaxies")
  44256. },
  44257. {
  44258. name: "Snacks",
  44259. height: math.unit(70, "universes")
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44265. {
  44266. front: {
  44267. height: math.unit(1.6, "meters"),
  44268. weight: math.unit(60, "kg"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/bounty/front.svg",
  44272. extra: 1426/1308,
  44273. bottom: 15/1441
  44274. }
  44275. },
  44276. back: {
  44277. height: math.unit(1.6, "meters"),
  44278. weight: math.unit(60, "kg"),
  44279. name: "Back",
  44280. image: {
  44281. source: "./media/characters/bounty/back.svg",
  44282. extra: 1417/1307,
  44283. bottom: 8/1425
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(1.6, "meters"),
  44291. default: true
  44292. },
  44293. {
  44294. name: "Macro",
  44295. height: math.unit(300, "meters")
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44301. {
  44302. front: {
  44303. height: math.unit(2 + 8/12, "feet"),
  44304. weight: math.unit(15, "lb"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/mochi/front.svg",
  44308. extra: 1022/852,
  44309. bottom: 435/1457
  44310. }
  44311. },
  44312. back: {
  44313. height: math.unit(2 + 8/12, "feet"),
  44314. weight: math.unit(15, "lb"),
  44315. name: "Back",
  44316. image: {
  44317. source: "./media/characters/mochi/back.svg",
  44318. extra: 1335/1119,
  44319. bottom: 39/1374
  44320. }
  44321. },
  44322. bird: {
  44323. height: math.unit(2 + 8/12, "feet"),
  44324. weight: math.unit(15, "lb"),
  44325. name: "Bird",
  44326. image: {
  44327. source: "./media/characters/mochi/bird.svg",
  44328. extra: 1251/1113,
  44329. bottom: 178/1429
  44330. }
  44331. },
  44332. kaiju: {
  44333. height: math.unit(154, "feet"),
  44334. weight: math.unit(1e7, "lb"),
  44335. name: "Kaiju",
  44336. image: {
  44337. source: "./media/characters/mochi/kaiju.svg",
  44338. extra: 460/324,
  44339. bottom: 40/500
  44340. }
  44341. },
  44342. head: {
  44343. height: math.unit(1.21, "feet"),
  44344. name: "Head",
  44345. image: {
  44346. source: "./media/characters/mochi/head.svg"
  44347. }
  44348. },
  44349. alternateTail: {
  44350. height: math.unit(2 + 8/12, "feet"),
  44351. weight: math.unit(45, "lb"),
  44352. name: "Alternate Tail",
  44353. image: {
  44354. source: "./media/characters/mochi/alternate-tail.svg",
  44355. extra: 139/76,
  44356. bottom: 45/184
  44357. }
  44358. },
  44359. },
  44360. [
  44361. {
  44362. name: "Micro",
  44363. height: math.unit(2, "inches")
  44364. },
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(2 + 8/12, "feet"),
  44368. default: true
  44369. },
  44370. {
  44371. name: "Macro",
  44372. height: math.unit(106, "feet")
  44373. },
  44374. ]
  44375. ))
  44376. characterMakers.push(() => makeCharacter(
  44377. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44378. {
  44379. front: {
  44380. height: math.unit(5.67, "feet"),
  44381. weight: math.unit(135, "lb"),
  44382. name: "Front",
  44383. image: {
  44384. source: "./media/characters/sarel/front.svg",
  44385. extra: 865/788,
  44386. bottom: 97/962
  44387. }
  44388. },
  44389. back: {
  44390. height: math.unit(5.67, "feet"),
  44391. weight: math.unit(135, "lb"),
  44392. name: "Back",
  44393. image: {
  44394. source: "./media/characters/sarel/back.svg",
  44395. extra: 857/777,
  44396. bottom: 32/889
  44397. }
  44398. },
  44399. chozoan: {
  44400. height: math.unit(5.67, "feet"),
  44401. weight: math.unit(135, "lb"),
  44402. name: "Chozoan",
  44403. image: {
  44404. source: "./media/characters/sarel/chozoan.svg",
  44405. extra: 865/788,
  44406. bottom: 97/962
  44407. }
  44408. },
  44409. current: {
  44410. height: math.unit(5.67, "feet"),
  44411. weight: math.unit(135, "lb"),
  44412. name: "Current",
  44413. image: {
  44414. source: "./media/characters/sarel/current.svg",
  44415. extra: 865/788,
  44416. bottom: 97/962
  44417. }
  44418. },
  44419. head: {
  44420. height: math.unit(1.77, "feet"),
  44421. name: "Head",
  44422. image: {
  44423. source: "./media/characters/sarel/head.svg"
  44424. }
  44425. },
  44426. claws: {
  44427. height: math.unit(1.8, "feet"),
  44428. name: "Claws",
  44429. image: {
  44430. source: "./media/characters/sarel/claws.svg"
  44431. }
  44432. },
  44433. clawsAlt: {
  44434. height: math.unit(1.8, "feet"),
  44435. name: "Claws-alt",
  44436. image: {
  44437. source: "./media/characters/sarel/claws-alt.svg"
  44438. }
  44439. },
  44440. },
  44441. [
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(5.67, "feet"),
  44445. default: true
  44446. },
  44447. ]
  44448. ))
  44449. characterMakers.push(() => makeCharacter(
  44450. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44451. {
  44452. front: {
  44453. height: math.unit(5500, "feet"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/alyonia/front.svg",
  44457. extra: 1200/1135,
  44458. bottom: 29/1229
  44459. }
  44460. },
  44461. back: {
  44462. height: math.unit(5500, "feet"),
  44463. name: "Back",
  44464. image: {
  44465. source: "./media/characters/alyonia/back.svg",
  44466. extra: 1205/1138,
  44467. bottom: 10/1215
  44468. }
  44469. },
  44470. },
  44471. [
  44472. {
  44473. name: "Small",
  44474. height: math.unit(10, "feet")
  44475. },
  44476. {
  44477. name: "Macro",
  44478. height: math.unit(500, "feet")
  44479. },
  44480. {
  44481. name: "Mega Macro",
  44482. height: math.unit(5500, "feet"),
  44483. default: true
  44484. },
  44485. {
  44486. name: "Mega Macro+",
  44487. height: math.unit(500000, "feet")
  44488. },
  44489. {
  44490. name: "Giga Macro",
  44491. height: math.unit(3000, "miles")
  44492. },
  44493. {
  44494. name: "Tera Macro",
  44495. height: math.unit(2.8e6, "miles")
  44496. },
  44497. {
  44498. name: "Galactic",
  44499. height: math.unit(120000, "lightyears")
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44505. {
  44506. werewolf: {
  44507. height: math.unit(8, "feet"),
  44508. weight: math.unit(425, "lb"),
  44509. name: "Werewolf",
  44510. image: {
  44511. source: "./media/characters/autumn/werewolf.svg",
  44512. extra: 2154/2031,
  44513. bottom: 160/2314
  44514. }
  44515. },
  44516. human: {
  44517. height: math.unit(5 + 8/12, "feet"),
  44518. weight: math.unit(150, "lb"),
  44519. name: "Human",
  44520. image: {
  44521. source: "./media/characters/autumn/human.svg",
  44522. extra: 1200/1149,
  44523. bottom: 30/1230
  44524. }
  44525. },
  44526. },
  44527. [
  44528. {
  44529. name: "Normal",
  44530. height: math.unit(8, "feet"),
  44531. default: true
  44532. },
  44533. ]
  44534. ))
  44535. characterMakers.push(() => makeCharacter(
  44536. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44537. {
  44538. front: {
  44539. height: math.unit(8 + 5/12, "feet"),
  44540. weight: math.unit(825, "lb"),
  44541. name: "Front",
  44542. image: {
  44543. source: "./media/characters/cobalt-charizard/front.svg",
  44544. extra: 1268/1155,
  44545. bottom: 122/1390
  44546. }
  44547. },
  44548. side: {
  44549. height: math.unit(8 + 5/12, "feet"),
  44550. weight: math.unit(825, "lb"),
  44551. name: "Side",
  44552. image: {
  44553. source: "./media/characters/cobalt-charizard/side.svg",
  44554. extra: 1348/1257,
  44555. bottom: 58/1406
  44556. }
  44557. },
  44558. gMax: {
  44559. height: math.unit(134 + 11/12, "feet"),
  44560. name: "G-Max",
  44561. image: {
  44562. source: "./media/characters/cobalt-charizard/g-max.svg",
  44563. extra: 1835/1541,
  44564. bottom: 151/1986
  44565. }
  44566. },
  44567. },
  44568. [
  44569. {
  44570. name: "Normal",
  44571. height: math.unit(8 + 5/12, "feet"),
  44572. default: true
  44573. },
  44574. ]
  44575. ))
  44576. characterMakers.push(() => makeCharacter(
  44577. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44578. {
  44579. front: {
  44580. height: math.unit(6 + 3/12, "feet"),
  44581. weight: math.unit(210, "lb"),
  44582. name: "Front",
  44583. image: {
  44584. source: "./media/characters/stella/front.svg",
  44585. extra: 3549/3335,
  44586. bottom: 51/3600
  44587. }
  44588. },
  44589. },
  44590. [
  44591. {
  44592. name: "Normal",
  44593. height: math.unit(6 + 3/12, "feet"),
  44594. default: true
  44595. },
  44596. ]
  44597. ))
  44598. characterMakers.push(() => makeCharacter(
  44599. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44600. {
  44601. front: {
  44602. height: math.unit(5, "feet"),
  44603. weight: math.unit(90, "lb"),
  44604. name: "Front",
  44605. image: {
  44606. source: "./media/characters/riley-bishop/front.svg",
  44607. extra: 1450/1428,
  44608. bottom: 152/1602
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(5, "feet"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44622. {
  44623. side: {
  44624. height: math.unit(8 + 2/12, "feet"),
  44625. weight: math.unit(500, "kg"),
  44626. name: "Side",
  44627. image: {
  44628. source: "./media/characters/theo-arcanine/side.svg",
  44629. extra: 1342/1074,
  44630. bottom: 111/1453
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Normal",
  44637. height: math.unit(8 + 2/12, "feet"),
  44638. default: true
  44639. },
  44640. ]
  44641. ))
  44642. characterMakers.push(() => makeCharacter(
  44643. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44644. {
  44645. front: {
  44646. height: math.unit(4, "feet"),
  44647. name: "Front",
  44648. image: {
  44649. source: "./media/characters/kali/front.svg",
  44650. extra: 1921/1357,
  44651. bottom: 70/1991
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Normal",
  44658. height: math.unit(4, "feet"),
  44659. default: true
  44660. },
  44661. {
  44662. name: "Macro",
  44663. height: math.unit(32, "meters")
  44664. },
  44665. {
  44666. name: "Macro+",
  44667. height: math.unit(150, "meters")
  44668. },
  44669. {
  44670. name: "Megamacro",
  44671. height: math.unit(7500, "meters")
  44672. },
  44673. {
  44674. name: "Megamacro+",
  44675. height: math.unit(80, "kilometers")
  44676. },
  44677. ]
  44678. ))
  44679. characterMakers.push(() => makeCharacter(
  44680. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44681. {
  44682. side: {
  44683. height: math.unit(5 + 11/12, "feet"),
  44684. weight: math.unit(236, "lb"),
  44685. name: "Side",
  44686. image: {
  44687. source: "./media/characters/gapp/side.svg",
  44688. extra: 775/340,
  44689. bottom: 58/833
  44690. }
  44691. },
  44692. mouth: {
  44693. height: math.unit(2.98, "feet"),
  44694. name: "Mouth",
  44695. image: {
  44696. source: "./media/characters/gapp/mouth.svg"
  44697. }
  44698. },
  44699. },
  44700. [
  44701. {
  44702. name: "Normal",
  44703. height: math.unit(5 + 1/12, "feet"),
  44704. default: true
  44705. },
  44706. ]
  44707. ))
  44708. characterMakers.push(() => makeCharacter(
  44709. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44710. {
  44711. front: {
  44712. height: math.unit(6, "feet"),
  44713. name: "Front",
  44714. image: {
  44715. source: "./media/characters/persephone/front.svg",
  44716. extra: 1895/1717,
  44717. bottom: 96/1991
  44718. }
  44719. },
  44720. back: {
  44721. height: math.unit(6, "feet"),
  44722. name: "Back",
  44723. image: {
  44724. source: "./media/characters/persephone/back.svg",
  44725. extra: 1868/1679,
  44726. bottom: 26/1894
  44727. }
  44728. },
  44729. casual: {
  44730. height: math.unit(6, "feet"),
  44731. name: "Casual",
  44732. image: {
  44733. source: "./media/characters/persephone/casual.svg",
  44734. extra: 1713/1541,
  44735. bottom: 76/1789
  44736. }
  44737. },
  44738. },
  44739. [
  44740. {
  44741. name: "Human Size",
  44742. height: math.unit(6, "feet")
  44743. },
  44744. {
  44745. name: "Big Steppy",
  44746. height: math.unit(600, "meters"),
  44747. default: true
  44748. },
  44749. {
  44750. name: "Galaxy Brain",
  44751. height: math.unit(1, "zettameter")
  44752. },
  44753. ]
  44754. ))
  44755. characterMakers.push(() => makeCharacter(
  44756. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44757. {
  44758. front: {
  44759. height: math.unit(1.85, "meters"),
  44760. name: "Front",
  44761. image: {
  44762. source: "./media/characters/riley-foxthing/front.svg",
  44763. extra: 1495/1354,
  44764. bottom: 122/1617
  44765. }
  44766. },
  44767. frontAlt: {
  44768. height: math.unit(1.85, "meters"),
  44769. name: "Front (Alt)",
  44770. image: {
  44771. source: "./media/characters/riley-foxthing/front-alt.svg",
  44772. extra: 1572/1389,
  44773. bottom: 116/1688
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal Sized",
  44780. height: math.unit(1.85, "meters"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Quite Sizable",
  44785. height: math.unit(5, "meters")
  44786. },
  44787. {
  44788. name: "Rather Large",
  44789. height: math.unit(20, "meters")
  44790. },
  44791. {
  44792. name: "Macro",
  44793. height: math.unit(450, "meters")
  44794. },
  44795. {
  44796. name: "Giga",
  44797. height: math.unit(5, "km")
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(6, "feet"),
  44806. weight: math.unit(200, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/blizzard/front.svg",
  44810. extra: 1136/990,
  44811. bottom: 136/1272
  44812. }
  44813. },
  44814. back: {
  44815. height: math.unit(6, "feet"),
  44816. weight: math.unit(200, "lb"),
  44817. name: "Back",
  44818. image: {
  44819. source: "./media/characters/blizzard/back.svg",
  44820. extra: 1175/1034,
  44821. bottom: 97/1272
  44822. }
  44823. },
  44824. sitting: {
  44825. height: math.unit(3.725, "feet"),
  44826. weight: math.unit(200, "lb"),
  44827. name: "Sitting",
  44828. image: {
  44829. source: "./media/characters/blizzard/sitting.svg",
  44830. extra: 581/485,
  44831. bottom: 90/671
  44832. }
  44833. },
  44834. frontWizard: {
  44835. height: math.unit(7.9, "feet"),
  44836. weight: math.unit(200, "lb"),
  44837. name: "Front (Wizard)",
  44838. image: {
  44839. source: "./media/characters/blizzard/front-wizard.svg"
  44840. }
  44841. },
  44842. backWizard: {
  44843. height: math.unit(7.9, "feet"),
  44844. weight: math.unit(200, "lb"),
  44845. name: "Back (Wizard)",
  44846. image: {
  44847. source: "./media/characters/blizzard/back-wizard.svg"
  44848. }
  44849. },
  44850. frontNsfw: {
  44851. height: math.unit(6, "feet"),
  44852. weight: math.unit(200, "lb"),
  44853. name: "Front (NSFW)",
  44854. image: {
  44855. source: "./media/characters/blizzard/front-nsfw.svg",
  44856. extra: 1136/990,
  44857. bottom: 136/1272
  44858. }
  44859. },
  44860. backNsfw: {
  44861. height: math.unit(6, "feet"),
  44862. weight: math.unit(200, "lb"),
  44863. name: "Back (NSFW)",
  44864. image: {
  44865. source: "./media/characters/blizzard/back-nsfw.svg",
  44866. extra: 1175/1034,
  44867. bottom: 97/1272
  44868. }
  44869. },
  44870. sittingNsfw: {
  44871. height: math.unit(3.725, "feet"),
  44872. weight: math.unit(200, "lb"),
  44873. name: "Sitting (NSFW)",
  44874. image: {
  44875. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44876. extra: 581/485,
  44877. bottom: 90/671
  44878. }
  44879. },
  44880. wizardFrontNsfw: {
  44881. height: math.unit(7.9, "feet"),
  44882. weight: math.unit(200, "lb"),
  44883. name: "Wizard (Front, NSFW)",
  44884. image: {
  44885. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44886. }
  44887. },
  44888. },
  44889. [
  44890. {
  44891. name: "Normal",
  44892. height: math.unit(6, "feet"),
  44893. default: true
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44899. {
  44900. front: {
  44901. height: math.unit(5 + 2/12, "feet"),
  44902. name: "Front",
  44903. image: {
  44904. source: "./media/characters/lumi/front.svg",
  44905. extra: 1328/1268,
  44906. bottom: 103/1431
  44907. }
  44908. },
  44909. back: {
  44910. height: math.unit(5 + 2/12, "feet"),
  44911. name: "Back",
  44912. image: {
  44913. source: "./media/characters/lumi/back.svg",
  44914. extra: 1381/1327,
  44915. bottom: 43/1424
  44916. }
  44917. },
  44918. },
  44919. [
  44920. {
  44921. name: "Normal",
  44922. height: math.unit(5 + 2/12, "feet"),
  44923. default: true
  44924. },
  44925. ]
  44926. ))
  44927. characterMakers.push(() => makeCharacter(
  44928. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44929. {
  44930. front: {
  44931. height: math.unit(5 + 9/12, "feet"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/aliya-cotton/front.svg",
  44935. extra: 577/564,
  44936. bottom: 29/606
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Normal",
  44943. height: math.unit(5 + 9/12, "feet"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44950. {
  44951. front: {
  44952. height: math.unit(2.7, "meters"),
  44953. weight: math.unit(25000, "lb"),
  44954. name: "Front",
  44955. image: {
  44956. source: "./media/characters/noah-luxray/front.svg",
  44957. extra: 1644/825,
  44958. bottom: 339/1983
  44959. }
  44960. },
  44961. side: {
  44962. height: math.unit(2.97, "meters"),
  44963. weight: math.unit(25000, "lb"),
  44964. name: "Side",
  44965. image: {
  44966. source: "./media/characters/noah-luxray/side.svg",
  44967. extra: 1319/650,
  44968. bottom: 163/1482
  44969. }
  44970. },
  44971. dick: {
  44972. height: math.unit(7.4, "feet"),
  44973. weight: math.unit(2500, "lb"),
  44974. name: "Dick",
  44975. image: {
  44976. source: "./media/characters/noah-luxray/dick.svg"
  44977. }
  44978. },
  44979. dickAlt: {
  44980. height: math.unit(10.83, "feet"),
  44981. weight: math.unit(2500, "lb"),
  44982. name: "Dick-alt",
  44983. image: {
  44984. source: "./media/characters/noah-luxray/dick-alt.svg"
  44985. }
  44986. },
  44987. },
  44988. [
  44989. {
  44990. name: "BIG",
  44991. height: math.unit(2.7, "meters"),
  44992. default: true
  44993. },
  44994. ]
  44995. ))
  44996. characterMakers.push(() => makeCharacter(
  44997. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44998. {
  44999. standing: {
  45000. height: math.unit(183, "cm"),
  45001. weight: math.unit(68, "kg"),
  45002. name: "Standing",
  45003. image: {
  45004. source: "./media/characters/arion/standing.svg",
  45005. extra: 1869/1807,
  45006. bottom: 93/1962
  45007. }
  45008. },
  45009. reclining: {
  45010. height: math.unit(70.5, "cm"),
  45011. weight: math.unit(68, "lb"),
  45012. name: "Reclining",
  45013. image: {
  45014. source: "./media/characters/arion/reclining.svg",
  45015. extra: 937/870,
  45016. bottom: 63/1000
  45017. }
  45018. },
  45019. },
  45020. [
  45021. {
  45022. name: "Colossus Size, Low",
  45023. height: math.unit(33, "meters"),
  45024. default: true
  45025. },
  45026. {
  45027. name: "Colossus Size, Mid",
  45028. height: math.unit(52, "meters")
  45029. },
  45030. {
  45031. name: "Colossus Size, High",
  45032. height: math.unit(60, "meters")
  45033. },
  45034. {
  45035. name: "Titan Size, Low",
  45036. height: math.unit(91, "meters"),
  45037. },
  45038. {
  45039. name: "Titan Size, Mid",
  45040. height: math.unit(122, "meters")
  45041. },
  45042. {
  45043. name: "Titan Size, High",
  45044. height: math.unit(162, "meters")
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(53, "meters"),
  45053. name: "Front",
  45054. image: {
  45055. source: "./media/characters/stellar-marbey/front.svg",
  45056. extra: 1913/1805,
  45057. bottom: 92/2005
  45058. }
  45059. },
  45060. back: {
  45061. height: math.unit(53, "meters"),
  45062. name: "Back",
  45063. image: {
  45064. source: "./media/characters/stellar-marbey/back.svg",
  45065. extra: 1960/1851,
  45066. bottom: 28/1988
  45067. }
  45068. },
  45069. mouth: {
  45070. height: math.unit(3.5, "meters"),
  45071. name: "Mouth",
  45072. image: {
  45073. source: "./media/characters/stellar-marbey/mouth.svg"
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Macro",
  45080. height: math.unit(53, "meters"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45087. {
  45088. front: {
  45089. height: math.unit(8 + 1/12, "feet"),
  45090. weight: math.unit(233, "lb"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/matsu/front.svg",
  45094. extra: 832/772,
  45095. bottom: 40/872
  45096. }
  45097. },
  45098. back: {
  45099. height: math.unit(8 + 1/12, "feet"),
  45100. weight: math.unit(233, "lb"),
  45101. name: "Back",
  45102. image: {
  45103. source: "./media/characters/matsu/back.svg",
  45104. extra: 839/780,
  45105. bottom: 47/886
  45106. }
  45107. },
  45108. },
  45109. [
  45110. {
  45111. name: "Normal",
  45112. height: math.unit(8 + 1/12, "feet"),
  45113. default: true
  45114. },
  45115. ]
  45116. ))
  45117. characterMakers.push(() => makeCharacter(
  45118. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45119. {
  45120. front: {
  45121. height: math.unit(4, "feet"),
  45122. weight: math.unit(148, "lb"),
  45123. name: "Front",
  45124. image: {
  45125. source: "./media/characters/thiz/front.svg",
  45126. extra: 1913/1748,
  45127. bottom: 62/1975
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(4, "feet"),
  45135. default: true
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(7 + 6/12, "feet"),
  45144. weight: math.unit(267, "lb"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/marcel/front.svg",
  45148. extra: 1221/1096,
  45149. bottom: 76/1297
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(7 + 6/12, "feet"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45163. {
  45164. side: {
  45165. height: math.unit(42, "meters"),
  45166. name: "Side",
  45167. image: {
  45168. source: "./media/characters/flake/side.svg",
  45169. extra: 1525/1306,
  45170. bottom: 209/1734
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Normal",
  45177. height: math.unit(42, "meters"),
  45178. default: true
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45184. {
  45185. dressed: {
  45186. height: math.unit(6 + 4/12, "feet"),
  45187. weight: math.unit(520, "lb"),
  45188. name: "Dressed",
  45189. image: {
  45190. source: "./media/characters/someonne/dressed.svg",
  45191. extra: 1020/1010,
  45192. bottom: 178/1198
  45193. }
  45194. },
  45195. undressed: {
  45196. height: math.unit(6 + 4/12, "feet"),
  45197. weight: math.unit(520, "lb"),
  45198. name: "Undressed",
  45199. image: {
  45200. source: "./media/characters/someonne/undressed.svg",
  45201. extra: 1019/1014,
  45202. bottom: 169/1188
  45203. }
  45204. },
  45205. },
  45206. [
  45207. {
  45208. name: "Normal",
  45209. height: math.unit(6 + 4/12, "feet"),
  45210. default: true
  45211. },
  45212. ]
  45213. ))
  45214. characterMakers.push(() => makeCharacter(
  45215. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45216. {
  45217. front: {
  45218. height: math.unit(3, "feet"),
  45219. weight: math.unit(30, "lb"),
  45220. name: "Front",
  45221. image: {
  45222. source: "./media/characters/till/front.svg",
  45223. extra: 892/823,
  45224. bottom: 55/947
  45225. }
  45226. },
  45227. },
  45228. [
  45229. {
  45230. name: "Normal",
  45231. height: math.unit(3, "feet"),
  45232. default: true
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45238. {
  45239. front: {
  45240. height: math.unit(9 + 8/12, "feet"),
  45241. weight: math.unit(800, "lb"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/sydney-heki/front.svg",
  45245. extra: 1360/1300,
  45246. bottom: 22/1382
  45247. }
  45248. },
  45249. back: {
  45250. height: math.unit(9 + 8/12, "feet"),
  45251. weight: math.unit(800, "lb"),
  45252. name: "Back",
  45253. image: {
  45254. source: "./media/characters/sydney-heki/back.svg",
  45255. extra: 1356/1293,
  45256. bottom: 12/1368
  45257. }
  45258. },
  45259. frontDressed: {
  45260. height: math.unit(9 + 8/12, "feet"),
  45261. weight: math.unit(800, "lb"),
  45262. name: "Front-dressed",
  45263. image: {
  45264. source: "./media/characters/sydney-heki/front-dressed.svg",
  45265. extra: 1360/1300,
  45266. bottom: 22/1382
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(9 + 8/12, "feet"),
  45274. default: true
  45275. },
  45276. {
  45277. name: "Macro",
  45278. height: math.unit(500, "feet")
  45279. },
  45280. {
  45281. name: "Megamacro",
  45282. height: math.unit(3.6, "miles")
  45283. },
  45284. ]
  45285. ))
  45286. characterMakers.push(() => makeCharacter(
  45287. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45288. {
  45289. front: {
  45290. height: math.unit(200, "cm"),
  45291. weight: math.unit(250, "lb"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/fowler-karlsson/front.svg",
  45295. extra: 897/845,
  45296. bottom: 123/1020
  45297. }
  45298. },
  45299. back: {
  45300. height: math.unit(200, "cm"),
  45301. weight: math.unit(250, "lb"),
  45302. name: "Back",
  45303. image: {
  45304. source: "./media/characters/fowler-karlsson/back.svg",
  45305. extra: 999/944,
  45306. bottom: 26/1025
  45307. }
  45308. },
  45309. dick: {
  45310. height: math.unit(1.92, "feet"),
  45311. weight: math.unit(150, "lb"),
  45312. name: "Dick",
  45313. image: {
  45314. source: "./media/characters/fowler-karlsson/dick.svg"
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Normal",
  45321. height: math.unit(200, "cm"),
  45322. default: true
  45323. },
  45324. {
  45325. name: "Smaller Macro",
  45326. height: math.unit(90, "m")
  45327. },
  45328. {
  45329. name: "Macro",
  45330. height: math.unit(150, "m")
  45331. },
  45332. {
  45333. name: "Bigger Macro",
  45334. height: math.unit(300, "m")
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45340. {
  45341. side: {
  45342. height: math.unit(8 + 2/12, "feet"),
  45343. weight: math.unit(1, "tonne"),
  45344. name: "Side",
  45345. image: {
  45346. source: "./media/characters/rylide/side.svg",
  45347. extra: 1318/1034,
  45348. bottom: 106/1424
  45349. }
  45350. },
  45351. sitting: {
  45352. height: math.unit(303, "cm"),
  45353. weight: math.unit(1, "tonne"),
  45354. name: "Sitting",
  45355. image: {
  45356. source: "./media/characters/rylide/sitting.svg",
  45357. extra: 1303/1103,
  45358. bottom: 36/1339
  45359. }
  45360. },
  45361. },
  45362. [
  45363. {
  45364. name: "Normal",
  45365. height: math.unit(8 + 2/12, "feet"),
  45366. default: true
  45367. },
  45368. ]
  45369. ))
  45370. characterMakers.push(() => makeCharacter(
  45371. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45372. {
  45373. front: {
  45374. height: math.unit(5 + 10/12, "feet"),
  45375. weight: math.unit(160, "lb"),
  45376. name: "Front",
  45377. image: {
  45378. source: "./media/characters/pudask/front.svg",
  45379. extra: 1616/1590,
  45380. bottom: 161/1777
  45381. }
  45382. },
  45383. },
  45384. [
  45385. {
  45386. name: "Ferret Height",
  45387. height: math.unit(2 + 5/12, "feet")
  45388. },
  45389. {
  45390. name: "Canon Height",
  45391. height: math.unit(5 + 10/12, "feet"),
  45392. default: true
  45393. },
  45394. ]
  45395. ))
  45396. characterMakers.push(() => makeCharacter(
  45397. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45398. {
  45399. front: {
  45400. height: math.unit(3 + 6/12, "feet"),
  45401. weight: math.unit(60, "lb"),
  45402. name: "Front",
  45403. image: {
  45404. source: "./media/characters/ramita/front.svg",
  45405. extra: 1402/1232,
  45406. bottom: 62/1464
  45407. }
  45408. },
  45409. dressed: {
  45410. height: math.unit(3 + 6/12, "feet"),
  45411. weight: math.unit(60, "lb"),
  45412. name: "Dressed",
  45413. image: {
  45414. source: "./media/characters/ramita/dressed.svg",
  45415. extra: 1534/1249,
  45416. bottom: 50/1584
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Normal",
  45423. height: math.unit(3 + 6/12, "feet"),
  45424. default: true
  45425. },
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45430. {
  45431. front: {
  45432. height: math.unit(8, "feet"),
  45433. name: "Front",
  45434. image: {
  45435. source: "./media/characters/ark/front.svg",
  45436. extra: 772/693,
  45437. bottom: 45/817
  45438. }
  45439. },
  45440. },
  45441. [
  45442. {
  45443. name: "Normal",
  45444. height: math.unit(8, "feet"),
  45445. default: true
  45446. },
  45447. ]
  45448. ))
  45449. characterMakers.push(() => makeCharacter(
  45450. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45451. {
  45452. front: {
  45453. height: math.unit(6, "feet"),
  45454. weight: math.unit(250, "lb"),
  45455. volume: math.unit(5/8, "gallons"),
  45456. name: "Front",
  45457. image: {
  45458. source: "./media/characters/ludwig-horn/front.svg",
  45459. extra: 1782/1635,
  45460. bottom: 96/1878
  45461. }
  45462. },
  45463. back: {
  45464. height: math.unit(6, "feet"),
  45465. weight: math.unit(250, "lb"),
  45466. volume: math.unit(5/8, "gallons"),
  45467. name: "Back",
  45468. image: {
  45469. source: "./media/characters/ludwig-horn/back.svg",
  45470. extra: 1874/1729,
  45471. bottom: 27/1901
  45472. }
  45473. },
  45474. dick: {
  45475. height: math.unit(1.05, "feet"),
  45476. weight: math.unit(15, "lb"),
  45477. volume: math.unit(5/8, "gallons"),
  45478. name: "Dick",
  45479. image: {
  45480. source: "./media/characters/ludwig-horn/dick.svg"
  45481. }
  45482. },
  45483. },
  45484. [
  45485. {
  45486. name: "Small",
  45487. height: math.unit(6, "feet")
  45488. },
  45489. {
  45490. name: "Typical",
  45491. height: math.unit(12, "feet"),
  45492. default: true
  45493. },
  45494. {
  45495. name: "Building",
  45496. height: math.unit(80, "feet")
  45497. },
  45498. {
  45499. name: "Town",
  45500. height: math.unit(800, "feet")
  45501. },
  45502. {
  45503. name: "Kingdom",
  45504. height: math.unit(80000, "feet")
  45505. },
  45506. {
  45507. name: "Planet",
  45508. height: math.unit(8000000, "feet")
  45509. },
  45510. {
  45511. name: "Universe",
  45512. height: math.unit(8000000000, "feet")
  45513. },
  45514. {
  45515. name: "Transcended",
  45516. height: math.unit(8e27, "feet")
  45517. },
  45518. ]
  45519. ))
  45520. characterMakers.push(() => makeCharacter(
  45521. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45522. {
  45523. front: {
  45524. height: math.unit(5, "feet"),
  45525. weight: math.unit(50, "kg"),
  45526. name: "Front",
  45527. image: {
  45528. source: "./media/characters/biot-avery/front.svg",
  45529. extra: 1295/1232,
  45530. bottom: 86/1381
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(5, "feet"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(6, "feet"),
  45547. name: "Front",
  45548. image: {
  45549. source: "./media/characters/kitsune-kiro/front.svg",
  45550. extra: 1270/1158,
  45551. bottom: 42/1312
  45552. }
  45553. },
  45554. frontAlt: {
  45555. height: math.unit(6, "feet"),
  45556. name: "Front-alt",
  45557. image: {
  45558. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45559. extra: 1130/1081,
  45560. bottom: 36/1166
  45561. }
  45562. },
  45563. },
  45564. [
  45565. {
  45566. name: "Smol",
  45567. height: math.unit(3, "feet")
  45568. },
  45569. {
  45570. name: "Normal",
  45571. height: math.unit(6, "feet"),
  45572. default: true
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45578. {
  45579. front: {
  45580. height: math.unit(6, "feet"),
  45581. weight: math.unit(125, "lb"),
  45582. name: "Front",
  45583. image: {
  45584. source: "./media/characters/jack-thatcher/front.svg",
  45585. extra: 1474/1370,
  45586. bottom: 26/1500
  45587. }
  45588. },
  45589. back: {
  45590. height: math.unit(6, "feet"),
  45591. weight: math.unit(125, "lb"),
  45592. name: "Back",
  45593. image: {
  45594. source: "./media/characters/jack-thatcher/back.svg",
  45595. extra: 1489/1384,
  45596. bottom: 18/1507
  45597. }
  45598. },
  45599. },
  45600. [
  45601. {
  45602. name: "Normal",
  45603. height: math.unit(6, "feet"),
  45604. default: true
  45605. },
  45606. {
  45607. name: "Macro",
  45608. height: math.unit(75, "feet")
  45609. },
  45610. {
  45611. name: "Macro-er",
  45612. height: math.unit(250, "feet")
  45613. },
  45614. ]
  45615. ))
  45616. characterMakers.push(() => makeCharacter(
  45617. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45618. {
  45619. front: {
  45620. height: math.unit(7, "feet"),
  45621. weight: math.unit(110, "kg"),
  45622. name: "Front",
  45623. image: {
  45624. source: "./media/characters/max-hyper/front.svg",
  45625. extra: 1969/1881,
  45626. bottom: 49/2018
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(7, "feet"),
  45634. default: true
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45640. {
  45641. front: {
  45642. height: math.unit(5 + 5/12, "feet"),
  45643. weight: math.unit(160, "lb"),
  45644. name: "Front",
  45645. image: {
  45646. source: "./media/characters/spook/front.svg",
  45647. extra: 794/791,
  45648. bottom: 54/848
  45649. }
  45650. },
  45651. back: {
  45652. height: math.unit(5 + 5/12, "feet"),
  45653. weight: math.unit(160, "lb"),
  45654. name: "Back",
  45655. image: {
  45656. source: "./media/characters/spook/back.svg",
  45657. extra: 812/798,
  45658. bottom: 32/844
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Normal",
  45665. height: math.unit(5 + 5/12, "feet"),
  45666. default: true
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45672. {
  45673. front: {
  45674. height: math.unit(18, "feet"),
  45675. name: "Front",
  45676. image: {
  45677. source: "./media/characters/xeaduulix/front.svg",
  45678. extra: 1380/1166,
  45679. bottom: 110/1490
  45680. }
  45681. },
  45682. back: {
  45683. height: math.unit(18, "feet"),
  45684. name: "Back",
  45685. image: {
  45686. source: "./media/characters/xeaduulix/back.svg",
  45687. extra: 1592/1170,
  45688. bottom: 128/1720
  45689. }
  45690. },
  45691. frontNsfw: {
  45692. height: math.unit(18, "feet"),
  45693. name: "Front (NSFW)",
  45694. image: {
  45695. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45696. extra: 1380/1166,
  45697. bottom: 110/1490
  45698. }
  45699. },
  45700. backNsfw: {
  45701. height: math.unit(18, "feet"),
  45702. name: "Back (NSFW)",
  45703. image: {
  45704. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45705. extra: 1592/1170,
  45706. bottom: 128/1720
  45707. }
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(18, "feet"),
  45714. default: true
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45720. {
  45721. spreadWings: {
  45722. height: math.unit(20, "feet"),
  45723. name: "Spread Wings",
  45724. image: {
  45725. source: "./media/characters/fledge/spread-wings.svg",
  45726. extra: 693/635,
  45727. bottom: 26/719
  45728. }
  45729. },
  45730. front: {
  45731. height: math.unit(20, "feet"),
  45732. name: "Front",
  45733. image: {
  45734. source: "./media/characters/fledge/front.svg",
  45735. extra: 684/637,
  45736. bottom: 18/702
  45737. }
  45738. },
  45739. frontAlt: {
  45740. height: math.unit(20, "feet"),
  45741. name: "Front (Alt)",
  45742. image: {
  45743. source: "./media/characters/fledge/front-alt.svg",
  45744. extra: 708/664,
  45745. bottom: 13/721
  45746. }
  45747. },
  45748. back: {
  45749. height: math.unit(20, "feet"),
  45750. name: "Back",
  45751. image: {
  45752. source: "./media/characters/fledge/back.svg",
  45753. extra: 718/634,
  45754. bottom: 22/740
  45755. }
  45756. },
  45757. head: {
  45758. height: math.unit(5.55, "feet"),
  45759. name: "Head",
  45760. image: {
  45761. source: "./media/characters/fledge/head.svg"
  45762. }
  45763. },
  45764. headAlt: {
  45765. height: math.unit(5.1, "feet"),
  45766. name: "Head (Alt)",
  45767. image: {
  45768. source: "./media/characters/fledge/head-alt.svg"
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Small",
  45775. height: math.unit(6 + 2/12, "feet")
  45776. },
  45777. {
  45778. name: "Big",
  45779. height: math.unit(20, "feet"),
  45780. default: true
  45781. },
  45782. {
  45783. name: "Giant",
  45784. height: math.unit(100, "feet")
  45785. },
  45786. {
  45787. name: "Macro",
  45788. height: math.unit(200, "feet")
  45789. },
  45790. ]
  45791. ))
  45792. characterMakers.push(() => makeCharacter(
  45793. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45794. {
  45795. front: {
  45796. height: math.unit(1, "meter"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/atlas-morenai/front.svg",
  45800. extra: 1275/1043,
  45801. bottom: 19/1294
  45802. }
  45803. },
  45804. back: {
  45805. height: math.unit(1, "meter"),
  45806. name: "Back",
  45807. image: {
  45808. source: "./media/characters/atlas-morenai/back.svg",
  45809. extra: 1141/1001,
  45810. bottom: 25/1166
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(1, "meter"),
  45818. default: true
  45819. },
  45820. {
  45821. name: "Magic-Infused",
  45822. height: math.unit(5, "meters")
  45823. },
  45824. ]
  45825. ))
  45826. characterMakers.push(() => makeCharacter(
  45827. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45828. {
  45829. front: {
  45830. height: math.unit(5, "meters"),
  45831. name: "Front",
  45832. image: {
  45833. source: "./media/characters/cintia/front.svg",
  45834. extra: 1312/1228,
  45835. bottom: 38/1350
  45836. }
  45837. },
  45838. back: {
  45839. height: math.unit(5, "meters"),
  45840. name: "Back",
  45841. image: {
  45842. source: "./media/characters/cintia/back.svg",
  45843. extra: 1260/1166,
  45844. bottom: 98/1358
  45845. }
  45846. },
  45847. frontDick: {
  45848. height: math.unit(5, "meters"),
  45849. name: "Front (Dick)",
  45850. image: {
  45851. source: "./media/characters/cintia/front-dick.svg",
  45852. extra: 1312/1228,
  45853. bottom: 38/1350
  45854. }
  45855. },
  45856. backDick: {
  45857. height: math.unit(5, "meters"),
  45858. name: "Back (Dick)",
  45859. image: {
  45860. source: "./media/characters/cintia/back-dick.svg",
  45861. extra: 1260/1166,
  45862. bottom: 98/1358
  45863. }
  45864. },
  45865. bust: {
  45866. height: math.unit(1.97, "meters"),
  45867. name: "Bust",
  45868. image: {
  45869. source: "./media/characters/cintia/bust.svg",
  45870. extra: 617/565,
  45871. bottom: 0/617
  45872. }
  45873. },
  45874. },
  45875. [
  45876. {
  45877. name: "Normal",
  45878. height: math.unit(5, "meters"),
  45879. default: true
  45880. },
  45881. ]
  45882. ))
  45883. characterMakers.push(() => makeCharacter(
  45884. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45885. {
  45886. side: {
  45887. height: math.unit(100, "feet"),
  45888. name: "Side",
  45889. image: {
  45890. source: "./media/characters/denora/side.svg",
  45891. extra: 875/803,
  45892. bottom: 9/884
  45893. }
  45894. },
  45895. },
  45896. [
  45897. {
  45898. name: "Standard",
  45899. height: math.unit(100, "feet"),
  45900. default: true
  45901. },
  45902. {
  45903. name: "Grand",
  45904. height: math.unit(1000, "feet")
  45905. },
  45906. {
  45907. name: "Conquering",
  45908. height: math.unit(10000, "feet")
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45914. {
  45915. dressed: {
  45916. height: math.unit(8 + 5/12, "feet"),
  45917. weight: math.unit(700, "lb"),
  45918. name: "Dressed",
  45919. image: {
  45920. source: "./media/characters/kiva/dressed.svg",
  45921. extra: 1102/1055,
  45922. bottom: 60/1162
  45923. }
  45924. },
  45925. nude: {
  45926. height: math.unit(8 + 5/12, "feet"),
  45927. weight: math.unit(700, "lb"),
  45928. name: "Nude",
  45929. image: {
  45930. source: "./media/characters/kiva/nude.svg",
  45931. extra: 1102/1055,
  45932. bottom: 60/1162
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Base Height",
  45939. height: math.unit(8 + 5/12, "feet"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Macro",
  45944. height: math.unit(100, "feet")
  45945. },
  45946. {
  45947. name: "Max",
  45948. height: math.unit(3280, "feet")
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(6 + 8/12, "feet"),
  45957. weight: math.unit(250, "lb"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/ztragon/front.svg",
  45961. extra: 1825/1684,
  45962. bottom: 98/1923
  45963. }
  45964. },
  45965. },
  45966. [
  45967. {
  45968. name: "Normal",
  45969. height: math.unit(6 + 8/12, "feet"),
  45970. default: true
  45971. },
  45972. {
  45973. name: "Macro",
  45974. height: math.unit(80, "feet")
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45980. {
  45981. front: {
  45982. height: math.unit(10.4, "feet"),
  45983. weight: math.unit(2, "tons"),
  45984. name: "Front",
  45985. image: {
  45986. source: "./media/characters/yesenia/front.svg",
  45987. extra: 1479/1474,
  45988. bottom: 233/1712
  45989. }
  45990. },
  45991. },
  45992. [
  45993. {
  45994. name: "Normal",
  45995. height: math.unit(10.4, "feet"),
  45996. default: true
  45997. },
  45998. ]
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46002. {
  46003. normal: {
  46004. height: math.unit(6 + 1/12, "feet"),
  46005. weight: math.unit(180, "lb"),
  46006. name: "Normal",
  46007. image: {
  46008. source: "./media/characters/leanne-lycheborne/normal.svg",
  46009. extra: 1748/1660,
  46010. bottom: 98/1846
  46011. }
  46012. },
  46013. were: {
  46014. height: math.unit(12, "feet"),
  46015. weight: math.unit(1600, "lb"),
  46016. name: "Were",
  46017. image: {
  46018. source: "./media/characters/leanne-lycheborne/were.svg",
  46019. extra: 1485/1432,
  46020. bottom: 66/1551
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(6 + 1/12, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46034. {
  46035. side: {
  46036. height: math.unit(13, "feet"),
  46037. name: "Side",
  46038. image: {
  46039. source: "./media/characters/kira-tyler/side.svg",
  46040. extra: 693/393,
  46041. bottom: 58/751
  46042. }
  46043. },
  46044. },
  46045. [
  46046. {
  46047. name: "Normal",
  46048. height: math.unit(13, "feet"),
  46049. default: true
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46055. {
  46056. front: {
  46057. height: math.unit(10.3, "feet"),
  46058. weight: math.unit(150, "lb"),
  46059. name: "Front",
  46060. image: {
  46061. source: "./media/characters/blaze/front.svg",
  46062. extra: 1378/1286,
  46063. bottom: 172/1550
  46064. }
  46065. },
  46066. },
  46067. [
  46068. {
  46069. name: "Normal",
  46070. height: math.unit(10.3, "feet"),
  46071. default: true
  46072. },
  46073. ]
  46074. ))
  46075. characterMakers.push(() => makeCharacter(
  46076. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46077. {
  46078. side: {
  46079. height: math.unit(2, "meters"),
  46080. weight: math.unit(400, "kg"),
  46081. name: "Side",
  46082. image: {
  46083. source: "./media/characters/anu/side.svg",
  46084. extra: 506/394,
  46085. bottom: 18/524
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Humanoid",
  46092. height: math.unit(2, "meters")
  46093. },
  46094. {
  46095. name: "Normal",
  46096. height: math.unit(5, "meters"),
  46097. default: true
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46103. {
  46104. front: {
  46105. height: math.unit(5 + 5/12, "feet"),
  46106. weight: math.unit(170, "lb"),
  46107. name: "Front",
  46108. image: {
  46109. source: "./media/characters/synx-the-lynx/front.svg",
  46110. extra: 1893/1745,
  46111. bottom: 17/1910
  46112. }
  46113. },
  46114. side: {
  46115. height: math.unit(5 + 5/12, "feet"),
  46116. weight: math.unit(170, "lb"),
  46117. name: "Side",
  46118. image: {
  46119. source: "./media/characters/synx-the-lynx/side.svg",
  46120. extra: 1884/1740,
  46121. bottom: 39/1923
  46122. }
  46123. },
  46124. back: {
  46125. height: math.unit(5 + 5/12, "feet"),
  46126. weight: math.unit(170, "lb"),
  46127. name: "Back",
  46128. image: {
  46129. source: "./media/characters/synx-the-lynx/back.svg",
  46130. extra: 1903/1755,
  46131. bottom: 14/1917
  46132. }
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal",
  46138. height: math.unit(5 + 5/12, "feet"),
  46139. default: true
  46140. },
  46141. ]
  46142. ))
  46143. characterMakers.push(() => makeCharacter(
  46144. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46145. {
  46146. back: {
  46147. height: math.unit(15, "feet"),
  46148. name: "Back",
  46149. image: {
  46150. source: "./media/characters/nadezda-fex/back.svg",
  46151. extra: 1695/1481,
  46152. bottom: 25/1720
  46153. }
  46154. },
  46155. },
  46156. [
  46157. {
  46158. name: "Normal",
  46159. height: math.unit(15, "feet"),
  46160. default: true
  46161. },
  46162. {
  46163. name: "Macro",
  46164. height: math.unit(2.5, "miles")
  46165. },
  46166. {
  46167. name: "Goddess",
  46168. height: math.unit(2, "multiverses")
  46169. },
  46170. ]
  46171. ))
  46172. characterMakers.push(() => makeCharacter(
  46173. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46174. {
  46175. front: {
  46176. height: math.unit(216, "cm"),
  46177. name: "Front",
  46178. image: {
  46179. source: "./media/characters/lev/front.svg",
  46180. extra: 1728/1670,
  46181. bottom: 82/1810
  46182. }
  46183. },
  46184. back: {
  46185. height: math.unit(216, "cm"),
  46186. name: "Back",
  46187. image: {
  46188. source: "./media/characters/lev/back.svg",
  46189. extra: 1738/1675,
  46190. bottom: 24/1762
  46191. }
  46192. },
  46193. dressed: {
  46194. height: math.unit(216, "cm"),
  46195. name: "Dressed",
  46196. image: {
  46197. source: "./media/characters/lev/dressed.svg",
  46198. extra: 1397/1351,
  46199. bottom: 73/1470
  46200. }
  46201. },
  46202. head: {
  46203. height: math.unit(0.51, "meter"),
  46204. name: "Head",
  46205. image: {
  46206. source: "./media/characters/lev/head.svg"
  46207. }
  46208. },
  46209. },
  46210. [
  46211. {
  46212. name: "Normal",
  46213. height: math.unit(216, "cm"),
  46214. default: true
  46215. },
  46216. {
  46217. name: "Relatively Macro",
  46218. height: math.unit(80, "meters")
  46219. },
  46220. {
  46221. name: "Megamacro",
  46222. height: math.unit(21600, "meters")
  46223. },
  46224. {
  46225. name: "Megamacro+",
  46226. height: math.unit(64800, "meters")
  46227. },
  46228. ]
  46229. ))
  46230. characterMakers.push(() => makeCharacter(
  46231. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46232. {
  46233. front: {
  46234. height: math.unit(2, "meters"),
  46235. weight: math.unit(80, "kg"),
  46236. name: "Front",
  46237. image: {
  46238. source: "./media/characters/moka/front.svg",
  46239. extra: 1337/1255,
  46240. bottom: 58/1395
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Micro",
  46247. height: math.unit(15, "cm")
  46248. },
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(2, "meters"),
  46252. default: true
  46253. },
  46254. {
  46255. name: "Macro",
  46256. height: math.unit(20, "meters"),
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46262. {
  46263. front: {
  46264. height: math.unit(9, "feet"),
  46265. weight: math.unit(240, "lb"),
  46266. name: "Front",
  46267. image: {
  46268. source: "./media/characters/kuzco/front.svg",
  46269. extra: 1593/1487,
  46270. bottom: 32/1625
  46271. }
  46272. },
  46273. side: {
  46274. height: math.unit(9, "feet"),
  46275. weight: math.unit(240, "lb"),
  46276. name: "Side",
  46277. image: {
  46278. source: "./media/characters/kuzco/side.svg",
  46279. extra: 1575/1485,
  46280. bottom: 30/1605
  46281. }
  46282. },
  46283. back: {
  46284. height: math.unit(9, "feet"),
  46285. weight: math.unit(240, "lb"),
  46286. name: "Back",
  46287. image: {
  46288. source: "./media/characters/kuzco/back.svg",
  46289. extra: 1603/1514,
  46290. bottom: 14/1617
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(9, "feet"),
  46298. default: true
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46304. {
  46305. side: {
  46306. height: math.unit(2, "meters"),
  46307. weight: math.unit(300, "kg"),
  46308. name: "Side",
  46309. image: {
  46310. source: "./media/characters/ceruleus/side.svg",
  46311. extra: 1068/974,
  46312. bottom: 126/1194
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Normal",
  46319. height: math.unit(16, "meters"),
  46320. default: true
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(9, "feet"),
  46329. weight: math.unit(500, "kg"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/acouya/front.svg",
  46333. extra: 1660/1473,
  46334. bottom: 28/1688
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(9, "feet"),
  46342. default: true
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(5 + 6/12, "feet"),
  46351. weight: math.unit(195, "lb"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/vant/front.svg",
  46355. extra: 1396/1320,
  46356. bottom: 20/1416
  46357. }
  46358. },
  46359. back: {
  46360. height: math.unit(5 + 6/12, "feet"),
  46361. weight: math.unit(195, "lb"),
  46362. name: "Back",
  46363. image: {
  46364. source: "./media/characters/vant/back.svg",
  46365. extra: 1396/1320,
  46366. bottom: 20/1416
  46367. }
  46368. },
  46369. maw: {
  46370. height: math.unit(0.75, "feet"),
  46371. name: "Maw",
  46372. image: {
  46373. source: "./media/characters/vant/maw.svg"
  46374. }
  46375. },
  46376. paw: {
  46377. height: math.unit(1.07, "feet"),
  46378. name: "Paw",
  46379. image: {
  46380. source: "./media/characters/vant/paw.svg"
  46381. }
  46382. },
  46383. },
  46384. [
  46385. {
  46386. name: "Micro",
  46387. height: math.unit(0.25, "inches")
  46388. },
  46389. {
  46390. name: "Normal",
  46391. height: math.unit(5 + 6/12, "feet"),
  46392. default: true
  46393. },
  46394. {
  46395. name: "Macro",
  46396. height: math.unit(75, "feet")
  46397. },
  46398. ]
  46399. ))
  46400. characterMakers.push(() => makeCharacter(
  46401. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46402. {
  46403. front: {
  46404. height: math.unit(30, "meters"),
  46405. weight: math.unit(363, "tons"),
  46406. name: "Front",
  46407. image: {
  46408. source: "./media/characters/ahra/front.svg",
  46409. extra: 1914/1814,
  46410. bottom: 46/1960
  46411. }
  46412. },
  46413. },
  46414. [
  46415. {
  46416. name: "Macro",
  46417. height: math.unit(30, "meters"),
  46418. default: true
  46419. },
  46420. ]
  46421. ))
  46422. characterMakers.push(() => makeCharacter(
  46423. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46424. {
  46425. undressed: {
  46426. height: math.unit(2, "m"),
  46427. weight: math.unit(250, "kg"),
  46428. name: "Undressed",
  46429. image: {
  46430. source: "./media/characters/coriander/undressed.svg",
  46431. extra: 1757/1606,
  46432. bottom: 107/1864
  46433. }
  46434. },
  46435. dressed: {
  46436. height: math.unit(2, "m"),
  46437. weight: math.unit(250, "kg"),
  46438. name: "Dressed",
  46439. image: {
  46440. source: "./media/characters/coriander/dressed.svg",
  46441. extra: 1757/1606,
  46442. bottom: 107/1864
  46443. }
  46444. },
  46445. },
  46446. [
  46447. {
  46448. name: "Normal",
  46449. height: math.unit(4, "meters"),
  46450. default: true
  46451. },
  46452. {
  46453. name: "XL",
  46454. height: math.unit(6, "meters")
  46455. },
  46456. {
  46457. name: "XXL",
  46458. height: math.unit(8, "meters")
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(6, "feet"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/syrinx/front.svg",
  46470. extra: 1557/1259,
  46471. bottom: 171/1728
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(6 + 3/12, "feet"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(11 + 6/12, "feet"),
  46488. weight: math.unit(1.5, "tons"),
  46489. name: "Front",
  46490. image: {
  46491. source: "./media/characters/bor/front.svg",
  46492. extra: 1189/1109,
  46493. bottom: 170/1359
  46494. }
  46495. },
  46496. },
  46497. [
  46498. {
  46499. name: "Normal",
  46500. height: math.unit(11 + 6/12, "feet"),
  46501. default: true
  46502. },
  46503. {
  46504. name: "Macro",
  46505. height: math.unit(32 + 9/12, "feet")
  46506. },
  46507. ]
  46508. ))
  46509. characterMakers.push(() => makeCharacter(
  46510. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46511. {
  46512. anthro: {
  46513. height: math.unit(9, "feet"),
  46514. weight: math.unit(2076, "lb"),
  46515. name: "Anthro",
  46516. image: {
  46517. source: "./media/characters/abacus/anthro.svg",
  46518. extra: 1540/1494,
  46519. bottom: 233/1773
  46520. }
  46521. },
  46522. pigeon: {
  46523. height: math.unit(1, "feet"),
  46524. name: "Pigeon",
  46525. image: {
  46526. source: "./media/characters/abacus/pigeon.svg",
  46527. extra: 528/525,
  46528. bottom: 46/574
  46529. }
  46530. },
  46531. },
  46532. [
  46533. {
  46534. name: "Normal",
  46535. height: math.unit(9, "feet"),
  46536. default: true
  46537. },
  46538. ]
  46539. ))
  46540. characterMakers.push(() => makeCharacter(
  46541. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46542. {
  46543. side: {
  46544. height: math.unit(6, "feet"),
  46545. name: "Side",
  46546. image: {
  46547. source: "./media/characters/delkhan/side.svg",
  46548. extra: 1884/1786,
  46549. bottom: 308/2192
  46550. }
  46551. },
  46552. head: {
  46553. height: math.unit(3.38, "feet"),
  46554. name: "Head",
  46555. image: {
  46556. source: "./media/characters/delkhan/head.svg"
  46557. }
  46558. },
  46559. },
  46560. [
  46561. {
  46562. name: "Normal",
  46563. height: math.unit(72, "feet"),
  46564. default: true
  46565. },
  46566. {
  46567. name: "Giant",
  46568. height: math.unit(172, "feet")
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46574. {
  46575. standing: {
  46576. height: math.unit(6, "feet"),
  46577. name: "Standing",
  46578. image: {
  46579. source: "./media/characters/euchidat/standing.svg",
  46580. extra: 1612/1553,
  46581. bottom: 116/1728
  46582. }
  46583. },
  46584. leaning: {
  46585. height: math.unit(6, "feet"),
  46586. name: "Leaning",
  46587. image: {
  46588. source: "./media/characters/euchidat/leaning.svg",
  46589. extra: 1719/1674,
  46590. bottom: 27/1746
  46591. }
  46592. },
  46593. },
  46594. [
  46595. {
  46596. name: "Normal",
  46597. height: math.unit(175, "feet"),
  46598. default: true
  46599. },
  46600. {
  46601. name: "Megamacro",
  46602. height: math.unit(190, "miles")
  46603. },
  46604. {
  46605. name: "Gigamacro",
  46606. height: math.unit(190000, "miles")
  46607. },
  46608. ]
  46609. ))
  46610. characterMakers.push(() => makeCharacter(
  46611. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46612. {
  46613. front: {
  46614. height: math.unit(6, "feet"),
  46615. weight: math.unit(150, "lb"),
  46616. name: "Front",
  46617. image: {
  46618. source: "./media/characters/rebecca-stack/front.svg",
  46619. extra: 1256/1201,
  46620. bottom: 18/1274
  46621. }
  46622. },
  46623. },
  46624. [
  46625. {
  46626. name: "Normal",
  46627. height: math.unit(5 + 8/12, "feet"),
  46628. default: true
  46629. },
  46630. {
  46631. name: "Demolitionist",
  46632. height: math.unit(200, "feet")
  46633. },
  46634. {
  46635. name: "Out of Control",
  46636. height: math.unit(2, "miles")
  46637. },
  46638. {
  46639. name: "Giga",
  46640. height: math.unit(7200, "miles")
  46641. },
  46642. ]
  46643. ))
  46644. characterMakers.push(() => makeCharacter(
  46645. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46646. {
  46647. front: {
  46648. height: math.unit(6, "feet"),
  46649. weight: math.unit(150, "lb"),
  46650. name: "Front",
  46651. image: {
  46652. source: "./media/characters/jenny-cartwright/front.svg",
  46653. extra: 1384/1376,
  46654. bottom: 58/1442
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Normal",
  46661. height: math.unit(6 + 7/12, "feet"),
  46662. default: true
  46663. },
  46664. {
  46665. name: "Librarian",
  46666. height: math.unit(55, "feet")
  46667. },
  46668. {
  46669. name: "Sightseer",
  46670. height: math.unit(50, "miles")
  46671. },
  46672. {
  46673. name: "Giga",
  46674. height: math.unit(30000, "miles")
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46680. {
  46681. nude: {
  46682. height: math.unit(8, "feet"),
  46683. weight: math.unit(225, "lb"),
  46684. name: "Nude",
  46685. image: {
  46686. source: "./media/characters/marvy/nude.svg",
  46687. extra: 1900/1683,
  46688. bottom: 89/1989
  46689. }
  46690. },
  46691. dressed: {
  46692. height: math.unit(8, "feet"),
  46693. weight: math.unit(225, "lb"),
  46694. name: "Dressed",
  46695. image: {
  46696. source: "./media/characters/marvy/dressed.svg",
  46697. extra: 1900/1683,
  46698. bottom: 89/1989
  46699. }
  46700. },
  46701. head: {
  46702. height: math.unit(2.85, "feet"),
  46703. name: "Head",
  46704. image: {
  46705. source: "./media/characters/marvy/head.svg"
  46706. }
  46707. },
  46708. },
  46709. [
  46710. {
  46711. name: "Normal",
  46712. height: math.unit(8, "feet"),
  46713. default: true
  46714. },
  46715. ]
  46716. ))
  46717. characterMakers.push(() => makeCharacter(
  46718. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46719. {
  46720. front: {
  46721. height: math.unit(8, "feet"),
  46722. weight: math.unit(250, "lb"),
  46723. name: "Front",
  46724. image: {
  46725. source: "./media/characters/leah/front.svg",
  46726. extra: 1257/1149,
  46727. bottom: 109/1366
  46728. }
  46729. },
  46730. },
  46731. [
  46732. {
  46733. name: "Normal",
  46734. height: math.unit(8, "feet"),
  46735. default: true
  46736. },
  46737. {
  46738. name: "Minimacro",
  46739. height: math.unit(40, "feet")
  46740. },
  46741. {
  46742. name: "Macro",
  46743. height: math.unit(124, "feet")
  46744. },
  46745. {
  46746. name: "Megamacro",
  46747. height: math.unit(850, "feet")
  46748. },
  46749. ]
  46750. ))
  46751. characterMakers.push(() => makeCharacter(
  46752. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46753. {
  46754. side: {
  46755. height: math.unit(13 + 6/12, "feet"),
  46756. weight: math.unit(3200, "lb"),
  46757. name: "Side",
  46758. image: {
  46759. source: "./media/characters/alvir/side.svg",
  46760. extra: 896/589,
  46761. bottom: 26/922
  46762. }
  46763. },
  46764. },
  46765. [
  46766. {
  46767. name: "Normal",
  46768. height: math.unit(13 + 6/12, "feet"),
  46769. default: true
  46770. },
  46771. ]
  46772. ))
  46773. characterMakers.push(() => makeCharacter(
  46774. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46775. {
  46776. front: {
  46777. height: math.unit(5 + 4/12, "feet"),
  46778. weight: math.unit(236, "lb"),
  46779. name: "Front",
  46780. image: {
  46781. source: "./media/characters/zaina-khalil/front.svg",
  46782. extra: 1533/1485,
  46783. bottom: 94/1627
  46784. }
  46785. },
  46786. side: {
  46787. height: math.unit(5 + 4/12, "feet"),
  46788. weight: math.unit(236, "lb"),
  46789. name: "Side",
  46790. image: {
  46791. source: "./media/characters/zaina-khalil/side.svg",
  46792. extra: 1537/1498,
  46793. bottom: 66/1603
  46794. }
  46795. },
  46796. back: {
  46797. height: math.unit(5 + 4/12, "feet"),
  46798. weight: math.unit(236, "lb"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/zaina-khalil/back.svg",
  46802. extra: 1546/1494,
  46803. bottom: 89/1635
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(5 + 4/12, "feet"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46817. {
  46818. side: {
  46819. height: math.unit(12, "feet"),
  46820. weight: math.unit(4000, "lb"),
  46821. name: "Side",
  46822. image: {
  46823. source: "./media/characters/terry/side.svg",
  46824. extra: 1518/1439,
  46825. bottom: 149/1667
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(12, "feet"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46839. {
  46840. front: {
  46841. height: math.unit(12, "feet"),
  46842. weight: math.unit(1500, "lb"),
  46843. name: "Front",
  46844. image: {
  46845. source: "./media/characters/kahea/front.svg",
  46846. extra: 1722/1617,
  46847. bottom: 179/1901
  46848. }
  46849. },
  46850. },
  46851. [
  46852. {
  46853. name: "Normal",
  46854. height: math.unit(12, "feet"),
  46855. default: true
  46856. },
  46857. ]
  46858. ))
  46859. characterMakers.push(() => makeCharacter(
  46860. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46861. {
  46862. demonFront: {
  46863. height: math.unit(36, "feet"),
  46864. name: "Front",
  46865. image: {
  46866. source: "./media/characters/alex-xuria/demon-front.svg",
  46867. extra: 1705/1673,
  46868. bottom: 198/1903
  46869. },
  46870. form: "demon",
  46871. default: true
  46872. },
  46873. demonBack: {
  46874. height: math.unit(36, "feet"),
  46875. name: "Back",
  46876. image: {
  46877. source: "./media/characters/alex-xuria/demon-back.svg",
  46878. extra: 1725/1693,
  46879. bottom: 70/1795
  46880. },
  46881. form: "demon"
  46882. },
  46883. demonHead: {
  46884. height: math.unit(2.14, "meters"),
  46885. name: "Head",
  46886. image: {
  46887. source: "./media/characters/alex-xuria/demon-head.svg"
  46888. },
  46889. form: "demon"
  46890. },
  46891. demonHand: {
  46892. height: math.unit(1.61, "meters"),
  46893. name: "Hand",
  46894. image: {
  46895. source: "./media/characters/alex-xuria/demon-hand.svg"
  46896. },
  46897. form: "demon"
  46898. },
  46899. demonPaw: {
  46900. height: math.unit(1.35, "meters"),
  46901. name: "Paw",
  46902. image: {
  46903. source: "./media/characters/alex-xuria/demon-paw.svg"
  46904. },
  46905. form: "demon"
  46906. },
  46907. demonFoot: {
  46908. height: math.unit(2.2, "meters"),
  46909. name: "Foot",
  46910. image: {
  46911. source: "./media/characters/alex-xuria/demon-foot.svg"
  46912. },
  46913. form: "demon"
  46914. },
  46915. demonCock: {
  46916. height: math.unit(1.74, "meters"),
  46917. name: "Cock",
  46918. image: {
  46919. source: "./media/characters/alex-xuria/demon-cock.svg"
  46920. },
  46921. form: "demon"
  46922. },
  46923. demonTailClosed: {
  46924. height: math.unit(1.47, "meters"),
  46925. name: "Tail (Closed)",
  46926. image: {
  46927. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46928. },
  46929. form: "demon"
  46930. },
  46931. demonTailOpen: {
  46932. height: math.unit(2.85, "meters"),
  46933. name: "Tail (Open)",
  46934. image: {
  46935. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46936. },
  46937. form: "demon"
  46938. },
  46939. incubusFront: {
  46940. height: math.unit(12, "feet"),
  46941. name: "Front",
  46942. image: {
  46943. source: "./media/characters/alex-xuria/incubus-front.svg",
  46944. extra: 1754/1677,
  46945. bottom: 125/1879
  46946. },
  46947. form: "incubus",
  46948. default: true
  46949. },
  46950. incubusBack: {
  46951. height: math.unit(12, "feet"),
  46952. name: "Back",
  46953. image: {
  46954. source: "./media/characters/alex-xuria/incubus-back.svg",
  46955. extra: 1702/1647,
  46956. bottom: 30/1732
  46957. },
  46958. form: "incubus"
  46959. },
  46960. incubusHead: {
  46961. height: math.unit(3.45, "feet"),
  46962. name: "Head",
  46963. image: {
  46964. source: "./media/characters/alex-xuria/incubus-head.svg"
  46965. },
  46966. form: "incubus"
  46967. },
  46968. rabbitFront: {
  46969. height: math.unit(6, "feet"),
  46970. name: "Front",
  46971. image: {
  46972. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46973. extra: 1369/1349,
  46974. bottom: 45/1414
  46975. },
  46976. form: "rabbit",
  46977. default: true
  46978. },
  46979. rabbitSide: {
  46980. height: math.unit(6, "feet"),
  46981. name: "Side",
  46982. image: {
  46983. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46984. extra: 1370/1356,
  46985. bottom: 37/1407
  46986. },
  46987. form: "rabbit"
  46988. },
  46989. rabbitBack: {
  46990. height: math.unit(6, "feet"),
  46991. name: "Back",
  46992. image: {
  46993. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46994. extra: 1375/1358,
  46995. bottom: 43/1418
  46996. },
  46997. form: "rabbit"
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Normal",
  47003. height: math.unit(6, "feet"),
  47004. default: true,
  47005. form: "rabbit"
  47006. },
  47007. {
  47008. name: "Incubus",
  47009. height: math.unit(12, "feet"),
  47010. default: true,
  47011. form: "incubus"
  47012. },
  47013. {
  47014. name: "Demon",
  47015. height: math.unit(36, "feet"),
  47016. default: true,
  47017. form: "demon"
  47018. }
  47019. ],
  47020. {
  47021. "demon": {
  47022. name: "Demon",
  47023. default: true
  47024. },
  47025. "incubus": {
  47026. name: "Incubus",
  47027. },
  47028. "rabbit": {
  47029. name: "Rabbit"
  47030. }
  47031. }
  47032. ))
  47033. characterMakers.push(() => makeCharacter(
  47034. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47035. {
  47036. front: {
  47037. height: math.unit(7 + 5/12, "feet"),
  47038. weight: math.unit(510, "lb"),
  47039. name: "Front",
  47040. image: {
  47041. source: "./media/characters/syrup/front.svg",
  47042. extra: 932/916,
  47043. bottom: 26/958
  47044. }
  47045. },
  47046. },
  47047. [
  47048. {
  47049. name: "Normal",
  47050. height: math.unit(7 + 5/12, "feet"),
  47051. default: true
  47052. },
  47053. {
  47054. name: "Big",
  47055. height: math.unit(50, "feet")
  47056. },
  47057. {
  47058. name: "Macro",
  47059. height: math.unit(300, "feet")
  47060. },
  47061. {
  47062. name: "Megamacro",
  47063. height: math.unit(1, "mile")
  47064. },
  47065. ]
  47066. ))
  47067. characterMakers.push(() => makeCharacter(
  47068. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47069. {
  47070. front: {
  47071. height: math.unit(6 + 9/12, "feet"),
  47072. name: "Front",
  47073. image: {
  47074. source: "./media/characters/zeimne/front.svg",
  47075. extra: 1969/1806,
  47076. bottom: 53/2022
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Normal",
  47083. height: math.unit(6 + 9/12, "feet"),
  47084. default: true
  47085. },
  47086. {
  47087. name: "Giant",
  47088. height: math.unit(550, "feet")
  47089. },
  47090. {
  47091. name: "Mega",
  47092. height: math.unit(3, "miles")
  47093. },
  47094. {
  47095. name: "Giga",
  47096. height: math.unit(250, "miles")
  47097. },
  47098. {
  47099. name: "Tera",
  47100. height: math.unit(1, "AU")
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47106. {
  47107. front: {
  47108. height: math.unit(5 + 2/12, "feet"),
  47109. name: "Front",
  47110. image: {
  47111. source: "./media/characters/grar/front.svg",
  47112. extra: 1331/1119,
  47113. bottom: 60/1391
  47114. }
  47115. },
  47116. back: {
  47117. height: math.unit(5 + 2/12, "feet"),
  47118. name: "Back",
  47119. image: {
  47120. source: "./media/characters/grar/back.svg",
  47121. extra: 1385/1169,
  47122. bottom: 23/1408
  47123. }
  47124. },
  47125. },
  47126. [
  47127. {
  47128. name: "Normal",
  47129. height: math.unit(5 + 2/12, "feet"),
  47130. default: true
  47131. },
  47132. ]
  47133. ))
  47134. characterMakers.push(() => makeCharacter(
  47135. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47136. {
  47137. front: {
  47138. height: math.unit(13 + 7/12, "feet"),
  47139. weight: math.unit(2200, "lb"),
  47140. name: "Front",
  47141. image: {
  47142. source: "./media/characters/endraya/front.svg",
  47143. extra: 1289/1215,
  47144. bottom: 50/1339
  47145. }
  47146. },
  47147. nude: {
  47148. height: math.unit(13 + 7/12, "feet"),
  47149. weight: math.unit(2200, "lb"),
  47150. name: "Nude",
  47151. image: {
  47152. source: "./media/characters/endraya/nude.svg",
  47153. extra: 1247/1171,
  47154. bottom: 40/1287
  47155. }
  47156. },
  47157. head: {
  47158. height: math.unit(2.6, "feet"),
  47159. name: "Head",
  47160. image: {
  47161. source: "./media/characters/endraya/head.svg"
  47162. }
  47163. },
  47164. slit: {
  47165. height: math.unit(3.4, "feet"),
  47166. name: "Slit",
  47167. image: {
  47168. source: "./media/characters/endraya/slit.svg"
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Normal",
  47175. height: math.unit(13 + 7/12, "feet"),
  47176. default: true
  47177. },
  47178. {
  47179. name: "Macro",
  47180. height: math.unit(200, "feet")
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47186. {
  47187. front: {
  47188. height: math.unit(1.81, "meters"),
  47189. weight: math.unit(69, "kg"),
  47190. name: "Front",
  47191. image: {
  47192. source: "./media/characters/rodryana/front.svg",
  47193. extra: 2002/1921,
  47194. bottom: 53/2055
  47195. }
  47196. },
  47197. back: {
  47198. height: math.unit(1.81, "meters"),
  47199. weight: math.unit(69, "kg"),
  47200. name: "Back",
  47201. image: {
  47202. source: "./media/characters/rodryana/back.svg",
  47203. extra: 1993/1926,
  47204. bottom: 48/2041
  47205. }
  47206. },
  47207. maw: {
  47208. height: math.unit(0.19769417475, "meters"),
  47209. name: "Maw",
  47210. image: {
  47211. source: "./media/characters/rodryana/maw.svg"
  47212. }
  47213. },
  47214. slit: {
  47215. height: math.unit(0.31631067961, "meters"),
  47216. name: "Slit",
  47217. image: {
  47218. source: "./media/characters/rodryana/slit.svg"
  47219. }
  47220. },
  47221. },
  47222. [
  47223. {
  47224. name: "Normal",
  47225. height: math.unit(1.81, "meters")
  47226. },
  47227. {
  47228. name: "Mini Macro",
  47229. height: math.unit(181, "meters")
  47230. },
  47231. {
  47232. name: "Macro",
  47233. height: math.unit(452, "meters"),
  47234. default: true
  47235. },
  47236. {
  47237. name: "Mega Macro",
  47238. height: math.unit(1.375, "km")
  47239. },
  47240. {
  47241. name: "Giga Macro",
  47242. height: math.unit(13.575, "km")
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47248. {
  47249. front: {
  47250. height: math.unit(6, "feet"),
  47251. weight: math.unit(1000, "lb"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/asaya/front.svg",
  47255. extra: 1460/1200,
  47256. bottom: 71/1531
  47257. }
  47258. },
  47259. },
  47260. [
  47261. {
  47262. name: "Normal",
  47263. height: math.unit(8, "km"),
  47264. default: true
  47265. },
  47266. ]
  47267. ))
  47268. characterMakers.push(() => makeCharacter(
  47269. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47270. {
  47271. front: {
  47272. height: math.unit(3.5, "meters"),
  47273. name: "Front",
  47274. image: {
  47275. source: "./media/characters/sarzu-and-israz/front.svg",
  47276. extra: 1570/1558,
  47277. bottom: 150/1720
  47278. },
  47279. },
  47280. back: {
  47281. height: math.unit(3.5, "meters"),
  47282. name: "Back",
  47283. image: {
  47284. source: "./media/characters/sarzu-and-israz/back.svg",
  47285. extra: 1523/1509,
  47286. bottom: 132/1655
  47287. },
  47288. },
  47289. frontFemale: {
  47290. height: math.unit(3.5, "meters"),
  47291. name: "Front (Female)",
  47292. image: {
  47293. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47294. extra: 1570/1558,
  47295. bottom: 150/1720
  47296. },
  47297. },
  47298. frontHerm: {
  47299. height: math.unit(3.5, "meters"),
  47300. name: "Front (Herm)",
  47301. image: {
  47302. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47303. extra: 1570/1558,
  47304. bottom: 150/1720
  47305. },
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(3.5, "meters"),
  47312. default: true,
  47313. },
  47314. {
  47315. name: "Macro",
  47316. height: math.unit(65.5, "meters"),
  47317. },
  47318. ],
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47322. {
  47323. front: {
  47324. height: math.unit(6, "feet"),
  47325. weight: math.unit(250, "lb"),
  47326. name: "Front",
  47327. image: {
  47328. source: "./media/characters/zenimma/front.svg",
  47329. extra: 1346/1320,
  47330. bottom: 58/1404
  47331. }
  47332. },
  47333. back: {
  47334. height: math.unit(6, "feet"),
  47335. weight: math.unit(250, "lb"),
  47336. name: "Back",
  47337. image: {
  47338. source: "./media/characters/zenimma/back.svg",
  47339. extra: 1324/1308,
  47340. bottom: 44/1368
  47341. }
  47342. },
  47343. dick: {
  47344. height: math.unit(1.44, "feet"),
  47345. name: "Dick",
  47346. image: {
  47347. source: "./media/characters/zenimma/dick.svg"
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Canon Height",
  47354. height: math.unit(66, "miles"),
  47355. default: true
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47361. {
  47362. nude: {
  47363. height: math.unit(6, "feet"),
  47364. weight: math.unit(150, "lb"),
  47365. name: "Nude",
  47366. image: {
  47367. source: "./media/characters/shavon/nude.svg",
  47368. extra: 1242/1096,
  47369. bottom: 98/1340
  47370. }
  47371. },
  47372. dressed: {
  47373. height: math.unit(6, "feet"),
  47374. weight: math.unit(150, "lb"),
  47375. name: "Dressed",
  47376. image: {
  47377. source: "./media/characters/shavon/dressed.svg",
  47378. extra: 1242/1096,
  47379. bottom: 98/1340
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Macro",
  47386. height: math.unit(255, "feet"),
  47387. default: true
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47393. {
  47394. front: {
  47395. height: math.unit(6, "feet"),
  47396. name: "Front",
  47397. image: {
  47398. source: "./media/characters/steph/front.svg",
  47399. extra: 1430/1330,
  47400. bottom: 54/1484
  47401. }
  47402. },
  47403. },
  47404. [
  47405. {
  47406. name: "Normal",
  47407. height: math.unit(6, "feet"),
  47408. default: true
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47414. {
  47415. front: {
  47416. height: math.unit(9, "feet"),
  47417. weight: math.unit(400, "lb"),
  47418. name: "Front",
  47419. image: {
  47420. source: "./media/characters/kil'aman/front.svg",
  47421. extra: 1210/1159,
  47422. bottom: 109/1319
  47423. }
  47424. },
  47425. head: {
  47426. height: math.unit(2.14, "feet"),
  47427. name: "Head",
  47428. image: {
  47429. source: "./media/characters/kil'aman/head.svg"
  47430. }
  47431. },
  47432. maw: {
  47433. height: math.unit(1.21, "feet"),
  47434. name: "Maw",
  47435. image: {
  47436. source: "./media/characters/kil'aman/maw.svg"
  47437. }
  47438. },
  47439. foot: {
  47440. height: math.unit(1.7, "feet"),
  47441. name: "Foot",
  47442. image: {
  47443. source: "./media/characters/kil'aman/foot.svg"
  47444. }
  47445. },
  47446. dick: {
  47447. height: math.unit(2.1, "feet"),
  47448. name: "Dick",
  47449. image: {
  47450. source: "./media/characters/kil'aman/dick.svg"
  47451. }
  47452. },
  47453. },
  47454. [
  47455. {
  47456. name: "Normal",
  47457. height: math.unit(9, "feet")
  47458. },
  47459. {
  47460. name: "Canon Height",
  47461. height: math.unit(10, "miles"),
  47462. default: true
  47463. },
  47464. {
  47465. name: "Maximum",
  47466. height: math.unit(6e9, "miles")
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47472. {
  47473. front: {
  47474. height: math.unit(90, "feet"),
  47475. weight: math.unit(675000, "lb"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/qadan/front.svg",
  47479. extra: 1012/1004,
  47480. bottom: 78/1090
  47481. }
  47482. },
  47483. back: {
  47484. height: math.unit(90, "feet"),
  47485. weight: math.unit(675000, "lb"),
  47486. name: "Back",
  47487. image: {
  47488. source: "./media/characters/qadan/back.svg",
  47489. extra: 1042/1031,
  47490. bottom: 55/1097
  47491. }
  47492. },
  47493. armored: {
  47494. height: math.unit(90, "feet"),
  47495. weight: math.unit(675000, "lb"),
  47496. name: "Armored",
  47497. image: {
  47498. source: "./media/characters/qadan/armored.svg",
  47499. extra: 1047/1037,
  47500. bottom: 48/1095
  47501. }
  47502. },
  47503. },
  47504. [
  47505. {
  47506. name: "Normal",
  47507. height: math.unit(90, "feet"),
  47508. default: true
  47509. },
  47510. ]
  47511. ))
  47512. characterMakers.push(() => makeCharacter(
  47513. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47514. {
  47515. front: {
  47516. height: math.unit(6, "feet"),
  47517. weight: math.unit(225, "lb"),
  47518. name: "Front",
  47519. image: {
  47520. source: "./media/characters/brooke/front.svg",
  47521. extra: 1050/1010,
  47522. bottom: 66/1116
  47523. }
  47524. },
  47525. back: {
  47526. height: math.unit(6, "feet"),
  47527. weight: math.unit(225, "lb"),
  47528. name: "Back",
  47529. image: {
  47530. source: "./media/characters/brooke/back.svg",
  47531. extra: 1053/1013,
  47532. bottom: 41/1094
  47533. }
  47534. },
  47535. dressed: {
  47536. height: math.unit(6, "feet"),
  47537. weight: math.unit(225, "lb"),
  47538. name: "Dressed",
  47539. image: {
  47540. source: "./media/characters/brooke/dressed.svg",
  47541. extra: 1050/1010,
  47542. bottom: 66/1116
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Canon Height",
  47549. height: math.unit(500, "miles"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(6 + 2/12, "feet"),
  47559. weight: math.unit(210, "lb"),
  47560. name: "Front",
  47561. image: {
  47562. source: "./media/characters/wubs/front.svg",
  47563. extra: 1345/1325,
  47564. bottom: 70/1415
  47565. }
  47566. },
  47567. back: {
  47568. height: math.unit(6 + 2/12, "feet"),
  47569. weight: math.unit(210, "lb"),
  47570. name: "Back",
  47571. image: {
  47572. source: "./media/characters/wubs/back.svg",
  47573. extra: 1296/1275,
  47574. bottom: 58/1354
  47575. }
  47576. },
  47577. },
  47578. [
  47579. {
  47580. name: "Normal",
  47581. height: math.unit(6 + 2/12, "feet"),
  47582. default: true
  47583. },
  47584. {
  47585. name: "Macro",
  47586. height: math.unit(1000, "feet")
  47587. },
  47588. {
  47589. name: "Megamacro",
  47590. height: math.unit(1, "mile")
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(4, "feet"),
  47599. weight: math.unit(120, "lb"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/blue/front.svg",
  47603. extra: 1636/1525,
  47604. bottom: 43/1679
  47605. }
  47606. },
  47607. back: {
  47608. height: math.unit(4, "feet"),
  47609. weight: math.unit(120, "lb"),
  47610. name: "Back",
  47611. image: {
  47612. source: "./media/characters/blue/back.svg",
  47613. extra: 1660/1560,
  47614. bottom: 57/1717
  47615. }
  47616. },
  47617. paws: {
  47618. height: math.unit(0.826, "feet"),
  47619. name: "Paws",
  47620. image: {
  47621. source: "./media/characters/blue/paws.svg"
  47622. }
  47623. },
  47624. },
  47625. [
  47626. {
  47627. name: "Micro",
  47628. height: math.unit(3, "inches")
  47629. },
  47630. {
  47631. name: "Normal",
  47632. height: math.unit(4, "feet"),
  47633. default: true
  47634. },
  47635. {
  47636. name: "Femenine Form",
  47637. height: math.unit(14, "feet")
  47638. },
  47639. {
  47640. name: "Werebat Form",
  47641. height: math.unit(18, "feet")
  47642. },
  47643. ]
  47644. ))
  47645. characterMakers.push(() => makeCharacter(
  47646. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47647. {
  47648. female: {
  47649. height: math.unit(7 + 4/12, "feet"),
  47650. weight: math.unit(243, "lb"),
  47651. name: "Female",
  47652. image: {
  47653. source: "./media/characters/kaya/female.svg",
  47654. extra: 975/898,
  47655. bottom: 34/1009
  47656. }
  47657. },
  47658. herm: {
  47659. height: math.unit(7 + 4/12, "feet"),
  47660. weight: math.unit(243, "lb"),
  47661. name: "Herm",
  47662. image: {
  47663. source: "./media/characters/kaya/herm.svg",
  47664. extra: 975/898,
  47665. bottom: 34/1009
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(7 + 4/12, "feet"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47679. {
  47680. female: {
  47681. height: math.unit(9 + 4/12, "feet"),
  47682. weight: math.unit(398, "lb"),
  47683. name: "Female",
  47684. image: {
  47685. source: "./media/characters/kassandra/female.svg",
  47686. extra: 908/839,
  47687. bottom: 61/969
  47688. }
  47689. },
  47690. intersex: {
  47691. height: math.unit(9 + 4/12, "feet"),
  47692. weight: math.unit(398, "lb"),
  47693. name: "Intersex",
  47694. image: {
  47695. source: "./media/characters/kassandra/intersex.svg",
  47696. extra: 908/839,
  47697. bottom: 61/969
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Normal",
  47704. height: math.unit(9 + 4/12, "feet"),
  47705. default: true
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47711. {
  47712. front: {
  47713. height: math.unit(3, "meters"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/amy/front.svg",
  47717. extra: 1380/1343,
  47718. bottom: 70/1450
  47719. }
  47720. },
  47721. back: {
  47722. height: math.unit(3, "meters"),
  47723. name: "Back",
  47724. image: {
  47725. source: "./media/characters/amy/back.svg",
  47726. extra: 1380/1347,
  47727. bottom: 66/1446
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Normal",
  47734. height: math.unit(3, "meters"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47741. {
  47742. side: {
  47743. height: math.unit(47, "cm"),
  47744. weight: math.unit(10.8, "kg"),
  47745. name: "Side",
  47746. image: {
  47747. source: "./media/characters/alphaschakal/side.svg",
  47748. extra: 1058/568,
  47749. bottom: 62/1120
  47750. }
  47751. },
  47752. back: {
  47753. height: math.unit(78, "cm"),
  47754. weight: math.unit(10.8, "kg"),
  47755. name: "Back",
  47756. image: {
  47757. source: "./media/characters/alphaschakal/back.svg",
  47758. extra: 1102/942,
  47759. bottom: 185/1287
  47760. }
  47761. },
  47762. head: {
  47763. height: math.unit(28, "cm"),
  47764. name: "Head",
  47765. image: {
  47766. source: "./media/characters/alphaschakal/head.svg",
  47767. extra: 696/508,
  47768. bottom: 0/696
  47769. }
  47770. },
  47771. paw: {
  47772. height: math.unit(16, "cm"),
  47773. name: "Paw",
  47774. image: {
  47775. source: "./media/characters/alphaschakal/paw.svg"
  47776. }
  47777. },
  47778. },
  47779. [
  47780. {
  47781. name: "Normal",
  47782. height: math.unit(47, "cm"),
  47783. default: true
  47784. },
  47785. {
  47786. name: "Macro",
  47787. height: math.unit(340, "cm")
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47793. {
  47794. front: {
  47795. height: math.unit(36, "earths"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/ecobyss/front.svg",
  47799. extra: 1282/1215,
  47800. bottom: 11/1293
  47801. }
  47802. },
  47803. back: {
  47804. height: math.unit(36, "earths"),
  47805. name: "Back",
  47806. image: {
  47807. source: "./media/characters/ecobyss/back.svg",
  47808. extra: 1291/1222,
  47809. bottom: 8/1299
  47810. }
  47811. },
  47812. },
  47813. [
  47814. {
  47815. name: "Normal",
  47816. height: math.unit(36, "earths"),
  47817. default: true
  47818. },
  47819. ]
  47820. ))
  47821. characterMakers.push(() => makeCharacter(
  47822. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47823. {
  47824. front: {
  47825. height: math.unit(12, "feet"),
  47826. name: "Front",
  47827. image: {
  47828. source: "./media/characters/vasuk/front.svg",
  47829. extra: 1326/1207,
  47830. bottom: 64/1390
  47831. }
  47832. },
  47833. },
  47834. [
  47835. {
  47836. name: "Normal",
  47837. height: math.unit(12, "feet"),
  47838. default: true
  47839. },
  47840. ]
  47841. ))
  47842. characterMakers.push(() => makeCharacter(
  47843. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47844. {
  47845. side: {
  47846. height: math.unit(100, "feet"),
  47847. name: "Side",
  47848. image: {
  47849. source: "./media/characters/linneaus/side.svg",
  47850. extra: 987/807,
  47851. bottom: 47/1034
  47852. }
  47853. },
  47854. },
  47855. [
  47856. {
  47857. name: "Macro",
  47858. height: math.unit(100, "feet"),
  47859. default: true
  47860. },
  47861. ]
  47862. ))
  47863. characterMakers.push(() => makeCharacter(
  47864. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47865. {
  47866. front: {
  47867. height: math.unit(8, "feet"),
  47868. weight: math.unit(1200, "lb"),
  47869. name: "Front",
  47870. image: {
  47871. source: "./media/characters/nyterious-daligdig/front.svg",
  47872. extra: 1284/1094,
  47873. bottom: 84/1368
  47874. }
  47875. },
  47876. back: {
  47877. height: math.unit(8, "feet"),
  47878. weight: math.unit(1200, "lb"),
  47879. name: "Back",
  47880. image: {
  47881. source: "./media/characters/nyterious-daligdig/back.svg",
  47882. extra: 1301/1121,
  47883. bottom: 129/1430
  47884. }
  47885. },
  47886. mouth: {
  47887. height: math.unit(1.464, "feet"),
  47888. name: "Mouth",
  47889. image: {
  47890. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Small",
  47897. height: math.unit(8, "feet"),
  47898. default: true
  47899. },
  47900. {
  47901. name: "Normal",
  47902. height: math.unit(15, "feet")
  47903. },
  47904. {
  47905. name: "Macro",
  47906. height: math.unit(90, "feet")
  47907. },
  47908. ]
  47909. ))
  47910. characterMakers.push(() => makeCharacter(
  47911. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47912. {
  47913. front: {
  47914. height: math.unit(7 + 4/12, "feet"),
  47915. weight: math.unit(252, "lb"),
  47916. name: "Front",
  47917. image: {
  47918. source: "./media/characters/bandel/front.svg",
  47919. extra: 1946/1775,
  47920. bottom: 26/1972
  47921. }
  47922. },
  47923. back: {
  47924. height: math.unit(7 + 4/12, "feet"),
  47925. weight: math.unit(252, "lb"),
  47926. name: "Back",
  47927. image: {
  47928. source: "./media/characters/bandel/back.svg",
  47929. extra: 1940/1770,
  47930. bottom: 25/1965
  47931. }
  47932. },
  47933. maw: {
  47934. height: math.unit(2.15, "feet"),
  47935. name: "Maw",
  47936. image: {
  47937. source: "./media/characters/bandel/maw.svg"
  47938. }
  47939. },
  47940. stomach: {
  47941. height: math.unit(1.95, "feet"),
  47942. name: "Stomach",
  47943. image: {
  47944. source: "./media/characters/bandel/stomach.svg"
  47945. }
  47946. },
  47947. },
  47948. [
  47949. {
  47950. name: "Normal",
  47951. height: math.unit(7 + 4/12, "feet"),
  47952. default: true
  47953. },
  47954. ]
  47955. ))
  47956. characterMakers.push(() => makeCharacter(
  47957. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47958. {
  47959. front: {
  47960. height: math.unit(10 + 5/12, "feet"),
  47961. weight: math.unit(773.5, "kg"),
  47962. name: "Front",
  47963. image: {
  47964. source: "./media/characters/zed/front.svg",
  47965. extra: 987/941,
  47966. bottom: 52/1039
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Short",
  47973. height: math.unit(5 + 4/12, "feet")
  47974. },
  47975. {
  47976. name: "Average",
  47977. height: math.unit(10 + 5/12, "feet"),
  47978. default: true
  47979. },
  47980. {
  47981. name: "Mini-Macro",
  47982. height: math.unit(24 + 9/12, "feet")
  47983. },
  47984. {
  47985. name: "Macro",
  47986. height: math.unit(249, "feet")
  47987. },
  47988. {
  47989. name: "Mega-Macro",
  47990. height: math.unit(12490, "feet")
  47991. },
  47992. {
  47993. name: "Giga-Macro",
  47994. height: math.unit(24.9, "miles")
  47995. },
  47996. {
  47997. name: "Tera-Macro",
  47998. height: math.unit(24900, "miles")
  47999. },
  48000. {
  48001. name: "Cosmic Scale",
  48002. height: math.unit(38.9, "lightyears")
  48003. },
  48004. {
  48005. name: "Universal Scale",
  48006. height: math.unit(138e12, "lightyears")
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48012. {
  48013. front: {
  48014. height: math.unit(1561, "inches"),
  48015. name: "Front",
  48016. image: {
  48017. source: "./media/characters/ivan/front.svg",
  48018. extra: 1126/1071,
  48019. bottom: 26/1152
  48020. }
  48021. },
  48022. back: {
  48023. height: math.unit(1561, "inches"),
  48024. name: "Back",
  48025. image: {
  48026. source: "./media/characters/ivan/back.svg",
  48027. extra: 1134/1079,
  48028. bottom: 30/1164
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Normal",
  48035. height: math.unit(1561, "inches"),
  48036. default: true
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48042. {
  48043. front: {
  48044. height: math.unit(5 + 7/12, "feet"),
  48045. weight: math.unit(150, "lb"),
  48046. name: "Front",
  48047. image: {
  48048. source: "./media/characters/robin-arctic-hare/front.svg",
  48049. extra: 1148/974,
  48050. bottom: 20/1168
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(5 + 7/12, "feet"),
  48058. default: true
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48064. {
  48065. side: {
  48066. height: math.unit(5, "feet"),
  48067. name: "Side",
  48068. image: {
  48069. source: "./media/characters/birch/side.svg",
  48070. extra: 985/796,
  48071. bottom: 111/1096
  48072. }
  48073. },
  48074. },
  48075. [
  48076. {
  48077. name: "Normal",
  48078. height: math.unit(5, "feet"),
  48079. default: true
  48080. },
  48081. ]
  48082. ))
  48083. characterMakers.push(() => makeCharacter(
  48084. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48085. {
  48086. front: {
  48087. height: math.unit(4, "feet"),
  48088. name: "Front",
  48089. image: {
  48090. source: "./media/characters/rasp/front.svg",
  48091. extra: 561/478,
  48092. bottom: 74/635
  48093. }
  48094. },
  48095. },
  48096. [
  48097. {
  48098. name: "Normal",
  48099. height: math.unit(4, "feet"),
  48100. default: true
  48101. },
  48102. ]
  48103. ))
  48104. characterMakers.push(() => makeCharacter(
  48105. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48106. {
  48107. front: {
  48108. height: math.unit(4 + 6/12, "feet"),
  48109. name: "Front",
  48110. image: {
  48111. source: "./media/characters/agatha/front.svg",
  48112. extra: 947/933,
  48113. bottom: 42/989
  48114. }
  48115. },
  48116. back: {
  48117. height: math.unit(4 + 6/12, "feet"),
  48118. name: "Back",
  48119. image: {
  48120. source: "./media/characters/agatha/back.svg",
  48121. extra: 935/922,
  48122. bottom: 48/983
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(4 + 6 /12, "feet"),
  48130. default: true
  48131. },
  48132. {
  48133. name: "Max Size",
  48134. height: math.unit(500, "feet")
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48140. {
  48141. side: {
  48142. height: math.unit(30, "feet"),
  48143. name: "Side",
  48144. image: {
  48145. source: "./media/characters/roggy/side.svg",
  48146. extra: 909/643,
  48147. bottom: 63/972
  48148. }
  48149. },
  48150. lounging: {
  48151. height: math.unit(20, "feet"),
  48152. name: "Lounging",
  48153. image: {
  48154. source: "./media/characters/roggy/lounging.svg",
  48155. extra: 643/479,
  48156. bottom: 145/788
  48157. }
  48158. },
  48159. handpaw: {
  48160. height: math.unit(13.1, "feet"),
  48161. name: "Handpaw",
  48162. image: {
  48163. source: "./media/characters/roggy/handpaw.svg"
  48164. }
  48165. },
  48166. footpaw: {
  48167. height: math.unit(15.8, "feet"),
  48168. name: "Footpaw",
  48169. image: {
  48170. source: "./media/characters/roggy/footpaw.svg"
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Menacing",
  48177. height: math.unit(30, "feet"),
  48178. default: true
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48184. {
  48185. front: {
  48186. height: math.unit(5 + 7/12, "feet"),
  48187. weight: math.unit(135, "lb"),
  48188. name: "Front",
  48189. image: {
  48190. source: "./media/characters/naomi/front.svg",
  48191. extra: 1209/1154,
  48192. bottom: 129/1338
  48193. }
  48194. },
  48195. back: {
  48196. height: math.unit(5 + 7/12, "feet"),
  48197. weight: math.unit(135, "lb"),
  48198. name: "Back",
  48199. image: {
  48200. source: "./media/characters/naomi/back.svg",
  48201. extra: 1252/1190,
  48202. bottom: 23/1275
  48203. }
  48204. },
  48205. },
  48206. [
  48207. {
  48208. name: "Normal",
  48209. height: math.unit(5 + 7 /12, "feet"),
  48210. default: true
  48211. },
  48212. ]
  48213. ))
  48214. characterMakers.push(() => makeCharacter(
  48215. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48216. {
  48217. side: {
  48218. height: math.unit(35, "meters"),
  48219. name: "Side",
  48220. image: {
  48221. source: "./media/characters/kimpi/side.svg",
  48222. extra: 419/382,
  48223. bottom: 63/482
  48224. }
  48225. },
  48226. hand: {
  48227. height: math.unit(8.96, "meters"),
  48228. name: "Hand",
  48229. image: {
  48230. source: "./media/characters/kimpi/hand.svg"
  48231. }
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Normal",
  48237. height: math.unit(35, "meters"),
  48238. default: true
  48239. },
  48240. ]
  48241. ))
  48242. characterMakers.push(() => makeCharacter(
  48243. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48244. {
  48245. front: {
  48246. height: math.unit(4 + 4/12, "feet"),
  48247. name: "Front",
  48248. image: {
  48249. source: "./media/characters/pepper-purrloin/front.svg",
  48250. extra: 1141/1024,
  48251. bottom: 21/1162
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(4 + 4/12, "feet"),
  48259. default: true
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48265. {
  48266. front: {
  48267. height: math.unit(6 + 2/12, "feet"),
  48268. name: "Front",
  48269. image: {
  48270. source: "./media/characters/raphael/front.svg",
  48271. extra: 1101/962,
  48272. bottom: 59/1160
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Normal",
  48279. height: math.unit(6 + 2/12, "feet"),
  48280. default: true
  48281. },
  48282. ]
  48283. ))
  48284. characterMakers.push(() => makeCharacter(
  48285. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48286. {
  48287. front: {
  48288. height: math.unit(6, "feet"),
  48289. weight: math.unit(150, "lb"),
  48290. name: "Front",
  48291. image: {
  48292. source: "./media/characters/victor-williams/front.svg",
  48293. extra: 1894/1825,
  48294. bottom: 67/1961
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(6, "feet"),
  48302. default: true
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48308. {
  48309. front: {
  48310. height: math.unit(5 + 8/12, "feet"),
  48311. weight: math.unit(150, "lb"),
  48312. name: "Front",
  48313. image: {
  48314. source: "./media/characters/rachel/front.svg",
  48315. extra: 1902/1787,
  48316. bottom: 46/1948
  48317. }
  48318. },
  48319. },
  48320. [
  48321. {
  48322. name: "Base Height",
  48323. height: math.unit(5 + 8/12, "feet"),
  48324. default: true
  48325. },
  48326. {
  48327. name: "Macro",
  48328. height: math.unit(200, "feet")
  48329. },
  48330. {
  48331. name: "Mega Macro",
  48332. height: math.unit(1, "mile")
  48333. },
  48334. {
  48335. name: "Giga Macro",
  48336. height: math.unit(1500, "miles")
  48337. },
  48338. {
  48339. name: "Tera Macro",
  48340. height: math.unit(8000, "miles")
  48341. },
  48342. {
  48343. name: "Tera Macro+",
  48344. height: math.unit(2e5, "miles")
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48350. {
  48351. front: {
  48352. height: math.unit(6.5, "feet"),
  48353. name: "Front",
  48354. image: {
  48355. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48356. extra: 860/819,
  48357. bottom: 307/1167
  48358. }
  48359. },
  48360. back: {
  48361. height: math.unit(6.5, "feet"),
  48362. name: "Back",
  48363. image: {
  48364. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48365. extra: 880/837,
  48366. bottom: 395/1275
  48367. }
  48368. },
  48369. sleeping: {
  48370. height: math.unit(2.79, "feet"),
  48371. name: "Sleeping",
  48372. image: {
  48373. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48374. extra: 465/383,
  48375. bottom: 263/728
  48376. }
  48377. },
  48378. maw: {
  48379. height: math.unit(2.52, "feet"),
  48380. name: "Maw",
  48381. image: {
  48382. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48383. }
  48384. },
  48385. },
  48386. [
  48387. {
  48388. name: "Normal",
  48389. height: math.unit(6.5, "feet"),
  48390. default: true
  48391. },
  48392. ]
  48393. ))
  48394. characterMakers.push(() => makeCharacter(
  48395. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48396. {
  48397. front: {
  48398. height: math.unit(5, "feet"),
  48399. name: "Front",
  48400. image: {
  48401. source: "./media/characters/nova-nerium/front.svg",
  48402. extra: 1548/1392,
  48403. bottom: 374/1922
  48404. }
  48405. },
  48406. back: {
  48407. height: math.unit(5, "feet"),
  48408. name: "Back",
  48409. image: {
  48410. source: "./media/characters/nova-nerium/back.svg",
  48411. extra: 1658/1468,
  48412. bottom: 257/1915
  48413. }
  48414. },
  48415. },
  48416. [
  48417. {
  48418. name: "Normal",
  48419. height: math.unit(5, "feet"),
  48420. default: true
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48426. {
  48427. front: {
  48428. height: math.unit(5 + 4/12, "feet"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/ashe-pyriph/front.svg",
  48432. extra: 1935/1747,
  48433. bottom: 60/1995
  48434. }
  48435. },
  48436. },
  48437. [
  48438. {
  48439. name: "Normal",
  48440. height: math.unit(5 + 4/12, "feet"),
  48441. default: true
  48442. },
  48443. ]
  48444. ))
  48445. characterMakers.push(() => makeCharacter(
  48446. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48447. {
  48448. front: {
  48449. height: math.unit(8.7, "feet"),
  48450. name: "Front",
  48451. image: {
  48452. source: "./media/characters/flicker-wisp/front.svg",
  48453. extra: 1835/1613,
  48454. bottom: 449/2284
  48455. }
  48456. },
  48457. side: {
  48458. height: math.unit(8.7, "feet"),
  48459. name: "Side",
  48460. image: {
  48461. source: "./media/characters/flicker-wisp/side.svg",
  48462. extra: 1841/1642,
  48463. bottom: 336/2177
  48464. },
  48465. default: true
  48466. },
  48467. maw: {
  48468. height: math.unit(3.35, "feet"),
  48469. name: "Maw",
  48470. image: {
  48471. source: "./media/characters/flicker-wisp/maw.svg",
  48472. extra: 2338/1506,
  48473. bottom: 0/2338
  48474. }
  48475. },
  48476. ovipositor: {
  48477. height: math.unit(4.95, "feet"),
  48478. name: "Ovipositor",
  48479. image: {
  48480. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48481. }
  48482. },
  48483. egg: {
  48484. height: math.unit(0.385, "feet"),
  48485. weight: math.unit(2, "lb"),
  48486. name: "Egg",
  48487. image: {
  48488. source: "./media/characters/flicker-wisp/egg.svg"
  48489. }
  48490. },
  48491. },
  48492. [
  48493. {
  48494. name: "Normal",
  48495. height: math.unit(8.7, "feet"),
  48496. default: true
  48497. },
  48498. ]
  48499. ))
  48500. characterMakers.push(() => makeCharacter(
  48501. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48502. {
  48503. side: {
  48504. height: math.unit(11, "feet"),
  48505. name: "Side",
  48506. image: {
  48507. source: "./media/characters/faefnul/side.svg",
  48508. extra: 1100/1007,
  48509. bottom: 0/1100
  48510. }
  48511. },
  48512. },
  48513. [
  48514. {
  48515. name: "Normal",
  48516. height: math.unit(11, "feet"),
  48517. default: true
  48518. },
  48519. ]
  48520. ))
  48521. characterMakers.push(() => makeCharacter(
  48522. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48523. {
  48524. front: {
  48525. height: math.unit(6 + 2/12, "feet"),
  48526. name: "Front",
  48527. image: {
  48528. source: "./media/characters/shady/front.svg",
  48529. extra: 502/461,
  48530. bottom: 9/511
  48531. }
  48532. },
  48533. kneeling: {
  48534. height: math.unit(4.6, "feet"),
  48535. name: "Kneeling",
  48536. image: {
  48537. source: "./media/characters/shady/kneeling.svg",
  48538. extra: 1328/1219,
  48539. bottom: 117/1445
  48540. }
  48541. },
  48542. maw: {
  48543. height: math.unit(2, "feet"),
  48544. name: "Maw",
  48545. image: {
  48546. source: "./media/characters/shady/maw.svg"
  48547. }
  48548. },
  48549. },
  48550. [
  48551. {
  48552. name: "Nano",
  48553. height: math.unit(1, "mm")
  48554. },
  48555. {
  48556. name: "Micro",
  48557. height: math.unit(12, "mm")
  48558. },
  48559. {
  48560. name: "Tiny",
  48561. height: math.unit(3, "inches")
  48562. },
  48563. {
  48564. name: "Normal",
  48565. height: math.unit(6 + 2/12, "feet"),
  48566. default: true
  48567. },
  48568. {
  48569. name: "Big",
  48570. height: math.unit(15, "feet")
  48571. },
  48572. {
  48573. name: "Macro",
  48574. height: math.unit(150, "feet")
  48575. },
  48576. {
  48577. name: "Titanic",
  48578. height: math.unit(500, "feet")
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48584. {
  48585. front: {
  48586. height: math.unit(12, "feet"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/fenrir/front.svg",
  48590. extra: 968/875,
  48591. bottom: 22/990
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Big",
  48598. height: math.unit(12, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(5 + 4/12, "feet"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/makar/front.svg",
  48611. extra: 1181/1112,
  48612. bottom: 78/1259
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(5 + 4/12, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(5 + 7/12, "feet"),
  48629. name: "Front",
  48630. image: {
  48631. source: "./media/characters/callow/front.svg",
  48632. extra: 1482/1304,
  48633. bottom: 23/1505
  48634. }
  48635. },
  48636. back: {
  48637. height: math.unit(5 + 7/12, "feet"),
  48638. name: "Back",
  48639. image: {
  48640. source: "./media/characters/callow/back.svg",
  48641. extra: 1484/1296,
  48642. bottom: 25/1509
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Micro",
  48649. height: math.unit(3, "inches"),
  48650. default: true
  48651. },
  48652. {
  48653. name: "Normal",
  48654. height: math.unit(5 + 7/12, "feet")
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(6 + 2/12, "feet"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/natel/front.svg",
  48666. extra: 1833/1692,
  48667. bottom: 166/1999
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Normal",
  48674. height: math.unit(6 + 2/12, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(1.75, "meters"),
  48684. name: "Front",
  48685. image: {
  48686. source: "./media/characters/misu/front.svg",
  48687. extra: 1690/1558,
  48688. bottom: 234/1924
  48689. }
  48690. },
  48691. back: {
  48692. height: math.unit(1.75, "meters"),
  48693. name: "Back",
  48694. image: {
  48695. source: "./media/characters/misu/back.svg",
  48696. extra: 1762/1618,
  48697. bottom: 146/1908
  48698. }
  48699. },
  48700. frontNude: {
  48701. height: math.unit(1.75, "meters"),
  48702. name: "Front (Nude)",
  48703. image: {
  48704. source: "./media/characters/misu/front-nude.svg",
  48705. extra: 1690/1558,
  48706. bottom: 234/1924
  48707. }
  48708. },
  48709. backNude: {
  48710. height: math.unit(1.75, "meters"),
  48711. name: "Back (Nude)",
  48712. image: {
  48713. source: "./media/characters/misu/back-nude.svg",
  48714. extra: 1762/1618,
  48715. bottom: 146/1908
  48716. }
  48717. },
  48718. frontErect: {
  48719. height: math.unit(1.75, "meters"),
  48720. name: "Front (Erect)",
  48721. image: {
  48722. source: "./media/characters/misu/front-erect.svg",
  48723. extra: 1690/1558,
  48724. bottom: 234/1924
  48725. }
  48726. },
  48727. maw: {
  48728. height: math.unit(0.47, "meters"),
  48729. name: "Maw",
  48730. image: {
  48731. source: "./media/characters/misu/maw.svg"
  48732. }
  48733. },
  48734. head: {
  48735. height: math.unit(0.35, "meters"),
  48736. name: "Head",
  48737. image: {
  48738. source: "./media/characters/misu/head.svg"
  48739. }
  48740. },
  48741. rear: {
  48742. height: math.unit(0.47, "meters"),
  48743. name: "Rear",
  48744. image: {
  48745. source: "./media/characters/misu/rear.svg"
  48746. }
  48747. },
  48748. },
  48749. [
  48750. {
  48751. name: "Normal",
  48752. height: math.unit(1.75, "meters")
  48753. },
  48754. {
  48755. name: "Not good for the people",
  48756. height: math.unit(42, "meters")
  48757. },
  48758. {
  48759. name: "Not good for the neighborhood",
  48760. height: math.unit(135, "meters")
  48761. },
  48762. {
  48763. name: "Bit bigger problem",
  48764. height: math.unit(380, "meters"),
  48765. default: true
  48766. },
  48767. {
  48768. name: "Not good for the city",
  48769. height: math.unit(1.5, "km")
  48770. },
  48771. {
  48772. name: "Not good for the county",
  48773. height: math.unit(5.5, "km")
  48774. },
  48775. {
  48776. name: "Not good for the state",
  48777. height: math.unit(25, "km")
  48778. },
  48779. {
  48780. name: "Not good for the country",
  48781. height: math.unit(125, "km")
  48782. },
  48783. {
  48784. name: "Not good for the continent",
  48785. height: math.unit(2100, "km")
  48786. },
  48787. {
  48788. name: "Not good for the planet",
  48789. height: math.unit(35000, "km")
  48790. },
  48791. {
  48792. name: "Just no",
  48793. height: math.unit(8.5e18, "km")
  48794. },
  48795. ]
  48796. ))
  48797. characterMakers.push(() => makeCharacter(
  48798. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48799. {
  48800. front: {
  48801. height: math.unit(6.5, "feet"),
  48802. name: "Front",
  48803. image: {
  48804. source: "./media/characters/poppy/front.svg",
  48805. extra: 1878/1812,
  48806. bottom: 43/1921
  48807. }
  48808. },
  48809. feet: {
  48810. height: math.unit(1.06, "feet"),
  48811. name: "Feet",
  48812. image: {
  48813. source: "./media/characters/poppy/feet.svg",
  48814. extra: 1083/1083,
  48815. bottom: 87/1170
  48816. }
  48817. },
  48818. },
  48819. [
  48820. {
  48821. name: "Human",
  48822. height: math.unit(6.5, "feet")
  48823. },
  48824. {
  48825. name: "Default",
  48826. height: math.unit(300, "feet"),
  48827. default: true
  48828. },
  48829. {
  48830. name: "Huge",
  48831. height: math.unit(850, "feet")
  48832. },
  48833. {
  48834. name: "Mega",
  48835. height: math.unit(8000, "feet")
  48836. },
  48837. {
  48838. name: "Giga",
  48839. height: math.unit(300, "miles")
  48840. },
  48841. ]
  48842. ))
  48843. characterMakers.push(() => makeCharacter(
  48844. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48845. {
  48846. bipedal: {
  48847. height: math.unit(7, "feet"),
  48848. name: "Bipedal",
  48849. image: {
  48850. source: "./media/characters/zener/bipedal.svg",
  48851. extra: 874/805,
  48852. bottom: 109/983
  48853. }
  48854. },
  48855. quadrupedal: {
  48856. height: math.unit(4.64, "feet"),
  48857. name: "Quadrupedal",
  48858. image: {
  48859. source: "./media/characters/zener/quadrupedal.svg",
  48860. extra: 638/507,
  48861. bottom: 190/828
  48862. }
  48863. },
  48864. cock: {
  48865. height: math.unit(18, "inches"),
  48866. name: "Cock",
  48867. image: {
  48868. source: "./media/characters/zener/cock.svg"
  48869. }
  48870. },
  48871. },
  48872. [
  48873. {
  48874. name: "Normal",
  48875. height: math.unit(7, "feet"),
  48876. default: true
  48877. },
  48878. ]
  48879. ))
  48880. characterMakers.push(() => makeCharacter(
  48881. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48882. {
  48883. nude: {
  48884. height: math.unit(5 + 6/12, "feet"),
  48885. name: "Nude",
  48886. image: {
  48887. source: "./media/characters/charlie-dog/nude.svg",
  48888. extra: 768/734,
  48889. bottom: 26/794
  48890. }
  48891. },
  48892. dressed: {
  48893. height: math.unit(5 + 6/12, "feet"),
  48894. name: "Dressed",
  48895. image: {
  48896. source: "./media/characters/charlie-dog/dressed.svg",
  48897. extra: 768/734,
  48898. bottom: 26/794
  48899. }
  48900. },
  48901. },
  48902. [
  48903. {
  48904. name: "Normal",
  48905. height: math.unit(5 + 6/12, "feet"),
  48906. default: true
  48907. },
  48908. ]
  48909. ))
  48910. characterMakers.push(() => makeCharacter(
  48911. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48912. {
  48913. front: {
  48914. height: math.unit(6 + 4/12, "feet"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/ir'istrasz/front.svg",
  48918. extra: 1014/977,
  48919. bottom: 65/1079
  48920. }
  48921. },
  48922. back: {
  48923. height: math.unit(6 + 4/12, "feet"),
  48924. name: "Back",
  48925. image: {
  48926. source: "./media/characters/ir'istrasz/back.svg",
  48927. extra: 1024/992,
  48928. bottom: 34/1058
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(6 + 4/12, "feet"),
  48936. default: true
  48937. },
  48938. ]
  48939. ))
  48940. characterMakers.push(() => makeCharacter(
  48941. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48942. {
  48943. front: {
  48944. height: math.unit(5 + 8/12, "feet"),
  48945. name: "Front",
  48946. image: {
  48947. source: "./media/characters/dee-ditto/front.svg",
  48948. extra: 1874/1785,
  48949. bottom: 68/1942
  48950. }
  48951. },
  48952. back: {
  48953. height: math.unit(5 + 8/12, "feet"),
  48954. name: "Back",
  48955. image: {
  48956. source: "./media/characters/dee-ditto/back.svg",
  48957. extra: 1870/1783,
  48958. bottom: 77/1947
  48959. }
  48960. },
  48961. },
  48962. [
  48963. {
  48964. name: "Normal",
  48965. height: math.unit(5 + 8/12, "feet"),
  48966. default: true
  48967. },
  48968. ]
  48969. ))
  48970. characterMakers.push(() => makeCharacter(
  48971. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48972. {
  48973. front: {
  48974. height: math.unit(7 + 6/12, "feet"),
  48975. name: "Front",
  48976. image: {
  48977. source: "./media/characters/fey/front.svg",
  48978. extra: 995/979,
  48979. bottom: 30/1025
  48980. }
  48981. },
  48982. back: {
  48983. height: math.unit(7 + 6/12, "feet"),
  48984. name: "Back",
  48985. image: {
  48986. source: "./media/characters/fey/back.svg",
  48987. extra: 1079/1008,
  48988. bottom: 5/1084
  48989. }
  48990. },
  48991. dressed: {
  48992. height: math.unit(7 + 6/12, "feet"),
  48993. name: "Dressed",
  48994. image: {
  48995. source: "./media/characters/fey/dressed.svg",
  48996. extra: 995/979,
  48997. bottom: 30/1025
  48998. }
  48999. },
  49000. },
  49001. [
  49002. {
  49003. name: "Normal",
  49004. height: math.unit(7 + 6/12, "feet"),
  49005. default: true
  49006. },
  49007. ]
  49008. ))
  49009. characterMakers.push(() => makeCharacter(
  49010. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49011. {
  49012. standing: {
  49013. height: math.unit(17, "feet"),
  49014. name: "Standing",
  49015. image: {
  49016. source: "./media/characters/aster/standing.svg",
  49017. extra: 1798/1598,
  49018. bottom: 117/1915
  49019. }
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Normal",
  49025. height: math.unit(17, "feet"),
  49026. default: true
  49027. },
  49028. {
  49029. name: "Homewrecker",
  49030. height: math.unit(95, "feet")
  49031. },
  49032. {
  49033. name: "Planet Devourer",
  49034. height: math.unit(1008000, "miles")
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49040. {
  49041. front: {
  49042. height: math.unit(6 + 5/12, "feet"),
  49043. weight: math.unit(265, "lb"),
  49044. name: "Front",
  49045. image: {
  49046. source: "./media/characters/devon-childs/front.svg",
  49047. extra: 1795/1721,
  49048. bottom: 41/1836
  49049. }
  49050. },
  49051. side: {
  49052. height: math.unit(6 + 5/12, "feet"),
  49053. weight: math.unit(265, "lb"),
  49054. name: "Side",
  49055. image: {
  49056. source: "./media/characters/devon-childs/side.svg",
  49057. extra: 1812/1738,
  49058. bottom: 30/1842
  49059. }
  49060. },
  49061. back: {
  49062. height: math.unit(6 + 5/12, "feet"),
  49063. weight: math.unit(265, "lb"),
  49064. name: "Back",
  49065. image: {
  49066. source: "./media/characters/devon-childs/back.svg",
  49067. extra: 1808/1735,
  49068. bottom: 23/1831
  49069. }
  49070. },
  49071. hand: {
  49072. height: math.unit(1.464, "feet"),
  49073. name: "Hand",
  49074. image: {
  49075. source: "./media/characters/devon-childs/hand.svg"
  49076. }
  49077. },
  49078. foot: {
  49079. height: math.unit(1.6, "feet"),
  49080. name: "Foot",
  49081. image: {
  49082. source: "./media/characters/devon-childs/foot.svg"
  49083. }
  49084. },
  49085. },
  49086. [
  49087. {
  49088. name: "Micro",
  49089. height: math.unit(7, "cm")
  49090. },
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(6 + 5/12, "feet"),
  49094. default: true
  49095. },
  49096. {
  49097. name: "Macro",
  49098. height: math.unit(154, "feet")
  49099. },
  49100. ]
  49101. ))
  49102. characterMakers.push(() => makeCharacter(
  49103. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49104. {
  49105. front: {
  49106. height: math.unit(6, "feet"),
  49107. weight: math.unit(180, "lb"),
  49108. name: "Front",
  49109. image: {
  49110. source: "./media/characters/lydemox-vir/front.svg",
  49111. extra: 1632/1435,
  49112. bottom: 58/1690
  49113. }
  49114. },
  49115. frontSFW: {
  49116. height: math.unit(6, "feet"),
  49117. weight: math.unit(180, "lb"),
  49118. name: "Front (SFW)",
  49119. image: {
  49120. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49121. extra: 1632/1435,
  49122. bottom: 58/1690
  49123. }
  49124. },
  49125. back: {
  49126. height: math.unit(6, "feet"),
  49127. weight: math.unit(180, "lb"),
  49128. name: "Back",
  49129. image: {
  49130. source: "./media/characters/lydemox-vir/back.svg",
  49131. extra: 1593/1408,
  49132. bottom: 31/1624
  49133. }
  49134. },
  49135. paw: {
  49136. height: math.unit(1.85, "feet"),
  49137. name: "Paw",
  49138. image: {
  49139. source: "./media/characters/lydemox-vir/paw.svg"
  49140. }
  49141. },
  49142. dick: {
  49143. height: math.unit(1.8, "feet"),
  49144. name: "Dick",
  49145. image: {
  49146. source: "./media/characters/lydemox-vir/dick.svg"
  49147. }
  49148. },
  49149. },
  49150. [
  49151. {
  49152. name: "Macro",
  49153. height: math.unit(100, "feet"),
  49154. default: true
  49155. },
  49156. {
  49157. name: "Teramacro",
  49158. height: math.unit(1, "earth")
  49159. },
  49160. {
  49161. name: "Planetary",
  49162. height: math.unit(20, "earths")
  49163. },
  49164. ]
  49165. ))
  49166. characterMakers.push(() => makeCharacter(
  49167. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49168. {
  49169. front: {
  49170. height: math.unit(15 + 8/12, "feet"),
  49171. weight: math.unit(1237, "kg"),
  49172. name: "Front",
  49173. image: {
  49174. source: "./media/characters/mia/front.svg",
  49175. extra: 1573/1446,
  49176. bottom: 58/1631
  49177. }
  49178. },
  49179. },
  49180. [
  49181. {
  49182. name: "Small",
  49183. height: math.unit(9 + 5/12, "feet")
  49184. },
  49185. {
  49186. name: "Normal",
  49187. height: math.unit(15 + 8/12, "feet"),
  49188. default: true
  49189. },
  49190. ]
  49191. ))
  49192. characterMakers.push(() => makeCharacter(
  49193. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49194. {
  49195. front: {
  49196. height: math.unit(10 + 6/12, "feet"),
  49197. weight: math.unit(1.3, "tons"),
  49198. name: "Front",
  49199. image: {
  49200. source: "./media/characters/mr-graves/front.svg",
  49201. extra: 1779/1695,
  49202. bottom: 198/1977
  49203. }
  49204. },
  49205. },
  49206. [
  49207. {
  49208. name: "Normal",
  49209. height: math.unit(10 + 6 /12, "feet"),
  49210. default: true
  49211. },
  49212. ]
  49213. ))
  49214. characterMakers.push(() => makeCharacter(
  49215. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49216. {
  49217. dressedFront: {
  49218. height: math.unit(5 + 8/12, "feet"),
  49219. weight: math.unit(125, "lb"),
  49220. name: "Dressed (Front)",
  49221. image: {
  49222. source: "./media/characters/jess/dressed-front.svg",
  49223. extra: 1176/1152,
  49224. bottom: 42/1218
  49225. }
  49226. },
  49227. dressedSide: {
  49228. height: math.unit(5 + 8/12, "feet"),
  49229. weight: math.unit(125, "lb"),
  49230. name: "Dressed (Side)",
  49231. image: {
  49232. source: "./media/characters/jess/dressed-side.svg",
  49233. extra: 1204/1190,
  49234. bottom: 6/1210
  49235. }
  49236. },
  49237. nudeFront: {
  49238. height: math.unit(5 + 8/12, "feet"),
  49239. weight: math.unit(125, "lb"),
  49240. name: "Nude (Front)",
  49241. image: {
  49242. source: "./media/characters/jess/nude-front.svg",
  49243. extra: 1176/1152,
  49244. bottom: 42/1218
  49245. }
  49246. },
  49247. nudeSide: {
  49248. height: math.unit(5 + 8/12, "feet"),
  49249. weight: math.unit(125, "lb"),
  49250. name: "Nude (Side)",
  49251. image: {
  49252. source: "./media/characters/jess/nude-side.svg",
  49253. extra: 1204/1190,
  49254. bottom: 6/1210
  49255. }
  49256. },
  49257. organsFront: {
  49258. height: math.unit(2.83799342105, "feet"),
  49259. name: "Organs (Front)",
  49260. image: {
  49261. source: "./media/characters/jess/organs-front.svg"
  49262. }
  49263. },
  49264. organsSide: {
  49265. height: math.unit(2.64225290474, "feet"),
  49266. name: "Organs (Side)",
  49267. image: {
  49268. source: "./media/characters/jess/organs-side.svg"
  49269. }
  49270. },
  49271. digestiveTractFront: {
  49272. height: math.unit(2.8106580871, "feet"),
  49273. name: "Digestive Tract (Front)",
  49274. image: {
  49275. source: "./media/characters/jess/digestive-tract-front.svg"
  49276. }
  49277. },
  49278. digestiveTractSide: {
  49279. height: math.unit(2.54365045014, "feet"),
  49280. name: "Digestive Tract (Side)",
  49281. image: {
  49282. source: "./media/characters/jess/digestive-tract-side.svg"
  49283. }
  49284. },
  49285. respiratorySystemFront: {
  49286. height: math.unit(1.11196233456, "feet"),
  49287. name: "Respiratory System (Front)",
  49288. image: {
  49289. source: "./media/characters/jess/respiratory-system-front.svg"
  49290. }
  49291. },
  49292. respiratorySystemSide: {
  49293. height: math.unit(0.89327966297, "feet"),
  49294. name: "Respiratory System (Side)",
  49295. image: {
  49296. source: "./media/characters/jess/respiratory-system-side.svg"
  49297. }
  49298. },
  49299. urinaryTractFront: {
  49300. height: math.unit(1.16126356186, "feet"),
  49301. name: "Urinary Tract (Front)",
  49302. image: {
  49303. source: "./media/characters/jess/urinary-tract-front.svg"
  49304. }
  49305. },
  49306. urinaryTractSide: {
  49307. height: math.unit(1.20910039627, "feet"),
  49308. name: "Urinary Tract (Side)",
  49309. image: {
  49310. source: "./media/characters/jess/urinary-tract-side.svg"
  49311. }
  49312. },
  49313. reproductiveOrgansFront: {
  49314. height: math.unit(0.48422591566, "feet"),
  49315. name: "Reproductive Organs (Front)",
  49316. image: {
  49317. source: "./media/characters/jess/reproductive-organs-front.svg"
  49318. }
  49319. },
  49320. reproductiveOrgansSide: {
  49321. height: math.unit(0.61553314481, "feet"),
  49322. name: "Reproductive Organs (Side)",
  49323. image: {
  49324. source: "./media/characters/jess/reproductive-organs-side.svg"
  49325. }
  49326. },
  49327. breastsFront: {
  49328. height: math.unit(0.47690395121, "feet"),
  49329. name: "Breasts (Front)",
  49330. image: {
  49331. source: "./media/characters/jess/breasts-front.svg"
  49332. }
  49333. },
  49334. breastsSide: {
  49335. height: math.unit(0.30556998307, "feet"),
  49336. name: "Breasts (Side)",
  49337. image: {
  49338. source: "./media/characters/jess/breasts-side.svg"
  49339. }
  49340. },
  49341. heartFront: {
  49342. height: math.unit(0.53011022622, "feet"),
  49343. name: "Heart (Front)",
  49344. image: {
  49345. source: "./media/characters/jess/heart-front.svg"
  49346. }
  49347. },
  49348. heartSide: {
  49349. height: math.unit(0.51790695213, "feet"),
  49350. name: "Heart (Side)",
  49351. image: {
  49352. source: "./media/characters/jess/heart-side.svg"
  49353. }
  49354. },
  49355. earsAndNoseFront: {
  49356. height: math.unit(0.29385483995, "feet"),
  49357. name: "Ears and Nose (Front)",
  49358. image: {
  49359. source: "./media/characters/jess/ears-and-nose-front.svg"
  49360. }
  49361. },
  49362. earsAndNoseSide: {
  49363. height: math.unit(0.18109658741, "feet"),
  49364. name: "Ears and Nose (Side)",
  49365. image: {
  49366. source: "./media/characters/jess/ears-and-nose-side.svg"
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(5 + 8/12, "feet"),
  49374. default: true
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49380. {
  49381. front: {
  49382. height: math.unit(6, "feet"),
  49383. weight: math.unit(6.64467e-7, "grams"),
  49384. name: "Front",
  49385. image: {
  49386. source: "./media/characters/wimpering/front.svg",
  49387. extra: 597/587,
  49388. bottom: 34/631
  49389. }
  49390. },
  49391. },
  49392. [
  49393. {
  49394. name: "Micro",
  49395. height: math.unit(0.4, "mm"),
  49396. default: true
  49397. },
  49398. ]
  49399. ))
  49400. characterMakers.push(() => makeCharacter(
  49401. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49402. {
  49403. front: {
  49404. height: math.unit(5 + 2/12, "feet"),
  49405. weight: math.unit(110, "lb"),
  49406. name: "Front",
  49407. image: {
  49408. source: "./media/characters/keltre/front.svg",
  49409. extra: 1099/1057,
  49410. bottom: 22/1121
  49411. }
  49412. },
  49413. back: {
  49414. height: math.unit(5 + 2/12, "feet"),
  49415. weight: math.unit(110, "lb"),
  49416. name: "Back",
  49417. image: {
  49418. source: "./media/characters/keltre/back.svg",
  49419. extra: 1095/1053,
  49420. bottom: 17/1112
  49421. }
  49422. },
  49423. dressed: {
  49424. height: math.unit(5 + 2/12, "feet"),
  49425. weight: math.unit(110, "lb"),
  49426. name: "Dressed",
  49427. image: {
  49428. source: "./media/characters/keltre/dressed.svg",
  49429. extra: 1099/1057,
  49430. bottom: 22/1121
  49431. }
  49432. },
  49433. winter: {
  49434. height: math.unit(5 + 2/12, "feet"),
  49435. weight: math.unit(110, "lb"),
  49436. name: "Winter",
  49437. image: {
  49438. source: "./media/characters/keltre/winter.svg",
  49439. extra: 1099/1057,
  49440. bottom: 22/1121
  49441. }
  49442. },
  49443. head: {
  49444. height: math.unit(1.61 * 0.86, "feet"),
  49445. name: "Head",
  49446. image: {
  49447. source: "./media/characters/keltre/head.svg",
  49448. extra: 534/421,
  49449. bottom: 0/534
  49450. }
  49451. },
  49452. hand: {
  49453. height: math.unit(1.3 * 0.86, "feet"),
  49454. name: "Hand",
  49455. image: {
  49456. source: "./media/characters/keltre/hand.svg"
  49457. }
  49458. },
  49459. foot: {
  49460. height: math.unit(1.8 * 0.86, "feet"),
  49461. name: "Foot",
  49462. image: {
  49463. source: "./media/characters/keltre/foot.svg"
  49464. }
  49465. },
  49466. },
  49467. [
  49468. {
  49469. name: "Fine",
  49470. height: math.unit(1, "inch")
  49471. },
  49472. {
  49473. name: "Dimnutive",
  49474. height: math.unit(4, "inches")
  49475. },
  49476. {
  49477. name: "Tiny",
  49478. height: math.unit(1, "foot")
  49479. },
  49480. {
  49481. name: "Small",
  49482. height: math.unit(3, "feet")
  49483. },
  49484. {
  49485. name: "Normal",
  49486. height: math.unit(5 + 2/12, "feet"),
  49487. default: true
  49488. },
  49489. ]
  49490. ))
  49491. characterMakers.push(() => makeCharacter(
  49492. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49493. {
  49494. front: {
  49495. height: math.unit(6 + 2/12, "feet"),
  49496. name: "Front",
  49497. image: {
  49498. source: "./media/characters/nox/front.svg",
  49499. extra: 1917/1830,
  49500. bottom: 74/1991
  49501. }
  49502. },
  49503. back: {
  49504. height: math.unit(6 + 2/12, "feet"),
  49505. name: "Back",
  49506. image: {
  49507. source: "./media/characters/nox/back.svg",
  49508. extra: 1896/1815,
  49509. bottom: 21/1917
  49510. }
  49511. },
  49512. head: {
  49513. height: math.unit(1.1, "feet"),
  49514. name: "Head",
  49515. image: {
  49516. source: "./media/characters/nox/head.svg",
  49517. extra: 874/704,
  49518. bottom: 0/874
  49519. }
  49520. },
  49521. tattoo: {
  49522. height: math.unit(0.729, "feet"),
  49523. name: "Tattoo",
  49524. image: {
  49525. source: "./media/characters/nox/tattoo.svg"
  49526. }
  49527. },
  49528. },
  49529. [
  49530. {
  49531. name: "Normal",
  49532. height: math.unit(6 + 2/12, "feet")
  49533. },
  49534. {
  49535. name: "Gigamacro",
  49536. height: math.unit(2, "earths"),
  49537. default: true
  49538. },
  49539. {
  49540. name: "Cosmic",
  49541. height: math.unit(867, "yottameters")
  49542. },
  49543. ]
  49544. ))
  49545. characterMakers.push(() => makeCharacter(
  49546. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49547. {
  49548. front: {
  49549. height: math.unit(6, "feet"),
  49550. weight: math.unit(150, "lb"),
  49551. name: "Front",
  49552. image: {
  49553. source: "./media/characters/caspian/front.svg",
  49554. extra: 1443/1359,
  49555. bottom: 0/1443
  49556. }
  49557. },
  49558. back: {
  49559. height: math.unit(6, "feet"),
  49560. weight: math.unit(150, "lb"),
  49561. name: "Back",
  49562. image: {
  49563. source: "./media/characters/caspian/back.svg",
  49564. extra: 1379/1309,
  49565. bottom: 0/1379
  49566. }
  49567. },
  49568. head: {
  49569. height: math.unit(0.9, "feet"),
  49570. name: "Head",
  49571. image: {
  49572. source: "./media/characters/caspian/head.svg",
  49573. extra: 692/492,
  49574. bottom: 0/692
  49575. }
  49576. },
  49577. headAlt: {
  49578. height: math.unit(0.95, "feet"),
  49579. name: "Head (Alt)",
  49580. image: {
  49581. source: "./media/characters/caspian/head-alt.svg",
  49582. extra: 668/508,
  49583. bottom: 0/668
  49584. }
  49585. },
  49586. hand: {
  49587. height: math.unit(0.8, "feet"),
  49588. name: "Hand",
  49589. image: {
  49590. source: "./media/characters/caspian/hand.svg"
  49591. }
  49592. },
  49593. paw: {
  49594. height: math.unit(0.95, "feet"),
  49595. name: "Paw",
  49596. image: {
  49597. source: "./media/characters/caspian/paw.svg"
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Normal",
  49604. height: math.unit(162, "feet"),
  49605. default: true
  49606. },
  49607. ]
  49608. ))
  49609. characterMakers.push(() => makeCharacter(
  49610. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49611. {
  49612. front: {
  49613. height: math.unit(6, "feet"),
  49614. name: "Front",
  49615. image: {
  49616. source: "./media/characters/myra-aisling/front.svg",
  49617. extra: 1268/1166,
  49618. bottom: 73/1341
  49619. }
  49620. },
  49621. back: {
  49622. height: math.unit(6, "feet"),
  49623. name: "Back",
  49624. image: {
  49625. source: "./media/characters/myra-aisling/back.svg",
  49626. extra: 1249/1149,
  49627. bottom: 79/1328
  49628. }
  49629. },
  49630. dressed: {
  49631. height: math.unit(6, "feet"),
  49632. name: "Dressed",
  49633. image: {
  49634. source: "./media/characters/myra-aisling/dressed.svg",
  49635. extra: 1290/1189,
  49636. bottom: 47/1337
  49637. }
  49638. },
  49639. hand: {
  49640. height: math.unit(1.1, "feet"),
  49641. name: "Hand",
  49642. image: {
  49643. source: "./media/characters/myra-aisling/hand.svg"
  49644. }
  49645. },
  49646. paw: {
  49647. height: math.unit(1.23, "feet"),
  49648. name: "Paw",
  49649. image: {
  49650. source: "./media/characters/myra-aisling/paw.svg"
  49651. }
  49652. },
  49653. },
  49654. [
  49655. {
  49656. name: "Normal",
  49657. height: math.unit(160, "feet"),
  49658. default: true
  49659. },
  49660. ]
  49661. ))
  49662. characterMakers.push(() => makeCharacter(
  49663. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49664. {
  49665. front: {
  49666. height: math.unit(6, "feet"),
  49667. name: "Front",
  49668. image: {
  49669. source: "./media/characters/tenley-sidero/front.svg",
  49670. extra: 1365/1276,
  49671. bottom: 47/1412
  49672. }
  49673. },
  49674. back: {
  49675. height: math.unit(6, "feet"),
  49676. name: "Back",
  49677. image: {
  49678. source: "./media/characters/tenley-sidero/back.svg",
  49679. extra: 1383/1283,
  49680. bottom: 35/1418
  49681. }
  49682. },
  49683. dressed: {
  49684. height: math.unit(6, "feet"),
  49685. name: "Dressed",
  49686. image: {
  49687. source: "./media/characters/tenley-sidero/dressed.svg",
  49688. extra: 1364/1275,
  49689. bottom: 42/1406
  49690. }
  49691. },
  49692. head: {
  49693. height: math.unit(1.47, "feet"),
  49694. name: "Head",
  49695. image: {
  49696. source: "./media/characters/tenley-sidero/head.svg",
  49697. extra: 610/490,
  49698. bottom: 0/610
  49699. }
  49700. },
  49701. },
  49702. [
  49703. {
  49704. name: "Normal",
  49705. height: math.unit(154, "feet"),
  49706. default: true
  49707. },
  49708. ]
  49709. ))
  49710. characterMakers.push(() => makeCharacter(
  49711. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49712. {
  49713. front: {
  49714. height: math.unit(5, "inches"),
  49715. name: "Front",
  49716. image: {
  49717. source: "./media/characters/mallory/front.svg",
  49718. extra: 1919/1678,
  49719. bottom: 29/1948
  49720. }
  49721. },
  49722. hand: {
  49723. height: math.unit(0.73, "inches"),
  49724. name: "Hand",
  49725. image: {
  49726. source: "./media/characters/mallory/hand.svg"
  49727. }
  49728. },
  49729. paw: {
  49730. height: math.unit(0.68, "inches"),
  49731. name: "Paw",
  49732. image: {
  49733. source: "./media/characters/mallory/paw.svg"
  49734. }
  49735. },
  49736. },
  49737. [
  49738. {
  49739. name: "Small",
  49740. height: math.unit(5, "inches"),
  49741. default: true
  49742. },
  49743. ]
  49744. ))
  49745. characterMakers.push(() => makeCharacter(
  49746. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49747. {
  49748. naked: {
  49749. height: math.unit(6, "feet"),
  49750. name: "Naked",
  49751. image: {
  49752. source: "./media/characters/mab/naked.svg",
  49753. extra: 1855/1757,
  49754. bottom: 208/2063
  49755. }
  49756. },
  49757. outside: {
  49758. height: math.unit(6, "feet"),
  49759. name: "Outside",
  49760. image: {
  49761. source: "./media/characters/mab/outside.svg",
  49762. extra: 1855/1757,
  49763. bottom: 208/2063
  49764. }
  49765. },
  49766. party: {
  49767. height: math.unit(6, "feet"),
  49768. name: "Party",
  49769. image: {
  49770. source: "./media/characters/mab/party.svg",
  49771. extra: 1855/1757,
  49772. bottom: 208/2063
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Normal",
  49779. height: math.unit(165, "feet"),
  49780. default: true
  49781. },
  49782. ]
  49783. ))
  49784. characterMakers.push(() => makeCharacter(
  49785. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49786. {
  49787. feral: {
  49788. height: math.unit(12, "feet"),
  49789. weight: math.unit(20000, "lb"),
  49790. name: "Side",
  49791. image: {
  49792. source: "./media/characters/winter/feral.svg",
  49793. extra: 1286/943,
  49794. bottom: 112/1398
  49795. },
  49796. form: "feral",
  49797. default: true
  49798. },
  49799. feralNsfw: {
  49800. height: math.unit(12, "feet"),
  49801. weight: math.unit(20000, "lb"),
  49802. name: "Side (NSFW)",
  49803. image: {
  49804. source: "./media/characters/winter/feral-nsfw.svg",
  49805. extra: 1286/943,
  49806. bottom: 112/1398
  49807. },
  49808. form: "feral"
  49809. },
  49810. dick: {
  49811. height: math.unit(3.79, "feet"),
  49812. name: "Dick",
  49813. image: {
  49814. source: "./media/characters/winter/dick.svg"
  49815. },
  49816. form: "feral"
  49817. },
  49818. anthro: {
  49819. height: math.unit(12, "feet"),
  49820. weight: math.unit(10, "tons"),
  49821. name: "Anthro",
  49822. image: {
  49823. source: "./media/characters/winter/anthro.svg",
  49824. extra: 1701/1553,
  49825. bottom: 64/1765
  49826. },
  49827. form: "anthro",
  49828. default: true
  49829. },
  49830. },
  49831. [
  49832. {
  49833. name: "Big",
  49834. height: math.unit(12, "feet"),
  49835. default: true,
  49836. form: "feral"
  49837. },
  49838. {
  49839. name: "Big",
  49840. height: math.unit(12, "feet"),
  49841. default: true,
  49842. form: "anthro"
  49843. },
  49844. ],
  49845. {
  49846. "feral": {
  49847. name: "Feral",
  49848. default: true
  49849. },
  49850. "anthro": {
  49851. name: "Anthro"
  49852. }
  49853. }
  49854. ))
  49855. characterMakers.push(() => makeCharacter(
  49856. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49857. {
  49858. front: {
  49859. height: math.unit(4.1, "inches"),
  49860. name: "Front",
  49861. image: {
  49862. source: "./media/characters/alto/front.svg",
  49863. extra: 736/627,
  49864. bottom: 90/826
  49865. }
  49866. },
  49867. },
  49868. [
  49869. {
  49870. name: "Normal",
  49871. height: math.unit(4.1, "inches"),
  49872. default: true
  49873. },
  49874. ]
  49875. ))
  49876. characterMakers.push(() => makeCharacter(
  49877. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49878. {
  49879. sitting: {
  49880. height: math.unit(3, "feet"),
  49881. name: "Sitting",
  49882. image: {
  49883. source: "./media/characters/ratstrid-v/sitting.svg",
  49884. extra: 355/310,
  49885. bottom: 136/491
  49886. }
  49887. },
  49888. },
  49889. [
  49890. {
  49891. name: "Normal",
  49892. height: math.unit(3, "feet"),
  49893. default: true
  49894. },
  49895. ]
  49896. ))
  49897. characterMakers.push(() => makeCharacter(
  49898. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49899. {
  49900. back: {
  49901. height: math.unit(6, "feet"),
  49902. weight: math.unit(350, "lb"),
  49903. name: "Back",
  49904. image: {
  49905. source: "./media/characters/siz/back.svg",
  49906. extra: 1449/1274,
  49907. bottom: 13/1462
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Over-Overcompressed",
  49914. height: math.unit(8, "feet")
  49915. },
  49916. {
  49917. name: "Overcompressed",
  49918. height: math.unit(32, "feet")
  49919. },
  49920. {
  49921. name: "Compressed",
  49922. height: math.unit(128, "feet"),
  49923. default: true
  49924. },
  49925. {
  49926. name: "Half-Compressed",
  49927. height: math.unit(512, "feet")
  49928. },
  49929. {
  49930. name: "Quarter-Compressed",
  49931. height: math.unit(2048, "feet")
  49932. },
  49933. {
  49934. name: "Uncompressed?",
  49935. height: math.unit(8192, "feet")
  49936. },
  49937. ]
  49938. ))
  49939. characterMakers.push(() => makeCharacter(
  49940. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49941. {
  49942. front: {
  49943. height: math.unit(5 + 9/12, "feet"),
  49944. weight: math.unit(150, "lb"),
  49945. name: "Front",
  49946. image: {
  49947. source: "./media/characters/ven/front.svg",
  49948. extra: 1372/1320,
  49949. bottom: 73/1445
  49950. }
  49951. },
  49952. side: {
  49953. height: math.unit(5 + 9/12, "feet"),
  49954. weight: math.unit(1150, "lb"),
  49955. name: "Side",
  49956. image: {
  49957. source: "./media/characters/ven/side.svg",
  49958. extra: 1119/1070,
  49959. bottom: 42/1161
  49960. },
  49961. default: true
  49962. },
  49963. },
  49964. [
  49965. {
  49966. name: "Normal",
  49967. height: math.unit(5 + 9/12, "feet"),
  49968. default: true
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49974. {
  49975. front: {
  49976. height: math.unit(12, "feet"),
  49977. weight: math.unit(1000, "kg"),
  49978. name: "Front",
  49979. image: {
  49980. source: "./media/characters/maple/front.svg",
  49981. extra: 1193/1081,
  49982. bottom: 22/1215
  49983. }
  49984. },
  49985. },
  49986. [
  49987. {
  49988. name: "Compressed",
  49989. height: math.unit(7, "feet")
  49990. },
  49991. {
  49992. name: "Normal",
  49993. height: math.unit(12, "feet"),
  49994. default: true
  49995. },
  49996. ]
  49997. ))
  49998. characterMakers.push(() => makeCharacter(
  49999. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50000. {
  50001. front: {
  50002. height: math.unit(9, "feet"),
  50003. weight: math.unit(1500, "lb"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/nora/front.svg",
  50007. extra: 1348/1286,
  50008. bottom: 218/1566
  50009. }
  50010. },
  50011. erect: {
  50012. height: math.unit(9, "feet"),
  50013. weight: math.unit(11500, "lb"),
  50014. name: "Erect",
  50015. image: {
  50016. source: "./media/characters/nora/erect.svg",
  50017. extra: 1488/1433,
  50018. bottom: 133/1621
  50019. }
  50020. },
  50021. },
  50022. [
  50023. {
  50024. name: "Normal",
  50025. height: math.unit(9, "feet"),
  50026. default: true
  50027. },
  50028. ]
  50029. ))
  50030. characterMakers.push(() => makeCharacter(
  50031. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50032. {
  50033. front: {
  50034. height: math.unit(25, "feet"),
  50035. weight: math.unit(27500, "lb"),
  50036. name: "Front",
  50037. image: {
  50038. source: "./media/characters/north-caudin/front.svg",
  50039. extra: 1184/1082,
  50040. bottom: 23/1207
  50041. }
  50042. },
  50043. },
  50044. [
  50045. {
  50046. name: "Compressed",
  50047. height: math.unit(10, "feet")
  50048. },
  50049. {
  50050. name: "Normal",
  50051. height: math.unit(25, "feet"),
  50052. default: true
  50053. },
  50054. ]
  50055. ))
  50056. characterMakers.push(() => makeCharacter(
  50057. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50058. {
  50059. front: {
  50060. height: math.unit(9, "feet"),
  50061. weight: math.unit(1250, "lb"),
  50062. name: "Front",
  50063. image: {
  50064. source: "./media/characters/merrian/front.svg",
  50065. extra: 2393/2304,
  50066. bottom: 40/2433
  50067. }
  50068. },
  50069. },
  50070. [
  50071. {
  50072. name: "Normal",
  50073. height: math.unit(9, "feet"),
  50074. default: true
  50075. },
  50076. ]
  50077. ))
  50078. characterMakers.push(() => makeCharacter(
  50079. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50080. {
  50081. front: {
  50082. height: math.unit(9, "feet"),
  50083. weight: math.unit(1000, "lb"),
  50084. name: "Front",
  50085. image: {
  50086. source: "./media/characters/hazel/front.svg",
  50087. extra: 2351/2298,
  50088. bottom: 38/2389
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Normal",
  50095. height: math.unit(9, "feet"),
  50096. default: true
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50102. {
  50103. front: {
  50104. height: math.unit(13, "feet"),
  50105. weight: math.unit(3200, "lb"),
  50106. name: "Front",
  50107. image: {
  50108. source: "./media/characters/emma/front.svg",
  50109. extra: 2263/2029,
  50110. bottom: 68/2331
  50111. }
  50112. },
  50113. },
  50114. [
  50115. {
  50116. name: "Normal",
  50117. height: math.unit(13, "feet"),
  50118. default: true
  50119. },
  50120. ]
  50121. ))
  50122. characterMakers.push(() => makeCharacter(
  50123. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50124. {
  50125. front: {
  50126. height: math.unit(11 + 9/12, "feet"),
  50127. weight: math.unit(2500, "lb"),
  50128. name: "Front",
  50129. image: {
  50130. source: "./media/characters/ilumina/front.svg",
  50131. extra: 2248/2209,
  50132. bottom: 164/2412
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(11 + 9/12, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50146. {
  50147. front: {
  50148. height: math.unit(8 + 10/12, "feet"),
  50149. weight: math.unit(1350, "lb"),
  50150. name: "Front",
  50151. image: {
  50152. source: "./media/characters/moonshine/front.svg",
  50153. extra: 2395/2288,
  50154. bottom: 40/2435
  50155. }
  50156. },
  50157. },
  50158. [
  50159. {
  50160. name: "Normal",
  50161. height: math.unit(8 + 10/12, "feet"),
  50162. default: true
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50168. {
  50169. front: {
  50170. height: math.unit(14, "feet"),
  50171. weight: math.unit(3400, "lb"),
  50172. name: "Front",
  50173. image: {
  50174. source: "./media/characters/aletia/front.svg",
  50175. extra: 1185/1052,
  50176. bottom: 21/1206
  50177. }
  50178. },
  50179. },
  50180. [
  50181. {
  50182. name: "Compressed",
  50183. height: math.unit(8, "feet")
  50184. },
  50185. {
  50186. name: "Normal",
  50187. height: math.unit(14, "feet"),
  50188. default: true
  50189. },
  50190. ]
  50191. ))
  50192. characterMakers.push(() => makeCharacter(
  50193. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50194. {
  50195. front: {
  50196. height: math.unit(17, "feet"),
  50197. weight: math.unit(6500, "lb"),
  50198. name: "Front",
  50199. image: {
  50200. source: "./media/characters/deidra/front.svg",
  50201. extra: 1201/1081,
  50202. bottom: 16/1217
  50203. }
  50204. },
  50205. },
  50206. [
  50207. {
  50208. name: "Compressed",
  50209. height: math.unit(9 + 6/12, "feet")
  50210. },
  50211. {
  50212. name: "Normal",
  50213. height: math.unit(17, "feet"),
  50214. default: true
  50215. },
  50216. ]
  50217. ))
  50218. characterMakers.push(() => makeCharacter(
  50219. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50220. {
  50221. front: {
  50222. height: math.unit(7 + 4/12, "feet"),
  50223. weight: math.unit(280, "lb"),
  50224. name: "Front",
  50225. image: {
  50226. source: "./media/characters/freki-yrmori/front.svg",
  50227. extra: 1286/1182,
  50228. bottom: 29/1315
  50229. }
  50230. },
  50231. maw: {
  50232. height: math.unit(0.9, "feet"),
  50233. name: "Maw",
  50234. image: {
  50235. source: "./media/characters/freki-yrmori/maw.svg"
  50236. }
  50237. },
  50238. },
  50239. [
  50240. {
  50241. name: "Normal",
  50242. height: math.unit(7 + 4/12, "feet"),
  50243. default: true
  50244. },
  50245. {
  50246. name: "Macro",
  50247. height: math.unit(38.5, "meters")
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50253. {
  50254. side: {
  50255. height: math.unit(47.2, "meters"),
  50256. weight: math.unit(10000, "tons"),
  50257. name: "Side",
  50258. image: {
  50259. source: "./media/characters/aetherios/side.svg",
  50260. extra: 2363/642,
  50261. bottom: 221/2584
  50262. }
  50263. },
  50264. top: {
  50265. height: math.unit(240, "meters"),
  50266. weight: math.unit(10000, "tons"),
  50267. name: "Top",
  50268. image: {
  50269. source: "./media/characters/aetherios/top.svg"
  50270. }
  50271. },
  50272. bottom: {
  50273. height: math.unit(240, "meters"),
  50274. weight: math.unit(10000, "tons"),
  50275. name: "Bottom",
  50276. image: {
  50277. source: "./media/characters/aetherios/bottom.svg"
  50278. }
  50279. },
  50280. head: {
  50281. height: math.unit(38.6, "meters"),
  50282. name: "Head",
  50283. image: {
  50284. source: "./media/characters/aetherios/head.svg",
  50285. extra: 1335/1112,
  50286. bottom: 0/1335
  50287. }
  50288. },
  50289. front: {
  50290. height: math.unit(29, "meters"),
  50291. name: "Front",
  50292. image: {
  50293. source: "./media/characters/aetherios/front.svg",
  50294. extra: 1266/953,
  50295. bottom: 158/1424
  50296. }
  50297. },
  50298. maw: {
  50299. height: math.unit(16.37, "meters"),
  50300. name: "Maw",
  50301. image: {
  50302. source: "./media/characters/aetherios/maw.svg",
  50303. extra: 748/637,
  50304. bottom: 0/748
  50305. },
  50306. extraAttributes: {
  50307. preyCapacity: {
  50308. name: "Capacity",
  50309. power: 3,
  50310. type: "volume",
  50311. base: math.unit(1000, "people")
  50312. },
  50313. tongueSize: {
  50314. name: "Tongue Size",
  50315. power: 2,
  50316. type: "area",
  50317. base: math.unit(21, "m^2")
  50318. }
  50319. }
  50320. },
  50321. forepaw: {
  50322. height: math.unit(18, "meters"),
  50323. name: "Forepaw",
  50324. image: {
  50325. source: "./media/characters/aetherios/forepaw.svg"
  50326. }
  50327. },
  50328. hindpaw: {
  50329. height: math.unit(23, "meters"),
  50330. name: "Hindpaw",
  50331. image: {
  50332. source: "./media/characters/aetherios/hindpaw.svg"
  50333. }
  50334. },
  50335. genitals: {
  50336. height: math.unit(42, "meters"),
  50337. name: "Genitals",
  50338. image: {
  50339. source: "./media/characters/aetherios/genitals.svg"
  50340. }
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Normal",
  50346. height: math.unit(47.2, "meters"),
  50347. default: true
  50348. },
  50349. {
  50350. name: "Macro",
  50351. height: math.unit(160, "meters")
  50352. },
  50353. {
  50354. name: "Mega",
  50355. height: math.unit(1.87, "km")
  50356. },
  50357. {
  50358. name: "Giga",
  50359. height: math.unit(40000, "km")
  50360. },
  50361. {
  50362. name: "Stellar",
  50363. height: math.unit(158000000, "km")
  50364. },
  50365. {
  50366. name: "Cosmic",
  50367. height: math.unit(9.46e12, "km")
  50368. },
  50369. ]
  50370. ))
  50371. characterMakers.push(() => makeCharacter(
  50372. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50373. {
  50374. front: {
  50375. height: math.unit(5 + 4/12, "feet"),
  50376. weight: math.unit(80, "lb"),
  50377. name: "Front",
  50378. image: {
  50379. source: "./media/characters/mizu-gieeg/front.svg",
  50380. extra: 850/709,
  50381. bottom: 52/902
  50382. }
  50383. },
  50384. back: {
  50385. height: math.unit(5 + 4/12, "feet"),
  50386. weight: math.unit(80, "lb"),
  50387. name: "Back",
  50388. image: {
  50389. source: "./media/characters/mizu-gieeg/back.svg",
  50390. extra: 882/745,
  50391. bottom: 25/907
  50392. }
  50393. },
  50394. },
  50395. [
  50396. {
  50397. name: "Normal",
  50398. height: math.unit(5 + 4/12, "feet"),
  50399. default: true
  50400. },
  50401. ]
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(6, "feet"),
  50408. name: "Front",
  50409. image: {
  50410. source: "./media/characters/roselle-st-papier/front.svg",
  50411. extra: 1430/1280,
  50412. bottom: 37/1467
  50413. }
  50414. },
  50415. back: {
  50416. height: math.unit(6, "feet"),
  50417. name: "Back",
  50418. image: {
  50419. source: "./media/characters/roselle-st-papier/back.svg",
  50420. extra: 1491/1296,
  50421. bottom: 23/1514
  50422. }
  50423. },
  50424. ear: {
  50425. height: math.unit(1.26, "feet"),
  50426. name: "Ear",
  50427. image: {
  50428. source: "./media/characters/roselle-st-papier/ear.svg"
  50429. }
  50430. },
  50431. },
  50432. [
  50433. {
  50434. name: "Normal",
  50435. height: math.unit(150, "feet"),
  50436. default: true
  50437. },
  50438. ]
  50439. ))
  50440. characterMakers.push(() => makeCharacter(
  50441. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50442. {
  50443. front: {
  50444. height: math.unit(1, "inches"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/valargent/front.svg",
  50448. extra: 1825/1694,
  50449. bottom: 62/1887
  50450. }
  50451. },
  50452. back: {
  50453. height: math.unit(1, "inches"),
  50454. name: "Back",
  50455. image: {
  50456. source: "./media/characters/valargent/back.svg",
  50457. extra: 1775/1682,
  50458. bottom: 88/1863
  50459. }
  50460. },
  50461. },
  50462. [
  50463. {
  50464. name: "Micro",
  50465. height: math.unit(1, "inch"),
  50466. default: true
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(3.4, "meters"),
  50475. name: "Front",
  50476. image: {
  50477. source: "./media/characters/zarina/front.svg",
  50478. extra: 1733/1425,
  50479. bottom: 93/1826
  50480. }
  50481. },
  50482. squatting: {
  50483. height: math.unit(2.14, "meters"),
  50484. name: "Squatting",
  50485. image: {
  50486. source: "./media/characters/zarina/squatting.svg",
  50487. extra: 1073/788,
  50488. bottom: 63/1136
  50489. }
  50490. },
  50491. back: {
  50492. height: math.unit(2.14, "meters"),
  50493. name: "Back",
  50494. image: {
  50495. source: "./media/characters/zarina/back.svg",
  50496. extra: 1128/885,
  50497. bottom: 0/1128
  50498. }
  50499. },
  50500. },
  50501. [
  50502. {
  50503. name: "Normal",
  50504. height: math.unit(3.4, "meters"),
  50505. default: true
  50506. },
  50507. {
  50508. name: "Big",
  50509. height: math.unit(5, "meters")
  50510. },
  50511. {
  50512. name: "Macro",
  50513. height: math.unit(110, "meters")
  50514. },
  50515. ]
  50516. ))
  50517. characterMakers.push(() => makeCharacter(
  50518. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50519. {
  50520. front: {
  50521. height: math.unit(7, "feet"),
  50522. name: "Front",
  50523. image: {
  50524. source: "./media/characters/ventus-astro-fox/front.svg",
  50525. extra: 1792/1623,
  50526. bottom: 28/1820
  50527. }
  50528. },
  50529. back: {
  50530. height: math.unit(7, "feet"),
  50531. name: "Back",
  50532. image: {
  50533. source: "./media/characters/ventus-astro-fox/back.svg",
  50534. extra: 1789/1620,
  50535. bottom: 31/1820
  50536. }
  50537. },
  50538. outfit: {
  50539. height: math.unit(7, "feet"),
  50540. name: "Outfit",
  50541. image: {
  50542. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50543. extra: 1054/925,
  50544. bottom: 15/1069
  50545. }
  50546. },
  50547. head: {
  50548. height: math.unit(1.12, "feet"),
  50549. name: "Head",
  50550. image: {
  50551. source: "./media/characters/ventus-astro-fox/head.svg",
  50552. extra: 866/504,
  50553. bottom: 0/866
  50554. }
  50555. },
  50556. hand: {
  50557. height: math.unit(1, "feet"),
  50558. name: "Hand",
  50559. image: {
  50560. source: "./media/characters/ventus-astro-fox/hand.svg"
  50561. }
  50562. },
  50563. paw: {
  50564. height: math.unit(1.5, "feet"),
  50565. name: "Paw",
  50566. image: {
  50567. source: "./media/characters/ventus-astro-fox/paw.svg"
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(7, "feet"),
  50575. default: true
  50576. },
  50577. {
  50578. name: "Macro",
  50579. height: math.unit(200, "feet")
  50580. },
  50581. {
  50582. name: "Cosmic",
  50583. height: math.unit(3, "universes")
  50584. },
  50585. ]
  50586. ))
  50587. characterMakers.push(() => makeCharacter(
  50588. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50589. {
  50590. front: {
  50591. height: math.unit(3, "meters"),
  50592. weight: math.unit(7000, "lb"),
  50593. name: "Front",
  50594. image: {
  50595. source: "./media/characters/core-t/front.svg",
  50596. extra: 5729/4941,
  50597. bottom: 1129/6858
  50598. }
  50599. },
  50600. },
  50601. [
  50602. {
  50603. name: "Big",
  50604. height: math.unit(3, "meters"),
  50605. default: true
  50606. },
  50607. ]
  50608. ))
  50609. characterMakers.push(() => makeCharacter(
  50610. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50611. {
  50612. normal: {
  50613. height: math.unit(6 + 6/12, "feet"),
  50614. weight: math.unit(275, "lb"),
  50615. name: "Front",
  50616. image: {
  50617. source: "./media/characters/cadbunny/normal.svg",
  50618. extra: 1129/947,
  50619. bottom: 93/1222
  50620. },
  50621. default: true,
  50622. form: "normal"
  50623. },
  50624. gigantamax: {
  50625. height: math.unit(26, "feet"),
  50626. weight: math.unit(16000, "lb"),
  50627. name: "Front",
  50628. image: {
  50629. source: "./media/characters/cadbunny/gigantamax.svg",
  50630. extra: 1133/944,
  50631. bottom: 90/1223
  50632. },
  50633. default: true,
  50634. form: "gigantamax"
  50635. },
  50636. },
  50637. [
  50638. {
  50639. name: "Normal",
  50640. height: math.unit(6 + 6/12, "feet"),
  50641. default: true,
  50642. form: "normal"
  50643. },
  50644. {
  50645. name: "Small",
  50646. height: math.unit(26, "feet"),
  50647. default: true,
  50648. form: "gigantamax"
  50649. },
  50650. {
  50651. name: "Large",
  50652. height: math.unit(78, "feet"),
  50653. form: "gigantamax"
  50654. },
  50655. ],
  50656. {
  50657. "normal": {
  50658. name: "Normal",
  50659. default: true
  50660. },
  50661. "gigantamax": {
  50662. name: "Gigantamax"
  50663. }
  50664. }
  50665. ))
  50666. characterMakers.push(() => makeCharacter(
  50667. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50668. {
  50669. anthroFront: {
  50670. height: math.unit(8, "feet"),
  50671. weight: math.unit(300, "lb"),
  50672. name: "Front",
  50673. image: {
  50674. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50675. extra: 1272/1176,
  50676. bottom: 53/1325
  50677. },
  50678. form: "anthro",
  50679. default: true
  50680. },
  50681. feralSide: {
  50682. height: math.unit(4, "feet"),
  50683. weight: math.unit(250, "lb"),
  50684. name: "Side",
  50685. image: {
  50686. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50687. extra: 731/621,
  50688. bottom: 0/731
  50689. },
  50690. form: "feral",
  50691. default: true
  50692. },
  50693. },
  50694. [
  50695. {
  50696. name: "Regular",
  50697. height: math.unit(8, "feet"),
  50698. form: "anthro"
  50699. },
  50700. {
  50701. name: "Macro",
  50702. height: math.unit(250, "feet"),
  50703. form: "anthro",
  50704. default: true
  50705. },
  50706. {
  50707. name: "Regular",
  50708. height: math.unit(4, "feet"),
  50709. form: "feral"
  50710. },
  50711. {
  50712. name: "Macro",
  50713. height: math.unit(125, "feet"),
  50714. form: "feral",
  50715. default: true
  50716. },
  50717. ],
  50718. {
  50719. "anthro": {
  50720. name: "Anthro",
  50721. default: true
  50722. },
  50723. "feral": {
  50724. name: "Feral",
  50725. },
  50726. }
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50730. {
  50731. front: {
  50732. height: math.unit(11 + 10/12, "feet"),
  50733. weight: math.unit(1587, "kg"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/maple-javira-dragon/front.svg",
  50737. extra: 1136/744,
  50738. bottom: 73/1209
  50739. }
  50740. },
  50741. side: {
  50742. height: math.unit(11 + 10/12, "feet"),
  50743. weight: math.unit(1587, "kg"),
  50744. name: "Side",
  50745. image: {
  50746. source: "./media/characters/maple-javira-dragon/side.svg",
  50747. extra: 712/505,
  50748. bottom: 17/729
  50749. }
  50750. },
  50751. head: {
  50752. height: math.unit(8.05, "feet"),
  50753. name: "Head",
  50754. image: {
  50755. source: "./media/characters/maple-javira-dragon/head.svg",
  50756. extra: 1420/1344,
  50757. bottom: 0/1420
  50758. }
  50759. },
  50760. },
  50761. [
  50762. {
  50763. name: "Normal",
  50764. height: math.unit(11 + 10/12, "feet"),
  50765. default: true
  50766. },
  50767. ]
  50768. ))
  50769. characterMakers.push(() => makeCharacter(
  50770. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50771. {
  50772. front: {
  50773. height: math.unit(117, "cm"),
  50774. weight: math.unit(50, "kg"),
  50775. name: "Front",
  50776. image: {
  50777. source: "./media/characters/sonia-wyverntail/front.svg",
  50778. extra: 708/592,
  50779. bottom: 25/733
  50780. }
  50781. },
  50782. },
  50783. [
  50784. {
  50785. name: "Normal",
  50786. height: math.unit(117, "cm"),
  50787. default: true
  50788. },
  50789. ]
  50790. ))
  50791. characterMakers.push(() => makeCharacter(
  50792. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50793. {
  50794. front: {
  50795. height: math.unit(6 + 5/12, "feet"),
  50796. name: "Front",
  50797. image: {
  50798. source: "./media/characters/micah/front.svg",
  50799. extra: 1758/1546,
  50800. bottom: 214/1972
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(6 + 5/12, "feet"),
  50808. default: true
  50809. },
  50810. ]
  50811. ))
  50812. characterMakers.push(() => makeCharacter(
  50813. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50814. {
  50815. front: {
  50816. height: math.unit(5 + 10/12, "feet"),
  50817. weight: math.unit(220, "lb"),
  50818. name: "Front",
  50819. image: {
  50820. source: "./media/characters/zarya/front.svg",
  50821. extra: 593/572,
  50822. bottom: 50/643
  50823. }
  50824. },
  50825. back: {
  50826. height: math.unit(5 + 10/12, "feet"),
  50827. weight: math.unit(220, "lb"),
  50828. name: "Back",
  50829. image: {
  50830. source: "./media/characters/zarya/back.svg",
  50831. extra: 603/582,
  50832. bottom: 38/641
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(5 + 10/12, "feet"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50846. {
  50847. front: {
  50848. height: math.unit(7.5, "feet"),
  50849. name: "Front",
  50850. image: {
  50851. source: "./media/characters/sven-hatisson/front.svg",
  50852. extra: 917/857,
  50853. bottom: 42/959
  50854. }
  50855. },
  50856. back: {
  50857. height: math.unit(7.5, "feet"),
  50858. name: "Back",
  50859. image: {
  50860. source: "./media/characters/sven-hatisson/back.svg",
  50861. extra: 903/856,
  50862. bottom: 15/918
  50863. }
  50864. },
  50865. },
  50866. [
  50867. {
  50868. name: "Base Height",
  50869. height: math.unit(7.5, "feet")
  50870. },
  50871. {
  50872. name: "Usual Height",
  50873. height: math.unit(13.5, "feet"),
  50874. default: true
  50875. },
  50876. {
  50877. name: "Smaller Macro",
  50878. height: math.unit(85, "feet")
  50879. },
  50880. {
  50881. name: "Moderate Macro",
  50882. height: math.unit(320, "feet")
  50883. },
  50884. {
  50885. name: "Large Macro",
  50886. height: math.unit(1000, "feet")
  50887. },
  50888. {
  50889. name: "Largest Size",
  50890. height: math.unit(2, "miles")
  50891. },
  50892. ]
  50893. ))
  50894. characterMakers.push(() => makeCharacter(
  50895. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50896. {
  50897. side: {
  50898. height: math.unit(1.8, "meters"),
  50899. weight: math.unit(275, "kg"),
  50900. name: "Side",
  50901. image: {
  50902. source: "./media/characters/terra/side.svg",
  50903. extra: 1273/1147,
  50904. bottom: 0/1273
  50905. }
  50906. },
  50907. },
  50908. [
  50909. {
  50910. name: "Normal",
  50911. height: math.unit(16.2, "meters"),
  50912. default: true
  50913. },
  50914. ]
  50915. ))
  50916. characterMakers.push(() => makeCharacter(
  50917. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50918. {
  50919. borzoiFront: {
  50920. height: math.unit(6 + 9/12, "feet"),
  50921. name: "Front",
  50922. image: {
  50923. source: "./media/characters/rae/borzoi-front.svg",
  50924. extra: 1161/1098,
  50925. bottom: 31/1192
  50926. },
  50927. form: "borzoi",
  50928. default: true
  50929. },
  50930. werewolfFront: {
  50931. height: math.unit(8 + 7/12, "feet"),
  50932. name: "Front",
  50933. image: {
  50934. source: "./media/characters/rae/werewolf-front.svg",
  50935. extra: 1411/1334,
  50936. bottom: 127/1538
  50937. },
  50938. form: "werewolf",
  50939. default: true
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Normal",
  50945. height: math.unit(6 + 9/12, "feet"),
  50946. default: true,
  50947. form: "borzoi"
  50948. },
  50949. {
  50950. name: "Normal",
  50951. height: math.unit(8 + 7/12, "feet"),
  50952. default: true,
  50953. form: "werewolf"
  50954. },
  50955. ],
  50956. {
  50957. "borzoi": {
  50958. name: "Borzoi",
  50959. default: true
  50960. },
  50961. "werewolf": {
  50962. name: "Werewolf",
  50963. },
  50964. }
  50965. ))
  50966. characterMakers.push(() => makeCharacter(
  50967. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50968. {
  50969. front: {
  50970. height: math.unit(8 + 7/12, "feet"),
  50971. weight: math.unit(482, "lb"),
  50972. name: "Front",
  50973. image: {
  50974. source: "./media/characters/kit/front.svg",
  50975. extra: 1247/1103,
  50976. bottom: 41/1288
  50977. }
  50978. },
  50979. back: {
  50980. height: math.unit(8 + 7/12, "feet"),
  50981. weight: math.unit(482, "lb"),
  50982. name: "Back",
  50983. image: {
  50984. source: "./media/characters/kit/back.svg",
  50985. extra: 1252/1123,
  50986. bottom: 21/1273
  50987. }
  50988. },
  50989. paw: {
  50990. height: math.unit(1.46, "feet"),
  50991. name: "Paw",
  50992. image: {
  50993. source: "./media/characters/kit/paw.svg"
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(2.61, "meters"),
  51001. default: true
  51002. },
  51003. {
  51004. name: "\"Tall\"",
  51005. height: math.unit(8.21, "meters")
  51006. },
  51007. {
  51008. name: "Tall",
  51009. height: math.unit(19.6, "meters")
  51010. },
  51011. {
  51012. name: "Very Tall",
  51013. height: math.unit(57.91, "meters")
  51014. },
  51015. {
  51016. name: "Semi-Macro",
  51017. height: math.unit(138.64, "meters")
  51018. },
  51019. {
  51020. name: "Macro",
  51021. height: math.unit(831.99, "meters")
  51022. },
  51023. {
  51024. name: "EX-Macro",
  51025. height: math.unit(96451121, "meters")
  51026. },
  51027. {
  51028. name: "S1-Omnipotent",
  51029. height: math.unit(4.42074e+9, "meters")
  51030. },
  51031. {
  51032. name: "S2-Omnipotent",
  51033. height: math.unit(9.42074e+17, "meters")
  51034. },
  51035. {
  51036. name: "Omnipotent",
  51037. height: math.unit(4.23112e+24, "meters")
  51038. },
  51039. {
  51040. name: "Hypergod",
  51041. height: math.unit(5.05176e+27, "meters")
  51042. },
  51043. {
  51044. name: "Hypergod-EX",
  51045. height: math.unit(9.45532e+49, "meters")
  51046. },
  51047. {
  51048. name: "Hypergod-SP",
  51049. height: math.unit(9.45532e+195, "meters")
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51055. {
  51056. side: {
  51057. height: math.unit(0.6, "meters"),
  51058. weight: math.unit(24, "kg"),
  51059. name: "Side",
  51060. image: {
  51061. source: "./media/characters/celeste/side.svg",
  51062. extra: 810/517,
  51063. bottom: 53/863
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Velociraptor",
  51070. height: math.unit(0.6, "meters"),
  51071. default: true
  51072. },
  51073. {
  51074. name: "Utahraptor",
  51075. height: math.unit(1.8, "meters")
  51076. },
  51077. {
  51078. name: "Gallimimus",
  51079. height: math.unit(4.0, "meters")
  51080. },
  51081. {
  51082. name: "Large",
  51083. height: math.unit(20, "meters")
  51084. },
  51085. {
  51086. name: "Planetary",
  51087. height: math.unit(50, "megameters")
  51088. },
  51089. {
  51090. name: "Stellar",
  51091. height: math.unit(1.5, "gigameters")
  51092. },
  51093. {
  51094. name: "Galactic",
  51095. height: math.unit(100, "exameters")
  51096. },
  51097. ]
  51098. ))
  51099. characterMakers.push(() => makeCharacter(
  51100. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51101. {
  51102. front: {
  51103. height: math.unit(6, "feet"),
  51104. weight: math.unit(210, "lb"),
  51105. name: "Front",
  51106. image: {
  51107. source: "./media/characters/glacia/front.svg",
  51108. extra: 958/901,
  51109. bottom: 45/1003
  51110. }
  51111. },
  51112. },
  51113. [
  51114. {
  51115. name: "Macro",
  51116. height: math.unit(1000, "meters"),
  51117. default: true
  51118. },
  51119. ]
  51120. ))
  51121. characterMakers.push(() => makeCharacter(
  51122. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51123. {
  51124. front: {
  51125. height: math.unit(4, "meters"),
  51126. name: "Front",
  51127. image: {
  51128. source: "./media/characters/giri/front.svg",
  51129. extra: 966/894,
  51130. bottom: 21/987
  51131. }
  51132. },
  51133. },
  51134. [
  51135. {
  51136. name: "Normal",
  51137. height: math.unit(4, "meters"),
  51138. default: true
  51139. },
  51140. ]
  51141. ))
  51142. characterMakers.push(() => makeCharacter(
  51143. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51144. {
  51145. back: {
  51146. height: math.unit(4, "feet"),
  51147. weight: math.unit(37, "lb"),
  51148. name: "Back",
  51149. image: {
  51150. source: "./media/characters/tin/back.svg",
  51151. extra: 845/780,
  51152. bottom: 28/873
  51153. }
  51154. },
  51155. },
  51156. [
  51157. {
  51158. name: "Normal",
  51159. height: math.unit(4, "feet"),
  51160. default: true
  51161. },
  51162. ]
  51163. ))
  51164. characterMakers.push(() => makeCharacter(
  51165. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51166. {
  51167. front: {
  51168. height: math.unit(25, "feet"),
  51169. name: "Front",
  51170. image: {
  51171. source: "./media/characters/cadenza-vivace/front.svg",
  51172. extra: 1842/1578,
  51173. bottom: 30/1872
  51174. }
  51175. },
  51176. },
  51177. [
  51178. {
  51179. name: "Macro",
  51180. height: math.unit(25, "feet"),
  51181. default: true
  51182. },
  51183. ]
  51184. ))
  51185. characterMakers.push(() => makeCharacter(
  51186. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51187. {
  51188. front: {
  51189. height: math.unit(10, "feet"),
  51190. weight: math.unit(625, "kg"),
  51191. name: "Front",
  51192. image: {
  51193. source: "./media/characters/zain/front.svg",
  51194. extra: 1682/1498,
  51195. bottom: 223/1905
  51196. }
  51197. },
  51198. back: {
  51199. height: math.unit(10, "feet"),
  51200. weight: math.unit(625, "kg"),
  51201. name: "Back",
  51202. image: {
  51203. source: "./media/characters/zain/back.svg",
  51204. extra: 1814/1657,
  51205. bottom: 152/1966
  51206. }
  51207. },
  51208. head: {
  51209. height: math.unit(10, "feet"),
  51210. weight: math.unit(625, "kg"),
  51211. name: "Head",
  51212. image: {
  51213. source: "./media/characters/zain/head.svg",
  51214. extra: 1059/762,
  51215. bottom: 0/1059
  51216. }
  51217. },
  51218. },
  51219. [
  51220. {
  51221. name: "Normal",
  51222. height: math.unit(10, "feet"),
  51223. default: true
  51224. },
  51225. ]
  51226. ))
  51227. characterMakers.push(() => makeCharacter(
  51228. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51229. {
  51230. front: {
  51231. height: math.unit(6 + 5/12, "feet"),
  51232. weight: math.unit(750, "lb"),
  51233. name: "Front",
  51234. image: {
  51235. source: "./media/characters/ruchex/front.svg",
  51236. extra: 877/820,
  51237. bottom: 17/894
  51238. },
  51239. extraAttributes: {
  51240. "width": {
  51241. name: "Width",
  51242. power: 1,
  51243. type: "length",
  51244. base: math.unit(4.757, "feet")
  51245. },
  51246. }
  51247. },
  51248. },
  51249. [
  51250. {
  51251. name: "Normal",
  51252. height: math.unit(6 + 5/12, "feet"),
  51253. default: true
  51254. },
  51255. ]
  51256. ))
  51257. characterMakers.push(() => makeCharacter(
  51258. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51259. {
  51260. dressedFront: {
  51261. height: math.unit(191, "cm"),
  51262. weight: math.unit(80, "kg"),
  51263. name: "Front",
  51264. image: {
  51265. source: "./media/characters/buster/dressed-front.svg",
  51266. extra: 1022/973,
  51267. bottom: 69/1091
  51268. }
  51269. },
  51270. dressedBack: {
  51271. height: math.unit(191, "cm"),
  51272. weight: math.unit(80, "kg"),
  51273. name: "Back",
  51274. image: {
  51275. source: "./media/characters/buster/dressed-back.svg",
  51276. extra: 1018/970,
  51277. bottom: 55/1073
  51278. }
  51279. },
  51280. nudeFront: {
  51281. height: math.unit(191, "cm"),
  51282. weight: math.unit(80, "kg"),
  51283. name: "Front (Nude)",
  51284. image: {
  51285. source: "./media/characters/buster/nude-front.svg",
  51286. extra: 1022/973,
  51287. bottom: 69/1091
  51288. }
  51289. },
  51290. nudeBack: {
  51291. height: math.unit(191, "cm"),
  51292. weight: math.unit(80, "kg"),
  51293. name: "Back (Nude)",
  51294. image: {
  51295. source: "./media/characters/buster/nude-back.svg",
  51296. extra: 1018/970,
  51297. bottom: 55/1073
  51298. }
  51299. },
  51300. dick: {
  51301. height: math.unit(2.59, "feet"),
  51302. name: "Dick",
  51303. image: {
  51304. source: "./media/characters/buster/dick.svg"
  51305. }
  51306. },
  51307. ass: {
  51308. height: math.unit(1.2, "feet"),
  51309. name: "Ass",
  51310. image: {
  51311. source: "./media/characters/buster/ass.svg"
  51312. }
  51313. },
  51314. },
  51315. [
  51316. {
  51317. name: "Normal",
  51318. height: math.unit(191, "cm"),
  51319. default: true
  51320. },
  51321. ]
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51325. {
  51326. side: {
  51327. height: math.unit(8.1, "feet"),
  51328. weight: math.unit(3500, "lb"),
  51329. name: "Side",
  51330. image: {
  51331. source: "./media/characters/sonya/side.svg",
  51332. extra: 1730/1317,
  51333. bottom: 86/1816
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(8.1, "feet"),
  51341. default: true
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(6, "feet"),
  51350. weight: math.unit(150, "lb"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/cadence-andrysiak/front.svg",
  51354. extra: 1164/1121,
  51355. bottom: 60/1224
  51356. }
  51357. },
  51358. back: {
  51359. height: math.unit(6, "feet"),
  51360. weight: math.unit(150, "lb"),
  51361. name: "Back",
  51362. image: {
  51363. source: "./media/characters/cadence-andrysiak/back.svg",
  51364. extra: 1200/1165,
  51365. bottom: 9/1209
  51366. }
  51367. },
  51368. dressed: {
  51369. height: math.unit(6, "feet"),
  51370. weight: math.unit(150, "lb"),
  51371. name: "Dressed",
  51372. image: {
  51373. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51374. extra: 1164/1121,
  51375. bottom: 60/1224
  51376. }
  51377. },
  51378. },
  51379. [
  51380. {
  51381. name: "Micro",
  51382. height: math.unit(1, "mm")
  51383. },
  51384. {
  51385. name: "Normal",
  51386. height: math.unit(6, "feet"),
  51387. default: true
  51388. },
  51389. ]
  51390. ))
  51391. characterMakers.push(() => makeCharacter(
  51392. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51393. {
  51394. front: {
  51395. height: math.unit(60, "inches"),
  51396. weight: math.unit(16, "lb"),
  51397. preyCapacity: math.unit(80, "liters"),
  51398. name: "Front",
  51399. image: {
  51400. source: "./media/characters/penny-lynx/front.svg",
  51401. extra: 1959/1769,
  51402. bottom: 49/2008
  51403. }
  51404. },
  51405. },
  51406. [
  51407. {
  51408. name: "Nokia",
  51409. height: math.unit(2, "inches")
  51410. },
  51411. {
  51412. name: "Desktop",
  51413. height: math.unit(24, "inches")
  51414. },
  51415. {
  51416. name: "TV",
  51417. height: math.unit(60, "inches")
  51418. },
  51419. {
  51420. name: "Jumbotron",
  51421. height: math.unit(12, "feet")
  51422. },
  51423. {
  51424. name: "Billboard",
  51425. height: math.unit(48, "feet"),
  51426. default: true
  51427. },
  51428. {
  51429. name: "IMAX",
  51430. height: math.unit(96, "feet")
  51431. },
  51432. {
  51433. name: "SINGULARITY",
  51434. height: math.unit(864938, "miles")
  51435. },
  51436. ]
  51437. ))
  51438. characterMakers.push(() => makeCharacter(
  51439. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51440. {
  51441. front: {
  51442. height: math.unit(5 + 4/12, "feet"),
  51443. weight: math.unit(230, "lb"),
  51444. name: "Front",
  51445. image: {
  51446. source: "./media/characters/sukebe/front.svg",
  51447. extra: 2130/2038,
  51448. bottom: 90/2220
  51449. }
  51450. },
  51451. back: {
  51452. height: math.unit(3.48, "feet"),
  51453. weight: math.unit(230, "lb"),
  51454. name: "Back",
  51455. image: {
  51456. source: "./media/characters/sukebe/back.svg",
  51457. extra: 1670/1604,
  51458. bottom: 0/1670
  51459. }
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Normal",
  51465. height: math.unit(5 + 4/12, "feet"),
  51466. default: true
  51467. },
  51468. ]
  51469. ))
  51470. characterMakers.push(() => makeCharacter(
  51471. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51472. {
  51473. front: {
  51474. height: math.unit(6, "feet"),
  51475. name: "Front",
  51476. image: {
  51477. source: "./media/characters/nylla/front.svg",
  51478. extra: 1868/1699,
  51479. bottom: 97/1965
  51480. }
  51481. },
  51482. back: {
  51483. height: math.unit(6, "feet"),
  51484. name: "Back",
  51485. image: {
  51486. source: "./media/characters/nylla/back.svg",
  51487. extra: 1889/1712,
  51488. bottom: 93/1982
  51489. }
  51490. },
  51491. frontNsfw: {
  51492. height: math.unit(6, "feet"),
  51493. name: "Front (NSFW)",
  51494. image: {
  51495. source: "./media/characters/nylla/front-nsfw.svg",
  51496. extra: 1868/1699,
  51497. bottom: 97/1965
  51498. },
  51499. extraAttributes: {
  51500. "dickLength": {
  51501. name: "Dick Length",
  51502. power: 1,
  51503. type: "length",
  51504. base: math.unit(1.4, "feet")
  51505. },
  51506. "cumVolume": {
  51507. name: "Cum Volume",
  51508. power: 3,
  51509. type: "volume",
  51510. base: math.unit(100, "mL")
  51511. },
  51512. }
  51513. },
  51514. backNsfw: {
  51515. height: math.unit(6, "feet"),
  51516. name: "Back (NSFW)",
  51517. image: {
  51518. source: "./media/characters/nylla/back-nsfw.svg",
  51519. extra: 1889/1712,
  51520. bottom: 93/1982
  51521. }
  51522. },
  51523. maw: {
  51524. height: math.unit(2.10, "feet"),
  51525. name: "Maw",
  51526. image: {
  51527. source: "./media/characters/nylla/maw.svg"
  51528. }
  51529. },
  51530. paws: {
  51531. height: math.unit(2.06, "feet"),
  51532. name: "Paws",
  51533. image: {
  51534. source: "./media/characters/nylla/paws.svg"
  51535. }
  51536. },
  51537. muzzle: {
  51538. height: math.unit(0.61, "feet"),
  51539. name: "Muzzle",
  51540. image: {
  51541. source: "./media/characters/nylla/muzzle.svg"
  51542. }
  51543. },
  51544. sheath: {
  51545. height: math.unit(1.305, "feet"),
  51546. name: "Sheath",
  51547. image: {
  51548. source: "./media/characters/nylla/sheath.svg"
  51549. }
  51550. },
  51551. },
  51552. [
  51553. {
  51554. name: "Micro",
  51555. height: math.unit(7.5, "inches")
  51556. },
  51557. {
  51558. name: "Normal",
  51559. height: math.unit(7, "feet"),
  51560. default: true
  51561. },
  51562. {
  51563. name: "Macro",
  51564. height: math.unit(60, "feet")
  51565. },
  51566. {
  51567. name: "Mega",
  51568. height: math.unit(200, "feet")
  51569. },
  51570. ]
  51571. ))
  51572. characterMakers.push(() => makeCharacter(
  51573. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51574. {
  51575. front: {
  51576. height: math.unit(10, "feet"),
  51577. weight: math.unit(2300, "lb"),
  51578. name: "Front",
  51579. image: {
  51580. source: "./media/characters/hunt3r/front.svg",
  51581. extra: 1909/1742,
  51582. bottom: 46/1955
  51583. }
  51584. },
  51585. },
  51586. [
  51587. {
  51588. name: "Normal",
  51589. height: math.unit(10, "feet"),
  51590. default: true
  51591. },
  51592. ]
  51593. ))
  51594. characterMakers.push(() => makeCharacter(
  51595. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51596. {
  51597. dressed: {
  51598. height: math.unit(11, "feet"),
  51599. weight: math.unit(18500, "lb"),
  51600. preyCapacity: math.unit(9, "people"),
  51601. name: "Dressed",
  51602. image: {
  51603. source: "./media/characters/cylphis/dressed.svg",
  51604. extra: 1028/1003,
  51605. bottom: 75/1103
  51606. },
  51607. },
  51608. undressed: {
  51609. height: math.unit(11, "feet"),
  51610. weight: math.unit(18500, "lb"),
  51611. preyCapacity: math.unit(9, "people"),
  51612. name: "Undressed",
  51613. image: {
  51614. source: "./media/characters/cylphis/undressed.svg",
  51615. extra: 1028/1003,
  51616. bottom: 75/1103
  51617. }
  51618. },
  51619. full: {
  51620. height: math.unit(11, "feet"),
  51621. weight: math.unit(18500 + 150*9, "lb"),
  51622. preyCapacity: math.unit(9, "people"),
  51623. name: "Full",
  51624. image: {
  51625. source: "./media/characters/cylphis/full.svg",
  51626. extra: 1028/1003,
  51627. bottom: 75/1103
  51628. }
  51629. },
  51630. },
  51631. [
  51632. {
  51633. name: "Small",
  51634. height: math.unit(8, "feet")
  51635. },
  51636. {
  51637. name: "Normal",
  51638. height: math.unit(11, "feet"),
  51639. default: true
  51640. },
  51641. ]
  51642. ))
  51643. characterMakers.push(() => makeCharacter(
  51644. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51645. {
  51646. front: {
  51647. height: math.unit(2 + 7/12, "feet"),
  51648. name: "Front",
  51649. image: {
  51650. source: "./media/characters/orishan/front.svg",
  51651. extra: 1058/1023,
  51652. bottom: 23/1081
  51653. }
  51654. },
  51655. back: {
  51656. height: math.unit(2 + 7/12, "feet"),
  51657. name: "Back",
  51658. image: {
  51659. source: "./media/characters/orishan/back.svg",
  51660. extra: 1058/1023,
  51661. bottom: 23/1081
  51662. }
  51663. },
  51664. },
  51665. [
  51666. {
  51667. name: "Micro",
  51668. height: math.unit(2, "cm")
  51669. },
  51670. {
  51671. name: "Normal",
  51672. height: math.unit(2 + 7/12, "feet"),
  51673. default: true
  51674. },
  51675. ]
  51676. ))
  51677. characterMakers.push(() => makeCharacter(
  51678. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51679. {
  51680. front: {
  51681. height: math.unit(3, "meters"),
  51682. weight: math.unit(508, "kg"),
  51683. name: "Front",
  51684. image: {
  51685. source: "./media/characters/seranis/front.svg",
  51686. extra: 1478/1454,
  51687. bottom: 41/1519
  51688. }
  51689. },
  51690. },
  51691. [
  51692. {
  51693. name: "Normal",
  51694. height: math.unit(3, "meters"),
  51695. default: true
  51696. },
  51697. {
  51698. name: "Macro",
  51699. height: math.unit(108, "meters")
  51700. },
  51701. {
  51702. name: "Megamacro",
  51703. height: math.unit(1250, "meters")
  51704. },
  51705. ]
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51709. {
  51710. undressed: {
  51711. height: math.unit(5 + 3/12, "feet"),
  51712. name: "Undressed",
  51713. image: {
  51714. source: "./media/characters/ankou/undressed.svg",
  51715. extra: 1301/1213,
  51716. bottom: 87/1388
  51717. }
  51718. },
  51719. dressed: {
  51720. height: math.unit(5 + 3/12, "feet"),
  51721. name: "Dressed",
  51722. image: {
  51723. source: "./media/characters/ankou/dressed.svg",
  51724. extra: 1301/1213,
  51725. bottom: 87/1388
  51726. }
  51727. },
  51728. head: {
  51729. height: math.unit(1.61, "feet"),
  51730. name: "Head",
  51731. image: {
  51732. source: "./media/characters/ankou/head.svg"
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(5 + 3/12, "feet"),
  51740. default: true
  51741. },
  51742. ]
  51743. ))
  51744. characterMakers.push(() => makeCharacter(
  51745. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51746. {
  51747. side: {
  51748. height: math.unit(6 + 3/12, "feet"),
  51749. weight: math.unit(200, "kg"),
  51750. name: "Side",
  51751. image: {
  51752. source: "./media/characters/juniper-skunktaur/side.svg",
  51753. extra: 1574/1229,
  51754. bottom: 38/1612
  51755. }
  51756. },
  51757. front: {
  51758. height: math.unit(6 + 3/12, "feet"),
  51759. weight: math.unit(200, "kg"),
  51760. name: "Front",
  51761. image: {
  51762. source: "./media/characters/juniper-skunktaur/front.svg",
  51763. extra: 1337/1278,
  51764. bottom: 22/1359
  51765. }
  51766. },
  51767. back: {
  51768. height: math.unit(6 + 3/12, "feet"),
  51769. weight: math.unit(200, "kg"),
  51770. name: "Back",
  51771. image: {
  51772. source: "./media/characters/juniper-skunktaur/back.svg",
  51773. extra: 1618/1273,
  51774. bottom: 13/1631
  51775. }
  51776. },
  51777. top: {
  51778. height: math.unit(2.62, "feet"),
  51779. weight: math.unit(200, "kg"),
  51780. name: "Top",
  51781. image: {
  51782. source: "./media/characters/juniper-skunktaur/top.svg"
  51783. }
  51784. },
  51785. },
  51786. [
  51787. {
  51788. name: "Normal",
  51789. height: math.unit(6 + 3/12, "feet"),
  51790. default: true
  51791. },
  51792. ]
  51793. ))
  51794. characterMakers.push(() => makeCharacter(
  51795. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51796. {
  51797. front: {
  51798. height: math.unit(20.5, "feet"),
  51799. name: "Front",
  51800. image: {
  51801. source: "./media/characters/rei/front.svg",
  51802. extra: 1349/1195,
  51803. bottom: 31/1380
  51804. }
  51805. },
  51806. back: {
  51807. height: math.unit(20.5, "feet"),
  51808. name: "Back",
  51809. image: {
  51810. source: "./media/characters/rei/back.svg",
  51811. extra: 1358/1204,
  51812. bottom: 22/1380
  51813. }
  51814. },
  51815. pawsDigi: {
  51816. height: math.unit(3.45, "feet"),
  51817. name: "Paws (Digi)",
  51818. image: {
  51819. source: "./media/characters/rei/paws-digi.svg"
  51820. }
  51821. },
  51822. pawsPlanti: {
  51823. height: math.unit(3.45, "feet"),
  51824. name: "Paws (Planti)",
  51825. image: {
  51826. source: "./media/characters/rei/paws-planti.svg"
  51827. }
  51828. },
  51829. },
  51830. [
  51831. {
  51832. name: "Normal",
  51833. height: math.unit(20.5, "feet"),
  51834. default: true
  51835. },
  51836. ]
  51837. ))
  51838. characterMakers.push(() => makeCharacter(
  51839. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51840. {
  51841. front: {
  51842. height: math.unit(5 + 11/12, "feet"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/carina/front.svg",
  51846. extra: 1720/1449,
  51847. bottom: 14/1734
  51848. }
  51849. },
  51850. back: {
  51851. height: math.unit(5 + 11/12, "feet"),
  51852. name: "Back",
  51853. image: {
  51854. source: "./media/characters/carina/back.svg",
  51855. extra: 1493/1445,
  51856. bottom: 17/1510
  51857. }
  51858. },
  51859. paw: {
  51860. height: math.unit(0.92, "feet"),
  51861. name: "Paw",
  51862. image: {
  51863. source: "./media/characters/carina/paw.svg"
  51864. }
  51865. },
  51866. },
  51867. [
  51868. {
  51869. name: "Normal",
  51870. height: math.unit(5 + 11/12, "feet"),
  51871. default: true
  51872. },
  51873. ]
  51874. ))
  51875. characterMakers.push(() => makeCharacter(
  51876. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51877. {
  51878. front: {
  51879. height: math.unit(4.88, "meters"),
  51880. name: "Front",
  51881. image: {
  51882. source: "./media/characters/maya/front.svg",
  51883. extra: 1222/1145,
  51884. bottom: 57/1279
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Normal",
  51891. height: math.unit(4.88, "meters"),
  51892. default: true
  51893. },
  51894. {
  51895. name: "Macro",
  51896. height: math.unit(38.1, "meters")
  51897. },
  51898. {
  51899. name: "Macro+",
  51900. height: math.unit(152.4, "meters")
  51901. },
  51902. {
  51903. name: "Macro++",
  51904. height: math.unit(16.09, "km")
  51905. },
  51906. {
  51907. name: "Mega-macro",
  51908. height: math.unit(700, "megameters")
  51909. },
  51910. ]
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(6 + 2/12, "feet"),
  51917. weight: math.unit(500, "lb"),
  51918. preyCapacity: math.unit(4, "people"),
  51919. name: "Front",
  51920. image: {
  51921. source: "./media/characters/yepir/front.svg"
  51922. }
  51923. },
  51924. side: {
  51925. height: math.unit(6 + 2/12, "feet"),
  51926. weight: math.unit(500, "lb"),
  51927. preyCapacity: math.unit(4, "people"),
  51928. name: "Side",
  51929. image: {
  51930. source: "./media/characters/yepir/side.svg"
  51931. }
  51932. },
  51933. paw: {
  51934. height: math.unit(1.05, "feet"),
  51935. name: "Paw",
  51936. image: {
  51937. source: "./media/characters/yepir/paw.svg"
  51938. }
  51939. },
  51940. },
  51941. [
  51942. {
  51943. name: "Normal",
  51944. height: math.unit(6 + 2/12, "feet"),
  51945. default: true
  51946. },
  51947. ]
  51948. ))
  51949. characterMakers.push(() => makeCharacter(
  51950. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51951. {
  51952. front: {
  51953. height: math.unit(5 + 4/12, "feet"),
  51954. name: "Front",
  51955. image: {
  51956. source: "./media/characters/russec/front.svg",
  51957. extra: 1926/1626,
  51958. bottom: 72/1998
  51959. }
  51960. },
  51961. back: {
  51962. height: math.unit(5 + 4/12, "feet"),
  51963. name: "Back",
  51964. image: {
  51965. source: "./media/characters/russec/back.svg",
  51966. extra: 1910/1591,
  51967. bottom: 48/1958
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Small",
  51974. height: math.unit(5 + 4/12, "feet")
  51975. },
  51976. {
  51977. name: "Normal",
  51978. height: math.unit(72, "feet"),
  51979. default: true
  51980. },
  51981. ]
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51985. {
  51986. side: {
  51987. height: math.unit(12, "feet"),
  51988. name: "Side",
  51989. image: {
  51990. source: "./media/characters/cianus/side.svg",
  51991. extra: 808/526,
  51992. bottom: 61/869
  51993. }
  51994. },
  51995. },
  51996. [
  51997. {
  51998. name: "Normal",
  51999. height: math.unit(12, "feet"),
  52000. default: true
  52001. },
  52002. ]
  52003. ))
  52004. characterMakers.push(() => makeCharacter(
  52005. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52006. {
  52007. front: {
  52008. height: math.unit(9 + 6/12, "feet"),
  52009. weight: math.unit(300, "lb"),
  52010. name: "Front",
  52011. image: {
  52012. source: "./media/characters/ahab/front.svg",
  52013. extra: 1897/1868,
  52014. bottom: 121/2018
  52015. }
  52016. },
  52017. frontNsfw: {
  52018. height: math.unit(9 + 6/12, "feet"),
  52019. weight: math.unit(300, "lb"),
  52020. name: "Front-nsfw",
  52021. image: {
  52022. source: "./media/characters/ahab/front-nsfw.svg",
  52023. extra: 1897/1868,
  52024. bottom: 121/2018
  52025. }
  52026. },
  52027. },
  52028. [
  52029. {
  52030. name: "Normal",
  52031. height: math.unit(9 + 6/12, "feet")
  52032. },
  52033. {
  52034. name: "Macro",
  52035. height: math.unit(657, "feet"),
  52036. default: true
  52037. },
  52038. ]
  52039. ))
  52040. characterMakers.push(() => makeCharacter(
  52041. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52042. {
  52043. front: {
  52044. height: math.unit(2.69, "meters"),
  52045. weight: math.unit(132, "kg"),
  52046. name: "Front",
  52047. image: {
  52048. source: "./media/characters/aarkus/front.svg",
  52049. extra: 1400/1231,
  52050. bottom: 34/1434
  52051. }
  52052. },
  52053. back: {
  52054. height: math.unit(2.69, "meters"),
  52055. weight: math.unit(132, "kg"),
  52056. name: "Back",
  52057. image: {
  52058. source: "./media/characters/aarkus/back.svg",
  52059. extra: 1381/1218,
  52060. bottom: 30/1411
  52061. }
  52062. },
  52063. frontNsfw: {
  52064. height: math.unit(2.69, "meters"),
  52065. weight: math.unit(132, "kg"),
  52066. name: "Front (NSFW)",
  52067. image: {
  52068. source: "./media/characters/aarkus/front-nsfw.svg",
  52069. extra: 1400/1231,
  52070. bottom: 34/1434
  52071. }
  52072. },
  52073. foot: {
  52074. height: math.unit(1.45, "feet"),
  52075. name: "Foot",
  52076. image: {
  52077. source: "./media/characters/aarkus/foot.svg"
  52078. }
  52079. },
  52080. head: {
  52081. height: math.unit(2.85, "feet"),
  52082. name: "Head",
  52083. image: {
  52084. source: "./media/characters/aarkus/head.svg"
  52085. }
  52086. },
  52087. headAlt: {
  52088. height: math.unit(3.07, "feet"),
  52089. name: "Head (Alt)",
  52090. image: {
  52091. source: "./media/characters/aarkus/head-alt.svg"
  52092. }
  52093. },
  52094. mouth: {
  52095. height: math.unit(1.25, "feet"),
  52096. name: "Mouth",
  52097. image: {
  52098. source: "./media/characters/aarkus/mouth.svg"
  52099. }
  52100. },
  52101. dick: {
  52102. height: math.unit(1.77, "feet"),
  52103. name: "Dick",
  52104. image: {
  52105. source: "./media/characters/aarkus/dick.svg"
  52106. }
  52107. },
  52108. },
  52109. [
  52110. {
  52111. name: "Normal",
  52112. height: math.unit(2.69, "meters"),
  52113. default: true
  52114. },
  52115. {
  52116. name: "Macro",
  52117. height: math.unit(269, "meters")
  52118. },
  52119. {
  52120. name: "Macro+",
  52121. height: math.unit(672.5, "meters")
  52122. },
  52123. {
  52124. name: "Megamacro",
  52125. height: math.unit(2.017, "km")
  52126. },
  52127. ]
  52128. ))
  52129. characterMakers.push(() => makeCharacter(
  52130. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52131. {
  52132. front: {
  52133. height: math.unit(23.47, "cm"),
  52134. weight: math.unit(600, "grams"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/diode/front.svg",
  52138. extra: 1778/1396,
  52139. bottom: 95/1873
  52140. }
  52141. },
  52142. side: {
  52143. height: math.unit(23.47, "cm"),
  52144. weight: math.unit(600, "grams"),
  52145. name: "Side",
  52146. image: {
  52147. source: "./media/characters/diode/side.svg",
  52148. extra: 1831/1404,
  52149. bottom: 86/1917
  52150. }
  52151. },
  52152. wings: {
  52153. height: math.unit(0.683, "feet"),
  52154. name: "Wings",
  52155. image: {
  52156. source: "./media/characters/diode/wings.svg"
  52157. }
  52158. },
  52159. },
  52160. [
  52161. {
  52162. name: "Normal",
  52163. height: math.unit(23.47, "cm"),
  52164. default: true
  52165. },
  52166. ]
  52167. ))
  52168. characterMakers.push(() => makeCharacter(
  52169. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52170. {
  52171. front: {
  52172. height: math.unit(6 + 3/12, "feet"),
  52173. weight: math.unit(250, "lb"),
  52174. name: "Front",
  52175. image: {
  52176. source: "./media/characters/reika/front.svg",
  52177. extra: 1120/1078,
  52178. bottom: 86/1206
  52179. }
  52180. },
  52181. },
  52182. [
  52183. {
  52184. name: "Normal",
  52185. height: math.unit(6 + 3/12, "feet"),
  52186. default: true
  52187. },
  52188. ]
  52189. ))
  52190. characterMakers.push(() => makeCharacter(
  52191. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52192. {
  52193. front: {
  52194. height: math.unit(16 + 8/12, "feet"),
  52195. weight: math.unit(9000, "lb"),
  52196. name: "Front",
  52197. image: {
  52198. source: "./media/characters/lokuto-takama/front.svg",
  52199. extra: 1774/1632,
  52200. bottom: 147/1921
  52201. },
  52202. extraAttributes: {
  52203. "bustWidth": {
  52204. name: "Bust Width",
  52205. power: 1,
  52206. type: "length",
  52207. base: math.unit(2.4, "meters")
  52208. },
  52209. "breastWeight": {
  52210. name: "Breast Weight",
  52211. power: 3,
  52212. type: "mass",
  52213. base: math.unit(1000, "kg")
  52214. },
  52215. }
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Normal",
  52221. height: math.unit(16 + 8/12, "feet"),
  52222. default: true
  52223. },
  52224. ]
  52225. ))
  52226. characterMakers.push(() => makeCharacter(
  52227. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52228. {
  52229. front: {
  52230. height: math.unit(10, "cm"),
  52231. weight: math.unit(850, "grams"),
  52232. name: "Front",
  52233. image: {
  52234. source: "./media/characters/owak-bone/front.svg",
  52235. extra: 1965/1801,
  52236. bottom: 31/1996
  52237. }
  52238. },
  52239. },
  52240. [
  52241. {
  52242. name: "Normal",
  52243. height: math.unit(10, "cm"),
  52244. default: true
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(2 + 6/12, "feet"),
  52253. weight: math.unit(9, "lb"),
  52254. name: "Front",
  52255. image: {
  52256. source: "./media/characters/muffin/front.svg",
  52257. extra: 1220/1195,
  52258. bottom: 84/1304
  52259. }
  52260. },
  52261. },
  52262. [
  52263. {
  52264. name: "Normal",
  52265. height: math.unit(2 + 6/12, "feet"),
  52266. default: true
  52267. },
  52268. ]
  52269. ))
  52270. characterMakers.push(() => makeCharacter(
  52271. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52272. {
  52273. front: {
  52274. height: math.unit(7, "feet"),
  52275. name: "Front",
  52276. image: {
  52277. source: "./media/characters/chimera/front.svg",
  52278. extra: 1752/1614,
  52279. bottom: 68/1820
  52280. }
  52281. },
  52282. },
  52283. [
  52284. {
  52285. name: "Normal",
  52286. height: math.unit(7, "feet")
  52287. },
  52288. {
  52289. name: "Gigamacro",
  52290. height: math.unit(2.9, "gigameters"),
  52291. default: true
  52292. },
  52293. {
  52294. name: "Universal",
  52295. height: math.unit(1.56e26, "yottameters")
  52296. },
  52297. ]
  52298. ))
  52299. characterMakers.push(() => makeCharacter(
  52300. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52301. {
  52302. front: {
  52303. height: math.unit(3, "feet"),
  52304. weight: math.unit(20, "lb"),
  52305. name: "Front",
  52306. image: {
  52307. source: "./media/characters/kit-fennec-fox/front.svg",
  52308. extra: 1027/932,
  52309. bottom: 16/1043
  52310. }
  52311. },
  52312. back: {
  52313. height: math.unit(3, "feet"),
  52314. weight: math.unit(20, "lb"),
  52315. name: "Back",
  52316. image: {
  52317. source: "./media/characters/kit-fennec-fox/back.svg",
  52318. extra: 1027/932,
  52319. bottom: 16/1043
  52320. }
  52321. },
  52322. },
  52323. [
  52324. {
  52325. name: "Normal",
  52326. height: math.unit(3, "feet"),
  52327. default: true
  52328. },
  52329. ]
  52330. ))
  52331. characterMakers.push(() => makeCharacter(
  52332. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52333. {
  52334. front: {
  52335. height: math.unit(167, "cm"),
  52336. name: "Front",
  52337. image: {
  52338. source: "./media/characters/blue-otter/front.svg",
  52339. extra: 1951/1920,
  52340. bottom: 31/1982
  52341. }
  52342. },
  52343. },
  52344. [
  52345. {
  52346. name: "Otter-Sized",
  52347. height: math.unit(100, "cm")
  52348. },
  52349. {
  52350. name: "Normal",
  52351. height: math.unit(167, "cm"),
  52352. default: true
  52353. },
  52354. ]
  52355. ))
  52356. characterMakers.push(() => makeCharacter(
  52357. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52358. {
  52359. front: {
  52360. height: math.unit(4 + 4/12, "feet"),
  52361. name: "Front",
  52362. image: {
  52363. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52364. extra: 1072/1067,
  52365. bottom: 117/1189
  52366. }
  52367. },
  52368. back: {
  52369. height: math.unit(4 + 4/12, "feet"),
  52370. name: "Back",
  52371. image: {
  52372. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52373. extra: 1135/1129,
  52374. bottom: 57/1192
  52375. }
  52376. },
  52377. head: {
  52378. height: math.unit(1.77, "feet"),
  52379. name: "Head",
  52380. image: {
  52381. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52382. }
  52383. },
  52384. },
  52385. [
  52386. {
  52387. name: "Normal",
  52388. height: math.unit(4 + 4/12, "feet"),
  52389. default: true
  52390. },
  52391. ]
  52392. ))
  52393. characterMakers.push(() => makeCharacter(
  52394. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52395. {
  52396. front: {
  52397. height: math.unit(2, "inches"),
  52398. name: "Front",
  52399. image: {
  52400. source: "./media/characters/carley-hartford/front.svg",
  52401. extra: 1035/988,
  52402. bottom: 23/1058
  52403. }
  52404. },
  52405. back: {
  52406. height: math.unit(2, "inches"),
  52407. name: "Back",
  52408. image: {
  52409. source: "./media/characters/carley-hartford/back.svg",
  52410. extra: 1035/988,
  52411. bottom: 23/1058
  52412. }
  52413. },
  52414. dressed: {
  52415. height: math.unit(2, "inches"),
  52416. name: "Dressed",
  52417. image: {
  52418. source: "./media/characters/carley-hartford/dressed.svg",
  52419. extra: 651/620,
  52420. bottom: 0/651
  52421. }
  52422. },
  52423. },
  52424. [
  52425. {
  52426. name: "Micro",
  52427. height: math.unit(2, "inches"),
  52428. default: true
  52429. },
  52430. {
  52431. name: "Macro",
  52432. height: math.unit(6 + 3/12, "feet")
  52433. },
  52434. ]
  52435. ))
  52436. characterMakers.push(() => makeCharacter(
  52437. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52438. {
  52439. front: {
  52440. height: math.unit(2 + 3/12, "feet"),
  52441. weight: math.unit(15 + 7/16, "lb"),
  52442. name: "Front",
  52443. image: {
  52444. source: "./media/characters/duke/front.svg",
  52445. extra: 910/815,
  52446. bottom: 30/940
  52447. }
  52448. },
  52449. },
  52450. [
  52451. {
  52452. name: "Normal",
  52453. height: math.unit(2 + 3/12, "feet"),
  52454. default: true
  52455. },
  52456. ]
  52457. ))
  52458. characterMakers.push(() => makeCharacter(
  52459. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52460. {
  52461. front: {
  52462. height: math.unit(5 + 4/12, "feet"),
  52463. weight: math.unit(156, "lb"),
  52464. name: "Front",
  52465. image: {
  52466. source: "./media/characters/dein/front.svg",
  52467. extra: 855/815,
  52468. bottom: 48/903
  52469. }
  52470. },
  52471. side: {
  52472. height: math.unit(5 + 4/12, "feet"),
  52473. weight: math.unit(156, "lb"),
  52474. name: "side",
  52475. image: {
  52476. source: "./media/characters/dein/side.svg",
  52477. extra: 846/803,
  52478. bottom: 25/871
  52479. }
  52480. },
  52481. maw: {
  52482. height: math.unit(1.45, "feet"),
  52483. name: "Maw",
  52484. image: {
  52485. source: "./media/characters/dein/maw.svg"
  52486. }
  52487. },
  52488. },
  52489. [
  52490. {
  52491. name: "Ferret Sized",
  52492. height: math.unit(2 + 5/12, "feet")
  52493. },
  52494. {
  52495. name: "Normal",
  52496. height: math.unit(5 + 4/12, "feet"),
  52497. default: true
  52498. },
  52499. ]
  52500. ))
  52501. characterMakers.push(() => makeCharacter(
  52502. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52503. {
  52504. front: {
  52505. height: math.unit(84 + 8/12, "feet"),
  52506. weight: math.unit(942180, "lb"),
  52507. name: "Front",
  52508. image: {
  52509. source: "./media/characters/daurine-arima/front.svg",
  52510. extra: 1989/1782,
  52511. bottom: 37/2026
  52512. }
  52513. },
  52514. side: {
  52515. height: math.unit(84 + 8/12, "feet"),
  52516. weight: math.unit(942180, "lb"),
  52517. name: "Side",
  52518. image: {
  52519. source: "./media/characters/daurine-arima/side.svg",
  52520. extra: 1997/1790,
  52521. bottom: 21/2018
  52522. }
  52523. },
  52524. back: {
  52525. height: math.unit(84 + 8/12, "feet"),
  52526. weight: math.unit(942180, "lb"),
  52527. name: "Back",
  52528. image: {
  52529. source: "./media/characters/daurine-arima/back.svg",
  52530. extra: 1992/1800,
  52531. bottom: 12/2004
  52532. }
  52533. },
  52534. head: {
  52535. height: math.unit(15.5, "feet"),
  52536. name: "Head",
  52537. image: {
  52538. source: "./media/characters/daurine-arima/head.svg"
  52539. }
  52540. },
  52541. headAlt: {
  52542. height: math.unit(19.19, "feet"),
  52543. name: "Head (Alt)",
  52544. image: {
  52545. source: "./media/characters/daurine-arima/head-alt.svg"
  52546. }
  52547. },
  52548. },
  52549. [
  52550. {
  52551. name: "Minimum height",
  52552. height: math.unit(8 + 10/12, "feet")
  52553. },
  52554. {
  52555. name: "Comfort height",
  52556. height: math.unit(19 + 6 /12, "feet")
  52557. },
  52558. {
  52559. name: "\"Normal\" height",
  52560. height: math.unit(28 + 10/12, "feet")
  52561. },
  52562. {
  52563. name: "Base height",
  52564. height: math.unit(84 + 8/12, "feet"),
  52565. default: true
  52566. },
  52567. {
  52568. name: "Mini-macro",
  52569. height: math.unit(2360, "feet")
  52570. },
  52571. {
  52572. name: "Macro",
  52573. height: math.unit(10, "miles")
  52574. },
  52575. {
  52576. name: "Goddess",
  52577. height: math.unit(9.99e40, "yottameters")
  52578. },
  52579. ]
  52580. ))
  52581. characterMakers.push(() => makeCharacter(
  52582. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52583. {
  52584. front: {
  52585. height: math.unit(2.3, "meters"),
  52586. name: "Front",
  52587. image: {
  52588. source: "./media/characters/cilenomon/front.svg",
  52589. extra: 1963/1778,
  52590. bottom: 54/2017
  52591. }
  52592. },
  52593. },
  52594. [
  52595. {
  52596. name: "Normal",
  52597. height: math.unit(2.3, "meters"),
  52598. default: true
  52599. },
  52600. {
  52601. name: "Big",
  52602. height: math.unit(5, "meters")
  52603. },
  52604. {
  52605. name: "Macro",
  52606. height: math.unit(30, "meters")
  52607. },
  52608. {
  52609. name: "True",
  52610. height: math.unit(1, "universe")
  52611. },
  52612. ]
  52613. ))
  52614. characterMakers.push(() => makeCharacter(
  52615. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52616. {
  52617. front: {
  52618. height: math.unit(5, "feet"),
  52619. name: "Front",
  52620. image: {
  52621. source: "./media/characters/sen-mink/front.svg",
  52622. extra: 1727/1675,
  52623. bottom: 35/1762
  52624. }
  52625. },
  52626. },
  52627. [
  52628. {
  52629. name: "Normal",
  52630. height: math.unit(5, "feet"),
  52631. default: true
  52632. },
  52633. ]
  52634. ))
  52635. characterMakers.push(() => makeCharacter(
  52636. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52637. {
  52638. front: {
  52639. height: math.unit(5.42999, "feet"),
  52640. weight: math.unit(100, "lb"),
  52641. name: "Front",
  52642. image: {
  52643. source: "./media/characters/ophois/front.svg",
  52644. extra: 1429/1286,
  52645. bottom: 60/1489
  52646. }
  52647. },
  52648. },
  52649. [
  52650. {
  52651. name: "Normal",
  52652. height: math.unit(5.42999, "feet"),
  52653. default: true
  52654. },
  52655. ]
  52656. ))
  52657. characterMakers.push(() => makeCharacter(
  52658. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52659. {
  52660. front: {
  52661. height: math.unit(2, "meters"),
  52662. name: "Front",
  52663. image: {
  52664. source: "./media/characters/riley/front.svg",
  52665. extra: 1779/1754,
  52666. bottom: 139/1918
  52667. }
  52668. },
  52669. },
  52670. [
  52671. {
  52672. name: "Normal",
  52673. height: math.unit(2, "meters"),
  52674. default: true
  52675. },
  52676. ]
  52677. ))
  52678. characterMakers.push(() => makeCharacter(
  52679. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52680. {
  52681. front: {
  52682. height: math.unit(6 + 2/12, "feet"),
  52683. weight: math.unit(195, "lb"),
  52684. preyCapacity: math.unit(6, "people"),
  52685. name: "Front",
  52686. image: {
  52687. source: "./media/characters/shuken-flash/front.svg",
  52688. extra: 1905/1739,
  52689. bottom: 65/1970
  52690. }
  52691. },
  52692. back: {
  52693. height: math.unit(6 + 2/12, "feet"),
  52694. weight: math.unit(195, "lb"),
  52695. preyCapacity: math.unit(6, "people"),
  52696. name: "Back",
  52697. image: {
  52698. source: "./media/characters/shuken-flash/back.svg",
  52699. extra: 1912/1751,
  52700. bottom: 13/1925
  52701. }
  52702. },
  52703. },
  52704. [
  52705. {
  52706. name: "Normal",
  52707. height: math.unit(6 + 2/12, "feet"),
  52708. default: true
  52709. },
  52710. ]
  52711. ))
  52712. characterMakers.push(() => makeCharacter(
  52713. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52714. {
  52715. front: {
  52716. height: math.unit(5 + 9/12, "feet"),
  52717. weight: math.unit(150, "lb"),
  52718. name: "Front",
  52719. image: {
  52720. source: "./media/characters/plat/front.svg",
  52721. extra: 1816/1703,
  52722. bottom: 43/1859
  52723. }
  52724. },
  52725. side: {
  52726. height: math.unit(5 + 9/12, "feet"),
  52727. weight: math.unit(300, "lb"),
  52728. name: "Side",
  52729. image: {
  52730. source: "./media/characters/plat/side.svg",
  52731. extra: 1824/1699,
  52732. bottom: 18/1842
  52733. }
  52734. },
  52735. },
  52736. [
  52737. {
  52738. name: "Normal",
  52739. height: math.unit(5 + 9/12, "feet"),
  52740. default: true
  52741. },
  52742. ]
  52743. ))
  52744. characterMakers.push(() => makeCharacter(
  52745. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52746. {
  52747. front: {
  52748. height: math.unit(9, "feet"),
  52749. weight: math.unit(1800, "lb"),
  52750. name: "Front",
  52751. image: {
  52752. source: "./media/characters/elaine/front.svg",
  52753. extra: 1833/1354,
  52754. bottom: 25/1858
  52755. }
  52756. },
  52757. back: {
  52758. height: math.unit(8.8, "feet"),
  52759. weight: math.unit(1800, "lb"),
  52760. name: "Back",
  52761. image: {
  52762. source: "./media/characters/elaine/back.svg",
  52763. extra: 1641/1233,
  52764. bottom: 53/1694
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Normal",
  52771. height: math.unit(9, "feet"),
  52772. default: true
  52773. },
  52774. ]
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(17 + 9/12, "feet"),
  52781. weight: math.unit(8000, "lb"),
  52782. name: "Front",
  52783. image: {
  52784. source: "./media/characters/vera-raven/front.svg",
  52785. extra: 1457/1412,
  52786. bottom: 121/1578
  52787. }
  52788. },
  52789. side: {
  52790. height: math.unit(17 + 9/12, "feet"),
  52791. weight: math.unit(8000, "lb"),
  52792. name: "Side",
  52793. image: {
  52794. source: "./media/characters/vera-raven/side.svg",
  52795. extra: 1510/1464,
  52796. bottom: 54/1564
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Normal",
  52803. height: math.unit(17 + 9/12, "feet"),
  52804. default: true
  52805. },
  52806. ]
  52807. ))
  52808. characterMakers.push(() => makeCharacter(
  52809. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52810. {
  52811. dressed: {
  52812. height: math.unit(6 + 9/12, "feet"),
  52813. name: "Dressed",
  52814. image: {
  52815. source: "./media/characters/nakisha/dressed.svg",
  52816. extra: 1909/1757,
  52817. bottom: 48/1957
  52818. }
  52819. },
  52820. nude: {
  52821. height: math.unit(6 + 9/12, "feet"),
  52822. name: "Nude",
  52823. image: {
  52824. source: "./media/characters/nakisha/nude.svg",
  52825. extra: 1917/1765,
  52826. bottom: 34/1951
  52827. }
  52828. },
  52829. },
  52830. [
  52831. {
  52832. name: "Normal",
  52833. height: math.unit(6 + 9/12, "feet"),
  52834. default: true
  52835. },
  52836. ]
  52837. ))
  52838. characterMakers.push(() => makeCharacter(
  52839. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52840. {
  52841. front: {
  52842. height: math.unit(87, "meters"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/serafin/front.svg",
  52846. extra: 1919/1776,
  52847. bottom: 65/1984
  52848. }
  52849. },
  52850. },
  52851. [
  52852. {
  52853. name: "Normal",
  52854. height: math.unit(87, "meters"),
  52855. default: true
  52856. },
  52857. ]
  52858. ))
  52859. characterMakers.push(() => makeCharacter(
  52860. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52861. {
  52862. front: {
  52863. height: math.unit(6, "feet"),
  52864. weight: math.unit(200, "lb"),
  52865. name: "Front",
  52866. image: {
  52867. source: "./media/characters/poptart/front.svg",
  52868. extra: 615/583,
  52869. bottom: 23/638
  52870. }
  52871. },
  52872. back: {
  52873. height: math.unit(6, "feet"),
  52874. weight: math.unit(200, "lb"),
  52875. name: "Back",
  52876. image: {
  52877. source: "./media/characters/poptart/back.svg",
  52878. extra: 617/584,
  52879. bottom: 22/639
  52880. }
  52881. },
  52882. frontNsfw: {
  52883. height: math.unit(6, "feet"),
  52884. weight: math.unit(200, "lb"),
  52885. name: "Front (NSFW)",
  52886. image: {
  52887. source: "./media/characters/poptart/front-nsfw.svg",
  52888. extra: 615/583,
  52889. bottom: 23/638
  52890. }
  52891. },
  52892. backNsfw: {
  52893. height: math.unit(6, "feet"),
  52894. weight: math.unit(200, "lb"),
  52895. name: "Back (NSFW)",
  52896. image: {
  52897. source: "./media/characters/poptart/back-nsfw.svg",
  52898. extra: 617/584,
  52899. bottom: 22/639
  52900. }
  52901. },
  52902. hand: {
  52903. height: math.unit(1.14, "feet"),
  52904. name: "Hand",
  52905. image: {
  52906. source: "./media/characters/poptart/hand.svg"
  52907. }
  52908. },
  52909. foot: {
  52910. height: math.unit(1.5, "feet"),
  52911. name: "Foot",
  52912. image: {
  52913. source: "./media/characters/poptart/foot.svg"
  52914. }
  52915. },
  52916. },
  52917. [
  52918. {
  52919. name: "Normal",
  52920. height: math.unit(6, "feet"),
  52921. default: true
  52922. },
  52923. {
  52924. name: "Grande",
  52925. height: math.unit(350, "feet")
  52926. },
  52927. {
  52928. name: "Massif",
  52929. height: math.unit(967, "feet")
  52930. },
  52931. ]
  52932. ))
  52933. characterMakers.push(() => makeCharacter(
  52934. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52935. {
  52936. hyenaSide: {
  52937. height: math.unit(120, "cm"),
  52938. weight: math.unit(120, "lb"),
  52939. name: "Side",
  52940. image: {
  52941. source: "./media/characters/trance/hyena-side.svg",
  52942. extra: 998/904,
  52943. bottom: 76/1074
  52944. }
  52945. },
  52946. },
  52947. [
  52948. {
  52949. name: "Normal",
  52950. height: math.unit(120, "cm"),
  52951. default: true
  52952. },
  52953. {
  52954. name: "Dire",
  52955. height: math.unit(230, "cm")
  52956. },
  52957. {
  52958. name: "Macro",
  52959. height: math.unit(37, "feet")
  52960. },
  52961. ]
  52962. ))
  52963. characterMakers.push(() => makeCharacter(
  52964. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52965. {
  52966. front: {
  52967. height: math.unit(6 + 3/12, "feet"),
  52968. name: "Front",
  52969. image: {
  52970. source: "./media/characters/michael-berretta/front.svg",
  52971. extra: 515/494,
  52972. bottom: 20/535
  52973. }
  52974. },
  52975. back: {
  52976. height: math.unit(6 + 3/12, "feet"),
  52977. name: "Back",
  52978. image: {
  52979. source: "./media/characters/michael-berretta/back.svg",
  52980. extra: 520/497,
  52981. bottom: 21/541
  52982. }
  52983. },
  52984. frontNsfw: {
  52985. height: math.unit(6 + 3/12, "feet"),
  52986. name: "Front (NSFW)",
  52987. image: {
  52988. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52989. extra: 515/494,
  52990. bottom: 20/535
  52991. }
  52992. },
  52993. dick: {
  52994. height: math.unit(1, "feet"),
  52995. name: "Dick",
  52996. image: {
  52997. source: "./media/characters/michael-berretta/dick.svg"
  52998. }
  52999. },
  53000. },
  53001. [
  53002. {
  53003. name: "Normal",
  53004. height: math.unit(6 + 3/12, "feet"),
  53005. default: true
  53006. },
  53007. {
  53008. name: "Big",
  53009. height: math.unit(12, "feet")
  53010. },
  53011. {
  53012. name: "Macro",
  53013. height: math.unit(187.5, "feet")
  53014. },
  53015. ]
  53016. ))
  53017. characterMakers.push(() => makeCharacter(
  53018. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53019. {
  53020. front: {
  53021. height: math.unit(9 + 9/12, "feet"),
  53022. weight: math.unit(1244, "lb"),
  53023. name: "Front",
  53024. image: {
  53025. source: "./media/characters/stella-edgecomb/front.svg",
  53026. extra: 1835/1706,
  53027. bottom: 49/1884
  53028. }
  53029. },
  53030. pen: {
  53031. height: math.unit(0.95, "feet"),
  53032. name: "Pen",
  53033. image: {
  53034. source: "./media/characters/stella-edgecomb/pen.svg"
  53035. }
  53036. },
  53037. },
  53038. [
  53039. {
  53040. name: "Cozy Bear",
  53041. height: math.unit(0.5, "inches")
  53042. },
  53043. {
  53044. name: "Normal",
  53045. height: math.unit(9 + 9/12, "feet"),
  53046. default: true
  53047. },
  53048. {
  53049. name: "Giga Bear",
  53050. height: math.unit(1, "mile")
  53051. },
  53052. {
  53053. name: "Great Bear",
  53054. height: math.unit(53, "miles")
  53055. },
  53056. {
  53057. name: "Goddess Bear",
  53058. height: math.unit(40000, "miles")
  53059. },
  53060. {
  53061. name: "Sun Bear",
  53062. height: math.unit(900000, "miles")
  53063. },
  53064. ]
  53065. ))
  53066. characterMakers.push(() => makeCharacter(
  53067. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53068. {
  53069. anthroFront: {
  53070. height: math.unit(556, "cm"),
  53071. weight: math.unit(2650, "kg"),
  53072. preyCapacity: math.unit(3, "people"),
  53073. name: "Front",
  53074. image: {
  53075. source: "./media/characters/ash´iika/front.svg",
  53076. extra: 710/673,
  53077. bottom: 15/725
  53078. },
  53079. form: "anthro",
  53080. default: true
  53081. },
  53082. anthroSide: {
  53083. height: math.unit(556, "cm"),
  53084. weight: math.unit(2650, "kg"),
  53085. preyCapacity: math.unit(3, "people"),
  53086. name: "Side",
  53087. image: {
  53088. source: "./media/characters/ash´iika/side.svg",
  53089. extra: 696/676,
  53090. bottom: 13/709
  53091. },
  53092. form: "anthro"
  53093. },
  53094. anthroDressed: {
  53095. height: math.unit(556, "cm"),
  53096. weight: math.unit(2650, "kg"),
  53097. preyCapacity: math.unit(3, "people"),
  53098. name: "Dressed",
  53099. image: {
  53100. source: "./media/characters/ash´iika/dressed.svg",
  53101. extra: 710/673,
  53102. bottom: 15/725
  53103. },
  53104. form: "anthro"
  53105. },
  53106. anthroHead: {
  53107. height: math.unit(3.5, "feet"),
  53108. name: "Head",
  53109. image: {
  53110. source: "./media/characters/ash´iika/head.svg",
  53111. extra: 348/291,
  53112. bottom: 45/393
  53113. },
  53114. form: "anthro"
  53115. },
  53116. feralSide: {
  53117. height: math.unit(870, "cm"),
  53118. weight: math.unit(17500, "kg"),
  53119. preyCapacity: math.unit(15, "people"),
  53120. name: "Side",
  53121. image: {
  53122. source: "./media/characters/ash´iika/feral.svg",
  53123. extra: 595/199,
  53124. bottom: 7/602
  53125. },
  53126. form: "feral",
  53127. default: true,
  53128. },
  53129. },
  53130. [
  53131. {
  53132. name: "Normal",
  53133. height: math.unit(556, "cm"),
  53134. default: true,
  53135. form: "anthro"
  53136. },
  53137. {
  53138. name: "Macro",
  53139. height: math.unit(88, "meters"),
  53140. form: "anthro"
  53141. },
  53142. {
  53143. name: "Normal",
  53144. height: math.unit(870, "cm"),
  53145. default: true,
  53146. form: "feral"
  53147. },
  53148. {
  53149. name: "Large",
  53150. height: math.unit(25, "meters"),
  53151. form: "feral"
  53152. },
  53153. ],
  53154. {
  53155. "anthro": {
  53156. name: "Anthro",
  53157. default: true
  53158. },
  53159. "feral": {
  53160. name: "Feral",
  53161. },
  53162. }
  53163. ))
  53164. characterMakers.push(() => makeCharacter(
  53165. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53166. {
  53167. front: {
  53168. height: math.unit(10, "feet"),
  53169. weight: math.unit(800, "lb"),
  53170. name: "Front",
  53171. image: {
  53172. source: "./media/characters/yen/front.svg",
  53173. extra: 443/411,
  53174. bottom: 6/449
  53175. }
  53176. },
  53177. sleeping: {
  53178. height: math.unit(10, "feet"),
  53179. weight: math.unit(800, "lb"),
  53180. name: "Sleeping",
  53181. image: {
  53182. source: "./media/characters/yen/sleeping.svg",
  53183. extra: 470/422,
  53184. bottom: 0/470
  53185. }
  53186. },
  53187. head: {
  53188. height: math.unit(2.2, "feet"),
  53189. name: "Head",
  53190. image: {
  53191. source: "./media/characters/yen/head.svg"
  53192. }
  53193. },
  53194. headAlt: {
  53195. height: math.unit(2.1, "feet"),
  53196. name: "Head (Alt)",
  53197. image: {
  53198. source: "./media/characters/yen/head-alt.svg"
  53199. }
  53200. },
  53201. },
  53202. [
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(10, "feet"),
  53206. default: true
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53212. {
  53213. front: {
  53214. height: math.unit(12, "feet"),
  53215. name: "Front",
  53216. image: {
  53217. source: "./media/characters/citra/front.svg",
  53218. extra: 1950/1710,
  53219. bottom: 47/1997
  53220. }
  53221. },
  53222. },
  53223. [
  53224. {
  53225. name: "Normal",
  53226. height: math.unit(12, "feet"),
  53227. default: true
  53228. },
  53229. ]
  53230. ))
  53231. characterMakers.push(() => makeCharacter(
  53232. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53233. {
  53234. side: {
  53235. height: math.unit(7 + 10/12, "feet"),
  53236. name: "Side",
  53237. image: {
  53238. source: "./media/characters/sholstim/side.svg",
  53239. extra: 786/682,
  53240. bottom: 40/826
  53241. }
  53242. },
  53243. },
  53244. [
  53245. {
  53246. name: "Normal",
  53247. height: math.unit(7 + 10/12, "feet"),
  53248. default: true
  53249. },
  53250. ]
  53251. ))
  53252. characterMakers.push(() => makeCharacter(
  53253. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53254. {
  53255. front: {
  53256. height: math.unit(3.10, "meters"),
  53257. name: "Front",
  53258. image: {
  53259. source: "./media/characters/aggyn/front.svg",
  53260. extra: 1188/963,
  53261. bottom: 24/1212
  53262. }
  53263. },
  53264. },
  53265. [
  53266. {
  53267. name: "Normal",
  53268. height: math.unit(3.10, "meters"),
  53269. default: true
  53270. },
  53271. ]
  53272. ))
  53273. characterMakers.push(() => makeCharacter(
  53274. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53275. {
  53276. front: {
  53277. height: math.unit(7 + 5/12, "feet"),
  53278. weight: math.unit(687, "lb"),
  53279. name: "Front",
  53280. image: {
  53281. source: "./media/characters/alsandair-hergenroether/front.svg",
  53282. extra: 1251/1186,
  53283. bottom: 75/1326
  53284. }
  53285. },
  53286. back: {
  53287. height: math.unit(7 + 5/12, "feet"),
  53288. weight: math.unit(687, "lb"),
  53289. name: "Back",
  53290. image: {
  53291. source: "./media/characters/alsandair-hergenroether/back.svg",
  53292. extra: 1290/1229,
  53293. bottom: 17/1307
  53294. }
  53295. },
  53296. },
  53297. [
  53298. {
  53299. name: "Max Compression",
  53300. height: math.unit(7 + 5/12, "feet"),
  53301. default: true
  53302. },
  53303. {
  53304. name: "\"Normal\"",
  53305. height: math.unit(2, "universes")
  53306. },
  53307. ]
  53308. ))
  53309. characterMakers.push(() => makeCharacter(
  53310. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53311. {
  53312. front: {
  53313. height: math.unit(4 + 1/12, "feet"),
  53314. weight: math.unit(92, "lb"),
  53315. name: "Front",
  53316. image: {
  53317. source: "./media/characters/ie/front.svg",
  53318. extra: 1585/1352,
  53319. bottom: 91/1676
  53320. }
  53321. },
  53322. },
  53323. [
  53324. {
  53325. name: "Normal",
  53326. height: math.unit(4 + 1/12, "feet"),
  53327. default: true
  53328. },
  53329. ]
  53330. ))
  53331. characterMakers.push(() => makeCharacter(
  53332. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53333. {
  53334. anthro: {
  53335. height: math.unit(6, "feet"),
  53336. weight: math.unit(150, "lb"),
  53337. name: "Front",
  53338. image: {
  53339. source: "./media/characters/willow/anthro.svg",
  53340. extra: 1073/986,
  53341. bottom: 34/1107
  53342. },
  53343. form: "anthro",
  53344. default: true
  53345. },
  53346. taur: {
  53347. height: math.unit(6, "feet"),
  53348. weight: math.unit(150, "lb"),
  53349. name: "Side",
  53350. image: {
  53351. source: "./media/characters/willow/taur.svg",
  53352. extra: 647/512,
  53353. bottom: 136/783
  53354. },
  53355. form: "taur",
  53356. default: true
  53357. },
  53358. },
  53359. [
  53360. {
  53361. name: "Humanoid",
  53362. height: math.unit(2.7, "meters"),
  53363. form: "anthro"
  53364. },
  53365. {
  53366. name: "Normal",
  53367. height: math.unit(9, "meters"),
  53368. form: "anthro",
  53369. default: true
  53370. },
  53371. {
  53372. name: "Humanoid",
  53373. height: math.unit(2.1, "meters"),
  53374. form: "taur"
  53375. },
  53376. {
  53377. name: "Normal",
  53378. height: math.unit(7, "meters"),
  53379. form: "taur",
  53380. default: true
  53381. },
  53382. ],
  53383. {
  53384. "anthro": {
  53385. name: "Anthro",
  53386. default: true
  53387. },
  53388. "taur": {
  53389. name: "Taur",
  53390. },
  53391. }
  53392. ))
  53393. characterMakers.push(() => makeCharacter(
  53394. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53395. {
  53396. front: {
  53397. height: math.unit(2 + 5/12, "feet"),
  53398. name: "Front",
  53399. image: {
  53400. source: "./media/characters/kyan/front.svg",
  53401. extra: 460/334,
  53402. bottom: 23/483
  53403. },
  53404. extraAttributes: {
  53405. "toeLength": {
  53406. name: "Toe Length",
  53407. power: 1,
  53408. type: "length",
  53409. base: math.unit(7, "cm")
  53410. },
  53411. "toeclawLength": {
  53412. name: "Toeclaw Length",
  53413. power: 1,
  53414. type: "length",
  53415. base: math.unit(4.7, "cm")
  53416. },
  53417. "earHeight": {
  53418. name: "Ear Height",
  53419. power: 1,
  53420. type: "length",
  53421. base: math.unit(14.1, "cm")
  53422. },
  53423. }
  53424. },
  53425. paws: {
  53426. height: math.unit(0.45, "feet"),
  53427. name: "Paws",
  53428. image: {
  53429. source: "./media/characters/kyan/paws.svg",
  53430. extra: 581/581,
  53431. bottom: 114/695
  53432. }
  53433. },
  53434. },
  53435. [
  53436. {
  53437. name: "Normal",
  53438. height: math.unit(2 + 5/12, "feet"),
  53439. default: true
  53440. },
  53441. ]
  53442. ))
  53443. characterMakers.push(() => makeCharacter(
  53444. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53445. {
  53446. front: {
  53447. height: math.unit(2 + 2/3, "feet"),
  53448. name: "Front",
  53449. image: {
  53450. source: "./media/characters/xazzon/front.svg",
  53451. extra: 1109/984,
  53452. bottom: 42/1151
  53453. }
  53454. },
  53455. back: {
  53456. height: math.unit(2 + 2/3, "feet"),
  53457. name: "Back",
  53458. image: {
  53459. source: "./media/characters/xazzon/back.svg",
  53460. extra: 1095/971,
  53461. bottom: 23/1118
  53462. }
  53463. },
  53464. },
  53465. [
  53466. {
  53467. name: "Normal",
  53468. height: math.unit(2 + 2/3, "feet"),
  53469. default: true
  53470. },
  53471. ]
  53472. ))
  53473. characterMakers.push(() => makeCharacter(
  53474. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53475. {
  53476. dressed: {
  53477. height: math.unit(5 + 7/12, "feet"),
  53478. weight: math.unit(173, "lb"),
  53479. name: "Dressed",
  53480. image: {
  53481. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53482. extra: 3262/2862,
  53483. bottom: 188/3450
  53484. }
  53485. },
  53486. undressed: {
  53487. height: math.unit(5 + 7/12, "feet"),
  53488. weight: math.unit(173, "lb"),
  53489. name: "Undressed",
  53490. image: {
  53491. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53492. extra: 3262/2862,
  53493. bottom: 188/3450
  53494. }
  53495. },
  53496. },
  53497. [
  53498. {
  53499. name: "The void",
  53500. height: math.unit(7.29193e-34, "angstroms")
  53501. },
  53502. {
  53503. name: "Uh-Oh.",
  53504. height: math.unit(5.734e-7, "angstroms")
  53505. },
  53506. {
  53507. name: "Pico",
  53508. height: math.unit(0.876, "angstroms")
  53509. },
  53510. {
  53511. name: "Nano",
  53512. height: math.unit(0.000134200, "mm")
  53513. },
  53514. {
  53515. name: "Micro",
  53516. height: math.unit(0.0673020, "mm")
  53517. },
  53518. {
  53519. name: "Tiny",
  53520. height: math.unit(2.4, "mm")
  53521. },
  53522. {
  53523. name: "Actual Normal",
  53524. height: math.unit(3, "inches"),
  53525. default: true
  53526. },
  53527. {
  53528. name: "Normal",
  53529. height: math.unit(5 + 8/12, "feet")
  53530. },
  53531. {
  53532. name: "Giant",
  53533. height: math.unit(12, "feet")
  53534. },
  53535. {
  53536. name: "City Ruler",
  53537. height: math.unit(270, "meters")
  53538. },
  53539. {
  53540. name: "Giga",
  53541. height: math.unit(1117.6, "km")
  53542. },
  53543. {
  53544. name: "All-Powerful Queen",
  53545. height: math.unit(70.8, "gigameters")
  53546. },
  53547. {
  53548. name: "'Goddess'",
  53549. height: math.unit(600, "yottameters")
  53550. },
  53551. {
  53552. name: "Biggest!",
  53553. height: math.unit(4.23e5, "yottameters")
  53554. },
  53555. ]
  53556. ))
  53557. characterMakers.push(() => makeCharacter(
  53558. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53559. {
  53560. front: {
  53561. height: math.unit(8, "feet"),
  53562. weight: math.unit(300, "lb"),
  53563. name: "Front",
  53564. image: {
  53565. source: "./media/characters/khyla-shadowsong/front.svg",
  53566. extra: 861/798,
  53567. bottom: 32/893
  53568. }
  53569. },
  53570. side: {
  53571. height: math.unit(8, "feet"),
  53572. weight: math.unit(300, "lb"),
  53573. name: "Side",
  53574. image: {
  53575. source: "./media/characters/khyla-shadowsong/side.svg",
  53576. extra: 790/750,
  53577. bottom: 87/877
  53578. }
  53579. },
  53580. back: {
  53581. height: math.unit(8, "feet"),
  53582. weight: math.unit(300, "lb"),
  53583. name: "Back",
  53584. image: {
  53585. source: "./media/characters/khyla-shadowsong/back.svg",
  53586. extra: 855/808,
  53587. bottom: 14/869
  53588. }
  53589. },
  53590. head: {
  53591. height: math.unit(2.7, "feet"),
  53592. name: "Head",
  53593. image: {
  53594. source: "./media/characters/khyla-shadowsong/head.svg"
  53595. }
  53596. },
  53597. },
  53598. [
  53599. {
  53600. name: "Micro",
  53601. height: math.unit(6, "inches")
  53602. },
  53603. {
  53604. name: "Normal",
  53605. height: math.unit(8, "feet"),
  53606. default: true
  53607. },
  53608. ]
  53609. ))
  53610. characterMakers.push(() => makeCharacter(
  53611. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53612. {
  53613. hyperFront: {
  53614. height: math.unit(9 + 4/12, "feet"),
  53615. weight: math.unit(2000, "lb"),
  53616. name: "Front",
  53617. image: {
  53618. source: "./media/characters/tiden/hyper-front.svg",
  53619. extra: 400/382,
  53620. bottom: 6/406
  53621. },
  53622. form: "hyper",
  53623. },
  53624. regularFront: {
  53625. height: math.unit(7 + 10/12, "feet"),
  53626. weight: math.unit(470, "lb"),
  53627. name: "Front",
  53628. image: {
  53629. source: "./media/characters/tiden/regular-front.svg",
  53630. extra: 468/442,
  53631. bottom: 6/474
  53632. },
  53633. form: "regular",
  53634. },
  53635. },
  53636. [
  53637. {
  53638. name: "Normal",
  53639. height: math.unit(9 + 4/12, "feet"),
  53640. default: true,
  53641. form: "hyper"
  53642. },
  53643. {
  53644. name: "Normal",
  53645. height: math.unit(7 + 10/12, "feet"),
  53646. default: true,
  53647. form: "regular"
  53648. },
  53649. ],
  53650. {
  53651. "hyper": {
  53652. name: "Hyper",
  53653. default: true
  53654. },
  53655. "regular": {
  53656. name: "Regular",
  53657. },
  53658. }
  53659. ))
  53660. characterMakers.push(() => makeCharacter(
  53661. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53662. {
  53663. side: {
  53664. height: math.unit(6, "feet"),
  53665. weight: math.unit(150, "lb"),
  53666. name: "Side",
  53667. image: {
  53668. source: "./media/characters/jason-crowe/side.svg",
  53669. extra: 1771/766,
  53670. bottom: 219/1990
  53671. }
  53672. },
  53673. },
  53674. [
  53675. {
  53676. name: "Pocket Gryphon",
  53677. height: math.unit(6, "cm")
  53678. },
  53679. {
  53680. name: "Raven",
  53681. height: math.unit(60, "cm")
  53682. },
  53683. {
  53684. name: "Normal",
  53685. height: math.unit(1, "meter"),
  53686. default: true
  53687. },
  53688. ]
  53689. ))
  53690. //characters
  53691. function makeCharacters() {
  53692. const results = [];
  53693. characterMakers.forEach(character => {
  53694. results.push(character());
  53695. });
  53696. return results;
  53697. }